diff --git "a/\350\260\255\350\216\211\350\216\211/http\344\275\234\344\270\232/files/1.txt" "b/\350\260\255\350\216\211\350\216\211/http\344\275\234\344\270\232/files/1.txt"
new file mode 100644
index 0000000000000000000000000000000000000000..1da7b3ae293bd9b14e8d48bb15c00a6ac18722ff
--- /dev/null
+++ "b/\350\260\255\350\216\211\350\216\211/http\344\275\234\344\270\232/files/1.txt"
@@ -0,0 +1 @@
+
thisisl.txt
\ No newline at end of file
diff --git "a/\350\260\255\350\216\211\350\216\211/http\344\275\234\344\270\232/http.js" "b/\350\260\255\350\216\211\350\216\211/http\344\275\234\344\270\232/http.js"
new file mode 100644
index 0000000000000000000000000000000000000000..57b758ea93df879e942ae997d288034a2035b2fe
--- /dev/null
+++ "b/\350\260\255\350\216\211\350\216\211/http\344\275\234\344\270\232/http.js"
@@ -0,0 +1,16 @@
+let http = require("http");
+let fs = require('fs');
+let server = http.createServer();
+// on request 绑定一个请求事件
+server.on('request',function(req,res){
+ res.setHeader('content-type','tetx/html;charset=utf-8')
+let url = req.url;
+if(url=='/index.html'){
+ // res.write("要天天开心喔");
+ let bf=fs.readFileSync('./files/1.txt')
+}
+// 请求结束
+res.end();
+})
+// 绑定端口
+server.listen(80);
\ No newline at end of file
diff --git "a/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/1.txt" "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/1.txt"
new file mode 100644
index 0000000000000000000000000000000000000000..c87746f6c536fb36f77199728ec8016f7e267f5b
--- /dev/null
+++ "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/1.txt"
@@ -0,0 +1 @@
+today我们学习异步文件写入,有点晕噢ooo
\ No newline at end of file
diff --git "a/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/fu.js" "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/fu.js"
new file mode 100644
index 0000000000000000000000000000000000000000..796fd5db7b22f54f56d9c4b895039f47180d4bb5
--- /dev/null
+++ "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/fu.js"
@@ -0,0 +1,24 @@
+// 作业
+// 创建100文件夹,内容自便,读取文件把这100个文件的内容给我拼接起来输出,可以写在一个文件里面也可以输出
+
+ let fs = require('fs')
+
+ function readfire(){
+
+ for(let i=1,aa=0; i<=100; i++)
+ {
+ let fd = fs.openSync(`./look${i}.txt`,'w')
+ fs.writeSync(fd,`第${i}个你好`)
+
+ let buffer=fs.readFileSync(`./look${i}.txt`,{flag:'r',encoding:'utf8'});
+ let num = buffer.toString()
+ // console.log(num);
+ aa += num;
+
+ if(i==100)
+ console.log(aa);
+ fs.closeSync(fd)
+ }
+}
+ readfire()
+
diff --git "a/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/hh,js" "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/hh,js"
new file mode 100644
index 0000000000000000000000000000000000000000..45ff84797319bc29e2779d1a0ad7dc6eb0c6f29d
--- /dev/null
+++ "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/hh,js"
@@ -0,0 +1,31 @@
+let fs = require("fs");
+
+ fs.open("./1.txt", 'w', function (err, fd) {
+
+ if(err) {
+ console.log(err);
+ }
+ else{
+
+ let msg = 'today我们学习异步文件写入,有点晕噢ooo';
+
+ bf = Buffer.from(msg);
+
+ fs.write(fd,bf,function(err, writeNum, bf2){
+ console.log(err);
+ console.log(writeNum);
+ // buffer 转字符串 buffer.toString()
+ console.log(bf2.toString());
+ console.log("done!");
+ });
+ console.log("写入完成!");
+
+ //异步的文件关闭
+ fs.close(fd,function(err){
+ console.log("我被关闭了噢,别想我");
+ console.log(err);
+ })
+ }
+});
+
+console.log('study node fs async ');
diff --git "a/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look1.txt" "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look1.txt"
new file mode 100644
index 0000000000000000000000000000000000000000..42d2b8df7111e41da0baf36650bbf4c3bad0dc10
--- /dev/null
+++ "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look1.txt"
@@ -0,0 +1 @@
+第1个你好
\ No newline at end of file
diff --git "a/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look10.txt" "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look10.txt"
new file mode 100644
index 0000000000000000000000000000000000000000..81cac97eb20b2e2d0cada80d8a6194d14fb0c49d
--- /dev/null
+++ "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look10.txt"
@@ -0,0 +1 @@
+第10个你好
\ No newline at end of file
diff --git "a/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look100.txt" "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look100.txt"
new file mode 100644
index 0000000000000000000000000000000000000000..ec863029d1fcbcea83bf71037804fc3939f7a7bb
--- /dev/null
+++ "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look100.txt"
@@ -0,0 +1 @@
+第100个你好
\ No newline at end of file
diff --git "a/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look11.txt" "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look11.txt"
new file mode 100644
index 0000000000000000000000000000000000000000..249139a09c81a51696c00275a84a63b0a74029c6
--- /dev/null
+++ "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look11.txt"
@@ -0,0 +1 @@
+第11个你好
\ No newline at end of file
diff --git "a/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look12.txt" "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look12.txt"
new file mode 100644
index 0000000000000000000000000000000000000000..2ccc77126e297d01aece912c45a985999b2bd497
--- /dev/null
+++ "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look12.txt"
@@ -0,0 +1 @@
+第12个你好
\ No newline at end of file
diff --git "a/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look13.txt" "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look13.txt"
new file mode 100644
index 0000000000000000000000000000000000000000..41fe2b685bd2b588275e26b7f30647577b338fb1
--- /dev/null
+++ "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look13.txt"
@@ -0,0 +1 @@
+第13个你好
\ No newline at end of file
diff --git "a/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look14.txt" "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look14.txt"
new file mode 100644
index 0000000000000000000000000000000000000000..086639d12084f97558615abbd39c79e604f1474a
--- /dev/null
+++ "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look14.txt"
@@ -0,0 +1 @@
+第14个你好
\ No newline at end of file
diff --git "a/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look15.txt" "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look15.txt"
new file mode 100644
index 0000000000000000000000000000000000000000..00e1ac570e5c6a368f57bd3b8497f4ef8b9ef2a0
--- /dev/null
+++ "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look15.txt"
@@ -0,0 +1 @@
+第15个你好
\ No newline at end of file
diff --git "a/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look16.txt" "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look16.txt"
new file mode 100644
index 0000000000000000000000000000000000000000..6bae8878ac0f6d07f2622e4b9e10b714599befb4
--- /dev/null
+++ "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look16.txt"
@@ -0,0 +1 @@
+第16个你好
\ No newline at end of file
diff --git "a/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look17.txt" "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look17.txt"
new file mode 100644
index 0000000000000000000000000000000000000000..486b62fb8d78b45068e14997b9f6fc72f2ed0b94
--- /dev/null
+++ "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look17.txt"
@@ -0,0 +1 @@
+第17个你好
\ No newline at end of file
diff --git "a/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look18.txt" "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look18.txt"
new file mode 100644
index 0000000000000000000000000000000000000000..e6a090d30217982007e5f760576c23306bacee0f
--- /dev/null
+++ "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look18.txt"
@@ -0,0 +1 @@
+第18个你好
\ No newline at end of file
diff --git "a/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look19.txt" "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look19.txt"
new file mode 100644
index 0000000000000000000000000000000000000000..40f38af188a7fe10e7616193565c1ba33b40dcfb
--- /dev/null
+++ "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look19.txt"
@@ -0,0 +1 @@
+第19个你好
\ No newline at end of file
diff --git "a/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look2.txt" "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look2.txt"
new file mode 100644
index 0000000000000000000000000000000000000000..507ded3ccb2e61ec299751e9340ec7f941f2c323
--- /dev/null
+++ "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look2.txt"
@@ -0,0 +1 @@
+第2个你好
\ No newline at end of file
diff --git "a/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look20.txt" "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look20.txt"
new file mode 100644
index 0000000000000000000000000000000000000000..dc122d836fc842b4cc55535bf1c59ae17cff85a7
--- /dev/null
+++ "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look20.txt"
@@ -0,0 +1 @@
+第20个你好
\ No newline at end of file
diff --git "a/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look21.txt" "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look21.txt"
new file mode 100644
index 0000000000000000000000000000000000000000..086a6847b188d5f01309e11d4f825f350fd631e1
--- /dev/null
+++ "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look21.txt"
@@ -0,0 +1 @@
+第21个你好
\ No newline at end of file
diff --git "a/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look22.txt" "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look22.txt"
new file mode 100644
index 0000000000000000000000000000000000000000..79f9fa1965f3e00e84bc5f16a5eb46447daf7855
--- /dev/null
+++ "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look22.txt"
@@ -0,0 +1 @@
+第22个你好
\ No newline at end of file
diff --git "a/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look23.txt" "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look23.txt"
new file mode 100644
index 0000000000000000000000000000000000000000..d7eefd0b301daaa552fbfda90e94b91e0d268ff9
--- /dev/null
+++ "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look23.txt"
@@ -0,0 +1 @@
+第23个你好
\ No newline at end of file
diff --git "a/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look24.txt" "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look24.txt"
new file mode 100644
index 0000000000000000000000000000000000000000..ad8edc3a57cf4f08a80209442d0367b8068b88d3
--- /dev/null
+++ "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look24.txt"
@@ -0,0 +1 @@
+第24个你好
\ No newline at end of file
diff --git "a/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look25.txt" "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look25.txt"
new file mode 100644
index 0000000000000000000000000000000000000000..a46c802031055ba7f41db97b7087a000cd80a2d5
--- /dev/null
+++ "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look25.txt"
@@ -0,0 +1 @@
+第25个你好
\ No newline at end of file
diff --git "a/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look26.txt" "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look26.txt"
new file mode 100644
index 0000000000000000000000000000000000000000..0ed43644ff7cd1b788c2c61f028962a6c8f09fc0
--- /dev/null
+++ "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look26.txt"
@@ -0,0 +1 @@
+第26个你好
\ No newline at end of file
diff --git "a/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look27.txt" "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look27.txt"
new file mode 100644
index 0000000000000000000000000000000000000000..f5f3d57e40df83bcf285586f9e00aaa8996359cc
--- /dev/null
+++ "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look27.txt"
@@ -0,0 +1 @@
+第27个你好
\ No newline at end of file
diff --git "a/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look28.txt" "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look28.txt"
new file mode 100644
index 0000000000000000000000000000000000000000..d74db0c189b60fa2c7a7eeeae9f815d3af67f6d2
--- /dev/null
+++ "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look28.txt"
@@ -0,0 +1 @@
+第28个你好
\ No newline at end of file
diff --git "a/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look29.txt" "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look29.txt"
new file mode 100644
index 0000000000000000000000000000000000000000..e217c6ad43ffbb9113b10f8f3832b424b0ac5808
--- /dev/null
+++ "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look29.txt"
@@ -0,0 +1 @@
+第29个你好
\ No newline at end of file
diff --git "a/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look3.txt" "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look3.txt"
new file mode 100644
index 0000000000000000000000000000000000000000..d822fac5345cd9e9edb6dc2eddf061b9f3fe796a
--- /dev/null
+++ "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look3.txt"
@@ -0,0 +1 @@
+第3个你好
\ No newline at end of file
diff --git "a/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look30.txt" "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look30.txt"
new file mode 100644
index 0000000000000000000000000000000000000000..873af49234f6e22e30e87b26893c425454923a77
--- /dev/null
+++ "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look30.txt"
@@ -0,0 +1 @@
+第30个你好
\ No newline at end of file
diff --git "a/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look31.txt" "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look31.txt"
new file mode 100644
index 0000000000000000000000000000000000000000..3e6742766cb4cea1566ffd5694f1befa5434264f
--- /dev/null
+++ "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look31.txt"
@@ -0,0 +1 @@
+第31个你好
\ No newline at end of file
diff --git "a/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look32.txt" "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look32.txt"
new file mode 100644
index 0000000000000000000000000000000000000000..0cf00db869ff8462a6369e0da55df735639c8e98
--- /dev/null
+++ "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look32.txt"
@@ -0,0 +1 @@
+第32个你好
\ No newline at end of file
diff --git "a/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look33.txt" "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look33.txt"
new file mode 100644
index 0000000000000000000000000000000000000000..e7fd63a7c983f26005bd54ea32865c6820ada259
--- /dev/null
+++ "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look33.txt"
@@ -0,0 +1 @@
+第33个你好
\ No newline at end of file
diff --git "a/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look34.txt" "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look34.txt"
new file mode 100644
index 0000000000000000000000000000000000000000..14330969d51fb85b02c0669c44c52e9ad829add4
--- /dev/null
+++ "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look34.txt"
@@ -0,0 +1 @@
+第34个你好
\ No newline at end of file
diff --git "a/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look35.txt" "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look35.txt"
new file mode 100644
index 0000000000000000000000000000000000000000..a1ec15051f4bf0dfdfe333b76d8b5b1a7eea3ca3
--- /dev/null
+++ "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look35.txt"
@@ -0,0 +1 @@
+第35个你好
\ No newline at end of file
diff --git "a/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look36.txt" "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look36.txt"
new file mode 100644
index 0000000000000000000000000000000000000000..d9b52dcff726ca7ffd0a9281a5a18c677102f02f
--- /dev/null
+++ "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look36.txt"
@@ -0,0 +1 @@
+第36个你好
\ No newline at end of file
diff --git "a/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look37.txt" "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look37.txt"
new file mode 100644
index 0000000000000000000000000000000000000000..abf40748cf21b72d10d65078c2e16c78dd0935b7
--- /dev/null
+++ "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look37.txt"
@@ -0,0 +1 @@
+第37个你好
\ No newline at end of file
diff --git "a/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look38.txt" "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look38.txt"
new file mode 100644
index 0000000000000000000000000000000000000000..64e2f47d4b26c5d23d799e165347200af559b5a4
--- /dev/null
+++ "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look38.txt"
@@ -0,0 +1 @@
+第38个你好
\ No newline at end of file
diff --git "a/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look39.txt" "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look39.txt"
new file mode 100644
index 0000000000000000000000000000000000000000..2df472d1b5bd63c7de1fcc512b24f30047546c28
--- /dev/null
+++ "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look39.txt"
@@ -0,0 +1 @@
+第39个你好
\ No newline at end of file
diff --git "a/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look4.txt" "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look4.txt"
new file mode 100644
index 0000000000000000000000000000000000000000..e5f6e9bd6f81d726429f36824d23220fc6037bae
--- /dev/null
+++ "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look4.txt"
@@ -0,0 +1 @@
+第4个你好
\ No newline at end of file
diff --git "a/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look40.txt" "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look40.txt"
new file mode 100644
index 0000000000000000000000000000000000000000..062158f62e4cf314112e3ab509c588e4ada1b3ef
--- /dev/null
+++ "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look40.txt"
@@ -0,0 +1 @@
+第40个你好
\ No newline at end of file
diff --git "a/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look41.txt" "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look41.txt"
new file mode 100644
index 0000000000000000000000000000000000000000..190e90657fe68c24528c79bb2e52cc29f1291e74
--- /dev/null
+++ "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look41.txt"
@@ -0,0 +1 @@
+第41个你好
\ No newline at end of file
diff --git "a/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look42.txt" "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look42.txt"
new file mode 100644
index 0000000000000000000000000000000000000000..f3c8c9e8ade7581afe3ea6721438b62739a5a025
--- /dev/null
+++ "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look42.txt"
@@ -0,0 +1 @@
+第42个你好
\ No newline at end of file
diff --git "a/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look43.txt" "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look43.txt"
new file mode 100644
index 0000000000000000000000000000000000000000..6a5048e2d6f9d7d79c63a477871f2472718c3dc5
--- /dev/null
+++ "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look43.txt"
@@ -0,0 +1 @@
+第43个你好
\ No newline at end of file
diff --git "a/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look44.txt" "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look44.txt"
new file mode 100644
index 0000000000000000000000000000000000000000..cd0240a319442530b30a97d1ad902983d3fcfa92
--- /dev/null
+++ "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look44.txt"
@@ -0,0 +1 @@
+第44个你好
\ No newline at end of file
diff --git "a/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look45.txt" "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look45.txt"
new file mode 100644
index 0000000000000000000000000000000000000000..573551cf4877297a3ba9982d83f4c5c52cdba191
--- /dev/null
+++ "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look45.txt"
@@ -0,0 +1 @@
+第45个你好
\ No newline at end of file
diff --git "a/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look46.txt" "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look46.txt"
new file mode 100644
index 0000000000000000000000000000000000000000..ec919d018e619c49d789d69c5febde22bf63429b
--- /dev/null
+++ "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look46.txt"
@@ -0,0 +1 @@
+第46个你好
\ No newline at end of file
diff --git "a/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look47.txt" "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look47.txt"
new file mode 100644
index 0000000000000000000000000000000000000000..e696512126c93d117c0169378cb54bcf596c29a3
--- /dev/null
+++ "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look47.txt"
@@ -0,0 +1 @@
+第47个你好
\ No newline at end of file
diff --git "a/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look48.txt" "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look48.txt"
new file mode 100644
index 0000000000000000000000000000000000000000..2c3b64944767f615df3859e9e59bc92fb2d3daed
--- /dev/null
+++ "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look48.txt"
@@ -0,0 +1 @@
+第48个你好
\ No newline at end of file
diff --git "a/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look49.txt" "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look49.txt"
new file mode 100644
index 0000000000000000000000000000000000000000..ffbb747bf78bd2fcee54330d2d0aab038cbf3687
--- /dev/null
+++ "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look49.txt"
@@ -0,0 +1 @@
+第49个你好
\ No newline at end of file
diff --git "a/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look5.txt" "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look5.txt"
new file mode 100644
index 0000000000000000000000000000000000000000..92105c7015de99c5655484e0ea31013388016efb
--- /dev/null
+++ "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look5.txt"
@@ -0,0 +1 @@
+第5个你好
\ No newline at end of file
diff --git "a/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look50.txt" "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look50.txt"
new file mode 100644
index 0000000000000000000000000000000000000000..0399b99ebb41610aee0fe46d1feaf8c82a949f2d
--- /dev/null
+++ "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look50.txt"
@@ -0,0 +1 @@
+第50个你好
\ No newline at end of file
diff --git "a/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look51.txt" "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look51.txt"
new file mode 100644
index 0000000000000000000000000000000000000000..2f5eac6abe1151b7ee2b75f24c54babb4a026a29
--- /dev/null
+++ "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look51.txt"
@@ -0,0 +1 @@
+第51个你好
\ No newline at end of file
diff --git "a/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look52.txt" "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look52.txt"
new file mode 100644
index 0000000000000000000000000000000000000000..a134da18aed535cd2db4b0c6064783adcb1df819
--- /dev/null
+++ "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look52.txt"
@@ -0,0 +1 @@
+第52个你好
\ No newline at end of file
diff --git "a/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look53.txt" "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look53.txt"
new file mode 100644
index 0000000000000000000000000000000000000000..c9f8f5e29f13a890b9f9592ba073ea87063320a0
--- /dev/null
+++ "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look53.txt"
@@ -0,0 +1 @@
+第53个你好
\ No newline at end of file
diff --git "a/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look54.txt" "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look54.txt"
new file mode 100644
index 0000000000000000000000000000000000000000..04776eb6d9121a99a9cbe7d08ff1ac3b362a758c
--- /dev/null
+++ "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look54.txt"
@@ -0,0 +1 @@
+第54个你好
\ No newline at end of file
diff --git "a/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look55.txt" "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look55.txt"
new file mode 100644
index 0000000000000000000000000000000000000000..daafda985f82cf83b3247b589e8cc12cbce8295c
--- /dev/null
+++ "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look55.txt"
@@ -0,0 +1 @@
+第55个你好
\ No newline at end of file
diff --git "a/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look56.txt" "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look56.txt"
new file mode 100644
index 0000000000000000000000000000000000000000..5b5952936ce07890e480b7794c4d38e1b34cce37
--- /dev/null
+++ "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look56.txt"
@@ -0,0 +1 @@
+第56个你好
\ No newline at end of file
diff --git "a/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look57.txt" "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look57.txt"
new file mode 100644
index 0000000000000000000000000000000000000000..7cee7d4e574e01a6c1b07829b39cb36936b1b2c8
--- /dev/null
+++ "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look57.txt"
@@ -0,0 +1 @@
+第57个你好
\ No newline at end of file
diff --git "a/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look58.txt" "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look58.txt"
new file mode 100644
index 0000000000000000000000000000000000000000..31b24084353656ac8a93d9712ece0ab91c08fab9
--- /dev/null
+++ "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look58.txt"
@@ -0,0 +1 @@
+第58个你好
\ No newline at end of file
diff --git "a/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look59.txt" "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look59.txt"
new file mode 100644
index 0000000000000000000000000000000000000000..28cfd353b17b0ae39e29f85da4cc7f6510d7b874
--- /dev/null
+++ "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look59.txt"
@@ -0,0 +1 @@
+第59个你好
\ No newline at end of file
diff --git "a/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look6.txt" "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look6.txt"
new file mode 100644
index 0000000000000000000000000000000000000000..11d2772fe2e9c6dd1e660b01bb7b4b59d33a8b41
--- /dev/null
+++ "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look6.txt"
@@ -0,0 +1 @@
+第6个你好
\ No newline at end of file
diff --git "a/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look60.txt" "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look60.txt"
new file mode 100644
index 0000000000000000000000000000000000000000..f61f5e3ebededb88aa5d59c238a0abc0ccf32056
--- /dev/null
+++ "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look60.txt"
@@ -0,0 +1 @@
+第60个你好
\ No newline at end of file
diff --git "a/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look61.txt" "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look61.txt"
new file mode 100644
index 0000000000000000000000000000000000000000..2de4a88e7992dbf0e7cdf6029cd20098dddd6425
--- /dev/null
+++ "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look61.txt"
@@ -0,0 +1 @@
+第61个你好
\ No newline at end of file
diff --git "a/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look62.txt" "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look62.txt"
new file mode 100644
index 0000000000000000000000000000000000000000..ba9ac4c42363aea5069bcb9129406330be21419d
--- /dev/null
+++ "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look62.txt"
@@ -0,0 +1 @@
+第62个你好
\ No newline at end of file
diff --git "a/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look63.txt" "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look63.txt"
new file mode 100644
index 0000000000000000000000000000000000000000..c106deafa8eeede41caa806e5ffb45897cb1df1d
--- /dev/null
+++ "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look63.txt"
@@ -0,0 +1 @@
+第63个你好
\ No newline at end of file
diff --git "a/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look64.txt" "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look64.txt"
new file mode 100644
index 0000000000000000000000000000000000000000..f2e49218f8cb0dafe932ed7e12f1f3efcb6c858f
--- /dev/null
+++ "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look64.txt"
@@ -0,0 +1 @@
+第64个你好
\ No newline at end of file
diff --git "a/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look65.txt" "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look65.txt"
new file mode 100644
index 0000000000000000000000000000000000000000..efcbc3228f931648f91b35613996852a91760de1
--- /dev/null
+++ "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look65.txt"
@@ -0,0 +1 @@
+第65个你好
\ No newline at end of file
diff --git "a/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look66.txt" "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look66.txt"
new file mode 100644
index 0000000000000000000000000000000000000000..b3ce23e0a0335e859bea329bc25951df6dd6aee5
--- /dev/null
+++ "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look66.txt"
@@ -0,0 +1 @@
+第66个你好
\ No newline at end of file
diff --git "a/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look67.txt" "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look67.txt"
new file mode 100644
index 0000000000000000000000000000000000000000..bce8dc66ae28ce93131ee103702a99fb5fe8537c
--- /dev/null
+++ "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look67.txt"
@@ -0,0 +1 @@
+第67个你好
\ No newline at end of file
diff --git "a/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look68.txt" "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look68.txt"
new file mode 100644
index 0000000000000000000000000000000000000000..66eea7d5d56e167ae0fc43562121094c9b338333
--- /dev/null
+++ "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look68.txt"
@@ -0,0 +1 @@
+第68个你好
\ No newline at end of file
diff --git "a/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look69.txt" "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look69.txt"
new file mode 100644
index 0000000000000000000000000000000000000000..8421de32bd05cf81ca453126be74834546081fd3
--- /dev/null
+++ "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look69.txt"
@@ -0,0 +1 @@
+第69个你好
\ No newline at end of file
diff --git "a/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look7.txt" "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look7.txt"
new file mode 100644
index 0000000000000000000000000000000000000000..13bbf8f573a5b985b966bc360c30aacbe74a3fd0
--- /dev/null
+++ "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look7.txt"
@@ -0,0 +1 @@
+第7个你好
\ No newline at end of file
diff --git "a/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look70.txt" "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look70.txt"
new file mode 100644
index 0000000000000000000000000000000000000000..0dbe0c739f0f5ca91d0e91a1441d53804a5cf6c3
--- /dev/null
+++ "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look70.txt"
@@ -0,0 +1 @@
+第70个你好
\ No newline at end of file
diff --git "a/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look71.txt" "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look71.txt"
new file mode 100644
index 0000000000000000000000000000000000000000..877d2df5d09d0b028d61145e394b329cc0ac1407
--- /dev/null
+++ "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look71.txt"
@@ -0,0 +1 @@
+第71个你好
\ No newline at end of file
diff --git "a/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look72.txt" "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look72.txt"
new file mode 100644
index 0000000000000000000000000000000000000000..311cb017be6c1c0ecb62886b20bbfdc27efd4201
--- /dev/null
+++ "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look72.txt"
@@ -0,0 +1 @@
+第72个你好
\ No newline at end of file
diff --git "a/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look73.txt" "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look73.txt"
new file mode 100644
index 0000000000000000000000000000000000000000..a018cf70d9a772c705056d67a1bd319300792cc3
--- /dev/null
+++ "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look73.txt"
@@ -0,0 +1 @@
+第73个你好
\ No newline at end of file
diff --git "a/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look74.txt" "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look74.txt"
new file mode 100644
index 0000000000000000000000000000000000000000..8d2f7a914a1e128f3219570c77db64ddddfee608
--- /dev/null
+++ "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look74.txt"
@@ -0,0 +1 @@
+第74个你好
\ No newline at end of file
diff --git "a/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look75.txt" "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look75.txt"
new file mode 100644
index 0000000000000000000000000000000000000000..8baf3a0adcab5d89208b7e1522daf565713eb688
--- /dev/null
+++ "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look75.txt"
@@ -0,0 +1 @@
+第75个你好
\ No newline at end of file
diff --git "a/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look76.txt" "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look76.txt"
new file mode 100644
index 0000000000000000000000000000000000000000..b41bfb1c6abc3ef68a7441125f7ca6fa97b879f8
--- /dev/null
+++ "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look76.txt"
@@ -0,0 +1 @@
+第76个你好
\ No newline at end of file
diff --git "a/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look77.txt" "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look77.txt"
new file mode 100644
index 0000000000000000000000000000000000000000..87e63e16892d4a90ae3865ee84135c8074fb0b32
--- /dev/null
+++ "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look77.txt"
@@ -0,0 +1 @@
+第77个你好
\ No newline at end of file
diff --git "a/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look78.txt" "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look78.txt"
new file mode 100644
index 0000000000000000000000000000000000000000..893490942f8dcf5d5aca5a383dc21fc51e85b515
--- /dev/null
+++ "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look78.txt"
@@ -0,0 +1 @@
+第78个你好
\ No newline at end of file
diff --git "a/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look79.txt" "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look79.txt"
new file mode 100644
index 0000000000000000000000000000000000000000..dbd3f44cbaf6be9d4663fce27852bc47954692f7
--- /dev/null
+++ "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look79.txt"
@@ -0,0 +1 @@
+第79个你好
\ No newline at end of file
diff --git "a/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look8.txt" "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look8.txt"
new file mode 100644
index 0000000000000000000000000000000000000000..53bc9a6ca705c4f6ec3d21a5bd4ac55d854ef17a
--- /dev/null
+++ "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look8.txt"
@@ -0,0 +1 @@
+第8个你好
\ No newline at end of file
diff --git "a/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look80.txt" "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look80.txt"
new file mode 100644
index 0000000000000000000000000000000000000000..1100a1ecffa8517c37544bcd4afdbf1b587bf291
--- /dev/null
+++ "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look80.txt"
@@ -0,0 +1 @@
+第80个你好
\ No newline at end of file
diff --git "a/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look81.txt" "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look81.txt"
new file mode 100644
index 0000000000000000000000000000000000000000..dbd17c1be41020d7e9e8992bd3ede50dba606124
--- /dev/null
+++ "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look81.txt"
@@ -0,0 +1 @@
+第81个你好
\ No newline at end of file
diff --git "a/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look82.txt" "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look82.txt"
new file mode 100644
index 0000000000000000000000000000000000000000..dc0a3ac8174a1018336f74947383b070526b0be0
--- /dev/null
+++ "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look82.txt"
@@ -0,0 +1 @@
+第82个你好
\ No newline at end of file
diff --git "a/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look83.txt" "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look83.txt"
new file mode 100644
index 0000000000000000000000000000000000000000..63fe360f7f90c7b402a080d8d5f3e5886c4ad514
--- /dev/null
+++ "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look83.txt"
@@ -0,0 +1 @@
+第83个你好
\ No newline at end of file
diff --git "a/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look84.txt" "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look84.txt"
new file mode 100644
index 0000000000000000000000000000000000000000..f724e700828b851fbd00c9c0a6c5775a604f444f
--- /dev/null
+++ "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look84.txt"
@@ -0,0 +1 @@
+第84个你好
\ No newline at end of file
diff --git "a/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look85.txt" "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look85.txt"
new file mode 100644
index 0000000000000000000000000000000000000000..dd7839ef0a2c1d4ebc7f32208290ab6a18030709
--- /dev/null
+++ "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look85.txt"
@@ -0,0 +1 @@
+第85个你好
\ No newline at end of file
diff --git "a/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look86.txt" "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look86.txt"
new file mode 100644
index 0000000000000000000000000000000000000000..dcdb58629359a779280d06fdc2868bd66d82d4d2
--- /dev/null
+++ "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look86.txt"
@@ -0,0 +1 @@
+第86个你好
\ No newline at end of file
diff --git "a/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look87.txt" "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look87.txt"
new file mode 100644
index 0000000000000000000000000000000000000000..2f642d4923a5f0aa78f92c7a02b141370daad878
--- /dev/null
+++ "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look87.txt"
@@ -0,0 +1 @@
+第87个你好
\ No newline at end of file
diff --git "a/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look88.txt" "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look88.txt"
new file mode 100644
index 0000000000000000000000000000000000000000..568519093a362413f29325b16df1c91e10f8fd1e
--- /dev/null
+++ "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look88.txt"
@@ -0,0 +1 @@
+第88个你好
\ No newline at end of file
diff --git "a/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look89.txt" "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look89.txt"
new file mode 100644
index 0000000000000000000000000000000000000000..896eb5a9987747fc65671c17c21cc39082dc25e8
--- /dev/null
+++ "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look89.txt"
@@ -0,0 +1 @@
+第89个你好
\ No newline at end of file
diff --git "a/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look9.txt" "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look9.txt"
new file mode 100644
index 0000000000000000000000000000000000000000..f5175b32ee4ff5781b74a1e7632a90dcd77be3df
--- /dev/null
+++ "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look9.txt"
@@ -0,0 +1 @@
+第9个你好
\ No newline at end of file
diff --git "a/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look90.txt" "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look90.txt"
new file mode 100644
index 0000000000000000000000000000000000000000..46b1d46b1ecfdc3411253d8f8c6c65e1ea2bb2fd
--- /dev/null
+++ "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look90.txt"
@@ -0,0 +1 @@
+第90个你好
\ No newline at end of file
diff --git "a/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look91.txt" "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look91.txt"
new file mode 100644
index 0000000000000000000000000000000000000000..10b913418145ad339e31343e4bb7bbc439b738a9
--- /dev/null
+++ "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look91.txt"
@@ -0,0 +1 @@
+第91个你好
\ No newline at end of file
diff --git "a/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look92.txt" "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look92.txt"
new file mode 100644
index 0000000000000000000000000000000000000000..7d785fafce3c4890eba9dd6f2ef5998549001462
--- /dev/null
+++ "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look92.txt"
@@ -0,0 +1 @@
+第92个你好
\ No newline at end of file
diff --git "a/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look93.txt" "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look93.txt"
new file mode 100644
index 0000000000000000000000000000000000000000..f1a4a954c6913797de466a92adf871d29c75a869
--- /dev/null
+++ "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look93.txt"
@@ -0,0 +1 @@
+第93个你好
\ No newline at end of file
diff --git "a/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look94.txt" "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look94.txt"
new file mode 100644
index 0000000000000000000000000000000000000000..f626bf3c9f0a4cb647c791653d5863548255726b
--- /dev/null
+++ "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look94.txt"
@@ -0,0 +1 @@
+第94个你好
\ No newline at end of file
diff --git "a/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look95.txt" "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look95.txt"
new file mode 100644
index 0000000000000000000000000000000000000000..28f3a6ecbe026d23edb3c60c71276aaf94560061
--- /dev/null
+++ "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look95.txt"
@@ -0,0 +1 @@
+第95个你好
\ No newline at end of file
diff --git "a/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look96.txt" "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look96.txt"
new file mode 100644
index 0000000000000000000000000000000000000000..c33916d8fbea12bc283311aac77665fb2446cfa9
--- /dev/null
+++ "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look96.txt"
@@ -0,0 +1 @@
+第96个你好
\ No newline at end of file
diff --git "a/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look97.txt" "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look97.txt"
new file mode 100644
index 0000000000000000000000000000000000000000..a3e32d90450ea47134295841e474c69d37ce6e33
--- /dev/null
+++ "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look97.txt"
@@ -0,0 +1 @@
+第97个你好
\ No newline at end of file
diff --git "a/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look98.txt" "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look98.txt"
new file mode 100644
index 0000000000000000000000000000000000000000..2cc223be013afbbaf4f0d2e76e42f0c34999cfa5
--- /dev/null
+++ "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look98.txt"
@@ -0,0 +1 @@
+第98个你好
\ No newline at end of file
diff --git "a/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look99.txt" "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look99.txt"
new file mode 100644
index 0000000000000000000000000000000000000000..d303435997a8dbe0b10aa8202b0cdfffb1e5bebf
--- /dev/null
+++ "b/\350\260\255\350\216\211\350\216\211/node\344\275\234\344\270\232/look99.txt"
@@ -0,0 +1 @@
+第99个你好
\ No newline at end of file