diff --git a/nodeJS/Learning/07/app/.dockerignore b/nodeJS/Learning/07/app/.dockerignore new file mode 100644 index 0000000..b512c09 --- /dev/null +++ b/nodeJS/Learning/07/app/.dockerignore @@ -0,0 +1 @@ +node_modules \ No newline at end of file diff --git a/nodeJS/Learning/07/app/Dockerfile b/nodeJS/Learning/07/app/Dockerfile new file mode 100644 index 0000000..b0e7b55 --- /dev/null +++ b/nodeJS/Learning/07/app/Dockerfile @@ -0,0 +1,23 @@ +# Use Base Image: What we are using to make Docker File, eg ubuntu container/ image, node etc +FROM node:lts-alpine + +# Make Dir (make sure directory exists) +RUN mkdir -p /usr/src/app + +# Set the working directory: using the correct folder +WORKDIR /usr/src/app + +# Copy files into folder (no need to reinstall every single time) +COPY package.json . + +# Install the dependencies +RUN yarn install + +# Copy the rest of the files +COPY . . + +# Expose the port +EXPOSE 3000 + +# Execute Command +CMD ["yarn", "dev"] \ No newline at end of file diff --git a/nodeJS/Learning/07/app/docker-compose.yaml b/nodeJS/Learning/07/app/docker-compose.yaml new file mode 100644 index 0000000..2ffab99 --- /dev/null +++ b/nodeJS/Learning/07/app/docker-compose.yaml @@ -0,0 +1,16 @@ +services: + web: + build: . + ports: + - "3000:3000" + # files are put in here + volumes: + - .:/usr/src/app + - ./node_modules:/usr/src/app/node_modules + command: ["yarn", "dev"] + + cms: + build: + context: ../cms + ports: + - "1337:1337" diff --git a/nodeJS/Learning/07/app/public/css/pages/index.css b/nodeJS/Learning/07/app/public/css/pages/index.css index 13e1f16..34ebdf0 100644 --- a/nodeJS/Learning/07/app/public/css/pages/index.css +++ b/nodeJS/Learning/07/app/public/css/pages/index.css @@ -63,41 +63,49 @@ h6 { transform: translateY(0); /* End at its normal position */ } } -body { - margin: 0px; +body, +html { + margin: 0; + padding: 0; + box-sizing: border-box; background: linear-gradient(to top right, #3b3561, rgb(191.3, 187.1, 217.9)); height: 100vh; overflow: hidden; } - -.blog { - text-align: center; +body .container, +html .container { display: flex; - justify-content: center; - margin-bottom: 50px; - margin: 0px 50px; - display: grid; - grid-template-columns: repeat(4, 1fr); - grid-template-rows: repeat(2, 1fr); - gap: 20px; + height: 100vh; } -.blog .div1 { - grid-area: 1/1/3/3; - padding-top: 160px; +body .container .div1, +html .container .div1 { + width: 50%; display: flex; - flex-direction: column; align-items: center; - padding: 200px 0px 0px 0px; + justify-content: center; + flex-direction: column; /* General button styling */ } -.blog .div1 h1 { +body .container .div1 h1, +html .container .div1 h1 { font-size: 60px; color: #f7ebec; font-family: "Lexend", serif; font-weight: 300; - padding-bottom: 20px; + padding: 80px 0px 0px 45px; } -.blog .div1 .read-more-btn { +body .container .div1 p, +html .container .div1 p { + font-family: "Space Grotesk", monospace; + color: #3b3561; + font-size: 13px; + text-align: center; + max-width: 560px; + margin-top: 20px; + padding: 0px 0px 0px 50px; +} +body .container .div1 .read-more-btn, +html .container .div1 .read-more-btn { display: inline-flex; /* Flex container for text and icon */ align-items: center; /* Center text and icon vertically */ justify-content: center; /* Center content horizontally */ @@ -111,12 +119,15 @@ body { background-color: #f7ebec; /* Transparent background */ cursor: pointer; /* Pointer cursor on hover */ transition: all 0.3s ease; /* Smooth transition on hover */ + margin-top: 25px; /* Space between text and next element */ } -.blog .div1 .read-more-btn:hover { +body .container .div1 .read-more-btn:hover, +html .container .div1 .read-more-btn:hover { background-color: #3b3561; /* Change background color on hover */ color: #f7ebec; /* Change text color on hover */ } -.blog .div1 .read-more-btn .icon { +body .container .div1 .read-more-btn .icon, +html .container .div1 .read-more-btn .icon { display: flex; /* Flex for the icon */ align-items: center; justify-content: center; @@ -128,11 +139,13 @@ body { border-radius: 50%; /* Make the icon circular */ transition: all 0.3s ease; /* Smooth transition on hover */ } -.blog .div1 .read-more-btn:hover .icon { +body .container .div1 .read-more-btn:hover .icon, +html .container .div1 .read-more-btn:hover .icon { background-color: #f7ebec; /* Change circle background on hover */ color: #3b3561; /* Change arrow color on hover */ } -.blog .div1 .buttons { +body .container .div1 .buttons, +html .container .div1 .buttons { display: flex; flex-direction: column; align-items: left; @@ -142,76 +155,85 @@ body { padding-right: 85px; margin-top: 20px; } -.blog .div1 .buttons button { +body .container .div1 .buttons button, +html .container .div1 .buttons button { padding: 3.5px 23px; - margin: 80px; font-size: 16px; font-family: "Space Grotesk", monospace; border: none; border-radius: 5px; cursor: pointer; transition: background-color 0.3s ease, transform 0.2s ease; -} -.blog .div1 .buttons button.psyc-button { - background-color: #ddbdd5; - color: #3b3561; margin: 0px 0px 0px 70px; } -.blog .div1 .buttons button.psyc-button:hover { +body .container .div1 .buttons button.psyc-button, +html .container .div1 .buttons button.psyc-button { + background-color: #ddbdd5; + color: #3b3561; +} +body .container .div1 .buttons button.psyc-button:hover, +html .container .div1 .buttons button.psyc-button:hover { background-color: rgb(203.66, 155.34, 191.58); transform: scale(1.05); } -.blog .div1 .buttons button.imp-button { +body .container .div1 .buttons button.imp-button, +html .container .div1 .buttons button.imp-button { background-color: #4b8f8c; color: white; - margin: 0px 0px 0px 70px; } -.blog .div1 .buttons button.imp-button:hover { +body .container .div1 .buttons button.imp-button:hover, +html .container .div1 .buttons button.imp-button:hover { background-color: rgb(57.4541284404, 109.5458715596, 107.247706422); transform: scale(1.05); } -.blog .div1 .buttons button.code-button { +body .container .div1 .buttons button.spirit-button, +html .container .div1 .buttons button.spirit-button { + background-color: #f7ebec; + color: #3b3561; +} +body .container .div1 .buttons button.spirit-button:hover, +html .container .div1 .buttons button.spirit-button:hover { + background-color: rgb(222.24, 220.08, 235.92); + transform: scale(1.05); +} +body .container .div1 .buttons button.code-button, +html .container .div1 .buttons button.code-button { background-color: #dd614a; color: white; - margin: 0px 0px 0px 70px; } -.blog .div1 .buttons button.code-button:hover { +body .container .div1 .buttons button.code-button:hover, +html .container .div1 .buttons button.code-button:hover { background-color: rgb(205.4139534884, 64.688372093, 38.5860465116); transform: scale(1.05); } -.blog .div1 .buttons button.spirit-button { - background-color: #f7ebec; - color: #3b3561; - margin: 0px 0px 0px 70px; +body .container .div2, +html .container .div2 { + width: 50%; + padding-left: 30px; + display: flex; + flex-wrap: wrap; } -.blog .div1 .buttons button.spirit-button:hover { - background-color: rgb(209, 206, 206); - transform: scale(1.05); +body .container .div2 a, +html .container .div2 a { + text-decoration: none; } -.blog .div2 { - padding-top: 30px; - height: 200px; /* Set desired height */ - width: 300px; -} -.blog .div2 .entrya { - grid-area: 1/3/2/4; +body .container .div2 .entrya, +html .container .div2 .entrya { background-color: #ddbdd5; - color: black; border-radius: 10px; box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); padding: 20px; border: none; text-align: center; cursor: pointer; - position: fixed; - right: 410px; - top: 40px; height: 300px; width: 300px; + margin: 32px 0px 0px 35px; transition: transform 0.3s ease; animation: buttonEntry 1s ease-in-out; } -.blog .div2 .entrya h2 { +body .container .div2 .entrya h2, +html .container .div2 .entrya h2 { font-size: 20px; color: #3b3561; margin-bottom: 10px; @@ -224,9 +246,18 @@ body { -webkit-line-clamp: 1; /* Limit to 2 lines */ -webkit-box-orient: vertical; /* Vertical text orientation */ white-space: normal; /* Allow wrapping within the box */ - align-content: center; } -.blog .div2 .entrya p { +body .container .div2 .entrya img, +html .container .div2 .entrya img { + max-width: 100%; + height: auto; + width: 200px; /* Set desired width */ + border-radius: 10px; /* Optional: Rounded corners */ + display: block; /* Ensures it's treated as a block element */ + margin: 0 auto; /* Centers the image horizontally */ +} +body .container .div2 .entrya p, +html .container .div2 .entrya p { padding-top: 20px; color: #3b3561; font-size: 0.9rem; @@ -239,203 +270,10 @@ body { white-space: normal; /* Allow wrapping within the box */ font-family: "Space Grotesk", monospace; } -.blog .div2 .entrya:hover { +body .container .div2 .entrya:hover, +html .container .div2 .entrya:hover { transform: translate(60px, 0px); transform: translateY(-5px); } -.blog .div2 .entrya img { - max-width: 100%; - height: auto; - width: 200px; /* Set desired width */ - border-radius: 10px; /* Optional: Rounded corners */ - display: block; /* Ensures it's treated as a block element */ - margin: 0 auto; /* Centers the image horizontally */ -} -.blog .div2 .entrya { - animation: buttonEntry 1s ease-in-out; -} -.blog .div3 { - grid-area: 1/4/2/5; - padding-top: 30px; - width: 300px; -} -.blog .div3 .entryb { - grid-area: 1/3/2/4; - background-color: #4b8f8c; - color: black; - border-radius: 10px; - box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); - padding: 20px; - border: none; - text-align: center; - cursor: pointer; - position: fixed; - right: 90px; - top: 40px; - height: 300px; - width: 300px; - transition: transform 0.3s ease; - animation: buttonEntry 1s ease-in-out; -} -.blog .div3 .entryb h2 { - font-size: 20px; - color: #3b3561; - margin-bottom: 10px; - font-family: "Lexend", serif; - font-weight: 500; - overflow: hidden; /* Hide overflowing text */ - text-overflow: ellipsis; /* Add "..." at the end of truncated text */ - max-width: 250px; /* Restrict container width */ - display: -webkit-box; /* Enables multi-line truncation */ - -webkit-line-clamp: 1; /* Limit to 2 lines */ - -webkit-box-orient: vertical; /* Vertical text orientation */ - white-space: normal; /* Allow wrapping within the box */ - align-content: center; -} -.blog .div3 .entryb p { - padding-top: 20px; - color: #f7ebec; - font-size: 0.9rem; - overflow: hidden; /* Hide overflowing text */ - text-overflow: ellipsis; /* Add "..." at the end of truncated text */ - max-width: 300px; /* Restrict container width */ - display: -webkit-box; /* Enables multi-line truncation */ - -webkit-line-clamp: 2; /* Limit to 2 lines */ - -webkit-box-orient: vertical; /* Vertical text orientation */ - white-space: normal; /* Allow wrapping within the box */ - font-family: "Space Grotesk", monospace; -} -.blog .div3 .entryb:hover { - transform: translateY(-5px); -} -.blog .div3 .entryb img { - max-width: 100%; - height: auto; - width: 200px; /* Set desired width */ - border-radius: 10px; /* Optional: Rounded corners */ - display: block; /* Ensures it's treated as a block element */ - margin: 0 auto; /* Centers the image horizontally */ -} -.blog .div4 { - grid-area: 2/3/3/4; - width: 300px; -} -.blog .div4 .entryc { - border-radius: 10px; - background-color: #dd614a; - color: black; - box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); - padding: 20px; - border: none; - text-align: center; - cursor: pointer; - transition: transform 0.3s ease; - animation: buttonEntry 1s ease-in-out; - position: fixed; - right: 410px; - bottom: 35px; - height: 300px; - width: 300px; -} -.blog .div4 .entryc h2 { - font-size: 20px; - color: #3b3561; - margin-bottom: 10px; - font-family: "Lexend", serif; - font-weight: 500; - overflow: hidden; /* Hide overflowing text */ - text-overflow: ellipsis; /* Add "..." at the end of truncated text */ - max-width: 250px; /* Restrict container width */ - display: -webkit-box; /* Enables multi-line truncation */ - -webkit-line-clamp: 1; /* Limit to 2 lines */ - -webkit-box-orient: vertical; /* Vertical text orientation */ - white-space: normal; /* Allow wrapping within the box */ - align-content: center; -} -.blog .div4 .entryc p { - padding-top: 20px; - color: #f7ebec; - font-size: 0.9rem; - overflow: hidden; /* Hide overflowing text */ - text-overflow: ellipsis; /* Add "..." at the end of truncated text */ - max-width: 300px; /* Restrict container width */ - display: -webkit-box; /* Enables multi-line truncation */ - -webkit-line-clamp: 2; /* Limit to 2 lines */ - -webkit-box-orient: vertical; /* Vertical text orientation */ - white-space: normal; /* Allow wrapping within the box */ - font-family: "Space Grotesk", monospace; -} -.blog .div4 .entryc:hover { - transform: translateY(-5px); -} -.blog .div4 .entryc img { - max-width: 100%; - height: auto; - width: 200px; /* Set desired width */ - border-radius: 10px; /* Optional: Rounded corners */ - display: block; /* Ensures it's treated as a block element */ - margin: 0 auto; /* Centers the image horizontally */ -} -.blog .div5 { - grid-area: 2/4/3/5; - width: 300px; -} -.blog .div5 .entryd { - grid-area: 1/3/2/4; - background-color: #f7ebec; - color: black; - border-radius: 10px; - box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); - padding: 20px; - border: none; - text-align: center; - cursor: pointer; - transition: transform 0.3s ease; - animation: buttonEntry 1s ease-in-out; - position: fixed; - right: 90px; - bottom: 35px; - height: 300px; - width: 300px; -} -.blog .div5 .entryd h2 { - font-size: 20px; - color: #3b3561; - margin-bottom: 10px; - font-family: "Lexend", serif; - font-weight: 500; - overflow: hidden; /* Hide overflowing text */ - text-overflow: ellipsis; /* Add "..." at the end of truncated text */ - max-width: 250px; /* Restrict container width */ - display: -webkit-box; /* Enables multi-line truncation */ - -webkit-line-clamp: 1; /* Limit to 2 lines */ - -webkit-box-orient: vertical; /* Vertical text orientation */ - white-space: normal; /* Allow wrapping within the box */ - align-content: center; -} -.blog .div5 .entryd p { - padding-top: 20px; - color: #3b3561; - font-size: 14px; - overflow: hidden; /* Hide overflowing text */ - text-overflow: ellipsis; /* Add "..." at the end of truncated text */ - max-width: 300px; /* Restrict container width */ - display: -webkit-box; /* Enables multi-line truncation */ - -webkit-line-clamp: 2; /* Limit to 2 lines */ - -webkit-box-orient: vertical; /* Vertical text orientation */ - white-space: normal; /* Allow wrapping within the box */ - font-family: "Space Grotesk", monospace; -} -.blog .div5 .entryd:hover { - transform: translateY(-5px); -} -.blog .div5 .entryd img { - max-width: 100%; - height: auto; - width: 200px; /* Set desired width */ - border-radius: 10px; /* Optional: Rounded corners */ - display: block; /* Ensures it's treated as a block element */ - margin: 0 auto; /* Centers the image horizontally */ -} /*# sourceMappingURL=index.css.map */ diff --git a/nodeJS/Learning/07/app/public/css/pages/index.css.map b/nodeJS/Learning/07/app/public/css/pages/index.css.map index bc0ed92..904fab1 100644 --- a/nodeJS/Learning/07/app/public/css/pages/index.css.map +++ b/nodeJS/Learning/07/app/public/css/pages/index.css.map @@ -1 +1 @@ -{"version":3,"sourceRoot":"","sources":["../../../src/styles/_variable.scss","../../../src/styles/_reset.scss","../../../src/styles/pages/index.scss"],"names":[],"mappings":"AAAQ;ACCR;AAAA;AAAA;EAGC;;;AAGD;EACC;;;AAGD;AAAA;EAEC;;;AAGD;EACC;EACA;;;AAGD;AAAA;AAAA;AAAA;AAAA;EAKC;EACA;;;AAGD;AAAA;AAAA;AAAA;EAIC;;;AAGD;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;EAOC;;;AAGD;AAAA;EAEC;;;AC7CD;AACA;AAEA;AAEA;EACC;IACC;IACA;;EAED;IACC;IACA;;;AAIF;EACC;EACA;EAKA;EACA;;;AAGD;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACC;EACA;EACA;EACA;EACA;EACA;AAiDA;;AA/CA;EACC;EACA,OFhDK;EEiDL,aF9CW;EE+CX;EACA;;AAGD;EACC;EACA;EACA;EACA;EACA,aFvDS,4BEuDyB;EAClC;EACA;EACA,OFhEI,SEgEmB;EACvB;EACA;EACA,kBFjEK,SEiE8B;EACnC;EACA;;AAEA;EACC,kBFxEG,SEwE+B;EAClC,OFvEI,SEuEoB;;AAGzB;EACC;EACA;EACA;EACA;EACA;EACA;EACA,kBFnFG,SEmF+B;EAClC,OFlFI,SEkFoB;EACxB;EACA;;AAGD;EACC,kBFxFI,SEwF+B;EACnC,OF3FG,SE2FoB;;AAKzB;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACC;EACA;EACA;EACA,aFxGQ;EEyGR;EACA;EACA;EACA;;AAEA;EACC,kBFpHE;EEqHF,OFtHE;EEuHF;;AAEA;EACC;EACA;;AAIF;EACC,kBF7HG;EE8HH;EACA;;AAEA;EACC;EACA;;AAIF;EACC,kBFvII;EEwIJ;EACA;;AAEA;EACC;EACA;;AAGF;EACC,kBFnJG;EEoJH,OFtJE;EEuJF;;AAEA;EACC;EACA;;AAML;EACC;EACA;EACA;;AACA;EACC;EACA,kBFtKI;EEuKJ;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACC;EACA,OFzLG;EE0LH;EACA,aFtLU;EEuLV;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGD;EACC;EACA,OFzMG;EE0MH;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA,aF5MQ;;AE+MT;EACC;EACA;;AAGD;EACC;EACA;EACA;EACA;EACA;EACA;;AAMF;EACC;;AAIF;EACC;EACA;EACA;;AACA;EACC;EACA,kBF9OK;EE+OL;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACC;EACA,OFnQG;EEoQH;EACA,aFhQU;EEiQV;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGD;EACC;EACA,OFjRI;EEkRJ;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA,aFtRQ;;AEyRT;EACC;;AAGD;EACC;EACA;EACA;EACA;EACA;EACA;;AAIH;EACC;EACA;;AACA;EACC;EACA,kBF9SM;EE+SN;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACC;EACA,OFnUG;EEoUH;EACA,aFhUU;EEiUV;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGD;EACC;EACA,OFjVI;EEkVJ;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA,aFtVQ;;AEyVT;EACC;;AAGD;EACC;EACA;EACA;EACA;EACA;EACA;;AAIH;EACC;EACA;;AACA;EACC;EACA,kBFhXK;EEiXL;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACC;EACA,OFpYG;EEqYH;EACA,aFjYU;EEkYV;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGD;EACC;EACA,OFpZG;EEqZH;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA,aFvZQ;;AE0ZT;EACC;;AAGD;EACC;EACA;EACA;EACA;EACA;EACA","file":"index.css"} \ No newline at end of file +{"version":3,"sourceRoot":"","sources":["../../../src/styles/_variable.scss","../../../src/styles/_reset.scss","../../../src/styles/pages/index.scss"],"names":[],"mappings":"AAAQ;ACCR;AAAA;AAAA;EAGC;;;AAGD;EACC;;;AAGD;AAAA;EAEC;;;AAGD;EACC;EACA;;;AAGD;AAAA;AAAA;AAAA;AAAA;EAKC;EACA;;;AAGD;AAAA;AAAA;AAAA;EAIC;;;AAGD;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;EAOC;;;AAGD;AAAA;EAEC;;;AC7CD;AACA;AAEA;AAEA;EACC;IACC;IACA;;EAED;IACC;IACA;;;AAIF;AAAA;EAEC;EACA;EACA;EACA;EAKA;EACA;;AAEA;AAAA;EACC;EACA;;AAEA;AAAA;EACC;EACA;EACA;EACA;EACA;AA4DA;;AA1DA;AAAA;EACC;EACA,OF1CI;EE2CJ,aFxCU;EEyCV;EACA;;AAGD;AAAA;EACC,aF7CQ;EE8CR,OFpDG;EEqDH;EACA;EACA;EACA;EACA;;AAGD;AAAA;EACC;EACA;EACA;EACA;EACA,aF3DQ,4BE2D0B;EAClC;EACA;EACA,OFpEG,SEoEoB;EACvB;EACA;EACA,kBFrEI,SEqE+B;EACnC;EACA;EACA;;AAEA;AAAA;EACC,kBF7EE,SE6EgC;EAClC,OF5EG,SE4EqB;;AAGzB;AAAA;EACC;EACA;EACA;EACA;EACA;EACA;EACA,kBFxFE,SEwFgC;EAClC,OFvFG,SEuFqB;EACxB;EACA;;AAGD;AAAA;EACC,kBF7FG,SE6FgC;EACnC,OFhGE,SEgGqB;;AAKzB;AAAA;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;AAAA;EACC;EACA;EACA,aF5GO;EE6GP;EACA;EACA;EACA;EACA;;AAEA;AAAA;EACC,kBFzHC;EE0HD,OF3HC;;AE6HD;AAAA;EACC;EACA;;AAIF;AAAA;EACC,kBFjIE;EEkIF;;AAEA;AAAA;EACC;EACA;;AAIF;AAAA;EACC,kBF5IE;EE6IF,OF/IC;;AEiJD;AAAA;EACC;EACA;;AAIF;AAAA;EACC,kBFpJG;EEqJH;;AAEA;AAAA;EACC;EACA;;AAML;AAAA;EACC;EACA;EACA;EACA;;AAEA;AAAA;EACC;;AAGD;AAAA;EACC,kBF7KG;EE8KH;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;AAAA;EACC;EACA,OF7LE;EE8LF;EACA,aF1LS;EE2LT;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGD;AAAA;EACC;EACA;EACA;EACA;EACA;EACA;;AAGD;AAAA;EACC;EACA,OFrNE;EEsNF;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA,aFxNO;;AE2NR;AAAA;EACC;EACA","file":"index.css"} \ No newline at end of file diff --git a/nodeJS/Learning/07/app/public/images/favicon.ico b/nodeJS/Learning/07/app/public/images/favicon.ico new file mode 100644 index 0000000..aea8215 Binary files /dev/null and b/nodeJS/Learning/07/app/public/images/favicon.ico differ diff --git a/nodeJS/Learning/07/app/public/images/peeking.png b/nodeJS/Learning/07/app/public/images/peeking.png deleted file mode 100644 index a411394..0000000 Binary files a/nodeJS/Learning/07/app/public/images/peeking.png and /dev/null differ diff --git a/nodeJS/Learning/07/app/public/js/index.js b/nodeJS/Learning/07/app/public/js/index.js index 5b06615..e69de29 100644 --- a/nodeJS/Learning/07/app/public/js/index.js +++ b/nodeJS/Learning/07/app/public/js/index.js @@ -1,28 +0,0 @@ -// Function to fetch and display posts -async function fetchAndDisplayPosts() { - try { - const response = await fetch("http://localhost:1337/api/posts"); // Adjust URL to your Strapi server - const result = await response.json(); - - const postsContainer = document.getElementById("posts-container"); - postsContainer.innerHTML = ""; // Clear any existing content - - // Loop through the posts and create links - result.data.forEach((post) => { - const postElement = document.createElement("div"); - const postLink = document.createElement("a"); - - // Link to the post (using slug or id for dynamic routes) - postLink.href = `/posts/${post.attributes.slug}`; // Adjust this to match your route - postLink.textContent = post.attributes.title; - - postElement.appendChild(postLink); - postsContainer.appendChild(postElement); - }); - } catch (error) { - console.error("Error fetching posts:", error); - } -} - -// Fetch posts when the page loads -document.addEventListener("DOMContentLoaded", fetchAndDisplayPosts); diff --git a/nodeJS/Learning/07/app/src/index.ts b/nodeJS/Learning/07/app/src/index.ts index 760e5e5..97fad16 100644 --- a/nodeJS/Learning/07/app/src/index.ts +++ b/nodeJS/Learning/07/app/src/index.ts @@ -15,20 +15,15 @@ app.set("views", `./src/views`); app.set("view engine", "ejs"); //Get strapi data -app.get("/api/articles", async (_req: Request, res: Response) => { - try { - const response = await fetch("http://localhost:1337/api/articles"); +app.get("/", async (_req: Request, res: Response) => { + const postsData = await fetch("http://cms:1337/api/blog-posts", { + method: "GET", + headers: { + Authorization: `Bearer ${process.env.STRAPI_BEARER_TOKEN}`, + }, + }).then((response) => response.json()); - if (!response.ok) { - throw new Error(`Strapi API responded with status ${response.status}`); - } - - const data = await response.json(); - res.json(data); // Pass through Strapi data - } catch (error) { - console.error("Error fetching articles from Strapi:", error); - res.status(500).json({ error: "Failed to fetch data from Strapi" }); - } + res.render("index", { posts: postsData }); }); //Static route diff --git a/nodeJS/Learning/07/app/src/styles/pages/index.scss b/nodeJS/Learning/07/app/src/styles/pages/index.scss index df66df4..6430de3 100644 --- a/nodeJS/Learning/07/app/src/styles/pages/index.scss +++ b/nodeJS/Learning/07/app/src/styles/pages/index.scss @@ -18,416 +18,234 @@ } } -body { - margin: 0px; +body, +html { + margin: 0; + padding: 0; + box-sizing: border-box; background: linear-gradient( to top right, variable.$blue, lighten(variable.$blue, 50%) ); - height: 100vh; // Ensure the gradient covers the entire viewport height + height: 100vh; overflow: hidden; -} -.blog { - text-align: center; - display: flex; // Use flexbox for alignment - justify-content: center; // Center horizontally - margin-bottom: 50px; - margin: 0px 50px; - display: grid; - grid-template-columns: repeat(4, 1fr); - grid-template-rows: repeat(2, 1fr); - gap: 20px; - - .div1 { - grid-area: 1 / 1 / 3 / 3; - padding-top: 160px; + .container { display: flex; - flex-direction: column; - align-items: center; - padding: 200px 0px 0px 00px; + height: 100vh; - h1 { - font-size: 60px; - color: variable.$white; - font-family: variable.$font-header; - font-weight: 300; - padding-bottom: 20px; - } - - .read-more-btn { - display: inline-flex; /* Flex container for text and icon */ - align-items: center; /* Center text and icon vertically */ - justify-content: center; /* Center content horizontally */ - padding: 10px 20px; /* Button padding */ - font-family: variable.$font-body; /* Font style */ - font-size: 16px; /* Font size */ - font-weight: bold; /* Bold text */ - color: variable.$blue; /* Text color */ - border: 2px solid variable.$blue; /* Button border */ - border-radius: 30px; /* Rounded edges for the button */ - background-color: variable.$white; /* Transparent background */ - cursor: pointer; /* Pointer cursor on hover */ - transition: all 0.3s ease; /* Smooth transition on hover */ - - &:hover { - background-color: variable.$blue; /* Change background color on hover */ - color: variable.$white; /* Change text color on hover */ - } - - .icon { - display: flex; /* Flex for the icon */ - align-items: center; - justify-content: center; - margin-left: 10px; /* Space between text and icon */ - width: 20px; /* Icon circle width */ - height: 20px; /* Icon circle height */ - background-color: variable.$blue; /* Circle background color */ - color: variable.$white; /* Arrow color */ - border-radius: 50%; /* Make the icon circular */ - transition: all 0.3s ease; /* Smooth transition on hover */ - } - - &:hover .icon { - background-color: variable.$white; /* Change circle background on hover */ - color: variable.$blue; /* Change arrow color on hover */ - } - } - - /* General button styling */ - .buttons { + .div1 { + width: 50%; display: flex; - flex-direction: column; - align-items: left; + align-items: center; justify-content: center; - gap: 10px; - padding: 20px; - padding-right: 85px; - margin-top: 20px; + flex-direction: column; - button { - padding: 3.5px 23px; - margin: 80px; - font-size: 16px; + h1 { + font-size: 60px; + color: variable.$white; + font-family: variable.$font-header; + font-weight: 300; + padding: 80px 0px 0px 45px; + } + + p { font-family: variable.$font-body; + color: variable.$blue; + font-size: 13px; + text-align: center; + max-width: 560px; + margin-top: 20px; + padding: 0px 0px 0px 50px; + } + + .read-more-btn { + display: inline-flex; /* Flex container for text and icon */ + align-items: center; /* Center text and icon vertically */ + justify-content: center; /* Center content horizontally */ + padding: 10px 20px; /* Button padding */ + font-family: variable.$font-body; /* Font style */ + font-size: 16px; /* Font size */ + font-weight: bold; /* Bold text */ + color: variable.$blue; /* Text color */ + border: 2px solid variable.$blue; /* Button border */ + border-radius: 30px; /* Rounded edges for the button */ + background-color: variable.$white; /* Transparent background */ + cursor: pointer; /* Pointer cursor on hover */ + transition: all 0.3s ease; /* Smooth transition on hover */ + margin-top: 25px; /* Space between text and next element */ + + &:hover { + background-color: variable.$blue; /* Change background color on hover */ + color: variable.$white; /* Change text color on hover */ + } + + .icon { + display: flex; /* Flex for the icon */ + align-items: center; + justify-content: center; + margin-left: 10px; /* Space between text and icon */ + width: 20px; /* Icon circle width */ + height: 20px; /* Icon circle height */ + background-color: variable.$blue; /* Circle background color */ + color: variable.$white; /* Arrow color */ + border-radius: 50%; /* Make the icon circular */ + transition: all 0.3s ease; /* Smooth transition on hover */ + } + + &:hover .icon { + background-color: variable.$white; /* Change circle background on hover */ + color: variable.$blue; /* Change arrow color on hover */ + } + } + + /* General button styling */ + .buttons { + display: flex; + flex-direction: column; + align-items: left; + justify-content: center; + gap: 10px; + padding: 20px; + padding-right: 85px; + margin-top: 20px; + + button { + padding: 3.5px 23px; + font-size: 16px; + font-family: variable.$font-body; + border: none; + border-radius: 5px; + cursor: pointer; + transition: background-color 0.3s ease, transform 0.2s ease; + margin: 0px 0px 0px 70px; + + &.psyc-button { + background-color: variable.$pink; + color: variable.$blue; + + &:hover { + background-color: darken(variable.$pink, 10%); + transform: scale(1.05); + } + } + + &.imp-button { + background-color: variable.$green; + color: white; + + &:hover { + background-color: darken(variable.$green, 10%); + transform: scale(1.05); + } + } + + &.spirit-button { + background-color: variable.$white; + color: variable.$blue; + + &:hover { + background-color: lighten(variable.$blue, 60%); + transform: scale(1.05); + } + } + + &.code-button { + background-color: variable.$orange; + color: white; + + &:hover { + background-color: darken(variable.$orange, 10%); + transform: scale(1.05); + } + } + } + } + } + .div2 { + width: 50%; + padding-left: 30px; + display: flex; + flex-wrap: wrap; + + a { + text-decoration: none; // Removes the underline + } + + .entrya { + background-color: variable.$pink; + border-radius: 10px; + box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); + padding: 20px; border: none; - border-radius: 5px; + text-align: center; cursor: pointer; - transition: background-color 0.3s ease, transform 0.2s ease; + height: 300px; + width: 300px; + margin: 32px 0px 0px 35px; + transition: transform 0.3s ease; + animation: buttonEntry 1s ease-in-out; - &.psyc-button { - background-color: variable.$pink; + h2 { + font-size: 20px; color: variable.$blue; - margin: 0px 0px 0px 70px; - - &:hover { - background-color: darken(variable.$pink, 10%); - transform: scale(1.05); - } + margin-bottom: 10px; + font-family: variable.$font-header; + font-weight: 500; + overflow: hidden; /* Hide overflowing text */ + text-overflow: ellipsis; /* Add "..." at the end of truncated text */ + max-width: 250px; /* Restrict container width */ + display: -webkit-box; /* Enables multi-line truncation */ + -webkit-line-clamp: 1; /* Limit to 2 lines */ + -webkit-box-orient: vertical; /* Vertical text orientation */ + white-space: normal; /* Allow wrapping within the box */ } - &.imp-button { - background-color: variable.$green; - color: white; - margin: 0px 0px 0px 70px; - - &:hover { - background-color: darken(variable.$green, 10%); - transform: scale(1.05); - } + img { + max-width: 100%; + height: auto; + width: 200px; /* Set desired width */ + border-radius: 10px; /* Optional: Rounded corners */ + display: block; /* Ensures it's treated as a block element */ + margin: 0 auto; /* Centers the image horizontally */ } - &.code-button { - background-color: variable.$orange; - color: white; - margin: 0px 0px 0px 70px; - - &:hover { - background-color: darken(variable.$orange, 10%); - transform: scale(1.05); - } - } - &.spirit-button { - background-color: variable.$white; + p { + padding-top: 20px; color: variable.$blue; - margin: 0px 0px 0px 70px; - - &:hover { - background-color: rgb(209, 206, 206); - transform: scale(1.05); - } + font-size: 0.9rem; + overflow: hidden; /* Hide overflowing text */ + text-overflow: ellipsis; /* Add "..." at the end of truncated text */ + max-width: 300px; /* Restrict container width */ + display: -webkit-box; /* Enables multi-line truncation */ + -webkit-line-clamp: 2; /* Limit to 2 lines */ + -webkit-box-orient: vertical; /* Vertical text orientation */ + white-space: normal; /* Allow wrapping within the box */ + font-family: variable.$font-body; } - } - } - } - .div2 { - padding-top: 30px; - height: 200px; /* Set desired height */ - width: 300px; - .entrya { - grid-area: 1 / 3 / 2 / 4; - background-color: variable.$pink; - color: black; - border-radius: 10px; - box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); - padding: 20px; - border: none; - text-align: center; - cursor: pointer; - position: fixed; - right: 410px; - top: 40px; - height: 300px; - width: 300px; - transition: transform 0.3s ease; - animation: buttonEntry 1s ease-in-out; - h2 { - font-size: 20px; - color: variable.$blue; - margin-bottom: 10px; - font-family: variable.$font-header; - font-weight: 500; - overflow: hidden; /* Hide overflowing text */ - text-overflow: ellipsis; /* Add "..." at the end of truncated text */ - max-width: 250px; /* Restrict container width */ - display: -webkit-box; /* Enables multi-line truncation */ - -webkit-line-clamp: 1; /* Limit to 2 lines */ - -webkit-box-orient: vertical; /* Vertical text orientation */ - white-space: normal; /* Allow wrapping within the box */ - align-content: center; - } - - p { - padding-top: 20px; - color: variable.$blue; - font-size: 0.9rem; - overflow: hidden; /* Hide overflowing text */ - text-overflow: ellipsis; /* Add "..." at the end of truncated text */ - max-width: 300px; /* Restrict container width */ - display: -webkit-box; /* Enables multi-line truncation */ - -webkit-line-clamp: 2; /* Limit to 2 lines */ - -webkit-box-orient: vertical; /* Vertical text orientation */ - white-space: normal; /* Allow wrapping within the box */ - font-family: variable.$font-body; - } - - &:hover { - transform: translate(60px, 0px); - transform: translateY(-5px); - } - - img { - max-width: 100%; - height: auto; - width: 200px; /* Set desired width */ - border-radius: 10px; /* Optional: Rounded corners */ - display: block; /* Ensures it's treated as a block element */ - margin: 0 auto; /* Centers the image horizontally */ - } - } - } - - .div2 { - .entrya { - animation: buttonEntry 1s ease-in-out; - } - } - - .div3 { - grid-area: 1 / 4 / 2 / 5; - padding-top: 30px; - width: 300px; - .entryb { - grid-area: 1 / 3 / 2 / 4; - background-color: variable.$green; - color: black; - border-radius: 10px; - box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); - padding: 20px; - border: none; - text-align: center; - cursor: pointer; - position: fixed; - right: 90px; - top: 40px; - height: 300px; - width: 300px; - transition: transform 0.3s ease; - animation: buttonEntry 1s ease-in-out; - - h2 { - font-size: 20px; - color: variable.$blue; - margin-bottom: 10px; - font-family: variable.$font-header; - font-weight: 500; - overflow: hidden; /* Hide overflowing text */ - text-overflow: ellipsis; /* Add "..." at the end of truncated text */ - max-width: 250px; /* Restrict container width */ - display: -webkit-box; /* Enables multi-line truncation */ - -webkit-line-clamp: 1; /* Limit to 2 lines */ - -webkit-box-orient: vertical; /* Vertical text orientation */ - white-space: normal; /* Allow wrapping within the box */ - align-content: center; - } - - p { - padding-top: 20px; - color: variable.$white; - font-size: 0.9rem; - overflow: hidden; /* Hide overflowing text */ - text-overflow: ellipsis; /* Add "..." at the end of truncated text */ - max-width: 300px; /* Restrict container width */ - display: -webkit-box; /* Enables multi-line truncation */ - -webkit-line-clamp: 2; /* Limit to 2 lines */ - -webkit-box-orient: vertical; /* Vertical text orientation */ - white-space: normal; /* Allow wrapping within the box */ - font-family: variable.$font-body; - } - - &:hover { - transform: translateY(-5px); - } - - img { - max-width: 100%; - height: auto; - width: 200px; /* Set desired width */ - border-radius: 10px; /* Optional: Rounded corners */ - display: block; /* Ensures it's treated as a block element */ - margin: 0 auto; /* Centers the image horizontally */ - } - } - } - .div4 { - grid-area: 2 / 3 / 3 / 4; - width: 300px; - .entryc { - border-radius: 10px; - background-color: variable.$orange; - color: black; - box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); - padding: 20px; - border: none; - text-align: center; - cursor: pointer; - transition: transform 0.3s ease; - animation: buttonEntry 1s ease-in-out; - position: fixed; - right: 410px; - bottom: 35px; - height: 300px; - width: 300px; - - h2 { - font-size: 20px; - color: variable.$blue; - margin-bottom: 10px; - font-family: variable.$font-header; - font-weight: 500; - overflow: hidden; /* Hide overflowing text */ - text-overflow: ellipsis; /* Add "..." at the end of truncated text */ - max-width: 250px; /* Restrict container width */ - display: -webkit-box; /* Enables multi-line truncation */ - -webkit-line-clamp: 1; /* Limit to 2 lines */ - -webkit-box-orient: vertical; /* Vertical text orientation */ - white-space: normal; /* Allow wrapping within the box */ - align-content: center; - } - - p { - padding-top: 20px; - color: variable.$white; - font-size: 0.9rem; - overflow: hidden; /* Hide overflowing text */ - text-overflow: ellipsis; /* Add "..." at the end of truncated text */ - max-width: 300px; /* Restrict container width */ - display: -webkit-box; /* Enables multi-line truncation */ - -webkit-line-clamp: 2; /* Limit to 2 lines */ - -webkit-box-orient: vertical; /* Vertical text orientation */ - white-space: normal; /* Allow wrapping within the box */ - font-family: variable.$font-body; - } - - &:hover { - transform: translateY(-5px); - } - - img { - max-width: 100%; - height: auto; - width: 200px; /* Set desired width */ - border-radius: 10px; /* Optional: Rounded corners */ - display: block; /* Ensures it's treated as a block element */ - margin: 0 auto; /* Centers the image horizontally */ - } - } - } - .div5 { - grid-area: 2 / 4 / 3 / 5; - width: 300px; - .entryd { - grid-area: 1 / 3 / 2 / 4; - background-color: variable.$white; - color: black; - border-radius: 10px; - box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); - padding: 20px; - border: none; - text-align: center; - cursor: pointer; - transition: transform 0.3s ease; - animation: buttonEntry 1s ease-in-out; - position: fixed; - right: 90px; - bottom: 35px; - height: 300px; - width: 300px; - - h2 { - font-size: 20px; - color: variable.$blue; - margin-bottom: 10px; - font-family: variable.$font-header; - font-weight: 500; - overflow: hidden; /* Hide overflowing text */ - text-overflow: ellipsis; /* Add "..." at the end of truncated text */ - max-width: 250px; /* Restrict container width */ - display: -webkit-box; /* Enables multi-line truncation */ - -webkit-line-clamp: 1; /* Limit to 2 lines */ - -webkit-box-orient: vertical; /* Vertical text orientation */ - white-space: normal; /* Allow wrapping within the box */ - align-content: center; - } - - p { - padding-top: 20px; - color: variable.$blue; - font-size: 14px; - overflow: hidden; /* Hide overflowing text */ - text-overflow: ellipsis; /* Add "..." at the end of truncated text */ - max-width: 300px; /* Restrict container width */ - display: -webkit-box; /* Enables multi-line truncation */ - -webkit-line-clamp: 2; /* Limit to 2 lines */ - -webkit-box-orient: vertical; /* Vertical text orientation */ - white-space: normal; /* Allow wrapping within the box */ - font-family: variable.$font-body; - } - - &:hover { - transform: translateY(-5px); - } - - img { - max-width: 100%; - height: auto; - width: 200px; /* Set desired width */ - border-radius: 10px; /* Optional: Rounded corners */ - display: block; /* Ensures it's treated as a block element */ - margin: 0 auto; /* Centers the image horizontally */ + &:hover { + transform: translate(60px, 0px); + transform: translateY(-5px); + } } } } } +// .entryb { +// grid-area: 1 / 3 / 2 / 4; +// background-color: variable.$green; +// color: black; +// } + +// .entryc { +// border-radius: 10px; +// background-color: variable.$orange; +// color: black; } + +// .entryd { +// background-color: variable.$white; +// color: black; +// border-radius: 10px; +// } diff --git a/nodeJS/Learning/07/app/src/views/index.ejs b/nodeJS/Learning/07/app/src/views/index.ejs index f0c14b1..564fb56 100644 --- a/nodeJS/Learning/07/app/src/views/index.ejs +++ b/nodeJS/Learning/07/app/src/views/index.ejs @@ -12,51 +12,48 @@ -
+

This is my blog page.

- +
+ + <% }); %>
-
+
+ - Amidst the quiet hum of a bustling city, a small coffee shop stood tucked between towering buildings, its warm amber glow spilling onto the cobblestone street. Inside, the aroma of freshly ground beans mingled with the faint scent of vanilla candles, creating an inviting haven for dreamers and wanderers alike. Patrons sipped their steaming cups, some lost in the pages of weathered books, others immersed in conversations that seemed to carry the weight of untold stories. At a corner table, an artist sketched furiously, capturing the essence of the world beyond the shop’s rain-streaked window. The scene felt timeless, a perfect blend of tranquility and vibrant energy, as if the space itself whispered promises of inspiration to all who entered.

- - -
- diff --git a/nodeJS/Learning/07/cms/favicon.png b/nodeJS/Learning/07/cms/favicon.png deleted file mode 100644 index df668a8..0000000 Binary files a/nodeJS/Learning/07/cms/favicon.png and /dev/null differ diff --git a/nodeJS/Learning/07/cms/public/uploads/adels_asumi_adels_white_haired_anime_princess_in_white_underwear_in_palace_38a5968f_1cb7_4f83_8eed_6eae2efff9a5_enhanced_884bd694f4.jpg b/nodeJS/Learning/07/cms/public/uploads/adels_asumi_adels_white_haired_anime_princess_in_white_underwear_in_palace_38a5968f_1cb7_4f83_8eed_6eae2efff9a5_enhanced_884bd694f4.jpg new file mode 100644 index 0000000..54d5d4d Binary files /dev/null and b/nodeJS/Learning/07/cms/public/uploads/adels_asumi_adels_white_haired_anime_princess_in_white_underwear_in_palace_38a5968f_1cb7_4f83_8eed_6eae2efff9a5_enhanced_884bd694f4.jpg differ diff --git a/nodeJS/Learning/07/cms/public/uploads/anime_style_cozy_home_interior_with_furnishings_23_2151176427_78b0b24a73.avif b/nodeJS/Learning/07/cms/public/uploads/anime_style_cozy_home_interior_with_furnishings_23_2151176427_78b0b24a73.avif new file mode 100644 index 0000000..4968026 Binary files /dev/null and b/nodeJS/Learning/07/cms/public/uploads/anime_style_cozy_home_interior_with_furnishings_23_2151176427_78b0b24a73.avif differ diff --git a/nodeJS/Learning/07/cms/public/uploads/grand_suite_ac1201a25f.jpg b/nodeJS/Learning/07/cms/public/uploads/grand_suite_ac1201a25f.jpg new file mode 100644 index 0000000..c817a4d Binary files /dev/null and b/nodeJS/Learning/07/cms/public/uploads/grand_suite_ac1201a25f.jpg differ diff --git a/nodeJS/Learning/07/cms/public/uploads/large_adels_asumi_adels_white_haired_anime_princess_in_white_underwear_in_palace_38a5968f_1cb7_4f83_8eed_6eae2efff9a5_enhanced_884bd694f4.jpg b/nodeJS/Learning/07/cms/public/uploads/large_adels_asumi_adels_white_haired_anime_princess_in_white_underwear_in_palace_38a5968f_1cb7_4f83_8eed_6eae2efff9a5_enhanced_884bd694f4.jpg new file mode 100644 index 0000000..151628e Binary files /dev/null and b/nodeJS/Learning/07/cms/public/uploads/large_adels_asumi_adels_white_haired_anime_princess_in_white_underwear_in_palace_38a5968f_1cb7_4f83_8eed_6eae2efff9a5_enhanced_884bd694f4.jpg differ diff --git a/nodeJS/Learning/07/cms/public/uploads/large_grand_suite_ac1201a25f.jpg b/nodeJS/Learning/07/cms/public/uploads/large_grand_suite_ac1201a25f.jpg new file mode 100644 index 0000000..d79783c Binary files /dev/null and b/nodeJS/Learning/07/cms/public/uploads/large_grand_suite_ac1201a25f.jpg differ diff --git a/nodeJS/Learning/07/cms/public/uploads/large_test_e3e58db550.png b/nodeJS/Learning/07/cms/public/uploads/large_test_e3e58db550.png new file mode 100644 index 0000000..26d72c4 Binary files /dev/null and b/nodeJS/Learning/07/cms/public/uploads/large_test_e3e58db550.png differ diff --git a/nodeJS/Learning/07/cms/public/uploads/large_winter_2fc84fb1c6.png b/nodeJS/Learning/07/cms/public/uploads/large_winter_2fc84fb1c6.png new file mode 100644 index 0000000..51ff5ee Binary files /dev/null and b/nodeJS/Learning/07/cms/public/uploads/large_winter_2fc84fb1c6.png differ diff --git a/nodeJS/Learning/07/cms/public/uploads/medium_adels_asumi_adels_white_haired_anime_princess_in_white_underwear_in_palace_38a5968f_1cb7_4f83_8eed_6eae2efff9a5_enhanced_884bd694f4.jpg b/nodeJS/Learning/07/cms/public/uploads/medium_adels_asumi_adels_white_haired_anime_princess_in_white_underwear_in_palace_38a5968f_1cb7_4f83_8eed_6eae2efff9a5_enhanced_884bd694f4.jpg new file mode 100644 index 0000000..2a8262d Binary files /dev/null and b/nodeJS/Learning/07/cms/public/uploads/medium_adels_asumi_adels_white_haired_anime_princess_in_white_underwear_in_palace_38a5968f_1cb7_4f83_8eed_6eae2efff9a5_enhanced_884bd694f4.jpg differ diff --git a/nodeJS/Learning/07/cms/public/uploads/medium_grand_suite_ac1201a25f.jpg b/nodeJS/Learning/07/cms/public/uploads/medium_grand_suite_ac1201a25f.jpg new file mode 100644 index 0000000..e643340 Binary files /dev/null and b/nodeJS/Learning/07/cms/public/uploads/medium_grand_suite_ac1201a25f.jpg differ diff --git a/nodeJS/Learning/07/cms/public/uploads/medium_test_e3e58db550.png b/nodeJS/Learning/07/cms/public/uploads/medium_test_e3e58db550.png new file mode 100644 index 0000000..ed97c65 Binary files /dev/null and b/nodeJS/Learning/07/cms/public/uploads/medium_test_e3e58db550.png differ diff --git a/nodeJS/Learning/07/cms/public/uploads/medium_winter_2fc84fb1c6.png b/nodeJS/Learning/07/cms/public/uploads/medium_winter_2fc84fb1c6.png new file mode 100644 index 0000000..c8ad316 Binary files /dev/null and b/nodeJS/Learning/07/cms/public/uploads/medium_winter_2fc84fb1c6.png differ diff --git a/nodeJS/Learning/07/cms/public/uploads/small_adels_asumi_adels_white_haired_anime_princess_in_white_underwear_in_palace_38a5968f_1cb7_4f83_8eed_6eae2efff9a5_enhanced_884bd694f4.jpg b/nodeJS/Learning/07/cms/public/uploads/small_adels_asumi_adels_white_haired_anime_princess_in_white_underwear_in_palace_38a5968f_1cb7_4f83_8eed_6eae2efff9a5_enhanced_884bd694f4.jpg new file mode 100644 index 0000000..ebd6ebf Binary files /dev/null and b/nodeJS/Learning/07/cms/public/uploads/small_adels_asumi_adels_white_haired_anime_princess_in_white_underwear_in_palace_38a5968f_1cb7_4f83_8eed_6eae2efff9a5_enhanced_884bd694f4.jpg differ diff --git a/nodeJS/Learning/07/cms/public/uploads/small_grand_suite_ac1201a25f.jpg b/nodeJS/Learning/07/cms/public/uploads/small_grand_suite_ac1201a25f.jpg new file mode 100644 index 0000000..e7d6d9e Binary files /dev/null and b/nodeJS/Learning/07/cms/public/uploads/small_grand_suite_ac1201a25f.jpg differ diff --git a/nodeJS/Learning/07/cms/public/uploads/small_test_e3e58db550.png b/nodeJS/Learning/07/cms/public/uploads/small_test_e3e58db550.png new file mode 100644 index 0000000..280682b Binary files /dev/null and b/nodeJS/Learning/07/cms/public/uploads/small_test_e3e58db550.png differ diff --git a/nodeJS/Learning/07/cms/public/uploads/small_winter_2fc84fb1c6.png b/nodeJS/Learning/07/cms/public/uploads/small_winter_2fc84fb1c6.png new file mode 100644 index 0000000..8714811 Binary files /dev/null and b/nodeJS/Learning/07/cms/public/uploads/small_winter_2fc84fb1c6.png differ diff --git a/nodeJS/Learning/07/cms/public/uploads/test_e3e58db550.png b/nodeJS/Learning/07/cms/public/uploads/test_e3e58db550.png new file mode 100644 index 0000000..9b78173 Binary files /dev/null and b/nodeJS/Learning/07/cms/public/uploads/test_e3e58db550.png differ diff --git a/nodeJS/Learning/07/cms/public/uploads/thumbnail_adels_asumi_adels_white_haired_anime_princess_in_white_underwear_in_palace_38a5968f_1cb7_4f83_8eed_6eae2efff9a5_enhanced_884bd694f4.jpg b/nodeJS/Learning/07/cms/public/uploads/thumbnail_adels_asumi_adels_white_haired_anime_princess_in_white_underwear_in_palace_38a5968f_1cb7_4f83_8eed_6eae2efff9a5_enhanced_884bd694f4.jpg new file mode 100644 index 0000000..edbe401 Binary files /dev/null and b/nodeJS/Learning/07/cms/public/uploads/thumbnail_adels_asumi_adels_white_haired_anime_princess_in_white_underwear_in_palace_38a5968f_1cb7_4f83_8eed_6eae2efff9a5_enhanced_884bd694f4.jpg differ diff --git a/nodeJS/Learning/07/cms/public/uploads/thumbnail_grand_suite_ac1201a25f.jpg b/nodeJS/Learning/07/cms/public/uploads/thumbnail_grand_suite_ac1201a25f.jpg new file mode 100644 index 0000000..04b4c71 Binary files /dev/null and b/nodeJS/Learning/07/cms/public/uploads/thumbnail_grand_suite_ac1201a25f.jpg differ diff --git a/nodeJS/Learning/07/cms/public/uploads/thumbnail_test_e3e58db550.png b/nodeJS/Learning/07/cms/public/uploads/thumbnail_test_e3e58db550.png new file mode 100644 index 0000000..841fbc8 Binary files /dev/null and b/nodeJS/Learning/07/cms/public/uploads/thumbnail_test_e3e58db550.png differ diff --git a/nodeJS/Learning/07/cms/public/uploads/thumbnail_winter_2fc84fb1c6.png b/nodeJS/Learning/07/cms/public/uploads/thumbnail_winter_2fc84fb1c6.png new file mode 100644 index 0000000..714fdaf Binary files /dev/null and b/nodeJS/Learning/07/cms/public/uploads/thumbnail_winter_2fc84fb1c6.png differ diff --git a/nodeJS/Learning/07/cms/public/uploads/winter_2fc84fb1c6.png b/nodeJS/Learning/07/cms/public/uploads/winter_2fc84fb1c6.png new file mode 100644 index 0000000..803ec33 Binary files /dev/null and b/nodeJS/Learning/07/cms/public/uploads/winter_2fc84fb1c6.png differ diff --git a/nodeJS/Learning/07/db/PG_VERSION b/nodeJS/Learning/07/db/PG_VERSION new file mode 100755 index 0000000..8351c19 --- /dev/null +++ b/nodeJS/Learning/07/db/PG_VERSION @@ -0,0 +1 @@ +14 diff --git a/nodeJS/Learning/07/db/base/1/112 b/nodeJS/Learning/07/db/base/1/112 new file mode 100755 index 0000000..21db514 Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/112 differ diff --git a/nodeJS/Learning/07/db/base/1/113 b/nodeJS/Learning/07/db/base/1/113 new file mode 100755 index 0000000..3f06e2f Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/113 differ diff --git a/nodeJS/Learning/07/db/base/1/1247 b/nodeJS/Learning/07/db/base/1/1247 new file mode 100755 index 0000000..16784f0 Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/1247 differ diff --git a/nodeJS/Learning/07/db/base/1/1247_fsm b/nodeJS/Learning/07/db/base/1/1247_fsm new file mode 100755 index 0000000..0e4086f Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/1247_fsm differ diff --git a/nodeJS/Learning/07/db/base/1/1247_vm b/nodeJS/Learning/07/db/base/1/1247_vm new file mode 100755 index 0000000..6b3c3a9 Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/1247_vm differ diff --git a/nodeJS/Learning/07/db/base/1/1249 b/nodeJS/Learning/07/db/base/1/1249 new file mode 100755 index 0000000..b2df5ee Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/1249 differ diff --git a/nodeJS/Learning/07/db/base/1/1249_fsm b/nodeJS/Learning/07/db/base/1/1249_fsm new file mode 100755 index 0000000..1f8868d Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/1249_fsm differ diff --git a/nodeJS/Learning/07/db/base/1/1249_vm b/nodeJS/Learning/07/db/base/1/1249_vm new file mode 100755 index 0000000..438b92c Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/1249_vm differ diff --git a/nodeJS/Learning/07/db/base/1/1255 b/nodeJS/Learning/07/db/base/1/1255 new file mode 100755 index 0000000..2875320 Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/1255 differ diff --git a/nodeJS/Learning/07/db/base/1/1255_fsm b/nodeJS/Learning/07/db/base/1/1255_fsm new file mode 100755 index 0000000..b730b34 Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/1255_fsm differ diff --git a/nodeJS/Learning/07/db/base/1/1255_vm b/nodeJS/Learning/07/db/base/1/1255_vm new file mode 100755 index 0000000..f8b601a Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/1255_vm differ diff --git a/nodeJS/Learning/07/db/base/1/1259 b/nodeJS/Learning/07/db/base/1/1259 new file mode 100755 index 0000000..ba43098 Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/1259 differ diff --git a/nodeJS/Learning/07/db/base/1/1259_fsm b/nodeJS/Learning/07/db/base/1/1259_fsm new file mode 100755 index 0000000..3d17e63 Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/1259_fsm differ diff --git a/nodeJS/Learning/07/db/base/1/1259_vm b/nodeJS/Learning/07/db/base/1/1259_vm new file mode 100755 index 0000000..f592dcf Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/1259_vm differ diff --git a/nodeJS/Learning/07/db/base/1/13598 b/nodeJS/Learning/07/db/base/1/13598 new file mode 100755 index 0000000..d97be0a Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/13598 differ diff --git a/nodeJS/Learning/07/db/base/1/13598_fsm b/nodeJS/Learning/07/db/base/1/13598_fsm new file mode 100755 index 0000000..dc87bf4 Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/13598_fsm differ diff --git a/nodeJS/Learning/07/db/base/1/13598_vm b/nodeJS/Learning/07/db/base/1/13598_vm new file mode 100755 index 0000000..d989630 Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/13598_vm differ diff --git a/nodeJS/Learning/07/db/base/1/13601 b/nodeJS/Learning/07/db/base/1/13601 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/1/13602 b/nodeJS/Learning/07/db/base/1/13602 new file mode 100755 index 0000000..536e5fc Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/13602 differ diff --git a/nodeJS/Learning/07/db/base/1/13603 b/nodeJS/Learning/07/db/base/1/13603 new file mode 100755 index 0000000..3d8bfe7 Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/13603 differ diff --git a/nodeJS/Learning/07/db/base/1/13603_fsm b/nodeJS/Learning/07/db/base/1/13603_fsm new file mode 100755 index 0000000..ce7c26e Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/13603_fsm differ diff --git a/nodeJS/Learning/07/db/base/1/13603_vm b/nodeJS/Learning/07/db/base/1/13603_vm new file mode 100755 index 0000000..b89629e Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/13603_vm differ diff --git a/nodeJS/Learning/07/db/base/1/13606 b/nodeJS/Learning/07/db/base/1/13606 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/1/13607 b/nodeJS/Learning/07/db/base/1/13607 new file mode 100755 index 0000000..33ac758 Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/13607 differ diff --git a/nodeJS/Learning/07/db/base/1/13608 b/nodeJS/Learning/07/db/base/1/13608 new file mode 100755 index 0000000..9a3144a Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/13608 differ diff --git a/nodeJS/Learning/07/db/base/1/13608_fsm b/nodeJS/Learning/07/db/base/1/13608_fsm new file mode 100755 index 0000000..d388044 Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/13608_fsm differ diff --git a/nodeJS/Learning/07/db/base/1/13608_vm b/nodeJS/Learning/07/db/base/1/13608_vm new file mode 100755 index 0000000..fd65276 Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/13608_vm differ diff --git a/nodeJS/Learning/07/db/base/1/13611 b/nodeJS/Learning/07/db/base/1/13611 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/1/13612 b/nodeJS/Learning/07/db/base/1/13612 new file mode 100755 index 0000000..92c5591 Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/13612 differ diff --git a/nodeJS/Learning/07/db/base/1/13613 b/nodeJS/Learning/07/db/base/1/13613 new file mode 100755 index 0000000..298ec81 Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/13613 differ diff --git a/nodeJS/Learning/07/db/base/1/13613_fsm b/nodeJS/Learning/07/db/base/1/13613_fsm new file mode 100755 index 0000000..a836ddf Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/13613_fsm differ diff --git a/nodeJS/Learning/07/db/base/1/13613_vm b/nodeJS/Learning/07/db/base/1/13613_vm new file mode 100755 index 0000000..167e8ce Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/13613_vm differ diff --git a/nodeJS/Learning/07/db/base/1/13616 b/nodeJS/Learning/07/db/base/1/13616 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/1/13617 b/nodeJS/Learning/07/db/base/1/13617 new file mode 100755 index 0000000..76ffb74 Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/13617 differ diff --git a/nodeJS/Learning/07/db/base/1/1417 b/nodeJS/Learning/07/db/base/1/1417 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/1/1418 b/nodeJS/Learning/07/db/base/1/1418 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/1/174 b/nodeJS/Learning/07/db/base/1/174 new file mode 100755 index 0000000..6312b18 Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/174 differ diff --git a/nodeJS/Learning/07/db/base/1/175 b/nodeJS/Learning/07/db/base/1/175 new file mode 100755 index 0000000..0f504d0 Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/175 differ diff --git a/nodeJS/Learning/07/db/base/1/2187 b/nodeJS/Learning/07/db/base/1/2187 new file mode 100755 index 0000000..8298625 Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/2187 differ diff --git a/nodeJS/Learning/07/db/base/1/2224 b/nodeJS/Learning/07/db/base/1/2224 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/1/2228 b/nodeJS/Learning/07/db/base/1/2228 new file mode 100755 index 0000000..da192ed Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/2228 differ diff --git a/nodeJS/Learning/07/db/base/1/2328 b/nodeJS/Learning/07/db/base/1/2328 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/1/2336 b/nodeJS/Learning/07/db/base/1/2336 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/1/2337 b/nodeJS/Learning/07/db/base/1/2337 new file mode 100755 index 0000000..06345c3 Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/2337 differ diff --git a/nodeJS/Learning/07/db/base/1/2579 b/nodeJS/Learning/07/db/base/1/2579 new file mode 100755 index 0000000..32b6c41 Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/2579 differ diff --git a/nodeJS/Learning/07/db/base/1/2600 b/nodeJS/Learning/07/db/base/1/2600 new file mode 100755 index 0000000..827b5c2 Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/2600 differ diff --git a/nodeJS/Learning/07/db/base/1/2600_fsm b/nodeJS/Learning/07/db/base/1/2600_fsm new file mode 100755 index 0000000..3f8f408 Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/2600_fsm differ diff --git a/nodeJS/Learning/07/db/base/1/2600_vm b/nodeJS/Learning/07/db/base/1/2600_vm new file mode 100755 index 0000000..e272ed9 Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/2600_vm differ diff --git a/nodeJS/Learning/07/db/base/1/2601 b/nodeJS/Learning/07/db/base/1/2601 new file mode 100755 index 0000000..d8001c8 Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/2601 differ diff --git a/nodeJS/Learning/07/db/base/1/2601_fsm b/nodeJS/Learning/07/db/base/1/2601_fsm new file mode 100755 index 0000000..d388044 Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/2601_fsm differ diff --git a/nodeJS/Learning/07/db/base/1/2601_vm b/nodeJS/Learning/07/db/base/1/2601_vm new file mode 100755 index 0000000..b1005c9 Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/2601_vm differ diff --git a/nodeJS/Learning/07/db/base/1/2602 b/nodeJS/Learning/07/db/base/1/2602 new file mode 100755 index 0000000..4a27b0a Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/2602 differ diff --git a/nodeJS/Learning/07/db/base/1/2602_fsm b/nodeJS/Learning/07/db/base/1/2602_fsm new file mode 100755 index 0000000..23170d8 Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/2602_fsm differ diff --git a/nodeJS/Learning/07/db/base/1/2602_vm b/nodeJS/Learning/07/db/base/1/2602_vm new file mode 100755 index 0000000..7857da5 Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/2602_vm differ diff --git a/nodeJS/Learning/07/db/base/1/2603 b/nodeJS/Learning/07/db/base/1/2603 new file mode 100755 index 0000000..d511af5 Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/2603 differ diff --git a/nodeJS/Learning/07/db/base/1/2603_fsm b/nodeJS/Learning/07/db/base/1/2603_fsm new file mode 100755 index 0000000..949bd18 Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/2603_fsm differ diff --git a/nodeJS/Learning/07/db/base/1/2603_vm b/nodeJS/Learning/07/db/base/1/2603_vm new file mode 100755 index 0000000..5f6553e Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/2603_vm differ diff --git a/nodeJS/Learning/07/db/base/1/2604 b/nodeJS/Learning/07/db/base/1/2604 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/1/2605 b/nodeJS/Learning/07/db/base/1/2605 new file mode 100755 index 0000000..287bf96 Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/2605 differ diff --git a/nodeJS/Learning/07/db/base/1/2605_fsm b/nodeJS/Learning/07/db/base/1/2605_fsm new file mode 100755 index 0000000..c7723da Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/2605_fsm differ diff --git a/nodeJS/Learning/07/db/base/1/2605_vm b/nodeJS/Learning/07/db/base/1/2605_vm new file mode 100755 index 0000000..c2506c5 Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/2605_vm differ diff --git a/nodeJS/Learning/07/db/base/1/2606 b/nodeJS/Learning/07/db/base/1/2606 new file mode 100755 index 0000000..389cfe9 Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/2606 differ diff --git a/nodeJS/Learning/07/db/base/1/2606_fsm b/nodeJS/Learning/07/db/base/1/2606_fsm new file mode 100755 index 0000000..37bfa7e Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/2606_fsm differ diff --git a/nodeJS/Learning/07/db/base/1/2606_vm b/nodeJS/Learning/07/db/base/1/2606_vm new file mode 100755 index 0000000..c9804a6 Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/2606_vm differ diff --git a/nodeJS/Learning/07/db/base/1/2607 b/nodeJS/Learning/07/db/base/1/2607 new file mode 100755 index 0000000..bfad49a Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/2607 differ diff --git a/nodeJS/Learning/07/db/base/1/2607_fsm b/nodeJS/Learning/07/db/base/1/2607_fsm new file mode 100755 index 0000000..80ac8b1 Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/2607_fsm differ diff --git a/nodeJS/Learning/07/db/base/1/2607_vm b/nodeJS/Learning/07/db/base/1/2607_vm new file mode 100755 index 0000000..e731d80 Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/2607_vm differ diff --git a/nodeJS/Learning/07/db/base/1/2608 b/nodeJS/Learning/07/db/base/1/2608 new file mode 100755 index 0000000..59acd9e Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/2608 differ diff --git a/nodeJS/Learning/07/db/base/1/2608_fsm b/nodeJS/Learning/07/db/base/1/2608_fsm new file mode 100755 index 0000000..8e746db Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/2608_fsm differ diff --git a/nodeJS/Learning/07/db/base/1/2608_vm b/nodeJS/Learning/07/db/base/1/2608_vm new file mode 100755 index 0000000..b06913b Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/2608_vm differ diff --git a/nodeJS/Learning/07/db/base/1/2609 b/nodeJS/Learning/07/db/base/1/2609 new file mode 100755 index 0000000..c8544d2 Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/2609 differ diff --git a/nodeJS/Learning/07/db/base/1/2609_fsm b/nodeJS/Learning/07/db/base/1/2609_fsm new file mode 100755 index 0000000..adbf4b7 Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/2609_fsm differ diff --git a/nodeJS/Learning/07/db/base/1/2609_vm b/nodeJS/Learning/07/db/base/1/2609_vm new file mode 100755 index 0000000..57bfff5 Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/2609_vm differ diff --git a/nodeJS/Learning/07/db/base/1/2610 b/nodeJS/Learning/07/db/base/1/2610 new file mode 100755 index 0000000..16bd967 Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/2610 differ diff --git a/nodeJS/Learning/07/db/base/1/2610_fsm b/nodeJS/Learning/07/db/base/1/2610_fsm new file mode 100755 index 0000000..39a3e89 Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/2610_fsm differ diff --git a/nodeJS/Learning/07/db/base/1/2610_vm b/nodeJS/Learning/07/db/base/1/2610_vm new file mode 100755 index 0000000..d00c618 Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/2610_vm differ diff --git a/nodeJS/Learning/07/db/base/1/2611 b/nodeJS/Learning/07/db/base/1/2611 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/1/2612 b/nodeJS/Learning/07/db/base/1/2612 new file mode 100755 index 0000000..7017eaf Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/2612 differ diff --git a/nodeJS/Learning/07/db/base/1/2612_fsm b/nodeJS/Learning/07/db/base/1/2612_fsm new file mode 100755 index 0000000..877976a Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/2612_fsm differ diff --git a/nodeJS/Learning/07/db/base/1/2612_vm b/nodeJS/Learning/07/db/base/1/2612_vm new file mode 100755 index 0000000..a326c5a Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/2612_vm differ diff --git a/nodeJS/Learning/07/db/base/1/2613 b/nodeJS/Learning/07/db/base/1/2613 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/1/2615 b/nodeJS/Learning/07/db/base/1/2615 new file mode 100755 index 0000000..9df3dde Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/2615 differ diff --git a/nodeJS/Learning/07/db/base/1/2615_fsm b/nodeJS/Learning/07/db/base/1/2615_fsm new file mode 100755 index 0000000..d041693 Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/2615_fsm differ diff --git a/nodeJS/Learning/07/db/base/1/2615_vm b/nodeJS/Learning/07/db/base/1/2615_vm new file mode 100755 index 0000000..011172d Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/2615_vm differ diff --git a/nodeJS/Learning/07/db/base/1/2616 b/nodeJS/Learning/07/db/base/1/2616 new file mode 100755 index 0000000..0d60d79 Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/2616 differ diff --git a/nodeJS/Learning/07/db/base/1/2616_fsm b/nodeJS/Learning/07/db/base/1/2616_fsm new file mode 100755 index 0000000..cb924c9 Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/2616_fsm differ diff --git a/nodeJS/Learning/07/db/base/1/2616_vm b/nodeJS/Learning/07/db/base/1/2616_vm new file mode 100755 index 0000000..db9a53f Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/2616_vm differ diff --git a/nodeJS/Learning/07/db/base/1/2617 b/nodeJS/Learning/07/db/base/1/2617 new file mode 100755 index 0000000..8696551 Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/2617 differ diff --git a/nodeJS/Learning/07/db/base/1/2617_fsm b/nodeJS/Learning/07/db/base/1/2617_fsm new file mode 100755 index 0000000..84060f4 Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/2617_fsm differ diff --git a/nodeJS/Learning/07/db/base/1/2617_vm b/nodeJS/Learning/07/db/base/1/2617_vm new file mode 100755 index 0000000..e50deaf Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/2617_vm differ diff --git a/nodeJS/Learning/07/db/base/1/2618 b/nodeJS/Learning/07/db/base/1/2618 new file mode 100755 index 0000000..731e302 Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/2618 differ diff --git a/nodeJS/Learning/07/db/base/1/2618_fsm b/nodeJS/Learning/07/db/base/1/2618_fsm new file mode 100755 index 0000000..b92d2da Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/2618_fsm differ diff --git a/nodeJS/Learning/07/db/base/1/2618_vm b/nodeJS/Learning/07/db/base/1/2618_vm new file mode 100755 index 0000000..31bfb22 Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/2618_vm differ diff --git a/nodeJS/Learning/07/db/base/1/2619 b/nodeJS/Learning/07/db/base/1/2619 new file mode 100755 index 0000000..60d0f8a Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/2619 differ diff --git a/nodeJS/Learning/07/db/base/1/2619_fsm b/nodeJS/Learning/07/db/base/1/2619_fsm new file mode 100755 index 0000000..ee863db Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/2619_fsm differ diff --git a/nodeJS/Learning/07/db/base/1/2619_vm b/nodeJS/Learning/07/db/base/1/2619_vm new file mode 100755 index 0000000..07d9cfc Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/2619_vm differ diff --git a/nodeJS/Learning/07/db/base/1/2620 b/nodeJS/Learning/07/db/base/1/2620 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/1/2650 b/nodeJS/Learning/07/db/base/1/2650 new file mode 100755 index 0000000..ebcc0c3 Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/2650 differ diff --git a/nodeJS/Learning/07/db/base/1/2651 b/nodeJS/Learning/07/db/base/1/2651 new file mode 100755 index 0000000..8841a67 Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/2651 differ diff --git a/nodeJS/Learning/07/db/base/1/2652 b/nodeJS/Learning/07/db/base/1/2652 new file mode 100755 index 0000000..11ee01d Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/2652 differ diff --git a/nodeJS/Learning/07/db/base/1/2653 b/nodeJS/Learning/07/db/base/1/2653 new file mode 100755 index 0000000..2b6951c Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/2653 differ diff --git a/nodeJS/Learning/07/db/base/1/2654 b/nodeJS/Learning/07/db/base/1/2654 new file mode 100755 index 0000000..68403a4 Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/2654 differ diff --git a/nodeJS/Learning/07/db/base/1/2655 b/nodeJS/Learning/07/db/base/1/2655 new file mode 100755 index 0000000..8b9aa94 Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/2655 differ diff --git a/nodeJS/Learning/07/db/base/1/2656 b/nodeJS/Learning/07/db/base/1/2656 new file mode 100755 index 0000000..ff35981 Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/2656 differ diff --git a/nodeJS/Learning/07/db/base/1/2657 b/nodeJS/Learning/07/db/base/1/2657 new file mode 100755 index 0000000..1270286 Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/2657 differ diff --git a/nodeJS/Learning/07/db/base/1/2658 b/nodeJS/Learning/07/db/base/1/2658 new file mode 100755 index 0000000..dcf54cf Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/2658 differ diff --git a/nodeJS/Learning/07/db/base/1/2659 b/nodeJS/Learning/07/db/base/1/2659 new file mode 100755 index 0000000..ae25dfd Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/2659 differ diff --git a/nodeJS/Learning/07/db/base/1/2660 b/nodeJS/Learning/07/db/base/1/2660 new file mode 100755 index 0000000..8862e97 Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/2660 differ diff --git a/nodeJS/Learning/07/db/base/1/2661 b/nodeJS/Learning/07/db/base/1/2661 new file mode 100755 index 0000000..8bb39cc Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/2661 differ diff --git a/nodeJS/Learning/07/db/base/1/2662 b/nodeJS/Learning/07/db/base/1/2662 new file mode 100755 index 0000000..8d47b5f Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/2662 differ diff --git a/nodeJS/Learning/07/db/base/1/2663 b/nodeJS/Learning/07/db/base/1/2663 new file mode 100755 index 0000000..4072df3 Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/2663 differ diff --git a/nodeJS/Learning/07/db/base/1/2664 b/nodeJS/Learning/07/db/base/1/2664 new file mode 100755 index 0000000..2ee6e0c Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/2664 differ diff --git a/nodeJS/Learning/07/db/base/1/2665 b/nodeJS/Learning/07/db/base/1/2665 new file mode 100755 index 0000000..93b9f9d Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/2665 differ diff --git a/nodeJS/Learning/07/db/base/1/2666 b/nodeJS/Learning/07/db/base/1/2666 new file mode 100755 index 0000000..7fcb48b Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/2666 differ diff --git a/nodeJS/Learning/07/db/base/1/2667 b/nodeJS/Learning/07/db/base/1/2667 new file mode 100755 index 0000000..5e3c572 Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/2667 differ diff --git a/nodeJS/Learning/07/db/base/1/2668 b/nodeJS/Learning/07/db/base/1/2668 new file mode 100755 index 0000000..17439a2 Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/2668 differ diff --git a/nodeJS/Learning/07/db/base/1/2669 b/nodeJS/Learning/07/db/base/1/2669 new file mode 100755 index 0000000..d8d8569 Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/2669 differ diff --git a/nodeJS/Learning/07/db/base/1/2670 b/nodeJS/Learning/07/db/base/1/2670 new file mode 100755 index 0000000..97e2033 Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/2670 differ diff --git a/nodeJS/Learning/07/db/base/1/2673 b/nodeJS/Learning/07/db/base/1/2673 new file mode 100755 index 0000000..df1d528 Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/2673 differ diff --git a/nodeJS/Learning/07/db/base/1/2673_fsm b/nodeJS/Learning/07/db/base/1/2673_fsm new file mode 100755 index 0000000..2c8d238 Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/2673_fsm differ diff --git a/nodeJS/Learning/07/db/base/1/2674 b/nodeJS/Learning/07/db/base/1/2674 new file mode 100755 index 0000000..c3cd1b0 Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/2674 differ diff --git a/nodeJS/Learning/07/db/base/1/2674_fsm b/nodeJS/Learning/07/db/base/1/2674_fsm new file mode 100755 index 0000000..ed74869 Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/2674_fsm differ diff --git a/nodeJS/Learning/07/db/base/1/2675 b/nodeJS/Learning/07/db/base/1/2675 new file mode 100755 index 0000000..dd562dc Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/2675 differ diff --git a/nodeJS/Learning/07/db/base/1/2678 b/nodeJS/Learning/07/db/base/1/2678 new file mode 100755 index 0000000..7bb29cc Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/2678 differ diff --git a/nodeJS/Learning/07/db/base/1/2679 b/nodeJS/Learning/07/db/base/1/2679 new file mode 100755 index 0000000..7f7848c Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/2679 differ diff --git a/nodeJS/Learning/07/db/base/1/2680 b/nodeJS/Learning/07/db/base/1/2680 new file mode 100755 index 0000000..5fd8851 Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/2680 differ diff --git a/nodeJS/Learning/07/db/base/1/2681 b/nodeJS/Learning/07/db/base/1/2681 new file mode 100755 index 0000000..b27e644 Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/2681 differ diff --git a/nodeJS/Learning/07/db/base/1/2682 b/nodeJS/Learning/07/db/base/1/2682 new file mode 100755 index 0000000..110d359 Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/2682 differ diff --git a/nodeJS/Learning/07/db/base/1/2683 b/nodeJS/Learning/07/db/base/1/2683 new file mode 100755 index 0000000..8187c58 Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/2683 differ diff --git a/nodeJS/Learning/07/db/base/1/2684 b/nodeJS/Learning/07/db/base/1/2684 new file mode 100755 index 0000000..accf1f6 Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/2684 differ diff --git a/nodeJS/Learning/07/db/base/1/2685 b/nodeJS/Learning/07/db/base/1/2685 new file mode 100755 index 0000000..a86f5ab Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/2685 differ diff --git a/nodeJS/Learning/07/db/base/1/2686 b/nodeJS/Learning/07/db/base/1/2686 new file mode 100755 index 0000000..37beb74 Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/2686 differ diff --git a/nodeJS/Learning/07/db/base/1/2687 b/nodeJS/Learning/07/db/base/1/2687 new file mode 100755 index 0000000..20a2d34 Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/2687 differ diff --git a/nodeJS/Learning/07/db/base/1/2688 b/nodeJS/Learning/07/db/base/1/2688 new file mode 100755 index 0000000..4cd4907 Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/2688 differ diff --git a/nodeJS/Learning/07/db/base/1/2689 b/nodeJS/Learning/07/db/base/1/2689 new file mode 100755 index 0000000..4b12dea Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/2689 differ diff --git a/nodeJS/Learning/07/db/base/1/2690 b/nodeJS/Learning/07/db/base/1/2690 new file mode 100755 index 0000000..216bee6 Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/2690 differ diff --git a/nodeJS/Learning/07/db/base/1/2691 b/nodeJS/Learning/07/db/base/1/2691 new file mode 100755 index 0000000..e08708d Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/2691 differ diff --git a/nodeJS/Learning/07/db/base/1/2692 b/nodeJS/Learning/07/db/base/1/2692 new file mode 100755 index 0000000..7137a2f Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/2692 differ diff --git a/nodeJS/Learning/07/db/base/1/2693 b/nodeJS/Learning/07/db/base/1/2693 new file mode 100755 index 0000000..1feb720 Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/2693 differ diff --git a/nodeJS/Learning/07/db/base/1/2696 b/nodeJS/Learning/07/db/base/1/2696 new file mode 100755 index 0000000..4e8bf7a Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/2696 differ diff --git a/nodeJS/Learning/07/db/base/1/2699 b/nodeJS/Learning/07/db/base/1/2699 new file mode 100755 index 0000000..14488bf Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/2699 differ diff --git a/nodeJS/Learning/07/db/base/1/2701 b/nodeJS/Learning/07/db/base/1/2701 new file mode 100755 index 0000000..8664200 Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/2701 differ diff --git a/nodeJS/Learning/07/db/base/1/2702 b/nodeJS/Learning/07/db/base/1/2702 new file mode 100755 index 0000000..750b4b6 Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/2702 differ diff --git a/nodeJS/Learning/07/db/base/1/2703 b/nodeJS/Learning/07/db/base/1/2703 new file mode 100755 index 0000000..0c6efc6 Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/2703 differ diff --git a/nodeJS/Learning/07/db/base/1/2704 b/nodeJS/Learning/07/db/base/1/2704 new file mode 100755 index 0000000..bb718a2 Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/2704 differ diff --git a/nodeJS/Learning/07/db/base/1/2753 b/nodeJS/Learning/07/db/base/1/2753 new file mode 100755 index 0000000..3c16dff Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/2753 differ diff --git a/nodeJS/Learning/07/db/base/1/2753_fsm b/nodeJS/Learning/07/db/base/1/2753_fsm new file mode 100755 index 0000000..642bce3 Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/2753_fsm differ diff --git a/nodeJS/Learning/07/db/base/1/2753_vm b/nodeJS/Learning/07/db/base/1/2753_vm new file mode 100755 index 0000000..e8297c0 Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/2753_vm differ diff --git a/nodeJS/Learning/07/db/base/1/2754 b/nodeJS/Learning/07/db/base/1/2754 new file mode 100755 index 0000000..0c2ef54 Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/2754 differ diff --git a/nodeJS/Learning/07/db/base/1/2755 b/nodeJS/Learning/07/db/base/1/2755 new file mode 100755 index 0000000..5e7143b Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/2755 differ diff --git a/nodeJS/Learning/07/db/base/1/2756 b/nodeJS/Learning/07/db/base/1/2756 new file mode 100755 index 0000000..0758e05 Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/2756 differ diff --git a/nodeJS/Learning/07/db/base/1/2757 b/nodeJS/Learning/07/db/base/1/2757 new file mode 100755 index 0000000..80dd62a Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/2757 differ diff --git a/nodeJS/Learning/07/db/base/1/2830 b/nodeJS/Learning/07/db/base/1/2830 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/1/2831 b/nodeJS/Learning/07/db/base/1/2831 new file mode 100755 index 0000000..61046f3 Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/2831 differ diff --git a/nodeJS/Learning/07/db/base/1/2832 b/nodeJS/Learning/07/db/base/1/2832 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/1/2833 b/nodeJS/Learning/07/db/base/1/2833 new file mode 100755 index 0000000..fb3c12d Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/2833 differ diff --git a/nodeJS/Learning/07/db/base/1/2834 b/nodeJS/Learning/07/db/base/1/2834 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/1/2835 b/nodeJS/Learning/07/db/base/1/2835 new file mode 100755 index 0000000..3c05130 Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/2835 differ diff --git a/nodeJS/Learning/07/db/base/1/2836 b/nodeJS/Learning/07/db/base/1/2836 new file mode 100755 index 0000000..71b0236 Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/2836 differ diff --git a/nodeJS/Learning/07/db/base/1/2836_fsm b/nodeJS/Learning/07/db/base/1/2836_fsm new file mode 100755 index 0000000..4066e1e Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/2836_fsm differ diff --git a/nodeJS/Learning/07/db/base/1/2836_vm b/nodeJS/Learning/07/db/base/1/2836_vm new file mode 100755 index 0000000..b7f6a9f Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/2836_vm differ diff --git a/nodeJS/Learning/07/db/base/1/2837 b/nodeJS/Learning/07/db/base/1/2837 new file mode 100755 index 0000000..be6efc3 Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/2837 differ diff --git a/nodeJS/Learning/07/db/base/1/2838 b/nodeJS/Learning/07/db/base/1/2838 new file mode 100755 index 0000000..9d46e70 Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/2838 differ diff --git a/nodeJS/Learning/07/db/base/1/2838_fsm b/nodeJS/Learning/07/db/base/1/2838_fsm new file mode 100755 index 0000000..4cc1630 Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/2838_fsm differ diff --git a/nodeJS/Learning/07/db/base/1/2838_vm b/nodeJS/Learning/07/db/base/1/2838_vm new file mode 100755 index 0000000..46e0e3d Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/2838_vm differ diff --git a/nodeJS/Learning/07/db/base/1/2839 b/nodeJS/Learning/07/db/base/1/2839 new file mode 100755 index 0000000..bd20a46 Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/2839 differ diff --git a/nodeJS/Learning/07/db/base/1/2840 b/nodeJS/Learning/07/db/base/1/2840 new file mode 100755 index 0000000..7ca0ff0 Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/2840 differ diff --git a/nodeJS/Learning/07/db/base/1/2840_fsm b/nodeJS/Learning/07/db/base/1/2840_fsm new file mode 100755 index 0000000..49de392 Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/2840_fsm differ diff --git a/nodeJS/Learning/07/db/base/1/2840_vm b/nodeJS/Learning/07/db/base/1/2840_vm new file mode 100755 index 0000000..bbeeea5 Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/2840_vm differ diff --git a/nodeJS/Learning/07/db/base/1/2841 b/nodeJS/Learning/07/db/base/1/2841 new file mode 100755 index 0000000..4d1e7da Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/2841 differ diff --git a/nodeJS/Learning/07/db/base/1/2995 b/nodeJS/Learning/07/db/base/1/2995 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/1/2996 b/nodeJS/Learning/07/db/base/1/2996 new file mode 100755 index 0000000..94563e7 Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/2996 differ diff --git a/nodeJS/Learning/07/db/base/1/3079 b/nodeJS/Learning/07/db/base/1/3079 new file mode 100755 index 0000000..c14c1a8 Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/3079 differ diff --git a/nodeJS/Learning/07/db/base/1/3079_fsm b/nodeJS/Learning/07/db/base/1/3079_fsm new file mode 100755 index 0000000..7732d22 Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/3079_fsm differ diff --git a/nodeJS/Learning/07/db/base/1/3079_vm b/nodeJS/Learning/07/db/base/1/3079_vm new file mode 100755 index 0000000..ef81260 Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/3079_vm differ diff --git a/nodeJS/Learning/07/db/base/1/3080 b/nodeJS/Learning/07/db/base/1/3080 new file mode 100755 index 0000000..560b8bf Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/3080 differ diff --git a/nodeJS/Learning/07/db/base/1/3081 b/nodeJS/Learning/07/db/base/1/3081 new file mode 100755 index 0000000..1de691e Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/3081 differ diff --git a/nodeJS/Learning/07/db/base/1/3085 b/nodeJS/Learning/07/db/base/1/3085 new file mode 100755 index 0000000..27571b6 Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/3085 differ diff --git a/nodeJS/Learning/07/db/base/1/3118 b/nodeJS/Learning/07/db/base/1/3118 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/1/3119 b/nodeJS/Learning/07/db/base/1/3119 new file mode 100755 index 0000000..c0d08b7 Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/3119 differ diff --git a/nodeJS/Learning/07/db/base/1/3164 b/nodeJS/Learning/07/db/base/1/3164 new file mode 100755 index 0000000..3faa559 Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/3164 differ diff --git a/nodeJS/Learning/07/db/base/1/3256 b/nodeJS/Learning/07/db/base/1/3256 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/1/3257 b/nodeJS/Learning/07/db/base/1/3257 new file mode 100755 index 0000000..85937d2 Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/3257 differ diff --git a/nodeJS/Learning/07/db/base/1/3258 b/nodeJS/Learning/07/db/base/1/3258 new file mode 100755 index 0000000..5f252a3 Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/3258 differ diff --git a/nodeJS/Learning/07/db/base/1/3350 b/nodeJS/Learning/07/db/base/1/3350 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/1/3351 b/nodeJS/Learning/07/db/base/1/3351 new file mode 100755 index 0000000..0aecbb3 Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/3351 differ diff --git a/nodeJS/Learning/07/db/base/1/3379 b/nodeJS/Learning/07/db/base/1/3379 new file mode 100755 index 0000000..9cc56f1 Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/3379 differ diff --git a/nodeJS/Learning/07/db/base/1/3380 b/nodeJS/Learning/07/db/base/1/3380 new file mode 100755 index 0000000..896db3e Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/3380 differ diff --git a/nodeJS/Learning/07/db/base/1/3381 b/nodeJS/Learning/07/db/base/1/3381 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/1/3394 b/nodeJS/Learning/07/db/base/1/3394 new file mode 100755 index 0000000..0d1ce52 Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/3394 differ diff --git a/nodeJS/Learning/07/db/base/1/3394_fsm b/nodeJS/Learning/07/db/base/1/3394_fsm new file mode 100755 index 0000000..f8d6070 Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/3394_fsm differ diff --git a/nodeJS/Learning/07/db/base/1/3394_vm b/nodeJS/Learning/07/db/base/1/3394_vm new file mode 100755 index 0000000..5ad9145 Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/3394_vm differ diff --git a/nodeJS/Learning/07/db/base/1/3395 b/nodeJS/Learning/07/db/base/1/3395 new file mode 100755 index 0000000..154db37 Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/3395 differ diff --git a/nodeJS/Learning/07/db/base/1/3429 b/nodeJS/Learning/07/db/base/1/3429 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/1/3430 b/nodeJS/Learning/07/db/base/1/3430 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/1/3431 b/nodeJS/Learning/07/db/base/1/3431 new file mode 100755 index 0000000..8a6528d Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/3431 differ diff --git a/nodeJS/Learning/07/db/base/1/3433 b/nodeJS/Learning/07/db/base/1/3433 new file mode 100755 index 0000000..0c4736b Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/3433 differ diff --git a/nodeJS/Learning/07/db/base/1/3439 b/nodeJS/Learning/07/db/base/1/3439 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/1/3440 b/nodeJS/Learning/07/db/base/1/3440 new file mode 100755 index 0000000..1174715 Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/3440 differ diff --git a/nodeJS/Learning/07/db/base/1/3455 b/nodeJS/Learning/07/db/base/1/3455 new file mode 100755 index 0000000..542fa4e Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/3455 differ diff --git a/nodeJS/Learning/07/db/base/1/3456 b/nodeJS/Learning/07/db/base/1/3456 new file mode 100755 index 0000000..7f3559d Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/3456 differ diff --git a/nodeJS/Learning/07/db/base/1/3456_fsm b/nodeJS/Learning/07/db/base/1/3456_fsm new file mode 100755 index 0000000..fc8f8b8 Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/3456_fsm differ diff --git a/nodeJS/Learning/07/db/base/1/3456_vm b/nodeJS/Learning/07/db/base/1/3456_vm new file mode 100755 index 0000000..016a644 Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/3456_vm differ diff --git a/nodeJS/Learning/07/db/base/1/3466 b/nodeJS/Learning/07/db/base/1/3466 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/1/3467 b/nodeJS/Learning/07/db/base/1/3467 new file mode 100755 index 0000000..020deba Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/3467 differ diff --git a/nodeJS/Learning/07/db/base/1/3468 b/nodeJS/Learning/07/db/base/1/3468 new file mode 100755 index 0000000..a37352a Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/3468 differ diff --git a/nodeJS/Learning/07/db/base/1/3501 b/nodeJS/Learning/07/db/base/1/3501 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/1/3502 b/nodeJS/Learning/07/db/base/1/3502 new file mode 100755 index 0000000..94e5e8e Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/3502 differ diff --git a/nodeJS/Learning/07/db/base/1/3503 b/nodeJS/Learning/07/db/base/1/3503 new file mode 100755 index 0000000..df8e743 Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/3503 differ diff --git a/nodeJS/Learning/07/db/base/1/3534 b/nodeJS/Learning/07/db/base/1/3534 new file mode 100755 index 0000000..98d4854 Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/3534 differ diff --git a/nodeJS/Learning/07/db/base/1/3541 b/nodeJS/Learning/07/db/base/1/3541 new file mode 100755 index 0000000..40869ad Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/3541 differ diff --git a/nodeJS/Learning/07/db/base/1/3541_fsm b/nodeJS/Learning/07/db/base/1/3541_fsm new file mode 100755 index 0000000..a3a2de4 Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/3541_fsm differ diff --git a/nodeJS/Learning/07/db/base/1/3541_vm b/nodeJS/Learning/07/db/base/1/3541_vm new file mode 100755 index 0000000..794ff8a Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/3541_vm differ diff --git a/nodeJS/Learning/07/db/base/1/3542 b/nodeJS/Learning/07/db/base/1/3542 new file mode 100755 index 0000000..ee21b6a Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/3542 differ diff --git a/nodeJS/Learning/07/db/base/1/3574 b/nodeJS/Learning/07/db/base/1/3574 new file mode 100755 index 0000000..418bbca Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/3574 differ diff --git a/nodeJS/Learning/07/db/base/1/3575 b/nodeJS/Learning/07/db/base/1/3575 new file mode 100755 index 0000000..6addf86 Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/3575 differ diff --git a/nodeJS/Learning/07/db/base/1/3576 b/nodeJS/Learning/07/db/base/1/3576 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/1/3596 b/nodeJS/Learning/07/db/base/1/3596 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/1/3597 b/nodeJS/Learning/07/db/base/1/3597 new file mode 100755 index 0000000..71d2820 Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/3597 differ diff --git a/nodeJS/Learning/07/db/base/1/3598 b/nodeJS/Learning/07/db/base/1/3598 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/1/3599 b/nodeJS/Learning/07/db/base/1/3599 new file mode 100755 index 0000000..20c4969 Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/3599 differ diff --git a/nodeJS/Learning/07/db/base/1/3600 b/nodeJS/Learning/07/db/base/1/3600 new file mode 100755 index 0000000..f8fd22f Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/3600 differ diff --git a/nodeJS/Learning/07/db/base/1/3600_fsm b/nodeJS/Learning/07/db/base/1/3600_fsm new file mode 100755 index 0000000..cebec19 Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/3600_fsm differ diff --git a/nodeJS/Learning/07/db/base/1/3600_vm b/nodeJS/Learning/07/db/base/1/3600_vm new file mode 100755 index 0000000..e552bd7 Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/3600_vm differ diff --git a/nodeJS/Learning/07/db/base/1/3601 b/nodeJS/Learning/07/db/base/1/3601 new file mode 100755 index 0000000..04c846e Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/3601 differ diff --git a/nodeJS/Learning/07/db/base/1/3601_fsm b/nodeJS/Learning/07/db/base/1/3601_fsm new file mode 100755 index 0000000..7732d22 Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/3601_fsm differ diff --git a/nodeJS/Learning/07/db/base/1/3601_vm b/nodeJS/Learning/07/db/base/1/3601_vm new file mode 100755 index 0000000..107bd5e Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/3601_vm differ diff --git a/nodeJS/Learning/07/db/base/1/3602 b/nodeJS/Learning/07/db/base/1/3602 new file mode 100755 index 0000000..3312c40 Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/3602 differ diff --git a/nodeJS/Learning/07/db/base/1/3602_fsm b/nodeJS/Learning/07/db/base/1/3602_fsm new file mode 100755 index 0000000..d7897de Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/3602_fsm differ diff --git a/nodeJS/Learning/07/db/base/1/3602_vm b/nodeJS/Learning/07/db/base/1/3602_vm new file mode 100755 index 0000000..8ccfa65 Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/3602_vm differ diff --git a/nodeJS/Learning/07/db/base/1/3603 b/nodeJS/Learning/07/db/base/1/3603 new file mode 100755 index 0000000..0ab1d5d Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/3603 differ diff --git a/nodeJS/Learning/07/db/base/1/3603_fsm b/nodeJS/Learning/07/db/base/1/3603_fsm new file mode 100755 index 0000000..c28dd4f Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/3603_fsm differ diff --git a/nodeJS/Learning/07/db/base/1/3603_vm b/nodeJS/Learning/07/db/base/1/3603_vm new file mode 100755 index 0000000..0520389 Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/3603_vm differ diff --git a/nodeJS/Learning/07/db/base/1/3604 b/nodeJS/Learning/07/db/base/1/3604 new file mode 100755 index 0000000..e17cc51 Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/3604 differ diff --git a/nodeJS/Learning/07/db/base/1/3605 b/nodeJS/Learning/07/db/base/1/3605 new file mode 100755 index 0000000..351139b Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/3605 differ diff --git a/nodeJS/Learning/07/db/base/1/3606 b/nodeJS/Learning/07/db/base/1/3606 new file mode 100755 index 0000000..de60e2f Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/3606 differ diff --git a/nodeJS/Learning/07/db/base/1/3607 b/nodeJS/Learning/07/db/base/1/3607 new file mode 100755 index 0000000..ff53735 Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/3607 differ diff --git a/nodeJS/Learning/07/db/base/1/3608 b/nodeJS/Learning/07/db/base/1/3608 new file mode 100755 index 0000000..7cc12cf Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/3608 differ diff --git a/nodeJS/Learning/07/db/base/1/3609 b/nodeJS/Learning/07/db/base/1/3609 new file mode 100755 index 0000000..f97c4c3 Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/3609 differ diff --git a/nodeJS/Learning/07/db/base/1/3712 b/nodeJS/Learning/07/db/base/1/3712 new file mode 100755 index 0000000..6b682ba Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/3712 differ diff --git a/nodeJS/Learning/07/db/base/1/3764 b/nodeJS/Learning/07/db/base/1/3764 new file mode 100755 index 0000000..560a763 Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/3764 differ diff --git a/nodeJS/Learning/07/db/base/1/3764_fsm b/nodeJS/Learning/07/db/base/1/3764_fsm new file mode 100755 index 0000000..f64db4d Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/3764_fsm differ diff --git a/nodeJS/Learning/07/db/base/1/3764_vm b/nodeJS/Learning/07/db/base/1/3764_vm new file mode 100755 index 0000000..27a13ad Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/3764_vm differ diff --git a/nodeJS/Learning/07/db/base/1/3766 b/nodeJS/Learning/07/db/base/1/3766 new file mode 100755 index 0000000..5993ce9 Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/3766 differ diff --git a/nodeJS/Learning/07/db/base/1/3767 b/nodeJS/Learning/07/db/base/1/3767 new file mode 100755 index 0000000..fa65de6 Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/3767 differ diff --git a/nodeJS/Learning/07/db/base/1/3997 b/nodeJS/Learning/07/db/base/1/3997 new file mode 100755 index 0000000..3832f55 Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/3997 differ diff --git a/nodeJS/Learning/07/db/base/1/4143 b/nodeJS/Learning/07/db/base/1/4143 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/1/4144 b/nodeJS/Learning/07/db/base/1/4144 new file mode 100755 index 0000000..178af33 Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/4144 differ diff --git a/nodeJS/Learning/07/db/base/1/4145 b/nodeJS/Learning/07/db/base/1/4145 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/1/4146 b/nodeJS/Learning/07/db/base/1/4146 new file mode 100755 index 0000000..bb603a6 Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/4146 differ diff --git a/nodeJS/Learning/07/db/base/1/4147 b/nodeJS/Learning/07/db/base/1/4147 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/1/4148 b/nodeJS/Learning/07/db/base/1/4148 new file mode 100755 index 0000000..87c330b Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/4148 differ diff --git a/nodeJS/Learning/07/db/base/1/4149 b/nodeJS/Learning/07/db/base/1/4149 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/1/4150 b/nodeJS/Learning/07/db/base/1/4150 new file mode 100755 index 0000000..2085995 Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/4150 differ diff --git a/nodeJS/Learning/07/db/base/1/4151 b/nodeJS/Learning/07/db/base/1/4151 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/1/4152 b/nodeJS/Learning/07/db/base/1/4152 new file mode 100755 index 0000000..23407ab Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/4152 differ diff --git a/nodeJS/Learning/07/db/base/1/4153 b/nodeJS/Learning/07/db/base/1/4153 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/1/4154 b/nodeJS/Learning/07/db/base/1/4154 new file mode 100755 index 0000000..edaed60 Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/4154 differ diff --git a/nodeJS/Learning/07/db/base/1/4155 b/nodeJS/Learning/07/db/base/1/4155 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/1/4156 b/nodeJS/Learning/07/db/base/1/4156 new file mode 100755 index 0000000..f0c50e4 Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/4156 differ diff --git a/nodeJS/Learning/07/db/base/1/4157 b/nodeJS/Learning/07/db/base/1/4157 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/1/4158 b/nodeJS/Learning/07/db/base/1/4158 new file mode 100755 index 0000000..d45296c Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/4158 differ diff --git a/nodeJS/Learning/07/db/base/1/4159 b/nodeJS/Learning/07/db/base/1/4159 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/1/4160 b/nodeJS/Learning/07/db/base/1/4160 new file mode 100755 index 0000000..e0fd4e1 Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/4160 differ diff --git a/nodeJS/Learning/07/db/base/1/4163 b/nodeJS/Learning/07/db/base/1/4163 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/1/4164 b/nodeJS/Learning/07/db/base/1/4164 new file mode 100755 index 0000000..9a3435b Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/4164 differ diff --git a/nodeJS/Learning/07/db/base/1/4165 b/nodeJS/Learning/07/db/base/1/4165 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/1/4166 b/nodeJS/Learning/07/db/base/1/4166 new file mode 100755 index 0000000..be076db Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/4166 differ diff --git a/nodeJS/Learning/07/db/base/1/4167 b/nodeJS/Learning/07/db/base/1/4167 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/1/4168 b/nodeJS/Learning/07/db/base/1/4168 new file mode 100755 index 0000000..976615c Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/4168 differ diff --git a/nodeJS/Learning/07/db/base/1/4169 b/nodeJS/Learning/07/db/base/1/4169 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/1/4170 b/nodeJS/Learning/07/db/base/1/4170 new file mode 100755 index 0000000..f33abe0 Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/4170 differ diff --git a/nodeJS/Learning/07/db/base/1/4171 b/nodeJS/Learning/07/db/base/1/4171 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/1/4172 b/nodeJS/Learning/07/db/base/1/4172 new file mode 100755 index 0000000..bfa5606 Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/4172 differ diff --git a/nodeJS/Learning/07/db/base/1/4173 b/nodeJS/Learning/07/db/base/1/4173 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/1/4174 b/nodeJS/Learning/07/db/base/1/4174 new file mode 100755 index 0000000..8a80490 Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/4174 differ diff --git a/nodeJS/Learning/07/db/base/1/5002 b/nodeJS/Learning/07/db/base/1/5002 new file mode 100755 index 0000000..32af7a1 Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/5002 differ diff --git a/nodeJS/Learning/07/db/base/1/548 b/nodeJS/Learning/07/db/base/1/548 new file mode 100755 index 0000000..9f21947 Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/548 differ diff --git a/nodeJS/Learning/07/db/base/1/549 b/nodeJS/Learning/07/db/base/1/549 new file mode 100755 index 0000000..68efb3f Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/549 differ diff --git a/nodeJS/Learning/07/db/base/1/6102 b/nodeJS/Learning/07/db/base/1/6102 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/1/6104 b/nodeJS/Learning/07/db/base/1/6104 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/1/6106 b/nodeJS/Learning/07/db/base/1/6106 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/1/6110 b/nodeJS/Learning/07/db/base/1/6110 new file mode 100755 index 0000000..536b80d Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/6110 differ diff --git a/nodeJS/Learning/07/db/base/1/6111 b/nodeJS/Learning/07/db/base/1/6111 new file mode 100755 index 0000000..3d22c94 Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/6111 differ diff --git a/nodeJS/Learning/07/db/base/1/6112 b/nodeJS/Learning/07/db/base/1/6112 new file mode 100755 index 0000000..9e47d5c Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/6112 differ diff --git a/nodeJS/Learning/07/db/base/1/6113 b/nodeJS/Learning/07/db/base/1/6113 new file mode 100755 index 0000000..4e57f5b Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/6113 differ diff --git a/nodeJS/Learning/07/db/base/1/6117 b/nodeJS/Learning/07/db/base/1/6117 new file mode 100755 index 0000000..296b14e Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/6117 differ diff --git a/nodeJS/Learning/07/db/base/1/6175 b/nodeJS/Learning/07/db/base/1/6175 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/1/6176 b/nodeJS/Learning/07/db/base/1/6176 new file mode 100755 index 0000000..a349a04 Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/6176 differ diff --git a/nodeJS/Learning/07/db/base/1/826 b/nodeJS/Learning/07/db/base/1/826 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/1/827 b/nodeJS/Learning/07/db/base/1/827 new file mode 100755 index 0000000..86db9fe Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/827 differ diff --git a/nodeJS/Learning/07/db/base/1/828 b/nodeJS/Learning/07/db/base/1/828 new file mode 100755 index 0000000..4a52299 Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/828 differ diff --git a/nodeJS/Learning/07/db/base/1/PG_VERSION b/nodeJS/Learning/07/db/base/1/PG_VERSION new file mode 100755 index 0000000..8351c19 --- /dev/null +++ b/nodeJS/Learning/07/db/base/1/PG_VERSION @@ -0,0 +1 @@ +14 diff --git a/nodeJS/Learning/07/db/base/1/pg_filenode.map b/nodeJS/Learning/07/db/base/1/pg_filenode.map new file mode 100755 index 0000000..193d78f Binary files /dev/null and b/nodeJS/Learning/07/db/base/1/pg_filenode.map differ diff --git a/nodeJS/Learning/07/db/base/13779/112 b/nodeJS/Learning/07/db/base/13779/112 new file mode 100755 index 0000000..21db514 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/112 differ diff --git a/nodeJS/Learning/07/db/base/13779/113 b/nodeJS/Learning/07/db/base/13779/113 new file mode 100755 index 0000000..3f06e2f Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/113 differ diff --git a/nodeJS/Learning/07/db/base/13779/1247 b/nodeJS/Learning/07/db/base/13779/1247 new file mode 100755 index 0000000..16784f0 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/1247 differ diff --git a/nodeJS/Learning/07/db/base/13779/1247_fsm b/nodeJS/Learning/07/db/base/13779/1247_fsm new file mode 100755 index 0000000..0e4086f Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/1247_fsm differ diff --git a/nodeJS/Learning/07/db/base/13779/1247_vm b/nodeJS/Learning/07/db/base/13779/1247_vm new file mode 100755 index 0000000..6b3c3a9 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/1247_vm differ diff --git a/nodeJS/Learning/07/db/base/13779/1249 b/nodeJS/Learning/07/db/base/13779/1249 new file mode 100755 index 0000000..b2df5ee Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/1249 differ diff --git a/nodeJS/Learning/07/db/base/13779/1249_fsm b/nodeJS/Learning/07/db/base/13779/1249_fsm new file mode 100755 index 0000000..1f8868d Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/1249_fsm differ diff --git a/nodeJS/Learning/07/db/base/13779/1249_vm b/nodeJS/Learning/07/db/base/13779/1249_vm new file mode 100755 index 0000000..438b92c Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/1249_vm differ diff --git a/nodeJS/Learning/07/db/base/13779/1255 b/nodeJS/Learning/07/db/base/13779/1255 new file mode 100755 index 0000000..2875320 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/1255 differ diff --git a/nodeJS/Learning/07/db/base/13779/1255_fsm b/nodeJS/Learning/07/db/base/13779/1255_fsm new file mode 100755 index 0000000..b730b34 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/1255_fsm differ diff --git a/nodeJS/Learning/07/db/base/13779/1255_vm b/nodeJS/Learning/07/db/base/13779/1255_vm new file mode 100755 index 0000000..f8b601a Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/1255_vm differ diff --git a/nodeJS/Learning/07/db/base/13779/1259 b/nodeJS/Learning/07/db/base/13779/1259 new file mode 100755 index 0000000..9270a97 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/1259 differ diff --git a/nodeJS/Learning/07/db/base/13779/1259_fsm b/nodeJS/Learning/07/db/base/13779/1259_fsm new file mode 100755 index 0000000..3d17e63 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/1259_fsm differ diff --git a/nodeJS/Learning/07/db/base/13779/1259_vm b/nodeJS/Learning/07/db/base/13779/1259_vm new file mode 100755 index 0000000..f592dcf Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/1259_vm differ diff --git a/nodeJS/Learning/07/db/base/13779/13598 b/nodeJS/Learning/07/db/base/13779/13598 new file mode 100755 index 0000000..d97be0a Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/13598 differ diff --git a/nodeJS/Learning/07/db/base/13779/13598_fsm b/nodeJS/Learning/07/db/base/13779/13598_fsm new file mode 100755 index 0000000..dc87bf4 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/13598_fsm differ diff --git a/nodeJS/Learning/07/db/base/13779/13598_vm b/nodeJS/Learning/07/db/base/13779/13598_vm new file mode 100755 index 0000000..d989630 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/13598_vm differ diff --git a/nodeJS/Learning/07/db/base/13779/13601 b/nodeJS/Learning/07/db/base/13779/13601 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/13779/13602 b/nodeJS/Learning/07/db/base/13779/13602 new file mode 100755 index 0000000..536e5fc Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/13602 differ diff --git a/nodeJS/Learning/07/db/base/13779/13603 b/nodeJS/Learning/07/db/base/13779/13603 new file mode 100755 index 0000000..3d8bfe7 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/13603 differ diff --git a/nodeJS/Learning/07/db/base/13779/13603_fsm b/nodeJS/Learning/07/db/base/13779/13603_fsm new file mode 100755 index 0000000..ce7c26e Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/13603_fsm differ diff --git a/nodeJS/Learning/07/db/base/13779/13603_vm b/nodeJS/Learning/07/db/base/13779/13603_vm new file mode 100755 index 0000000..b89629e Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/13603_vm differ diff --git a/nodeJS/Learning/07/db/base/13779/13606 b/nodeJS/Learning/07/db/base/13779/13606 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/13779/13607 b/nodeJS/Learning/07/db/base/13779/13607 new file mode 100755 index 0000000..33ac758 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/13607 differ diff --git a/nodeJS/Learning/07/db/base/13779/13608 b/nodeJS/Learning/07/db/base/13779/13608 new file mode 100755 index 0000000..9a3144a Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/13608 differ diff --git a/nodeJS/Learning/07/db/base/13779/13608_fsm b/nodeJS/Learning/07/db/base/13779/13608_fsm new file mode 100755 index 0000000..d388044 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/13608_fsm differ diff --git a/nodeJS/Learning/07/db/base/13779/13608_vm b/nodeJS/Learning/07/db/base/13779/13608_vm new file mode 100755 index 0000000..fd65276 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/13608_vm differ diff --git a/nodeJS/Learning/07/db/base/13779/13611 b/nodeJS/Learning/07/db/base/13779/13611 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/13779/13612 b/nodeJS/Learning/07/db/base/13779/13612 new file mode 100755 index 0000000..92c5591 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/13612 differ diff --git a/nodeJS/Learning/07/db/base/13779/13613 b/nodeJS/Learning/07/db/base/13779/13613 new file mode 100755 index 0000000..298ec81 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/13613 differ diff --git a/nodeJS/Learning/07/db/base/13779/13613_fsm b/nodeJS/Learning/07/db/base/13779/13613_fsm new file mode 100755 index 0000000..a836ddf Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/13613_fsm differ diff --git a/nodeJS/Learning/07/db/base/13779/13613_vm b/nodeJS/Learning/07/db/base/13779/13613_vm new file mode 100755 index 0000000..167e8ce Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/13613_vm differ diff --git a/nodeJS/Learning/07/db/base/13779/13616 b/nodeJS/Learning/07/db/base/13779/13616 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/13779/13617 b/nodeJS/Learning/07/db/base/13779/13617 new file mode 100755 index 0000000..76ffb74 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/13617 differ diff --git a/nodeJS/Learning/07/db/base/13779/1417 b/nodeJS/Learning/07/db/base/13779/1417 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/13779/1418 b/nodeJS/Learning/07/db/base/13779/1418 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/13779/174 b/nodeJS/Learning/07/db/base/13779/174 new file mode 100755 index 0000000..6312b18 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/174 differ diff --git a/nodeJS/Learning/07/db/base/13779/175 b/nodeJS/Learning/07/db/base/13779/175 new file mode 100755 index 0000000..0f504d0 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/175 differ diff --git a/nodeJS/Learning/07/db/base/13779/2187 b/nodeJS/Learning/07/db/base/13779/2187 new file mode 100755 index 0000000..8298625 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/2187 differ diff --git a/nodeJS/Learning/07/db/base/13779/2224 b/nodeJS/Learning/07/db/base/13779/2224 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/13779/2228 b/nodeJS/Learning/07/db/base/13779/2228 new file mode 100755 index 0000000..da192ed Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/2228 differ diff --git a/nodeJS/Learning/07/db/base/13779/2328 b/nodeJS/Learning/07/db/base/13779/2328 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/13779/2336 b/nodeJS/Learning/07/db/base/13779/2336 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/13779/2337 b/nodeJS/Learning/07/db/base/13779/2337 new file mode 100755 index 0000000..06345c3 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/2337 differ diff --git a/nodeJS/Learning/07/db/base/13779/2579 b/nodeJS/Learning/07/db/base/13779/2579 new file mode 100755 index 0000000..32b6c41 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/2579 differ diff --git a/nodeJS/Learning/07/db/base/13779/2600 b/nodeJS/Learning/07/db/base/13779/2600 new file mode 100755 index 0000000..827b5c2 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/2600 differ diff --git a/nodeJS/Learning/07/db/base/13779/2600_fsm b/nodeJS/Learning/07/db/base/13779/2600_fsm new file mode 100755 index 0000000..3f8f408 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/2600_fsm differ diff --git a/nodeJS/Learning/07/db/base/13779/2600_vm b/nodeJS/Learning/07/db/base/13779/2600_vm new file mode 100755 index 0000000..e272ed9 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/2600_vm differ diff --git a/nodeJS/Learning/07/db/base/13779/2601 b/nodeJS/Learning/07/db/base/13779/2601 new file mode 100755 index 0000000..d8001c8 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/2601 differ diff --git a/nodeJS/Learning/07/db/base/13779/2601_fsm b/nodeJS/Learning/07/db/base/13779/2601_fsm new file mode 100755 index 0000000..d388044 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/2601_fsm differ diff --git a/nodeJS/Learning/07/db/base/13779/2601_vm b/nodeJS/Learning/07/db/base/13779/2601_vm new file mode 100755 index 0000000..b1005c9 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/2601_vm differ diff --git a/nodeJS/Learning/07/db/base/13779/2602 b/nodeJS/Learning/07/db/base/13779/2602 new file mode 100755 index 0000000..4a27b0a Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/2602 differ diff --git a/nodeJS/Learning/07/db/base/13779/2602_fsm b/nodeJS/Learning/07/db/base/13779/2602_fsm new file mode 100755 index 0000000..23170d8 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/2602_fsm differ diff --git a/nodeJS/Learning/07/db/base/13779/2602_vm b/nodeJS/Learning/07/db/base/13779/2602_vm new file mode 100755 index 0000000..7857da5 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/2602_vm differ diff --git a/nodeJS/Learning/07/db/base/13779/2603 b/nodeJS/Learning/07/db/base/13779/2603 new file mode 100755 index 0000000..d511af5 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/2603 differ diff --git a/nodeJS/Learning/07/db/base/13779/2603_fsm b/nodeJS/Learning/07/db/base/13779/2603_fsm new file mode 100755 index 0000000..949bd18 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/2603_fsm differ diff --git a/nodeJS/Learning/07/db/base/13779/2603_vm b/nodeJS/Learning/07/db/base/13779/2603_vm new file mode 100755 index 0000000..5f6553e Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/2603_vm differ diff --git a/nodeJS/Learning/07/db/base/13779/2604 b/nodeJS/Learning/07/db/base/13779/2604 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/13779/2605 b/nodeJS/Learning/07/db/base/13779/2605 new file mode 100755 index 0000000..287bf96 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/2605 differ diff --git a/nodeJS/Learning/07/db/base/13779/2605_fsm b/nodeJS/Learning/07/db/base/13779/2605_fsm new file mode 100755 index 0000000..c7723da Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/2605_fsm differ diff --git a/nodeJS/Learning/07/db/base/13779/2605_vm b/nodeJS/Learning/07/db/base/13779/2605_vm new file mode 100755 index 0000000..c2506c5 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/2605_vm differ diff --git a/nodeJS/Learning/07/db/base/13779/2606 b/nodeJS/Learning/07/db/base/13779/2606 new file mode 100755 index 0000000..389cfe9 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/2606 differ diff --git a/nodeJS/Learning/07/db/base/13779/2606_fsm b/nodeJS/Learning/07/db/base/13779/2606_fsm new file mode 100755 index 0000000..37bfa7e Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/2606_fsm differ diff --git a/nodeJS/Learning/07/db/base/13779/2606_vm b/nodeJS/Learning/07/db/base/13779/2606_vm new file mode 100755 index 0000000..c9804a6 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/2606_vm differ diff --git a/nodeJS/Learning/07/db/base/13779/2607 b/nodeJS/Learning/07/db/base/13779/2607 new file mode 100755 index 0000000..bfad49a Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/2607 differ diff --git a/nodeJS/Learning/07/db/base/13779/2607_fsm b/nodeJS/Learning/07/db/base/13779/2607_fsm new file mode 100755 index 0000000..80ac8b1 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/2607_fsm differ diff --git a/nodeJS/Learning/07/db/base/13779/2607_vm b/nodeJS/Learning/07/db/base/13779/2607_vm new file mode 100755 index 0000000..e731d80 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/2607_vm differ diff --git a/nodeJS/Learning/07/db/base/13779/2608 b/nodeJS/Learning/07/db/base/13779/2608 new file mode 100755 index 0000000..59acd9e Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/2608 differ diff --git a/nodeJS/Learning/07/db/base/13779/2608_fsm b/nodeJS/Learning/07/db/base/13779/2608_fsm new file mode 100755 index 0000000..8e746db Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/2608_fsm differ diff --git a/nodeJS/Learning/07/db/base/13779/2608_vm b/nodeJS/Learning/07/db/base/13779/2608_vm new file mode 100755 index 0000000..b06913b Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/2608_vm differ diff --git a/nodeJS/Learning/07/db/base/13779/2609 b/nodeJS/Learning/07/db/base/13779/2609 new file mode 100755 index 0000000..c8544d2 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/2609 differ diff --git a/nodeJS/Learning/07/db/base/13779/2609_fsm b/nodeJS/Learning/07/db/base/13779/2609_fsm new file mode 100755 index 0000000..adbf4b7 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/2609_fsm differ diff --git a/nodeJS/Learning/07/db/base/13779/2609_vm b/nodeJS/Learning/07/db/base/13779/2609_vm new file mode 100755 index 0000000..57bfff5 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/2609_vm differ diff --git a/nodeJS/Learning/07/db/base/13779/2610 b/nodeJS/Learning/07/db/base/13779/2610 new file mode 100755 index 0000000..16bd967 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/2610 differ diff --git a/nodeJS/Learning/07/db/base/13779/2610_fsm b/nodeJS/Learning/07/db/base/13779/2610_fsm new file mode 100755 index 0000000..39a3e89 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/2610_fsm differ diff --git a/nodeJS/Learning/07/db/base/13779/2610_vm b/nodeJS/Learning/07/db/base/13779/2610_vm new file mode 100755 index 0000000..d00c618 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/2610_vm differ diff --git a/nodeJS/Learning/07/db/base/13779/2611 b/nodeJS/Learning/07/db/base/13779/2611 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/13779/2612 b/nodeJS/Learning/07/db/base/13779/2612 new file mode 100755 index 0000000..7017eaf Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/2612 differ diff --git a/nodeJS/Learning/07/db/base/13779/2612_fsm b/nodeJS/Learning/07/db/base/13779/2612_fsm new file mode 100755 index 0000000..877976a Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/2612_fsm differ diff --git a/nodeJS/Learning/07/db/base/13779/2612_vm b/nodeJS/Learning/07/db/base/13779/2612_vm new file mode 100755 index 0000000..a326c5a Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/2612_vm differ diff --git a/nodeJS/Learning/07/db/base/13779/2613 b/nodeJS/Learning/07/db/base/13779/2613 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/13779/2615 b/nodeJS/Learning/07/db/base/13779/2615 new file mode 100755 index 0000000..9df3dde Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/2615 differ diff --git a/nodeJS/Learning/07/db/base/13779/2615_fsm b/nodeJS/Learning/07/db/base/13779/2615_fsm new file mode 100755 index 0000000..d041693 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/2615_fsm differ diff --git a/nodeJS/Learning/07/db/base/13779/2615_vm b/nodeJS/Learning/07/db/base/13779/2615_vm new file mode 100755 index 0000000..011172d Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/2615_vm differ diff --git a/nodeJS/Learning/07/db/base/13779/2616 b/nodeJS/Learning/07/db/base/13779/2616 new file mode 100755 index 0000000..0d60d79 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/2616 differ diff --git a/nodeJS/Learning/07/db/base/13779/2616_fsm b/nodeJS/Learning/07/db/base/13779/2616_fsm new file mode 100755 index 0000000..cb924c9 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/2616_fsm differ diff --git a/nodeJS/Learning/07/db/base/13779/2616_vm b/nodeJS/Learning/07/db/base/13779/2616_vm new file mode 100755 index 0000000..db9a53f Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/2616_vm differ diff --git a/nodeJS/Learning/07/db/base/13779/2617 b/nodeJS/Learning/07/db/base/13779/2617 new file mode 100755 index 0000000..8696551 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/2617 differ diff --git a/nodeJS/Learning/07/db/base/13779/2617_fsm b/nodeJS/Learning/07/db/base/13779/2617_fsm new file mode 100755 index 0000000..84060f4 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/2617_fsm differ diff --git a/nodeJS/Learning/07/db/base/13779/2617_vm b/nodeJS/Learning/07/db/base/13779/2617_vm new file mode 100755 index 0000000..e50deaf Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/2617_vm differ diff --git a/nodeJS/Learning/07/db/base/13779/2618 b/nodeJS/Learning/07/db/base/13779/2618 new file mode 100755 index 0000000..731e302 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/2618 differ diff --git a/nodeJS/Learning/07/db/base/13779/2618_fsm b/nodeJS/Learning/07/db/base/13779/2618_fsm new file mode 100755 index 0000000..b92d2da Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/2618_fsm differ diff --git a/nodeJS/Learning/07/db/base/13779/2618_vm b/nodeJS/Learning/07/db/base/13779/2618_vm new file mode 100755 index 0000000..31bfb22 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/2618_vm differ diff --git a/nodeJS/Learning/07/db/base/13779/2619 b/nodeJS/Learning/07/db/base/13779/2619 new file mode 100755 index 0000000..60d0f8a Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/2619 differ diff --git a/nodeJS/Learning/07/db/base/13779/2619_fsm b/nodeJS/Learning/07/db/base/13779/2619_fsm new file mode 100755 index 0000000..ee863db Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/2619_fsm differ diff --git a/nodeJS/Learning/07/db/base/13779/2619_vm b/nodeJS/Learning/07/db/base/13779/2619_vm new file mode 100755 index 0000000..07d9cfc Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/2619_vm differ diff --git a/nodeJS/Learning/07/db/base/13779/2620 b/nodeJS/Learning/07/db/base/13779/2620 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/13779/2650 b/nodeJS/Learning/07/db/base/13779/2650 new file mode 100755 index 0000000..ebcc0c3 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/2650 differ diff --git a/nodeJS/Learning/07/db/base/13779/2651 b/nodeJS/Learning/07/db/base/13779/2651 new file mode 100755 index 0000000..8841a67 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/2651 differ diff --git a/nodeJS/Learning/07/db/base/13779/2652 b/nodeJS/Learning/07/db/base/13779/2652 new file mode 100755 index 0000000..11ee01d Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/2652 differ diff --git a/nodeJS/Learning/07/db/base/13779/2653 b/nodeJS/Learning/07/db/base/13779/2653 new file mode 100755 index 0000000..2b6951c Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/2653 differ diff --git a/nodeJS/Learning/07/db/base/13779/2654 b/nodeJS/Learning/07/db/base/13779/2654 new file mode 100755 index 0000000..68403a4 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/2654 differ diff --git a/nodeJS/Learning/07/db/base/13779/2655 b/nodeJS/Learning/07/db/base/13779/2655 new file mode 100755 index 0000000..8b9aa94 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/2655 differ diff --git a/nodeJS/Learning/07/db/base/13779/2656 b/nodeJS/Learning/07/db/base/13779/2656 new file mode 100755 index 0000000..ff35981 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/2656 differ diff --git a/nodeJS/Learning/07/db/base/13779/2657 b/nodeJS/Learning/07/db/base/13779/2657 new file mode 100755 index 0000000..1270286 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/2657 differ diff --git a/nodeJS/Learning/07/db/base/13779/2658 b/nodeJS/Learning/07/db/base/13779/2658 new file mode 100755 index 0000000..dcf54cf Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/2658 differ diff --git a/nodeJS/Learning/07/db/base/13779/2659 b/nodeJS/Learning/07/db/base/13779/2659 new file mode 100755 index 0000000..ae25dfd Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/2659 differ diff --git a/nodeJS/Learning/07/db/base/13779/2660 b/nodeJS/Learning/07/db/base/13779/2660 new file mode 100755 index 0000000..8862e97 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/2660 differ diff --git a/nodeJS/Learning/07/db/base/13779/2661 b/nodeJS/Learning/07/db/base/13779/2661 new file mode 100755 index 0000000..8bb39cc Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/2661 differ diff --git a/nodeJS/Learning/07/db/base/13779/2662 b/nodeJS/Learning/07/db/base/13779/2662 new file mode 100755 index 0000000..8d47b5f Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/2662 differ diff --git a/nodeJS/Learning/07/db/base/13779/2663 b/nodeJS/Learning/07/db/base/13779/2663 new file mode 100755 index 0000000..4072df3 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/2663 differ diff --git a/nodeJS/Learning/07/db/base/13779/2664 b/nodeJS/Learning/07/db/base/13779/2664 new file mode 100755 index 0000000..2ee6e0c Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/2664 differ diff --git a/nodeJS/Learning/07/db/base/13779/2665 b/nodeJS/Learning/07/db/base/13779/2665 new file mode 100755 index 0000000..93b9f9d Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/2665 differ diff --git a/nodeJS/Learning/07/db/base/13779/2666 b/nodeJS/Learning/07/db/base/13779/2666 new file mode 100755 index 0000000..7fcb48b Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/2666 differ diff --git a/nodeJS/Learning/07/db/base/13779/2667 b/nodeJS/Learning/07/db/base/13779/2667 new file mode 100755 index 0000000..5e3c572 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/2667 differ diff --git a/nodeJS/Learning/07/db/base/13779/2668 b/nodeJS/Learning/07/db/base/13779/2668 new file mode 100755 index 0000000..17439a2 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/2668 differ diff --git a/nodeJS/Learning/07/db/base/13779/2669 b/nodeJS/Learning/07/db/base/13779/2669 new file mode 100755 index 0000000..d8d8569 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/2669 differ diff --git a/nodeJS/Learning/07/db/base/13779/2670 b/nodeJS/Learning/07/db/base/13779/2670 new file mode 100755 index 0000000..97e2033 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/2670 differ diff --git a/nodeJS/Learning/07/db/base/13779/2673 b/nodeJS/Learning/07/db/base/13779/2673 new file mode 100755 index 0000000..df1d528 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/2673 differ diff --git a/nodeJS/Learning/07/db/base/13779/2673_fsm b/nodeJS/Learning/07/db/base/13779/2673_fsm new file mode 100755 index 0000000..2c8d238 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/2673_fsm differ diff --git a/nodeJS/Learning/07/db/base/13779/2674 b/nodeJS/Learning/07/db/base/13779/2674 new file mode 100755 index 0000000..c3cd1b0 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/2674 differ diff --git a/nodeJS/Learning/07/db/base/13779/2674_fsm b/nodeJS/Learning/07/db/base/13779/2674_fsm new file mode 100755 index 0000000..ed74869 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/2674_fsm differ diff --git a/nodeJS/Learning/07/db/base/13779/2675 b/nodeJS/Learning/07/db/base/13779/2675 new file mode 100755 index 0000000..dd562dc Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/2675 differ diff --git a/nodeJS/Learning/07/db/base/13779/2678 b/nodeJS/Learning/07/db/base/13779/2678 new file mode 100755 index 0000000..7bb29cc Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/2678 differ diff --git a/nodeJS/Learning/07/db/base/13779/2679 b/nodeJS/Learning/07/db/base/13779/2679 new file mode 100755 index 0000000..7f7848c Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/2679 differ diff --git a/nodeJS/Learning/07/db/base/13779/2680 b/nodeJS/Learning/07/db/base/13779/2680 new file mode 100755 index 0000000..5fd8851 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/2680 differ diff --git a/nodeJS/Learning/07/db/base/13779/2681 b/nodeJS/Learning/07/db/base/13779/2681 new file mode 100755 index 0000000..b27e644 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/2681 differ diff --git a/nodeJS/Learning/07/db/base/13779/2682 b/nodeJS/Learning/07/db/base/13779/2682 new file mode 100755 index 0000000..110d359 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/2682 differ diff --git a/nodeJS/Learning/07/db/base/13779/2683 b/nodeJS/Learning/07/db/base/13779/2683 new file mode 100755 index 0000000..8187c58 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/2683 differ diff --git a/nodeJS/Learning/07/db/base/13779/2684 b/nodeJS/Learning/07/db/base/13779/2684 new file mode 100755 index 0000000..accf1f6 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/2684 differ diff --git a/nodeJS/Learning/07/db/base/13779/2685 b/nodeJS/Learning/07/db/base/13779/2685 new file mode 100755 index 0000000..a86f5ab Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/2685 differ diff --git a/nodeJS/Learning/07/db/base/13779/2686 b/nodeJS/Learning/07/db/base/13779/2686 new file mode 100755 index 0000000..37beb74 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/2686 differ diff --git a/nodeJS/Learning/07/db/base/13779/2687 b/nodeJS/Learning/07/db/base/13779/2687 new file mode 100755 index 0000000..20a2d34 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/2687 differ diff --git a/nodeJS/Learning/07/db/base/13779/2688 b/nodeJS/Learning/07/db/base/13779/2688 new file mode 100755 index 0000000..4cd4907 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/2688 differ diff --git a/nodeJS/Learning/07/db/base/13779/2689 b/nodeJS/Learning/07/db/base/13779/2689 new file mode 100755 index 0000000..4b12dea Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/2689 differ diff --git a/nodeJS/Learning/07/db/base/13779/2690 b/nodeJS/Learning/07/db/base/13779/2690 new file mode 100755 index 0000000..216bee6 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/2690 differ diff --git a/nodeJS/Learning/07/db/base/13779/2691 b/nodeJS/Learning/07/db/base/13779/2691 new file mode 100755 index 0000000..e08708d Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/2691 differ diff --git a/nodeJS/Learning/07/db/base/13779/2692 b/nodeJS/Learning/07/db/base/13779/2692 new file mode 100755 index 0000000..7137a2f Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/2692 differ diff --git a/nodeJS/Learning/07/db/base/13779/2693 b/nodeJS/Learning/07/db/base/13779/2693 new file mode 100755 index 0000000..1feb720 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/2693 differ diff --git a/nodeJS/Learning/07/db/base/13779/2696 b/nodeJS/Learning/07/db/base/13779/2696 new file mode 100755 index 0000000..4e8bf7a Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/2696 differ diff --git a/nodeJS/Learning/07/db/base/13779/2699 b/nodeJS/Learning/07/db/base/13779/2699 new file mode 100755 index 0000000..14488bf Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/2699 differ diff --git a/nodeJS/Learning/07/db/base/13779/2701 b/nodeJS/Learning/07/db/base/13779/2701 new file mode 100755 index 0000000..8664200 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/2701 differ diff --git a/nodeJS/Learning/07/db/base/13779/2702 b/nodeJS/Learning/07/db/base/13779/2702 new file mode 100755 index 0000000..750b4b6 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/2702 differ diff --git a/nodeJS/Learning/07/db/base/13779/2703 b/nodeJS/Learning/07/db/base/13779/2703 new file mode 100755 index 0000000..0c6efc6 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/2703 differ diff --git a/nodeJS/Learning/07/db/base/13779/2704 b/nodeJS/Learning/07/db/base/13779/2704 new file mode 100755 index 0000000..bb718a2 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/2704 differ diff --git a/nodeJS/Learning/07/db/base/13779/2753 b/nodeJS/Learning/07/db/base/13779/2753 new file mode 100755 index 0000000..3c16dff Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/2753 differ diff --git a/nodeJS/Learning/07/db/base/13779/2753_fsm b/nodeJS/Learning/07/db/base/13779/2753_fsm new file mode 100755 index 0000000..642bce3 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/2753_fsm differ diff --git a/nodeJS/Learning/07/db/base/13779/2753_vm b/nodeJS/Learning/07/db/base/13779/2753_vm new file mode 100755 index 0000000..e8297c0 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/2753_vm differ diff --git a/nodeJS/Learning/07/db/base/13779/2754 b/nodeJS/Learning/07/db/base/13779/2754 new file mode 100755 index 0000000..0c2ef54 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/2754 differ diff --git a/nodeJS/Learning/07/db/base/13779/2755 b/nodeJS/Learning/07/db/base/13779/2755 new file mode 100755 index 0000000..5e7143b Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/2755 differ diff --git a/nodeJS/Learning/07/db/base/13779/2756 b/nodeJS/Learning/07/db/base/13779/2756 new file mode 100755 index 0000000..0758e05 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/2756 differ diff --git a/nodeJS/Learning/07/db/base/13779/2757 b/nodeJS/Learning/07/db/base/13779/2757 new file mode 100755 index 0000000..80dd62a Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/2757 differ diff --git a/nodeJS/Learning/07/db/base/13779/2830 b/nodeJS/Learning/07/db/base/13779/2830 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/13779/2831 b/nodeJS/Learning/07/db/base/13779/2831 new file mode 100755 index 0000000..61046f3 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/2831 differ diff --git a/nodeJS/Learning/07/db/base/13779/2832 b/nodeJS/Learning/07/db/base/13779/2832 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/13779/2833 b/nodeJS/Learning/07/db/base/13779/2833 new file mode 100755 index 0000000..fb3c12d Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/2833 differ diff --git a/nodeJS/Learning/07/db/base/13779/2834 b/nodeJS/Learning/07/db/base/13779/2834 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/13779/2835 b/nodeJS/Learning/07/db/base/13779/2835 new file mode 100755 index 0000000..3c05130 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/2835 differ diff --git a/nodeJS/Learning/07/db/base/13779/2836 b/nodeJS/Learning/07/db/base/13779/2836 new file mode 100755 index 0000000..71b0236 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/2836 differ diff --git a/nodeJS/Learning/07/db/base/13779/2836_fsm b/nodeJS/Learning/07/db/base/13779/2836_fsm new file mode 100755 index 0000000..4066e1e Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/2836_fsm differ diff --git a/nodeJS/Learning/07/db/base/13779/2836_vm b/nodeJS/Learning/07/db/base/13779/2836_vm new file mode 100755 index 0000000..b7f6a9f Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/2836_vm differ diff --git a/nodeJS/Learning/07/db/base/13779/2837 b/nodeJS/Learning/07/db/base/13779/2837 new file mode 100755 index 0000000..be6efc3 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/2837 differ diff --git a/nodeJS/Learning/07/db/base/13779/2838 b/nodeJS/Learning/07/db/base/13779/2838 new file mode 100755 index 0000000..9d46e70 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/2838 differ diff --git a/nodeJS/Learning/07/db/base/13779/2838_fsm b/nodeJS/Learning/07/db/base/13779/2838_fsm new file mode 100755 index 0000000..4cc1630 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/2838_fsm differ diff --git a/nodeJS/Learning/07/db/base/13779/2838_vm b/nodeJS/Learning/07/db/base/13779/2838_vm new file mode 100755 index 0000000..46e0e3d Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/2838_vm differ diff --git a/nodeJS/Learning/07/db/base/13779/2839 b/nodeJS/Learning/07/db/base/13779/2839 new file mode 100755 index 0000000..bd20a46 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/2839 differ diff --git a/nodeJS/Learning/07/db/base/13779/2840 b/nodeJS/Learning/07/db/base/13779/2840 new file mode 100755 index 0000000..7ca0ff0 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/2840 differ diff --git a/nodeJS/Learning/07/db/base/13779/2840_fsm b/nodeJS/Learning/07/db/base/13779/2840_fsm new file mode 100755 index 0000000..49de392 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/2840_fsm differ diff --git a/nodeJS/Learning/07/db/base/13779/2840_vm b/nodeJS/Learning/07/db/base/13779/2840_vm new file mode 100755 index 0000000..bbeeea5 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/2840_vm differ diff --git a/nodeJS/Learning/07/db/base/13779/2841 b/nodeJS/Learning/07/db/base/13779/2841 new file mode 100755 index 0000000..4d1e7da Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/2841 differ diff --git a/nodeJS/Learning/07/db/base/13779/2995 b/nodeJS/Learning/07/db/base/13779/2995 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/13779/2996 b/nodeJS/Learning/07/db/base/13779/2996 new file mode 100755 index 0000000..94563e7 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/2996 differ diff --git a/nodeJS/Learning/07/db/base/13779/3079 b/nodeJS/Learning/07/db/base/13779/3079 new file mode 100755 index 0000000..c14c1a8 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/3079 differ diff --git a/nodeJS/Learning/07/db/base/13779/3079_fsm b/nodeJS/Learning/07/db/base/13779/3079_fsm new file mode 100755 index 0000000..7732d22 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/3079_fsm differ diff --git a/nodeJS/Learning/07/db/base/13779/3079_vm b/nodeJS/Learning/07/db/base/13779/3079_vm new file mode 100755 index 0000000..ef81260 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/3079_vm differ diff --git a/nodeJS/Learning/07/db/base/13779/3080 b/nodeJS/Learning/07/db/base/13779/3080 new file mode 100755 index 0000000..560b8bf Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/3080 differ diff --git a/nodeJS/Learning/07/db/base/13779/3081 b/nodeJS/Learning/07/db/base/13779/3081 new file mode 100755 index 0000000..1de691e Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/3081 differ diff --git a/nodeJS/Learning/07/db/base/13779/3085 b/nodeJS/Learning/07/db/base/13779/3085 new file mode 100755 index 0000000..27571b6 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/3085 differ diff --git a/nodeJS/Learning/07/db/base/13779/3118 b/nodeJS/Learning/07/db/base/13779/3118 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/13779/3119 b/nodeJS/Learning/07/db/base/13779/3119 new file mode 100755 index 0000000..c0d08b7 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/3119 differ diff --git a/nodeJS/Learning/07/db/base/13779/3164 b/nodeJS/Learning/07/db/base/13779/3164 new file mode 100755 index 0000000..3faa559 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/3164 differ diff --git a/nodeJS/Learning/07/db/base/13779/3256 b/nodeJS/Learning/07/db/base/13779/3256 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/13779/3257 b/nodeJS/Learning/07/db/base/13779/3257 new file mode 100755 index 0000000..85937d2 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/3257 differ diff --git a/nodeJS/Learning/07/db/base/13779/3258 b/nodeJS/Learning/07/db/base/13779/3258 new file mode 100755 index 0000000..5f252a3 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/3258 differ diff --git a/nodeJS/Learning/07/db/base/13779/3350 b/nodeJS/Learning/07/db/base/13779/3350 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/13779/3351 b/nodeJS/Learning/07/db/base/13779/3351 new file mode 100755 index 0000000..0aecbb3 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/3351 differ diff --git a/nodeJS/Learning/07/db/base/13779/3379 b/nodeJS/Learning/07/db/base/13779/3379 new file mode 100755 index 0000000..9cc56f1 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/3379 differ diff --git a/nodeJS/Learning/07/db/base/13779/3380 b/nodeJS/Learning/07/db/base/13779/3380 new file mode 100755 index 0000000..896db3e Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/3380 differ diff --git a/nodeJS/Learning/07/db/base/13779/3381 b/nodeJS/Learning/07/db/base/13779/3381 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/13779/3394 b/nodeJS/Learning/07/db/base/13779/3394 new file mode 100755 index 0000000..0d1ce52 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/3394 differ diff --git a/nodeJS/Learning/07/db/base/13779/3394_fsm b/nodeJS/Learning/07/db/base/13779/3394_fsm new file mode 100755 index 0000000..f8d6070 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/3394_fsm differ diff --git a/nodeJS/Learning/07/db/base/13779/3394_vm b/nodeJS/Learning/07/db/base/13779/3394_vm new file mode 100755 index 0000000..5ad9145 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/3394_vm differ diff --git a/nodeJS/Learning/07/db/base/13779/3395 b/nodeJS/Learning/07/db/base/13779/3395 new file mode 100755 index 0000000..154db37 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/3395 differ diff --git a/nodeJS/Learning/07/db/base/13779/3429 b/nodeJS/Learning/07/db/base/13779/3429 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/13779/3430 b/nodeJS/Learning/07/db/base/13779/3430 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/13779/3431 b/nodeJS/Learning/07/db/base/13779/3431 new file mode 100755 index 0000000..8a6528d Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/3431 differ diff --git a/nodeJS/Learning/07/db/base/13779/3433 b/nodeJS/Learning/07/db/base/13779/3433 new file mode 100755 index 0000000..0c4736b Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/3433 differ diff --git a/nodeJS/Learning/07/db/base/13779/3439 b/nodeJS/Learning/07/db/base/13779/3439 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/13779/3440 b/nodeJS/Learning/07/db/base/13779/3440 new file mode 100755 index 0000000..1174715 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/3440 differ diff --git a/nodeJS/Learning/07/db/base/13779/3455 b/nodeJS/Learning/07/db/base/13779/3455 new file mode 100755 index 0000000..542fa4e Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/3455 differ diff --git a/nodeJS/Learning/07/db/base/13779/3456 b/nodeJS/Learning/07/db/base/13779/3456 new file mode 100755 index 0000000..7f3559d Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/3456 differ diff --git a/nodeJS/Learning/07/db/base/13779/3456_fsm b/nodeJS/Learning/07/db/base/13779/3456_fsm new file mode 100755 index 0000000..fc8f8b8 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/3456_fsm differ diff --git a/nodeJS/Learning/07/db/base/13779/3456_vm b/nodeJS/Learning/07/db/base/13779/3456_vm new file mode 100755 index 0000000..016a644 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/3456_vm differ diff --git a/nodeJS/Learning/07/db/base/13779/3466 b/nodeJS/Learning/07/db/base/13779/3466 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/13779/3467 b/nodeJS/Learning/07/db/base/13779/3467 new file mode 100755 index 0000000..020deba Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/3467 differ diff --git a/nodeJS/Learning/07/db/base/13779/3468 b/nodeJS/Learning/07/db/base/13779/3468 new file mode 100755 index 0000000..a37352a Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/3468 differ diff --git a/nodeJS/Learning/07/db/base/13779/3501 b/nodeJS/Learning/07/db/base/13779/3501 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/13779/3502 b/nodeJS/Learning/07/db/base/13779/3502 new file mode 100755 index 0000000..94e5e8e Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/3502 differ diff --git a/nodeJS/Learning/07/db/base/13779/3503 b/nodeJS/Learning/07/db/base/13779/3503 new file mode 100755 index 0000000..df8e743 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/3503 differ diff --git a/nodeJS/Learning/07/db/base/13779/3534 b/nodeJS/Learning/07/db/base/13779/3534 new file mode 100755 index 0000000..98d4854 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/3534 differ diff --git a/nodeJS/Learning/07/db/base/13779/3541 b/nodeJS/Learning/07/db/base/13779/3541 new file mode 100755 index 0000000..40869ad Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/3541 differ diff --git a/nodeJS/Learning/07/db/base/13779/3541_fsm b/nodeJS/Learning/07/db/base/13779/3541_fsm new file mode 100755 index 0000000..a3a2de4 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/3541_fsm differ diff --git a/nodeJS/Learning/07/db/base/13779/3541_vm b/nodeJS/Learning/07/db/base/13779/3541_vm new file mode 100755 index 0000000..794ff8a Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/3541_vm differ diff --git a/nodeJS/Learning/07/db/base/13779/3542 b/nodeJS/Learning/07/db/base/13779/3542 new file mode 100755 index 0000000..ee21b6a Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/3542 differ diff --git a/nodeJS/Learning/07/db/base/13779/3574 b/nodeJS/Learning/07/db/base/13779/3574 new file mode 100755 index 0000000..418bbca Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/3574 differ diff --git a/nodeJS/Learning/07/db/base/13779/3575 b/nodeJS/Learning/07/db/base/13779/3575 new file mode 100755 index 0000000..6addf86 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/3575 differ diff --git a/nodeJS/Learning/07/db/base/13779/3576 b/nodeJS/Learning/07/db/base/13779/3576 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/13779/3596 b/nodeJS/Learning/07/db/base/13779/3596 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/13779/3597 b/nodeJS/Learning/07/db/base/13779/3597 new file mode 100755 index 0000000..71d2820 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/3597 differ diff --git a/nodeJS/Learning/07/db/base/13779/3598 b/nodeJS/Learning/07/db/base/13779/3598 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/13779/3599 b/nodeJS/Learning/07/db/base/13779/3599 new file mode 100755 index 0000000..20c4969 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/3599 differ diff --git a/nodeJS/Learning/07/db/base/13779/3600 b/nodeJS/Learning/07/db/base/13779/3600 new file mode 100755 index 0000000..f8fd22f Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/3600 differ diff --git a/nodeJS/Learning/07/db/base/13779/3600_fsm b/nodeJS/Learning/07/db/base/13779/3600_fsm new file mode 100755 index 0000000..cebec19 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/3600_fsm differ diff --git a/nodeJS/Learning/07/db/base/13779/3600_vm b/nodeJS/Learning/07/db/base/13779/3600_vm new file mode 100755 index 0000000..e552bd7 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/3600_vm differ diff --git a/nodeJS/Learning/07/db/base/13779/3601 b/nodeJS/Learning/07/db/base/13779/3601 new file mode 100755 index 0000000..04c846e Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/3601 differ diff --git a/nodeJS/Learning/07/db/base/13779/3601_fsm b/nodeJS/Learning/07/db/base/13779/3601_fsm new file mode 100755 index 0000000..7732d22 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/3601_fsm differ diff --git a/nodeJS/Learning/07/db/base/13779/3601_vm b/nodeJS/Learning/07/db/base/13779/3601_vm new file mode 100755 index 0000000..107bd5e Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/3601_vm differ diff --git a/nodeJS/Learning/07/db/base/13779/3602 b/nodeJS/Learning/07/db/base/13779/3602 new file mode 100755 index 0000000..3312c40 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/3602 differ diff --git a/nodeJS/Learning/07/db/base/13779/3602_fsm b/nodeJS/Learning/07/db/base/13779/3602_fsm new file mode 100755 index 0000000..d7897de Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/3602_fsm differ diff --git a/nodeJS/Learning/07/db/base/13779/3602_vm b/nodeJS/Learning/07/db/base/13779/3602_vm new file mode 100755 index 0000000..8ccfa65 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/3602_vm differ diff --git a/nodeJS/Learning/07/db/base/13779/3603 b/nodeJS/Learning/07/db/base/13779/3603 new file mode 100755 index 0000000..0ab1d5d Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/3603 differ diff --git a/nodeJS/Learning/07/db/base/13779/3603_fsm b/nodeJS/Learning/07/db/base/13779/3603_fsm new file mode 100755 index 0000000..c28dd4f Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/3603_fsm differ diff --git a/nodeJS/Learning/07/db/base/13779/3603_vm b/nodeJS/Learning/07/db/base/13779/3603_vm new file mode 100755 index 0000000..0520389 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/3603_vm differ diff --git a/nodeJS/Learning/07/db/base/13779/3604 b/nodeJS/Learning/07/db/base/13779/3604 new file mode 100755 index 0000000..e17cc51 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/3604 differ diff --git a/nodeJS/Learning/07/db/base/13779/3605 b/nodeJS/Learning/07/db/base/13779/3605 new file mode 100755 index 0000000..351139b Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/3605 differ diff --git a/nodeJS/Learning/07/db/base/13779/3606 b/nodeJS/Learning/07/db/base/13779/3606 new file mode 100755 index 0000000..de60e2f Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/3606 differ diff --git a/nodeJS/Learning/07/db/base/13779/3607 b/nodeJS/Learning/07/db/base/13779/3607 new file mode 100755 index 0000000..ff53735 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/3607 differ diff --git a/nodeJS/Learning/07/db/base/13779/3608 b/nodeJS/Learning/07/db/base/13779/3608 new file mode 100755 index 0000000..7cc12cf Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/3608 differ diff --git a/nodeJS/Learning/07/db/base/13779/3609 b/nodeJS/Learning/07/db/base/13779/3609 new file mode 100755 index 0000000..f97c4c3 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/3609 differ diff --git a/nodeJS/Learning/07/db/base/13779/3712 b/nodeJS/Learning/07/db/base/13779/3712 new file mode 100755 index 0000000..6b682ba Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/3712 differ diff --git a/nodeJS/Learning/07/db/base/13779/3764 b/nodeJS/Learning/07/db/base/13779/3764 new file mode 100755 index 0000000..560a763 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/3764 differ diff --git a/nodeJS/Learning/07/db/base/13779/3764_fsm b/nodeJS/Learning/07/db/base/13779/3764_fsm new file mode 100755 index 0000000..f64db4d Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/3764_fsm differ diff --git a/nodeJS/Learning/07/db/base/13779/3764_vm b/nodeJS/Learning/07/db/base/13779/3764_vm new file mode 100755 index 0000000..27a13ad Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/3764_vm differ diff --git a/nodeJS/Learning/07/db/base/13779/3766 b/nodeJS/Learning/07/db/base/13779/3766 new file mode 100755 index 0000000..5993ce9 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/3766 differ diff --git a/nodeJS/Learning/07/db/base/13779/3767 b/nodeJS/Learning/07/db/base/13779/3767 new file mode 100755 index 0000000..fa65de6 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/3767 differ diff --git a/nodeJS/Learning/07/db/base/13779/3997 b/nodeJS/Learning/07/db/base/13779/3997 new file mode 100755 index 0000000..3832f55 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/3997 differ diff --git a/nodeJS/Learning/07/db/base/13779/4143 b/nodeJS/Learning/07/db/base/13779/4143 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/13779/4144 b/nodeJS/Learning/07/db/base/13779/4144 new file mode 100755 index 0000000..178af33 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/4144 differ diff --git a/nodeJS/Learning/07/db/base/13779/4145 b/nodeJS/Learning/07/db/base/13779/4145 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/13779/4146 b/nodeJS/Learning/07/db/base/13779/4146 new file mode 100755 index 0000000..bb603a6 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/4146 differ diff --git a/nodeJS/Learning/07/db/base/13779/4147 b/nodeJS/Learning/07/db/base/13779/4147 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/13779/4148 b/nodeJS/Learning/07/db/base/13779/4148 new file mode 100755 index 0000000..87c330b Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/4148 differ diff --git a/nodeJS/Learning/07/db/base/13779/4149 b/nodeJS/Learning/07/db/base/13779/4149 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/13779/4150 b/nodeJS/Learning/07/db/base/13779/4150 new file mode 100755 index 0000000..2085995 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/4150 differ diff --git a/nodeJS/Learning/07/db/base/13779/4151 b/nodeJS/Learning/07/db/base/13779/4151 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/13779/4152 b/nodeJS/Learning/07/db/base/13779/4152 new file mode 100755 index 0000000..23407ab Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/4152 differ diff --git a/nodeJS/Learning/07/db/base/13779/4153 b/nodeJS/Learning/07/db/base/13779/4153 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/13779/4154 b/nodeJS/Learning/07/db/base/13779/4154 new file mode 100755 index 0000000..edaed60 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/4154 differ diff --git a/nodeJS/Learning/07/db/base/13779/4155 b/nodeJS/Learning/07/db/base/13779/4155 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/13779/4156 b/nodeJS/Learning/07/db/base/13779/4156 new file mode 100755 index 0000000..f0c50e4 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/4156 differ diff --git a/nodeJS/Learning/07/db/base/13779/4157 b/nodeJS/Learning/07/db/base/13779/4157 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/13779/4158 b/nodeJS/Learning/07/db/base/13779/4158 new file mode 100755 index 0000000..d45296c Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/4158 differ diff --git a/nodeJS/Learning/07/db/base/13779/4159 b/nodeJS/Learning/07/db/base/13779/4159 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/13779/4160 b/nodeJS/Learning/07/db/base/13779/4160 new file mode 100755 index 0000000..e0fd4e1 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/4160 differ diff --git a/nodeJS/Learning/07/db/base/13779/4163 b/nodeJS/Learning/07/db/base/13779/4163 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/13779/4164 b/nodeJS/Learning/07/db/base/13779/4164 new file mode 100755 index 0000000..9a3435b Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/4164 differ diff --git a/nodeJS/Learning/07/db/base/13779/4165 b/nodeJS/Learning/07/db/base/13779/4165 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/13779/4166 b/nodeJS/Learning/07/db/base/13779/4166 new file mode 100755 index 0000000..be076db Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/4166 differ diff --git a/nodeJS/Learning/07/db/base/13779/4167 b/nodeJS/Learning/07/db/base/13779/4167 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/13779/4168 b/nodeJS/Learning/07/db/base/13779/4168 new file mode 100755 index 0000000..976615c Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/4168 differ diff --git a/nodeJS/Learning/07/db/base/13779/4169 b/nodeJS/Learning/07/db/base/13779/4169 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/13779/4170 b/nodeJS/Learning/07/db/base/13779/4170 new file mode 100755 index 0000000..f33abe0 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/4170 differ diff --git a/nodeJS/Learning/07/db/base/13779/4171 b/nodeJS/Learning/07/db/base/13779/4171 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/13779/4172 b/nodeJS/Learning/07/db/base/13779/4172 new file mode 100755 index 0000000..bfa5606 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/4172 differ diff --git a/nodeJS/Learning/07/db/base/13779/4173 b/nodeJS/Learning/07/db/base/13779/4173 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/13779/4174 b/nodeJS/Learning/07/db/base/13779/4174 new file mode 100755 index 0000000..8a80490 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/4174 differ diff --git a/nodeJS/Learning/07/db/base/13779/5002 b/nodeJS/Learning/07/db/base/13779/5002 new file mode 100755 index 0000000..32af7a1 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/5002 differ diff --git a/nodeJS/Learning/07/db/base/13779/548 b/nodeJS/Learning/07/db/base/13779/548 new file mode 100755 index 0000000..9f21947 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/548 differ diff --git a/nodeJS/Learning/07/db/base/13779/549 b/nodeJS/Learning/07/db/base/13779/549 new file mode 100755 index 0000000..68efb3f Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/549 differ diff --git a/nodeJS/Learning/07/db/base/13779/6102 b/nodeJS/Learning/07/db/base/13779/6102 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/13779/6104 b/nodeJS/Learning/07/db/base/13779/6104 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/13779/6106 b/nodeJS/Learning/07/db/base/13779/6106 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/13779/6110 b/nodeJS/Learning/07/db/base/13779/6110 new file mode 100755 index 0000000..536b80d Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/6110 differ diff --git a/nodeJS/Learning/07/db/base/13779/6111 b/nodeJS/Learning/07/db/base/13779/6111 new file mode 100755 index 0000000..3d22c94 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/6111 differ diff --git a/nodeJS/Learning/07/db/base/13779/6112 b/nodeJS/Learning/07/db/base/13779/6112 new file mode 100755 index 0000000..9e47d5c Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/6112 differ diff --git a/nodeJS/Learning/07/db/base/13779/6113 b/nodeJS/Learning/07/db/base/13779/6113 new file mode 100755 index 0000000..4e57f5b Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/6113 differ diff --git a/nodeJS/Learning/07/db/base/13779/6117 b/nodeJS/Learning/07/db/base/13779/6117 new file mode 100755 index 0000000..296b14e Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/6117 differ diff --git a/nodeJS/Learning/07/db/base/13779/6175 b/nodeJS/Learning/07/db/base/13779/6175 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/13779/6176 b/nodeJS/Learning/07/db/base/13779/6176 new file mode 100755 index 0000000..a349a04 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/6176 differ diff --git a/nodeJS/Learning/07/db/base/13779/826 b/nodeJS/Learning/07/db/base/13779/826 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/13779/827 b/nodeJS/Learning/07/db/base/13779/827 new file mode 100755 index 0000000..86db9fe Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/827 differ diff --git a/nodeJS/Learning/07/db/base/13779/828 b/nodeJS/Learning/07/db/base/13779/828 new file mode 100755 index 0000000..4a52299 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/828 differ diff --git a/nodeJS/Learning/07/db/base/13779/PG_VERSION b/nodeJS/Learning/07/db/base/13779/PG_VERSION new file mode 100755 index 0000000..8351c19 --- /dev/null +++ b/nodeJS/Learning/07/db/base/13779/PG_VERSION @@ -0,0 +1 @@ +14 diff --git a/nodeJS/Learning/07/db/base/13779/pg_filenode.map b/nodeJS/Learning/07/db/base/13779/pg_filenode.map new file mode 100755 index 0000000..193d78f Binary files /dev/null and b/nodeJS/Learning/07/db/base/13779/pg_filenode.map differ diff --git a/nodeJS/Learning/07/db/base/13780/112 b/nodeJS/Learning/07/db/base/13780/112 new file mode 100755 index 0000000..21db514 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/112 differ diff --git a/nodeJS/Learning/07/db/base/13780/113 b/nodeJS/Learning/07/db/base/13780/113 new file mode 100755 index 0000000..3f06e2f Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/113 differ diff --git a/nodeJS/Learning/07/db/base/13780/1247 b/nodeJS/Learning/07/db/base/13780/1247 new file mode 100755 index 0000000..16784f0 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/1247 differ diff --git a/nodeJS/Learning/07/db/base/13780/1247_fsm b/nodeJS/Learning/07/db/base/13780/1247_fsm new file mode 100755 index 0000000..0e4086f Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/1247_fsm differ diff --git a/nodeJS/Learning/07/db/base/13780/1247_vm b/nodeJS/Learning/07/db/base/13780/1247_vm new file mode 100755 index 0000000..6b3c3a9 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/1247_vm differ diff --git a/nodeJS/Learning/07/db/base/13780/1249 b/nodeJS/Learning/07/db/base/13780/1249 new file mode 100755 index 0000000..b2df5ee Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/1249 differ diff --git a/nodeJS/Learning/07/db/base/13780/1249_fsm b/nodeJS/Learning/07/db/base/13780/1249_fsm new file mode 100755 index 0000000..1f8868d Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/1249_fsm differ diff --git a/nodeJS/Learning/07/db/base/13780/1249_vm b/nodeJS/Learning/07/db/base/13780/1249_vm new file mode 100755 index 0000000..438b92c Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/1249_vm differ diff --git a/nodeJS/Learning/07/db/base/13780/1255 b/nodeJS/Learning/07/db/base/13780/1255 new file mode 100755 index 0000000..2875320 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/1255 differ diff --git a/nodeJS/Learning/07/db/base/13780/1255_fsm b/nodeJS/Learning/07/db/base/13780/1255_fsm new file mode 100755 index 0000000..b730b34 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/1255_fsm differ diff --git a/nodeJS/Learning/07/db/base/13780/1255_vm b/nodeJS/Learning/07/db/base/13780/1255_vm new file mode 100755 index 0000000..f8b601a Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/1255_vm differ diff --git a/nodeJS/Learning/07/db/base/13780/1259 b/nodeJS/Learning/07/db/base/13780/1259 new file mode 100755 index 0000000..ba43098 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/1259 differ diff --git a/nodeJS/Learning/07/db/base/13780/1259_fsm b/nodeJS/Learning/07/db/base/13780/1259_fsm new file mode 100755 index 0000000..3d17e63 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/1259_fsm differ diff --git a/nodeJS/Learning/07/db/base/13780/1259_vm b/nodeJS/Learning/07/db/base/13780/1259_vm new file mode 100755 index 0000000..f592dcf Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/1259_vm differ diff --git a/nodeJS/Learning/07/db/base/13780/13598 b/nodeJS/Learning/07/db/base/13780/13598 new file mode 100755 index 0000000..d97be0a Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/13598 differ diff --git a/nodeJS/Learning/07/db/base/13780/13598_fsm b/nodeJS/Learning/07/db/base/13780/13598_fsm new file mode 100755 index 0000000..dc87bf4 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/13598_fsm differ diff --git a/nodeJS/Learning/07/db/base/13780/13598_vm b/nodeJS/Learning/07/db/base/13780/13598_vm new file mode 100755 index 0000000..d989630 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/13598_vm differ diff --git a/nodeJS/Learning/07/db/base/13780/13601 b/nodeJS/Learning/07/db/base/13780/13601 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/13780/13602 b/nodeJS/Learning/07/db/base/13780/13602 new file mode 100755 index 0000000..536e5fc Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/13602 differ diff --git a/nodeJS/Learning/07/db/base/13780/13603 b/nodeJS/Learning/07/db/base/13780/13603 new file mode 100755 index 0000000..3d8bfe7 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/13603 differ diff --git a/nodeJS/Learning/07/db/base/13780/13603_fsm b/nodeJS/Learning/07/db/base/13780/13603_fsm new file mode 100755 index 0000000..ce7c26e Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/13603_fsm differ diff --git a/nodeJS/Learning/07/db/base/13780/13603_vm b/nodeJS/Learning/07/db/base/13780/13603_vm new file mode 100755 index 0000000..b89629e Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/13603_vm differ diff --git a/nodeJS/Learning/07/db/base/13780/13606 b/nodeJS/Learning/07/db/base/13780/13606 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/13780/13607 b/nodeJS/Learning/07/db/base/13780/13607 new file mode 100755 index 0000000..33ac758 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/13607 differ diff --git a/nodeJS/Learning/07/db/base/13780/13608 b/nodeJS/Learning/07/db/base/13780/13608 new file mode 100755 index 0000000..9a3144a Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/13608 differ diff --git a/nodeJS/Learning/07/db/base/13780/13608_fsm b/nodeJS/Learning/07/db/base/13780/13608_fsm new file mode 100755 index 0000000..d388044 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/13608_fsm differ diff --git a/nodeJS/Learning/07/db/base/13780/13608_vm b/nodeJS/Learning/07/db/base/13780/13608_vm new file mode 100755 index 0000000..fd65276 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/13608_vm differ diff --git a/nodeJS/Learning/07/db/base/13780/13611 b/nodeJS/Learning/07/db/base/13780/13611 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/13780/13612 b/nodeJS/Learning/07/db/base/13780/13612 new file mode 100755 index 0000000..92c5591 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/13612 differ diff --git a/nodeJS/Learning/07/db/base/13780/13613 b/nodeJS/Learning/07/db/base/13780/13613 new file mode 100755 index 0000000..298ec81 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/13613 differ diff --git a/nodeJS/Learning/07/db/base/13780/13613_fsm b/nodeJS/Learning/07/db/base/13780/13613_fsm new file mode 100755 index 0000000..a836ddf Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/13613_fsm differ diff --git a/nodeJS/Learning/07/db/base/13780/13613_vm b/nodeJS/Learning/07/db/base/13780/13613_vm new file mode 100755 index 0000000..167e8ce Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/13613_vm differ diff --git a/nodeJS/Learning/07/db/base/13780/13616 b/nodeJS/Learning/07/db/base/13780/13616 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/13780/13617 b/nodeJS/Learning/07/db/base/13780/13617 new file mode 100755 index 0000000..76ffb74 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/13617 differ diff --git a/nodeJS/Learning/07/db/base/13780/1417 b/nodeJS/Learning/07/db/base/13780/1417 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/13780/1418 b/nodeJS/Learning/07/db/base/13780/1418 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/13780/174 b/nodeJS/Learning/07/db/base/13780/174 new file mode 100755 index 0000000..6312b18 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/174 differ diff --git a/nodeJS/Learning/07/db/base/13780/175 b/nodeJS/Learning/07/db/base/13780/175 new file mode 100755 index 0000000..0f504d0 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/175 differ diff --git a/nodeJS/Learning/07/db/base/13780/2187 b/nodeJS/Learning/07/db/base/13780/2187 new file mode 100755 index 0000000..8298625 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/2187 differ diff --git a/nodeJS/Learning/07/db/base/13780/2224 b/nodeJS/Learning/07/db/base/13780/2224 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/13780/2228 b/nodeJS/Learning/07/db/base/13780/2228 new file mode 100755 index 0000000..da192ed Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/2228 differ diff --git a/nodeJS/Learning/07/db/base/13780/2328 b/nodeJS/Learning/07/db/base/13780/2328 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/13780/2336 b/nodeJS/Learning/07/db/base/13780/2336 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/13780/2337 b/nodeJS/Learning/07/db/base/13780/2337 new file mode 100755 index 0000000..06345c3 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/2337 differ diff --git a/nodeJS/Learning/07/db/base/13780/2579 b/nodeJS/Learning/07/db/base/13780/2579 new file mode 100755 index 0000000..32b6c41 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/2579 differ diff --git a/nodeJS/Learning/07/db/base/13780/2600 b/nodeJS/Learning/07/db/base/13780/2600 new file mode 100755 index 0000000..827b5c2 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/2600 differ diff --git a/nodeJS/Learning/07/db/base/13780/2600_fsm b/nodeJS/Learning/07/db/base/13780/2600_fsm new file mode 100755 index 0000000..3f8f408 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/2600_fsm differ diff --git a/nodeJS/Learning/07/db/base/13780/2600_vm b/nodeJS/Learning/07/db/base/13780/2600_vm new file mode 100755 index 0000000..e272ed9 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/2600_vm differ diff --git a/nodeJS/Learning/07/db/base/13780/2601 b/nodeJS/Learning/07/db/base/13780/2601 new file mode 100755 index 0000000..d8001c8 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/2601 differ diff --git a/nodeJS/Learning/07/db/base/13780/2601_fsm b/nodeJS/Learning/07/db/base/13780/2601_fsm new file mode 100755 index 0000000..d388044 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/2601_fsm differ diff --git a/nodeJS/Learning/07/db/base/13780/2601_vm b/nodeJS/Learning/07/db/base/13780/2601_vm new file mode 100755 index 0000000..b1005c9 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/2601_vm differ diff --git a/nodeJS/Learning/07/db/base/13780/2602 b/nodeJS/Learning/07/db/base/13780/2602 new file mode 100755 index 0000000..4a27b0a Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/2602 differ diff --git a/nodeJS/Learning/07/db/base/13780/2602_fsm b/nodeJS/Learning/07/db/base/13780/2602_fsm new file mode 100755 index 0000000..23170d8 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/2602_fsm differ diff --git a/nodeJS/Learning/07/db/base/13780/2602_vm b/nodeJS/Learning/07/db/base/13780/2602_vm new file mode 100755 index 0000000..7857da5 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/2602_vm differ diff --git a/nodeJS/Learning/07/db/base/13780/2603 b/nodeJS/Learning/07/db/base/13780/2603 new file mode 100755 index 0000000..d511af5 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/2603 differ diff --git a/nodeJS/Learning/07/db/base/13780/2603_fsm b/nodeJS/Learning/07/db/base/13780/2603_fsm new file mode 100755 index 0000000..949bd18 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/2603_fsm differ diff --git a/nodeJS/Learning/07/db/base/13780/2603_vm b/nodeJS/Learning/07/db/base/13780/2603_vm new file mode 100755 index 0000000..5f6553e Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/2603_vm differ diff --git a/nodeJS/Learning/07/db/base/13780/2604 b/nodeJS/Learning/07/db/base/13780/2604 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/13780/2605 b/nodeJS/Learning/07/db/base/13780/2605 new file mode 100755 index 0000000..287bf96 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/2605 differ diff --git a/nodeJS/Learning/07/db/base/13780/2605_fsm b/nodeJS/Learning/07/db/base/13780/2605_fsm new file mode 100755 index 0000000..c7723da Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/2605_fsm differ diff --git a/nodeJS/Learning/07/db/base/13780/2605_vm b/nodeJS/Learning/07/db/base/13780/2605_vm new file mode 100755 index 0000000..c2506c5 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/2605_vm differ diff --git a/nodeJS/Learning/07/db/base/13780/2606 b/nodeJS/Learning/07/db/base/13780/2606 new file mode 100755 index 0000000..389cfe9 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/2606 differ diff --git a/nodeJS/Learning/07/db/base/13780/2606_fsm b/nodeJS/Learning/07/db/base/13780/2606_fsm new file mode 100755 index 0000000..37bfa7e Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/2606_fsm differ diff --git a/nodeJS/Learning/07/db/base/13780/2606_vm b/nodeJS/Learning/07/db/base/13780/2606_vm new file mode 100755 index 0000000..c9804a6 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/2606_vm differ diff --git a/nodeJS/Learning/07/db/base/13780/2607 b/nodeJS/Learning/07/db/base/13780/2607 new file mode 100755 index 0000000..bfad49a Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/2607 differ diff --git a/nodeJS/Learning/07/db/base/13780/2607_fsm b/nodeJS/Learning/07/db/base/13780/2607_fsm new file mode 100755 index 0000000..80ac8b1 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/2607_fsm differ diff --git a/nodeJS/Learning/07/db/base/13780/2607_vm b/nodeJS/Learning/07/db/base/13780/2607_vm new file mode 100755 index 0000000..e731d80 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/2607_vm differ diff --git a/nodeJS/Learning/07/db/base/13780/2608 b/nodeJS/Learning/07/db/base/13780/2608 new file mode 100755 index 0000000..59acd9e Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/2608 differ diff --git a/nodeJS/Learning/07/db/base/13780/2608_fsm b/nodeJS/Learning/07/db/base/13780/2608_fsm new file mode 100755 index 0000000..8e746db Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/2608_fsm differ diff --git a/nodeJS/Learning/07/db/base/13780/2608_vm b/nodeJS/Learning/07/db/base/13780/2608_vm new file mode 100755 index 0000000..b06913b Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/2608_vm differ diff --git a/nodeJS/Learning/07/db/base/13780/2609 b/nodeJS/Learning/07/db/base/13780/2609 new file mode 100755 index 0000000..c8544d2 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/2609 differ diff --git a/nodeJS/Learning/07/db/base/13780/2609_fsm b/nodeJS/Learning/07/db/base/13780/2609_fsm new file mode 100755 index 0000000..adbf4b7 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/2609_fsm differ diff --git a/nodeJS/Learning/07/db/base/13780/2609_vm b/nodeJS/Learning/07/db/base/13780/2609_vm new file mode 100755 index 0000000..57bfff5 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/2609_vm differ diff --git a/nodeJS/Learning/07/db/base/13780/2610 b/nodeJS/Learning/07/db/base/13780/2610 new file mode 100755 index 0000000..16bd967 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/2610 differ diff --git a/nodeJS/Learning/07/db/base/13780/2610_fsm b/nodeJS/Learning/07/db/base/13780/2610_fsm new file mode 100755 index 0000000..39a3e89 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/2610_fsm differ diff --git a/nodeJS/Learning/07/db/base/13780/2610_vm b/nodeJS/Learning/07/db/base/13780/2610_vm new file mode 100755 index 0000000..d00c618 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/2610_vm differ diff --git a/nodeJS/Learning/07/db/base/13780/2611 b/nodeJS/Learning/07/db/base/13780/2611 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/13780/2612 b/nodeJS/Learning/07/db/base/13780/2612 new file mode 100755 index 0000000..7017eaf Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/2612 differ diff --git a/nodeJS/Learning/07/db/base/13780/2612_fsm b/nodeJS/Learning/07/db/base/13780/2612_fsm new file mode 100755 index 0000000..877976a Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/2612_fsm differ diff --git a/nodeJS/Learning/07/db/base/13780/2612_vm b/nodeJS/Learning/07/db/base/13780/2612_vm new file mode 100755 index 0000000..a326c5a Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/2612_vm differ diff --git a/nodeJS/Learning/07/db/base/13780/2613 b/nodeJS/Learning/07/db/base/13780/2613 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/13780/2615 b/nodeJS/Learning/07/db/base/13780/2615 new file mode 100755 index 0000000..9df3dde Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/2615 differ diff --git a/nodeJS/Learning/07/db/base/13780/2615_fsm b/nodeJS/Learning/07/db/base/13780/2615_fsm new file mode 100755 index 0000000..d041693 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/2615_fsm differ diff --git a/nodeJS/Learning/07/db/base/13780/2615_vm b/nodeJS/Learning/07/db/base/13780/2615_vm new file mode 100755 index 0000000..011172d Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/2615_vm differ diff --git a/nodeJS/Learning/07/db/base/13780/2616 b/nodeJS/Learning/07/db/base/13780/2616 new file mode 100755 index 0000000..0d60d79 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/2616 differ diff --git a/nodeJS/Learning/07/db/base/13780/2616_fsm b/nodeJS/Learning/07/db/base/13780/2616_fsm new file mode 100755 index 0000000..cb924c9 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/2616_fsm differ diff --git a/nodeJS/Learning/07/db/base/13780/2616_vm b/nodeJS/Learning/07/db/base/13780/2616_vm new file mode 100755 index 0000000..db9a53f Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/2616_vm differ diff --git a/nodeJS/Learning/07/db/base/13780/2617 b/nodeJS/Learning/07/db/base/13780/2617 new file mode 100755 index 0000000..8696551 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/2617 differ diff --git a/nodeJS/Learning/07/db/base/13780/2617_fsm b/nodeJS/Learning/07/db/base/13780/2617_fsm new file mode 100755 index 0000000..84060f4 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/2617_fsm differ diff --git a/nodeJS/Learning/07/db/base/13780/2617_vm b/nodeJS/Learning/07/db/base/13780/2617_vm new file mode 100755 index 0000000..e50deaf Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/2617_vm differ diff --git a/nodeJS/Learning/07/db/base/13780/2618 b/nodeJS/Learning/07/db/base/13780/2618 new file mode 100755 index 0000000..731e302 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/2618 differ diff --git a/nodeJS/Learning/07/db/base/13780/2618_fsm b/nodeJS/Learning/07/db/base/13780/2618_fsm new file mode 100755 index 0000000..b92d2da Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/2618_fsm differ diff --git a/nodeJS/Learning/07/db/base/13780/2618_vm b/nodeJS/Learning/07/db/base/13780/2618_vm new file mode 100755 index 0000000..31bfb22 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/2618_vm differ diff --git a/nodeJS/Learning/07/db/base/13780/2619 b/nodeJS/Learning/07/db/base/13780/2619 new file mode 100755 index 0000000..60d0f8a Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/2619 differ diff --git a/nodeJS/Learning/07/db/base/13780/2619_fsm b/nodeJS/Learning/07/db/base/13780/2619_fsm new file mode 100755 index 0000000..ee863db Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/2619_fsm differ diff --git a/nodeJS/Learning/07/db/base/13780/2619_vm b/nodeJS/Learning/07/db/base/13780/2619_vm new file mode 100755 index 0000000..07d9cfc Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/2619_vm differ diff --git a/nodeJS/Learning/07/db/base/13780/2620 b/nodeJS/Learning/07/db/base/13780/2620 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/13780/2650 b/nodeJS/Learning/07/db/base/13780/2650 new file mode 100755 index 0000000..ebcc0c3 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/2650 differ diff --git a/nodeJS/Learning/07/db/base/13780/2651 b/nodeJS/Learning/07/db/base/13780/2651 new file mode 100755 index 0000000..8841a67 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/2651 differ diff --git a/nodeJS/Learning/07/db/base/13780/2652 b/nodeJS/Learning/07/db/base/13780/2652 new file mode 100755 index 0000000..11ee01d Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/2652 differ diff --git a/nodeJS/Learning/07/db/base/13780/2653 b/nodeJS/Learning/07/db/base/13780/2653 new file mode 100755 index 0000000..2b6951c Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/2653 differ diff --git a/nodeJS/Learning/07/db/base/13780/2654 b/nodeJS/Learning/07/db/base/13780/2654 new file mode 100755 index 0000000..68403a4 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/2654 differ diff --git a/nodeJS/Learning/07/db/base/13780/2655 b/nodeJS/Learning/07/db/base/13780/2655 new file mode 100755 index 0000000..8b9aa94 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/2655 differ diff --git a/nodeJS/Learning/07/db/base/13780/2656 b/nodeJS/Learning/07/db/base/13780/2656 new file mode 100755 index 0000000..ff35981 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/2656 differ diff --git a/nodeJS/Learning/07/db/base/13780/2657 b/nodeJS/Learning/07/db/base/13780/2657 new file mode 100755 index 0000000..1270286 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/2657 differ diff --git a/nodeJS/Learning/07/db/base/13780/2658 b/nodeJS/Learning/07/db/base/13780/2658 new file mode 100755 index 0000000..dcf54cf Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/2658 differ diff --git a/nodeJS/Learning/07/db/base/13780/2659 b/nodeJS/Learning/07/db/base/13780/2659 new file mode 100755 index 0000000..ae25dfd Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/2659 differ diff --git a/nodeJS/Learning/07/db/base/13780/2660 b/nodeJS/Learning/07/db/base/13780/2660 new file mode 100755 index 0000000..8862e97 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/2660 differ diff --git a/nodeJS/Learning/07/db/base/13780/2661 b/nodeJS/Learning/07/db/base/13780/2661 new file mode 100755 index 0000000..8bb39cc Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/2661 differ diff --git a/nodeJS/Learning/07/db/base/13780/2662 b/nodeJS/Learning/07/db/base/13780/2662 new file mode 100755 index 0000000..8d47b5f Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/2662 differ diff --git a/nodeJS/Learning/07/db/base/13780/2663 b/nodeJS/Learning/07/db/base/13780/2663 new file mode 100755 index 0000000..4072df3 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/2663 differ diff --git a/nodeJS/Learning/07/db/base/13780/2664 b/nodeJS/Learning/07/db/base/13780/2664 new file mode 100755 index 0000000..2ee6e0c Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/2664 differ diff --git a/nodeJS/Learning/07/db/base/13780/2665 b/nodeJS/Learning/07/db/base/13780/2665 new file mode 100755 index 0000000..93b9f9d Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/2665 differ diff --git a/nodeJS/Learning/07/db/base/13780/2666 b/nodeJS/Learning/07/db/base/13780/2666 new file mode 100755 index 0000000..7fcb48b Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/2666 differ diff --git a/nodeJS/Learning/07/db/base/13780/2667 b/nodeJS/Learning/07/db/base/13780/2667 new file mode 100755 index 0000000..5e3c572 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/2667 differ diff --git a/nodeJS/Learning/07/db/base/13780/2668 b/nodeJS/Learning/07/db/base/13780/2668 new file mode 100755 index 0000000..17439a2 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/2668 differ diff --git a/nodeJS/Learning/07/db/base/13780/2669 b/nodeJS/Learning/07/db/base/13780/2669 new file mode 100755 index 0000000..d8d8569 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/2669 differ diff --git a/nodeJS/Learning/07/db/base/13780/2670 b/nodeJS/Learning/07/db/base/13780/2670 new file mode 100755 index 0000000..97e2033 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/2670 differ diff --git a/nodeJS/Learning/07/db/base/13780/2673 b/nodeJS/Learning/07/db/base/13780/2673 new file mode 100755 index 0000000..df1d528 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/2673 differ diff --git a/nodeJS/Learning/07/db/base/13780/2673_fsm b/nodeJS/Learning/07/db/base/13780/2673_fsm new file mode 100755 index 0000000..2c8d238 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/2673_fsm differ diff --git a/nodeJS/Learning/07/db/base/13780/2674 b/nodeJS/Learning/07/db/base/13780/2674 new file mode 100755 index 0000000..c3cd1b0 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/2674 differ diff --git a/nodeJS/Learning/07/db/base/13780/2674_fsm b/nodeJS/Learning/07/db/base/13780/2674_fsm new file mode 100755 index 0000000..ed74869 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/2674_fsm differ diff --git a/nodeJS/Learning/07/db/base/13780/2675 b/nodeJS/Learning/07/db/base/13780/2675 new file mode 100755 index 0000000..dd562dc Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/2675 differ diff --git a/nodeJS/Learning/07/db/base/13780/2678 b/nodeJS/Learning/07/db/base/13780/2678 new file mode 100755 index 0000000..7bb29cc Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/2678 differ diff --git a/nodeJS/Learning/07/db/base/13780/2679 b/nodeJS/Learning/07/db/base/13780/2679 new file mode 100755 index 0000000..7f7848c Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/2679 differ diff --git a/nodeJS/Learning/07/db/base/13780/2680 b/nodeJS/Learning/07/db/base/13780/2680 new file mode 100755 index 0000000..5fd8851 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/2680 differ diff --git a/nodeJS/Learning/07/db/base/13780/2681 b/nodeJS/Learning/07/db/base/13780/2681 new file mode 100755 index 0000000..b27e644 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/2681 differ diff --git a/nodeJS/Learning/07/db/base/13780/2682 b/nodeJS/Learning/07/db/base/13780/2682 new file mode 100755 index 0000000..110d359 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/2682 differ diff --git a/nodeJS/Learning/07/db/base/13780/2683 b/nodeJS/Learning/07/db/base/13780/2683 new file mode 100755 index 0000000..8187c58 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/2683 differ diff --git a/nodeJS/Learning/07/db/base/13780/2684 b/nodeJS/Learning/07/db/base/13780/2684 new file mode 100755 index 0000000..accf1f6 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/2684 differ diff --git a/nodeJS/Learning/07/db/base/13780/2685 b/nodeJS/Learning/07/db/base/13780/2685 new file mode 100755 index 0000000..a86f5ab Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/2685 differ diff --git a/nodeJS/Learning/07/db/base/13780/2686 b/nodeJS/Learning/07/db/base/13780/2686 new file mode 100755 index 0000000..37beb74 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/2686 differ diff --git a/nodeJS/Learning/07/db/base/13780/2687 b/nodeJS/Learning/07/db/base/13780/2687 new file mode 100755 index 0000000..20a2d34 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/2687 differ diff --git a/nodeJS/Learning/07/db/base/13780/2688 b/nodeJS/Learning/07/db/base/13780/2688 new file mode 100755 index 0000000..4cd4907 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/2688 differ diff --git a/nodeJS/Learning/07/db/base/13780/2689 b/nodeJS/Learning/07/db/base/13780/2689 new file mode 100755 index 0000000..4b12dea Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/2689 differ diff --git a/nodeJS/Learning/07/db/base/13780/2690 b/nodeJS/Learning/07/db/base/13780/2690 new file mode 100755 index 0000000..216bee6 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/2690 differ diff --git a/nodeJS/Learning/07/db/base/13780/2691 b/nodeJS/Learning/07/db/base/13780/2691 new file mode 100755 index 0000000..e08708d Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/2691 differ diff --git a/nodeJS/Learning/07/db/base/13780/2692 b/nodeJS/Learning/07/db/base/13780/2692 new file mode 100755 index 0000000..7137a2f Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/2692 differ diff --git a/nodeJS/Learning/07/db/base/13780/2693 b/nodeJS/Learning/07/db/base/13780/2693 new file mode 100755 index 0000000..1feb720 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/2693 differ diff --git a/nodeJS/Learning/07/db/base/13780/2696 b/nodeJS/Learning/07/db/base/13780/2696 new file mode 100755 index 0000000..4e8bf7a Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/2696 differ diff --git a/nodeJS/Learning/07/db/base/13780/2699 b/nodeJS/Learning/07/db/base/13780/2699 new file mode 100755 index 0000000..14488bf Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/2699 differ diff --git a/nodeJS/Learning/07/db/base/13780/2701 b/nodeJS/Learning/07/db/base/13780/2701 new file mode 100755 index 0000000..8664200 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/2701 differ diff --git a/nodeJS/Learning/07/db/base/13780/2702 b/nodeJS/Learning/07/db/base/13780/2702 new file mode 100755 index 0000000..750b4b6 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/2702 differ diff --git a/nodeJS/Learning/07/db/base/13780/2703 b/nodeJS/Learning/07/db/base/13780/2703 new file mode 100755 index 0000000..0c6efc6 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/2703 differ diff --git a/nodeJS/Learning/07/db/base/13780/2704 b/nodeJS/Learning/07/db/base/13780/2704 new file mode 100755 index 0000000..bb718a2 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/2704 differ diff --git a/nodeJS/Learning/07/db/base/13780/2753 b/nodeJS/Learning/07/db/base/13780/2753 new file mode 100755 index 0000000..3c16dff Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/2753 differ diff --git a/nodeJS/Learning/07/db/base/13780/2753_fsm b/nodeJS/Learning/07/db/base/13780/2753_fsm new file mode 100755 index 0000000..642bce3 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/2753_fsm differ diff --git a/nodeJS/Learning/07/db/base/13780/2753_vm b/nodeJS/Learning/07/db/base/13780/2753_vm new file mode 100755 index 0000000..e8297c0 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/2753_vm differ diff --git a/nodeJS/Learning/07/db/base/13780/2754 b/nodeJS/Learning/07/db/base/13780/2754 new file mode 100755 index 0000000..0c2ef54 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/2754 differ diff --git a/nodeJS/Learning/07/db/base/13780/2755 b/nodeJS/Learning/07/db/base/13780/2755 new file mode 100755 index 0000000..5e7143b Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/2755 differ diff --git a/nodeJS/Learning/07/db/base/13780/2756 b/nodeJS/Learning/07/db/base/13780/2756 new file mode 100755 index 0000000..0758e05 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/2756 differ diff --git a/nodeJS/Learning/07/db/base/13780/2757 b/nodeJS/Learning/07/db/base/13780/2757 new file mode 100755 index 0000000..80dd62a Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/2757 differ diff --git a/nodeJS/Learning/07/db/base/13780/2830 b/nodeJS/Learning/07/db/base/13780/2830 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/13780/2831 b/nodeJS/Learning/07/db/base/13780/2831 new file mode 100755 index 0000000..61046f3 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/2831 differ diff --git a/nodeJS/Learning/07/db/base/13780/2832 b/nodeJS/Learning/07/db/base/13780/2832 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/13780/2833 b/nodeJS/Learning/07/db/base/13780/2833 new file mode 100755 index 0000000..fb3c12d Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/2833 differ diff --git a/nodeJS/Learning/07/db/base/13780/2834 b/nodeJS/Learning/07/db/base/13780/2834 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/13780/2835 b/nodeJS/Learning/07/db/base/13780/2835 new file mode 100755 index 0000000..3c05130 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/2835 differ diff --git a/nodeJS/Learning/07/db/base/13780/2836 b/nodeJS/Learning/07/db/base/13780/2836 new file mode 100755 index 0000000..71b0236 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/2836 differ diff --git a/nodeJS/Learning/07/db/base/13780/2836_fsm b/nodeJS/Learning/07/db/base/13780/2836_fsm new file mode 100755 index 0000000..4066e1e Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/2836_fsm differ diff --git a/nodeJS/Learning/07/db/base/13780/2836_vm b/nodeJS/Learning/07/db/base/13780/2836_vm new file mode 100755 index 0000000..b7f6a9f Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/2836_vm differ diff --git a/nodeJS/Learning/07/db/base/13780/2837 b/nodeJS/Learning/07/db/base/13780/2837 new file mode 100755 index 0000000..be6efc3 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/2837 differ diff --git a/nodeJS/Learning/07/db/base/13780/2838 b/nodeJS/Learning/07/db/base/13780/2838 new file mode 100755 index 0000000..9d46e70 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/2838 differ diff --git a/nodeJS/Learning/07/db/base/13780/2838_fsm b/nodeJS/Learning/07/db/base/13780/2838_fsm new file mode 100755 index 0000000..4cc1630 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/2838_fsm differ diff --git a/nodeJS/Learning/07/db/base/13780/2838_vm b/nodeJS/Learning/07/db/base/13780/2838_vm new file mode 100755 index 0000000..46e0e3d Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/2838_vm differ diff --git a/nodeJS/Learning/07/db/base/13780/2839 b/nodeJS/Learning/07/db/base/13780/2839 new file mode 100755 index 0000000..bd20a46 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/2839 differ diff --git a/nodeJS/Learning/07/db/base/13780/2840 b/nodeJS/Learning/07/db/base/13780/2840 new file mode 100755 index 0000000..7ca0ff0 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/2840 differ diff --git a/nodeJS/Learning/07/db/base/13780/2840_fsm b/nodeJS/Learning/07/db/base/13780/2840_fsm new file mode 100755 index 0000000..49de392 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/2840_fsm differ diff --git a/nodeJS/Learning/07/db/base/13780/2840_vm b/nodeJS/Learning/07/db/base/13780/2840_vm new file mode 100755 index 0000000..bbeeea5 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/2840_vm differ diff --git a/nodeJS/Learning/07/db/base/13780/2841 b/nodeJS/Learning/07/db/base/13780/2841 new file mode 100755 index 0000000..4d1e7da Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/2841 differ diff --git a/nodeJS/Learning/07/db/base/13780/2995 b/nodeJS/Learning/07/db/base/13780/2995 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/13780/2996 b/nodeJS/Learning/07/db/base/13780/2996 new file mode 100755 index 0000000..94563e7 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/2996 differ diff --git a/nodeJS/Learning/07/db/base/13780/3079 b/nodeJS/Learning/07/db/base/13780/3079 new file mode 100755 index 0000000..c14c1a8 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/3079 differ diff --git a/nodeJS/Learning/07/db/base/13780/3079_fsm b/nodeJS/Learning/07/db/base/13780/3079_fsm new file mode 100755 index 0000000..7732d22 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/3079_fsm differ diff --git a/nodeJS/Learning/07/db/base/13780/3079_vm b/nodeJS/Learning/07/db/base/13780/3079_vm new file mode 100755 index 0000000..ef81260 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/3079_vm differ diff --git a/nodeJS/Learning/07/db/base/13780/3080 b/nodeJS/Learning/07/db/base/13780/3080 new file mode 100755 index 0000000..560b8bf Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/3080 differ diff --git a/nodeJS/Learning/07/db/base/13780/3081 b/nodeJS/Learning/07/db/base/13780/3081 new file mode 100755 index 0000000..1de691e Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/3081 differ diff --git a/nodeJS/Learning/07/db/base/13780/3085 b/nodeJS/Learning/07/db/base/13780/3085 new file mode 100755 index 0000000..27571b6 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/3085 differ diff --git a/nodeJS/Learning/07/db/base/13780/3118 b/nodeJS/Learning/07/db/base/13780/3118 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/13780/3119 b/nodeJS/Learning/07/db/base/13780/3119 new file mode 100755 index 0000000..c0d08b7 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/3119 differ diff --git a/nodeJS/Learning/07/db/base/13780/3164 b/nodeJS/Learning/07/db/base/13780/3164 new file mode 100755 index 0000000..3faa559 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/3164 differ diff --git a/nodeJS/Learning/07/db/base/13780/3256 b/nodeJS/Learning/07/db/base/13780/3256 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/13780/3257 b/nodeJS/Learning/07/db/base/13780/3257 new file mode 100755 index 0000000..85937d2 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/3257 differ diff --git a/nodeJS/Learning/07/db/base/13780/3258 b/nodeJS/Learning/07/db/base/13780/3258 new file mode 100755 index 0000000..5f252a3 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/3258 differ diff --git a/nodeJS/Learning/07/db/base/13780/3350 b/nodeJS/Learning/07/db/base/13780/3350 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/13780/3351 b/nodeJS/Learning/07/db/base/13780/3351 new file mode 100755 index 0000000..0aecbb3 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/3351 differ diff --git a/nodeJS/Learning/07/db/base/13780/3379 b/nodeJS/Learning/07/db/base/13780/3379 new file mode 100755 index 0000000..9cc56f1 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/3379 differ diff --git a/nodeJS/Learning/07/db/base/13780/3380 b/nodeJS/Learning/07/db/base/13780/3380 new file mode 100755 index 0000000..896db3e Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/3380 differ diff --git a/nodeJS/Learning/07/db/base/13780/3381 b/nodeJS/Learning/07/db/base/13780/3381 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/13780/3394 b/nodeJS/Learning/07/db/base/13780/3394 new file mode 100755 index 0000000..0d1ce52 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/3394 differ diff --git a/nodeJS/Learning/07/db/base/13780/3394_fsm b/nodeJS/Learning/07/db/base/13780/3394_fsm new file mode 100755 index 0000000..f8d6070 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/3394_fsm differ diff --git a/nodeJS/Learning/07/db/base/13780/3394_vm b/nodeJS/Learning/07/db/base/13780/3394_vm new file mode 100755 index 0000000..5ad9145 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/3394_vm differ diff --git a/nodeJS/Learning/07/db/base/13780/3395 b/nodeJS/Learning/07/db/base/13780/3395 new file mode 100755 index 0000000..154db37 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/3395 differ diff --git a/nodeJS/Learning/07/db/base/13780/3429 b/nodeJS/Learning/07/db/base/13780/3429 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/13780/3430 b/nodeJS/Learning/07/db/base/13780/3430 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/13780/3431 b/nodeJS/Learning/07/db/base/13780/3431 new file mode 100755 index 0000000..8a6528d Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/3431 differ diff --git a/nodeJS/Learning/07/db/base/13780/3433 b/nodeJS/Learning/07/db/base/13780/3433 new file mode 100755 index 0000000..0c4736b Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/3433 differ diff --git a/nodeJS/Learning/07/db/base/13780/3439 b/nodeJS/Learning/07/db/base/13780/3439 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/13780/3440 b/nodeJS/Learning/07/db/base/13780/3440 new file mode 100755 index 0000000..1174715 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/3440 differ diff --git a/nodeJS/Learning/07/db/base/13780/3455 b/nodeJS/Learning/07/db/base/13780/3455 new file mode 100755 index 0000000..542fa4e Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/3455 differ diff --git a/nodeJS/Learning/07/db/base/13780/3456 b/nodeJS/Learning/07/db/base/13780/3456 new file mode 100755 index 0000000..7f3559d Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/3456 differ diff --git a/nodeJS/Learning/07/db/base/13780/3456_fsm b/nodeJS/Learning/07/db/base/13780/3456_fsm new file mode 100755 index 0000000..fc8f8b8 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/3456_fsm differ diff --git a/nodeJS/Learning/07/db/base/13780/3456_vm b/nodeJS/Learning/07/db/base/13780/3456_vm new file mode 100755 index 0000000..016a644 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/3456_vm differ diff --git a/nodeJS/Learning/07/db/base/13780/3466 b/nodeJS/Learning/07/db/base/13780/3466 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/13780/3467 b/nodeJS/Learning/07/db/base/13780/3467 new file mode 100755 index 0000000..020deba Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/3467 differ diff --git a/nodeJS/Learning/07/db/base/13780/3468 b/nodeJS/Learning/07/db/base/13780/3468 new file mode 100755 index 0000000..a37352a Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/3468 differ diff --git a/nodeJS/Learning/07/db/base/13780/3501 b/nodeJS/Learning/07/db/base/13780/3501 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/13780/3502 b/nodeJS/Learning/07/db/base/13780/3502 new file mode 100755 index 0000000..94e5e8e Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/3502 differ diff --git a/nodeJS/Learning/07/db/base/13780/3503 b/nodeJS/Learning/07/db/base/13780/3503 new file mode 100755 index 0000000..df8e743 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/3503 differ diff --git a/nodeJS/Learning/07/db/base/13780/3534 b/nodeJS/Learning/07/db/base/13780/3534 new file mode 100755 index 0000000..98d4854 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/3534 differ diff --git a/nodeJS/Learning/07/db/base/13780/3541 b/nodeJS/Learning/07/db/base/13780/3541 new file mode 100755 index 0000000..40869ad Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/3541 differ diff --git a/nodeJS/Learning/07/db/base/13780/3541_fsm b/nodeJS/Learning/07/db/base/13780/3541_fsm new file mode 100755 index 0000000..a3a2de4 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/3541_fsm differ diff --git a/nodeJS/Learning/07/db/base/13780/3541_vm b/nodeJS/Learning/07/db/base/13780/3541_vm new file mode 100755 index 0000000..794ff8a Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/3541_vm differ diff --git a/nodeJS/Learning/07/db/base/13780/3542 b/nodeJS/Learning/07/db/base/13780/3542 new file mode 100755 index 0000000..ee21b6a Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/3542 differ diff --git a/nodeJS/Learning/07/db/base/13780/3574 b/nodeJS/Learning/07/db/base/13780/3574 new file mode 100755 index 0000000..418bbca Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/3574 differ diff --git a/nodeJS/Learning/07/db/base/13780/3575 b/nodeJS/Learning/07/db/base/13780/3575 new file mode 100755 index 0000000..6addf86 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/3575 differ diff --git a/nodeJS/Learning/07/db/base/13780/3576 b/nodeJS/Learning/07/db/base/13780/3576 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/13780/3596 b/nodeJS/Learning/07/db/base/13780/3596 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/13780/3597 b/nodeJS/Learning/07/db/base/13780/3597 new file mode 100755 index 0000000..71d2820 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/3597 differ diff --git a/nodeJS/Learning/07/db/base/13780/3598 b/nodeJS/Learning/07/db/base/13780/3598 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/13780/3599 b/nodeJS/Learning/07/db/base/13780/3599 new file mode 100755 index 0000000..20c4969 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/3599 differ diff --git a/nodeJS/Learning/07/db/base/13780/3600 b/nodeJS/Learning/07/db/base/13780/3600 new file mode 100755 index 0000000..f8fd22f Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/3600 differ diff --git a/nodeJS/Learning/07/db/base/13780/3600_fsm b/nodeJS/Learning/07/db/base/13780/3600_fsm new file mode 100755 index 0000000..cebec19 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/3600_fsm differ diff --git a/nodeJS/Learning/07/db/base/13780/3600_vm b/nodeJS/Learning/07/db/base/13780/3600_vm new file mode 100755 index 0000000..e552bd7 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/3600_vm differ diff --git a/nodeJS/Learning/07/db/base/13780/3601 b/nodeJS/Learning/07/db/base/13780/3601 new file mode 100755 index 0000000..04c846e Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/3601 differ diff --git a/nodeJS/Learning/07/db/base/13780/3601_fsm b/nodeJS/Learning/07/db/base/13780/3601_fsm new file mode 100755 index 0000000..7732d22 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/3601_fsm differ diff --git a/nodeJS/Learning/07/db/base/13780/3601_vm b/nodeJS/Learning/07/db/base/13780/3601_vm new file mode 100755 index 0000000..107bd5e Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/3601_vm differ diff --git a/nodeJS/Learning/07/db/base/13780/3602 b/nodeJS/Learning/07/db/base/13780/3602 new file mode 100755 index 0000000..3312c40 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/3602 differ diff --git a/nodeJS/Learning/07/db/base/13780/3602_fsm b/nodeJS/Learning/07/db/base/13780/3602_fsm new file mode 100755 index 0000000..d7897de Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/3602_fsm differ diff --git a/nodeJS/Learning/07/db/base/13780/3602_vm b/nodeJS/Learning/07/db/base/13780/3602_vm new file mode 100755 index 0000000..8ccfa65 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/3602_vm differ diff --git a/nodeJS/Learning/07/db/base/13780/3603 b/nodeJS/Learning/07/db/base/13780/3603 new file mode 100755 index 0000000..0ab1d5d Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/3603 differ diff --git a/nodeJS/Learning/07/db/base/13780/3603_fsm b/nodeJS/Learning/07/db/base/13780/3603_fsm new file mode 100755 index 0000000..c28dd4f Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/3603_fsm differ diff --git a/nodeJS/Learning/07/db/base/13780/3603_vm b/nodeJS/Learning/07/db/base/13780/3603_vm new file mode 100755 index 0000000..0520389 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/3603_vm differ diff --git a/nodeJS/Learning/07/db/base/13780/3604 b/nodeJS/Learning/07/db/base/13780/3604 new file mode 100755 index 0000000..e17cc51 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/3604 differ diff --git a/nodeJS/Learning/07/db/base/13780/3605 b/nodeJS/Learning/07/db/base/13780/3605 new file mode 100755 index 0000000..351139b Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/3605 differ diff --git a/nodeJS/Learning/07/db/base/13780/3606 b/nodeJS/Learning/07/db/base/13780/3606 new file mode 100755 index 0000000..de60e2f Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/3606 differ diff --git a/nodeJS/Learning/07/db/base/13780/3607 b/nodeJS/Learning/07/db/base/13780/3607 new file mode 100755 index 0000000..ff53735 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/3607 differ diff --git a/nodeJS/Learning/07/db/base/13780/3608 b/nodeJS/Learning/07/db/base/13780/3608 new file mode 100755 index 0000000..7cc12cf Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/3608 differ diff --git a/nodeJS/Learning/07/db/base/13780/3609 b/nodeJS/Learning/07/db/base/13780/3609 new file mode 100755 index 0000000..f97c4c3 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/3609 differ diff --git a/nodeJS/Learning/07/db/base/13780/3712 b/nodeJS/Learning/07/db/base/13780/3712 new file mode 100755 index 0000000..6b682ba Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/3712 differ diff --git a/nodeJS/Learning/07/db/base/13780/3764 b/nodeJS/Learning/07/db/base/13780/3764 new file mode 100755 index 0000000..560a763 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/3764 differ diff --git a/nodeJS/Learning/07/db/base/13780/3764_fsm b/nodeJS/Learning/07/db/base/13780/3764_fsm new file mode 100755 index 0000000..f64db4d Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/3764_fsm differ diff --git a/nodeJS/Learning/07/db/base/13780/3764_vm b/nodeJS/Learning/07/db/base/13780/3764_vm new file mode 100755 index 0000000..27a13ad Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/3764_vm differ diff --git a/nodeJS/Learning/07/db/base/13780/3766 b/nodeJS/Learning/07/db/base/13780/3766 new file mode 100755 index 0000000..5993ce9 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/3766 differ diff --git a/nodeJS/Learning/07/db/base/13780/3767 b/nodeJS/Learning/07/db/base/13780/3767 new file mode 100755 index 0000000..fa65de6 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/3767 differ diff --git a/nodeJS/Learning/07/db/base/13780/3997 b/nodeJS/Learning/07/db/base/13780/3997 new file mode 100755 index 0000000..3832f55 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/3997 differ diff --git a/nodeJS/Learning/07/db/base/13780/4143 b/nodeJS/Learning/07/db/base/13780/4143 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/13780/4144 b/nodeJS/Learning/07/db/base/13780/4144 new file mode 100755 index 0000000..178af33 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/4144 differ diff --git a/nodeJS/Learning/07/db/base/13780/4145 b/nodeJS/Learning/07/db/base/13780/4145 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/13780/4146 b/nodeJS/Learning/07/db/base/13780/4146 new file mode 100755 index 0000000..bb603a6 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/4146 differ diff --git a/nodeJS/Learning/07/db/base/13780/4147 b/nodeJS/Learning/07/db/base/13780/4147 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/13780/4148 b/nodeJS/Learning/07/db/base/13780/4148 new file mode 100755 index 0000000..87c330b Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/4148 differ diff --git a/nodeJS/Learning/07/db/base/13780/4149 b/nodeJS/Learning/07/db/base/13780/4149 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/13780/4150 b/nodeJS/Learning/07/db/base/13780/4150 new file mode 100755 index 0000000..2085995 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/4150 differ diff --git a/nodeJS/Learning/07/db/base/13780/4151 b/nodeJS/Learning/07/db/base/13780/4151 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/13780/4152 b/nodeJS/Learning/07/db/base/13780/4152 new file mode 100755 index 0000000..23407ab Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/4152 differ diff --git a/nodeJS/Learning/07/db/base/13780/4153 b/nodeJS/Learning/07/db/base/13780/4153 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/13780/4154 b/nodeJS/Learning/07/db/base/13780/4154 new file mode 100755 index 0000000..edaed60 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/4154 differ diff --git a/nodeJS/Learning/07/db/base/13780/4155 b/nodeJS/Learning/07/db/base/13780/4155 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/13780/4156 b/nodeJS/Learning/07/db/base/13780/4156 new file mode 100755 index 0000000..f0c50e4 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/4156 differ diff --git a/nodeJS/Learning/07/db/base/13780/4157 b/nodeJS/Learning/07/db/base/13780/4157 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/13780/4158 b/nodeJS/Learning/07/db/base/13780/4158 new file mode 100755 index 0000000..d45296c Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/4158 differ diff --git a/nodeJS/Learning/07/db/base/13780/4159 b/nodeJS/Learning/07/db/base/13780/4159 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/13780/4160 b/nodeJS/Learning/07/db/base/13780/4160 new file mode 100755 index 0000000..e0fd4e1 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/4160 differ diff --git a/nodeJS/Learning/07/db/base/13780/4163 b/nodeJS/Learning/07/db/base/13780/4163 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/13780/4164 b/nodeJS/Learning/07/db/base/13780/4164 new file mode 100755 index 0000000..9a3435b Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/4164 differ diff --git a/nodeJS/Learning/07/db/base/13780/4165 b/nodeJS/Learning/07/db/base/13780/4165 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/13780/4166 b/nodeJS/Learning/07/db/base/13780/4166 new file mode 100755 index 0000000..be076db Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/4166 differ diff --git a/nodeJS/Learning/07/db/base/13780/4167 b/nodeJS/Learning/07/db/base/13780/4167 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/13780/4168 b/nodeJS/Learning/07/db/base/13780/4168 new file mode 100755 index 0000000..976615c Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/4168 differ diff --git a/nodeJS/Learning/07/db/base/13780/4169 b/nodeJS/Learning/07/db/base/13780/4169 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/13780/4170 b/nodeJS/Learning/07/db/base/13780/4170 new file mode 100755 index 0000000..f33abe0 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/4170 differ diff --git a/nodeJS/Learning/07/db/base/13780/4171 b/nodeJS/Learning/07/db/base/13780/4171 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/13780/4172 b/nodeJS/Learning/07/db/base/13780/4172 new file mode 100755 index 0000000..bfa5606 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/4172 differ diff --git a/nodeJS/Learning/07/db/base/13780/4173 b/nodeJS/Learning/07/db/base/13780/4173 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/13780/4174 b/nodeJS/Learning/07/db/base/13780/4174 new file mode 100755 index 0000000..8a80490 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/4174 differ diff --git a/nodeJS/Learning/07/db/base/13780/5002 b/nodeJS/Learning/07/db/base/13780/5002 new file mode 100755 index 0000000..32af7a1 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/5002 differ diff --git a/nodeJS/Learning/07/db/base/13780/548 b/nodeJS/Learning/07/db/base/13780/548 new file mode 100755 index 0000000..9f21947 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/548 differ diff --git a/nodeJS/Learning/07/db/base/13780/549 b/nodeJS/Learning/07/db/base/13780/549 new file mode 100755 index 0000000..68efb3f Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/549 differ diff --git a/nodeJS/Learning/07/db/base/13780/6102 b/nodeJS/Learning/07/db/base/13780/6102 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/13780/6104 b/nodeJS/Learning/07/db/base/13780/6104 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/13780/6106 b/nodeJS/Learning/07/db/base/13780/6106 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/13780/6110 b/nodeJS/Learning/07/db/base/13780/6110 new file mode 100755 index 0000000..536b80d Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/6110 differ diff --git a/nodeJS/Learning/07/db/base/13780/6111 b/nodeJS/Learning/07/db/base/13780/6111 new file mode 100755 index 0000000..3d22c94 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/6111 differ diff --git a/nodeJS/Learning/07/db/base/13780/6112 b/nodeJS/Learning/07/db/base/13780/6112 new file mode 100755 index 0000000..9e47d5c Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/6112 differ diff --git a/nodeJS/Learning/07/db/base/13780/6113 b/nodeJS/Learning/07/db/base/13780/6113 new file mode 100755 index 0000000..4e57f5b Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/6113 differ diff --git a/nodeJS/Learning/07/db/base/13780/6117 b/nodeJS/Learning/07/db/base/13780/6117 new file mode 100755 index 0000000..296b14e Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/6117 differ diff --git a/nodeJS/Learning/07/db/base/13780/6175 b/nodeJS/Learning/07/db/base/13780/6175 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/13780/6176 b/nodeJS/Learning/07/db/base/13780/6176 new file mode 100755 index 0000000..a349a04 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/6176 differ diff --git a/nodeJS/Learning/07/db/base/13780/826 b/nodeJS/Learning/07/db/base/13780/826 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/13780/827 b/nodeJS/Learning/07/db/base/13780/827 new file mode 100755 index 0000000..86db9fe Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/827 differ diff --git a/nodeJS/Learning/07/db/base/13780/828 b/nodeJS/Learning/07/db/base/13780/828 new file mode 100755 index 0000000..4a52299 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/828 differ diff --git a/nodeJS/Learning/07/db/base/13780/PG_VERSION b/nodeJS/Learning/07/db/base/13780/PG_VERSION new file mode 100755 index 0000000..8351c19 --- /dev/null +++ b/nodeJS/Learning/07/db/base/13780/PG_VERSION @@ -0,0 +1 @@ +14 diff --git a/nodeJS/Learning/07/db/base/13780/pg_filenode.map b/nodeJS/Learning/07/db/base/13780/pg_filenode.map new file mode 100755 index 0000000..193d78f Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/pg_filenode.map differ diff --git a/nodeJS/Learning/07/db/base/13780/pg_internal.init b/nodeJS/Learning/07/db/base/13780/pg_internal.init new file mode 100755 index 0000000..41f0068 Binary files /dev/null and b/nodeJS/Learning/07/db/base/13780/pg_internal.init differ diff --git a/nodeJS/Learning/07/db/base/16384/112 b/nodeJS/Learning/07/db/base/16384/112 new file mode 100755 index 0000000..21db514 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/112 differ diff --git a/nodeJS/Learning/07/db/base/16384/113 b/nodeJS/Learning/07/db/base/16384/113 new file mode 100755 index 0000000..3f06e2f Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/113 differ diff --git a/nodeJS/Learning/07/db/base/16384/1247 b/nodeJS/Learning/07/db/base/16384/1247 new file mode 100755 index 0000000..0eeccb6 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/1247 differ diff --git a/nodeJS/Learning/07/db/base/16384/1247_fsm b/nodeJS/Learning/07/db/base/16384/1247_fsm new file mode 100755 index 0000000..30f0a20 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/1247_fsm differ diff --git a/nodeJS/Learning/07/db/base/16384/1247_vm b/nodeJS/Learning/07/db/base/16384/1247_vm new file mode 100755 index 0000000..e2f703f Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/1247_vm differ diff --git a/nodeJS/Learning/07/db/base/16384/1249 b/nodeJS/Learning/07/db/base/16384/1249 new file mode 100755 index 0000000..e3cf816 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/1249 differ diff --git a/nodeJS/Learning/07/db/base/16384/1249_fsm b/nodeJS/Learning/07/db/base/16384/1249_fsm new file mode 100755 index 0000000..e4dfbd8 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/1249_fsm differ diff --git a/nodeJS/Learning/07/db/base/16384/1249_vm b/nodeJS/Learning/07/db/base/16384/1249_vm new file mode 100755 index 0000000..e1e62a2 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/1249_vm differ diff --git a/nodeJS/Learning/07/db/base/16384/1255 b/nodeJS/Learning/07/db/base/16384/1255 new file mode 100755 index 0000000..2875320 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/1255 differ diff --git a/nodeJS/Learning/07/db/base/16384/1255_fsm b/nodeJS/Learning/07/db/base/16384/1255_fsm new file mode 100755 index 0000000..b730b34 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/1255_fsm differ diff --git a/nodeJS/Learning/07/db/base/16384/1255_vm b/nodeJS/Learning/07/db/base/16384/1255_vm new file mode 100755 index 0000000..f8b601a Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/1255_vm differ diff --git a/nodeJS/Learning/07/db/base/16384/1259 b/nodeJS/Learning/07/db/base/16384/1259 new file mode 100755 index 0000000..bb9c596 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/1259 differ diff --git a/nodeJS/Learning/07/db/base/16384/1259_fsm b/nodeJS/Learning/07/db/base/16384/1259_fsm new file mode 100755 index 0000000..f9b25aa Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/1259_fsm differ diff --git a/nodeJS/Learning/07/db/base/16384/1259_vm b/nodeJS/Learning/07/db/base/16384/1259_vm new file mode 100755 index 0000000..a6625da Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/1259_vm differ diff --git a/nodeJS/Learning/07/db/base/16384/13598 b/nodeJS/Learning/07/db/base/16384/13598 new file mode 100755 index 0000000..d97be0a Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/13598 differ diff --git a/nodeJS/Learning/07/db/base/16384/13598_fsm b/nodeJS/Learning/07/db/base/16384/13598_fsm new file mode 100755 index 0000000..dc87bf4 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/13598_fsm differ diff --git a/nodeJS/Learning/07/db/base/16384/13598_vm b/nodeJS/Learning/07/db/base/16384/13598_vm new file mode 100755 index 0000000..d989630 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/13598_vm differ diff --git a/nodeJS/Learning/07/db/base/16384/13601 b/nodeJS/Learning/07/db/base/16384/13601 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/16384/13602 b/nodeJS/Learning/07/db/base/16384/13602 new file mode 100755 index 0000000..536e5fc Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/13602 differ diff --git a/nodeJS/Learning/07/db/base/16384/13603 b/nodeJS/Learning/07/db/base/16384/13603 new file mode 100755 index 0000000..3d8bfe7 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/13603 differ diff --git a/nodeJS/Learning/07/db/base/16384/13603_fsm b/nodeJS/Learning/07/db/base/16384/13603_fsm new file mode 100755 index 0000000..ce7c26e Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/13603_fsm differ diff --git a/nodeJS/Learning/07/db/base/16384/13603_vm b/nodeJS/Learning/07/db/base/16384/13603_vm new file mode 100755 index 0000000..b89629e Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/13603_vm differ diff --git a/nodeJS/Learning/07/db/base/16384/13606 b/nodeJS/Learning/07/db/base/16384/13606 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/16384/13607 b/nodeJS/Learning/07/db/base/16384/13607 new file mode 100755 index 0000000..33ac758 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/13607 differ diff --git a/nodeJS/Learning/07/db/base/16384/13608 b/nodeJS/Learning/07/db/base/16384/13608 new file mode 100755 index 0000000..9a3144a Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/13608 differ diff --git a/nodeJS/Learning/07/db/base/16384/13608_fsm b/nodeJS/Learning/07/db/base/16384/13608_fsm new file mode 100755 index 0000000..d388044 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/13608_fsm differ diff --git a/nodeJS/Learning/07/db/base/16384/13608_vm b/nodeJS/Learning/07/db/base/16384/13608_vm new file mode 100755 index 0000000..fd65276 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/13608_vm differ diff --git a/nodeJS/Learning/07/db/base/16384/13611 b/nodeJS/Learning/07/db/base/16384/13611 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/16384/13612 b/nodeJS/Learning/07/db/base/16384/13612 new file mode 100755 index 0000000..92c5591 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/13612 differ diff --git a/nodeJS/Learning/07/db/base/16384/13613 b/nodeJS/Learning/07/db/base/16384/13613 new file mode 100755 index 0000000..298ec81 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/13613 differ diff --git a/nodeJS/Learning/07/db/base/16384/13613_fsm b/nodeJS/Learning/07/db/base/16384/13613_fsm new file mode 100755 index 0000000..a836ddf Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/13613_fsm differ diff --git a/nodeJS/Learning/07/db/base/16384/13613_vm b/nodeJS/Learning/07/db/base/16384/13613_vm new file mode 100755 index 0000000..167e8ce Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/13613_vm differ diff --git a/nodeJS/Learning/07/db/base/16384/13616 b/nodeJS/Learning/07/db/base/16384/13616 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/16384/13617 b/nodeJS/Learning/07/db/base/16384/13617 new file mode 100755 index 0000000..76ffb74 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/13617 differ diff --git a/nodeJS/Learning/07/db/base/16384/1417 b/nodeJS/Learning/07/db/base/16384/1417 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/16384/1418 b/nodeJS/Learning/07/db/base/16384/1418 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/16384/16385 b/nodeJS/Learning/07/db/base/16384/16385 new file mode 100755 index 0000000..0996f49 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16385 differ diff --git a/nodeJS/Learning/07/db/base/16384/16386 b/nodeJS/Learning/07/db/base/16384/16386 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/16384/16390 b/nodeJS/Learning/07/db/base/16384/16390 new file mode 100755 index 0000000..e23d535 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16390 differ diff --git a/nodeJS/Learning/07/db/base/16384/16392 b/nodeJS/Learning/07/db/base/16384/16392 new file mode 100755 index 0000000..419fdb0 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16392 differ diff --git a/nodeJS/Learning/07/db/base/16384/16393 b/nodeJS/Learning/07/db/base/16384/16393 new file mode 100755 index 0000000..dc65684 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16393 differ diff --git a/nodeJS/Learning/07/db/base/16384/16397 b/nodeJS/Learning/07/db/base/16384/16397 new file mode 100755 index 0000000..2903955 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16397 differ diff --git a/nodeJS/Learning/07/db/base/16384/16399 b/nodeJS/Learning/07/db/base/16384/16399 new file mode 100755 index 0000000..bae094c Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16399 differ diff --git a/nodeJS/Learning/07/db/base/16384/16400 b/nodeJS/Learning/07/db/base/16384/16400 new file mode 100755 index 0000000..d6aeab9 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16400 differ diff --git a/nodeJS/Learning/07/db/base/16384/16404 b/nodeJS/Learning/07/db/base/16384/16404 new file mode 100755 index 0000000..9c0e0a3 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16404 differ diff --git a/nodeJS/Learning/07/db/base/16384/16405 b/nodeJS/Learning/07/db/base/16384/16405 new file mode 100755 index 0000000..89f1cbd Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16405 differ diff --git a/nodeJS/Learning/07/db/base/16384/16406 b/nodeJS/Learning/07/db/base/16384/16406 new file mode 100755 index 0000000..8dd1fe0 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16406 differ diff --git a/nodeJS/Learning/07/db/base/16384/16408 b/nodeJS/Learning/07/db/base/16384/16408 new file mode 100755 index 0000000..cd3f7fe Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16408 differ diff --git a/nodeJS/Learning/07/db/base/16384/16409 b/nodeJS/Learning/07/db/base/16384/16409 new file mode 100755 index 0000000..49cb1ad Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16409 differ diff --git a/nodeJS/Learning/07/db/base/16384/16409_fsm b/nodeJS/Learning/07/db/base/16384/16409_fsm new file mode 100755 index 0000000..0bf0123 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16409_fsm differ diff --git a/nodeJS/Learning/07/db/base/16384/16413 b/nodeJS/Learning/07/db/base/16384/16413 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/16384/16414 b/nodeJS/Learning/07/db/base/16384/16414 new file mode 100755 index 0000000..cb0aa72 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16414 differ diff --git a/nodeJS/Learning/07/db/base/16384/16415 b/nodeJS/Learning/07/db/base/16384/16415 new file mode 100755 index 0000000..492a6d1 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16415 differ diff --git a/nodeJS/Learning/07/db/base/16384/16417 b/nodeJS/Learning/07/db/base/16384/16417 new file mode 100755 index 0000000..8b1f3ef Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16417 differ diff --git a/nodeJS/Learning/07/db/base/16384/16418 b/nodeJS/Learning/07/db/base/16384/16418 new file mode 100755 index 0000000..48aae85 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16418 differ diff --git a/nodeJS/Learning/07/db/base/16384/16419 b/nodeJS/Learning/07/db/base/16384/16419 new file mode 100755 index 0000000..2500db6 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16419 differ diff --git a/nodeJS/Learning/07/db/base/16384/16420 b/nodeJS/Learning/07/db/base/16384/16420 new file mode 100755 index 0000000..3df88ed Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16420 differ diff --git a/nodeJS/Learning/07/db/base/16384/16421 b/nodeJS/Learning/07/db/base/16384/16421 new file mode 100755 index 0000000..4f911a4 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16421 differ diff --git a/nodeJS/Learning/07/db/base/16384/16422 b/nodeJS/Learning/07/db/base/16384/16422 new file mode 100755 index 0000000..2714ce4 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16422 differ diff --git a/nodeJS/Learning/07/db/base/16384/16423 b/nodeJS/Learning/07/db/base/16384/16423 new file mode 100755 index 0000000..9f093e1 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16423 differ diff --git a/nodeJS/Learning/07/db/base/16384/16424 b/nodeJS/Learning/07/db/base/16384/16424 new file mode 100755 index 0000000..2807155 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16424 differ diff --git a/nodeJS/Learning/07/db/base/16384/16425 b/nodeJS/Learning/07/db/base/16384/16425 new file mode 100755 index 0000000..438b5e1 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16425 differ diff --git a/nodeJS/Learning/07/db/base/16384/16426 b/nodeJS/Learning/07/db/base/16384/16426 new file mode 100755 index 0000000..bd84dc1 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16426 differ diff --git a/nodeJS/Learning/07/db/base/16384/16427 b/nodeJS/Learning/07/db/base/16384/16427 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/16384/16431 b/nodeJS/Learning/07/db/base/16384/16431 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/16384/16432 b/nodeJS/Learning/07/db/base/16384/16432 new file mode 100755 index 0000000..8c376c0 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16432 differ diff --git a/nodeJS/Learning/07/db/base/16384/16433 b/nodeJS/Learning/07/db/base/16384/16433 new file mode 100755 index 0000000..3e0985f Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16433 differ diff --git a/nodeJS/Learning/07/db/base/16384/16435 b/nodeJS/Learning/07/db/base/16384/16435 new file mode 100755 index 0000000..2b81b9b Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16435 differ diff --git a/nodeJS/Learning/07/db/base/16384/16437 b/nodeJS/Learning/07/db/base/16384/16437 new file mode 100755 index 0000000..67ae4cd Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16437 differ diff --git a/nodeJS/Learning/07/db/base/16384/16439 b/nodeJS/Learning/07/db/base/16384/16439 new file mode 100755 index 0000000..192d6f2 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16439 differ diff --git a/nodeJS/Learning/07/db/base/16384/16440 b/nodeJS/Learning/07/db/base/16384/16440 new file mode 100755 index 0000000..e0055f0 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16440 differ diff --git a/nodeJS/Learning/07/db/base/16384/16441 b/nodeJS/Learning/07/db/base/16384/16441 new file mode 100755 index 0000000..c7f3131 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16441 differ diff --git a/nodeJS/Learning/07/db/base/16384/16442 b/nodeJS/Learning/07/db/base/16384/16442 new file mode 100755 index 0000000..7c41753 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16442 differ diff --git a/nodeJS/Learning/07/db/base/16384/16443 b/nodeJS/Learning/07/db/base/16384/16443 new file mode 100755 index 0000000..598eec6 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16443 differ diff --git a/nodeJS/Learning/07/db/base/16384/16447 b/nodeJS/Learning/07/db/base/16384/16447 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/16384/16448 b/nodeJS/Learning/07/db/base/16384/16448 new file mode 100755 index 0000000..45b1076 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16448 differ diff --git a/nodeJS/Learning/07/db/base/16384/16449 b/nodeJS/Learning/07/db/base/16384/16449 new file mode 100755 index 0000000..bfe03da Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16449 differ diff --git a/nodeJS/Learning/07/db/base/16384/16451 b/nodeJS/Learning/07/db/base/16384/16451 new file mode 100755 index 0000000..a9dcb8b Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16451 differ diff --git a/nodeJS/Learning/07/db/base/16384/16452 b/nodeJS/Learning/07/db/base/16384/16452 new file mode 100755 index 0000000..4fcf975 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16452 differ diff --git a/nodeJS/Learning/07/db/base/16384/16453 b/nodeJS/Learning/07/db/base/16384/16453 new file mode 100755 index 0000000..c3ff000 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16453 differ diff --git a/nodeJS/Learning/07/db/base/16384/16454 b/nodeJS/Learning/07/db/base/16384/16454 new file mode 100755 index 0000000..aab07d1 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16454 differ diff --git a/nodeJS/Learning/07/db/base/16384/16455 b/nodeJS/Learning/07/db/base/16384/16455 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/16384/16459 b/nodeJS/Learning/07/db/base/16384/16459 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/16384/16460 b/nodeJS/Learning/07/db/base/16384/16460 new file mode 100755 index 0000000..b044c83 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16460 differ diff --git a/nodeJS/Learning/07/db/base/16384/16461 b/nodeJS/Learning/07/db/base/16384/16461 new file mode 100755 index 0000000..f6758ec Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16461 differ diff --git a/nodeJS/Learning/07/db/base/16384/16463 b/nodeJS/Learning/07/db/base/16384/16463 new file mode 100755 index 0000000..85f3737 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16463 differ diff --git a/nodeJS/Learning/07/db/base/16384/16464 b/nodeJS/Learning/07/db/base/16384/16464 new file mode 100755 index 0000000..da1fe3f Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16464 differ diff --git a/nodeJS/Learning/07/db/base/16384/16465 b/nodeJS/Learning/07/db/base/16384/16465 new file mode 100755 index 0000000..10b47f7 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16465 differ diff --git a/nodeJS/Learning/07/db/base/16384/16466 b/nodeJS/Learning/07/db/base/16384/16466 new file mode 100755 index 0000000..9aa141a Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16466 differ diff --git a/nodeJS/Learning/07/db/base/16384/16467 b/nodeJS/Learning/07/db/base/16384/16467 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/16384/16471 b/nodeJS/Learning/07/db/base/16384/16471 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/16384/16472 b/nodeJS/Learning/07/db/base/16384/16472 new file mode 100755 index 0000000..5157f3b Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16472 differ diff --git a/nodeJS/Learning/07/db/base/16384/16473 b/nodeJS/Learning/07/db/base/16384/16473 new file mode 100755 index 0000000..a034780 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16473 differ diff --git a/nodeJS/Learning/07/db/base/16384/16475 b/nodeJS/Learning/07/db/base/16384/16475 new file mode 100755 index 0000000..1f0b426 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16475 differ diff --git a/nodeJS/Learning/07/db/base/16384/16476 b/nodeJS/Learning/07/db/base/16384/16476 new file mode 100755 index 0000000..2d312a6 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16476 differ diff --git a/nodeJS/Learning/07/db/base/16384/16477 b/nodeJS/Learning/07/db/base/16384/16477 new file mode 100755 index 0000000..9ee2c53 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16477 differ diff --git a/nodeJS/Learning/07/db/base/16384/16478 b/nodeJS/Learning/07/db/base/16384/16478 new file mode 100755 index 0000000..39c51e3 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16478 differ diff --git a/nodeJS/Learning/07/db/base/16384/16479 b/nodeJS/Learning/07/db/base/16384/16479 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/16384/16483 b/nodeJS/Learning/07/db/base/16384/16483 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/16384/16484 b/nodeJS/Learning/07/db/base/16384/16484 new file mode 100755 index 0000000..e9da819 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16484 differ diff --git a/nodeJS/Learning/07/db/base/16384/16485 b/nodeJS/Learning/07/db/base/16384/16485 new file mode 100755 index 0000000..e7984ad Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16485 differ diff --git a/nodeJS/Learning/07/db/base/16384/16487 b/nodeJS/Learning/07/db/base/16384/16487 new file mode 100755 index 0000000..446fe51 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16487 differ diff --git a/nodeJS/Learning/07/db/base/16384/16488 b/nodeJS/Learning/07/db/base/16384/16488 new file mode 100755 index 0000000..0e6eadb Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16488 differ diff --git a/nodeJS/Learning/07/db/base/16384/16489 b/nodeJS/Learning/07/db/base/16384/16489 new file mode 100755 index 0000000..e660545 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16489 differ diff --git a/nodeJS/Learning/07/db/base/16384/16490 b/nodeJS/Learning/07/db/base/16384/16490 new file mode 100755 index 0000000..b2aca93 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16490 differ diff --git a/nodeJS/Learning/07/db/base/16384/16491 b/nodeJS/Learning/07/db/base/16384/16491 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/16384/16495 b/nodeJS/Learning/07/db/base/16384/16495 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/16384/16496 b/nodeJS/Learning/07/db/base/16384/16496 new file mode 100755 index 0000000..69eecb4 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16496 differ diff --git a/nodeJS/Learning/07/db/base/16384/16497 b/nodeJS/Learning/07/db/base/16384/16497 new file mode 100755 index 0000000..6b6fcf8 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16497 differ diff --git a/nodeJS/Learning/07/db/base/16384/16499 b/nodeJS/Learning/07/db/base/16384/16499 new file mode 100755 index 0000000..a7eec94 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16499 differ diff --git a/nodeJS/Learning/07/db/base/16384/16500 b/nodeJS/Learning/07/db/base/16384/16500 new file mode 100755 index 0000000..4e52ca1 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16500 differ diff --git a/nodeJS/Learning/07/db/base/16384/16501 b/nodeJS/Learning/07/db/base/16384/16501 new file mode 100755 index 0000000..2720c20 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16501 differ diff --git a/nodeJS/Learning/07/db/base/16384/16502 b/nodeJS/Learning/07/db/base/16384/16502 new file mode 100755 index 0000000..e670151 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16502 differ diff --git a/nodeJS/Learning/07/db/base/16384/16503 b/nodeJS/Learning/07/db/base/16384/16503 new file mode 100755 index 0000000..2e629e8 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16503 differ diff --git a/nodeJS/Learning/07/db/base/16384/16507 b/nodeJS/Learning/07/db/base/16384/16507 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/16384/16508 b/nodeJS/Learning/07/db/base/16384/16508 new file mode 100755 index 0000000..2622eaf Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16508 differ diff --git a/nodeJS/Learning/07/db/base/16384/16509 b/nodeJS/Learning/07/db/base/16384/16509 new file mode 100755 index 0000000..4681f46 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16509 differ diff --git a/nodeJS/Learning/07/db/base/16384/16511 b/nodeJS/Learning/07/db/base/16384/16511 new file mode 100755 index 0000000..f4d033f Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16511 differ diff --git a/nodeJS/Learning/07/db/base/16384/16512 b/nodeJS/Learning/07/db/base/16384/16512 new file mode 100755 index 0000000..63741b0 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16512 differ diff --git a/nodeJS/Learning/07/db/base/16384/16513 b/nodeJS/Learning/07/db/base/16384/16513 new file mode 100755 index 0000000..669ca60 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16513 differ diff --git a/nodeJS/Learning/07/db/base/16384/16514 b/nodeJS/Learning/07/db/base/16384/16514 new file mode 100755 index 0000000..62ffcf6 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16514 differ diff --git a/nodeJS/Learning/07/db/base/16384/16515 b/nodeJS/Learning/07/db/base/16384/16515 new file mode 100755 index 0000000..f8dc9e0 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16515 differ diff --git a/nodeJS/Learning/07/db/base/16384/16519 b/nodeJS/Learning/07/db/base/16384/16519 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/16384/16520 b/nodeJS/Learning/07/db/base/16384/16520 new file mode 100755 index 0000000..084c725 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16520 differ diff --git a/nodeJS/Learning/07/db/base/16384/16521 b/nodeJS/Learning/07/db/base/16384/16521 new file mode 100755 index 0000000..9f2f14d Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16521 differ diff --git a/nodeJS/Learning/07/db/base/16384/16523 b/nodeJS/Learning/07/db/base/16384/16523 new file mode 100755 index 0000000..ca4d607 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16523 differ diff --git a/nodeJS/Learning/07/db/base/16384/16524 b/nodeJS/Learning/07/db/base/16384/16524 new file mode 100755 index 0000000..3963175 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16524 differ diff --git a/nodeJS/Learning/07/db/base/16384/16525 b/nodeJS/Learning/07/db/base/16384/16525 new file mode 100755 index 0000000..6cce5f2 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16525 differ diff --git a/nodeJS/Learning/07/db/base/16384/16526 b/nodeJS/Learning/07/db/base/16384/16526 new file mode 100755 index 0000000..434903a Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16526 differ diff --git a/nodeJS/Learning/07/db/base/16384/16527 b/nodeJS/Learning/07/db/base/16384/16527 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/16384/16531 b/nodeJS/Learning/07/db/base/16384/16531 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/16384/16532 b/nodeJS/Learning/07/db/base/16384/16532 new file mode 100755 index 0000000..3829194 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16532 differ diff --git a/nodeJS/Learning/07/db/base/16384/16533 b/nodeJS/Learning/07/db/base/16384/16533 new file mode 100755 index 0000000..32796f5 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16533 differ diff --git a/nodeJS/Learning/07/db/base/16384/16535 b/nodeJS/Learning/07/db/base/16384/16535 new file mode 100755 index 0000000..033b136 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16535 differ diff --git a/nodeJS/Learning/07/db/base/16384/16536 b/nodeJS/Learning/07/db/base/16384/16536 new file mode 100755 index 0000000..0adf3d9 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16536 differ diff --git a/nodeJS/Learning/07/db/base/16384/16537 b/nodeJS/Learning/07/db/base/16384/16537 new file mode 100755 index 0000000..d30f3df Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16537 differ diff --git a/nodeJS/Learning/07/db/base/16384/16538 b/nodeJS/Learning/07/db/base/16384/16538 new file mode 100755 index 0000000..61a397b Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16538 differ diff --git a/nodeJS/Learning/07/db/base/16384/16539 b/nodeJS/Learning/07/db/base/16384/16539 new file mode 100755 index 0000000..01fd574 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16539 differ diff --git a/nodeJS/Learning/07/db/base/16384/16539_fsm b/nodeJS/Learning/07/db/base/16384/16539_fsm new file mode 100755 index 0000000..9e16665 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16539_fsm differ diff --git a/nodeJS/Learning/07/db/base/16384/16543 b/nodeJS/Learning/07/db/base/16384/16543 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/16384/16544 b/nodeJS/Learning/07/db/base/16384/16544 new file mode 100755 index 0000000..799c60a Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16544 differ diff --git a/nodeJS/Learning/07/db/base/16384/16545 b/nodeJS/Learning/07/db/base/16384/16545 new file mode 100755 index 0000000..adb77ff Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16545 differ diff --git a/nodeJS/Learning/07/db/base/16384/16547 b/nodeJS/Learning/07/db/base/16384/16547 new file mode 100755 index 0000000..ec40034 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16547 differ diff --git a/nodeJS/Learning/07/db/base/16384/16548 b/nodeJS/Learning/07/db/base/16384/16548 new file mode 100755 index 0000000..6a1fbe7 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16548 differ diff --git a/nodeJS/Learning/07/db/base/16384/16549 b/nodeJS/Learning/07/db/base/16384/16549 new file mode 100755 index 0000000..659dc57 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16549 differ diff --git a/nodeJS/Learning/07/db/base/16384/16550 b/nodeJS/Learning/07/db/base/16384/16550 new file mode 100755 index 0000000..52bab08 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16550 differ diff --git a/nodeJS/Learning/07/db/base/16384/16551 b/nodeJS/Learning/07/db/base/16384/16551 new file mode 100755 index 0000000..c1c10e2 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16551 differ diff --git a/nodeJS/Learning/07/db/base/16384/16555 b/nodeJS/Learning/07/db/base/16384/16555 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/16384/16556 b/nodeJS/Learning/07/db/base/16384/16556 new file mode 100755 index 0000000..1bb1574 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16556 differ diff --git a/nodeJS/Learning/07/db/base/16384/16557 b/nodeJS/Learning/07/db/base/16384/16557 new file mode 100755 index 0000000..aa94c9b Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16557 differ diff --git a/nodeJS/Learning/07/db/base/16384/16559 b/nodeJS/Learning/07/db/base/16384/16559 new file mode 100755 index 0000000..d2e9f8b Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16559 differ diff --git a/nodeJS/Learning/07/db/base/16384/16560 b/nodeJS/Learning/07/db/base/16384/16560 new file mode 100755 index 0000000..6ba6b8f Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16560 differ diff --git a/nodeJS/Learning/07/db/base/16384/16561 b/nodeJS/Learning/07/db/base/16384/16561 new file mode 100755 index 0000000..a62a877 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16561 differ diff --git a/nodeJS/Learning/07/db/base/16384/16562 b/nodeJS/Learning/07/db/base/16384/16562 new file mode 100755 index 0000000..b477267 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16562 differ diff --git a/nodeJS/Learning/07/db/base/16384/16563 b/nodeJS/Learning/07/db/base/16384/16563 new file mode 100755 index 0000000..e92b230 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16563 differ diff --git a/nodeJS/Learning/07/db/base/16384/16567 b/nodeJS/Learning/07/db/base/16384/16567 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/16384/16568 b/nodeJS/Learning/07/db/base/16384/16568 new file mode 100755 index 0000000..66f5a08 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16568 differ diff --git a/nodeJS/Learning/07/db/base/16384/16569 b/nodeJS/Learning/07/db/base/16384/16569 new file mode 100755 index 0000000..412d76a Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16569 differ diff --git a/nodeJS/Learning/07/db/base/16384/16571 b/nodeJS/Learning/07/db/base/16384/16571 new file mode 100755 index 0000000..5e54363 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16571 differ diff --git a/nodeJS/Learning/07/db/base/16384/16572 b/nodeJS/Learning/07/db/base/16384/16572 new file mode 100755 index 0000000..deb814d Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16572 differ diff --git a/nodeJS/Learning/07/db/base/16384/16573 b/nodeJS/Learning/07/db/base/16384/16573 new file mode 100755 index 0000000..ee03792 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16573 differ diff --git a/nodeJS/Learning/07/db/base/16384/16574 b/nodeJS/Learning/07/db/base/16384/16574 new file mode 100755 index 0000000..8e5cd9c Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16574 differ diff --git a/nodeJS/Learning/07/db/base/16384/16575 b/nodeJS/Learning/07/db/base/16384/16575 new file mode 100755 index 0000000..be5a3f5 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16575 differ diff --git a/nodeJS/Learning/07/db/base/16384/16579 b/nodeJS/Learning/07/db/base/16384/16579 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/16384/16580 b/nodeJS/Learning/07/db/base/16384/16580 new file mode 100755 index 0000000..9e83ce6 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16580 differ diff --git a/nodeJS/Learning/07/db/base/16384/16581 b/nodeJS/Learning/07/db/base/16384/16581 new file mode 100755 index 0000000..2f17917 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16581 differ diff --git a/nodeJS/Learning/07/db/base/16384/16583 b/nodeJS/Learning/07/db/base/16384/16583 new file mode 100755 index 0000000..a9dea59 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16583 differ diff --git a/nodeJS/Learning/07/db/base/16384/16584 b/nodeJS/Learning/07/db/base/16384/16584 new file mode 100755 index 0000000..7cbb625 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16584 differ diff --git a/nodeJS/Learning/07/db/base/16384/16585 b/nodeJS/Learning/07/db/base/16384/16585 new file mode 100755 index 0000000..18923ef Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16585 differ diff --git a/nodeJS/Learning/07/db/base/16384/16586 b/nodeJS/Learning/07/db/base/16384/16586 new file mode 100755 index 0000000..35193c8 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16586 differ diff --git a/nodeJS/Learning/07/db/base/16384/16587 b/nodeJS/Learning/07/db/base/16384/16587 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/16384/16591 b/nodeJS/Learning/07/db/base/16384/16591 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/16384/16592 b/nodeJS/Learning/07/db/base/16384/16592 new file mode 100755 index 0000000..674c84d Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16592 differ diff --git a/nodeJS/Learning/07/db/base/16384/16593 b/nodeJS/Learning/07/db/base/16384/16593 new file mode 100755 index 0000000..cd38b4d Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16593 differ diff --git a/nodeJS/Learning/07/db/base/16384/16595 b/nodeJS/Learning/07/db/base/16384/16595 new file mode 100755 index 0000000..f025dfe Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16595 differ diff --git a/nodeJS/Learning/07/db/base/16384/16596 b/nodeJS/Learning/07/db/base/16384/16596 new file mode 100755 index 0000000..2c64724 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16596 differ diff --git a/nodeJS/Learning/07/db/base/16384/16597 b/nodeJS/Learning/07/db/base/16384/16597 new file mode 100755 index 0000000..04458d3 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16597 differ diff --git a/nodeJS/Learning/07/db/base/16384/16598 b/nodeJS/Learning/07/db/base/16384/16598 new file mode 100755 index 0000000..9dcabd3 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16598 differ diff --git a/nodeJS/Learning/07/db/base/16384/16599 b/nodeJS/Learning/07/db/base/16384/16599 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/16384/16603 b/nodeJS/Learning/07/db/base/16384/16603 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/16384/16604 b/nodeJS/Learning/07/db/base/16384/16604 new file mode 100755 index 0000000..00eb2e2 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16604 differ diff --git a/nodeJS/Learning/07/db/base/16384/16605 b/nodeJS/Learning/07/db/base/16384/16605 new file mode 100755 index 0000000..299e64b Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16605 differ diff --git a/nodeJS/Learning/07/db/base/16384/16607 b/nodeJS/Learning/07/db/base/16384/16607 new file mode 100755 index 0000000..872a59a Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16607 differ diff --git a/nodeJS/Learning/07/db/base/16384/16608 b/nodeJS/Learning/07/db/base/16384/16608 new file mode 100755 index 0000000..631f181 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16608 differ diff --git a/nodeJS/Learning/07/db/base/16384/16609 b/nodeJS/Learning/07/db/base/16384/16609 new file mode 100755 index 0000000..2d63e49 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16609 differ diff --git a/nodeJS/Learning/07/db/base/16384/16610 b/nodeJS/Learning/07/db/base/16384/16610 new file mode 100755 index 0000000..5992ad1 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16610 differ diff --git a/nodeJS/Learning/07/db/base/16384/16611 b/nodeJS/Learning/07/db/base/16384/16611 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/16384/16615 b/nodeJS/Learning/07/db/base/16384/16615 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/16384/16616 b/nodeJS/Learning/07/db/base/16384/16616 new file mode 100755 index 0000000..e202584 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16616 differ diff --git a/nodeJS/Learning/07/db/base/16384/16617 b/nodeJS/Learning/07/db/base/16384/16617 new file mode 100755 index 0000000..67fea92 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16617 differ diff --git a/nodeJS/Learning/07/db/base/16384/16619 b/nodeJS/Learning/07/db/base/16384/16619 new file mode 100755 index 0000000..b382503 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16619 differ diff --git a/nodeJS/Learning/07/db/base/16384/16620 b/nodeJS/Learning/07/db/base/16384/16620 new file mode 100755 index 0000000..d4540e2 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16620 differ diff --git a/nodeJS/Learning/07/db/base/16384/16621 b/nodeJS/Learning/07/db/base/16384/16621 new file mode 100755 index 0000000..517d80c Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16621 differ diff --git a/nodeJS/Learning/07/db/base/16384/16622 b/nodeJS/Learning/07/db/base/16384/16622 new file mode 100755 index 0000000..de328ea Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16622 differ diff --git a/nodeJS/Learning/07/db/base/16384/16623 b/nodeJS/Learning/07/db/base/16384/16623 new file mode 100755 index 0000000..7ffd3d4 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16623 differ diff --git a/nodeJS/Learning/07/db/base/16384/16623_fsm b/nodeJS/Learning/07/db/base/16384/16623_fsm new file mode 100755 index 0000000..e16a984 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16623_fsm differ diff --git a/nodeJS/Learning/07/db/base/16384/16627 b/nodeJS/Learning/07/db/base/16384/16627 new file mode 100755 index 0000000..0ba047a Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16627 differ diff --git a/nodeJS/Learning/07/db/base/16384/16627_fsm b/nodeJS/Learning/07/db/base/16384/16627_fsm new file mode 100755 index 0000000..1d1df86 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16627_fsm differ diff --git a/nodeJS/Learning/07/db/base/16384/16628 b/nodeJS/Learning/07/db/base/16384/16628 new file mode 100755 index 0000000..90f817e Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16628 differ diff --git a/nodeJS/Learning/07/db/base/16384/16629 b/nodeJS/Learning/07/db/base/16384/16629 new file mode 100755 index 0000000..32cc88e Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16629 differ diff --git a/nodeJS/Learning/07/db/base/16384/16631 b/nodeJS/Learning/07/db/base/16384/16631 new file mode 100755 index 0000000..d351039 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16631 differ diff --git a/nodeJS/Learning/07/db/base/16384/16632 b/nodeJS/Learning/07/db/base/16384/16632 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/16384/16636 b/nodeJS/Learning/07/db/base/16384/16636 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/16384/16637 b/nodeJS/Learning/07/db/base/16384/16637 new file mode 100755 index 0000000..e1f65c8 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16637 differ diff --git a/nodeJS/Learning/07/db/base/16384/16638 b/nodeJS/Learning/07/db/base/16384/16638 new file mode 100755 index 0000000..dfff77f Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16638 differ diff --git a/nodeJS/Learning/07/db/base/16384/16640 b/nodeJS/Learning/07/db/base/16384/16640 new file mode 100755 index 0000000..b8afb06 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16640 differ diff --git a/nodeJS/Learning/07/db/base/16384/16641 b/nodeJS/Learning/07/db/base/16384/16641 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/16384/16645 b/nodeJS/Learning/07/db/base/16384/16645 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/16384/16646 b/nodeJS/Learning/07/db/base/16384/16646 new file mode 100755 index 0000000..8accc71 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16646 differ diff --git a/nodeJS/Learning/07/db/base/16384/16647 b/nodeJS/Learning/07/db/base/16384/16647 new file mode 100755 index 0000000..79a6697 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16647 differ diff --git a/nodeJS/Learning/07/db/base/16384/16649 b/nodeJS/Learning/07/db/base/16384/16649 new file mode 100755 index 0000000..dfe6189 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16649 differ diff --git a/nodeJS/Learning/07/db/base/16384/16650 b/nodeJS/Learning/07/db/base/16384/16650 new file mode 100755 index 0000000..0141ee5 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16650 differ diff --git a/nodeJS/Learning/07/db/base/16384/16651 b/nodeJS/Learning/07/db/base/16384/16651 new file mode 100755 index 0000000..a6624cb Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16651 differ diff --git a/nodeJS/Learning/07/db/base/16384/16655 b/nodeJS/Learning/07/db/base/16384/16655 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/16384/16656 b/nodeJS/Learning/07/db/base/16384/16656 new file mode 100755 index 0000000..452ca61 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16656 differ diff --git a/nodeJS/Learning/07/db/base/16384/16657 b/nodeJS/Learning/07/db/base/16384/16657 new file mode 100755 index 0000000..303fb57 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16657 differ diff --git a/nodeJS/Learning/07/db/base/16384/16659 b/nodeJS/Learning/07/db/base/16384/16659 new file mode 100755 index 0000000..5f8a8e9 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16659 differ diff --git a/nodeJS/Learning/07/db/base/16384/16660 b/nodeJS/Learning/07/db/base/16384/16660 new file mode 100755 index 0000000..223390f Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16660 differ diff --git a/nodeJS/Learning/07/db/base/16384/16661 b/nodeJS/Learning/07/db/base/16384/16661 new file mode 100755 index 0000000..068b19a Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16661 differ diff --git a/nodeJS/Learning/07/db/base/16384/16662 b/nodeJS/Learning/07/db/base/16384/16662 new file mode 100755 index 0000000..5ff9a6f Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16662 differ diff --git a/nodeJS/Learning/07/db/base/16384/16663 b/nodeJS/Learning/07/db/base/16384/16663 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/16384/16667 b/nodeJS/Learning/07/db/base/16384/16667 new file mode 100755 index 0000000..34ad058 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16667 differ diff --git a/nodeJS/Learning/07/db/base/16384/16669 b/nodeJS/Learning/07/db/base/16384/16669 new file mode 100755 index 0000000..d555af0 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16669 differ diff --git a/nodeJS/Learning/07/db/base/16384/16670 b/nodeJS/Learning/07/db/base/16384/16670 new file mode 100755 index 0000000..f21b703 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16670 differ diff --git a/nodeJS/Learning/07/db/base/16384/16671 b/nodeJS/Learning/07/db/base/16384/16671 new file mode 100755 index 0000000..6bcc3ff Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16671 differ diff --git a/nodeJS/Learning/07/db/base/16384/16673 b/nodeJS/Learning/07/db/base/16384/16673 new file mode 100755 index 0000000..438503a Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16673 differ diff --git a/nodeJS/Learning/07/db/base/16384/16674 b/nodeJS/Learning/07/db/base/16384/16674 new file mode 100755 index 0000000..575f384 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16674 differ diff --git a/nodeJS/Learning/07/db/base/16384/16675 b/nodeJS/Learning/07/db/base/16384/16675 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/16384/16679 b/nodeJS/Learning/07/db/base/16384/16679 new file mode 100755 index 0000000..7a0d051 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16679 differ diff --git a/nodeJS/Learning/07/db/base/16384/16681 b/nodeJS/Learning/07/db/base/16384/16681 new file mode 100755 index 0000000..6fb7c52 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16681 differ diff --git a/nodeJS/Learning/07/db/base/16384/16682 b/nodeJS/Learning/07/db/base/16384/16682 new file mode 100755 index 0000000..b190b54 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16682 differ diff --git a/nodeJS/Learning/07/db/base/16384/16683 b/nodeJS/Learning/07/db/base/16384/16683 new file mode 100755 index 0000000..cf2cde7 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16683 differ diff --git a/nodeJS/Learning/07/db/base/16384/16685 b/nodeJS/Learning/07/db/base/16384/16685 new file mode 100755 index 0000000..4529203 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16685 differ diff --git a/nodeJS/Learning/07/db/base/16384/16686 b/nodeJS/Learning/07/db/base/16384/16686 new file mode 100755 index 0000000..7fa58cf Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16686 differ diff --git a/nodeJS/Learning/07/db/base/16384/16687 b/nodeJS/Learning/07/db/base/16384/16687 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/16384/16691 b/nodeJS/Learning/07/db/base/16384/16691 new file mode 100755 index 0000000..7b9a935 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16691 differ diff --git a/nodeJS/Learning/07/db/base/16384/16693 b/nodeJS/Learning/07/db/base/16384/16693 new file mode 100755 index 0000000..63fafd6 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16693 differ diff --git a/nodeJS/Learning/07/db/base/16384/16694 b/nodeJS/Learning/07/db/base/16384/16694 new file mode 100755 index 0000000..51a83b9 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16694 differ diff --git a/nodeJS/Learning/07/db/base/16384/16695 b/nodeJS/Learning/07/db/base/16384/16695 new file mode 100755 index 0000000..b3bdd4e Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16695 differ diff --git a/nodeJS/Learning/07/db/base/16384/16697 b/nodeJS/Learning/07/db/base/16384/16697 new file mode 100755 index 0000000..c3049fa Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16697 differ diff --git a/nodeJS/Learning/07/db/base/16384/16698 b/nodeJS/Learning/07/db/base/16384/16698 new file mode 100755 index 0000000..55fd04d Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16698 differ diff --git a/nodeJS/Learning/07/db/base/16384/16699 b/nodeJS/Learning/07/db/base/16384/16699 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/16384/16703 b/nodeJS/Learning/07/db/base/16384/16703 new file mode 100755 index 0000000..a882626 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16703 differ diff --git a/nodeJS/Learning/07/db/base/16384/16705 b/nodeJS/Learning/07/db/base/16384/16705 new file mode 100755 index 0000000..a888a81 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16705 differ diff --git a/nodeJS/Learning/07/db/base/16384/16706 b/nodeJS/Learning/07/db/base/16384/16706 new file mode 100755 index 0000000..a62f8a9 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16706 differ diff --git a/nodeJS/Learning/07/db/base/16384/16707 b/nodeJS/Learning/07/db/base/16384/16707 new file mode 100755 index 0000000..df8062b Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16707 differ diff --git a/nodeJS/Learning/07/db/base/16384/16709 b/nodeJS/Learning/07/db/base/16384/16709 new file mode 100755 index 0000000..c705286 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16709 differ diff --git a/nodeJS/Learning/07/db/base/16384/16710 b/nodeJS/Learning/07/db/base/16384/16710 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/16384/16714 b/nodeJS/Learning/07/db/base/16384/16714 new file mode 100755 index 0000000..730adb3 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16714 differ diff --git a/nodeJS/Learning/07/db/base/16384/16716 b/nodeJS/Learning/07/db/base/16384/16716 new file mode 100755 index 0000000..7162cc5 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16716 differ diff --git a/nodeJS/Learning/07/db/base/16384/16717 b/nodeJS/Learning/07/db/base/16384/16717 new file mode 100755 index 0000000..17d2901 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16717 differ diff --git a/nodeJS/Learning/07/db/base/16384/16718 b/nodeJS/Learning/07/db/base/16384/16718 new file mode 100755 index 0000000..3b4cee9 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16718 differ diff --git a/nodeJS/Learning/07/db/base/16384/16720 b/nodeJS/Learning/07/db/base/16384/16720 new file mode 100755 index 0000000..b652c82 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16720 differ diff --git a/nodeJS/Learning/07/db/base/16384/16721 b/nodeJS/Learning/07/db/base/16384/16721 new file mode 100755 index 0000000..9291d34 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16721 differ diff --git a/nodeJS/Learning/07/db/base/16384/16722 b/nodeJS/Learning/07/db/base/16384/16722 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/16384/16726 b/nodeJS/Learning/07/db/base/16384/16726 new file mode 100755 index 0000000..5467302 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16726 differ diff --git a/nodeJS/Learning/07/db/base/16384/16728 b/nodeJS/Learning/07/db/base/16384/16728 new file mode 100755 index 0000000..fa6ac88 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16728 differ diff --git a/nodeJS/Learning/07/db/base/16384/16729 b/nodeJS/Learning/07/db/base/16384/16729 new file mode 100755 index 0000000..bf2f586 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16729 differ diff --git a/nodeJS/Learning/07/db/base/16384/16730 b/nodeJS/Learning/07/db/base/16384/16730 new file mode 100755 index 0000000..154ae1e Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16730 differ diff --git a/nodeJS/Learning/07/db/base/16384/16732 b/nodeJS/Learning/07/db/base/16384/16732 new file mode 100755 index 0000000..59bcbaa Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16732 differ diff --git a/nodeJS/Learning/07/db/base/16384/16733 b/nodeJS/Learning/07/db/base/16384/16733 new file mode 100755 index 0000000..0c6991f Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16733 differ diff --git a/nodeJS/Learning/07/db/base/16384/16734 b/nodeJS/Learning/07/db/base/16384/16734 new file mode 100755 index 0000000..ec3230e Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16734 differ diff --git a/nodeJS/Learning/07/db/base/16384/16738 b/nodeJS/Learning/07/db/base/16384/16738 new file mode 100755 index 0000000..575b38a Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16738 differ diff --git a/nodeJS/Learning/07/db/base/16384/16740 b/nodeJS/Learning/07/db/base/16384/16740 new file mode 100755 index 0000000..7c97f1c Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16740 differ diff --git a/nodeJS/Learning/07/db/base/16384/16741 b/nodeJS/Learning/07/db/base/16384/16741 new file mode 100755 index 0000000..9f71556 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16741 differ diff --git a/nodeJS/Learning/07/db/base/16384/16742 b/nodeJS/Learning/07/db/base/16384/16742 new file mode 100755 index 0000000..2783a6e Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16742 differ diff --git a/nodeJS/Learning/07/db/base/16384/16744 b/nodeJS/Learning/07/db/base/16384/16744 new file mode 100755 index 0000000..e9b7089 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16744 differ diff --git a/nodeJS/Learning/07/db/base/16384/16745 b/nodeJS/Learning/07/db/base/16384/16745 new file mode 100755 index 0000000..b0c9d89 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16745 differ diff --git a/nodeJS/Learning/07/db/base/16384/16746 b/nodeJS/Learning/07/db/base/16384/16746 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/16384/16750 b/nodeJS/Learning/07/db/base/16384/16750 new file mode 100755 index 0000000..791f516 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16750 differ diff --git a/nodeJS/Learning/07/db/base/16384/16752 b/nodeJS/Learning/07/db/base/16384/16752 new file mode 100755 index 0000000..30e0ef2 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16752 differ diff --git a/nodeJS/Learning/07/db/base/16384/16753 b/nodeJS/Learning/07/db/base/16384/16753 new file mode 100755 index 0000000..cab4ed9 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16753 differ diff --git a/nodeJS/Learning/07/db/base/16384/16754 b/nodeJS/Learning/07/db/base/16384/16754 new file mode 100755 index 0000000..f9aa0c7 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16754 differ diff --git a/nodeJS/Learning/07/db/base/16384/16756 b/nodeJS/Learning/07/db/base/16384/16756 new file mode 100755 index 0000000..1b35bd8 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16756 differ diff --git a/nodeJS/Learning/07/db/base/16384/16757 b/nodeJS/Learning/07/db/base/16384/16757 new file mode 100755 index 0000000..0425214 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16757 differ diff --git a/nodeJS/Learning/07/db/base/16384/16758 b/nodeJS/Learning/07/db/base/16384/16758 new file mode 100755 index 0000000..3a818dc Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16758 differ diff --git a/nodeJS/Learning/07/db/base/16384/16762 b/nodeJS/Learning/07/db/base/16384/16762 new file mode 100755 index 0000000..9eb6fcb Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16762 differ diff --git a/nodeJS/Learning/07/db/base/16384/16764 b/nodeJS/Learning/07/db/base/16384/16764 new file mode 100755 index 0000000..e9f8312 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16764 differ diff --git a/nodeJS/Learning/07/db/base/16384/16765 b/nodeJS/Learning/07/db/base/16384/16765 new file mode 100755 index 0000000..40c9eaa Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16765 differ diff --git a/nodeJS/Learning/07/db/base/16384/16766 b/nodeJS/Learning/07/db/base/16384/16766 new file mode 100755 index 0000000..ddcc08b Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16766 differ diff --git a/nodeJS/Learning/07/db/base/16384/16768 b/nodeJS/Learning/07/db/base/16384/16768 new file mode 100755 index 0000000..8b78956 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16768 differ diff --git a/nodeJS/Learning/07/db/base/16384/16769 b/nodeJS/Learning/07/db/base/16384/16769 new file mode 100755 index 0000000..20b0bfd Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16769 differ diff --git a/nodeJS/Learning/07/db/base/16384/16770 b/nodeJS/Learning/07/db/base/16384/16770 new file mode 100755 index 0000000..187f934 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16770 differ diff --git a/nodeJS/Learning/07/db/base/16384/16774 b/nodeJS/Learning/07/db/base/16384/16774 new file mode 100755 index 0000000..2b3ed0f Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16774 differ diff --git a/nodeJS/Learning/07/db/base/16384/16776 b/nodeJS/Learning/07/db/base/16384/16776 new file mode 100755 index 0000000..6282bc1 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16776 differ diff --git a/nodeJS/Learning/07/db/base/16384/16777 b/nodeJS/Learning/07/db/base/16384/16777 new file mode 100755 index 0000000..30a7d33 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16777 differ diff --git a/nodeJS/Learning/07/db/base/16384/16778 b/nodeJS/Learning/07/db/base/16384/16778 new file mode 100755 index 0000000..2da7b57 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16778 differ diff --git a/nodeJS/Learning/07/db/base/16384/16780 b/nodeJS/Learning/07/db/base/16384/16780 new file mode 100755 index 0000000..bf9bb1a Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16780 differ diff --git a/nodeJS/Learning/07/db/base/16384/16781 b/nodeJS/Learning/07/db/base/16384/16781 new file mode 100755 index 0000000..f065cfd Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16781 differ diff --git a/nodeJS/Learning/07/db/base/16384/16782 b/nodeJS/Learning/07/db/base/16384/16782 new file mode 100755 index 0000000..4a3b6fa Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16782 differ diff --git a/nodeJS/Learning/07/db/base/16384/16783 b/nodeJS/Learning/07/db/base/16384/16783 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/16384/16787 b/nodeJS/Learning/07/db/base/16384/16787 new file mode 100755 index 0000000..f418a26 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16787 differ diff --git a/nodeJS/Learning/07/db/base/16384/16789 b/nodeJS/Learning/07/db/base/16384/16789 new file mode 100755 index 0000000..fddc373 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16789 differ diff --git a/nodeJS/Learning/07/db/base/16384/16790 b/nodeJS/Learning/07/db/base/16384/16790 new file mode 100755 index 0000000..3a7843b Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16790 differ diff --git a/nodeJS/Learning/07/db/base/16384/16791 b/nodeJS/Learning/07/db/base/16384/16791 new file mode 100755 index 0000000..1d1fba0 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16791 differ diff --git a/nodeJS/Learning/07/db/base/16384/16793 b/nodeJS/Learning/07/db/base/16384/16793 new file mode 100755 index 0000000..8c33864 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16793 differ diff --git a/nodeJS/Learning/07/db/base/16384/16794 b/nodeJS/Learning/07/db/base/16384/16794 new file mode 100755 index 0000000..24f248d Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16794 differ diff --git a/nodeJS/Learning/07/db/base/16384/16795 b/nodeJS/Learning/07/db/base/16384/16795 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/16384/16799 b/nodeJS/Learning/07/db/base/16384/16799 new file mode 100755 index 0000000..6520ca5 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16799 differ diff --git a/nodeJS/Learning/07/db/base/16384/16801 b/nodeJS/Learning/07/db/base/16384/16801 new file mode 100755 index 0000000..f7692ac Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16801 differ diff --git a/nodeJS/Learning/07/db/base/16384/16802 b/nodeJS/Learning/07/db/base/16384/16802 new file mode 100755 index 0000000..01de511 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16802 differ diff --git a/nodeJS/Learning/07/db/base/16384/16803 b/nodeJS/Learning/07/db/base/16384/16803 new file mode 100755 index 0000000..32fb8a7 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16803 differ diff --git a/nodeJS/Learning/07/db/base/16384/16805 b/nodeJS/Learning/07/db/base/16384/16805 new file mode 100755 index 0000000..68c38be Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/16805 differ diff --git a/nodeJS/Learning/07/db/base/16384/17110 b/nodeJS/Learning/07/db/base/16384/17110 new file mode 100755 index 0000000..405cc36 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/17110 differ diff --git a/nodeJS/Learning/07/db/base/16384/17111 b/nodeJS/Learning/07/db/base/16384/17111 new file mode 100755 index 0000000..bde83bf Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/17111 differ diff --git a/nodeJS/Learning/07/db/base/16384/17111_fsm b/nodeJS/Learning/07/db/base/16384/17111_fsm new file mode 100755 index 0000000..13b92d9 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/17111_fsm differ diff --git a/nodeJS/Learning/07/db/base/16384/17115 b/nodeJS/Learning/07/db/base/16384/17115 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/16384/17116 b/nodeJS/Learning/07/db/base/16384/17116 new file mode 100755 index 0000000..a5e2025 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/17116 differ diff --git a/nodeJS/Learning/07/db/base/16384/17117 b/nodeJS/Learning/07/db/base/16384/17117 new file mode 100755 index 0000000..c0542db Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/17117 differ diff --git a/nodeJS/Learning/07/db/base/16384/17119 b/nodeJS/Learning/07/db/base/16384/17119 new file mode 100755 index 0000000..5d520e9 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/17119 differ diff --git a/nodeJS/Learning/07/db/base/16384/17120 b/nodeJS/Learning/07/db/base/16384/17120 new file mode 100755 index 0000000..4be70ea Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/17120 differ diff --git a/nodeJS/Learning/07/db/base/16384/17121 b/nodeJS/Learning/07/db/base/16384/17121 new file mode 100755 index 0000000..6483e88 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/17121 differ diff --git a/nodeJS/Learning/07/db/base/16384/174 b/nodeJS/Learning/07/db/base/16384/174 new file mode 100755 index 0000000..6312b18 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/174 differ diff --git a/nodeJS/Learning/07/db/base/16384/175 b/nodeJS/Learning/07/db/base/16384/175 new file mode 100755 index 0000000..0f504d0 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/175 differ diff --git a/nodeJS/Learning/07/db/base/16384/2187 b/nodeJS/Learning/07/db/base/16384/2187 new file mode 100755 index 0000000..8298625 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/2187 differ diff --git a/nodeJS/Learning/07/db/base/16384/2224 b/nodeJS/Learning/07/db/base/16384/2224 new file mode 100755 index 0000000..5080336 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/2224 differ diff --git a/nodeJS/Learning/07/db/base/16384/2228 b/nodeJS/Learning/07/db/base/16384/2228 new file mode 100755 index 0000000..da192ed Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/2228 differ diff --git a/nodeJS/Learning/07/db/base/16384/2328 b/nodeJS/Learning/07/db/base/16384/2328 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/16384/2336 b/nodeJS/Learning/07/db/base/16384/2336 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/16384/2337 b/nodeJS/Learning/07/db/base/16384/2337 new file mode 100755 index 0000000..06345c3 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/2337 differ diff --git a/nodeJS/Learning/07/db/base/16384/2579 b/nodeJS/Learning/07/db/base/16384/2579 new file mode 100755 index 0000000..55860e6 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/2579 differ diff --git a/nodeJS/Learning/07/db/base/16384/2600 b/nodeJS/Learning/07/db/base/16384/2600 new file mode 100755 index 0000000..827b5c2 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/2600 differ diff --git a/nodeJS/Learning/07/db/base/16384/2600_fsm b/nodeJS/Learning/07/db/base/16384/2600_fsm new file mode 100755 index 0000000..3f8f408 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/2600_fsm differ diff --git a/nodeJS/Learning/07/db/base/16384/2600_vm b/nodeJS/Learning/07/db/base/16384/2600_vm new file mode 100755 index 0000000..e272ed9 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/2600_vm differ diff --git a/nodeJS/Learning/07/db/base/16384/2601 b/nodeJS/Learning/07/db/base/16384/2601 new file mode 100755 index 0000000..d8001c8 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/2601 differ diff --git a/nodeJS/Learning/07/db/base/16384/2601_fsm b/nodeJS/Learning/07/db/base/16384/2601_fsm new file mode 100755 index 0000000..d388044 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/2601_fsm differ diff --git a/nodeJS/Learning/07/db/base/16384/2601_vm b/nodeJS/Learning/07/db/base/16384/2601_vm new file mode 100755 index 0000000..b1005c9 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/2601_vm differ diff --git a/nodeJS/Learning/07/db/base/16384/2602 b/nodeJS/Learning/07/db/base/16384/2602 new file mode 100755 index 0000000..4a27b0a Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/2602 differ diff --git a/nodeJS/Learning/07/db/base/16384/2602_fsm b/nodeJS/Learning/07/db/base/16384/2602_fsm new file mode 100755 index 0000000..23170d8 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/2602_fsm differ diff --git a/nodeJS/Learning/07/db/base/16384/2602_vm b/nodeJS/Learning/07/db/base/16384/2602_vm new file mode 100755 index 0000000..7857da5 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/2602_vm differ diff --git a/nodeJS/Learning/07/db/base/16384/2603 b/nodeJS/Learning/07/db/base/16384/2603 new file mode 100755 index 0000000..d511af5 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/2603 differ diff --git a/nodeJS/Learning/07/db/base/16384/2603_fsm b/nodeJS/Learning/07/db/base/16384/2603_fsm new file mode 100755 index 0000000..949bd18 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/2603_fsm differ diff --git a/nodeJS/Learning/07/db/base/16384/2603_vm b/nodeJS/Learning/07/db/base/16384/2603_vm new file mode 100755 index 0000000..5f6553e Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/2603_vm differ diff --git a/nodeJS/Learning/07/db/base/16384/2604 b/nodeJS/Learning/07/db/base/16384/2604 new file mode 100755 index 0000000..a3489b0 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/2604 differ diff --git a/nodeJS/Learning/07/db/base/16384/2604_fsm b/nodeJS/Learning/07/db/base/16384/2604_fsm new file mode 100755 index 0000000..55ef7af Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/2604_fsm differ diff --git a/nodeJS/Learning/07/db/base/16384/2605 b/nodeJS/Learning/07/db/base/16384/2605 new file mode 100755 index 0000000..287bf96 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/2605 differ diff --git a/nodeJS/Learning/07/db/base/16384/2605_fsm b/nodeJS/Learning/07/db/base/16384/2605_fsm new file mode 100755 index 0000000..c7723da Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/2605_fsm differ diff --git a/nodeJS/Learning/07/db/base/16384/2605_vm b/nodeJS/Learning/07/db/base/16384/2605_vm new file mode 100755 index 0000000..c2506c5 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/2605_vm differ diff --git a/nodeJS/Learning/07/db/base/16384/2606 b/nodeJS/Learning/07/db/base/16384/2606 new file mode 100755 index 0000000..e497d9c Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/2606 differ diff --git a/nodeJS/Learning/07/db/base/16384/2606_fsm b/nodeJS/Learning/07/db/base/16384/2606_fsm new file mode 100755 index 0000000..5217285 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/2606_fsm differ diff --git a/nodeJS/Learning/07/db/base/16384/2606_vm b/nodeJS/Learning/07/db/base/16384/2606_vm new file mode 100755 index 0000000..b59d545 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/2606_vm differ diff --git a/nodeJS/Learning/07/db/base/16384/2607 b/nodeJS/Learning/07/db/base/16384/2607 new file mode 100755 index 0000000..bfad49a Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/2607 differ diff --git a/nodeJS/Learning/07/db/base/16384/2607_fsm b/nodeJS/Learning/07/db/base/16384/2607_fsm new file mode 100755 index 0000000..80ac8b1 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/2607_fsm differ diff --git a/nodeJS/Learning/07/db/base/16384/2607_vm b/nodeJS/Learning/07/db/base/16384/2607_vm new file mode 100755 index 0000000..e731d80 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/2607_vm differ diff --git a/nodeJS/Learning/07/db/base/16384/2608 b/nodeJS/Learning/07/db/base/16384/2608 new file mode 100755 index 0000000..045e3ce Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/2608 differ diff --git a/nodeJS/Learning/07/db/base/16384/2608_fsm b/nodeJS/Learning/07/db/base/16384/2608_fsm new file mode 100755 index 0000000..e1e4491 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/2608_fsm differ diff --git a/nodeJS/Learning/07/db/base/16384/2608_vm b/nodeJS/Learning/07/db/base/16384/2608_vm new file mode 100755 index 0000000..ebe20fa Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/2608_vm differ diff --git a/nodeJS/Learning/07/db/base/16384/2609 b/nodeJS/Learning/07/db/base/16384/2609 new file mode 100755 index 0000000..c8544d2 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/2609 differ diff --git a/nodeJS/Learning/07/db/base/16384/2609_fsm b/nodeJS/Learning/07/db/base/16384/2609_fsm new file mode 100755 index 0000000..adbf4b7 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/2609_fsm differ diff --git a/nodeJS/Learning/07/db/base/16384/2609_vm b/nodeJS/Learning/07/db/base/16384/2609_vm new file mode 100755 index 0000000..57bfff5 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/2609_vm differ diff --git a/nodeJS/Learning/07/db/base/16384/2610 b/nodeJS/Learning/07/db/base/16384/2610 new file mode 100755 index 0000000..cf72877 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/2610 differ diff --git a/nodeJS/Learning/07/db/base/16384/2610_fsm b/nodeJS/Learning/07/db/base/16384/2610_fsm new file mode 100755 index 0000000..bfcb51a Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/2610_fsm differ diff --git a/nodeJS/Learning/07/db/base/16384/2610_vm b/nodeJS/Learning/07/db/base/16384/2610_vm new file mode 100755 index 0000000..2eedead Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/2610_vm differ diff --git a/nodeJS/Learning/07/db/base/16384/2611 b/nodeJS/Learning/07/db/base/16384/2611 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/16384/2612 b/nodeJS/Learning/07/db/base/16384/2612 new file mode 100755 index 0000000..7017eaf Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/2612 differ diff --git a/nodeJS/Learning/07/db/base/16384/2612_fsm b/nodeJS/Learning/07/db/base/16384/2612_fsm new file mode 100755 index 0000000..877976a Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/2612_fsm differ diff --git a/nodeJS/Learning/07/db/base/16384/2612_vm b/nodeJS/Learning/07/db/base/16384/2612_vm new file mode 100755 index 0000000..a326c5a Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/2612_vm differ diff --git a/nodeJS/Learning/07/db/base/16384/2613 b/nodeJS/Learning/07/db/base/16384/2613 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/16384/2615 b/nodeJS/Learning/07/db/base/16384/2615 new file mode 100755 index 0000000..9df3dde Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/2615 differ diff --git a/nodeJS/Learning/07/db/base/16384/2615_fsm b/nodeJS/Learning/07/db/base/16384/2615_fsm new file mode 100755 index 0000000..d041693 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/2615_fsm differ diff --git a/nodeJS/Learning/07/db/base/16384/2615_vm b/nodeJS/Learning/07/db/base/16384/2615_vm new file mode 100755 index 0000000..011172d Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/2615_vm differ diff --git a/nodeJS/Learning/07/db/base/16384/2616 b/nodeJS/Learning/07/db/base/16384/2616 new file mode 100755 index 0000000..0d60d79 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/2616 differ diff --git a/nodeJS/Learning/07/db/base/16384/2616_fsm b/nodeJS/Learning/07/db/base/16384/2616_fsm new file mode 100755 index 0000000..cb924c9 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/2616_fsm differ diff --git a/nodeJS/Learning/07/db/base/16384/2616_vm b/nodeJS/Learning/07/db/base/16384/2616_vm new file mode 100755 index 0000000..db9a53f Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/2616_vm differ diff --git a/nodeJS/Learning/07/db/base/16384/2617 b/nodeJS/Learning/07/db/base/16384/2617 new file mode 100755 index 0000000..8696551 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/2617 differ diff --git a/nodeJS/Learning/07/db/base/16384/2617_fsm b/nodeJS/Learning/07/db/base/16384/2617_fsm new file mode 100755 index 0000000..84060f4 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/2617_fsm differ diff --git a/nodeJS/Learning/07/db/base/16384/2617_vm b/nodeJS/Learning/07/db/base/16384/2617_vm new file mode 100755 index 0000000..e50deaf Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/2617_vm differ diff --git a/nodeJS/Learning/07/db/base/16384/2618 b/nodeJS/Learning/07/db/base/16384/2618 new file mode 100755 index 0000000..731e302 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/2618 differ diff --git a/nodeJS/Learning/07/db/base/16384/2618_fsm b/nodeJS/Learning/07/db/base/16384/2618_fsm new file mode 100755 index 0000000..b92d2da Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/2618_fsm differ diff --git a/nodeJS/Learning/07/db/base/16384/2618_vm b/nodeJS/Learning/07/db/base/16384/2618_vm new file mode 100755 index 0000000..31bfb22 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/2618_vm differ diff --git a/nodeJS/Learning/07/db/base/16384/2619 b/nodeJS/Learning/07/db/base/16384/2619 new file mode 100755 index 0000000..26a5426 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/2619 differ diff --git a/nodeJS/Learning/07/db/base/16384/2619_fsm b/nodeJS/Learning/07/db/base/16384/2619_fsm new file mode 100755 index 0000000..e690bc0 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/2619_fsm differ diff --git a/nodeJS/Learning/07/db/base/16384/2619_vm b/nodeJS/Learning/07/db/base/16384/2619_vm new file mode 100755 index 0000000..0c87eb6 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/2619_vm differ diff --git a/nodeJS/Learning/07/db/base/16384/2620 b/nodeJS/Learning/07/db/base/16384/2620 new file mode 100755 index 0000000..fc7b01f Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/2620 differ diff --git a/nodeJS/Learning/07/db/base/16384/2620_fsm b/nodeJS/Learning/07/db/base/16384/2620_fsm new file mode 100755 index 0000000..6ab3354 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/2620_fsm differ diff --git a/nodeJS/Learning/07/db/base/16384/2650 b/nodeJS/Learning/07/db/base/16384/2650 new file mode 100755 index 0000000..ebcc0c3 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/2650 differ diff --git a/nodeJS/Learning/07/db/base/16384/2651 b/nodeJS/Learning/07/db/base/16384/2651 new file mode 100755 index 0000000..8841a67 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/2651 differ diff --git a/nodeJS/Learning/07/db/base/16384/2652 b/nodeJS/Learning/07/db/base/16384/2652 new file mode 100755 index 0000000..11ee01d Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/2652 differ diff --git a/nodeJS/Learning/07/db/base/16384/2653 b/nodeJS/Learning/07/db/base/16384/2653 new file mode 100755 index 0000000..2b6951c Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/2653 differ diff --git a/nodeJS/Learning/07/db/base/16384/2654 b/nodeJS/Learning/07/db/base/16384/2654 new file mode 100755 index 0000000..68403a4 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/2654 differ diff --git a/nodeJS/Learning/07/db/base/16384/2655 b/nodeJS/Learning/07/db/base/16384/2655 new file mode 100755 index 0000000..8b9aa94 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/2655 differ diff --git a/nodeJS/Learning/07/db/base/16384/2656 b/nodeJS/Learning/07/db/base/16384/2656 new file mode 100755 index 0000000..49ea649 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/2656 differ diff --git a/nodeJS/Learning/07/db/base/16384/2657 b/nodeJS/Learning/07/db/base/16384/2657 new file mode 100755 index 0000000..0f88755 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/2657 differ diff --git a/nodeJS/Learning/07/db/base/16384/2658 b/nodeJS/Learning/07/db/base/16384/2658 new file mode 100755 index 0000000..fde8e5a Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/2658 differ diff --git a/nodeJS/Learning/07/db/base/16384/2659 b/nodeJS/Learning/07/db/base/16384/2659 new file mode 100755 index 0000000..d2a996c Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/2659 differ diff --git a/nodeJS/Learning/07/db/base/16384/2660 b/nodeJS/Learning/07/db/base/16384/2660 new file mode 100755 index 0000000..8862e97 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/2660 differ diff --git a/nodeJS/Learning/07/db/base/16384/2661 b/nodeJS/Learning/07/db/base/16384/2661 new file mode 100755 index 0000000..8bb39cc Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/2661 differ diff --git a/nodeJS/Learning/07/db/base/16384/2662 b/nodeJS/Learning/07/db/base/16384/2662 new file mode 100755 index 0000000..9410f05 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/2662 differ diff --git a/nodeJS/Learning/07/db/base/16384/2663 b/nodeJS/Learning/07/db/base/16384/2663 new file mode 100755 index 0000000..1c06e31 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/2663 differ diff --git a/nodeJS/Learning/07/db/base/16384/2664 b/nodeJS/Learning/07/db/base/16384/2664 new file mode 100755 index 0000000..605062c Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/2664 differ diff --git a/nodeJS/Learning/07/db/base/16384/2665 b/nodeJS/Learning/07/db/base/16384/2665 new file mode 100755 index 0000000..b616e8d Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/2665 differ diff --git a/nodeJS/Learning/07/db/base/16384/2666 b/nodeJS/Learning/07/db/base/16384/2666 new file mode 100755 index 0000000..e05557a Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/2666 differ diff --git a/nodeJS/Learning/07/db/base/16384/2667 b/nodeJS/Learning/07/db/base/16384/2667 new file mode 100755 index 0000000..c0994d3 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/2667 differ diff --git a/nodeJS/Learning/07/db/base/16384/2668 b/nodeJS/Learning/07/db/base/16384/2668 new file mode 100755 index 0000000..17439a2 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/2668 differ diff --git a/nodeJS/Learning/07/db/base/16384/2669 b/nodeJS/Learning/07/db/base/16384/2669 new file mode 100755 index 0000000..d8d8569 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/2669 differ diff --git a/nodeJS/Learning/07/db/base/16384/2670 b/nodeJS/Learning/07/db/base/16384/2670 new file mode 100755 index 0000000..97e2033 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/2670 differ diff --git a/nodeJS/Learning/07/db/base/16384/2673 b/nodeJS/Learning/07/db/base/16384/2673 new file mode 100755 index 0000000..54a6331 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/2673 differ diff --git a/nodeJS/Learning/07/db/base/16384/2673_fsm b/nodeJS/Learning/07/db/base/16384/2673_fsm new file mode 100755 index 0000000..f737ef1 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/2673_fsm differ diff --git a/nodeJS/Learning/07/db/base/16384/2674 b/nodeJS/Learning/07/db/base/16384/2674 new file mode 100755 index 0000000..c8e9ac1 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/2674 differ diff --git a/nodeJS/Learning/07/db/base/16384/2674_fsm b/nodeJS/Learning/07/db/base/16384/2674_fsm new file mode 100755 index 0000000..6ecd491 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/2674_fsm differ diff --git a/nodeJS/Learning/07/db/base/16384/2675 b/nodeJS/Learning/07/db/base/16384/2675 new file mode 100755 index 0000000..dd562dc Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/2675 differ diff --git a/nodeJS/Learning/07/db/base/16384/2678 b/nodeJS/Learning/07/db/base/16384/2678 new file mode 100755 index 0000000..af16bf7 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/2678 differ diff --git a/nodeJS/Learning/07/db/base/16384/2679 b/nodeJS/Learning/07/db/base/16384/2679 new file mode 100755 index 0000000..0b5b18f Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/2679 differ diff --git a/nodeJS/Learning/07/db/base/16384/2680 b/nodeJS/Learning/07/db/base/16384/2680 new file mode 100755 index 0000000..5fd8851 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/2680 differ diff --git a/nodeJS/Learning/07/db/base/16384/2681 b/nodeJS/Learning/07/db/base/16384/2681 new file mode 100755 index 0000000..b27e644 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/2681 differ diff --git a/nodeJS/Learning/07/db/base/16384/2682 b/nodeJS/Learning/07/db/base/16384/2682 new file mode 100755 index 0000000..110d359 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/2682 differ diff --git a/nodeJS/Learning/07/db/base/16384/2683 b/nodeJS/Learning/07/db/base/16384/2683 new file mode 100755 index 0000000..8187c58 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/2683 differ diff --git a/nodeJS/Learning/07/db/base/16384/2684 b/nodeJS/Learning/07/db/base/16384/2684 new file mode 100755 index 0000000..accf1f6 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/2684 differ diff --git a/nodeJS/Learning/07/db/base/16384/2685 b/nodeJS/Learning/07/db/base/16384/2685 new file mode 100755 index 0000000..a86f5ab Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/2685 differ diff --git a/nodeJS/Learning/07/db/base/16384/2686 b/nodeJS/Learning/07/db/base/16384/2686 new file mode 100755 index 0000000..37beb74 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/2686 differ diff --git a/nodeJS/Learning/07/db/base/16384/2687 b/nodeJS/Learning/07/db/base/16384/2687 new file mode 100755 index 0000000..20a2d34 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/2687 differ diff --git a/nodeJS/Learning/07/db/base/16384/2688 b/nodeJS/Learning/07/db/base/16384/2688 new file mode 100755 index 0000000..4cd4907 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/2688 differ diff --git a/nodeJS/Learning/07/db/base/16384/2689 b/nodeJS/Learning/07/db/base/16384/2689 new file mode 100755 index 0000000..4b12dea Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/2689 differ diff --git a/nodeJS/Learning/07/db/base/16384/2690 b/nodeJS/Learning/07/db/base/16384/2690 new file mode 100755 index 0000000..216bee6 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/2690 differ diff --git a/nodeJS/Learning/07/db/base/16384/2691 b/nodeJS/Learning/07/db/base/16384/2691 new file mode 100755 index 0000000..e08708d Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/2691 differ diff --git a/nodeJS/Learning/07/db/base/16384/2692 b/nodeJS/Learning/07/db/base/16384/2692 new file mode 100755 index 0000000..7137a2f Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/2692 differ diff --git a/nodeJS/Learning/07/db/base/16384/2693 b/nodeJS/Learning/07/db/base/16384/2693 new file mode 100755 index 0000000..1feb720 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/2693 differ diff --git a/nodeJS/Learning/07/db/base/16384/2696 b/nodeJS/Learning/07/db/base/16384/2696 new file mode 100755 index 0000000..828afe0 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/2696 differ diff --git a/nodeJS/Learning/07/db/base/16384/2699 b/nodeJS/Learning/07/db/base/16384/2699 new file mode 100755 index 0000000..b581afa Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/2699 differ diff --git a/nodeJS/Learning/07/db/base/16384/2701 b/nodeJS/Learning/07/db/base/16384/2701 new file mode 100755 index 0000000..ddf9d63 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/2701 differ diff --git a/nodeJS/Learning/07/db/base/16384/2702 b/nodeJS/Learning/07/db/base/16384/2702 new file mode 100755 index 0000000..14e83cd Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/2702 differ diff --git a/nodeJS/Learning/07/db/base/16384/2703 b/nodeJS/Learning/07/db/base/16384/2703 new file mode 100755 index 0000000..c2b65e8 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/2703 differ diff --git a/nodeJS/Learning/07/db/base/16384/2704 b/nodeJS/Learning/07/db/base/16384/2704 new file mode 100755 index 0000000..5b2ae82 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/2704 differ diff --git a/nodeJS/Learning/07/db/base/16384/2753 b/nodeJS/Learning/07/db/base/16384/2753 new file mode 100755 index 0000000..3c16dff Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/2753 differ diff --git a/nodeJS/Learning/07/db/base/16384/2753_fsm b/nodeJS/Learning/07/db/base/16384/2753_fsm new file mode 100755 index 0000000..642bce3 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/2753_fsm differ diff --git a/nodeJS/Learning/07/db/base/16384/2753_vm b/nodeJS/Learning/07/db/base/16384/2753_vm new file mode 100755 index 0000000..e8297c0 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/2753_vm differ diff --git a/nodeJS/Learning/07/db/base/16384/2754 b/nodeJS/Learning/07/db/base/16384/2754 new file mode 100755 index 0000000..0c2ef54 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/2754 differ diff --git a/nodeJS/Learning/07/db/base/16384/2755 b/nodeJS/Learning/07/db/base/16384/2755 new file mode 100755 index 0000000..5e7143b Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/2755 differ diff --git a/nodeJS/Learning/07/db/base/16384/2756 b/nodeJS/Learning/07/db/base/16384/2756 new file mode 100755 index 0000000..0758e05 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/2756 differ diff --git a/nodeJS/Learning/07/db/base/16384/2757 b/nodeJS/Learning/07/db/base/16384/2757 new file mode 100755 index 0000000..80dd62a Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/2757 differ diff --git a/nodeJS/Learning/07/db/base/16384/2830 b/nodeJS/Learning/07/db/base/16384/2830 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/16384/2831 b/nodeJS/Learning/07/db/base/16384/2831 new file mode 100755 index 0000000..61046f3 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/2831 differ diff --git a/nodeJS/Learning/07/db/base/16384/2832 b/nodeJS/Learning/07/db/base/16384/2832 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/16384/2833 b/nodeJS/Learning/07/db/base/16384/2833 new file mode 100755 index 0000000..fb3c12d Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/2833 differ diff --git a/nodeJS/Learning/07/db/base/16384/2834 b/nodeJS/Learning/07/db/base/16384/2834 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/16384/2835 b/nodeJS/Learning/07/db/base/16384/2835 new file mode 100755 index 0000000..3c05130 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/2835 differ diff --git a/nodeJS/Learning/07/db/base/16384/2836 b/nodeJS/Learning/07/db/base/16384/2836 new file mode 100755 index 0000000..71b0236 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/2836 differ diff --git a/nodeJS/Learning/07/db/base/16384/2836_fsm b/nodeJS/Learning/07/db/base/16384/2836_fsm new file mode 100755 index 0000000..4066e1e Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/2836_fsm differ diff --git a/nodeJS/Learning/07/db/base/16384/2836_vm b/nodeJS/Learning/07/db/base/16384/2836_vm new file mode 100755 index 0000000..b7f6a9f Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/2836_vm differ diff --git a/nodeJS/Learning/07/db/base/16384/2837 b/nodeJS/Learning/07/db/base/16384/2837 new file mode 100755 index 0000000..be6efc3 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/2837 differ diff --git a/nodeJS/Learning/07/db/base/16384/2838 b/nodeJS/Learning/07/db/base/16384/2838 new file mode 100755 index 0000000..9d46e70 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/2838 differ diff --git a/nodeJS/Learning/07/db/base/16384/2838_fsm b/nodeJS/Learning/07/db/base/16384/2838_fsm new file mode 100755 index 0000000..4cc1630 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/2838_fsm differ diff --git a/nodeJS/Learning/07/db/base/16384/2838_vm b/nodeJS/Learning/07/db/base/16384/2838_vm new file mode 100755 index 0000000..46e0e3d Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/2838_vm differ diff --git a/nodeJS/Learning/07/db/base/16384/2839 b/nodeJS/Learning/07/db/base/16384/2839 new file mode 100755 index 0000000..bd20a46 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/2839 differ diff --git a/nodeJS/Learning/07/db/base/16384/2840 b/nodeJS/Learning/07/db/base/16384/2840 new file mode 100755 index 0000000..0388d71 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/2840 differ diff --git a/nodeJS/Learning/07/db/base/16384/2840_fsm b/nodeJS/Learning/07/db/base/16384/2840_fsm new file mode 100755 index 0000000..49de392 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/2840_fsm differ diff --git a/nodeJS/Learning/07/db/base/16384/2840_vm b/nodeJS/Learning/07/db/base/16384/2840_vm new file mode 100755 index 0000000..f626c96 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/2840_vm differ diff --git a/nodeJS/Learning/07/db/base/16384/2841 b/nodeJS/Learning/07/db/base/16384/2841 new file mode 100755 index 0000000..757b444 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/2841 differ diff --git a/nodeJS/Learning/07/db/base/16384/2995 b/nodeJS/Learning/07/db/base/16384/2995 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/16384/2996 b/nodeJS/Learning/07/db/base/16384/2996 new file mode 100755 index 0000000..94563e7 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/2996 differ diff --git a/nodeJS/Learning/07/db/base/16384/3079 b/nodeJS/Learning/07/db/base/16384/3079 new file mode 100755 index 0000000..c14c1a8 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/3079 differ diff --git a/nodeJS/Learning/07/db/base/16384/3079_fsm b/nodeJS/Learning/07/db/base/16384/3079_fsm new file mode 100755 index 0000000..7732d22 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/3079_fsm differ diff --git a/nodeJS/Learning/07/db/base/16384/3079_vm b/nodeJS/Learning/07/db/base/16384/3079_vm new file mode 100755 index 0000000..ef81260 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/3079_vm differ diff --git a/nodeJS/Learning/07/db/base/16384/3080 b/nodeJS/Learning/07/db/base/16384/3080 new file mode 100755 index 0000000..560b8bf Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/3080 differ diff --git a/nodeJS/Learning/07/db/base/16384/3081 b/nodeJS/Learning/07/db/base/16384/3081 new file mode 100755 index 0000000..1de691e Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/3081 differ diff --git a/nodeJS/Learning/07/db/base/16384/3085 b/nodeJS/Learning/07/db/base/16384/3085 new file mode 100755 index 0000000..27571b6 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/3085 differ diff --git a/nodeJS/Learning/07/db/base/16384/3118 b/nodeJS/Learning/07/db/base/16384/3118 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/16384/3119 b/nodeJS/Learning/07/db/base/16384/3119 new file mode 100755 index 0000000..c0d08b7 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/3119 differ diff --git a/nodeJS/Learning/07/db/base/16384/3164 b/nodeJS/Learning/07/db/base/16384/3164 new file mode 100755 index 0000000..3faa559 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/3164 differ diff --git a/nodeJS/Learning/07/db/base/16384/3256 b/nodeJS/Learning/07/db/base/16384/3256 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/16384/3257 b/nodeJS/Learning/07/db/base/16384/3257 new file mode 100755 index 0000000..85937d2 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/3257 differ diff --git a/nodeJS/Learning/07/db/base/16384/3258 b/nodeJS/Learning/07/db/base/16384/3258 new file mode 100755 index 0000000..5f252a3 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/3258 differ diff --git a/nodeJS/Learning/07/db/base/16384/3350 b/nodeJS/Learning/07/db/base/16384/3350 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/16384/3351 b/nodeJS/Learning/07/db/base/16384/3351 new file mode 100755 index 0000000..0aecbb3 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/3351 differ diff --git a/nodeJS/Learning/07/db/base/16384/3379 b/nodeJS/Learning/07/db/base/16384/3379 new file mode 100755 index 0000000..9cc56f1 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/3379 differ diff --git a/nodeJS/Learning/07/db/base/16384/3380 b/nodeJS/Learning/07/db/base/16384/3380 new file mode 100755 index 0000000..896db3e Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/3380 differ diff --git a/nodeJS/Learning/07/db/base/16384/3381 b/nodeJS/Learning/07/db/base/16384/3381 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/16384/3394 b/nodeJS/Learning/07/db/base/16384/3394 new file mode 100755 index 0000000..0d1ce52 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/3394 differ diff --git a/nodeJS/Learning/07/db/base/16384/3394_fsm b/nodeJS/Learning/07/db/base/16384/3394_fsm new file mode 100755 index 0000000..f8d6070 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/3394_fsm differ diff --git a/nodeJS/Learning/07/db/base/16384/3394_vm b/nodeJS/Learning/07/db/base/16384/3394_vm new file mode 100755 index 0000000..5ad9145 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/3394_vm differ diff --git a/nodeJS/Learning/07/db/base/16384/3395 b/nodeJS/Learning/07/db/base/16384/3395 new file mode 100755 index 0000000..154db37 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/3395 differ diff --git a/nodeJS/Learning/07/db/base/16384/3429 b/nodeJS/Learning/07/db/base/16384/3429 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/16384/3430 b/nodeJS/Learning/07/db/base/16384/3430 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/16384/3431 b/nodeJS/Learning/07/db/base/16384/3431 new file mode 100755 index 0000000..8a6528d Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/3431 differ diff --git a/nodeJS/Learning/07/db/base/16384/3433 b/nodeJS/Learning/07/db/base/16384/3433 new file mode 100755 index 0000000..0c4736b Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/3433 differ diff --git a/nodeJS/Learning/07/db/base/16384/3439 b/nodeJS/Learning/07/db/base/16384/3439 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/16384/3440 b/nodeJS/Learning/07/db/base/16384/3440 new file mode 100755 index 0000000..1174715 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/3440 differ diff --git a/nodeJS/Learning/07/db/base/16384/3455 b/nodeJS/Learning/07/db/base/16384/3455 new file mode 100755 index 0000000..af1bfc4 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/3455 differ diff --git a/nodeJS/Learning/07/db/base/16384/3456 b/nodeJS/Learning/07/db/base/16384/3456 new file mode 100755 index 0000000..7f3559d Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/3456 differ diff --git a/nodeJS/Learning/07/db/base/16384/3456_fsm b/nodeJS/Learning/07/db/base/16384/3456_fsm new file mode 100755 index 0000000..fc8f8b8 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/3456_fsm differ diff --git a/nodeJS/Learning/07/db/base/16384/3456_vm b/nodeJS/Learning/07/db/base/16384/3456_vm new file mode 100755 index 0000000..016a644 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/3456_vm differ diff --git a/nodeJS/Learning/07/db/base/16384/3466 b/nodeJS/Learning/07/db/base/16384/3466 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/16384/3467 b/nodeJS/Learning/07/db/base/16384/3467 new file mode 100755 index 0000000..020deba Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/3467 differ diff --git a/nodeJS/Learning/07/db/base/16384/3468 b/nodeJS/Learning/07/db/base/16384/3468 new file mode 100755 index 0000000..a37352a Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/3468 differ diff --git a/nodeJS/Learning/07/db/base/16384/3501 b/nodeJS/Learning/07/db/base/16384/3501 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/16384/3502 b/nodeJS/Learning/07/db/base/16384/3502 new file mode 100755 index 0000000..94e5e8e Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/3502 differ diff --git a/nodeJS/Learning/07/db/base/16384/3503 b/nodeJS/Learning/07/db/base/16384/3503 new file mode 100755 index 0000000..df8e743 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/3503 differ diff --git a/nodeJS/Learning/07/db/base/16384/3534 b/nodeJS/Learning/07/db/base/16384/3534 new file mode 100755 index 0000000..98d4854 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/3534 differ diff --git a/nodeJS/Learning/07/db/base/16384/3541 b/nodeJS/Learning/07/db/base/16384/3541 new file mode 100755 index 0000000..40869ad Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/3541 differ diff --git a/nodeJS/Learning/07/db/base/16384/3541_fsm b/nodeJS/Learning/07/db/base/16384/3541_fsm new file mode 100755 index 0000000..a3a2de4 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/3541_fsm differ diff --git a/nodeJS/Learning/07/db/base/16384/3541_vm b/nodeJS/Learning/07/db/base/16384/3541_vm new file mode 100755 index 0000000..794ff8a Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/3541_vm differ diff --git a/nodeJS/Learning/07/db/base/16384/3542 b/nodeJS/Learning/07/db/base/16384/3542 new file mode 100755 index 0000000..ee21b6a Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/3542 differ diff --git a/nodeJS/Learning/07/db/base/16384/3574 b/nodeJS/Learning/07/db/base/16384/3574 new file mode 100755 index 0000000..418bbca Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/3574 differ diff --git a/nodeJS/Learning/07/db/base/16384/3575 b/nodeJS/Learning/07/db/base/16384/3575 new file mode 100755 index 0000000..6addf86 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/3575 differ diff --git a/nodeJS/Learning/07/db/base/16384/3576 b/nodeJS/Learning/07/db/base/16384/3576 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/16384/3596 b/nodeJS/Learning/07/db/base/16384/3596 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/16384/3597 b/nodeJS/Learning/07/db/base/16384/3597 new file mode 100755 index 0000000..71d2820 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/3597 differ diff --git a/nodeJS/Learning/07/db/base/16384/3598 b/nodeJS/Learning/07/db/base/16384/3598 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/16384/3599 b/nodeJS/Learning/07/db/base/16384/3599 new file mode 100755 index 0000000..20c4969 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/3599 differ diff --git a/nodeJS/Learning/07/db/base/16384/3600 b/nodeJS/Learning/07/db/base/16384/3600 new file mode 100755 index 0000000..f8fd22f Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/3600 differ diff --git a/nodeJS/Learning/07/db/base/16384/3600_fsm b/nodeJS/Learning/07/db/base/16384/3600_fsm new file mode 100755 index 0000000..cebec19 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/3600_fsm differ diff --git a/nodeJS/Learning/07/db/base/16384/3600_vm b/nodeJS/Learning/07/db/base/16384/3600_vm new file mode 100755 index 0000000..e552bd7 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/3600_vm differ diff --git a/nodeJS/Learning/07/db/base/16384/3601 b/nodeJS/Learning/07/db/base/16384/3601 new file mode 100755 index 0000000..04c846e Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/3601 differ diff --git a/nodeJS/Learning/07/db/base/16384/3601_fsm b/nodeJS/Learning/07/db/base/16384/3601_fsm new file mode 100755 index 0000000..7732d22 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/3601_fsm differ diff --git a/nodeJS/Learning/07/db/base/16384/3601_vm b/nodeJS/Learning/07/db/base/16384/3601_vm new file mode 100755 index 0000000..107bd5e Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/3601_vm differ diff --git a/nodeJS/Learning/07/db/base/16384/3602 b/nodeJS/Learning/07/db/base/16384/3602 new file mode 100755 index 0000000..3312c40 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/3602 differ diff --git a/nodeJS/Learning/07/db/base/16384/3602_fsm b/nodeJS/Learning/07/db/base/16384/3602_fsm new file mode 100755 index 0000000..d7897de Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/3602_fsm differ diff --git a/nodeJS/Learning/07/db/base/16384/3602_vm b/nodeJS/Learning/07/db/base/16384/3602_vm new file mode 100755 index 0000000..8ccfa65 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/3602_vm differ diff --git a/nodeJS/Learning/07/db/base/16384/3603 b/nodeJS/Learning/07/db/base/16384/3603 new file mode 100755 index 0000000..0ab1d5d Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/3603 differ diff --git a/nodeJS/Learning/07/db/base/16384/3603_fsm b/nodeJS/Learning/07/db/base/16384/3603_fsm new file mode 100755 index 0000000..c28dd4f Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/3603_fsm differ diff --git a/nodeJS/Learning/07/db/base/16384/3603_vm b/nodeJS/Learning/07/db/base/16384/3603_vm new file mode 100755 index 0000000..0520389 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/3603_vm differ diff --git a/nodeJS/Learning/07/db/base/16384/3604 b/nodeJS/Learning/07/db/base/16384/3604 new file mode 100755 index 0000000..e17cc51 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/3604 differ diff --git a/nodeJS/Learning/07/db/base/16384/3605 b/nodeJS/Learning/07/db/base/16384/3605 new file mode 100755 index 0000000..351139b Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/3605 differ diff --git a/nodeJS/Learning/07/db/base/16384/3606 b/nodeJS/Learning/07/db/base/16384/3606 new file mode 100755 index 0000000..de60e2f Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/3606 differ diff --git a/nodeJS/Learning/07/db/base/16384/3607 b/nodeJS/Learning/07/db/base/16384/3607 new file mode 100755 index 0000000..ff53735 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/3607 differ diff --git a/nodeJS/Learning/07/db/base/16384/3608 b/nodeJS/Learning/07/db/base/16384/3608 new file mode 100755 index 0000000..7cc12cf Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/3608 differ diff --git a/nodeJS/Learning/07/db/base/16384/3609 b/nodeJS/Learning/07/db/base/16384/3609 new file mode 100755 index 0000000..f97c4c3 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/3609 differ diff --git a/nodeJS/Learning/07/db/base/16384/3712 b/nodeJS/Learning/07/db/base/16384/3712 new file mode 100755 index 0000000..6b682ba Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/3712 differ diff --git a/nodeJS/Learning/07/db/base/16384/3764 b/nodeJS/Learning/07/db/base/16384/3764 new file mode 100755 index 0000000..560a763 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/3764 differ diff --git a/nodeJS/Learning/07/db/base/16384/3764_fsm b/nodeJS/Learning/07/db/base/16384/3764_fsm new file mode 100755 index 0000000..f64db4d Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/3764_fsm differ diff --git a/nodeJS/Learning/07/db/base/16384/3764_vm b/nodeJS/Learning/07/db/base/16384/3764_vm new file mode 100755 index 0000000..27a13ad Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/3764_vm differ diff --git a/nodeJS/Learning/07/db/base/16384/3766 b/nodeJS/Learning/07/db/base/16384/3766 new file mode 100755 index 0000000..5993ce9 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/3766 differ diff --git a/nodeJS/Learning/07/db/base/16384/3767 b/nodeJS/Learning/07/db/base/16384/3767 new file mode 100755 index 0000000..fa65de6 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/3767 differ diff --git a/nodeJS/Learning/07/db/base/16384/3997 b/nodeJS/Learning/07/db/base/16384/3997 new file mode 100755 index 0000000..3832f55 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/3997 differ diff --git a/nodeJS/Learning/07/db/base/16384/4143 b/nodeJS/Learning/07/db/base/16384/4143 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/16384/4144 b/nodeJS/Learning/07/db/base/16384/4144 new file mode 100755 index 0000000..178af33 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/4144 differ diff --git a/nodeJS/Learning/07/db/base/16384/4145 b/nodeJS/Learning/07/db/base/16384/4145 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/16384/4146 b/nodeJS/Learning/07/db/base/16384/4146 new file mode 100755 index 0000000..bb603a6 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/4146 differ diff --git a/nodeJS/Learning/07/db/base/16384/4147 b/nodeJS/Learning/07/db/base/16384/4147 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/16384/4148 b/nodeJS/Learning/07/db/base/16384/4148 new file mode 100755 index 0000000..87c330b Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/4148 differ diff --git a/nodeJS/Learning/07/db/base/16384/4149 b/nodeJS/Learning/07/db/base/16384/4149 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/16384/4150 b/nodeJS/Learning/07/db/base/16384/4150 new file mode 100755 index 0000000..2085995 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/4150 differ diff --git a/nodeJS/Learning/07/db/base/16384/4151 b/nodeJS/Learning/07/db/base/16384/4151 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/16384/4152 b/nodeJS/Learning/07/db/base/16384/4152 new file mode 100755 index 0000000..23407ab Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/4152 differ diff --git a/nodeJS/Learning/07/db/base/16384/4153 b/nodeJS/Learning/07/db/base/16384/4153 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/16384/4154 b/nodeJS/Learning/07/db/base/16384/4154 new file mode 100755 index 0000000..edaed60 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/4154 differ diff --git a/nodeJS/Learning/07/db/base/16384/4155 b/nodeJS/Learning/07/db/base/16384/4155 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/16384/4156 b/nodeJS/Learning/07/db/base/16384/4156 new file mode 100755 index 0000000..f0c50e4 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/4156 differ diff --git a/nodeJS/Learning/07/db/base/16384/4157 b/nodeJS/Learning/07/db/base/16384/4157 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/16384/4158 b/nodeJS/Learning/07/db/base/16384/4158 new file mode 100755 index 0000000..d45296c Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/4158 differ diff --git a/nodeJS/Learning/07/db/base/16384/4159 b/nodeJS/Learning/07/db/base/16384/4159 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/16384/4160 b/nodeJS/Learning/07/db/base/16384/4160 new file mode 100755 index 0000000..e0fd4e1 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/4160 differ diff --git a/nodeJS/Learning/07/db/base/16384/4163 b/nodeJS/Learning/07/db/base/16384/4163 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/16384/4164 b/nodeJS/Learning/07/db/base/16384/4164 new file mode 100755 index 0000000..9a3435b Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/4164 differ diff --git a/nodeJS/Learning/07/db/base/16384/4165 b/nodeJS/Learning/07/db/base/16384/4165 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/16384/4166 b/nodeJS/Learning/07/db/base/16384/4166 new file mode 100755 index 0000000..be076db Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/4166 differ diff --git a/nodeJS/Learning/07/db/base/16384/4167 b/nodeJS/Learning/07/db/base/16384/4167 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/16384/4168 b/nodeJS/Learning/07/db/base/16384/4168 new file mode 100755 index 0000000..976615c Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/4168 differ diff --git a/nodeJS/Learning/07/db/base/16384/4169 b/nodeJS/Learning/07/db/base/16384/4169 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/16384/4170 b/nodeJS/Learning/07/db/base/16384/4170 new file mode 100755 index 0000000..f33abe0 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/4170 differ diff --git a/nodeJS/Learning/07/db/base/16384/4171 b/nodeJS/Learning/07/db/base/16384/4171 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/16384/4172 b/nodeJS/Learning/07/db/base/16384/4172 new file mode 100755 index 0000000..bfa5606 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/4172 differ diff --git a/nodeJS/Learning/07/db/base/16384/4173 b/nodeJS/Learning/07/db/base/16384/4173 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/16384/4174 b/nodeJS/Learning/07/db/base/16384/4174 new file mode 100755 index 0000000..8a80490 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/4174 differ diff --git a/nodeJS/Learning/07/db/base/16384/5002 b/nodeJS/Learning/07/db/base/16384/5002 new file mode 100755 index 0000000..480bf3d Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/5002 differ diff --git a/nodeJS/Learning/07/db/base/16384/548 b/nodeJS/Learning/07/db/base/16384/548 new file mode 100755 index 0000000..9f21947 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/548 differ diff --git a/nodeJS/Learning/07/db/base/16384/549 b/nodeJS/Learning/07/db/base/16384/549 new file mode 100755 index 0000000..68efb3f Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/549 differ diff --git a/nodeJS/Learning/07/db/base/16384/6102 b/nodeJS/Learning/07/db/base/16384/6102 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/16384/6104 b/nodeJS/Learning/07/db/base/16384/6104 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/16384/6106 b/nodeJS/Learning/07/db/base/16384/6106 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/16384/6110 b/nodeJS/Learning/07/db/base/16384/6110 new file mode 100755 index 0000000..536b80d Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/6110 differ diff --git a/nodeJS/Learning/07/db/base/16384/6111 b/nodeJS/Learning/07/db/base/16384/6111 new file mode 100755 index 0000000..3d22c94 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/6111 differ diff --git a/nodeJS/Learning/07/db/base/16384/6112 b/nodeJS/Learning/07/db/base/16384/6112 new file mode 100755 index 0000000..9e47d5c Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/6112 differ diff --git a/nodeJS/Learning/07/db/base/16384/6113 b/nodeJS/Learning/07/db/base/16384/6113 new file mode 100755 index 0000000..4e57f5b Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/6113 differ diff --git a/nodeJS/Learning/07/db/base/16384/6117 b/nodeJS/Learning/07/db/base/16384/6117 new file mode 100755 index 0000000..296b14e Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/6117 differ diff --git a/nodeJS/Learning/07/db/base/16384/6175 b/nodeJS/Learning/07/db/base/16384/6175 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/16384/6176 b/nodeJS/Learning/07/db/base/16384/6176 new file mode 100755 index 0000000..a349a04 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/6176 differ diff --git a/nodeJS/Learning/07/db/base/16384/826 b/nodeJS/Learning/07/db/base/16384/826 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/base/16384/827 b/nodeJS/Learning/07/db/base/16384/827 new file mode 100755 index 0000000..86db9fe Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/827 differ diff --git a/nodeJS/Learning/07/db/base/16384/828 b/nodeJS/Learning/07/db/base/16384/828 new file mode 100755 index 0000000..4a52299 Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/828 differ diff --git a/nodeJS/Learning/07/db/base/16384/PG_VERSION b/nodeJS/Learning/07/db/base/16384/PG_VERSION new file mode 100755 index 0000000..8351c19 --- /dev/null +++ b/nodeJS/Learning/07/db/base/16384/PG_VERSION @@ -0,0 +1 @@ +14 diff --git a/nodeJS/Learning/07/db/base/16384/pg_filenode.map b/nodeJS/Learning/07/db/base/16384/pg_filenode.map new file mode 100755 index 0000000..193d78f Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/pg_filenode.map differ diff --git a/nodeJS/Learning/07/db/base/16384/pg_internal.init b/nodeJS/Learning/07/db/base/16384/pg_internal.init new file mode 100755 index 0000000..6474f9b Binary files /dev/null and b/nodeJS/Learning/07/db/base/16384/pg_internal.init differ diff --git a/nodeJS/Learning/07/db/global/1213 b/nodeJS/Learning/07/db/global/1213 new file mode 100755 index 0000000..eec8dc3 Binary files /dev/null and b/nodeJS/Learning/07/db/global/1213 differ diff --git a/nodeJS/Learning/07/db/global/1213_fsm b/nodeJS/Learning/07/db/global/1213_fsm new file mode 100755 index 0000000..86074be Binary files /dev/null and b/nodeJS/Learning/07/db/global/1213_fsm differ diff --git a/nodeJS/Learning/07/db/global/1213_vm b/nodeJS/Learning/07/db/global/1213_vm new file mode 100755 index 0000000..0218bac Binary files /dev/null and b/nodeJS/Learning/07/db/global/1213_vm differ diff --git a/nodeJS/Learning/07/db/global/1214 b/nodeJS/Learning/07/db/global/1214 new file mode 100755 index 0000000..d4d89d8 Binary files /dev/null and b/nodeJS/Learning/07/db/global/1214 differ diff --git a/nodeJS/Learning/07/db/global/1214_fsm b/nodeJS/Learning/07/db/global/1214_fsm new file mode 100755 index 0000000..81fa96e Binary files /dev/null and b/nodeJS/Learning/07/db/global/1214_fsm differ diff --git a/nodeJS/Learning/07/db/global/1214_vm b/nodeJS/Learning/07/db/global/1214_vm new file mode 100755 index 0000000..fda50ea Binary files /dev/null and b/nodeJS/Learning/07/db/global/1214_vm differ diff --git a/nodeJS/Learning/07/db/global/1232 b/nodeJS/Learning/07/db/global/1232 new file mode 100755 index 0000000..a6493f5 Binary files /dev/null and b/nodeJS/Learning/07/db/global/1232 differ diff --git a/nodeJS/Learning/07/db/global/1233 b/nodeJS/Learning/07/db/global/1233 new file mode 100755 index 0000000..5764580 Binary files /dev/null and b/nodeJS/Learning/07/db/global/1233 differ diff --git a/nodeJS/Learning/07/db/global/1260 b/nodeJS/Learning/07/db/global/1260 new file mode 100755 index 0000000..2a0756a Binary files /dev/null and b/nodeJS/Learning/07/db/global/1260 differ diff --git a/nodeJS/Learning/07/db/global/1260_fsm b/nodeJS/Learning/07/db/global/1260_fsm new file mode 100755 index 0000000..016717f Binary files /dev/null and b/nodeJS/Learning/07/db/global/1260_fsm differ diff --git a/nodeJS/Learning/07/db/global/1260_vm b/nodeJS/Learning/07/db/global/1260_vm new file mode 100755 index 0000000..0639d77 Binary files /dev/null and b/nodeJS/Learning/07/db/global/1260_vm differ diff --git a/nodeJS/Learning/07/db/global/1261 b/nodeJS/Learning/07/db/global/1261 new file mode 100755 index 0000000..abf6a9b Binary files /dev/null and b/nodeJS/Learning/07/db/global/1261 differ diff --git a/nodeJS/Learning/07/db/global/1261_fsm b/nodeJS/Learning/07/db/global/1261_fsm new file mode 100755 index 0000000..7732d22 Binary files /dev/null and b/nodeJS/Learning/07/db/global/1261_fsm differ diff --git a/nodeJS/Learning/07/db/global/1261_vm b/nodeJS/Learning/07/db/global/1261_vm new file mode 100755 index 0000000..33e69b7 Binary files /dev/null and b/nodeJS/Learning/07/db/global/1261_vm differ diff --git a/nodeJS/Learning/07/db/global/1262 b/nodeJS/Learning/07/db/global/1262 new file mode 100755 index 0000000..7140728 Binary files /dev/null and b/nodeJS/Learning/07/db/global/1262 differ diff --git a/nodeJS/Learning/07/db/global/1262_fsm b/nodeJS/Learning/07/db/global/1262_fsm new file mode 100755 index 0000000..b49966f Binary files /dev/null and b/nodeJS/Learning/07/db/global/1262_fsm differ diff --git a/nodeJS/Learning/07/db/global/1262_vm b/nodeJS/Learning/07/db/global/1262_vm new file mode 100755 index 0000000..61e5402 Binary files /dev/null and b/nodeJS/Learning/07/db/global/1262_vm differ diff --git a/nodeJS/Learning/07/db/global/2396 b/nodeJS/Learning/07/db/global/2396 new file mode 100755 index 0000000..7a04a2f Binary files /dev/null and b/nodeJS/Learning/07/db/global/2396 differ diff --git a/nodeJS/Learning/07/db/global/2396_fsm b/nodeJS/Learning/07/db/global/2396_fsm new file mode 100755 index 0000000..7a4f24f Binary files /dev/null and b/nodeJS/Learning/07/db/global/2396_fsm differ diff --git a/nodeJS/Learning/07/db/global/2396_vm b/nodeJS/Learning/07/db/global/2396_vm new file mode 100755 index 0000000..8b85d69 Binary files /dev/null and b/nodeJS/Learning/07/db/global/2396_vm differ diff --git a/nodeJS/Learning/07/db/global/2397 b/nodeJS/Learning/07/db/global/2397 new file mode 100755 index 0000000..0eed3c8 Binary files /dev/null and b/nodeJS/Learning/07/db/global/2397 differ diff --git a/nodeJS/Learning/07/db/global/2671 b/nodeJS/Learning/07/db/global/2671 new file mode 100755 index 0000000..51f32ba Binary files /dev/null and b/nodeJS/Learning/07/db/global/2671 differ diff --git a/nodeJS/Learning/07/db/global/2672 b/nodeJS/Learning/07/db/global/2672 new file mode 100755 index 0000000..74cbf48 Binary files /dev/null and b/nodeJS/Learning/07/db/global/2672 differ diff --git a/nodeJS/Learning/07/db/global/2676 b/nodeJS/Learning/07/db/global/2676 new file mode 100755 index 0000000..9841307 Binary files /dev/null and b/nodeJS/Learning/07/db/global/2676 differ diff --git a/nodeJS/Learning/07/db/global/2677 b/nodeJS/Learning/07/db/global/2677 new file mode 100755 index 0000000..d4449ca Binary files /dev/null and b/nodeJS/Learning/07/db/global/2677 differ diff --git a/nodeJS/Learning/07/db/global/2694 b/nodeJS/Learning/07/db/global/2694 new file mode 100755 index 0000000..846464c Binary files /dev/null and b/nodeJS/Learning/07/db/global/2694 differ diff --git a/nodeJS/Learning/07/db/global/2695 b/nodeJS/Learning/07/db/global/2695 new file mode 100755 index 0000000..abf6d41 Binary files /dev/null and b/nodeJS/Learning/07/db/global/2695 differ diff --git a/nodeJS/Learning/07/db/global/2697 b/nodeJS/Learning/07/db/global/2697 new file mode 100755 index 0000000..f2091ee Binary files /dev/null and b/nodeJS/Learning/07/db/global/2697 differ diff --git a/nodeJS/Learning/07/db/global/2698 b/nodeJS/Learning/07/db/global/2698 new file mode 100755 index 0000000..20c5991 Binary files /dev/null and b/nodeJS/Learning/07/db/global/2698 differ diff --git a/nodeJS/Learning/07/db/global/2846 b/nodeJS/Learning/07/db/global/2846 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/global/2847 b/nodeJS/Learning/07/db/global/2847 new file mode 100755 index 0000000..ff7b16b Binary files /dev/null and b/nodeJS/Learning/07/db/global/2847 differ diff --git a/nodeJS/Learning/07/db/global/2964 b/nodeJS/Learning/07/db/global/2964 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/global/2965 b/nodeJS/Learning/07/db/global/2965 new file mode 100755 index 0000000..9630b15 Binary files /dev/null and b/nodeJS/Learning/07/db/global/2965 differ diff --git a/nodeJS/Learning/07/db/global/2966 b/nodeJS/Learning/07/db/global/2966 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/global/2967 b/nodeJS/Learning/07/db/global/2967 new file mode 100755 index 0000000..e25cac6 Binary files /dev/null and b/nodeJS/Learning/07/db/global/2967 differ diff --git a/nodeJS/Learning/07/db/global/3592 b/nodeJS/Learning/07/db/global/3592 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/global/3593 b/nodeJS/Learning/07/db/global/3593 new file mode 100755 index 0000000..29c042c Binary files /dev/null and b/nodeJS/Learning/07/db/global/3593 differ diff --git a/nodeJS/Learning/07/db/global/4060 b/nodeJS/Learning/07/db/global/4060 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/global/4061 b/nodeJS/Learning/07/db/global/4061 new file mode 100755 index 0000000..3c59393 Binary files /dev/null and b/nodeJS/Learning/07/db/global/4061 differ diff --git a/nodeJS/Learning/07/db/global/4175 b/nodeJS/Learning/07/db/global/4175 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/global/4176 b/nodeJS/Learning/07/db/global/4176 new file mode 100755 index 0000000..cc3544c Binary files /dev/null and b/nodeJS/Learning/07/db/global/4176 differ diff --git a/nodeJS/Learning/07/db/global/4177 b/nodeJS/Learning/07/db/global/4177 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/global/4178 b/nodeJS/Learning/07/db/global/4178 new file mode 100755 index 0000000..cf50fc6 Binary files /dev/null and b/nodeJS/Learning/07/db/global/4178 differ diff --git a/nodeJS/Learning/07/db/global/4181 b/nodeJS/Learning/07/db/global/4181 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/global/4182 b/nodeJS/Learning/07/db/global/4182 new file mode 100755 index 0000000..8634d77 Binary files /dev/null and b/nodeJS/Learning/07/db/global/4182 differ diff --git a/nodeJS/Learning/07/db/global/4183 b/nodeJS/Learning/07/db/global/4183 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/global/4184 b/nodeJS/Learning/07/db/global/4184 new file mode 100755 index 0000000..0b345c8 Binary files /dev/null and b/nodeJS/Learning/07/db/global/4184 differ diff --git a/nodeJS/Learning/07/db/global/4185 b/nodeJS/Learning/07/db/global/4185 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/global/4186 b/nodeJS/Learning/07/db/global/4186 new file mode 100755 index 0000000..6d7545b Binary files /dev/null and b/nodeJS/Learning/07/db/global/4186 differ diff --git a/nodeJS/Learning/07/db/global/6000 b/nodeJS/Learning/07/db/global/6000 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/global/6001 b/nodeJS/Learning/07/db/global/6001 new file mode 100755 index 0000000..ed048fa Binary files /dev/null and b/nodeJS/Learning/07/db/global/6001 differ diff --git a/nodeJS/Learning/07/db/global/6002 b/nodeJS/Learning/07/db/global/6002 new file mode 100755 index 0000000..8f0fa32 Binary files /dev/null and b/nodeJS/Learning/07/db/global/6002 differ diff --git a/nodeJS/Learning/07/db/global/6100 b/nodeJS/Learning/07/db/global/6100 new file mode 100755 index 0000000..e69de29 diff --git a/nodeJS/Learning/07/db/global/6114 b/nodeJS/Learning/07/db/global/6114 new file mode 100755 index 0000000..8fb4dcd Binary files /dev/null and b/nodeJS/Learning/07/db/global/6114 differ diff --git a/nodeJS/Learning/07/db/global/6115 b/nodeJS/Learning/07/db/global/6115 new file mode 100755 index 0000000..8bc0135 Binary files /dev/null and b/nodeJS/Learning/07/db/global/6115 differ diff --git a/nodeJS/Learning/07/db/global/pg_control b/nodeJS/Learning/07/db/global/pg_control new file mode 100755 index 0000000..d23baf8 Binary files /dev/null and b/nodeJS/Learning/07/db/global/pg_control differ diff --git a/nodeJS/Learning/07/db/global/pg_filenode.map b/nodeJS/Learning/07/db/global/pg_filenode.map new file mode 100755 index 0000000..ec4cded Binary files /dev/null and b/nodeJS/Learning/07/db/global/pg_filenode.map differ diff --git a/nodeJS/Learning/07/db/global/pg_internal.init b/nodeJS/Learning/07/db/global/pg_internal.init new file mode 100755 index 0000000..a015eec Binary files /dev/null and b/nodeJS/Learning/07/db/global/pg_internal.init differ diff --git a/nodeJS/Learning/07/db/pg_hba.conf b/nodeJS/Learning/07/db/pg_hba.conf new file mode 100755 index 0000000..4e202d3 --- /dev/null +++ b/nodeJS/Learning/07/db/pg_hba.conf @@ -0,0 +1,100 @@ +# PostgreSQL Client Authentication Configuration File +# =================================================== +# +# Refer to the "Client Authentication" section in the PostgreSQL +# documentation for a complete description of this file. A short +# synopsis follows. +# +# This file controls: which hosts are allowed to connect, how clients +# are authenticated, which PostgreSQL user names they can use, which +# databases they can access. Records take one of these forms: +# +# local DATABASE USER METHOD [OPTIONS] +# host DATABASE USER ADDRESS METHOD [OPTIONS] +# hostssl DATABASE USER ADDRESS METHOD [OPTIONS] +# hostnossl DATABASE USER ADDRESS METHOD [OPTIONS] +# hostgssenc DATABASE USER ADDRESS METHOD [OPTIONS] +# hostnogssenc DATABASE USER ADDRESS METHOD [OPTIONS] +# +# (The uppercase items must be replaced by actual values.) +# +# The first field is the connection type: +# - "local" is a Unix-domain socket +# - "host" is a TCP/IP socket (encrypted or not) +# - "hostssl" is a TCP/IP socket that is SSL-encrypted +# - "hostnossl" is a TCP/IP socket that is not SSL-encrypted +# - "hostgssenc" is a TCP/IP socket that is GSSAPI-encrypted +# - "hostnogssenc" is a TCP/IP socket that is not GSSAPI-encrypted +# +# DATABASE can be "all", "sameuser", "samerole", "replication", a +# database name, or a comma-separated list thereof. The "all" +# keyword does not match "replication". Access to replication +# must be enabled in a separate record (see example below). +# +# USER can be "all", a user name, a group name prefixed with "+", or a +# comma-separated list thereof. In both the DATABASE and USER fields +# you can also write a file name prefixed with "@" to include names +# from a separate file. +# +# ADDRESS specifies the set of hosts the record matches. It can be a +# host name, or it is made up of an IP address and a CIDR mask that is +# an integer (between 0 and 32 (IPv4) or 128 (IPv6) inclusive) that +# specifies the number of significant bits in the mask. A host name +# that starts with a dot (.) matches a suffix of the actual host name. +# Alternatively, you can write an IP address and netmask in separate +# columns to specify the set of hosts. Instead of a CIDR-address, you +# can write "samehost" to match any of the server's own IP addresses, +# or "samenet" to match any address in any subnet that the server is +# directly connected to. +# +# METHOD can be "trust", "reject", "md5", "password", "scram-sha-256", +# "gss", "sspi", "ident", "peer", "pam", "ldap", "radius" or "cert". +# Note that "password" sends passwords in clear text; "md5" or +# "scram-sha-256" are preferred since they send encrypted passwords. +# +# OPTIONS are a set of options for the authentication in the format +# NAME=VALUE. The available options depend on the different +# authentication methods -- refer to the "Client Authentication" +# section in the documentation for a list of which options are +# available for which authentication methods. +# +# Database and user names containing spaces, commas, quotes and other +# special characters must be quoted. Quoting one of the keywords +# "all", "sameuser", "samerole" or "replication" makes the name lose +# its special character, and just match a database or username with +# that name. +# +# This file is read on server startup and when the server receives a +# SIGHUP signal. If you edit the file on a running system, you have to +# SIGHUP the server for the changes to take effect, run "pg_ctl reload", +# or execute "SELECT pg_reload_conf()". +# +# Put your actual configuration here +# ---------------------------------- +# +# If you want to allow non-local connections, you need to add more +# "host" records. In that case you will also need to make PostgreSQL +# listen on a non-local interface via the listen_addresses +# configuration parameter, or via the -i or -h command line switches. + +# CAUTION: Configuring the system for local "trust" authentication +# allows any local user to connect as any PostgreSQL user, including +# the database superuser. If you do not trust all your local users, +# use another authentication method. + + +# TYPE DATABASE USER ADDRESS METHOD + +# "local" is for Unix domain socket connections only +local all all trust +# IPv4 local connections: +host all all 127.0.0.1/32 trust +# IPv6 local connections: +host all all ::1/128 trust +# Allow replication connections from localhost, by a user with the +# replication privilege. +local replication all trust +host replication all 127.0.0.1/32 trust +host replication all ::1/128 trust + +host all all all scram-sha-256 diff --git a/nodeJS/Learning/07/db/pg_ident.conf b/nodeJS/Learning/07/db/pg_ident.conf new file mode 100755 index 0000000..a5870e6 --- /dev/null +++ b/nodeJS/Learning/07/db/pg_ident.conf @@ -0,0 +1,42 @@ +# PostgreSQL User Name Maps +# ========================= +# +# Refer to the PostgreSQL documentation, chapter "Client +# Authentication" for a complete description. A short synopsis +# follows. +# +# This file controls PostgreSQL user name mapping. It maps external +# user names to their corresponding PostgreSQL user names. Records +# are of the form: +# +# MAPNAME SYSTEM-USERNAME PG-USERNAME +# +# (The uppercase quantities must be replaced by actual values.) +# +# MAPNAME is the (otherwise freely chosen) map name that was used in +# pg_hba.conf. SYSTEM-USERNAME is the detected user name of the +# client. PG-USERNAME is the requested PostgreSQL user name. The +# existence of a record specifies that SYSTEM-USERNAME may connect as +# PG-USERNAME. +# +# If SYSTEM-USERNAME starts with a slash (/), it will be treated as a +# regular expression. Optionally this can contain a capture (a +# parenthesized subexpression). The substring matching the capture +# will be substituted for \1 (backslash-one) if present in +# PG-USERNAME. +# +# Multiple maps may be specified in this file and used by pg_hba.conf. +# +# No map names are defined in the default configuration. If all +# system user names and PostgreSQL user names are the same, you don't +# need anything in this file. +# +# This file is read on server startup and when the postmaster receives +# a SIGHUP signal. If you edit the file on a running system, you have +# to SIGHUP the postmaster for the changes to take effect. You can +# use "pg_ctl reload" to do that. + +# Put your actual configuration here +# ---------------------------------- + +# MAPNAME SYSTEM-USERNAME PG-USERNAME diff --git a/nodeJS/Learning/07/db/pg_logical/replorigin_checkpoint b/nodeJS/Learning/07/db/pg_logical/replorigin_checkpoint new file mode 100755 index 0000000..ec451b0 Binary files /dev/null and b/nodeJS/Learning/07/db/pg_logical/replorigin_checkpoint differ diff --git a/nodeJS/Learning/07/db/pg_multixact/members/0000 b/nodeJS/Learning/07/db/pg_multixact/members/0000 new file mode 100755 index 0000000..9b793e0 Binary files /dev/null and b/nodeJS/Learning/07/db/pg_multixact/members/0000 differ diff --git a/nodeJS/Learning/07/db/pg_multixact/offsets/0000 b/nodeJS/Learning/07/db/pg_multixact/offsets/0000 new file mode 100755 index 0000000..162edab Binary files /dev/null and b/nodeJS/Learning/07/db/pg_multixact/offsets/0000 differ diff --git a/nodeJS/Learning/07/db/pg_stat_tmp/db_0.stat b/nodeJS/Learning/07/db/pg_stat_tmp/db_0.stat new file mode 100755 index 0000000..d81aba0 Binary files /dev/null and b/nodeJS/Learning/07/db/pg_stat_tmp/db_0.stat differ diff --git a/nodeJS/Learning/07/db/pg_stat_tmp/db_13780.stat b/nodeJS/Learning/07/db/pg_stat_tmp/db_13780.stat new file mode 100755 index 0000000..e89a91d Binary files /dev/null and b/nodeJS/Learning/07/db/pg_stat_tmp/db_13780.stat differ diff --git a/nodeJS/Learning/07/db/pg_stat_tmp/db_16384.stat b/nodeJS/Learning/07/db/pg_stat_tmp/db_16384.stat new file mode 100755 index 0000000..bea50f4 Binary files /dev/null and b/nodeJS/Learning/07/db/pg_stat_tmp/db_16384.stat differ diff --git a/nodeJS/Learning/07/db/pg_stat_tmp/global.stat b/nodeJS/Learning/07/db/pg_stat_tmp/global.stat new file mode 100755 index 0000000..36cac48 Binary files /dev/null and b/nodeJS/Learning/07/db/pg_stat_tmp/global.stat differ diff --git a/nodeJS/Learning/07/db/pg_subtrans/0000 b/nodeJS/Learning/07/db/pg_subtrans/0000 new file mode 100755 index 0000000..6d17cf9 Binary files /dev/null and b/nodeJS/Learning/07/db/pg_subtrans/0000 differ diff --git a/nodeJS/Learning/07/db/pg_wal/000000010000000000000001 b/nodeJS/Learning/07/db/pg_wal/000000010000000000000001 new file mode 100755 index 0000000..481173c Binary files /dev/null and b/nodeJS/Learning/07/db/pg_wal/000000010000000000000001 differ diff --git a/nodeJS/Learning/07/db/pg_xact/0000 b/nodeJS/Learning/07/db/pg_xact/0000 new file mode 100755 index 0000000..0142397 Binary files /dev/null and b/nodeJS/Learning/07/db/pg_xact/0000 differ diff --git a/nodeJS/Learning/07/db/postgresql.auto.conf b/nodeJS/Learning/07/db/postgresql.auto.conf new file mode 100755 index 0000000..af7125e --- /dev/null +++ b/nodeJS/Learning/07/db/postgresql.auto.conf @@ -0,0 +1,2 @@ +# Do not edit this file manually! +# It will be overwritten by the ALTER SYSTEM command. diff --git a/nodeJS/Learning/07/db/postgresql.conf b/nodeJS/Learning/07/db/postgresql.conf new file mode 100755 index 0000000..3713f7c --- /dev/null +++ b/nodeJS/Learning/07/db/postgresql.conf @@ -0,0 +1,798 @@ +# ----------------------------- +# PostgreSQL configuration file +# ----------------------------- +# +# This file consists of lines of the form: +# +# name = value +# +# (The "=" is optional.) Whitespace may be used. Comments are introduced with +# "#" anywhere on a line. The complete list of parameter names and allowed +# values can be found in the PostgreSQL documentation. +# +# The commented-out settings shown in this file represent the default values. +# Re-commenting a setting is NOT sufficient to revert it to the default value; +# you need to reload the server. +# +# This file is read on server startup and when the server receives a SIGHUP +# signal. If you edit the file on a running system, you have to SIGHUP the +# server for the changes to take effect, run "pg_ctl reload", or execute +# "SELECT pg_reload_conf()". Some parameters, which are marked below, +# require a server shutdown and restart to take effect. +# +# Any parameter can also be given as a command-line option to the server, e.g., +# "postgres -c log_connections=on". Some parameters can be changed at run time +# with the "SET" SQL command. +# +# Memory units: B = bytes Time units: us = microseconds +# kB = kilobytes ms = milliseconds +# MB = megabytes s = seconds +# GB = gigabytes min = minutes +# TB = terabytes h = hours +# d = days + + +#------------------------------------------------------------------------------ +# FILE LOCATIONS +#------------------------------------------------------------------------------ + +# The default values of these variables are driven from the -D command-line +# option or PGDATA environment variable, represented here as ConfigDir. + +#data_directory = 'ConfigDir' # use data in another directory + # (change requires restart) +#hba_file = 'ConfigDir/pg_hba.conf' # host-based authentication file + # (change requires restart) +#ident_file = 'ConfigDir/pg_ident.conf' # ident configuration file + # (change requires restart) + +# If external_pid_file is not explicitly set, no extra PID file is written. +#external_pid_file = '' # write an extra PID file + # (change requires restart) + + +#------------------------------------------------------------------------------ +# CONNECTIONS AND AUTHENTICATION +#------------------------------------------------------------------------------ + +# - Connection Settings - + +listen_addresses = '*' + # comma-separated list of addresses; + # defaults to 'localhost'; use '*' for all + # (change requires restart) +#port = 5432 # (change requires restart) +max_connections = 100 # (change requires restart) +#superuser_reserved_connections = 3 # (change requires restart) +#unix_socket_directories = '/var/run/postgresql' # comma-separated list of directories + # (change requires restart) +#unix_socket_group = '' # (change requires restart) +#unix_socket_permissions = 0777 # begin with 0 to use octal notation + # (change requires restart) +#bonjour = off # advertise server via Bonjour + # (change requires restart) +#bonjour_name = '' # defaults to the computer name + # (change requires restart) + +# - TCP settings - +# see "man tcp" for details + +#tcp_keepalives_idle = 0 # TCP_KEEPIDLE, in seconds; + # 0 selects the system default +#tcp_keepalives_interval = 0 # TCP_KEEPINTVL, in seconds; + # 0 selects the system default +#tcp_keepalives_count = 0 # TCP_KEEPCNT; + # 0 selects the system default +#tcp_user_timeout = 0 # TCP_USER_TIMEOUT, in milliseconds; + # 0 selects the system default + +#client_connection_check_interval = 0 # time between checks for client + # disconnection while running queries; + # 0 for never + +# - Authentication - + +#authentication_timeout = 1min # 1s-600s +#password_encryption = scram-sha-256 # scram-sha-256 or md5 +#db_user_namespace = off + +# GSSAPI using Kerberos +#krb_server_keyfile = 'FILE:${sysconfdir}/krb5.keytab' +#krb_caseins_users = off + +# - SSL - + +#ssl = off +#ssl_ca_file = '' +#ssl_cert_file = 'server.crt' +#ssl_crl_file = '' +#ssl_crl_dir = '' +#ssl_key_file = 'server.key' +#ssl_ciphers = 'HIGH:MEDIUM:+3DES:!aNULL' # allowed SSL ciphers +#ssl_prefer_server_ciphers = on +#ssl_ecdh_curve = 'prime256v1' +#ssl_min_protocol_version = 'TLSv1.2' +#ssl_max_protocol_version = '' +#ssl_dh_params_file = '' +#ssl_passphrase_command = '' +#ssl_passphrase_command_supports_reload = off + + +#------------------------------------------------------------------------------ +# RESOURCE USAGE (except WAL) +#------------------------------------------------------------------------------ + +# - Memory - + +shared_buffers = 128MB # min 128kB + # (change requires restart) +#huge_pages = try # on, off, or try + # (change requires restart) +#huge_page_size = 0 # zero for system default + # (change requires restart) +#temp_buffers = 8MB # min 800kB +#max_prepared_transactions = 0 # zero disables the feature + # (change requires restart) +# Caution: it is not advisable to set max_prepared_transactions nonzero unless +# you actively intend to use prepared transactions. +#work_mem = 4MB # min 64kB +#hash_mem_multiplier = 1.0 # 1-1000.0 multiplier on hash table work_mem +#maintenance_work_mem = 64MB # min 1MB +#autovacuum_work_mem = -1 # min 1MB, or -1 to use maintenance_work_mem +#logical_decoding_work_mem = 64MB # min 64kB +#max_stack_depth = 2MB # min 100kB +#shared_memory_type = mmap # the default is the first option + # supported by the operating system: + # mmap + # sysv + # windows + # (change requires restart) +dynamic_shared_memory_type = posix # the default is the first option + # supported by the operating system: + # posix + # sysv + # windows + # mmap + # (change requires restart) +#min_dynamic_shared_memory = 0MB # (change requires restart) + +# - Disk - + +#temp_file_limit = -1 # limits per-process temp file space + # in kilobytes, or -1 for no limit + +# - Kernel Resources - + +#max_files_per_process = 1000 # min 64 + # (change requires restart) + +# - Cost-Based Vacuum Delay - + +#vacuum_cost_delay = 0 # 0-100 milliseconds (0 disables) +#vacuum_cost_page_hit = 1 # 0-10000 credits +#vacuum_cost_page_miss = 2 # 0-10000 credits +#vacuum_cost_page_dirty = 20 # 0-10000 credits +#vacuum_cost_limit = 200 # 1-10000 credits + +# - Background Writer - + +#bgwriter_delay = 200ms # 10-10000ms between rounds +#bgwriter_lru_maxpages = 100 # max buffers written/round, 0 disables +#bgwriter_lru_multiplier = 2.0 # 0-10.0 multiplier on buffers scanned/round +#bgwriter_flush_after = 512kB # measured in pages, 0 disables + +# - Asynchronous Behavior - + +#backend_flush_after = 0 # measured in pages, 0 disables +#effective_io_concurrency = 1 # 1-1000; 0 disables prefetching +#maintenance_io_concurrency = 10 # 1-1000; 0 disables prefetching +#max_worker_processes = 8 # (change requires restart) +#max_parallel_workers_per_gather = 2 # limited by max_parallel_workers +#max_parallel_maintenance_workers = 2 # limited by max_parallel_workers +#max_parallel_workers = 8 # number of max_worker_processes that + # can be used in parallel operations +#parallel_leader_participation = on +#old_snapshot_threshold = -1 # 1min-60d; -1 disables; 0 is immediate + # (change requires restart) + + +#------------------------------------------------------------------------------ +# WRITE-AHEAD LOG +#------------------------------------------------------------------------------ + +# - Settings - + +#wal_level = replica # minimal, replica, or logical + # (change requires restart) +#fsync = on # flush data to disk for crash safety + # (turning this off can cause + # unrecoverable data corruption) +#synchronous_commit = on # synchronization level; + # off, local, remote_write, remote_apply, or on +#wal_sync_method = fsync # the default is the first option + # supported by the operating system: + # open_datasync + # fdatasync (default on Linux and FreeBSD) + # fsync + # fsync_writethrough + # open_sync +#full_page_writes = on # recover from partial page writes +#wal_log_hints = off # also do full page writes of non-critical updates + # (change requires restart) +#wal_compression = off # enable compression of full-page writes +#wal_init_zero = on # zero-fill new WAL files +#wal_recycle = on # recycle WAL files +#wal_buffers = -1 # min 32kB, -1 sets based on shared_buffers + # (change requires restart) +#wal_writer_delay = 200ms # 1-10000 milliseconds +#wal_writer_flush_after = 1MB # measured in pages, 0 disables +#wal_skip_threshold = 2MB + +#commit_delay = 0 # range 0-100000, in microseconds +#commit_siblings = 5 # range 1-1000 + +# - Checkpoints - + +#checkpoint_timeout = 5min # range 30s-1d +#checkpoint_completion_target = 0.9 # checkpoint target duration, 0.0 - 1.0 +#checkpoint_flush_after = 256kB # measured in pages, 0 disables +#checkpoint_warning = 30s # 0 disables +max_wal_size = 1GB +min_wal_size = 80MB + +# - Archiving - + +#archive_mode = off # enables archiving; off, on, or always + # (change requires restart) +#archive_command = '' # command to use to archive a logfile segment + # placeholders: %p = path of file to archive + # %f = file name only + # e.g. 'test ! -f /mnt/server/archivedir/%f && cp %p /mnt/server/archivedir/%f' +#archive_timeout = 0 # force a logfile segment switch after this + # number of seconds; 0 disables + +# - Archive Recovery - + +# These are only used in recovery mode. + +#restore_command = '' # command to use to restore an archived logfile segment + # placeholders: %p = path of file to restore + # %f = file name only + # e.g. 'cp /mnt/server/archivedir/%f %p' +#archive_cleanup_command = '' # command to execute at every restartpoint +#recovery_end_command = '' # command to execute at completion of recovery + +# - Recovery Target - + +# Set these only when performing a targeted recovery. + +#recovery_target = '' # 'immediate' to end recovery as soon as a + # consistent state is reached + # (change requires restart) +#recovery_target_name = '' # the named restore point to which recovery will proceed + # (change requires restart) +#recovery_target_time = '' # the time stamp up to which recovery will proceed + # (change requires restart) +#recovery_target_xid = '' # the transaction ID up to which recovery will proceed + # (change requires restart) +#recovery_target_lsn = '' # the WAL LSN up to which recovery will proceed + # (change requires restart) +#recovery_target_inclusive = on # Specifies whether to stop: + # just after the specified recovery target (on) + # just before the recovery target (off) + # (change requires restart) +#recovery_target_timeline = 'latest' # 'current', 'latest', or timeline ID + # (change requires restart) +#recovery_target_action = 'pause' # 'pause', 'promote', 'shutdown' + # (change requires restart) + + +#------------------------------------------------------------------------------ +# REPLICATION +#------------------------------------------------------------------------------ + +# - Sending Servers - + +# Set these on the primary and on any standby that will send replication data. + +#max_wal_senders = 10 # max number of walsender processes + # (change requires restart) +#max_replication_slots = 10 # max number of replication slots + # (change requires restart) +#wal_keep_size = 0 # in megabytes; 0 disables +#max_slot_wal_keep_size = -1 # in megabytes; -1 disables +#wal_sender_timeout = 60s # in milliseconds; 0 disables +#track_commit_timestamp = off # collect timestamp of transaction commit + # (change requires restart) + +# - Primary Server - + +# These settings are ignored on a standby server. + +#synchronous_standby_names = '' # standby servers that provide sync rep + # method to choose sync standbys, number of sync standbys, + # and comma-separated list of application_name + # from standby(s); '*' = all +#vacuum_defer_cleanup_age = 0 # number of xacts by which cleanup is delayed + +# - Standby Servers - + +# These settings are ignored on a primary server. + +#primary_conninfo = '' # connection string to sending server +#primary_slot_name = '' # replication slot on sending server +#promote_trigger_file = '' # file name whose presence ends recovery +#hot_standby = on # "off" disallows queries during recovery + # (change requires restart) +#max_standby_archive_delay = 30s # max delay before canceling queries + # when reading WAL from archive; + # -1 allows indefinite delay +#max_standby_streaming_delay = 30s # max delay before canceling queries + # when reading streaming WAL; + # -1 allows indefinite delay +#wal_receiver_create_temp_slot = off # create temp slot if primary_slot_name + # is not set +#wal_receiver_status_interval = 10s # send replies at least this often + # 0 disables +#hot_standby_feedback = off # send info from standby to prevent + # query conflicts +#wal_receiver_timeout = 60s # time that receiver waits for + # communication from primary + # in milliseconds; 0 disables +#wal_retrieve_retry_interval = 5s # time to wait before retrying to + # retrieve WAL after a failed attempt +#recovery_min_apply_delay = 0 # minimum delay for applying changes during recovery + +# - Subscribers - + +# These settings are ignored on a publisher. + +#max_logical_replication_workers = 4 # taken from max_worker_processes + # (change requires restart) +#max_sync_workers_per_subscription = 2 # taken from max_logical_replication_workers + + +#------------------------------------------------------------------------------ +# QUERY TUNING +#------------------------------------------------------------------------------ + +# - Planner Method Configuration - + +#enable_async_append = on +#enable_bitmapscan = on +#enable_gathermerge = on +#enable_hashagg = on +#enable_hashjoin = on +#enable_incremental_sort = on +#enable_indexscan = on +#enable_indexonlyscan = on +#enable_material = on +#enable_memoize = on +#enable_mergejoin = on +#enable_nestloop = on +#enable_parallel_append = on +#enable_parallel_hash = on +#enable_partition_pruning = on +#enable_partitionwise_join = off +#enable_partitionwise_aggregate = off +#enable_seqscan = on +#enable_sort = on +#enable_tidscan = on + +# - Planner Cost Constants - + +#seq_page_cost = 1.0 # measured on an arbitrary scale +#random_page_cost = 4.0 # same scale as above +#cpu_tuple_cost = 0.01 # same scale as above +#cpu_index_tuple_cost = 0.005 # same scale as above +#cpu_operator_cost = 0.0025 # same scale as above +#parallel_setup_cost = 1000.0 # same scale as above +#parallel_tuple_cost = 0.1 # same scale as above +#min_parallel_table_scan_size = 8MB +#min_parallel_index_scan_size = 512kB +#effective_cache_size = 4GB + +#jit_above_cost = 100000 # perform JIT compilation if available + # and query more expensive than this; + # -1 disables +#jit_inline_above_cost = 500000 # inline small functions if query is + # more expensive than this; -1 disables +#jit_optimize_above_cost = 500000 # use expensive JIT optimizations if + # query is more expensive than this; + # -1 disables + +# - Genetic Query Optimizer - + +#geqo = on +#geqo_threshold = 12 +#geqo_effort = 5 # range 1-10 +#geqo_pool_size = 0 # selects default based on effort +#geqo_generations = 0 # selects default based on effort +#geqo_selection_bias = 2.0 # range 1.5-2.0 +#geqo_seed = 0.0 # range 0.0-1.0 + +# - Other Planner Options - + +#default_statistics_target = 100 # range 1-10000 +#constraint_exclusion = partition # on, off, or partition +#cursor_tuple_fraction = 0.1 # range 0.0-1.0 +#from_collapse_limit = 8 +#jit = on # allow JIT compilation +#join_collapse_limit = 8 # 1 disables collapsing of explicit + # JOIN clauses +#plan_cache_mode = auto # auto, force_generic_plan or + # force_custom_plan + + +#------------------------------------------------------------------------------ +# REPORTING AND LOGGING +#------------------------------------------------------------------------------ + +# - Where to Log - + +#log_destination = 'stderr' # Valid values are combinations of + # stderr, csvlog, syslog, and eventlog, + # depending on platform. csvlog + # requires logging_collector to be on. + +# This is used when logging to stderr: +#logging_collector = off # Enable capturing of stderr and csvlog + # into log files. Required to be on for + # csvlogs. + # (change requires restart) + +# These are only used if logging_collector is on: +#log_directory = 'log' # directory where log files are written, + # can be absolute or relative to PGDATA +#log_filename = 'postgresql-%Y-%m-%d_%H%M%S.log' # log file name pattern, + # can include strftime() escapes +#log_file_mode = 0600 # creation mode for log files, + # begin with 0 to use octal notation +#log_rotation_age = 1d # Automatic rotation of logfiles will + # happen after that time. 0 disables. +#log_rotation_size = 10MB # Automatic rotation of logfiles will + # happen after that much log output. + # 0 disables. +#log_truncate_on_rotation = off # If on, an existing log file with the + # same name as the new log file will be + # truncated rather than appended to. + # But such truncation only occurs on + # time-driven rotation, not on restarts + # or size-driven rotation. Default is + # off, meaning append to existing files + # in all cases. + +# These are relevant when logging to syslog: +#syslog_facility = 'LOCAL0' +#syslog_ident = 'postgres' +#syslog_sequence_numbers = on +#syslog_split_messages = on + +# This is only relevant when logging to eventlog (Windows): +# (change requires restart) +#event_source = 'PostgreSQL' + +# - When to Log - + +#log_min_messages = warning # values in order of decreasing detail: + # debug5 + # debug4 + # debug3 + # debug2 + # debug1 + # info + # notice + # warning + # error + # log + # fatal + # panic + +#log_min_error_statement = error # values in order of decreasing detail: + # debug5 + # debug4 + # debug3 + # debug2 + # debug1 + # info + # notice + # warning + # error + # log + # fatal + # panic (effectively off) + +#log_min_duration_statement = -1 # -1 is disabled, 0 logs all statements + # and their durations, > 0 logs only + # statements running at least this number + # of milliseconds + +#log_min_duration_sample = -1 # -1 is disabled, 0 logs a sample of statements + # and their durations, > 0 logs only a sample of + # statements running at least this number + # of milliseconds; + # sample fraction is determined by log_statement_sample_rate + +#log_statement_sample_rate = 1.0 # fraction of logged statements exceeding + # log_min_duration_sample to be logged; + # 1.0 logs all such statements, 0.0 never logs + + +#log_transaction_sample_rate = 0.0 # fraction of transactions whose statements + # are logged regardless of their duration; 1.0 logs all + # statements from all transactions, 0.0 never logs + +# - What to Log - + +#debug_print_parse = off +#debug_print_rewritten = off +#debug_print_plan = off +#debug_pretty_print = on +#log_autovacuum_min_duration = -1 # log autovacuum activity; + # -1 disables, 0 logs all actions and + # their durations, > 0 logs only + # actions running at least this number + # of milliseconds. +#log_checkpoints = off +#log_connections = off +#log_disconnections = off +#log_duration = off +#log_error_verbosity = default # terse, default, or verbose messages +#log_hostname = off +#log_line_prefix = '%m [%p] ' # special values: + # %a = application name + # %u = user name + # %d = database name + # %r = remote host and port + # %h = remote host + # %b = backend type + # %p = process ID + # %P = process ID of parallel group leader + # %t = timestamp without milliseconds + # %m = timestamp with milliseconds + # %n = timestamp with milliseconds (as a Unix epoch) + # %Q = query ID (0 if none or not computed) + # %i = command tag + # %e = SQL state + # %c = session ID + # %l = session line number + # %s = session start timestamp + # %v = virtual transaction ID + # %x = transaction ID (0 if none) + # %q = stop here in non-session + # processes + # %% = '%' + # e.g. '<%u%%%d> ' +#log_lock_waits = off # log lock waits >= deadlock_timeout +#log_recovery_conflict_waits = off # log standby recovery conflict waits + # >= deadlock_timeout +#log_parameter_max_length = -1 # when logging statements, limit logged + # bind-parameter values to N bytes; + # -1 means print in full, 0 disables +#log_parameter_max_length_on_error = 0 # when logging an error, limit logged + # bind-parameter values to N bytes; + # -1 means print in full, 0 disables +#log_statement = 'none' # none, ddl, mod, all +#log_replication_commands = off +#log_temp_files = -1 # log temporary files equal or larger + # than the specified size in kilobytes; + # -1 disables, 0 logs all temp files +log_timezone = 'Etc/UTC' + + +#------------------------------------------------------------------------------ +# PROCESS TITLE +#------------------------------------------------------------------------------ + +#cluster_name = '' # added to process titles if nonempty + # (change requires restart) +#update_process_title = on + + +#------------------------------------------------------------------------------ +# STATISTICS +#------------------------------------------------------------------------------ + +# - Query and Index Statistics Collector - + +#track_activities = on +#track_activity_query_size = 1024 # (change requires restart) +#track_counts = on +#track_io_timing = off +#track_wal_io_timing = off +#track_functions = none # none, pl, all +#stats_temp_directory = 'pg_stat_tmp' + + +# - Monitoring - + +#compute_query_id = auto +#log_statement_stats = off +#log_parser_stats = off +#log_planner_stats = off +#log_executor_stats = off + + +#------------------------------------------------------------------------------ +# AUTOVACUUM +#------------------------------------------------------------------------------ + +#autovacuum = on # Enable autovacuum subprocess? 'on' + # requires track_counts to also be on. +#autovacuum_max_workers = 3 # max number of autovacuum subprocesses + # (change requires restart) +#autovacuum_naptime = 1min # time between autovacuum runs +#autovacuum_vacuum_threshold = 50 # min number of row updates before + # vacuum +#autovacuum_vacuum_insert_threshold = 1000 # min number of row inserts + # before vacuum; -1 disables insert + # vacuums +#autovacuum_analyze_threshold = 50 # min number of row updates before + # analyze +#autovacuum_vacuum_scale_factor = 0.2 # fraction of table size before vacuum +#autovacuum_vacuum_insert_scale_factor = 0.2 # fraction of inserts over table + # size before insert vacuum +#autovacuum_analyze_scale_factor = 0.1 # fraction of table size before analyze +#autovacuum_freeze_max_age = 200000000 # maximum XID age before forced vacuum + # (change requires restart) +#autovacuum_multixact_freeze_max_age = 400000000 # maximum multixact age + # before forced vacuum + # (change requires restart) +#autovacuum_vacuum_cost_delay = 2ms # default vacuum cost delay for + # autovacuum, in milliseconds; + # -1 means use vacuum_cost_delay +#autovacuum_vacuum_cost_limit = -1 # default vacuum cost limit for + # autovacuum, -1 means use + # vacuum_cost_limit + + +#------------------------------------------------------------------------------ +# CLIENT CONNECTION DEFAULTS +#------------------------------------------------------------------------------ + +# - Statement Behavior - + +#client_min_messages = notice # values in order of decreasing detail: + # debug5 + # debug4 + # debug3 + # debug2 + # debug1 + # log + # notice + # warning + # error +#search_path = '"$user", public' # schema names +#row_security = on +#default_table_access_method = 'heap' +#default_tablespace = '' # a tablespace name, '' uses the default +#default_toast_compression = 'pglz' # 'pglz' or 'lz4' +#temp_tablespaces = '' # a list of tablespace names, '' uses + # only default tablespace +#check_function_bodies = on +#default_transaction_isolation = 'read committed' +#default_transaction_read_only = off +#default_transaction_deferrable = off +#session_replication_role = 'origin' +#statement_timeout = 0 # in milliseconds, 0 is disabled +#lock_timeout = 0 # in milliseconds, 0 is disabled +#idle_in_transaction_session_timeout = 0 # in milliseconds, 0 is disabled +#idle_session_timeout = 0 # in milliseconds, 0 is disabled +#vacuum_freeze_table_age = 150000000 +#vacuum_freeze_min_age = 50000000 +#vacuum_failsafe_age = 1600000000 +#vacuum_multixact_freeze_table_age = 150000000 +#vacuum_multixact_freeze_min_age = 5000000 +#vacuum_multixact_failsafe_age = 1600000000 +#bytea_output = 'hex' # hex, escape +#xmlbinary = 'base64' +#xmloption = 'content' +#gin_pending_list_limit = 4MB + +# - Locale and Formatting - + +datestyle = 'iso, mdy' +#intervalstyle = 'postgres' +timezone = 'Etc/UTC' +#timezone_abbreviations = 'Default' # Select the set of available time zone + # abbreviations. Currently, there are + # Default + # Australia (historical usage) + # India + # You can create your own file in + # share/timezonesets/. +#extra_float_digits = 1 # min -15, max 3; any value >0 actually + # selects precise output mode +#client_encoding = sql_ascii # actually, defaults to database + # encoding + +# These settings are initialized by initdb, but they can be changed. +lc_messages = 'en_US.utf8' # locale for system error message + # strings +lc_monetary = 'en_US.utf8' # locale for monetary formatting +lc_numeric = 'en_US.utf8' # locale for number formatting +lc_time = 'en_US.utf8' # locale for time formatting + +# default configuration for text search +default_text_search_config = 'pg_catalog.english' + +# - Shared Library Preloading - + +#local_preload_libraries = '' +#session_preload_libraries = '' +#shared_preload_libraries = '' # (change requires restart) +#jit_provider = 'llvmjit' # JIT library to use + +# - Other Defaults - + +#dynamic_library_path = '$libdir' +#extension_destdir = '' # prepend path when loading extensions + # and shared objects (added by Debian) +#gin_fuzzy_search_limit = 0 + + +#------------------------------------------------------------------------------ +# LOCK MANAGEMENT +#------------------------------------------------------------------------------ + +#deadlock_timeout = 1s +#max_locks_per_transaction = 64 # min 10 + # (change requires restart) +#max_pred_locks_per_transaction = 64 # min 10 + # (change requires restart) +#max_pred_locks_per_relation = -2 # negative values mean + # (max_pred_locks_per_transaction + # / -max_pred_locks_per_relation) - 1 +#max_pred_locks_per_page = 2 # min 0 + + +#------------------------------------------------------------------------------ +# VERSION AND PLATFORM COMPATIBILITY +#------------------------------------------------------------------------------ + +# - Previous PostgreSQL Versions - + +#array_nulls = on +#backslash_quote = safe_encoding # on, off, or safe_encoding +#escape_string_warning = on +#lo_compat_privileges = off +#quote_all_identifiers = off +#standard_conforming_strings = on +#synchronize_seqscans = on + +# - Other Platforms and Clients - + +#transform_null_equals = off + + +#------------------------------------------------------------------------------ +# ERROR HANDLING +#------------------------------------------------------------------------------ + +#exit_on_error = off # terminate session on any error? +#restart_after_crash = on # reinitialize after backend crash? +#data_sync_retry = off # retry or panic on failure to fsync + # data? + # (change requires restart) +#recovery_init_sync_method = fsync # fsync, syncfs (Linux 5.8+) + + +#------------------------------------------------------------------------------ +# CONFIG FILE INCLUDES +#------------------------------------------------------------------------------ + +# These options allow settings to be loaded from files other than the +# default postgresql.conf. Note that these are directives, not variable +# assignments, so they can usefully be given more than once. + +#include_dir = '...' # include files ending in '.conf' from + # a directory, e.g., 'conf.d' +#include_if_exists = '...' # include file only if it exists +#include = '...' # include file + + +#------------------------------------------------------------------------------ +# CUSTOMIZED OPTIONS +#------------------------------------------------------------------------------ + +# Add settings for extensions here diff --git a/nodeJS/Learning/07/db/postmaster.opts b/nodeJS/Learning/07/db/postmaster.opts new file mode 100755 index 0000000..5a715e5 --- /dev/null +++ b/nodeJS/Learning/07/db/postmaster.opts @@ -0,0 +1 @@ +/usr/lib/postgresql/14/bin/postgres diff --git a/nodeJS/Learning/07/docker-compose.yaml b/nodeJS/Learning/07/docker-compose.yaml deleted file mode 100644 index 31fc977..0000000 --- a/nodeJS/Learning/07/docker-compose.yaml +++ /dev/null @@ -1,40 +0,0 @@ -services: - # web: - # build: . - cms: - container_name: strapi - build: - context: ./cms - dockerfile: Dockerfile - restart: unless-stopped - env_file: ./cms/.env - environment: - DATABASE_CLIENT: ${DATABASE_CLIENT} - DATABASE_HOST: ${DATABASE_HOST} - DATABASE_PORT: ${DATABASE_PORT} - DATABASE_NAME: ${DATABASE_NAME} - DATABASE_USERNAME: ${DATABASE_USERNAME} - DATABASE_PASSWORD: ${DATABASE_PASSWORD} - ADMIN_JWT_SECRET: ${ADMIN_JWT_SECRET} - APP_KEYS: ${APP_KEYS} - volumes: - - ./cms/config:/opt/app/config - - ./cms/src:/opt/app/src - - ./cms/package.json:/opt/package.json - - ./cms/yarn.lock:/opt/yarn.lock - - ./cms/.env:/opt/app/.env - - ./cms/public/uploads:/opt/app/public/uploads - ports: - - "1337:1337" - db: - container_name: db - image: postgres:14 - restart: unless-stopped - environment: - POSTGRES_USER: ${DATABASE_USERNAME} - POSTGRES_PASSWORD: ${DATABASE_PASSWORD} - POSTGRES_DB: ${DATABASE_NAME} - ports: - - "5432:5432" - volumes: #mirror where postgres put their data - - ./db:/var/lib/postgresql/data