gitextract_ga3r34v9/ ├── .gitignore ├── Gruntfile.js ├── LICENSE ├── README.md ├── i18n/ │ ├── README.md │ ├── ar-ar/ │ │ ├── ar-ar.json │ │ └── partials/ │ │ ├── code-style.html │ │ ├── getting-started.html │ │ ├── good-parts.html │ │ ├── licence.html │ │ ├── patterns.html │ │ ├── testing-tools.html │ │ └── welcome.html │ ├── de-de/ │ │ ├── de-de.json │ │ └── partials/ │ │ ├── code-style.html │ │ ├── getting-started.html │ │ ├── good-parts.html │ │ ├── licence.html │ │ ├── patterns.html │ │ ├── testing-tools.html │ │ └── welcome.html │ ├── en-us/ │ │ ├── en-us.json │ │ └── partials/ │ │ ├── code-style.html │ │ ├── getting-started.html │ │ ├── good-parts.html │ │ ├── licence.html │ │ ├── patterns.html │ │ ├── testing-tools.html │ │ └── welcome.html │ ├── es-es/ │ │ ├── es-es.json │ │ └── partials/ │ │ ├── code-style.html │ │ ├── getting-started.html │ │ ├── good-parts.html │ │ ├── licence.html │ │ ├── patterns.html │ │ ├── testing-tools.html │ │ └── welcome.html │ ├── fa-ir/ │ │ ├── fa-ir.json │ │ └── partials/ │ │ ├── code-style.html │ │ ├── getting-started.html │ │ ├── good-parts.html │ │ ├── licence.html │ │ ├── patterns.html │ │ ├── testing-tools.html │ │ └── welcome.html │ ├── ko-kr/ │ │ ├── README.md │ │ ├── ko-kr.json │ │ └── partials/ │ │ ├── code-style.html │ │ ├── getting-started.html │ │ ├── good-parts.html │ │ ├── licence.html │ │ ├── patterns.html │ │ ├── testing-tools.html │ │ └── welcome.html │ ├── pt-br/ │ │ ├── partials/ │ │ │ ├── code-style.html │ │ │ ├── getting-started.html │ │ │ ├── good-parts.html │ │ │ ├── licence.html │ │ │ ├── patterns.html │ │ │ ├── testing-tools.html │ │ │ └── welcome.html │ │ └── pt-br.json │ ├── ru-ru/ │ │ ├── partials/ │ │ │ ├── code-style.html │ │ │ ├── getting-started.html │ │ │ ├── good-parts.html │ │ │ ├── licence.html │ │ │ ├── patterns.html │ │ │ ├── testing-tools.html │ │ │ └── welcome.html │ │ └── ru-ru.json │ ├── zh-cn/ │ │ ├── partials/ │ │ │ ├── code-style.html │ │ │ ├── getting-started.html │ │ │ ├── good-parts.html │ │ │ ├── licence.html │ │ │ ├── patterns.html │ │ │ ├── testing-tools.html │ │ │ └── welcome.html │ │ └── zh-cn.json │ └── zh-tw/ │ ├── partials/ │ │ ├── code-style.html │ │ ├── getting-started.html │ │ ├── good-parts.html │ │ ├── licence.html │ │ ├── patterns.html │ │ ├── testing-tools.html │ │ └── welcome.html │ └── zh-tw.json ├── manifest.json ├── package.json ├── public/ │ ├── assets/ │ │ ├── css/ │ │ │ ├── core.css │ │ │ └── normalize.css │ │ └── js/ │ │ ├── core.js │ │ └── vendor/ │ │ ├── jquery.lazyload.js │ │ └── jquery.scrollstop.js │ ├── de-de/ │ │ └── index.html │ ├── en-us/ │ │ └── index.html │ ├── es-es/ │ │ └── index.html │ ├── fa-ir/ │ │ └── index.html │ ├── index.html │ ├── ko-kr/ │ │ └── index.html │ ├── pt-br/ │ │ └── index.html │ ├── ru-ru/ │ │ └── index.html │ ├── zh-cn/ │ │ └── index.html │ └── zh-tw/ │ └── index.html ├── scripts/ │ └── tasks/ │ └── i18n.js └── templates/ ├── index.html └── old_index.html