diff --git a/.babelrc b/.babelrc index 13f0e47..deeda53 100755 --- a/.babelrc +++ b/.babelrc @@ -1,13 +1,12 @@ { "presets": [ - ["env", { "modules": false }], - "stage-2" + ["@babel/env", { "modules": false }] ], - "plugins": ["transform-runtime"], + "plugins": ["@babel/plugin-transform-runtime"], "comments": false, "env": { "test": { - "presets": ["env", "stage-2"], + "presets": ["@babel/env"], "plugins": [ "istanbul" ] } } diff --git a/.eslintrc.js b/.eslintrc.js deleted file mode 100755 index 91b24a9..0000000 --- a/.eslintrc.js +++ /dev/null @@ -1,39 +0,0 @@ -// http://eslint.org/docs/user-guide/configuring - -module.exports = { - root: true, - parser: 'babel-eslint', - parserOptions: { - sourceType: 'module' - }, - env: { - browser: true, - }, - // https://github.com/feross/standard/blob/master/RULES.md#javascript-standard-style - extends: 'standard', - // required to lint *.vue files - plugins: [ - 'html' - ], - // add your custom rules here - 'rules': { - // allow paren-less arrow functions - 'arrow-parens': 0, - // allow async-await - 'generator-star-spacing': 0, - // allow debugger during development - 'no-debugger': process.env.NODE_ENV === 'production' ? 2 : 0, - 'quotes': [ - 'error', - 'single' - ], - 'semi': [ - 'error', - 'always' - ], - 'no-console': 'off', - 'curly': ['error', 'multi-or-nest'], - 'space-before-function-paren': ['error', 'always'], - 'no-var': 'error' - } -} diff --git a/.eslintrc.json b/.eslintrc.json new file mode 100755 index 0000000..6eac5e0 --- /dev/null +++ b/.eslintrc.json @@ -0,0 +1,320 @@ +{ + "env": { + "browser": true, + "es6": true, + "node": true + }, + "extends": "eslint:recommended", + "parserOptions": { + "ecmaVersion": 2018, + "sourceType": "module" + }, + "plugins": [ + "html" + ], + "rules": { + "accessor-pairs": "error", + "array-bracket-newline": "off", + "array-bracket-spacing": [ + "error", + "never" + ], + "array-callback-return": "off", + "array-element-newline": "off", + "arrow-body-style": "off", + "arrow-parens": "off", + "arrow-spacing": [ + "error", + { + "after": true, + "before": true + } + ], + "block-scoped-var": "error", + "block-spacing": "error", + "brace-style": [ + "error", + "1tbs" + ], + "callback-return": "error", + "capitalized-comments": "off", + "class-methods-use-this": "off", + "comma-dangle": "off", + "comma-spacing": [ + "error", + { + "after": true, + "before": false + } + ], + "comma-style": [ + "error", + "last" + ], + "complexity": "off", + "computed-property-spacing": [ + "error", + "never" + ], + "consistent-return": "off", + "consistent-this": "off", + "curly": "off", + "default-case": "off", + "dot-location": [ + "error", + "property" + ], + "dot-notation": "off", + "eol-last": "off", + "eqeqeq": "off", + "func-call-spacing": "error", + "func-name-matching": "off", + "func-names": "off", + "func-style": "off", + "function-paren-newline": "off", + "generator-star-spacing": "error", + "global-require": "off", + "guard-for-in": "off", + "handle-callback-err": "error", + "id-blacklist": "error", + "id-length": "off", + "id-match": "error", + "implicit-arrow-linebreak": "off", + "indent": [ + "error", + 4, + { + "MemberExpression": "off", + "SwitchCase": 1 + } + ], + "indent-legacy": "off", + "init-declarations": "off", + "jsx-quotes": "error", + "key-spacing": "error", + "keyword-spacing": "off", + "line-comment-position": "off", + "linebreak-style": [ + "error", + "unix" + ], + "lines-around-comment": "off", + "lines-around-directive": "error", + "lines-between-class-members": "off", + "max-classes-per-file": "off", + "max-depth": "error", + "max-len": "off", + "max-lines": "off", + "max-lines-per-function": "off", + "max-nested-callbacks": "error", + "max-params": "off", + "max-statements": "off", + "max-statements-per-line": "error", + "multiline-comment-style": "off", + "multiline-ternary": [ + "error", + "always-multiline" + ], + "new-parens": "off", + "newline-after-var": "off", + "newline-before-return": "off", + "newline-per-chained-call": "off", + "no-alert": "error", + "no-array-constructor": "error", + "no-await-in-loop": "off", + "no-bitwise": "off", + "no-buffer-constructor": "off", + "no-caller": "error", + "no-catch-shadow": "error", + "no-case-declarations": "off", + "no-confusing-arrow": "off", + "no-constant-condition": [ + "error", + { + "checkLoops": false + } + ], + "no-console": "off", + "no-continue": "off", + "no-div-regex": "error", + "no-duplicate-imports": "off", + "no-else-return": "off", + "no-empty": [ + "error", + { + "allowEmptyCatch": true + } + ], + "no-empty-function": "off", + "no-eq-null": "error", + "no-eval": "error", + "no-extend-native": "error", + "no-extra-bind": "error", + "no-extra-label": "error", + "no-extra-parens": "off", + "no-floating-decimal": "error", + "no-implicit-globals": "error", + "no-implied-eval": "error", + "no-inline-comments": "off", + "no-invalid-this": "off", + "no-iterator": "error", + "no-label-var": "error", + "no-labels": "error", + "no-lone-blocks": "error", + "no-lonely-if": "off", + "no-loop-func": "off", + "no-magic-numbers": "off", + "no-mixed-operators": "off", + "no-mixed-requires": "error", + "no-multi-assign": "error", + "no-multi-spaces": "error", + "no-multi-str": "error", + "no-multiple-empty-lines": "off", + "no-native-reassign": "error", + "no-negated-condition": "off", + "no-negated-in-lhs": "error", + "no-nested-ternary": "error", + "no-new": "error", + "no-new-func": "error", + "no-new-object": "error", + "no-new-require": "error", + "no-new-wrappers": "error", + "no-octal-escape": "error", + "no-param-reassign": "off", + "no-path-concat": "error", + "no-plusplus": "off", + "no-process-env": "off", + "no-process-exit": "off", + "no-proto": "off", + "no-prototype-builtins": "off", + "no-restricted-globals": "error", + "no-restricted-imports": "error", + "no-restricted-modules": "error", + "no-restricted-properties": "error", + "no-restricted-syntax": "error", + "no-return-assign": "off", + "no-return-await": "off", + "no-script-url": "error", + "no-self-compare": "error", + "no-sequences": "error", + "no-shadow": "off", + "no-shadow-restricted-names": "error", + "no-spaced-func": "error", + "no-sync": "off", + "no-tabs": "error", + "no-template-curly-in-string": "error", + "no-ternary": "off", + "no-throw-literal": "error", + "no-trailing-spaces": [ + "error", + { + "ignoreComments": true, + "skipBlankLines": true + } + ], + "no-undef-init": "error", + "no-undefined": "off", + "no-underscore-dangle": "off", + "no-unmodified-loop-condition": "error", + "no-unneeded-ternary": "off", + "no-unused-expressions": "off", + "no-use-before-define": "off", + "no-useless-call": "error", + "no-useless-computed-key": "error", + "no-useless-concat": "off", + "no-useless-constructor": "error", + "no-useless-return": "off", + "no-var": "error", + "no-void": "error", + "no-warning-comments": "off", + "no-whitespace-before-property": "error", + "no-with": "error", + "nonblock-statement-body-position": [ + "error", + "any" + ], + "object-curly-newline": "off", + "object-curly-spacing": [ + "error", + "always" + ], + "object-property-newline": "error", + "object-shorthand": "off", + "one-var": "off", + "one-var-declaration-per-line": [ + "error", + "initializations" + ], + "operator-assignment": "off", + "operator-linebreak": [ + "error", + "after" + ], + "padded-blocks": "off", + "padding-line-between-statements": "error", + "prefer-arrow-callback": "off", + "prefer-const": "error", + "prefer-destructuring": "off", + "prefer-numeric-literals": "error", + "prefer-object-spread": "off", + "prefer-promise-reject-errors": "error", + "prefer-reflect": "off", + "prefer-rest-params": "off", + "prefer-spread": "off", + "prefer-template": "off", + "quote-props": "off", + "quotes": [ + "error", + "single" + ], + "radix": "off", + "require-await": "off", + "require-jsdoc": "off", + "rest-spread-spacing": [ + "error", + "never" + ], + "semi": "error", + "semi-spacing": [ + "error", + { + "after": true, + "before": false + } + ], + "semi-style": [ + "error", + "last" + ], + "sort-imports": "off", + "sort-keys": "off", + "sort-vars": "off", + "space-before-blocks": "error", + "space-before-function-paren": "off", + "space-in-parens": [ + "error", + "never" + ], + "space-infix-ops": "error", + "space-unary-ops": "error", + "spaced-comment": "off", + "strict": "error", + "switch-colon-spacing": "error", + "symbol-description": "error", + "template-curly-spacing": [ + "error", + "never" + ], + "template-tag-spacing": "error", + "unicode-bom": [ + "error", + "never" + ], + "valid-jsdoc": "off", + "vars-on-top": "error", + "wrap-iife": "error", + "wrap-regex": "off", + "yield-star-spacing": "error", + "yoda": "off" + } +} diff --git a/.npmrc b/.npmrc new file mode 100644 index 0000000..41a3429 --- /dev/null +++ b/.npmrc @@ -0,0 +1,2 @@ +unsafe-perm = true +package-lock=false diff --git a/.travis.yml b/.travis.yml index 6a2977d..92b95a1 100755 --- a/.travis.yml +++ b/.travis.yml @@ -1,16 +1,44 @@ -language: node_js +language: node_js +sudo: required +dist: trusty os: - linux node_js: - - "8" + - "10.6.0" before_install: - export CHROME_BIN=chromium-browser - export DISPLAY=:99.0 - sh -e /etc/init.d/xvfb start -script: - - npm i --silent - - npm run lint - - npm run test:export - - npm run test:docs - - npm run test:e2e + +stages: + - install + - format + - export + - tests + +jobs: + include: + - stage: install + script: travis_retry npm install --depth 0 --silent + + - stage: format + script: travis_retry npm run lint + env: LABEL=lint + + - stage: export + script: travis_retry npm run export + env: LABEL=export + - stage: export + script: travis_retry npm run preview + env: LABEL=preview + + - stage: tests + script: travis_retry npm run test:export + env: LABEL=test:export + - stage: tests + script: travis_retry npm run test:docs + env: LABEL=test:docs + - stage: tests + script: travis_retry npm run test:e2e + env: LABEL=test:e2e diff --git a/README.md b/README.md index 2ea58b8..a31af4f 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@
-[![Greenkeeper badge](https://badges.greenkeeper.io/salomonelli/best-resume-ever.svg)](https://greenkeeper.io/) [![Travis badge](https://travis-ci.org/salomonelli/best-resume-ever.svg?branch=master)](https://travis-ci.org/salomonelli/best-resume-ever) +[![Travis badge](https://travis-ci.org/salomonelli/best-resume-ever.svg?branch=master)](https://travis-ci.org/salomonelli/best-resume-ever)
@@ -23,6 +23,7 @@

+ @@ -30,6 +31,7 @@ +


@@ -91,3 +93,8 @@ This project uses several open source packages: > [sarasteiert.com](https://www.sarasteiert.com)  ·  > GitHub [@salomonelli](https://github.com/salomonelli)  ·  > Twitter [@salomonelli](https://twitter.com/salomonelli) + + +## License + +[MIT](https://github.com/salomonelli/best-resume-ever/blob/master/LICENCE.md) diff --git a/build/webpack.base.conf.js b/build/webpack.base.conf.js index 3e99e48..ad19359 100755 --- a/build/webpack.base.conf.js +++ b/build/webpack.base.conf.js @@ -15,8 +15,7 @@ module.exports = { path: config.build.assetsRoot, filename: '[name].js', publicPath: process.env.NODE_ENV === 'production' ? - config.build.assetsPublicPath : - config.dev.assetsPublicPath + config.build.assetsPublicPath : config.dev.assetsPublicPath }, resolve: { extensions: ['.js', '.vue', '.json'], @@ -60,16 +59,6 @@ module.exports = { limit: 10000, name: utils.assetsPath('fonts/[name].[hash:7].[ext]') } - }, - { - test: /\.less$/, - use: [{ - loader: "style-loader" // creates style nodes from JS strings - }, { - loader: "css-loader" // translates CSS into CommonJS - }, { - loader: "less-loader" // compiles Less to CSS - }] } ] } diff --git a/build/webpack.dev.conf.js b/build/webpack.dev.conf.js index 5470402..33b37a6 100755 --- a/build/webpack.dev.conf.js +++ b/build/webpack.dev.conf.js @@ -5,19 +5,24 @@ var merge = require('webpack-merge') var baseWebpackConfig = require('./webpack.base.conf') var HtmlWebpackPlugin = require('html-webpack-plugin') var FriendlyErrorsPlugin = require('friendly-errors-webpack-plugin') +var VueLoaderPlugin = require('vue-loader/lib/plugin') + // add hot-reload related code to entry chunks -Object.keys(baseWebpackConfig.entry).forEach(function (name) { +Object.keys(baseWebpackConfig.entry).forEach(function(name) { baseWebpackConfig.entry[name] = ['./build/dev-client'].concat(baseWebpackConfig.entry[name]) }) module.exports = merge(baseWebpackConfig, { module: { - rules: utils.styleLoaders({ sourceMap: config.dev.cssSourceMap }) + rules: utils.styleLoaders({ + sourceMap: config.dev.cssSourceMap + }) }, // cheap-module-eval-source-map is faster for development devtool: '#cheap-module-eval-source-map', plugins: [ + new VueLoaderPlugin(), new webpack.DefinePlugin({ 'process.env': config.dev.env }), diff --git a/build/webpack.prod.conf.js b/build/webpack.prod.conf.js index b464bcc..90abbce 100755 --- a/build/webpack.prod.conf.js +++ b/build/webpack.prod.conf.js @@ -8,10 +8,11 @@ var CopyWebpackPlugin = require('copy-webpack-plugin') var HtmlWebpackPlugin = require('html-webpack-plugin') var ExtractTextPlugin = require('extract-text-webpack-plugin') var OptimizeCSSPlugin = require('optimize-css-assets-webpack-plugin') +var VueLoaderPlugin = require('vue-loader/lib/plugin') -var env = process.env.NODE_ENV === 'testing' - ? require('../config/test.env') - : config.build.env +var env = process.env.NODE_ENV === 'testing' ? + require('../config/test.env') : + config.build.env var webpackConfig = merge(baseWebpackConfig, { module: { @@ -26,14 +27,20 @@ var webpackConfig = merge(baseWebpackConfig, { filename: utils.assetsPath('js/[name].[chunkhash].js'), chunkFilename: utils.assetsPath('js/[id].[chunkhash].js') }, + optimization: { + splitChunks: { + chunks: "all" + } + }, plugins: [ + new VueLoaderPlugin(), // http://vuejs.github.io/vue-loader/en/workflow/production.html new webpack.DefinePlugin({ 'process.env': env }), // extract css into its own file new ExtractTextPlugin({ - filename: utils.assetsPath('css/[name].[contenthash].css') + filename: utils.assetsPath('css/[name].[hash].css') }), // Compress extracted CSS. We are using this plugin so that possible // duplicated CSS from different components can be deduped. @@ -46,9 +53,8 @@ var webpackConfig = merge(baseWebpackConfig, { // you can customize output by editing /index.html // see https://github.com/ampedandwired/html-webpack-plugin new HtmlWebpackPlugin({ - filename: process.env.NODE_ENV === 'testing' - ? 'index.html' - : config.build.index, + filename: process.env.NODE_ENV === 'testing' ? + 'index.html' : config.build.index, template: 'index.html', inject: true, minify: { @@ -60,33 +66,12 @@ var webpackConfig = merge(baseWebpackConfig, { }, // necessary to consistently work with multiple chunks via CommonsChunkPlugin chunksSortMode: 'dependency' - }), - // split vendor js into its own file - new webpack.optimize.CommonsChunkPlugin({ - name: 'vendor', - minChunks: function (module, count) { - // any required modules inside node_modules are extracted to vendor - return ( - module.resource && - /\.js$/.test(module.resource) && - module.resource.indexOf( - path.join(__dirname, '../node_modules') - ) === 0 - ) - } - }), - // extract webpack runtime and module manifest to its own file in order to - // prevent vendor hash from being updated whenever app bundle is updated - new webpack.optimize.CommonsChunkPlugin({ - name: 'manifest', - chunks: ['vendor'] - }), + }) ] }) if (config.build.productionGzip) { var CompressionWebpackPlugin = require('compression-webpack-plugin') - webpackConfig.plugins.push( new CompressionWebpackPlugin({ asset: '[path].gz[query]', diff --git a/docs/index.html b/docs/index.html index 42f74e0..4d27273 100755 --- a/docs/index.html +++ b/docs/index.html @@ -1 +1 @@ -best-resume-ever
\ No newline at end of file +best-resume-ever
\ No newline at end of file diff --git a/docs/static/css/app.93b0b43de44566e679cbcb1192e60799.css b/docs/static/css/app.93b0b43de44566e679cbcb1192e60799.css deleted file mode 100644 index 2a5f8dc..0000000 --- a/docs/static/css/app.93b0b43de44566e679cbcb1192e60799.css +++ /dev/null @@ -1,4 +0,0 @@ -@font-face{font-family:Roboto;src:url(/best-resume-ever/static/fonts/Roboto-Thin.c25fd8d.eot);src:local("Roboto Thin"),local("Roboto-Thin"),url(/best-resume-ever/static/fonts/Roboto-Thin.c25fd8d.eot?#iefix) format("embedded-opentype"),url(/best-resume-ever/static/fonts/Roboto-Thin.790ebf4.woff2) format("woff2"),url(/best-resume-ever/static/fonts/Roboto-Thin.90d3804.woff) format("woff"),url(/best-resume-ever/static/fonts/Roboto-Thin.cc85ce3.ttf) format("truetype"),url(/best-resume-ever/static/img/Roboto-Thin.ba422f7.svg#Roboto) format("svg");font-weight:100;font-style:normal}@font-face{font-family:Roboto-Thin;src:url(/best-resume-ever/static/fonts/Roboto-Thin.c25fd8d.eot);src:local("Roboto Thin"),local("Roboto-Thin"),url(/best-resume-ever/static/fonts/Roboto-Thin.c25fd8d.eot?#iefix) format("embedded-opentype"),url(/best-resume-ever/static/fonts/Roboto-Thin.790ebf4.woff2) format("woff2"),url(/best-resume-ever/static/fonts/Roboto-Thin.90d3804.woff) format("woff"),url(/best-resume-ever/static/fonts/Roboto-Thin.cc85ce3.ttf) format("truetype"),url(/best-resume-ever/static/img/Roboto-Thin.ba422f7.svg#Roboto) format("svg")}@font-face{font-family:Roboto;src:url(/best-resume-ever/static/fonts/Roboto-ThinItalic.64ca718.eot);src:local("Roboto ThinItalic"),local("Roboto-ThinItalic"),url(/best-resume-ever/static/fonts/Roboto-ThinItalic.64ca718.eot?#iefix) format("embedded-opentype"),url(/best-resume-ever/static/fonts/Roboto-ThinItalic.8a2c1a5.woff2) format("woff2"),url(/best-resume-ever/static/fonts/Roboto-ThinItalic.5882932.woff) format("woff"),url(/best-resume-ever/static/fonts/Roboto-ThinItalic.11b5cc9.ttf) format("truetype"),url(/best-resume-ever/static/img/Roboto-ThinItalic.21e9a2e.svg#Roboto) format("svg");font-weight:100;font-style:italic}@font-face{font-family:Roboto-ThinItalic;src:url(/best-resume-ever/static/fonts/Roboto-ThinItalic.64ca718.eot);src:local("Roboto ThinItalic"),local("Roboto-ThinItalic"),url(/best-resume-ever/static/fonts/Roboto-ThinItalic.64ca718.eot?#iefix) format("embedded-opentype"),url(/best-resume-ever/static/fonts/Roboto-ThinItalic.8a2c1a5.woff2) format("woff2"),url(/best-resume-ever/static/fonts/Roboto-ThinItalic.5882932.woff) format("woff"),url(/best-resume-ever/static/fonts/Roboto-ThinItalic.11b5cc9.ttf) format("truetype"),url(/best-resume-ever/static/img/Roboto-ThinItalic.21e9a2e.svg#Roboto) format("svg")}@font-face{font-family:Roboto;src:url(/best-resume-ever/static/fonts/Roboto-Light.1830791.eot);src:local("Roboto Light"),local("Roboto-Light"),url(/best-resume-ever/static/fonts/Roboto-Light.1830791.eot?#iefix) format("embedded-opentype"),url(/best-resume-ever/static/fonts/Roboto-Light.8e0860f.woff2) format("woff2"),url(/best-resume-ever/static/fonts/Roboto-Light.37fbbba.woff) format("woff"),url(/best-resume-ever/static/fonts/Roboto-Light.a2b8c64.ttf) format("truetype"),url(/best-resume-ever/static/img/Roboto-Light.054fa50.svg#Roboto) format("svg");font-weight:300;font-style:normal}@font-face{font-family:Roboto-Light;src:url(/best-resume-ever/static/fonts/Roboto-Light.1830791.eot);src:local("Roboto Light"),local("Roboto-Light"),url(/best-resume-ever/static/fonts/Roboto-Light.1830791.eot?#iefix) format("embedded-opentype"),url(/best-resume-ever/static/fonts/Roboto-Light.8e0860f.woff2) format("woff2"),url(/best-resume-ever/static/fonts/Roboto-Light.37fbbba.woff) format("woff"),url(/best-resume-ever/static/fonts/Roboto-Light.a2b8c64.ttf) format("truetype"),url(/best-resume-ever/static/img/Roboto-Light.054fa50.svg#Roboto) format("svg")}@font-face{font-family:Roboto;src:url(/best-resume-ever/static/fonts/Roboto-LightItalic.cdd1c48.eot);src:local("Roboto LightItalic"),local("Roboto-LightItalic"),url(/best-resume-ever/static/fonts/Roboto-LightItalic.cdd1c48.eot?#iefix) format("embedded-opentype"),url(/best-resume-ever/static/fonts/Roboto-LightItalic.879d940.woff2) format("woff2"),url(/best-resume-ever/static/fonts/Roboto-LightItalic.c7b4e74.woff) format("woff"),url(/best-resume-ever/static/fonts/Roboto-LightItalic.056caea.ttf) format("truetype"),url(/best-resume-ever/static/img/Roboto-LightItalic.1a9e39e.svg#Roboto) format("svg");font-weight:300;font-style:italic}@font-face{font-family:Roboto-LightItalic;src:url(/best-resume-ever/static/fonts/Roboto-LightItalic.cdd1c48.eot);src:local("Roboto LightItalic"),local("Roboto-LightItalic"),url(/best-resume-ever/static/fonts/Roboto-LightItalic.cdd1c48.eot?#iefix) format("embedded-opentype"),url(/best-resume-ever/static/fonts/Roboto-LightItalic.879d940.woff2) format("woff2"),url(/best-resume-ever/static/fonts/Roboto-LightItalic.c7b4e74.woff) format("woff"),url(/best-resume-ever/static/fonts/Roboto-LightItalic.056caea.ttf) format("truetype"),url(/best-resume-ever/static/img/Roboto-LightItalic.1a9e39e.svg#Roboto) format("svg")}@font-face{font-family:Roboto;src:url(/best-resume-ever/static/fonts/Roboto-Regular.6a561d6.eot);src:local("Roboto Regular"),local("Roboto-Regular"),url(/best-resume-ever/static/fonts/Roboto-Regular.6a561d6.eot?#iefix) format("embedded-opentype"),url(/best-resume-ever/static/fonts/Roboto-Regular.b2a6341.woff2) format("woff2"),url(/best-resume-ever/static/fonts/Roboto-Regular.081b11e.woff) format("woff"),url(/best-resume-ever/static/fonts/Roboto-Regular.99b14f0.ttf) format("truetype"),url(/best-resume-ever/static/img/Roboto-Regular.766c892.svg#Roboto) format("svg");font-weight:400;font-style:normal}@font-face{font-family:Roboto-Regular;src:url(/best-resume-ever/static/fonts/Roboto-Regular.6a561d6.eot);src:local("Roboto Regular"),local("Roboto-Regular"),url(/best-resume-ever/static/fonts/Roboto-Regular.6a561d6.eot?#iefix) format("embedded-opentype"),url(/best-resume-ever/static/fonts/Roboto-Regular.b2a6341.woff2) format("woff2"),url(/best-resume-ever/static/fonts/Roboto-Regular.081b11e.woff) format("woff"),url(/best-resume-ever/static/fonts/Roboto-Regular.99b14f0.ttf) format("truetype"),url(/best-resume-ever/static/img/Roboto-Regular.766c892.svg#Roboto) format("svg")}@font-face{font-family:Roboto;src:url(/best-resume-ever/static/fonts/Roboto-RegularItalic.f3660f4.eot);src:local("Roboto RegularItalic"),local("Roboto-RegularItalic"),url(/best-resume-ever/static/fonts/Roboto-RegularItalic.f3660f4.eot?#iefix) format("embedded-opentype"),url(/best-resume-ever/static/fonts/Roboto-RegularItalic.df8e3a9.woff2) format("woff2"),url(/best-resume-ever/static/fonts/Roboto-RegularItalic.8add1ba.woff) format("woff"),url(/best-resume-ever/static/fonts/Roboto-RegularItalic.90dbf90.ttf) format("truetype"),url(/best-resume-ever/static/img/Roboto-RegularItalic.527502d.svg#Roboto) format("svg");font-weight:400;font-style:italic}@font-face{font-family:Roboto-RegularItalic;src:url(/best-resume-ever/static/fonts/Roboto-RegularItalic.f3660f4.eot);src:local("Roboto RegularItalic"),local("Roboto-RegularItalic"),url(/best-resume-ever/static/fonts/Roboto-RegularItalic.f3660f4.eot?#iefix) format("embedded-opentype"),url(/best-resume-ever/static/fonts/Roboto-RegularItalic.df8e3a9.woff2) format("woff2"),url(/best-resume-ever/static/fonts/Roboto-RegularItalic.8add1ba.woff) format("woff"),url(/best-resume-ever/static/fonts/Roboto-RegularItalic.90dbf90.ttf) format("truetype"),url(/best-resume-ever/static/img/Roboto-RegularItalic.527502d.svg#Roboto) format("svg")}@font-face{font-family:Roboto;src:url(/best-resume-ever/static/fonts/Roboto-Medium.76cad5b.eot);src:local("Roboto Medium"),local("Roboto-Medium"),url(/best-resume-ever/static/fonts/Roboto-Medium.76cad5b.eot?#iefix) format("embedded-opentype"),url(/best-resume-ever/static/fonts/Roboto-Medium.2741a14.woff2) format("woff2"),url(/best-resume-ever/static/fonts/Roboto-Medium.303ded6.woff) format("woff"),url(/best-resume-ever/static/fonts/Roboto-Medium.c54f2a3.ttf) format("truetype"),url(/best-resume-ever/static/img/Roboto-Medium.2b4f394.svg#Roboto) format("svg");font-weight:500;font-style:normal}@font-face{font-family:Roboto-Medium;src:url(/best-resume-ever/static/fonts/Roboto-Medium.76cad5b.eot);src:local("Roboto Medium"),local("Roboto-Medium"),url(/best-resume-ever/static/fonts/Roboto-Medium.76cad5b.eot?#iefix) format("embedded-opentype"),url(/best-resume-ever/static/fonts/Roboto-Medium.2741a14.woff2) format("woff2"),url(/best-resume-ever/static/fonts/Roboto-Medium.303ded6.woff) format("woff"),url(/best-resume-ever/static/fonts/Roboto-Medium.c54f2a3.ttf) format("truetype"),url(/best-resume-ever/static/img/Roboto-Medium.2b4f394.svg#Roboto) format("svg")}@font-face{font-family:Roboto;src:url(/best-resume-ever/static/fonts/Roboto-MediumItalic.7a49ce7.eot);src:local("Roboto MediumItalic"),local("Roboto-MediumItalic"),url(/best-resume-ever/static/fonts/Roboto-MediumItalic.7a49ce7.eot?#iefix) format("embedded-opentype"),url(/best-resume-ever/static/fonts/Roboto-MediumItalic.f10d1f4.woff2) format("woff2"),url(/best-resume-ever/static/fonts/Roboto-MediumItalic.da059a7.woff) format("woff"),url(/best-resume-ever/static/fonts/Roboto-MediumItalic.fa18335.ttf) format("truetype"),url(/best-resume-ever/static/img/Roboto-MediumItalic.eb65fb1.svg#Roboto) format("svg");font-weight:500;font-style:italic}@font-face{font-family:Roboto-MediumItalic;src:url(/best-resume-ever/static/fonts/Roboto-MediumItalic.7a49ce7.eot);src:local("Roboto MediumItalic"),local("Roboto-MediumItalic"),url(/best-resume-ever/static/fonts/Roboto-MediumItalic.7a49ce7.eot?#iefix) format("embedded-opentype"),url(/best-resume-ever/static/fonts/Roboto-MediumItalic.f10d1f4.woff2) format("woff2"),url(/best-resume-ever/static/fonts/Roboto-MediumItalic.da059a7.woff) format("woff"),url(/best-resume-ever/static/fonts/Roboto-MediumItalic.fa18335.ttf) format("truetype"),url(/best-resume-ever/static/img/Roboto-MediumItalic.eb65fb1.svg#Roboto) format("svg")}@font-face{font-family:Roboto;src:url(/best-resume-ever/static/fonts/Roboto-Bold.c8bcb1c.eot);src:local("Roboto Bold"),local("Roboto-Bold"),url(/best-resume-ever/static/fonts/Roboto-Bold.c8bcb1c.eot?#iefix) format("embedded-opentype"),url(/best-resume-ever/static/fonts/Roboto-Bold.ab96cca.woff2) format("woff2"),url(/best-resume-ever/static/fonts/Roboto-Bold.ad140ff.woff) format("woff"),url(/best-resume-ever/static/fonts/Roboto-Bold.56a76a2.ttf) format("truetype"),url(/best-resume-ever/static/img/Roboto-Bold.c7f4667.svg#Roboto) format("svg");font-weight:700;font-style:normal}@font-face{font-family:Roboto-Bold;src:url(/best-resume-ever/static/fonts/Roboto-Bold.c8bcb1c.eot);src:local("Roboto Bold"),local("Roboto-Bold"),url(/best-resume-ever/static/fonts/Roboto-Bold.c8bcb1c.eot?#iefix) format("embedded-opentype"),url(/best-resume-ever/static/fonts/Roboto-Bold.ab96cca.woff2) format("woff2"),url(/best-resume-ever/static/fonts/Roboto-Bold.ad140ff.woff) format("woff"),url(/best-resume-ever/static/fonts/Roboto-Bold.56a76a2.ttf) format("truetype"),url(/best-resume-ever/static/img/Roboto-Bold.c7f4667.svg#Roboto) format("svg")}@font-face{font-family:Roboto;src:url(/best-resume-ever/static/fonts/Roboto-BoldItalic.4b2cc52.eot);src:local("Roboto BoldItalic"),local("Roboto-BoldItalic"),url(/best-resume-ever/static/fonts/Roboto-BoldItalic.4b2cc52.eot?#iefix) format("embedded-opentype"),url(/best-resume-ever/static/fonts/Roboto-BoldItalic.355e388.woff2) format("woff2"),url(/best-resume-ever/static/fonts/Roboto-BoldItalic.a7dce23.woff) format("woff"),url(/best-resume-ever/static/fonts/Roboto-BoldItalic.d23d5bd.ttf) format("truetype"),url(/best-resume-ever/static/img/Roboto-BoldItalic.c2e0f75.svg#Roboto) format("svg");font-weight:700;font-style:italic}@font-face{font-family:Roboto-BoldItalic;src:url(/best-resume-ever/static/fonts/Roboto-BoldItalic.4b2cc52.eot);src:local("Roboto BoldItalic"),local("Roboto-BoldItalic"),url(/best-resume-ever/static/fonts/Roboto-BoldItalic.4b2cc52.eot?#iefix) format("embedded-opentype"),url(/best-resume-ever/static/fonts/Roboto-BoldItalic.355e388.woff2) format("woff2"),url(/best-resume-ever/static/fonts/Roboto-BoldItalic.a7dce23.woff) format("woff"),url(/best-resume-ever/static/fonts/Roboto-BoldItalic.d23d5bd.ttf) format("truetype"),url(/best-resume-ever/static/img/Roboto-BoldItalic.c2e0f75.svg#Roboto) format("svg")}@font-face{font-family:Roboto;src:url(/best-resume-ever/static/fonts/Roboto-Black.2a82f89.eot);src:local("Roboto Black"),local("Roboto-Black"),url(/best-resume-ever/static/fonts/Roboto-Black.2a82f89.eot?#iefix) format("embedded-opentype"),url(/best-resume-ever/static/fonts/Roboto-Black.2b8d692.woff2) format("woff2"),url(/best-resume-ever/static/fonts/Roboto-Black.4c3b622.woff) format("woff"),url(/best-resume-ever/static/fonts/Roboto-Black.44236ad.ttf) format("truetype"),url(/best-resume-ever/static/img/Roboto-Black.ab04c76.svg#Roboto) format("svg");font-weight:900;font-style:normal}@font-face{font-family:Roboto-Black;src:url(/best-resume-ever/static/fonts/Roboto-Black.2a82f89.eot);src:local("Roboto Black"),local("Roboto-Black"),url(/best-resume-ever/static/fonts/Roboto-Black.2a82f89.eot?#iefix) format("embedded-opentype"),url(/best-resume-ever/static/fonts/Roboto-Black.2b8d692.woff2) format("woff2"),url(/best-resume-ever/static/fonts/Roboto-Black.4c3b622.woff) format("woff"),url(/best-resume-ever/static/fonts/Roboto-Black.44236ad.ttf) format("truetype"),url(/best-resume-ever/static/img/Roboto-Black.ab04c76.svg#Roboto) format("svg")}@font-face{font-family:Roboto;src:url(/best-resume-ever/static/fonts/Roboto-BlackItalic.4b7407c.eot);src:local("Roboto BlackItalic"),local("Roboto-BlackItalic"),url(/best-resume-ever/static/fonts/Roboto-BlackItalic.4b7407c.eot?#iefix) format("embedded-opentype"),url(/best-resume-ever/static/fonts/Roboto-BlackItalic.38d14dd.woff2) format("woff2"),url(/best-resume-ever/static/fonts/Roboto-BlackItalic.3a99796.woff) format("woff"),url(/best-resume-ever/static/fonts/Roboto-BlackItalic.ad0f284.ttf) format("truetype"),url(/best-resume-ever/static/img/Roboto-BlackItalic.1f37c75.svg#Roboto) format("svg");font-weight:900;font-style:italic}@font-face{font-family:Roboto-BlackItalic;src:url(/best-resume-ever/static/fonts/Roboto-BlackItalic.4b7407c.eot);src:local("Roboto BlackItalic"),local("Roboto-BlackItalic"),url(/best-resume-ever/static/fonts/Roboto-BlackItalic.4b7407c.eot?#iefix) format("embedded-opentype"),url(/best-resume-ever/static/fonts/Roboto-BlackItalic.38d14dd.woff2) format("woff2"),url(/best-resume-ever/static/fonts/Roboto-BlackItalic.3a99796.woff) format("woff"),url(/best-resume-ever/static/fonts/Roboto-BlackItalic.ad0f284.ttf) format("truetype"),url(/best-resume-ever/static/img/Roboto-BlackItalic.1f37c75.svg#Roboto) format("svg")}/*! - * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome - * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) - */@font-face{font-family:FontAwesome;src:url(/best-resume-ever/static/fonts/fontawesome-webfont.674f50d.eot);src:url(/best-resume-ever/static/fonts/fontawesome-webfont.674f50d.eot?#iefix&v=4.7.0) format("embedded-opentype"),url(/best-resume-ever/static/fonts/fontawesome-webfont.af7ae50.woff2) format("woff2"),url(/best-resume-ever/static/fonts/fontawesome-webfont.fee66e7.woff) format("woff"),url(/best-resume-ever/static/fonts/fontawesome-webfont.b06871f.ttf) format("truetype"),url(/best-resume-ever/static/img/fontawesome-webfont.912ec66.svg#fontawesomeregular) format("svg");font-weight:400;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:.08em solid #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scaleX(-1);transform:scaleX(-1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scaleY(-1);transform:scaleY(-1)}:root .fa-flip-horizontal,:root .fa-flip-vertical,:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\F000"}.fa-music:before{content:"\F001"}.fa-search:before{content:"\F002"}.fa-envelope-o:before{content:"\F003"}.fa-heart:before{content:"\F004"}.fa-star:before{content:"\F005"}.fa-star-o:before{content:"\F006"}.fa-user:before{content:"\F007"}.fa-film:before{content:"\F008"}.fa-th-large:before{content:"\F009"}.fa-th:before{content:"\F00A"}.fa-th-list:before{content:"\F00B"}.fa-check:before{content:"\F00C"}.fa-close:before,.fa-remove:before,.fa-times:before{content:"\F00D"}.fa-search-plus:before{content:"\F00E"}.fa-search-minus:before{content:"\F010"}.fa-power-off:before{content:"\F011"}.fa-signal:before{content:"\F012"}.fa-cog:before,.fa-gear:before{content:"\F013"}.fa-trash-o:before{content:"\F014"}.fa-home:before{content:"\F015"}.fa-file-o:before{content:"\F016"}.fa-clock-o:before{content:"\F017"}.fa-road:before{content:"\F018"}.fa-download:before{content:"\F019"}.fa-arrow-circle-o-down:before{content:"\F01A"}.fa-arrow-circle-o-up:before{content:"\F01B"}.fa-inbox:before{content:"\F01C"}.fa-play-circle-o:before{content:"\F01D"}.fa-repeat:before,.fa-rotate-right:before{content:"\F01E"}.fa-refresh:before{content:"\F021"}.fa-list-alt:before{content:"\F022"}.fa-lock:before{content:"\F023"}.fa-flag:before{content:"\F024"}.fa-headphones:before{content:"\F025"}.fa-volume-off:before{content:"\F026"}.fa-volume-down:before{content:"\F027"}.fa-volume-up:before{content:"\F028"}.fa-qrcode:before{content:"\F029"}.fa-barcode:before{content:"\F02A"}.fa-tag:before{content:"\F02B"}.fa-tags:before{content:"\F02C"}.fa-book:before{content:"\F02D"}.fa-bookmark:before{content:"\F02E"}.fa-print:before{content:"\F02F"}.fa-camera:before{content:"\F030"}.fa-font:before{content:"\F031"}.fa-bold:before{content:"\F032"}.fa-italic:before{content:"\F033"}.fa-text-height:before{content:"\F034"}.fa-text-width:before{content:"\F035"}.fa-align-left:before{content:"\F036"}.fa-align-center:before{content:"\F037"}.fa-align-right:before{content:"\F038"}.fa-align-justify:before{content:"\F039"}.fa-list:before{content:"\F03A"}.fa-dedent:before,.fa-outdent:before{content:"\F03B"}.fa-indent:before{content:"\F03C"}.fa-video-camera:before{content:"\F03D"}.fa-image:before,.fa-photo:before,.fa-picture-o:before{content:"\F03E"}.fa-pencil:before{content:"\F040"}.fa-map-marker:before{content:"\F041"}.fa-adjust:before{content:"\F042"}.fa-tint:before{content:"\F043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\F044"}.fa-share-square-o:before{content:"\F045"}.fa-check-square-o:before{content:"\F046"}.fa-arrows:before{content:"\F047"}.fa-step-backward:before{content:"\F048"}.fa-fast-backward:before{content:"\F049"}.fa-backward:before{content:"\F04A"}.fa-play:before{content:"\F04B"}.fa-pause:before{content:"\F04C"}.fa-stop:before{content:"\F04D"}.fa-forward:before{content:"\F04E"}.fa-fast-forward:before{content:"\F050"}.fa-step-forward:before{content:"\F051"}.fa-eject:before{content:"\F052"}.fa-chevron-left:before{content:"\F053"}.fa-chevron-right:before{content:"\F054"}.fa-plus-circle:before{content:"\F055"}.fa-minus-circle:before{content:"\F056"}.fa-times-circle:before{content:"\F057"}.fa-check-circle:before{content:"\F058"}.fa-question-circle:before{content:"\F059"}.fa-info-circle:before{content:"\F05A"}.fa-crosshairs:before{content:"\F05B"}.fa-times-circle-o:before{content:"\F05C"}.fa-check-circle-o:before{content:"\F05D"}.fa-ban:before{content:"\F05E"}.fa-arrow-left:before{content:"\F060"}.fa-arrow-right:before{content:"\F061"}.fa-arrow-up:before{content:"\F062"}.fa-arrow-down:before{content:"\F063"}.fa-mail-forward:before,.fa-share:before{content:"\F064"}.fa-expand:before{content:"\F065"}.fa-compress:before{content:"\F066"}.fa-plus:before{content:"\F067"}.fa-minus:before{content:"\F068"}.fa-asterisk:before{content:"\F069"}.fa-exclamation-circle:before{content:"\F06A"}.fa-gift:before{content:"\F06B"}.fa-leaf:before{content:"\F06C"}.fa-fire:before{content:"\F06D"}.fa-eye:before{content:"\F06E"}.fa-eye-slash:before{content:"\F070"}.fa-exclamation-triangle:before,.fa-warning:before{content:"\F071"}.fa-plane:before{content:"\F072"}.fa-calendar:before{content:"\F073"}.fa-random:before{content:"\F074"}.fa-comment:before{content:"\F075"}.fa-magnet:before{content:"\F076"}.fa-chevron-up:before{content:"\F077"}.fa-chevron-down:before{content:"\F078"}.fa-retweet:before{content:"\F079"}.fa-shopping-cart:before{content:"\F07A"}.fa-folder:before{content:"\F07B"}.fa-folder-open:before{content:"\F07C"}.fa-arrows-v:before{content:"\F07D"}.fa-arrows-h:before{content:"\F07E"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\F080"}.fa-twitter-square:before{content:"\F081"}.fa-facebook-square:before{content:"\F082"}.fa-camera-retro:before{content:"\F083"}.fa-key:before{content:"\F084"}.fa-cogs:before,.fa-gears:before{content:"\F085"}.fa-comments:before{content:"\F086"}.fa-thumbs-o-up:before{content:"\F087"}.fa-thumbs-o-down:before{content:"\F088"}.fa-star-half:before{content:"\F089"}.fa-heart-o:before{content:"\F08A"}.fa-sign-out:before{content:"\F08B"}.fa-linkedin-square:before{content:"\F08C"}.fa-thumb-tack:before{content:"\F08D"}.fa-external-link:before{content:"\F08E"}.fa-sign-in:before{content:"\F090"}.fa-trophy:before{content:"\F091"}.fa-github-square:before{content:"\F092"}.fa-upload:before{content:"\F093"}.fa-lemon-o:before{content:"\F094"}.fa-phone:before{content:"\F095"}.fa-square-o:before{content:"\F096"}.fa-bookmark-o:before{content:"\F097"}.fa-phone-square:before{content:"\F098"}.fa-twitter:before{content:"\F099"}.fa-facebook-f:before,.fa-facebook:before{content:"\F09A"}.fa-github:before{content:"\F09B"}.fa-unlock:before{content:"\F09C"}.fa-credit-card:before{content:"\F09D"}.fa-feed:before,.fa-rss:before{content:"\F09E"}.fa-hdd-o:before{content:"\F0A0"}.fa-bullhorn:before{content:"\F0A1"}.fa-bell:before{content:"\F0F3"}.fa-certificate:before{content:"\F0A3"}.fa-hand-o-right:before{content:"\F0A4"}.fa-hand-o-left:before{content:"\F0A5"}.fa-hand-o-up:before{content:"\F0A6"}.fa-hand-o-down:before{content:"\F0A7"}.fa-arrow-circle-left:before{content:"\F0A8"}.fa-arrow-circle-right:before{content:"\F0A9"}.fa-arrow-circle-up:before{content:"\F0AA"}.fa-arrow-circle-down:before{content:"\F0AB"}.fa-globe:before{content:"\F0AC"}.fa-wrench:before{content:"\F0AD"}.fa-tasks:before{content:"\F0AE"}.fa-filter:before{content:"\F0B0"}.fa-briefcase:before{content:"\F0B1"}.fa-arrows-alt:before{content:"\F0B2"}.fa-group:before,.fa-users:before{content:"\F0C0"}.fa-chain:before,.fa-link:before{content:"\F0C1"}.fa-cloud:before{content:"\F0C2"}.fa-flask:before{content:"\F0C3"}.fa-cut:before,.fa-scissors:before{content:"\F0C4"}.fa-copy:before,.fa-files-o:before{content:"\F0C5"}.fa-paperclip:before{content:"\F0C6"}.fa-floppy-o:before,.fa-save:before{content:"\F0C7"}.fa-square:before{content:"\F0C8"}.fa-bars:before,.fa-navicon:before,.fa-reorder:before{content:"\F0C9"}.fa-list-ul:before{content:"\F0CA"}.fa-list-ol:before{content:"\F0CB"}.fa-strikethrough:before{content:"\F0CC"}.fa-underline:before{content:"\F0CD"}.fa-table:before{content:"\F0CE"}.fa-magic:before{content:"\F0D0"}.fa-truck:before{content:"\F0D1"}.fa-pinterest:before{content:"\F0D2"}.fa-pinterest-square:before{content:"\F0D3"}.fa-google-plus-square:before{content:"\F0D4"}.fa-google-plus:before{content:"\F0D5"}.fa-money:before{content:"\F0D6"}.fa-caret-down:before{content:"\F0D7"}.fa-caret-up:before{content:"\F0D8"}.fa-caret-left:before{content:"\F0D9"}.fa-caret-right:before{content:"\F0DA"}.fa-columns:before{content:"\F0DB"}.fa-sort:before,.fa-unsorted:before{content:"\F0DC"}.fa-sort-desc:before,.fa-sort-down:before{content:"\F0DD"}.fa-sort-asc:before,.fa-sort-up:before{content:"\F0DE"}.fa-envelope:before{content:"\F0E0"}.fa-linkedin:before{content:"\F0E1"}.fa-rotate-left:before,.fa-undo:before{content:"\F0E2"}.fa-gavel:before,.fa-legal:before{content:"\F0E3"}.fa-dashboard:before,.fa-tachometer:before{content:"\F0E4"}.fa-comment-o:before{content:"\F0E5"}.fa-comments-o:before{content:"\F0E6"}.fa-bolt:before,.fa-flash:before{content:"\F0E7"}.fa-sitemap:before{content:"\F0E8"}.fa-umbrella:before{content:"\F0E9"}.fa-clipboard:before,.fa-paste:before{content:"\F0EA"}.fa-lightbulb-o:before{content:"\F0EB"}.fa-exchange:before{content:"\F0EC"}.fa-cloud-download:before{content:"\F0ED"}.fa-cloud-upload:before{content:"\F0EE"}.fa-user-md:before{content:"\F0F0"}.fa-stethoscope:before{content:"\F0F1"}.fa-suitcase:before{content:"\F0F2"}.fa-bell-o:before{content:"\F0A2"}.fa-coffee:before{content:"\F0F4"}.fa-cutlery:before{content:"\F0F5"}.fa-file-text-o:before{content:"\F0F6"}.fa-building-o:before{content:"\F0F7"}.fa-hospital-o:before{content:"\F0F8"}.fa-ambulance:before{content:"\F0F9"}.fa-medkit:before{content:"\F0FA"}.fa-fighter-jet:before{content:"\F0FB"}.fa-beer:before{content:"\F0FC"}.fa-h-square:before{content:"\F0FD"}.fa-plus-square:before{content:"\F0FE"}.fa-angle-double-left:before{content:"\F100"}.fa-angle-double-right:before{content:"\F101"}.fa-angle-double-up:before{content:"\F102"}.fa-angle-double-down:before{content:"\F103"}.fa-angle-left:before{content:"\F104"}.fa-angle-right:before{content:"\F105"}.fa-angle-up:before{content:"\F106"}.fa-angle-down:before{content:"\F107"}.fa-desktop:before{content:"\F108"}.fa-laptop:before{content:"\F109"}.fa-tablet:before{content:"\F10A"}.fa-mobile-phone:before,.fa-mobile:before{content:"\F10B"}.fa-circle-o:before{content:"\F10C"}.fa-quote-left:before{content:"\F10D"}.fa-quote-right:before{content:"\F10E"}.fa-spinner:before{content:"\F110"}.fa-circle:before{content:"\F111"}.fa-mail-reply:before,.fa-reply:before{content:"\F112"}.fa-github-alt:before{content:"\F113"}.fa-folder-o:before{content:"\F114"}.fa-folder-open-o:before{content:"\F115"}.fa-smile-o:before{content:"\F118"}.fa-frown-o:before{content:"\F119"}.fa-meh-o:before{content:"\F11A"}.fa-gamepad:before{content:"\F11B"}.fa-keyboard-o:before{content:"\F11C"}.fa-flag-o:before{content:"\F11D"}.fa-flag-checkered:before{content:"\F11E"}.fa-terminal:before{content:"\F120"}.fa-code:before{content:"\F121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\F122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\F123"}.fa-location-arrow:before{content:"\F124"}.fa-crop:before{content:"\F125"}.fa-code-fork:before{content:"\F126"}.fa-chain-broken:before,.fa-unlink:before{content:"\F127"}.fa-question:before{content:"\F128"}.fa-info:before{content:"\F129"}.fa-exclamation:before{content:"\F12A"}.fa-superscript:before{content:"\F12B"}.fa-subscript:before{content:"\F12C"}.fa-eraser:before{content:"\F12D"}.fa-puzzle-piece:before{content:"\F12E"}.fa-microphone:before{content:"\F130"}.fa-microphone-slash:before{content:"\F131"}.fa-shield:before{content:"\F132"}.fa-calendar-o:before{content:"\F133"}.fa-fire-extinguisher:before{content:"\F134"}.fa-rocket:before{content:"\F135"}.fa-maxcdn:before{content:"\F136"}.fa-chevron-circle-left:before{content:"\F137"}.fa-chevron-circle-right:before{content:"\F138"}.fa-chevron-circle-up:before{content:"\F139"}.fa-chevron-circle-down:before{content:"\F13A"}.fa-html5:before{content:"\F13B"}.fa-css3:before{content:"\F13C"}.fa-anchor:before{content:"\F13D"}.fa-unlock-alt:before{content:"\F13E"}.fa-bullseye:before{content:"\F140"}.fa-ellipsis-h:before{content:"\F141"}.fa-ellipsis-v:before{content:"\F142"}.fa-rss-square:before{content:"\F143"}.fa-play-circle:before{content:"\F144"}.fa-ticket:before{content:"\F145"}.fa-minus-square:before{content:"\F146"}.fa-minus-square-o:before{content:"\F147"}.fa-level-up:before{content:"\F148"}.fa-level-down:before{content:"\F149"}.fa-check-square:before{content:"\F14A"}.fa-pencil-square:before{content:"\F14B"}.fa-external-link-square:before{content:"\F14C"}.fa-share-square:before{content:"\F14D"}.fa-compass:before{content:"\F14E"}.fa-caret-square-o-down:before,.fa-toggle-down:before{content:"\F150"}.fa-caret-square-o-up:before,.fa-toggle-up:before{content:"\F151"}.fa-caret-square-o-right:before,.fa-toggle-right:before{content:"\F152"}.fa-eur:before,.fa-euro:before{content:"\F153"}.fa-gbp:before{content:"\F154"}.fa-dollar:before,.fa-usd:before{content:"\F155"}.fa-inr:before,.fa-rupee:before{content:"\F156"}.fa-cny:before,.fa-jpy:before,.fa-rmb:before,.fa-yen:before{content:"\F157"}.fa-rouble:before,.fa-rub:before,.fa-ruble:before{content:"\F158"}.fa-krw:before,.fa-won:before{content:"\F159"}.fa-bitcoin:before,.fa-btc:before{content:"\F15A"}.fa-file:before{content:"\F15B"}.fa-file-text:before{content:"\F15C"}.fa-sort-alpha-asc:before{content:"\F15D"}.fa-sort-alpha-desc:before{content:"\F15E"}.fa-sort-amount-asc:before{content:"\F160"}.fa-sort-amount-desc:before{content:"\F161"}.fa-sort-numeric-asc:before{content:"\F162"}.fa-sort-numeric-desc:before{content:"\F163"}.fa-thumbs-up:before{content:"\F164"}.fa-thumbs-down:before{content:"\F165"}.fa-youtube-square:before{content:"\F166"}.fa-youtube:before{content:"\F167"}.fa-xing:before{content:"\F168"}.fa-xing-square:before{content:"\F169"}.fa-youtube-play:before{content:"\F16A"}.fa-dropbox:before{content:"\F16B"}.fa-stack-overflow:before{content:"\F16C"}.fa-instagram:before{content:"\F16D"}.fa-flickr:before{content:"\F16E"}.fa-adn:before{content:"\F170"}.fa-bitbucket:before{content:"\F171"}.fa-bitbucket-square:before{content:"\F172"}.fa-tumblr:before{content:"\F173"}.fa-tumblr-square:before{content:"\F174"}.fa-long-arrow-down:before{content:"\F175"}.fa-long-arrow-up:before{content:"\F176"}.fa-long-arrow-left:before{content:"\F177"}.fa-long-arrow-right:before{content:"\F178"}.fa-apple:before{content:"\F179"}.fa-windows:before{content:"\F17A"}.fa-android:before{content:"\F17B"}.fa-linux:before{content:"\F17C"}.fa-dribbble:before{content:"\F17D"}.fa-skype:before{content:"\F17E"}.fa-foursquare:before{content:"\F180"}.fa-trello:before{content:"\F181"}.fa-female:before{content:"\F182"}.fa-male:before{content:"\F183"}.fa-gittip:before,.fa-gratipay:before{content:"\F184"}.fa-sun-o:before{content:"\F185"}.fa-moon-o:before{content:"\F186"}.fa-archive:before{content:"\F187"}.fa-bug:before{content:"\F188"}.fa-vk:before{content:"\F189"}.fa-weibo:before{content:"\F18A"}.fa-renren:before{content:"\F18B"}.fa-pagelines:before{content:"\F18C"}.fa-stack-exchange:before{content:"\F18D"}.fa-arrow-circle-o-right:before{content:"\F18E"}.fa-arrow-circle-o-left:before{content:"\F190"}.fa-caret-square-o-left:before,.fa-toggle-left:before{content:"\F191"}.fa-dot-circle-o:before{content:"\F192"}.fa-wheelchair:before{content:"\F193"}.fa-vimeo-square:before{content:"\F194"}.fa-try:before,.fa-turkish-lira:before{content:"\F195"}.fa-plus-square-o:before{content:"\F196"}.fa-space-shuttle:before{content:"\F197"}.fa-slack:before{content:"\F198"}.fa-envelope-square:before{content:"\F199"}.fa-wordpress:before{content:"\F19A"}.fa-openid:before{content:"\F19B"}.fa-bank:before,.fa-institution:before,.fa-university:before{content:"\F19C"}.fa-graduation-cap:before,.fa-mortar-board:before{content:"\F19D"}.fa-yahoo:before{content:"\F19E"}.fa-google:before{content:"\F1A0"}.fa-reddit:before{content:"\F1A1"}.fa-reddit-square:before{content:"\F1A2"}.fa-stumbleupon-circle:before{content:"\F1A3"}.fa-stumbleupon:before{content:"\F1A4"}.fa-delicious:before{content:"\F1A5"}.fa-digg:before{content:"\F1A6"}.fa-pied-piper-pp:before{content:"\F1A7"}.fa-pied-piper-alt:before{content:"\F1A8"}.fa-drupal:before{content:"\F1A9"}.fa-joomla:before{content:"\F1AA"}.fa-language:before{content:"\F1AB"}.fa-fax:before{content:"\F1AC"}.fa-building:before{content:"\F1AD"}.fa-child:before{content:"\F1AE"}.fa-paw:before{content:"\F1B0"}.fa-spoon:before{content:"\F1B1"}.fa-cube:before{content:"\F1B2"}.fa-cubes:before{content:"\F1B3"}.fa-behance:before{content:"\F1B4"}.fa-behance-square:before{content:"\F1B5"}.fa-steam:before{content:"\F1B6"}.fa-steam-square:before{content:"\F1B7"}.fa-recycle:before{content:"\F1B8"}.fa-automobile:before,.fa-car:before{content:"\F1B9"}.fa-cab:before,.fa-taxi:before{content:"\F1BA"}.fa-tree:before{content:"\F1BB"}.fa-spotify:before{content:"\F1BC"}.fa-deviantart:before{content:"\F1BD"}.fa-soundcloud:before{content:"\F1BE"}.fa-database:before{content:"\F1C0"}.fa-file-pdf-o:before{content:"\F1C1"}.fa-file-word-o:before{content:"\F1C2"}.fa-file-excel-o:before{content:"\F1C3"}.fa-file-powerpoint-o:before{content:"\F1C4"}.fa-file-image-o:before,.fa-file-photo-o:before,.fa-file-picture-o:before{content:"\F1C5"}.fa-file-archive-o:before,.fa-file-zip-o:before{content:"\F1C6"}.fa-file-audio-o:before,.fa-file-sound-o:before{content:"\F1C7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\F1C8"}.fa-file-code-o:before{content:"\F1C9"}.fa-vine:before{content:"\F1CA"}.fa-codepen:before{content:"\F1CB"}.fa-jsfiddle:before{content:"\F1CC"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-ring:before,.fa-life-saver:before,.fa-support:before{content:"\F1CD"}.fa-circle-o-notch:before{content:"\F1CE"}.fa-ra:before,.fa-rebel:before,.fa-resistance:before{content:"\F1D0"}.fa-empire:before,.fa-ge:before{content:"\F1D1"}.fa-git-square:before{content:"\F1D2"}.fa-git:before{content:"\F1D3"}.fa-hacker-news:before,.fa-y-combinator-square:before,.fa-yc-square:before{content:"\F1D4"}.fa-tencent-weibo:before{content:"\F1D5"}.fa-qq:before{content:"\F1D6"}.fa-wechat:before,.fa-weixin:before{content:"\F1D7"}.fa-paper-plane:before,.fa-send:before{content:"\F1D8"}.fa-paper-plane-o:before,.fa-send-o:before{content:"\F1D9"}.fa-history:before{content:"\F1DA"}.fa-circle-thin:before{content:"\F1DB"}.fa-header:before{content:"\F1DC"}.fa-paragraph:before{content:"\F1DD"}.fa-sliders:before{content:"\F1DE"}.fa-share-alt:before{content:"\F1E0"}.fa-share-alt-square:before{content:"\F1E1"}.fa-bomb:before{content:"\F1E2"}.fa-futbol-o:before,.fa-soccer-ball-o:before{content:"\F1E3"}.fa-tty:before{content:"\F1E4"}.fa-binoculars:before{content:"\F1E5"}.fa-plug:before{content:"\F1E6"}.fa-slideshare:before{content:"\F1E7"}.fa-twitch:before{content:"\F1E8"}.fa-yelp:before{content:"\F1E9"}.fa-newspaper-o:before{content:"\F1EA"}.fa-wifi:before{content:"\F1EB"}.fa-calculator:before{content:"\F1EC"}.fa-paypal:before{content:"\F1ED"}.fa-google-wallet:before{content:"\F1EE"}.fa-cc-visa:before{content:"\F1F0"}.fa-cc-mastercard:before{content:"\F1F1"}.fa-cc-discover:before{content:"\F1F2"}.fa-cc-amex:before{content:"\F1F3"}.fa-cc-paypal:before{content:"\F1F4"}.fa-cc-stripe:before{content:"\F1F5"}.fa-bell-slash:before{content:"\F1F6"}.fa-bell-slash-o:before{content:"\F1F7"}.fa-trash:before{content:"\F1F8"}.fa-copyright:before{content:"\F1F9"}.fa-at:before{content:"\F1FA"}.fa-eyedropper:before{content:"\F1FB"}.fa-paint-brush:before{content:"\F1FC"}.fa-birthday-cake:before{content:"\F1FD"}.fa-area-chart:before{content:"\F1FE"}.fa-pie-chart:before{content:"\F200"}.fa-line-chart:before{content:"\F201"}.fa-lastfm:before{content:"\F202"}.fa-lastfm-square:before{content:"\F203"}.fa-toggle-off:before{content:"\F204"}.fa-toggle-on:before{content:"\F205"}.fa-bicycle:before{content:"\F206"}.fa-bus:before{content:"\F207"}.fa-ioxhost:before{content:"\F208"}.fa-angellist:before{content:"\F209"}.fa-cc:before{content:"\F20A"}.fa-ils:before,.fa-shekel:before,.fa-sheqel:before{content:"\F20B"}.fa-meanpath:before{content:"\F20C"}.fa-buysellads:before{content:"\F20D"}.fa-connectdevelop:before{content:"\F20E"}.fa-dashcube:before{content:"\F210"}.fa-forumbee:before{content:"\F211"}.fa-leanpub:before{content:"\F212"}.fa-sellsy:before{content:"\F213"}.fa-shirtsinbulk:before{content:"\F214"}.fa-simplybuilt:before{content:"\F215"}.fa-skyatlas:before{content:"\F216"}.fa-cart-plus:before{content:"\F217"}.fa-cart-arrow-down:before{content:"\F218"}.fa-diamond:before{content:"\F219"}.fa-ship:before{content:"\F21A"}.fa-user-secret:before{content:"\F21B"}.fa-motorcycle:before{content:"\F21C"}.fa-street-view:before{content:"\F21D"}.fa-heartbeat:before{content:"\F21E"}.fa-venus:before{content:"\F221"}.fa-mars:before{content:"\F222"}.fa-mercury:before{content:"\F223"}.fa-intersex:before,.fa-transgender:before{content:"\F224"}.fa-transgender-alt:before{content:"\F225"}.fa-venus-double:before{content:"\F226"}.fa-mars-double:before{content:"\F227"}.fa-venus-mars:before{content:"\F228"}.fa-mars-stroke:before{content:"\F229"}.fa-mars-stroke-v:before{content:"\F22A"}.fa-mars-stroke-h:before{content:"\F22B"}.fa-neuter:before{content:"\F22C"}.fa-genderless:before{content:"\F22D"}.fa-facebook-official:before{content:"\F230"}.fa-pinterest-p:before{content:"\F231"}.fa-whatsapp:before{content:"\F232"}.fa-server:before{content:"\F233"}.fa-user-plus:before{content:"\F234"}.fa-user-times:before{content:"\F235"}.fa-bed:before,.fa-hotel:before{content:"\F236"}.fa-viacoin:before{content:"\F237"}.fa-train:before{content:"\F238"}.fa-subway:before{content:"\F239"}.fa-medium:before{content:"\F23A"}.fa-y-combinator:before,.fa-yc:before{content:"\F23B"}.fa-optin-monster:before{content:"\F23C"}.fa-opencart:before{content:"\F23D"}.fa-expeditedssl:before{content:"\F23E"}.fa-battery-4:before,.fa-battery-full:before,.fa-battery:before{content:"\F240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\F241"}.fa-battery-2:before,.fa-battery-half:before{content:"\F242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\F243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\F244"}.fa-mouse-pointer:before{content:"\F245"}.fa-i-cursor:before{content:"\F246"}.fa-object-group:before{content:"\F247"}.fa-object-ungroup:before{content:"\F248"}.fa-sticky-note:before{content:"\F249"}.fa-sticky-note-o:before{content:"\F24A"}.fa-cc-jcb:before{content:"\F24B"}.fa-cc-diners-club:before{content:"\F24C"}.fa-clone:before{content:"\F24D"}.fa-balance-scale:before{content:"\F24E"}.fa-hourglass-o:before{content:"\F250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\F251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\F252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\F253"}.fa-hourglass:before{content:"\F254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\F255"}.fa-hand-paper-o:before,.fa-hand-stop-o:before{content:"\F256"}.fa-hand-scissors-o:before{content:"\F257"}.fa-hand-lizard-o:before{content:"\F258"}.fa-hand-spock-o:before{content:"\F259"}.fa-hand-pointer-o:before{content:"\F25A"}.fa-hand-peace-o:before{content:"\F25B"}.fa-trademark:before{content:"\F25C"}.fa-registered:before{content:"\F25D"}.fa-creative-commons:before{content:"\F25E"}.fa-gg:before{content:"\F260"}.fa-gg-circle:before{content:"\F261"}.fa-tripadvisor:before{content:"\F262"}.fa-odnoklassniki:before{content:"\F263"}.fa-odnoklassniki-square:before{content:"\F264"}.fa-get-pocket:before{content:"\F265"}.fa-wikipedia-w:before{content:"\F266"}.fa-safari:before{content:"\F267"}.fa-chrome:before{content:"\F268"}.fa-firefox:before{content:"\F269"}.fa-opera:before{content:"\F26A"}.fa-internet-explorer:before{content:"\F26B"}.fa-television:before,.fa-tv:before{content:"\F26C"}.fa-contao:before{content:"\F26D"}.fa-500px:before{content:"\F26E"}.fa-amazon:before{content:"\F270"}.fa-calendar-plus-o:before{content:"\F271"}.fa-calendar-minus-o:before{content:"\F272"}.fa-calendar-times-o:before{content:"\F273"}.fa-calendar-check-o:before{content:"\F274"}.fa-industry:before{content:"\F275"}.fa-map-pin:before{content:"\F276"}.fa-map-signs:before{content:"\F277"}.fa-map-o:before{content:"\F278"}.fa-map:before{content:"\F279"}.fa-commenting:before{content:"\F27A"}.fa-commenting-o:before{content:"\F27B"}.fa-houzz:before{content:"\F27C"}.fa-vimeo:before{content:"\F27D"}.fa-black-tie:before{content:"\F27E"}.fa-fonticons:before{content:"\F280"}.fa-reddit-alien:before{content:"\F281"}.fa-edge:before{content:"\F282"}.fa-credit-card-alt:before{content:"\F283"}.fa-codiepie:before{content:"\F284"}.fa-modx:before{content:"\F285"}.fa-fort-awesome:before{content:"\F286"}.fa-usb:before{content:"\F287"}.fa-product-hunt:before{content:"\F288"}.fa-mixcloud:before{content:"\F289"}.fa-scribd:before{content:"\F28A"}.fa-pause-circle:before{content:"\F28B"}.fa-pause-circle-o:before{content:"\F28C"}.fa-stop-circle:before{content:"\F28D"}.fa-stop-circle-o:before{content:"\F28E"}.fa-shopping-bag:before{content:"\F290"}.fa-shopping-basket:before{content:"\F291"}.fa-hashtag:before{content:"\F292"}.fa-bluetooth:before{content:"\F293"}.fa-bluetooth-b:before{content:"\F294"}.fa-percent:before{content:"\F295"}.fa-gitlab:before{content:"\F296"}.fa-wpbeginner:before{content:"\F297"}.fa-wpforms:before{content:"\F298"}.fa-envira:before{content:"\F299"}.fa-universal-access:before{content:"\F29A"}.fa-wheelchair-alt:before{content:"\F29B"}.fa-question-circle-o:before{content:"\F29C"}.fa-blind:before{content:"\F29D"}.fa-audio-description:before{content:"\F29E"}.fa-volume-control-phone:before{content:"\F2A0"}.fa-braille:before{content:"\F2A1"}.fa-assistive-listening-systems:before{content:"\F2A2"}.fa-american-sign-language-interpreting:before,.fa-asl-interpreting:before{content:"\F2A3"}.fa-deaf:before,.fa-deafness:before,.fa-hard-of-hearing:before{content:"\F2A4"}.fa-glide:before{content:"\F2A5"}.fa-glide-g:before{content:"\F2A6"}.fa-sign-language:before,.fa-signing:before{content:"\F2A7"}.fa-low-vision:before{content:"\F2A8"}.fa-viadeo:before{content:"\F2A9"}.fa-viadeo-square:before{content:"\F2AA"}.fa-snapchat:before{content:"\F2AB"}.fa-snapchat-ghost:before{content:"\F2AC"}.fa-snapchat-square:before{content:"\F2AD"}.fa-pied-piper:before{content:"\F2AE"}.fa-first-order:before{content:"\F2B0"}.fa-yoast:before{content:"\F2B1"}.fa-themeisle:before{content:"\F2B2"}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:"\F2B3"}.fa-fa:before,.fa-font-awesome:before{content:"\F2B4"}.fa-handshake-o:before{content:"\F2B5"}.fa-envelope-open:before{content:"\F2B6"}.fa-envelope-open-o:before{content:"\F2B7"}.fa-linode:before{content:"\F2B8"}.fa-address-book:before{content:"\F2B9"}.fa-address-book-o:before{content:"\F2BA"}.fa-address-card:before,.fa-vcard:before{content:"\F2BB"}.fa-address-card-o:before,.fa-vcard-o:before{content:"\F2BC"}.fa-user-circle:before{content:"\F2BD"}.fa-user-circle-o:before{content:"\F2BE"}.fa-user-o:before{content:"\F2C0"}.fa-id-badge:before{content:"\F2C1"}.fa-drivers-license:before,.fa-id-card:before{content:"\F2C2"}.fa-drivers-license-o:before,.fa-id-card-o:before{content:"\F2C3"}.fa-quora:before{content:"\F2C4"}.fa-free-code-camp:before{content:"\F2C5"}.fa-telegram:before{content:"\F2C6"}.fa-thermometer-4:before,.fa-thermometer-full:before,.fa-thermometer:before{content:"\F2C7"}.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:"\F2C8"}.fa-thermometer-2:before,.fa-thermometer-half:before{content:"\F2C9"}.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:"\F2CA"}.fa-thermometer-0:before,.fa-thermometer-empty:before{content:"\F2CB"}.fa-shower:before{content:"\F2CC"}.fa-bath:before,.fa-bathtub:before,.fa-s15:before{content:"\F2CD"}.fa-podcast:before{content:"\F2CE"}.fa-window-maximize:before{content:"\F2D0"}.fa-window-minimize:before{content:"\F2D1"}.fa-window-restore:before{content:"\F2D2"}.fa-times-rectangle:before,.fa-window-close:before{content:"\F2D3"}.fa-times-rectangle-o:before,.fa-window-close-o:before{content:"\F2D4"}.fa-bandcamp:before{content:"\F2D5"}.fa-grav:before{content:"\F2D6"}.fa-etsy:before{content:"\F2D7"}.fa-imdb:before{content:"\F2D8"}.fa-ravelry:before{content:"\F2D9"}.fa-eercast:before{content:"\F2DA"}.fa-microchip:before{content:"\F2DB"}.fa-snowflake-o:before{content:"\F2DC"}.fa-superpowers:before{content:"\F2DD"}.fa-wpexplorer:before{content:"\F2DE"}.fa-meetup:before{content:"\F2E0"}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}@font-face{font-family:Material Icons;font-style:normal;font-weight:400;src:url(/best-resume-ever/static/fonts/MaterialIcons-Regular.e79bfd8.eot);src:local("Material Icons"),local("MaterialIcons-Regular"),url(/best-resume-ever/static/fonts/MaterialIcons-Regular.570eb83.woff2) format("woff2"),url(/best-resume-ever/static/fonts/MaterialIcons-Regular.012cf6a.woff) format("woff"),url(/best-resume-ever/static/fonts/MaterialIcons-Regular.a37b0c0.ttf) format("truetype")}.material-icons{font-family:Material Icons;font-weight:400;font-style:normal;font-size:24px;display:inline-block;line-height:1;text-transform:none;letter-spacing:normal;word-wrap:normal;white-space:nowrap;direction:ltr;-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility;-moz-osx-font-smoothing:grayscale;font-feature-settings:"liga"}@font-face{font-family:Source Sans Pro;font-weight:200;font-style:normal;font-stretch:normal;src:url(/best-resume-ever/static/fonts/SourceSansPro-ExtraLight.52d5980.eot) format("embedded-opentype"),url(/best-resume-ever/static/fonts/SourceSansPro-ExtraLight.otf.f2558c5.woff) format("woff"),url(/best-resume-ever/static/fonts/SourceSansPro-ExtraLight.f99485f.otf) format("opentype"),url(/best-resume-ever/static/fonts/SourceSansPro-ExtraLight.8bfca62.ttf) format("truetype")}@font-face{font-family:Source Sans Pro;font-weight:200;font-style:italic;font-stretch:normal;src:url(/best-resume-ever/static/fonts/SourceSansPro-ExtraLightIt.0d91dad.eot) format("embedded-opentype"),url(/best-resume-ever/static/fonts/SourceSansPro-ExtraLightIt.otf.bd14278.woff) format("woff"),url(/best-resume-ever/static/fonts/SourceSansPro-ExtraLightIt.1574d13.otf) format("opentype"),url(/best-resume-ever/static/fonts/SourceSansPro-ExtraLightIt.ef10cbb.ttf) format("truetype")}@font-face{font-family:Source Sans Pro;font-weight:300;font-style:normal;font-stretch:normal;src:url(/best-resume-ever/static/fonts/SourceSansPro-Light.e573bb4.eot) format("embedded-opentype"),url(/best-resume-ever/static/fonts/SourceSansPro-Light.otf.488b68e.woff) format("woff"),url(/best-resume-ever/static/fonts/SourceSansPro-Light.111fe8b.otf) format("opentype"),url(/best-resume-ever/static/fonts/SourceSansPro-Light.39b40cf.ttf) format("truetype")}@font-face{font-family:Source Sans Pro;font-weight:300;font-style:italic;font-stretch:normal;src:url(/best-resume-ever/static/fonts/SourceSansPro-LightIt.6b1b852.eot) format("embedded-opentype"),url(/best-resume-ever/static/fonts/SourceSansPro-LightIt.otf.6608f02.woff) format("woff"),url(/best-resume-ever/static/fonts/SourceSansPro-LightIt.90c1bb0.otf) format("opentype"),url(/best-resume-ever/static/fonts/SourceSansPro-LightIt.855d27d.ttf) format("truetype")}@font-face{font-family:Source Sans Pro;font-weight:400;font-style:normal;font-stretch:normal;src:url(/best-resume-ever/static/fonts/SourceSansPro-Regular.82c5611.eot) format("embedded-opentype"),url(/best-resume-ever/static/fonts/SourceSansPro-Regular.otf.788a2bc.woff) format("woff"),url(/best-resume-ever/static/fonts/SourceSansPro-Regular.9ba6f59.otf) format("opentype"),url(/best-resume-ever/static/fonts/SourceSansPro-Regular.26add37.ttf) format("truetype")}@font-face{font-family:Source Sans Pro;font-weight:400;font-style:italic;font-stretch:normal;src:url(/best-resume-ever/static/fonts/SourceSansPro-It.d488c16.eot) format("embedded-opentype"),url(/best-resume-ever/static/fonts/SourceSansPro-It.otf.d995730.woff) format("woff"),url(/best-resume-ever/static/fonts/SourceSansPro-It.c00459c.otf) format("opentype"),url(/best-resume-ever/static/fonts/SourceSansPro-It.29bb28f.ttf) format("truetype")}@font-face{font-family:Source Sans Pro;font-weight:600;font-style:normal;font-stretch:normal;src:url(/best-resume-ever/static/fonts/SourceSansPro-Semibold.4019cd7.eot) format("embedded-opentype"),url(/best-resume-ever/static/fonts/SourceSansPro-Semibold.otf.7a89c69.woff) format("woff"),url(/best-resume-ever/static/fonts/SourceSansPro-Semibold.411cd22.otf) format("opentype"),url(/best-resume-ever/static/fonts/SourceSansPro-Semibold.bef69c3.ttf) format("truetype")}@font-face{font-family:Source Sans Pro;font-weight:600;font-style:italic;font-stretch:normal;src:url(/best-resume-ever/static/fonts/SourceSansPro-SemiboldIt.4c9d790.eot) format("embedded-opentype"),url(/best-resume-ever/static/fonts/SourceSansPro-SemiboldIt.otf.178e793.woff) format("woff"),url(/best-resume-ever/static/fonts/SourceSansPro-SemiboldIt.e430ca7.otf) format("opentype"),url(/best-resume-ever/static/fonts/SourceSansPro-SemiboldIt.c5430f5.ttf) format("truetype")}@font-face{font-family:Source Sans Pro;font-weight:700;font-style:normal;font-stretch:normal;src:url(/best-resume-ever/static/fonts/SourceSansPro-Bold.8e3f84f.eot) format("embedded-opentype"),url(/best-resume-ever/static/fonts/SourceSansPro-Bold.otf.3bfca25.woff) format("woff"),url(/best-resume-ever/static/fonts/SourceSansPro-Bold.e2cac00.otf) format("opentype"),url(/best-resume-ever/static/fonts/SourceSansPro-Bold.2599a39.ttf) format("truetype")}@font-face{font-family:Source Sans Pro;font-weight:700;font-style:italic;font-stretch:normal;src:url(/best-resume-ever/static/fonts/SourceSansPro-BoldIt.b35af15.eot) format("embedded-opentype"),url(/best-resume-ever/static/fonts/SourceSansPro-BoldIt.otf.a83b890.woff) format("woff"),url(/best-resume-ever/static/fonts/SourceSansPro-BoldIt.0904e44.otf) format("opentype"),url(/best-resume-ever/static/fonts/SourceSansPro-BoldIt.9baa9f9.ttf) format("truetype")}@font-face{font-family:Source Sans Pro;font-weight:900;font-style:normal;font-stretch:normal;src:url(/best-resume-ever/static/fonts/SourceSansPro-Black.4838df6.eot) format("embedded-opentype"),url(/best-resume-ever/static/fonts/SourceSansPro-Black.otf.80391e3.woff) format("woff"),url(/best-resume-ever/static/fonts/SourceSansPro-Black.0531f24.otf) format("opentype"),url(/best-resume-ever/static/fonts/SourceSansPro-Black.60a663a.ttf) format("truetype")}@font-face{font-family:Source Sans Pro;font-weight:900;font-style:italic;font-stretch:normal;src:url(/best-resume-ever/static/fonts/SourceSansPro-BlackIt.befd8cf.eot) format("embedded-opentype"),url(/best-resume-ever/static/fonts/SourceSansPro-BlackIt.otf.c563ef3.woff) format("woff"),url(/best-resume-ever/static/fonts/SourceSansPro-BlackIt.b580cee.otf) format("opentype"),url(/best-resume-ever/static/fonts/SourceSansPro-BlackIt.e63a68b.ttf) format("truetype")}@font-face{font-family:Open Sans;font-weight:300;font-style:normal;src:url(/best-resume-ever/static/fonts/OpenSans-Light.8040375.eot);src:url(/best-resume-ever/static/fonts/OpenSans-Light.8040375.eot?#iefix) format("embedded-opentype"),url(/best-resume-ever/static/fonts/OpenSans-Light.39d27e1.woff2) format("woff2"),url(/best-resume-ever/static/fonts/OpenSans-Light.963eb32.woff) format("woff"),url(/best-resume-ever/static/fonts/OpenSans-Light.ecb4572.ttf) format("truetype"),url(/best-resume-ever/static/img/OpenSans-Light.d79f021.svg#OpenSansLight) format("svg")}@font-face{font-family:Open Sans;font-weight:300;font-style:italic;src:url(/best-resume-ever/static/fonts/OpenSans-LightItalic.6725fc4.eot);src:url(/best-resume-ever/static/fonts/OpenSans-LightItalic.6725fc4.eot?#iefix) format("embedded-opentype"),url(/best-resume-ever/static/fonts/OpenSans-LightItalic.e7cc712.woff2) format("woff2"),url(/best-resume-ever/static/fonts/OpenSans-LightItalic.97534dd.woff) format("woff"),url(/best-resume-ever/static/fonts/OpenSans-LightItalic.26f1e68.ttf) format("truetype"),url(/best-resume-ever/static/img/OpenSans-LightItalic.b64e991.svg#OpenSansLightItalic) format("svg")}@font-face{font-family:Open Sans;font-weight:400;font-style:normal;src:url(/best-resume-ever/static/fonts/OpenSans-Regular.a35546e.eot);src:url(/best-resume-ever/static/fonts/OpenSans-Regular.a35546e.eot?#iefix) format("embedded-opentype"),url(/best-resume-ever/static/fonts/OpenSans-Regular.5583548.woff2) format("woff2"),url(/best-resume-ever/static/fonts/OpenSans-Regular.ac327c4.woff) format("woff"),url(/best-resume-ever/static/fonts/OpenSans-Regular.cd72963.ttf) format("truetype"),url(/best-resume-ever/static/img/OpenSans-Regular.f641a7d.svg#OpenSansRegular) format("svg")}@font-face{font-family:Open Sans;font-weight:400;font-style:italic;src:url(/best-resume-ever/static/fonts/OpenSans-Italic.e487b7c.eot);src:url(/best-resume-ever/static/fonts/OpenSans-Italic.e487b7c.eot?#iefix) format("embedded-opentype"),url(/best-resume-ever/static/fonts/OpenSans-Italic.383eba0.woff2) format("woff2"),url(/best-resume-ever/static/fonts/OpenSans-Italic.5250746.woff) format("woff"),url(/best-resume-ever/static/fonts/OpenSans-Italic.9b30f13.ttf) format("truetype"),url(/best-resume-ever/static/img/OpenSans-Italic.d6671d4.svg#OpenSansItalic) format("svg")}@font-face{font-family:Open Sans;font-weight:600;font-style:normal;src:url(/best-resume-ever/static/fonts/OpenSans-Semibold.0ea0450.eot);src:url(/best-resume-ever/static/fonts/OpenSans-Semibold.0ea0450.eot?#iefix) format("embedded-opentype"),url(/best-resume-ever/static/fonts/OpenSans-Semibold.08952b0.woff2) format("woff2"),url(/best-resume-ever/static/fonts/OpenSans-Semibold.9f21442.woff) format("woff"),url(/best-resume-ever/static/fonts/OpenSans-Semibold.33f225b.ttf) format("truetype"),url(/best-resume-ever/static/img/OpenSans-Semibold.bb100c9.svg#OpenSansSemibold) format("svg")}@font-face{font-family:Open Sans;font-weight:600;font-style:italic;src:url(/best-resume-ever/static/fonts/OpenSans-SemiboldItalic.da06141.eot);src:url(/best-resume-ever/static/fonts/OpenSans-SemiboldItalic.da06141.eot?#iefix) format("embedded-opentype"),url(/best-resume-ever/static/fonts/OpenSans-SemiboldItalic.3343e54.woff2) format("woff2"),url(/best-resume-ever/static/fonts/OpenSans-SemiboldItalic.ec55f26.woff) format("woff"),url(/best-resume-ever/static/fonts/OpenSans-SemiboldItalic.1c0b4eb.ttf) format("truetype"),url(/best-resume-ever/static/img/OpenSans-SemiboldItalic.ddc348f.svg#OpenSansSemiboldItalic) format("svg")}@font-face{font-family:Open Sans;font-weight:700;font-style:normal;src:url(/best-resume-ever/static/fonts/OpenSans-Bold.7ae9b8b.eot);src:url(/best-resume-ever/static/fonts/OpenSans-Bold.7ae9b8b.eot?#iefix) format("embedded-opentype"),url(/best-resume-ever/static/fonts/OpenSans-Bold.3326e4d.woff2) format("woff2"),url(/best-resume-ever/static/fonts/OpenSans-Bold.8926673.woff) format("woff"),url(/best-resume-ever/static/fonts/OpenSans-Bold.5a10091.ttf) format("truetype"),url(/best-resume-ever/static/img/OpenSans-Bold.d6291f8.svg#OpenSansBold) format("svg")}@font-face{font-family:Open Sans;font-weight:700;font-style:italic;src:url(/best-resume-ever/static/fonts/OpenSans-BoldItalic.ea07932.eot);src:url(/best-resume-ever/static/fonts/OpenSans-BoldItalic.ea07932.eot?#iefix) format("embedded-opentype"),url(/best-resume-ever/static/fonts/OpenSans-BoldItalic.5aaceea.woff2) format("woff2"),url(/best-resume-ever/static/fonts/OpenSans-BoldItalic.7be88e7.woff) format("woff"),url(/best-resume-ever/static/fonts/OpenSans-BoldItalic.c36b5ac.ttf) format("truetype"),url(/best-resume-ever/static/img/OpenSans-BoldItalic.a54aba8.svg#OpenSansBoldItalic) format("svg")}@font-face{font-family:Open Sans;font-weight:800;font-style:normal;src:url(/best-resume-ever/static/fonts/OpenSans-ExtraBold.561e4b6.eot);src:url(/best-resume-ever/static/fonts/OpenSans-ExtraBold.561e4b6.eot?#iefix) format("embedded-opentype"),url(/best-resume-ever/static/fonts/OpenSans-ExtraBold.5211065.woff2) format("woff2"),url(/best-resume-ever/static/fonts/OpenSans-ExtraBold.12e2ed7.woff) format("woff"),url(/best-resume-ever/static/fonts/OpenSans-ExtraBold.19b56cf.ttf) format("truetype"),url(/best-resume-ever/static/img/OpenSans-ExtraBold.8c5c497.svg#OpenSansExtrabold) format("svg")}@font-face{font-family:Open Sans;font-weight:800;font-style:italic;src:url(/best-resume-ever/static/fonts/OpenSans-ExtraBoldItalic.5f467e7.eot);src:url(/best-resume-ever/static/fonts/OpenSans-ExtraBoldItalic.5f467e7.eot?#iefix) format("embedded-opentype"),url(/best-resume-ever/static/fonts/OpenSans-ExtraBoldItalic.bc511ba.woff2) format("woff2"),url(/best-resume-ever/static/fonts/OpenSans-ExtraBoldItalic.4f44077.woff) format("woff"),url(/best-resume-ever/static/fonts/OpenSans-ExtraBoldItalic.4595d7f.ttf) format("truetype"),url(/best-resume-ever/static/img/OpenSans-ExtraBoldItalic.9704305.svg#OpenSansExtraboldItalic) format("svg")}@font-face{font-family:Open Sans Condensed;font-weight:300;font-style:normal;src:url(/best-resume-ever/static/fonts/opensans-condlight.fa14197.eot);src:url(/best-resume-ever/static/fonts/opensans-condlight.fa14197.eot?#iefix) format("embedded-opentype"),url(/best-resume-ever/static/fonts/opensans-condlight.fd21219.woff) format("woff"),url(/best-resume-ever/static/fonts/opensans-condlight.78a0d7e.ttf) format("truetype"),url(/best-resume-ever/static/img/opensans-condlight.55ca06a.svg#OpenSansCondensedLight) format("svg")}@font-face{font-family:Open Sans Condensed;font-weight:300;font-style:italic;src:url(/best-resume-ever/static/fonts/opensans-condlightitalic.b722edf.eot);src:url(/best-resume-ever/static/fonts/opensans-condlightitalic.b722edf.eot?#iefix) format("embedded-opentype"),url(/best-resume-ever/static/fonts/opensans-condlightitalic.36dda30.woff) format("woff"),url(/best-resume-ever/static/fonts/opensans-condlightitalic.41ed725.ttf) format("truetype"),url(/best-resume-ever/static/img/opensans-condlightitalic.c00c6b0.svg#OpenSansCondensedLightItalic) format("svg")}@font-face{font-family:Open Sans Condensed;font-weight:700;font-style:normal;src:url(/best-resume-ever/static/fonts/opensans-condbold.790124b.eot);src:url(/best-resume-ever/static/fonts/opensans-condbold.790124b.eot?#iefix) format("embedded-opentype"),url(/best-resume-ever/static/fonts/opensans-condbold.16a153a.woff) format("woff"),url(/best-resume-ever/static/fonts/opensans-condbold.c28df5d.ttf) format("truetype"),url(/best-resume-ever/static/img/opensans-condbold.1e26591.svg#OpenSansCondensedBold) format("svg")}@font-face{font-family:Raleway;src:url(/best-resume-ever/static/fonts/Raleway-Thin.ebd07bb.ttf) format("truetype");font-style:normal;font-weight:100;text-rendering:optimizeLegibility}@font-face{font-family:Raleway;src:url(/best-resume-ever/static/fonts/Raleway-Thin-Italic.f8708e6.ttf) format("truetype");font-style:italic;font-weight:100;text-rendering:optimizeLegibility}@font-face{font-family:Raleway;src:url(/best-resume-ever/static/fonts/Raleway-ExtraLight.ebd5c80.ttf) format("truetype");font-style:normal;font-weight:200;text-rendering:optimizeLegibility}@font-face{font-family:Raleway;src:url(/best-resume-ever/static/fonts/Raleway-ExtraLight-Italic.91fc8a2.ttf) format("truetype");font-style:italic;font-weight:200;text-rendering:optimizeLegibility}@font-face{font-family:Raleway;src:url(/best-resume-ever/static/fonts/Raleway-Light.6b562d7.ttf) format("truetype");font-style:normal;font-weight:300;text-rendering:optimizeLegibility}@font-face{font-family:Raleway;src:url(/best-resume-ever/static/fonts/Raleway-Light-Italic.fa415a9.ttf) format("truetype");font-style:italic;font-weight:300;text-rendering:optimizeLegibility}@font-face{font-family:Raleway;src:url(/best-resume-ever/static/fonts/Raleway-Regular.2d4cd87.ttf) format("truetype");font-style:normal;font-weight:400;text-rendering:optimizeLegibility}@font-face{font-family:Raleway;src:url(/best-resume-ever/static/fonts/Raleway-Regular-Italic.b1f58e1.ttf) format("truetype");font-style:italic;font-weight:400;text-rendering:optimizeLegibility}@font-face{font-family:Raleway;src:url(/best-resume-ever/static/fonts/Raleway-Medium.2e763f8.ttf) format("truetype");font-style:normal;font-weight:500;text-rendering:optimizeLegibility}@font-face{font-family:Raleway;src:url(/best-resume-ever/static/fonts/Raleway-Medium-Italic.c966b86.ttf) format("truetype");font-style:italic;font-weight:500;text-rendering:optimizeLegibility}@font-face{font-family:Raleway;src:url(/best-resume-ever/static/fonts/Raleway-SemiBold.e18d388.ttf) format("truetype");font-style:normal;font-weight:600;text-rendering:optimizeLegibility}@font-face{font-family:Raleway;src:url(/best-resume-ever/static/fonts/Raleway-SemiBold-Italic.4bd987d.ttf) format("truetype");font-style:italic;font-weight:600;text-rendering:optimizeLegibility}@font-face{font-family:Raleway;src:url(/best-resume-ever/static/fonts/Raleway-Bold.f5c9c1a.ttf) format("truetype");font-style:normal;font-weight:700;text-rendering:optimizeLegibility}@font-face{font-family:Raleway;src:url(/best-resume-ever/static/fonts/Raleway-Bold-Italic.02d3658.ttf) format("truetype");font-style:italic;font-weight:700;text-rendering:optimizeLegibility}@font-face{font-family:Raleway;src:url(/best-resume-ever/static/fonts/Raleway-ExtraBold.299ddfe.ttf) format("truetype");font-style:normal;font-weight:800;text-rendering:optimizeLegibility}@font-face{font-family:Raleway;src:url(/best-resume-ever/static/fonts/Raleway-ExtraBold-Italic.8832d30.ttf) format("truetype");font-style:italic;font-weight:800;text-rendering:optimizeLegibility}@font-face{font-family:Raleway;src:url(/best-resume-ever/static/fonts/Raleway-Black.d641109.ttf) format("truetype");font-style:normal;font-weight:900;text-rendering:optimizeLegibility}@font-face{font-family:Raleway;src:url(/best-resume-ever/static/fonts/Raleway-Black-Italic.0f629c9.ttf) format("truetype");font-style:italic;font-weight:900;text-rendering:optimizeLegibility}body{padding:0;margin:0;overflow-x:hidden;background:#ccc}.page-inner[data-v-a4e9d902]{height:100%;width:100%}.page-wrapper[data-v-a4e9d902]{overflow-x:hidden;background:#ccc;margin:0;padding:0;-webkit-print-color-adjust:exact;box-sizing:border-box}.resume[data-v-a4e9d902]{height:100%;width:100%}.page[data-v-a4e9d902]{background:#fff;position:relative;width:21cm;height:29.68cm;display:block;page-break-after:auto;overflow:hidden}.resume[data-v-31798ddc]{font-family:Roboto!important;background:#ccc}a[data-v-31798ddc]{cursor:pointer}.description-personal[data-v-31798ddc]{margin-left:20px;margin-top:20px;padding-right:40px;text-align:justify;font-family:Roboto}.title[data-v-31798ddc]{right:25px;padding-left:20px;padding-top:20px;bottom:25px}.title h2[data-v-31798ddc]{text-transform:uppercase;display:block;font-size:1.17em;-webkit-margin-before:1em;-webkit-margin-after:1em;-webkit-margin-start:0;-webkit-margin-end:0;color:#fff;color:rgba(0,0,0,.7);padding-top:0;margin-top:0;letter-spacing:10px;font-weight:400}.title div[data-v-31798ddc]{margin-top:-5px;margin-top:0;margin:0;padding:0;line-height:15pt;font-weight:300;letter-spacing:2px;color:#fff;color:#16151c;color:rgba(63,61,60,.71);display:block;font-size:.67em;-webkit-margin-before:2.33em;-webkit-margin-start:0;-webkit-margin-end:0;padding-top:0}.section-headline[data-v-31798ddc],.title div[data-v-31798ddc]{font-weight:500;letter-spacing:3px;font-size:10pt;text-transform:uppercase;opacity:.8}.section-headline[data-v-31798ddc]{margin-left:20px;margin-top:40px;margin-bottom:20px;color:#3f3d3c}.c[data-v-31798ddc]{clear:both}li[data-v-31798ddc]{margin:0;padding:0;list-style-type:none;padding-top:9px}ul[data-v-31798ddc]{margin:0;padding:0;list-style-type:none}p[data-v-31798ddc]{margin-top:0;margin-bottom:25px;font-family:Roboto,sans-serif;font-weight:300;font-size:10pt;line-height:17pt}.m_box[data-v-31798ddc]{box-shadow:0 2px 5px 0 rgba(0,0,0,.16),0 2px 10px 0 rgba(0,0,0,.12)}.fa[data-v-31798ddc],.material-icons[data-v-31798ddc]{display:inline-block;font-style:normal;font-weight:400;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:26px}h1[data-v-31798ddc],h2[data-v-31798ddc],h3[data-v-31798ddc],h5[data-v-31798ddc],h6[data-v-31798ddc]{font-weight:400;margin:0}h2[data-v-31798ddc]{font-weight:500;font-size:22pt;line-height:37pt}h4[data-v-31798ddc]{font-weight:400;margin:0;font-size:12pt;line-height:20pt;opacity:1}.rightCol[data-v-31798ddc]{width:63.5%;height:100%;float:right;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.rightCol .block[data-v-31798ddc]{width:90%;position:relative;background-color:#fff;padding:20px;margin-top:5px;margin-bottom:5px;display:inline-block;box-shadow:0 2px 5px 0 rgba(0,0,0,.16),0 2px 10px 0 rgba(0,0,0,.12)}.rightCol .block .headline[data-v-31798ddc]{font-weight:300;display:block;font-size:15px;color:rgba(0,0,0,.870588)}.rightCol .block .subheadline[data-v-31798ddc]{color:rgba(0,0,0,.541176);display:block;font-size:14px;font-weight:300}.rightCol .block .info[data-v-31798ddc]{font-size:14px;color:rgba(0,0,0,.870588);margin-bottom:0;padding-top:20px}.rightCol .block .icon[data-v-31798ddc]{width:16%;float:left;margin-left:0}.rightCol .block .icon .fa[data-v-31798ddc],.rightCol .block .icon .material-icons[data-v-31798ddc]{text-align:center;display:block;font-size:30pt}.rightCol .block .content[data-v-31798ddc]{width:80%;position:absolute;height:96%;left:17%;padding-right:3%;-ms-flex-direction:column;flex-direction:column}.rightCol .block .content .item[data-v-31798ddc],.rightCol .block .content[data-v-31798ddc]{text-align:left;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal}.rightCol .block .content .item[data-v-31798ddc]{border-bottom:1px solid #bdbdbd;-webkit-box-flex:1;-ms-flex:1;flex:1;width:97%;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-ms-flex-direction:column;flex-direction:column;padding-top:0}.rightCol .block .content .item span[data-v-31798ddc]{color:#d8ab94;margin-top:0;font-size:10pt;line-height:16pt}.rightCol .block .content .item p[data-v-31798ddc]{margin-top:5px}.rightCol .block .content .item[data-v-31798ddc]:last-of-type{border-bottom-style:none}.leftCol[data-v-31798ddc]{width:35%;height:100%;float:left;padding:0;text-align:left;color:#fff;color:hsla(0,0%,100%,.59);background-color:#16151c;overflow:hidden;display:block}.leftCol .section-headline[data-v-31798ddc]{color:hsla(0,0%,100%,.54)}.leftCol a[data-v-31798ddc]{color:hsla(0,0%,100%,.59);text-decoration:none}.leftCol .heading[data-v-31798ddc]{background-color:#fff;background-repeat:no-repeat;background-size:cover;background-position:50%;position:relative;width:100%;height:277px}.leftCol .item[data-v-31798ddc]{width:100%;margin-top:13px;float:left}.leftCol .item .fa[data-v-31798ddc],.leftCol .item .material-icons[data-v-31798ddc]{display:inherit;text-align:center}.leftCol .item .icon[data-v-31798ddc]{width:20%;float:left}.leftCol .item .text[data-v-31798ddc]{float:right;width:69%;padding-right:10%}.leftCol .item .text[data-v-31798ddc],.leftCol .item .text li[data-v-31798ddc]{padding-top:0;display:block;font-size:15px;font-weight:300}.leftCol .item span[data-v-31798ddc]{font-weight:300}.leftCol .item .skill[data-v-31798ddc]{clear:both;width:97%;padding-top:4px}.leftCol .item .skill .left[data-v-31798ddc]{float:left;width:10%;padding-top:3px}.leftCol .item .skill .left i[data-v-31798ddc]:nth-child(2){float:left;padding-top:4px}.leftCol .item .skill .right[data-v-31798ddc]{float:right;width:93%}.leftCol .item .skill .right .progress[data-v-31798ddc]{float:left;position:relative;height:2px;display:block;width:95%;background-color:hsla(0,0%,100%,.19);border-radius:2px;margin:.5rem 0 1rem;overflow:visible;margin-bottom:10px}.leftCol .item .skill .right .progress .determinate[data-v-31798ddc]{background-color:#78909c;position:absolute;top:0;bottom:0}.leftCol .item .skill .right .progress .determinate .fa[data-v-31798ddc],.leftCol .item .skill .right .progress .determinate .material-icons[data-v-31798ddc]{font-size:13px;position:absolute;top:-4px;right:-2px;margin-left:50%;color:#fff}.leftCol .item.last .text[data-v-31798ddc]{border-bottom-style:none;padding-bottom:0}#myselfpic[data-v-31798ddc]{background-image:url(/best-resume-ever/static/img/id.087ce5d.jpg);color:#000}#githubIcon[data-v-31798ddc]{width:25px;padding-left:17px}#resume1[data-v-25653886]{font-family:Source Sans Pro,sans-serif;font-size:20px;padding-bottom:50px}#resume1 a[data-v-25653886],#resume1 a[data-v-25653886]:focus,#resume1 a[data-v-25653886]:hover,#resume1 a[data-v-25653886]:visited{color:#616161}#resume1 h3[data-v-25653886]{margin-bottom:0}#resume1 span[data-v-25653886]{display:inline-block}#resume1 .row[data-v-25653886]{width:100%}#resume1 .half[data-v-25653886]{width:44%}#resume1 .half.left[data-v-25653886]{float:left;text-align:right;padding-left:4%;padding-right:2%}#resume1 .half.right[data-v-25653886]{float:right;text-align:left;padding-right:4%;padding-left:2%}#resume1 .center[data-v-25653886]{margin-left:auto;margin-right:auto}#resume1 .text-center[data-v-25653886]{text-align:center}#resume1 .name[data-v-25653886]{border:1px solid #000;text-transform:uppercase;padding:10px 20px;margin-top:80px;margin-bottom:5px;font-family:Open Sans,sans-serif;font-size:35px;font-weight:600;letter-spacing:10px}#resume1 .position[data-v-25653886]{text-transform:uppercase;font-family:Open Sans,sans-serif;font-size:smaller;color:#757575;margin-bottom:40px}#resume1 .image[data-v-25653886]{width:100px;height:100px;margin-top:50px;margin-bottom:50px}#resume1 .image .img[data-v-25653886]{width:100%;height:100%;border-radius:50%;background-image:url(/best-resume-ever/static/img/id.087ce5d.jpg);background-repeat:none;background-position:50%;background-size:cover}#resume1 .contact[data-v-25653886]{width:100%}#resume1 .contact table[data-v-25653886]{text-align:right;float:right;margin-top:5px;color:#616161;font-size:20px}#resume1 .contact table i[data-v-25653886]{padding:2px;color:#616161}#resume1 .contact table tr td[data-v-25653886]:nth-child(2){vertical-align:top}#resume1 .experience .experience-block span[data-v-25653886]{width:100%;color:#616161}#resume1 .experience .experience-block span.company[data-v-25653886]{font-weight:700;padding-bottom:5px;padding-top:10px;color:#424242}#resume1 .experience .experience-block span.job-title[data-v-25653886]{font-style:italic}#resume1 .education-block span[data-v-25653886]{color:#616161}#resume1 .education-block span.degree[data-v-25653886]{font-weight:700;padding-bottom:5px;padding-top:10px;color:#424242}#resume1 .skills-other[data-v-25653886]{color:#616161;margin-bottom:10px}#resume1 .skills[data-v-25653886]{margin-top:20px;margin-bottom:10px}#resume1 .skills .skill-block[data-v-25653886]{padding-bottom:10px;display:inline-block}#resume1 .skills .skill-block .skill[data-v-25653886]{width:100px;color:#616161;float:left}#resume1 .skills .skill-block .skill-bar[data-v-25653886]{float:right;background:#e0e0e0;overflow:hidden;height:8px;border-radius:3px;margin-top:6.5px;position:relative;width:249px}#resume1 .skills .skill-block .skill-bar .level[data-v-25653886]{background:#757575;height:100%}#resume3[data-v-3e9e9731]{font-family:Open Sans Condensed,sans-serif;padding-bottom:50px}#resume3 a[data-v-3e9e9731],#resume3 a[data-v-3e9e9731]:focus,#resume3 a[data-v-3e9e9731]:hover{color:#000;text-decoration:none}#resume3 h3[data-v-3e9e9731]{font-weight:700;text-transform:uppercase;margin-bottom:10px}#resume3 .resume-header .triangle[data-v-3e9e9731]{width:0;height:0;border-style:solid;border-width:600px 0 0 1500px;border-color:#006064 transparent transparent;position:absolute;left:-600px;top:0}#resume3 .resume-header .person-header[data-v-3e9e9731]{position:absolute;z-index:20;right:15%;top:200px}#resume3 .resume-header .person-header .person-wrapper[data-v-3e9e9731]{overflow:hidden;position:relative}#resume3 .resume-header .person-header .img[data-v-3e9e9731]{height:100%;width:100px;float:left;position:absolute;top:0;right:0;background:url(/best-resume-ever/static/img/id.087ce5d.jpg);background-position:50%;background-size:cover}#resume3 .resume-header .person-header .person[data-v-3e9e9731]{float:right;color:#fff;margin-right:120px}#resume3 .resume-header .person-header .name[data-v-3e9e9731]{text-transform:uppercase;font-size:50px;display:table-caption;text-align:right;line-height:1;font-weight:700}#resume3 .resume-header .person-header .position[data-v-3e9e9731]{font-size:20px;display:table-caption;text-align:right;line-height:1;margin-top:10px}#resume3 .resume-content[data-v-3e9e9731]{margin-top:435px;margin-left:15%;width:70%}#resume3 .resume-content .experience .experience-block[data-v-3e9e9731]{line-height:1;margin-bottom:10px}#resume3 .resume-content .experience .experience-block .row[data-v-3e9e9731]:first-child{font-size:20px;text-transform:uppercase}#resume3 .resume-content .experience .experience-block .row:first-child i[data-v-3e9e9731]{font-size:17px}#resume3 .resume-content .experience .experience-block[data-v-3e9e9731]:first-of-type{width:80%}#resume3 .education-block[data-v-3e9e9731]{line-height:1;margin-bottom:10px}#resume3 .education-block .row[data-v-3e9e9731]:first-child{font-size:20px;text-transform:uppercase}#resume3 .skill-section .skills[data-v-3e9e9731]{width:100%}#resume3 .skill-section .skills .skill-block[data-v-3e9e9731]{width:50%;float:left}#resume3 .skill-section .skills .skill-block i[data-v-3e9e9731]{font-size:17px;margin-right:15px}#resume3 .skill-section .skills .skill-block .skill[data-v-3e9e9731]{font-size:20px}#resume3 .skills-other[data-v-3e9e9731]{display:inline-block;font-size:20px;margin-top:10px;line-height:1}#resume3 .contact[data-v-3e9e9731]{margin-top:50px}#resume3 .contact a[data-v-3e9e9731],#resume3 .contact span[data-v-3e9e9731]{display:inline-block;font-size:20px;list-style:none;margin-top:0;line-height:1;float:left;padding-left:0;margin-left:0}#resume2[data-v-4ac258cd]{font-family:Raleway,sans-serif;padding-bottom:50px}#resume2 a[data-v-4ac258cd],#resume2 a[data-v-4ac258cd]:focus,#resume2 a[data-v-4ac258cd]:hover,#resume2 a[data-v-4ac258cd]:visited{text-decoration:none}#resume2 h3[data-v-4ac258cd]{text-transform:uppercase;padding-top:0;margin-top:0;letter-spacing:5px;font-weight:400}#resume2 .top-row[data-v-4ac258cd]{width:100%;padding-top:100px;padding-bottom:100px}#resume2 .top-row span[data-v-4ac258cd]{width:100%;display:block;text-align:center;font-weight:400}#resume2 .top-row span.person-name[data-v-4ac258cd]{text-transform:uppercase;font-size:50px;letter-spacing:10px}#resume2 .top-row span.person-position[data-v-4ac258cd]{letter-spacing:5px}#resume2 .left-col[data-v-4ac258cd]{width:26%;float:left;padding-left:8%;padding-right:4%}#resume2 .left-col .person-image .image-centerer[data-v-4ac258cd]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;height:auto;overflow:hidden}#resume2 .left-col .person-image .image-centerer .img[data-v-4ac258cd]{-webkit-box-flex:0;-ms-flex:none;flex:none;background:url(/best-resume-ever/static/img/id.087ce5d.jpg);background-position:50%;background-size:cover;height:250px;width:100%}#resume2 .left-col .contact h3[data-v-4ac258cd]{text-align:center;margin-top:20px}#resume2 .left-col .contact .contact-row[data-v-4ac258cd]{text-align:center;letter-spacing:2px;margin-bottom:3px}#resume2 .left-col .contact .contact-row a[data-v-4ac258cd]{color:#000}#resume2 .left-col .contact .contact-row[data-v-4ac258cd]:first-of-type{margin-top:50px}#resume2 .left-col .contact .contact-row.dots[data-v-4ac258cd]{margin-top:20px;margin-bottom:15px;font-size:10px;color:hsla(0,0%,60%,.6)}#resume2 .right-col[data-v-4ac258cd]{width:50%;float:right;padding-left:4%;padding-right:8%}#resume2 .right-col .experience-block[data-v-4ac258cd]{margin-bottom:10px}#resume2 .right-col .experience-block .row[data-v-4ac258cd]:first-child{margin-bottom:3px}#resume2 .right-col .experience-block .row .company[data-v-4ac258cd]{text-transform:uppercase;font-size:19px}#resume2 .right-col .experience-block .row .job-title[data-v-4ac258cd]{font-size:19px}#resume2 .right-col .education[data-v-4ac258cd]{margin-top:50px}#resume2 .right-col .education .education-block[data-v-4ac258cd]{margin-bottom:10px}#resume2 .right-col .education .education-block .degree[data-v-4ac258cd]{font-size:19px;text-transform:uppercase;margin-bottom:3px}#resume2 .right-col .skills-block[data-v-4ac258cd]{margin-top:50px;position:relative}#resume2 .right-col .skills-block .skills[data-v-4ac258cd]{margin-bottom:10px;margin-bottom:20px;position:relative;margin-left:auto;margin-right:auto;display:inline-block}#resume2 .right-col .skills-block .skills .skill[data-v-4ac258cd]{width:80px;height:80px;border-radius:50%;position:relative;border:1px solid #333;margin:3px;float:left;font-size:13px}#resume2 .right-col .skills-block .skills .skill .skill-name[data-v-4ac258cd]{text-align:center;position:absolute;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%);width:100%}#resume2 .right-col .skills-block .skills .skills-other[data-v-4ac258cd]{display:inline-block;width:100%;margin-top:20px}#template[data-v-1f07d728]{box-sizing:border-box;font-family:Open Sans,sans-serif}#template h1[data-v-1f07d728],#template h2[data-v-1f07d728]{margin:0;color:#680568}#template p[data-v-1f07d728]{margin:0;font-size:12px}#template ul li[data-v-1f07d728]{color:#680568;font-size:12px}#template a[data-v-1f07d728]{color:#fff;text-decoration:none}#template .list-item-black[data-v-1f07d728]{color:#000}#template #resume-header[data-v-1f07d728]{color:#fff;height:136px;background-color:purple;box-shadow:inset 0 0 200px #301030;padding:40px 100px 25px}#template #resume-header #header-left[data-v-1f07d728]{width:100%;float:left}#template #resume-header #header-left h1[data-v-1f07d728]{font-size:56px;color:#fff;text-transform:uppercase;line-height:56px}#template #resume-header #header-left h2[data-v-1f07d728]{font-size:22px;color:#fff}#template #resume-header #header-left #info-flex[data-v-1f07d728]{display:-webkit-box;display:-ms-flexbox;display:flex;margin-top:20px;font-size:14px}#template #resume-header #header-left #info-flex span[data-v-1f07d728]{margin-right:25px}#template #resume-header #header-left #info-flex i[data-v-1f07d728]{margin-right:5px}#template #resume-body[data-v-1f07d728]{padding:40px 100px}#template #resume-body #education-title[data-v-1f07d728],#template #resume-body #experience-title[data-v-1f07d728],#template #resume-body #skills-title[data-v-1f07d728]{font-size:26px;text-transform:uppercase}#template #resume-body .experience[data-v-1f07d728]{margin:10px 0 10px 50px}#template #resume-body .experience ul[data-v-1f07d728]{margin:5px 0 0}#template #resume-body .company[data-v-1f07d728],#template #resume-body .education-description[data-v-1f07d728]{font-size:20px}#template #resume-body .job-info[data-v-1f07d728]{margin-bottom:5px}#template #resume-body .degree[data-v-1f07d728],#template #resume-body .job-title[data-v-1f07d728]{font-weight:700;color:#680568;font-size:16px}#template #resume-body .education-timeperiod[data-v-1f07d728],#template #resume-body .experience-timeperiod[data-v-1f07d728]{font-weight:100;color:#680568;font-size:16px}#template #resume-body .education[data-v-1f07d728]{margin:10px 0 10px 50px}#template #resume-body #skill-list[data-v-1f07d728]{-webkit-column-count:3;column-count:3;list-style-position:inside}#template #resume-body #skill-list ul li[data-v-1f07d728]{font-size:14px}#template #resume-body #education-container[data-v-1f07d728],#template #resume-body #skills-container[data-v-1f07d728]{margin-top:20px}#template #resume-footer[data-v-1f07d728]{padding:20px 100px;height:135px;background-color:purple;box-shadow:inset 0 0 100px #301030;box-sizing:border-box;position:absolute;bottom:0;width:100%}#template #resume-footer h2[data-v-1f07d728],#template #resume-footer p[data-v-1f07d728]{color:#fff}.spacer[data-v-1f07d728]{width:100%;border-bottom:1px solid #680568;margin:5px 0 10px}#resume2[data-v-7f2ce22c]{font-family:Raleway,sans-serif;padding-bottom:50px;text-align:right;direction:rtl}#resume2 a[data-v-7f2ce22c],#resume2 a[data-v-7f2ce22c]:focus,#resume2 a[data-v-7f2ce22c]:hover,#resume2 a[data-v-7f2ce22c]:visited{text-decoration:none}#resume2 h3[data-v-7f2ce22c]{text-transform:uppercase;padding-top:0;margin-top:0;letter-spacing:5px;font-weight:400}#resume2 .top-row[data-v-7f2ce22c]{width:100%;padding-top:100px;padding-bottom:100px}#resume2 .top-row span[data-v-7f2ce22c]{width:100%;display:block;text-align:center;font-weight:400}#resume2 .top-row span.person-name[data-v-7f2ce22c]{text-transform:uppercase;font-size:50px;letter-spacing:10px}#resume2 .top-row span.person-position[data-v-7f2ce22c]{letter-spacing:5px}#resume2 .right-col[data-v-7f2ce22c]{width:26%;float:right;padding-right:8%;padding-left:4%}#resume2 .right-col .person-image .image-centerer[data-v-7f2ce22c]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;height:auto;overflow:hidden}#resume2 .right-col .person-image .image-centerer .img[data-v-7f2ce22c]{-webkit-box-flex:0;-ms-flex:none;flex:none;background:url(/best-resume-ever/static/img/id.087ce5d.jpg);background-position:50%;background-size:cover;height:250px;width:100%}#resume2 .right-col .contact h3[data-v-7f2ce22c]{text-align:center;margin-top:20px}#resume2 .right-col .contact .contact-row[data-v-7f2ce22c]{text-align:center;letter-spacing:2px;margin-bottom:3px}#resume2 .right-col .contact .contact-row a[data-v-7f2ce22c]{color:#000}#resume2 .right-col .contact .contact-row[data-v-7f2ce22c]:first-of-type{margin-top:50px}#resume2 .right-col .contact .contact-row.dots[data-v-7f2ce22c]{margin-top:20px;margin-bottom:15px;font-size:10px;color:hsla(0,0%,60%,.6)}#resume2 .left-col[data-v-7f2ce22c]{width:50%;float:left;padding-right:4%;padding-left:8%}#resume2 .left-col .experience-block[data-v-7f2ce22c]{margin-bottom:10px}#resume2 .left-col .experience-block .row[data-v-7f2ce22c]:first-child{margin-bottom:3px}#resume2 .left-col .experience-block .row .company[data-v-7f2ce22c]{text-transform:uppercase;font-size:19px}#resume2 .left-col .experience-block .row .job-title[data-v-7f2ce22c]{font-size:19px}#resume2 .left-col .education[data-v-7f2ce22c]{margin-top:50px}#resume2 .left-col .education .education-block[data-v-7f2ce22c]{margin-bottom:10px}#resume2 .left-col .education .education-block .degree[data-v-7f2ce22c]{font-size:19px;text-transform:uppercase;margin-bottom:3px}#resume2 .left-col .skills-block[data-v-7f2ce22c]{margin-top:50px;position:relative}#resume2 .left-col .skills-block .skills[data-v-7f2ce22c]{margin-bottom:10px;margin-bottom:20px;position:relative;margin-left:auto;margin-right:auto;display:inline-block}#resume2 .left-col .skills-block .skills .skill[data-v-7f2ce22c]{width:80px;height:80px;border-radius:50%;position:relative;border:1px solid #333;margin:3px;float:right;font-size:13px}#resume2 .left-col .skills-block .skills .skill .skill-name[data-v-7f2ce22c]{text-align:center;position:absolute;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%);width:100%}#resume2 .left-col .skills-block .skills .skills-other[data-v-7f2ce22c]{display:inline-block;width:100%;margin-top:20px}#resume1[data-v-6a982bba]{font-family:Source Sans Pro,sans-serif;font-size:20px;padding-bottom:50px;direction:rtl}#resume1 a[data-v-6a982bba],#resume1 a[data-v-6a982bba]:focus,#resume1 a[data-v-6a982bba]:hover,#resume1 a[data-v-6a982bba]:visited{color:#616161}#resume1 h3[data-v-6a982bba]{margin-bottom:0}#resume1 span[data-v-6a982bba]{display:inline-block}#resume1 .row[data-v-6a982bba]{width:100%}#resume1 .half[data-v-6a982bba]{width:44%}#resume1 .half.left[data-v-6a982bba]{float:left;text-align:right;padding-left:4%;padding-right:2%}#resume1 .half.right[data-v-6a982bba]{float:right;text-align:right;padding-right:4%;padding-left:2%}#resume1 .center[data-v-6a982bba]{margin-left:auto;margin-right:auto}#resume1 .text-center[data-v-6a982bba]{text-align:center}#resume1 .name[data-v-6a982bba]{border:1px solid #000;text-transform:uppercase;padding:10px 20px;margin-top:80px;margin-bottom:5px;font-family:Open Sans,sans-serif;font-size:35px;font-weight:600;letter-spacing:10px}#resume1 .position[data-v-6a982bba]{text-transform:uppercase;font-family:Open Sans,sans-serif;font-size:smaller;color:#757575;margin-bottom:40px}#resume1 .image[data-v-6a982bba]{width:100px;height:100px;margin-top:50px;margin-bottom:50px}#resume1 .image .img[data-v-6a982bba]{width:100%;height:100%;border-radius:50%;background-image:url(/best-resume-ever/static/img/id.087ce5d.jpg);background-repeat:none;background-position:50%;background-size:cover}#resume1 .contact[data-v-6a982bba]{width:100%}#resume1 .contact table[data-v-6a982bba]{text-align:right;float:right;margin-top:5px;color:#616161;font-size:20px}#resume1 .contact table i[data-v-6a982bba]{padding:2px;color:#616161}#resume1 .contact table tr td[data-v-6a982bba]:nth-child(2){vertical-align:top}#resume1 .experience .experience-block span[data-v-6a982bba]{width:100%;color:#616161}#resume1 .experience .experience-block span.company[data-v-6a982bba]{font-weight:700;padding-bottom:5px;padding-top:10px;color:#424242}#resume1 .experience .experience-block span.job-title[data-v-6a982bba]{font-style:italic}#resume1 .education-block span[data-v-6a982bba]{color:#616161}#resume1 .education-block span.degree[data-v-6a982bba]{font-weight:700;padding-bottom:5px;padding-top:10px;color:#424242}#resume1 .skills-other[data-v-6a982bba]{color:#616161;margin-bottom:10px}#resume1 .skills[data-v-6a982bba]{margin-top:20px;margin-bottom:10px;direction:ltr!important}#resume1 .skills .skill-block[data-v-6a982bba]{padding-bottom:10px;display:inline-block}#resume1 .skills .skill-block .skill[data-v-6a982bba]{width:100px;color:#616161;float:left;text-align:left}#resume1 .skills .skill-block .skill-bar[data-v-6a982bba]{float:right;background:#e0e0e0;overflow:hidden;height:8px;border-radius:3px;margin-top:6.5px;position:relative;width:249px}#resume1 .skills .skill-block .skill-bar .level[data-v-6a982bba]{background:#757575;height:100%}.home[data-v-d7e5c49e]{font-family:Roboto!important}.logo[data-v-d7e5c49e]{text-align:center}.logo img[data-v-d7e5c49e]{height:50px;margin-top:40px}.title[data-v-d7e5c49e]{font-weight:400;text-align:center;width:100%;color:#000;font-weight:300;font-size:30px;line-height:110%;margin:1.78rem 0 1.424rem;margin-top:0;margin-bottom:40px}.previews[data-v-d7e5c49e]{width:90%;margin-right:auto;margin-left:auto}.preview[data-v-d7e5c49e]{width:180px;float:left;margin-left:1.5%;margin-right:1.5%;margin-bottom:1.5%;box-shadow:0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12),0 3px 1px -2px rgba(0,0,0,.2);height:252px;overflow:hidden}.preview-wrapper[data-v-d7e5c49e]{position:relative;background:#fff}.preview img[data-v-d7e5c49e]{width:100%;opacity:.5;-webkit-filter:blur(1px);filter:blur(1px)}.preview span[data-v-d7e5c49e]{position:absolute;max-width:100%;font-size:24px;font-weight:300;color:rgba(0,0,0,.75);width:100%;text-align:center;display:inline-block;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%)} \ No newline at end of file diff --git a/docs/static/css/app.a4623530729577e160955f70a7311e40.css b/docs/static/css/app.a4623530729577e160955f70a7311e40.css new file mode 100644 index 0000000..7f4685c --- /dev/null +++ b/docs/static/css/app.a4623530729577e160955f70a7311e40.css @@ -0,0 +1,4 @@ +@font-face{font-family:Roboto;src:url(/best-resume-ever/static/fonts/Roboto-Thin.9b2ed84.eot);src:local("Roboto Thin"),local("Roboto-Thin"),url(/best-resume-ever/static/fonts/Roboto-Thin.9b2ed84.eot?#iefix) format("embedded-opentype"),url(/best-resume-ever/static/fonts/Roboto-Thin.ad538a6.woff2) format("woff2"),url(/best-resume-ever/static/fonts/Roboto-Thin.d3b4737.woff) format("woff"),url(/best-resume-ever/static/fonts/Roboto-Thin.89e2666.ttf) format("truetype"),url(/best-resume-ever/static/img/Roboto-Thin.bdd892c.svg#Roboto) format("svg");font-weight:100;font-style:normal}@font-face{font-family:Roboto-Thin;src:url(/best-resume-ever/static/fonts/Roboto-Thin.9b2ed84.eot);src:local("Roboto Thin"),local("Roboto-Thin"),url(/best-resume-ever/static/fonts/Roboto-Thin.9b2ed84.eot?#iefix) format("embedded-opentype"),url(/best-resume-ever/static/fonts/Roboto-Thin.ad538a6.woff2) format("woff2"),url(/best-resume-ever/static/fonts/Roboto-Thin.d3b4737.woff) format("woff"),url(/best-resume-ever/static/fonts/Roboto-Thin.89e2666.ttf) format("truetype"),url(/best-resume-ever/static/img/Roboto-Thin.bdd892c.svg#Roboto) format("svg")}@font-face{font-family:Roboto;src:url(/best-resume-ever/static/fonts/Roboto-ThinItalic.f30a27a.eot);src:local("Roboto ThinItalic"),local("Roboto-ThinItalic"),url(/best-resume-ever/static/fonts/Roboto-ThinItalic.f30a27a.eot?#iefix) format("embedded-opentype"),url(/best-resume-ever/static/fonts/Roboto-ThinItalic.5b4a33e.woff2) format("woff2"),url(/best-resume-ever/static/fonts/Roboto-ThinItalic.8a96edb.woff) format("woff"),url(/best-resume-ever/static/fonts/Roboto-ThinItalic.0fc2538.ttf) format("truetype"),url(/best-resume-ever/static/img/Roboto-ThinItalic.98c7980.svg#Roboto) format("svg");font-weight:100;font-style:italic}@font-face{font-family:Roboto-ThinItalic;src:url(/best-resume-ever/static/fonts/Roboto-ThinItalic.f30a27a.eot);src:local("Roboto ThinItalic"),local("Roboto-ThinItalic"),url(/best-resume-ever/static/fonts/Roboto-ThinItalic.f30a27a.eot?#iefix) format("embedded-opentype"),url(/best-resume-ever/static/fonts/Roboto-ThinItalic.5b4a33e.woff2) format("woff2"),url(/best-resume-ever/static/fonts/Roboto-ThinItalic.8a96edb.woff) format("woff"),url(/best-resume-ever/static/fonts/Roboto-ThinItalic.0fc2538.ttf) format("truetype"),url(/best-resume-ever/static/img/Roboto-ThinItalic.98c7980.svg#Roboto) format("svg")}@font-face{font-family:Roboto;src:url(/best-resume-ever/static/fonts/Roboto-Light.020877f.eot);src:local("Roboto Light"),local("Roboto-Light"),url(/best-resume-ever/static/fonts/Roboto-Light.020877f.eot?#iefix) format("embedded-opentype"),url(/best-resume-ever/static/fonts/Roboto-Light.d26871e.woff2) format("woff2"),url(/best-resume-ever/static/fonts/Roboto-Light.c73eb1c.woff) format("woff"),url(/best-resume-ever/static/fonts/Roboto-Light.fc84e99.ttf) format("truetype"),url(/best-resume-ever/static/img/Roboto-Light.dd0bea1.svg#Roboto) format("svg");font-weight:300;font-style:normal}@font-face{font-family:Roboto-Light;src:url(/best-resume-ever/static/fonts/Roboto-Light.020877f.eot);src:local("Roboto Light"),local("Roboto-Light"),url(/best-resume-ever/static/fonts/Roboto-Light.020877f.eot?#iefix) format("embedded-opentype"),url(/best-resume-ever/static/fonts/Roboto-Light.d26871e.woff2) format("woff2"),url(/best-resume-ever/static/fonts/Roboto-Light.c73eb1c.woff) format("woff"),url(/best-resume-ever/static/fonts/Roboto-Light.fc84e99.ttf) format("truetype"),url(/best-resume-ever/static/img/Roboto-Light.dd0bea1.svg#Roboto) format("svg")}@font-face{font-family:Roboto;src:url(/best-resume-ever/static/fonts/Roboto-LightItalic.76ce6e2.eot);src:local("Roboto LightItalic"),local("Roboto-LightItalic"),url(/best-resume-ever/static/fonts/Roboto-LightItalic.76ce6e2.eot?#iefix) format("embedded-opentype"),url(/best-resume-ever/static/fonts/Roboto-LightItalic.e8eaae9.woff2) format("woff2"),url(/best-resume-ever/static/fonts/Roboto-LightItalic.13efe6c.woff) format("woff"),url(/best-resume-ever/static/fonts/Roboto-LightItalic.d1efcd4.ttf) format("truetype"),url(/best-resume-ever/static/img/Roboto-LightItalic.f8b0d5a.svg#Roboto) format("svg");font-weight:300;font-style:italic}@font-face{font-family:Roboto-LightItalic;src:url(/best-resume-ever/static/fonts/Roboto-LightItalic.76ce6e2.eot);src:local("Roboto LightItalic"),local("Roboto-LightItalic"),url(/best-resume-ever/static/fonts/Roboto-LightItalic.76ce6e2.eot?#iefix) format("embedded-opentype"),url(/best-resume-ever/static/fonts/Roboto-LightItalic.e8eaae9.woff2) format("woff2"),url(/best-resume-ever/static/fonts/Roboto-LightItalic.13efe6c.woff) format("woff"),url(/best-resume-ever/static/fonts/Roboto-LightItalic.d1efcd4.ttf) format("truetype"),url(/best-resume-ever/static/img/Roboto-LightItalic.f8b0d5a.svg#Roboto) format("svg")}@font-face{font-family:Roboto;src:url(/best-resume-ever/static/fonts/Roboto-Regular.6866c2b.eot);src:local("Roboto Regular"),local("Roboto-Regular"),url(/best-resume-ever/static/fonts/Roboto-Regular.6866c2b.eot?#iefix) format("embedded-opentype"),url(/best-resume-ever/static/fonts/Roboto-Regular.73f0a88.woff2) format("woff2"),url(/best-resume-ever/static/fonts/Roboto-Regular.35b07eb.woff) format("woff"),url(/best-resume-ever/static/fonts/Roboto-Regular.3e1af3e.ttf) format("truetype"),url(/best-resume-ever/static/img/Roboto-Regular.8681f43.svg#Roboto) format("svg");font-weight:400;font-style:normal}@font-face{font-family:Roboto-Regular;src:url(/best-resume-ever/static/fonts/Roboto-Regular.6866c2b.eot);src:local("Roboto Regular"),local("Roboto-Regular"),url(/best-resume-ever/static/fonts/Roboto-Regular.6866c2b.eot?#iefix) format("embedded-opentype"),url(/best-resume-ever/static/fonts/Roboto-Regular.73f0a88.woff2) format("woff2"),url(/best-resume-ever/static/fonts/Roboto-Regular.35b07eb.woff) format("woff"),url(/best-resume-ever/static/fonts/Roboto-Regular.3e1af3e.ttf) format("truetype"),url(/best-resume-ever/static/img/Roboto-Regular.8681f43.svg#Roboto) format("svg")}@font-face{font-family:Roboto;src:url(/best-resume-ever/static/fonts/Roboto-RegularItalic.35e55b1.eot);src:local("Roboto RegularItalic"),local("Roboto-RegularItalic"),url(/best-resume-ever/static/fonts/Roboto-RegularItalic.35e55b1.eot?#iefix) format("embedded-opentype"),url(/best-resume-ever/static/fonts/Roboto-RegularItalic.4357beb.woff2) format("woff2"),url(/best-resume-ever/static/fonts/Roboto-RegularItalic.f5902d5.woff) format("woff"),url(/best-resume-ever/static/fonts/Roboto-RegularItalic.42bbe4e.ttf) format("truetype"),url(/best-resume-ever/static/img/Roboto-RegularItalic.39c358e.svg#Roboto) format("svg");font-weight:400;font-style:italic}@font-face{font-family:Roboto-RegularItalic;src:url(/best-resume-ever/static/fonts/Roboto-RegularItalic.35e55b1.eot);src:local("Roboto RegularItalic"),local("Roboto-RegularItalic"),url(/best-resume-ever/static/fonts/Roboto-RegularItalic.35e55b1.eot?#iefix) format("embedded-opentype"),url(/best-resume-ever/static/fonts/Roboto-RegularItalic.4357beb.woff2) format("woff2"),url(/best-resume-ever/static/fonts/Roboto-RegularItalic.f5902d5.woff) format("woff"),url(/best-resume-ever/static/fonts/Roboto-RegularItalic.42bbe4e.ttf) format("truetype"),url(/best-resume-ever/static/img/Roboto-RegularItalic.39c358e.svg#Roboto) format("svg")}@font-face{font-family:Roboto;src:url(/best-resume-ever/static/fonts/Roboto-Medium.a7943c3.eot);src:local("Roboto Medium"),local("Roboto-Medium"),url(/best-resume-ever/static/fonts/Roboto-Medium.a7943c3.eot?#iefix) format("embedded-opentype"),url(/best-resume-ever/static/fonts/Roboto-Medium.90d1676.woff2) format("woff2"),url(/best-resume-ever/static/fonts/Roboto-Medium.1d65948.woff) format("woff"),url(/best-resume-ever/static/fonts/Roboto-Medium.d088405.ttf) format("truetype"),url(/best-resume-ever/static/img/Roboto-Medium.95204ac.svg#Roboto) format("svg");font-weight:500;font-style:normal}@font-face{font-family:Roboto-Medium;src:url(/best-resume-ever/static/fonts/Roboto-Medium.a7943c3.eot);src:local("Roboto Medium"),local("Roboto-Medium"),url(/best-resume-ever/static/fonts/Roboto-Medium.a7943c3.eot?#iefix) format("embedded-opentype"),url(/best-resume-ever/static/fonts/Roboto-Medium.90d1676.woff2) format("woff2"),url(/best-resume-ever/static/fonts/Roboto-Medium.1d65948.woff) format("woff"),url(/best-resume-ever/static/fonts/Roboto-Medium.d088405.ttf) format("truetype"),url(/best-resume-ever/static/img/Roboto-Medium.95204ac.svg#Roboto) format("svg")}@font-face{font-family:Roboto;src:url(/best-resume-ever/static/fonts/Roboto-MediumItalic.91f50d0.eot);src:local("Roboto MediumItalic"),local("Roboto-MediumItalic"),url(/best-resume-ever/static/fonts/Roboto-MediumItalic.91f50d0.eot?#iefix) format("embedded-opentype"),url(/best-resume-ever/static/fonts/Roboto-MediumItalic.13ec0eb.woff2) format("woff2"),url(/best-resume-ever/static/fonts/Roboto-MediumItalic.83e114c.woff) format("woff"),url(/best-resume-ever/static/fonts/Roboto-MediumItalic.bd19ad6.ttf) format("truetype"),url(/best-resume-ever/static/img/Roboto-MediumItalic.b5bd232.svg#Roboto) format("svg");font-weight:500;font-style:italic}@font-face{font-family:Roboto-MediumItalic;src:url(/best-resume-ever/static/fonts/Roboto-MediumItalic.91f50d0.eot);src:local("Roboto MediumItalic"),local("Roboto-MediumItalic"),url(/best-resume-ever/static/fonts/Roboto-MediumItalic.91f50d0.eot?#iefix) format("embedded-opentype"),url(/best-resume-ever/static/fonts/Roboto-MediumItalic.13ec0eb.woff2) format("woff2"),url(/best-resume-ever/static/fonts/Roboto-MediumItalic.83e114c.woff) format("woff"),url(/best-resume-ever/static/fonts/Roboto-MediumItalic.bd19ad6.ttf) format("truetype"),url(/best-resume-ever/static/img/Roboto-MediumItalic.b5bd232.svg#Roboto) format("svg")}@font-face{font-family:Roboto;src:url(/best-resume-ever/static/fonts/Roboto-Bold.7345066.eot);src:local("Roboto Bold"),local("Roboto-Bold"),url(/best-resume-ever/static/fonts/Roboto-Bold.7345066.eot?#iefix) format("embedded-opentype"),url(/best-resume-ever/static/fonts/Roboto-Bold.b52fac2.woff2) format("woff2"),url(/best-resume-ever/static/fonts/Roboto-Bold.50d75e4.woff) format("woff"),url(/best-resume-ever/static/fonts/Roboto-Bold.ee7b96f.ttf) format("truetype"),url(/best-resume-ever/static/img/Roboto-Bold.57888be.svg#Roboto) format("svg");font-weight:700;font-style:normal}@font-face{font-family:Roboto-Bold;src:url(/best-resume-ever/static/fonts/Roboto-Bold.7345066.eot);src:local("Roboto Bold"),local("Roboto-Bold"),url(/best-resume-ever/static/fonts/Roboto-Bold.7345066.eot?#iefix) format("embedded-opentype"),url(/best-resume-ever/static/fonts/Roboto-Bold.b52fac2.woff2) format("woff2"),url(/best-resume-ever/static/fonts/Roboto-Bold.50d75e4.woff) format("woff"),url(/best-resume-ever/static/fonts/Roboto-Bold.ee7b96f.ttf) format("truetype"),url(/best-resume-ever/static/img/Roboto-Bold.57888be.svg#Roboto) format("svg")}@font-face{font-family:Roboto;src:url(/best-resume-ever/static/fonts/Roboto-BoldItalic.cd56bcf.eot);src:local("Roboto BoldItalic"),local("Roboto-BoldItalic"),url(/best-resume-ever/static/fonts/Roboto-BoldItalic.cd56bcf.eot?#iefix) format("embedded-opentype"),url(/best-resume-ever/static/fonts/Roboto-BoldItalic.94008e6.woff2) format("woff2"),url(/best-resume-ever/static/fonts/Roboto-BoldItalic.4fe0f73.woff) format("woff"),url(/best-resume-ever/static/fonts/Roboto-BoldItalic.1eb7a89.ttf) format("truetype"),url(/best-resume-ever/static/img/Roboto-BoldItalic.4466317.svg#Roboto) format("svg");font-weight:700;font-style:italic}@font-face{font-family:Roboto-BoldItalic;src:url(/best-resume-ever/static/fonts/Roboto-BoldItalic.cd56bcf.eot);src:local("Roboto BoldItalic"),local("Roboto-BoldItalic"),url(/best-resume-ever/static/fonts/Roboto-BoldItalic.cd56bcf.eot?#iefix) format("embedded-opentype"),url(/best-resume-ever/static/fonts/Roboto-BoldItalic.94008e6.woff2) format("woff2"),url(/best-resume-ever/static/fonts/Roboto-BoldItalic.4fe0f73.woff) format("woff"),url(/best-resume-ever/static/fonts/Roboto-BoldItalic.1eb7a89.ttf) format("truetype"),url(/best-resume-ever/static/img/Roboto-BoldItalic.4466317.svg#Roboto) format("svg")}@font-face{font-family:Roboto;src:url(/best-resume-ever/static/fonts/Roboto-Black.b8ff9b5.eot);src:local("Roboto Black"),local("Roboto-Black"),url(/best-resume-ever/static/fonts/Roboto-Black.b8ff9b5.eot?#iefix) format("embedded-opentype"),url(/best-resume-ever/static/fonts/Roboto-Black.59eb360.woff2) format("woff2"),url(/best-resume-ever/static/fonts/Roboto-Black.313a656.woff) format("woff"),url(/best-resume-ever/static/fonts/Roboto-Black.ec4c996.ttf) format("truetype"),url(/best-resume-ever/static/img/Roboto-Black.9c4bede.svg#Roboto) format("svg");font-weight:900;font-style:normal}@font-face{font-family:Roboto-Black;src:url(/best-resume-ever/static/fonts/Roboto-Black.b8ff9b5.eot);src:local("Roboto Black"),local("Roboto-Black"),url(/best-resume-ever/static/fonts/Roboto-Black.b8ff9b5.eot?#iefix) format("embedded-opentype"),url(/best-resume-ever/static/fonts/Roboto-Black.59eb360.woff2) format("woff2"),url(/best-resume-ever/static/fonts/Roboto-Black.313a656.woff) format("woff"),url(/best-resume-ever/static/fonts/Roboto-Black.ec4c996.ttf) format("truetype"),url(/best-resume-ever/static/img/Roboto-Black.9c4bede.svg#Roboto) format("svg")}@font-face{font-family:Roboto;src:url(/best-resume-ever/static/fonts/Roboto-BlackItalic.b283ac9.eot);src:local("Roboto BlackItalic"),local("Roboto-BlackItalic"),url(/best-resume-ever/static/fonts/Roboto-BlackItalic.b283ac9.eot?#iefix) format("embedded-opentype"),url(/best-resume-ever/static/fonts/Roboto-BlackItalic.f75569f.woff2) format("woff2"),url(/best-resume-ever/static/fonts/Roboto-BlackItalic.cc2fadc.woff) format("woff"),url(/best-resume-ever/static/fonts/Roboto-BlackItalic.50705c5.ttf) format("truetype"),url(/best-resume-ever/static/img/Roboto-BlackItalic.9ede86e.svg#Roboto) format("svg");font-weight:900;font-style:italic}@font-face{font-family:Roboto-BlackItalic;src:url(/best-resume-ever/static/fonts/Roboto-BlackItalic.b283ac9.eot);src:local("Roboto BlackItalic"),local("Roboto-BlackItalic"),url(/best-resume-ever/static/fonts/Roboto-BlackItalic.b283ac9.eot?#iefix) format("embedded-opentype"),url(/best-resume-ever/static/fonts/Roboto-BlackItalic.f75569f.woff2) format("woff2"),url(/best-resume-ever/static/fonts/Roboto-BlackItalic.cc2fadc.woff) format("woff"),url(/best-resume-ever/static/fonts/Roboto-BlackItalic.50705c5.ttf) format("truetype"),url(/best-resume-ever/static/img/Roboto-BlackItalic.9ede86e.svg#Roboto) format("svg")}/*! + * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome + * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) + */@font-face{font-family:FontAwesome;src:url(/best-resume-ever/static/fonts/fontawesome-webfont.674f50d.eot);src:url(/best-resume-ever/static/fonts/fontawesome-webfont.674f50d.eot?#iefix&v=4.7.0) format("embedded-opentype"),url(/best-resume-ever/static/fonts/fontawesome-webfont.af7ae50.woff2) format("woff2"),url(/best-resume-ever/static/fonts/fontawesome-webfont.fee66e7.woff) format("woff"),url(/best-resume-ever/static/fonts/fontawesome-webfont.b06871f.ttf) format("truetype"),url(/best-resume-ever/static/img/fontawesome-webfont.912ec66.svg#fontawesomeregular) format("svg");font-weight:400;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:.08em solid #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{animation:fa-spin 2s infinite linear}.fa-pulse{animation:fa-spin 1s infinite steps(8)}@keyframes fa-spin{0%{transform:rotate(0deg)}to{transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";transform:scaleX(-1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";transform:scaleY(-1)}:root .fa-flip-horizontal,:root .fa-flip-vertical,:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\F000"}.fa-music:before{content:"\F001"}.fa-search:before{content:"\F002"}.fa-envelope-o:before{content:"\F003"}.fa-heart:before{content:"\F004"}.fa-star:before{content:"\F005"}.fa-star-o:before{content:"\F006"}.fa-user:before{content:"\F007"}.fa-film:before{content:"\F008"}.fa-th-large:before{content:"\F009"}.fa-th:before{content:"\F00A"}.fa-th-list:before{content:"\F00B"}.fa-check:before{content:"\F00C"}.fa-close:before,.fa-remove:before,.fa-times:before{content:"\F00D"}.fa-search-plus:before{content:"\F00E"}.fa-search-minus:before{content:"\F010"}.fa-power-off:before{content:"\F011"}.fa-signal:before{content:"\F012"}.fa-cog:before,.fa-gear:before{content:"\F013"}.fa-trash-o:before{content:"\F014"}.fa-home:before{content:"\F015"}.fa-file-o:before{content:"\F016"}.fa-clock-o:before{content:"\F017"}.fa-road:before{content:"\F018"}.fa-download:before{content:"\F019"}.fa-arrow-circle-o-down:before{content:"\F01A"}.fa-arrow-circle-o-up:before{content:"\F01B"}.fa-inbox:before{content:"\F01C"}.fa-play-circle-o:before{content:"\F01D"}.fa-repeat:before,.fa-rotate-right:before{content:"\F01E"}.fa-refresh:before{content:"\F021"}.fa-list-alt:before{content:"\F022"}.fa-lock:before{content:"\F023"}.fa-flag:before{content:"\F024"}.fa-headphones:before{content:"\F025"}.fa-volume-off:before{content:"\F026"}.fa-volume-down:before{content:"\F027"}.fa-volume-up:before{content:"\F028"}.fa-qrcode:before{content:"\F029"}.fa-barcode:before{content:"\F02A"}.fa-tag:before{content:"\F02B"}.fa-tags:before{content:"\F02C"}.fa-book:before{content:"\F02D"}.fa-bookmark:before{content:"\F02E"}.fa-print:before{content:"\F02F"}.fa-camera:before{content:"\F030"}.fa-font:before{content:"\F031"}.fa-bold:before{content:"\F032"}.fa-italic:before{content:"\F033"}.fa-text-height:before{content:"\F034"}.fa-text-width:before{content:"\F035"}.fa-align-left:before{content:"\F036"}.fa-align-center:before{content:"\F037"}.fa-align-right:before{content:"\F038"}.fa-align-justify:before{content:"\F039"}.fa-list:before{content:"\F03A"}.fa-dedent:before,.fa-outdent:before{content:"\F03B"}.fa-indent:before{content:"\F03C"}.fa-video-camera:before{content:"\F03D"}.fa-image:before,.fa-photo:before,.fa-picture-o:before{content:"\F03E"}.fa-pencil:before{content:"\F040"}.fa-map-marker:before{content:"\F041"}.fa-adjust:before{content:"\F042"}.fa-tint:before{content:"\F043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\F044"}.fa-share-square-o:before{content:"\F045"}.fa-check-square-o:before{content:"\F046"}.fa-arrows:before{content:"\F047"}.fa-step-backward:before{content:"\F048"}.fa-fast-backward:before{content:"\F049"}.fa-backward:before{content:"\F04A"}.fa-play:before{content:"\F04B"}.fa-pause:before{content:"\F04C"}.fa-stop:before{content:"\F04D"}.fa-forward:before{content:"\F04E"}.fa-fast-forward:before{content:"\F050"}.fa-step-forward:before{content:"\F051"}.fa-eject:before{content:"\F052"}.fa-chevron-left:before{content:"\F053"}.fa-chevron-right:before{content:"\F054"}.fa-plus-circle:before{content:"\F055"}.fa-minus-circle:before{content:"\F056"}.fa-times-circle:before{content:"\F057"}.fa-check-circle:before{content:"\F058"}.fa-question-circle:before{content:"\F059"}.fa-info-circle:before{content:"\F05A"}.fa-crosshairs:before{content:"\F05B"}.fa-times-circle-o:before{content:"\F05C"}.fa-check-circle-o:before{content:"\F05D"}.fa-ban:before{content:"\F05E"}.fa-arrow-left:before{content:"\F060"}.fa-arrow-right:before{content:"\F061"}.fa-arrow-up:before{content:"\F062"}.fa-arrow-down:before{content:"\F063"}.fa-mail-forward:before,.fa-share:before{content:"\F064"}.fa-expand:before{content:"\F065"}.fa-compress:before{content:"\F066"}.fa-plus:before{content:"\F067"}.fa-minus:before{content:"\F068"}.fa-asterisk:before{content:"\F069"}.fa-exclamation-circle:before{content:"\F06A"}.fa-gift:before{content:"\F06B"}.fa-leaf:before{content:"\F06C"}.fa-fire:before{content:"\F06D"}.fa-eye:before{content:"\F06E"}.fa-eye-slash:before{content:"\F070"}.fa-exclamation-triangle:before,.fa-warning:before{content:"\F071"}.fa-plane:before{content:"\F072"}.fa-calendar:before{content:"\F073"}.fa-random:before{content:"\F074"}.fa-comment:before{content:"\F075"}.fa-magnet:before{content:"\F076"}.fa-chevron-up:before{content:"\F077"}.fa-chevron-down:before{content:"\F078"}.fa-retweet:before{content:"\F079"}.fa-shopping-cart:before{content:"\F07A"}.fa-folder:before{content:"\F07B"}.fa-folder-open:before{content:"\F07C"}.fa-arrows-v:before{content:"\F07D"}.fa-arrows-h:before{content:"\F07E"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\F080"}.fa-twitter-square:before{content:"\F081"}.fa-facebook-square:before{content:"\F082"}.fa-camera-retro:before{content:"\F083"}.fa-key:before{content:"\F084"}.fa-cogs:before,.fa-gears:before{content:"\F085"}.fa-comments:before{content:"\F086"}.fa-thumbs-o-up:before{content:"\F087"}.fa-thumbs-o-down:before{content:"\F088"}.fa-star-half:before{content:"\F089"}.fa-heart-o:before{content:"\F08A"}.fa-sign-out:before{content:"\F08B"}.fa-linkedin-square:before{content:"\F08C"}.fa-thumb-tack:before{content:"\F08D"}.fa-external-link:before{content:"\F08E"}.fa-sign-in:before{content:"\F090"}.fa-trophy:before{content:"\F091"}.fa-github-square:before{content:"\F092"}.fa-upload:before{content:"\F093"}.fa-lemon-o:before{content:"\F094"}.fa-phone:before{content:"\F095"}.fa-square-o:before{content:"\F096"}.fa-bookmark-o:before{content:"\F097"}.fa-phone-square:before{content:"\F098"}.fa-twitter:before{content:"\F099"}.fa-facebook-f:before,.fa-facebook:before{content:"\F09A"}.fa-github:before{content:"\F09B"}.fa-unlock:before{content:"\F09C"}.fa-credit-card:before{content:"\F09D"}.fa-feed:before,.fa-rss:before{content:"\F09E"}.fa-hdd-o:before{content:"\F0A0"}.fa-bullhorn:before{content:"\F0A1"}.fa-bell:before{content:"\F0F3"}.fa-certificate:before{content:"\F0A3"}.fa-hand-o-right:before{content:"\F0A4"}.fa-hand-o-left:before{content:"\F0A5"}.fa-hand-o-up:before{content:"\F0A6"}.fa-hand-o-down:before{content:"\F0A7"}.fa-arrow-circle-left:before{content:"\F0A8"}.fa-arrow-circle-right:before{content:"\F0A9"}.fa-arrow-circle-up:before{content:"\F0AA"}.fa-arrow-circle-down:before{content:"\F0AB"}.fa-globe:before{content:"\F0AC"}.fa-wrench:before{content:"\F0AD"}.fa-tasks:before{content:"\F0AE"}.fa-filter:before{content:"\F0B0"}.fa-briefcase:before{content:"\F0B1"}.fa-arrows-alt:before{content:"\F0B2"}.fa-group:before,.fa-users:before{content:"\F0C0"}.fa-chain:before,.fa-link:before{content:"\F0C1"}.fa-cloud:before{content:"\F0C2"}.fa-flask:before{content:"\F0C3"}.fa-cut:before,.fa-scissors:before{content:"\F0C4"}.fa-copy:before,.fa-files-o:before{content:"\F0C5"}.fa-paperclip:before{content:"\F0C6"}.fa-floppy-o:before,.fa-save:before{content:"\F0C7"}.fa-square:before{content:"\F0C8"}.fa-bars:before,.fa-navicon:before,.fa-reorder:before{content:"\F0C9"}.fa-list-ul:before{content:"\F0CA"}.fa-list-ol:before{content:"\F0CB"}.fa-strikethrough:before{content:"\F0CC"}.fa-underline:before{content:"\F0CD"}.fa-table:before{content:"\F0CE"}.fa-magic:before{content:"\F0D0"}.fa-truck:before{content:"\F0D1"}.fa-pinterest:before{content:"\F0D2"}.fa-pinterest-square:before{content:"\F0D3"}.fa-google-plus-square:before{content:"\F0D4"}.fa-google-plus:before{content:"\F0D5"}.fa-money:before{content:"\F0D6"}.fa-caret-down:before{content:"\F0D7"}.fa-caret-up:before{content:"\F0D8"}.fa-caret-left:before{content:"\F0D9"}.fa-caret-right:before{content:"\F0DA"}.fa-columns:before{content:"\F0DB"}.fa-sort:before,.fa-unsorted:before{content:"\F0DC"}.fa-sort-desc:before,.fa-sort-down:before{content:"\F0DD"}.fa-sort-asc:before,.fa-sort-up:before{content:"\F0DE"}.fa-envelope:before{content:"\F0E0"}.fa-linkedin:before{content:"\F0E1"}.fa-rotate-left:before,.fa-undo:before{content:"\F0E2"}.fa-gavel:before,.fa-legal:before{content:"\F0E3"}.fa-dashboard:before,.fa-tachometer:before{content:"\F0E4"}.fa-comment-o:before{content:"\F0E5"}.fa-comments-o:before{content:"\F0E6"}.fa-bolt:before,.fa-flash:before{content:"\F0E7"}.fa-sitemap:before{content:"\F0E8"}.fa-umbrella:before{content:"\F0E9"}.fa-clipboard:before,.fa-paste:before{content:"\F0EA"}.fa-lightbulb-o:before{content:"\F0EB"}.fa-exchange:before{content:"\F0EC"}.fa-cloud-download:before{content:"\F0ED"}.fa-cloud-upload:before{content:"\F0EE"}.fa-user-md:before{content:"\F0F0"}.fa-stethoscope:before{content:"\F0F1"}.fa-suitcase:before{content:"\F0F2"}.fa-bell-o:before{content:"\F0A2"}.fa-coffee:before{content:"\F0F4"}.fa-cutlery:before{content:"\F0F5"}.fa-file-text-o:before{content:"\F0F6"}.fa-building-o:before{content:"\F0F7"}.fa-hospital-o:before{content:"\F0F8"}.fa-ambulance:before{content:"\F0F9"}.fa-medkit:before{content:"\F0FA"}.fa-fighter-jet:before{content:"\F0FB"}.fa-beer:before{content:"\F0FC"}.fa-h-square:before{content:"\F0FD"}.fa-plus-square:before{content:"\F0FE"}.fa-angle-double-left:before{content:"\F100"}.fa-angle-double-right:before{content:"\F101"}.fa-angle-double-up:before{content:"\F102"}.fa-angle-double-down:before{content:"\F103"}.fa-angle-left:before{content:"\F104"}.fa-angle-right:before{content:"\F105"}.fa-angle-up:before{content:"\F106"}.fa-angle-down:before{content:"\F107"}.fa-desktop:before{content:"\F108"}.fa-laptop:before{content:"\F109"}.fa-tablet:before{content:"\F10A"}.fa-mobile-phone:before,.fa-mobile:before{content:"\F10B"}.fa-circle-o:before{content:"\F10C"}.fa-quote-left:before{content:"\F10D"}.fa-quote-right:before{content:"\F10E"}.fa-spinner:before{content:"\F110"}.fa-circle:before{content:"\F111"}.fa-mail-reply:before,.fa-reply:before{content:"\F112"}.fa-github-alt:before{content:"\F113"}.fa-folder-o:before{content:"\F114"}.fa-folder-open-o:before{content:"\F115"}.fa-smile-o:before{content:"\F118"}.fa-frown-o:before{content:"\F119"}.fa-meh-o:before{content:"\F11A"}.fa-gamepad:before{content:"\F11B"}.fa-keyboard-o:before{content:"\F11C"}.fa-flag-o:before{content:"\F11D"}.fa-flag-checkered:before{content:"\F11E"}.fa-terminal:before{content:"\F120"}.fa-code:before{content:"\F121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\F122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\F123"}.fa-location-arrow:before{content:"\F124"}.fa-crop:before{content:"\F125"}.fa-code-fork:before{content:"\F126"}.fa-chain-broken:before,.fa-unlink:before{content:"\F127"}.fa-question:before{content:"\F128"}.fa-info:before{content:"\F129"}.fa-exclamation:before{content:"\F12A"}.fa-superscript:before{content:"\F12B"}.fa-subscript:before{content:"\F12C"}.fa-eraser:before{content:"\F12D"}.fa-puzzle-piece:before{content:"\F12E"}.fa-microphone:before{content:"\F130"}.fa-microphone-slash:before{content:"\F131"}.fa-shield:before{content:"\F132"}.fa-calendar-o:before{content:"\F133"}.fa-fire-extinguisher:before{content:"\F134"}.fa-rocket:before{content:"\F135"}.fa-maxcdn:before{content:"\F136"}.fa-chevron-circle-left:before{content:"\F137"}.fa-chevron-circle-right:before{content:"\F138"}.fa-chevron-circle-up:before{content:"\F139"}.fa-chevron-circle-down:before{content:"\F13A"}.fa-html5:before{content:"\F13B"}.fa-css3:before{content:"\F13C"}.fa-anchor:before{content:"\F13D"}.fa-unlock-alt:before{content:"\F13E"}.fa-bullseye:before{content:"\F140"}.fa-ellipsis-h:before{content:"\F141"}.fa-ellipsis-v:before{content:"\F142"}.fa-rss-square:before{content:"\F143"}.fa-play-circle:before{content:"\F144"}.fa-ticket:before{content:"\F145"}.fa-minus-square:before{content:"\F146"}.fa-minus-square-o:before{content:"\F147"}.fa-level-up:before{content:"\F148"}.fa-level-down:before{content:"\F149"}.fa-check-square:before{content:"\F14A"}.fa-pencil-square:before{content:"\F14B"}.fa-external-link-square:before{content:"\F14C"}.fa-share-square:before{content:"\F14D"}.fa-compass:before{content:"\F14E"}.fa-caret-square-o-down:before,.fa-toggle-down:before{content:"\F150"}.fa-caret-square-o-up:before,.fa-toggle-up:before{content:"\F151"}.fa-caret-square-o-right:before,.fa-toggle-right:before{content:"\F152"}.fa-eur:before,.fa-euro:before{content:"\F153"}.fa-gbp:before{content:"\F154"}.fa-dollar:before,.fa-usd:before{content:"\F155"}.fa-inr:before,.fa-rupee:before{content:"\F156"}.fa-cny:before,.fa-jpy:before,.fa-rmb:before,.fa-yen:before{content:"\F157"}.fa-rouble:before,.fa-rub:before,.fa-ruble:before{content:"\F158"}.fa-krw:before,.fa-won:before{content:"\F159"}.fa-bitcoin:before,.fa-btc:before{content:"\F15A"}.fa-file:before{content:"\F15B"}.fa-file-text:before{content:"\F15C"}.fa-sort-alpha-asc:before{content:"\F15D"}.fa-sort-alpha-desc:before{content:"\F15E"}.fa-sort-amount-asc:before{content:"\F160"}.fa-sort-amount-desc:before{content:"\F161"}.fa-sort-numeric-asc:before{content:"\F162"}.fa-sort-numeric-desc:before{content:"\F163"}.fa-thumbs-up:before{content:"\F164"}.fa-thumbs-down:before{content:"\F165"}.fa-youtube-square:before{content:"\F166"}.fa-youtube:before{content:"\F167"}.fa-xing:before{content:"\F168"}.fa-xing-square:before{content:"\F169"}.fa-youtube-play:before{content:"\F16A"}.fa-dropbox:before{content:"\F16B"}.fa-stack-overflow:before{content:"\F16C"}.fa-instagram:before{content:"\F16D"}.fa-flickr:before{content:"\F16E"}.fa-adn:before{content:"\F170"}.fa-bitbucket:before{content:"\F171"}.fa-bitbucket-square:before{content:"\F172"}.fa-tumblr:before{content:"\F173"}.fa-tumblr-square:before{content:"\F174"}.fa-long-arrow-down:before{content:"\F175"}.fa-long-arrow-up:before{content:"\F176"}.fa-long-arrow-left:before{content:"\F177"}.fa-long-arrow-right:before{content:"\F178"}.fa-apple:before{content:"\F179"}.fa-windows:before{content:"\F17A"}.fa-android:before{content:"\F17B"}.fa-linux:before{content:"\F17C"}.fa-dribbble:before{content:"\F17D"}.fa-skype:before{content:"\F17E"}.fa-foursquare:before{content:"\F180"}.fa-trello:before{content:"\F181"}.fa-female:before{content:"\F182"}.fa-male:before{content:"\F183"}.fa-gittip:before,.fa-gratipay:before{content:"\F184"}.fa-sun-o:before{content:"\F185"}.fa-moon-o:before{content:"\F186"}.fa-archive:before{content:"\F187"}.fa-bug:before{content:"\F188"}.fa-vk:before{content:"\F189"}.fa-weibo:before{content:"\F18A"}.fa-renren:before{content:"\F18B"}.fa-pagelines:before{content:"\F18C"}.fa-stack-exchange:before{content:"\F18D"}.fa-arrow-circle-o-right:before{content:"\F18E"}.fa-arrow-circle-o-left:before{content:"\F190"}.fa-caret-square-o-left:before,.fa-toggle-left:before{content:"\F191"}.fa-dot-circle-o:before{content:"\F192"}.fa-wheelchair:before{content:"\F193"}.fa-vimeo-square:before{content:"\F194"}.fa-try:before,.fa-turkish-lira:before{content:"\F195"}.fa-plus-square-o:before{content:"\F196"}.fa-space-shuttle:before{content:"\F197"}.fa-slack:before{content:"\F198"}.fa-envelope-square:before{content:"\F199"}.fa-wordpress:before{content:"\F19A"}.fa-openid:before{content:"\F19B"}.fa-bank:before,.fa-institution:before,.fa-university:before{content:"\F19C"}.fa-graduation-cap:before,.fa-mortar-board:before{content:"\F19D"}.fa-yahoo:before{content:"\F19E"}.fa-google:before{content:"\F1A0"}.fa-reddit:before{content:"\F1A1"}.fa-reddit-square:before{content:"\F1A2"}.fa-stumbleupon-circle:before{content:"\F1A3"}.fa-stumbleupon:before{content:"\F1A4"}.fa-delicious:before{content:"\F1A5"}.fa-digg:before{content:"\F1A6"}.fa-pied-piper-pp:before{content:"\F1A7"}.fa-pied-piper-alt:before{content:"\F1A8"}.fa-drupal:before{content:"\F1A9"}.fa-joomla:before{content:"\F1AA"}.fa-language:before{content:"\F1AB"}.fa-fax:before{content:"\F1AC"}.fa-building:before{content:"\F1AD"}.fa-child:before{content:"\F1AE"}.fa-paw:before{content:"\F1B0"}.fa-spoon:before{content:"\F1B1"}.fa-cube:before{content:"\F1B2"}.fa-cubes:before{content:"\F1B3"}.fa-behance:before{content:"\F1B4"}.fa-behance-square:before{content:"\F1B5"}.fa-steam:before{content:"\F1B6"}.fa-steam-square:before{content:"\F1B7"}.fa-recycle:before{content:"\F1B8"}.fa-automobile:before,.fa-car:before{content:"\F1B9"}.fa-cab:before,.fa-taxi:before{content:"\F1BA"}.fa-tree:before{content:"\F1BB"}.fa-spotify:before{content:"\F1BC"}.fa-deviantart:before{content:"\F1BD"}.fa-soundcloud:before{content:"\F1BE"}.fa-database:before{content:"\F1C0"}.fa-file-pdf-o:before{content:"\F1C1"}.fa-file-word-o:before{content:"\F1C2"}.fa-file-excel-o:before{content:"\F1C3"}.fa-file-powerpoint-o:before{content:"\F1C4"}.fa-file-image-o:before,.fa-file-photo-o:before,.fa-file-picture-o:before{content:"\F1C5"}.fa-file-archive-o:before,.fa-file-zip-o:before{content:"\F1C6"}.fa-file-audio-o:before,.fa-file-sound-o:before{content:"\F1C7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\F1C8"}.fa-file-code-o:before{content:"\F1C9"}.fa-vine:before{content:"\F1CA"}.fa-codepen:before{content:"\F1CB"}.fa-jsfiddle:before{content:"\F1CC"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-ring:before,.fa-life-saver:before,.fa-support:before{content:"\F1CD"}.fa-circle-o-notch:before{content:"\F1CE"}.fa-ra:before,.fa-rebel:before,.fa-resistance:before{content:"\F1D0"}.fa-empire:before,.fa-ge:before{content:"\F1D1"}.fa-git-square:before{content:"\F1D2"}.fa-git:before{content:"\F1D3"}.fa-hacker-news:before,.fa-y-combinator-square:before,.fa-yc-square:before{content:"\F1D4"}.fa-tencent-weibo:before{content:"\F1D5"}.fa-qq:before{content:"\F1D6"}.fa-wechat:before,.fa-weixin:before{content:"\F1D7"}.fa-paper-plane:before,.fa-send:before{content:"\F1D8"}.fa-paper-plane-o:before,.fa-send-o:before{content:"\F1D9"}.fa-history:before{content:"\F1DA"}.fa-circle-thin:before{content:"\F1DB"}.fa-header:before{content:"\F1DC"}.fa-paragraph:before{content:"\F1DD"}.fa-sliders:before{content:"\F1DE"}.fa-share-alt:before{content:"\F1E0"}.fa-share-alt-square:before{content:"\F1E1"}.fa-bomb:before{content:"\F1E2"}.fa-futbol-o:before,.fa-soccer-ball-o:before{content:"\F1E3"}.fa-tty:before{content:"\F1E4"}.fa-binoculars:before{content:"\F1E5"}.fa-plug:before{content:"\F1E6"}.fa-slideshare:before{content:"\F1E7"}.fa-twitch:before{content:"\F1E8"}.fa-yelp:before{content:"\F1E9"}.fa-newspaper-o:before{content:"\F1EA"}.fa-wifi:before{content:"\F1EB"}.fa-calculator:before{content:"\F1EC"}.fa-paypal:before{content:"\F1ED"}.fa-google-wallet:before{content:"\F1EE"}.fa-cc-visa:before{content:"\F1F0"}.fa-cc-mastercard:before{content:"\F1F1"}.fa-cc-discover:before{content:"\F1F2"}.fa-cc-amex:before{content:"\F1F3"}.fa-cc-paypal:before{content:"\F1F4"}.fa-cc-stripe:before{content:"\F1F5"}.fa-bell-slash:before{content:"\F1F6"}.fa-bell-slash-o:before{content:"\F1F7"}.fa-trash:before{content:"\F1F8"}.fa-copyright:before{content:"\F1F9"}.fa-at:before{content:"\F1FA"}.fa-eyedropper:before{content:"\F1FB"}.fa-paint-brush:before{content:"\F1FC"}.fa-birthday-cake:before{content:"\F1FD"}.fa-area-chart:before{content:"\F1FE"}.fa-pie-chart:before{content:"\F200"}.fa-line-chart:before{content:"\F201"}.fa-lastfm:before{content:"\F202"}.fa-lastfm-square:before{content:"\F203"}.fa-toggle-off:before{content:"\F204"}.fa-toggle-on:before{content:"\F205"}.fa-bicycle:before{content:"\F206"}.fa-bus:before{content:"\F207"}.fa-ioxhost:before{content:"\F208"}.fa-angellist:before{content:"\F209"}.fa-cc:before{content:"\F20A"}.fa-ils:before,.fa-shekel:before,.fa-sheqel:before{content:"\F20B"}.fa-meanpath:before{content:"\F20C"}.fa-buysellads:before{content:"\F20D"}.fa-connectdevelop:before{content:"\F20E"}.fa-dashcube:before{content:"\F210"}.fa-forumbee:before{content:"\F211"}.fa-leanpub:before{content:"\F212"}.fa-sellsy:before{content:"\F213"}.fa-shirtsinbulk:before{content:"\F214"}.fa-simplybuilt:before{content:"\F215"}.fa-skyatlas:before{content:"\F216"}.fa-cart-plus:before{content:"\F217"}.fa-cart-arrow-down:before{content:"\F218"}.fa-diamond:before{content:"\F219"}.fa-ship:before{content:"\F21A"}.fa-user-secret:before{content:"\F21B"}.fa-motorcycle:before{content:"\F21C"}.fa-street-view:before{content:"\F21D"}.fa-heartbeat:before{content:"\F21E"}.fa-venus:before{content:"\F221"}.fa-mars:before{content:"\F222"}.fa-mercury:before{content:"\F223"}.fa-intersex:before,.fa-transgender:before{content:"\F224"}.fa-transgender-alt:before{content:"\F225"}.fa-venus-double:before{content:"\F226"}.fa-mars-double:before{content:"\F227"}.fa-venus-mars:before{content:"\F228"}.fa-mars-stroke:before{content:"\F229"}.fa-mars-stroke-v:before{content:"\F22A"}.fa-mars-stroke-h:before{content:"\F22B"}.fa-neuter:before{content:"\F22C"}.fa-genderless:before{content:"\F22D"}.fa-facebook-official:before{content:"\F230"}.fa-pinterest-p:before{content:"\F231"}.fa-whatsapp:before{content:"\F232"}.fa-server:before{content:"\F233"}.fa-user-plus:before{content:"\F234"}.fa-user-times:before{content:"\F235"}.fa-bed:before,.fa-hotel:before{content:"\F236"}.fa-viacoin:before{content:"\F237"}.fa-train:before{content:"\F238"}.fa-subway:before{content:"\F239"}.fa-medium:before{content:"\F23A"}.fa-y-combinator:before,.fa-yc:before{content:"\F23B"}.fa-optin-monster:before{content:"\F23C"}.fa-opencart:before{content:"\F23D"}.fa-expeditedssl:before{content:"\F23E"}.fa-battery-4:before,.fa-battery-full:before,.fa-battery:before{content:"\F240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\F241"}.fa-battery-2:before,.fa-battery-half:before{content:"\F242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\F243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\F244"}.fa-mouse-pointer:before{content:"\F245"}.fa-i-cursor:before{content:"\F246"}.fa-object-group:before{content:"\F247"}.fa-object-ungroup:before{content:"\F248"}.fa-sticky-note:before{content:"\F249"}.fa-sticky-note-o:before{content:"\F24A"}.fa-cc-jcb:before{content:"\F24B"}.fa-cc-diners-club:before{content:"\F24C"}.fa-clone:before{content:"\F24D"}.fa-balance-scale:before{content:"\F24E"}.fa-hourglass-o:before{content:"\F250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\F251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\F252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\F253"}.fa-hourglass:before{content:"\F254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\F255"}.fa-hand-paper-o:before,.fa-hand-stop-o:before{content:"\F256"}.fa-hand-scissors-o:before{content:"\F257"}.fa-hand-lizard-o:before{content:"\F258"}.fa-hand-spock-o:before{content:"\F259"}.fa-hand-pointer-o:before{content:"\F25A"}.fa-hand-peace-o:before{content:"\F25B"}.fa-trademark:before{content:"\F25C"}.fa-registered:before{content:"\F25D"}.fa-creative-commons:before{content:"\F25E"}.fa-gg:before{content:"\F260"}.fa-gg-circle:before{content:"\F261"}.fa-tripadvisor:before{content:"\F262"}.fa-odnoklassniki:before{content:"\F263"}.fa-odnoklassniki-square:before{content:"\F264"}.fa-get-pocket:before{content:"\F265"}.fa-wikipedia-w:before{content:"\F266"}.fa-safari:before{content:"\F267"}.fa-chrome:before{content:"\F268"}.fa-firefox:before{content:"\F269"}.fa-opera:before{content:"\F26A"}.fa-internet-explorer:before{content:"\F26B"}.fa-television:before,.fa-tv:before{content:"\F26C"}.fa-contao:before{content:"\F26D"}.fa-500px:before{content:"\F26E"}.fa-amazon:before{content:"\F270"}.fa-calendar-plus-o:before{content:"\F271"}.fa-calendar-minus-o:before{content:"\F272"}.fa-calendar-times-o:before{content:"\F273"}.fa-calendar-check-o:before{content:"\F274"}.fa-industry:before{content:"\F275"}.fa-map-pin:before{content:"\F276"}.fa-map-signs:before{content:"\F277"}.fa-map-o:before{content:"\F278"}.fa-map:before{content:"\F279"}.fa-commenting:before{content:"\F27A"}.fa-commenting-o:before{content:"\F27B"}.fa-houzz:before{content:"\F27C"}.fa-vimeo:before{content:"\F27D"}.fa-black-tie:before{content:"\F27E"}.fa-fonticons:before{content:"\F280"}.fa-reddit-alien:before{content:"\F281"}.fa-edge:before{content:"\F282"}.fa-credit-card-alt:before{content:"\F283"}.fa-codiepie:before{content:"\F284"}.fa-modx:before{content:"\F285"}.fa-fort-awesome:before{content:"\F286"}.fa-usb:before{content:"\F287"}.fa-product-hunt:before{content:"\F288"}.fa-mixcloud:before{content:"\F289"}.fa-scribd:before{content:"\F28A"}.fa-pause-circle:before{content:"\F28B"}.fa-pause-circle-o:before{content:"\F28C"}.fa-stop-circle:before{content:"\F28D"}.fa-stop-circle-o:before{content:"\F28E"}.fa-shopping-bag:before{content:"\F290"}.fa-shopping-basket:before{content:"\F291"}.fa-hashtag:before{content:"\F292"}.fa-bluetooth:before{content:"\F293"}.fa-bluetooth-b:before{content:"\F294"}.fa-percent:before{content:"\F295"}.fa-gitlab:before{content:"\F296"}.fa-wpbeginner:before{content:"\F297"}.fa-wpforms:before{content:"\F298"}.fa-envira:before{content:"\F299"}.fa-universal-access:before{content:"\F29A"}.fa-wheelchair-alt:before{content:"\F29B"}.fa-question-circle-o:before{content:"\F29C"}.fa-blind:before{content:"\F29D"}.fa-audio-description:before{content:"\F29E"}.fa-volume-control-phone:before{content:"\F2A0"}.fa-braille:before{content:"\F2A1"}.fa-assistive-listening-systems:before{content:"\F2A2"}.fa-american-sign-language-interpreting:before,.fa-asl-interpreting:before{content:"\F2A3"}.fa-deaf:before,.fa-deafness:before,.fa-hard-of-hearing:before{content:"\F2A4"}.fa-glide:before{content:"\F2A5"}.fa-glide-g:before{content:"\F2A6"}.fa-sign-language:before,.fa-signing:before{content:"\F2A7"}.fa-low-vision:before{content:"\F2A8"}.fa-viadeo:before{content:"\F2A9"}.fa-viadeo-square:before{content:"\F2AA"}.fa-snapchat:before{content:"\F2AB"}.fa-snapchat-ghost:before{content:"\F2AC"}.fa-snapchat-square:before{content:"\F2AD"}.fa-pied-piper:before{content:"\F2AE"}.fa-first-order:before{content:"\F2B0"}.fa-yoast:before{content:"\F2B1"}.fa-themeisle:before{content:"\F2B2"}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:"\F2B3"}.fa-fa:before,.fa-font-awesome:before{content:"\F2B4"}.fa-handshake-o:before{content:"\F2B5"}.fa-envelope-open:before{content:"\F2B6"}.fa-envelope-open-o:before{content:"\F2B7"}.fa-linode:before{content:"\F2B8"}.fa-address-book:before{content:"\F2B9"}.fa-address-book-o:before{content:"\F2BA"}.fa-address-card:before,.fa-vcard:before{content:"\F2BB"}.fa-address-card-o:before,.fa-vcard-o:before{content:"\F2BC"}.fa-user-circle:before{content:"\F2BD"}.fa-user-circle-o:before{content:"\F2BE"}.fa-user-o:before{content:"\F2C0"}.fa-id-badge:before{content:"\F2C1"}.fa-drivers-license:before,.fa-id-card:before{content:"\F2C2"}.fa-drivers-license-o:before,.fa-id-card-o:before{content:"\F2C3"}.fa-quora:before{content:"\F2C4"}.fa-free-code-camp:before{content:"\F2C5"}.fa-telegram:before{content:"\F2C6"}.fa-thermometer-4:before,.fa-thermometer-full:before,.fa-thermometer:before{content:"\F2C7"}.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:"\F2C8"}.fa-thermometer-2:before,.fa-thermometer-half:before{content:"\F2C9"}.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:"\F2CA"}.fa-thermometer-0:before,.fa-thermometer-empty:before{content:"\F2CB"}.fa-shower:before{content:"\F2CC"}.fa-bath:before,.fa-bathtub:before,.fa-s15:before{content:"\F2CD"}.fa-podcast:before{content:"\F2CE"}.fa-window-maximize:before{content:"\F2D0"}.fa-window-minimize:before{content:"\F2D1"}.fa-window-restore:before{content:"\F2D2"}.fa-times-rectangle:before,.fa-window-close:before{content:"\F2D3"}.fa-times-rectangle-o:before,.fa-window-close-o:before{content:"\F2D4"}.fa-bandcamp:before{content:"\F2D5"}.fa-grav:before{content:"\F2D6"}.fa-etsy:before{content:"\F2D7"}.fa-imdb:before{content:"\F2D8"}.fa-ravelry:before{content:"\F2D9"}.fa-eercast:before{content:"\F2DA"}.fa-microchip:before{content:"\F2DB"}.fa-snowflake-o:before{content:"\F2DC"}.fa-superpowers:before{content:"\F2DD"}.fa-wpexplorer:before{content:"\F2DE"}.fa-meetup:before{content:"\F2E0"}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}@font-face{font-family:Material Icons;font-style:normal;font-weight:400;src:url(/best-resume-ever/static/fonts/MaterialIcons-Regular.e79bfd8.eot);src:local("Material Icons"),local("MaterialIcons-Regular"),url(/best-resume-ever/static/fonts/MaterialIcons-Regular.570eb83.woff2) format("woff2"),url(/best-resume-ever/static/fonts/MaterialIcons-Regular.012cf6a.woff) format("woff"),url(/best-resume-ever/static/fonts/MaterialIcons-Regular.a37b0c0.ttf) format("truetype")}.material-icons{font-family:Material Icons;font-weight:400;font-style:normal;font-size:24px;display:inline-block;line-height:1;text-transform:none;letter-spacing:normal;word-wrap:normal;white-space:nowrap;direction:ltr;-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility;-moz-osx-font-smoothing:grayscale;font-feature-settings:"liga"}@font-face{font-family:Source Sans Pro;font-weight:200;font-style:normal;font-stretch:normal;src:url(/best-resume-ever/static/fonts/SourceSansPro-ExtraLight.52d5980.eot) format("embedded-opentype"),url(/best-resume-ever/static/fonts/SourceSansPro-ExtraLight.otf.f2558c5.woff) format("woff"),url(/best-resume-ever/static/fonts/SourceSansPro-ExtraLight.f99485f.otf) format("opentype"),url(/best-resume-ever/static/fonts/SourceSansPro-ExtraLight.8bfca62.ttf) format("truetype")}@font-face{font-family:Source Sans Pro;font-weight:200;font-style:italic;font-stretch:normal;src:url(/best-resume-ever/static/fonts/SourceSansPro-ExtraLightIt.0d91dad.eot) format("embedded-opentype"),url(/best-resume-ever/static/fonts/SourceSansPro-ExtraLightIt.otf.bd14278.woff) format("woff"),url(/best-resume-ever/static/fonts/SourceSansPro-ExtraLightIt.1574d13.otf) format("opentype"),url(/best-resume-ever/static/fonts/SourceSansPro-ExtraLightIt.ef10cbb.ttf) format("truetype")}@font-face{font-family:Source Sans Pro;font-weight:300;font-style:normal;font-stretch:normal;src:url(/best-resume-ever/static/fonts/SourceSansPro-Light.e573bb4.eot) format("embedded-opentype"),url(/best-resume-ever/static/fonts/SourceSansPro-Light.otf.488b68e.woff) format("woff"),url(/best-resume-ever/static/fonts/SourceSansPro-Light.111fe8b.otf) format("opentype"),url(/best-resume-ever/static/fonts/SourceSansPro-Light.39b40cf.ttf) format("truetype")}@font-face{font-family:Source Sans Pro;font-weight:300;font-style:italic;font-stretch:normal;src:url(/best-resume-ever/static/fonts/SourceSansPro-LightIt.6b1b852.eot) format("embedded-opentype"),url(/best-resume-ever/static/fonts/SourceSansPro-LightIt.otf.6608f02.woff) format("woff"),url(/best-resume-ever/static/fonts/SourceSansPro-LightIt.90c1bb0.otf) format("opentype"),url(/best-resume-ever/static/fonts/SourceSansPro-LightIt.855d27d.ttf) format("truetype")}@font-face{font-family:Source Sans Pro;font-weight:400;font-style:normal;font-stretch:normal;src:url(/best-resume-ever/static/fonts/SourceSansPro-Regular.82c5611.eot) format("embedded-opentype"),url(/best-resume-ever/static/fonts/SourceSansPro-Regular.otf.788a2bc.woff) format("woff"),url(/best-resume-ever/static/fonts/SourceSansPro-Regular.9ba6f59.otf) format("opentype"),url(/best-resume-ever/static/fonts/SourceSansPro-Regular.26add37.ttf) format("truetype")}@font-face{font-family:Source Sans Pro;font-weight:400;font-style:italic;font-stretch:normal;src:url(/best-resume-ever/static/fonts/SourceSansPro-It.d488c16.eot) format("embedded-opentype"),url(/best-resume-ever/static/fonts/SourceSansPro-It.otf.d995730.woff) format("woff"),url(/best-resume-ever/static/fonts/SourceSansPro-It.c00459c.otf) format("opentype"),url(/best-resume-ever/static/fonts/SourceSansPro-It.29bb28f.ttf) format("truetype")}@font-face{font-family:Source Sans Pro;font-weight:600;font-style:normal;font-stretch:normal;src:url(/best-resume-ever/static/fonts/SourceSansPro-Semibold.4019cd7.eot) format("embedded-opentype"),url(/best-resume-ever/static/fonts/SourceSansPro-Semibold.otf.7a89c69.woff) format("woff"),url(/best-resume-ever/static/fonts/SourceSansPro-Semibold.411cd22.otf) format("opentype"),url(/best-resume-ever/static/fonts/SourceSansPro-Semibold.bef69c3.ttf) format("truetype")}@font-face{font-family:Source Sans Pro;font-weight:600;font-style:italic;font-stretch:normal;src:url(/best-resume-ever/static/fonts/SourceSansPro-SemiboldIt.4c9d790.eot) format("embedded-opentype"),url(/best-resume-ever/static/fonts/SourceSansPro-SemiboldIt.otf.178e793.woff) format("woff"),url(/best-resume-ever/static/fonts/SourceSansPro-SemiboldIt.e430ca7.otf) format("opentype"),url(/best-resume-ever/static/fonts/SourceSansPro-SemiboldIt.c5430f5.ttf) format("truetype")}@font-face{font-family:Source Sans Pro;font-weight:700;font-style:normal;font-stretch:normal;src:url(/best-resume-ever/static/fonts/SourceSansPro-Bold.8e3f84f.eot) format("embedded-opentype"),url(/best-resume-ever/static/fonts/SourceSansPro-Bold.otf.3bfca25.woff) format("woff"),url(/best-resume-ever/static/fonts/SourceSansPro-Bold.e2cac00.otf) format("opentype"),url(/best-resume-ever/static/fonts/SourceSansPro-Bold.2599a39.ttf) format("truetype")}@font-face{font-family:Source Sans Pro;font-weight:700;font-style:italic;font-stretch:normal;src:url(/best-resume-ever/static/fonts/SourceSansPro-BoldIt.b35af15.eot) format("embedded-opentype"),url(/best-resume-ever/static/fonts/SourceSansPro-BoldIt.otf.a83b890.woff) format("woff"),url(/best-resume-ever/static/fonts/SourceSansPro-BoldIt.0904e44.otf) format("opentype"),url(/best-resume-ever/static/fonts/SourceSansPro-BoldIt.9baa9f9.ttf) format("truetype")}@font-face{font-family:Source Sans Pro;font-weight:900;font-style:normal;font-stretch:normal;src:url(/best-resume-ever/static/fonts/SourceSansPro-Black.4838df6.eot) format("embedded-opentype"),url(/best-resume-ever/static/fonts/SourceSansPro-Black.otf.80391e3.woff) format("woff"),url(/best-resume-ever/static/fonts/SourceSansPro-Black.0531f24.otf) format("opentype"),url(/best-resume-ever/static/fonts/SourceSansPro-Black.60a663a.ttf) format("truetype")}@font-face{font-family:Source Sans Pro;font-weight:900;font-style:italic;font-stretch:normal;src:url(/best-resume-ever/static/fonts/SourceSansPro-BlackIt.befd8cf.eot) format("embedded-opentype"),url(/best-resume-ever/static/fonts/SourceSansPro-BlackIt.otf.c563ef3.woff) format("woff"),url(/best-resume-ever/static/fonts/SourceSansPro-BlackIt.b580cee.otf) format("opentype"),url(/best-resume-ever/static/fonts/SourceSansPro-BlackIt.e63a68b.ttf) format("truetype")}@font-face{font-family:Open Sans;font-weight:300;font-style:normal;src:url(/best-resume-ever/static/fonts/OpenSans-Light.8040375.eot);src:url(/best-resume-ever/static/fonts/OpenSans-Light.8040375.eot?#iefix) format("embedded-opentype"),url(/best-resume-ever/static/fonts/OpenSans-Light.39d27e1.woff2) format("woff2"),url(/best-resume-ever/static/fonts/OpenSans-Light.963eb32.woff) format("woff"),url(/best-resume-ever/static/fonts/OpenSans-Light.ecb4572.ttf) format("truetype"),url(/best-resume-ever/static/img/OpenSans-Light.d79f021.svg#OpenSansLight) format("svg")}@font-face{font-family:Open Sans;font-weight:300;font-style:italic;src:url(/best-resume-ever/static/fonts/OpenSans-LightItalic.6725fc4.eot);src:url(/best-resume-ever/static/fonts/OpenSans-LightItalic.6725fc4.eot?#iefix) format("embedded-opentype"),url(/best-resume-ever/static/fonts/OpenSans-LightItalic.e7cc712.woff2) format("woff2"),url(/best-resume-ever/static/fonts/OpenSans-LightItalic.97534dd.woff) format("woff"),url(/best-resume-ever/static/fonts/OpenSans-LightItalic.26f1e68.ttf) format("truetype"),url(/best-resume-ever/static/img/OpenSans-LightItalic.b64e991.svg#OpenSansLightItalic) format("svg")}@font-face{font-family:Open Sans;font-weight:400;font-style:normal;src:url(/best-resume-ever/static/fonts/OpenSans-Regular.a35546e.eot);src:url(/best-resume-ever/static/fonts/OpenSans-Regular.a35546e.eot?#iefix) format("embedded-opentype"),url(/best-resume-ever/static/fonts/OpenSans-Regular.5583548.woff2) format("woff2"),url(/best-resume-ever/static/fonts/OpenSans-Regular.ac327c4.woff) format("woff"),url(/best-resume-ever/static/fonts/OpenSans-Regular.cd72963.ttf) format("truetype"),url(/best-resume-ever/static/img/OpenSans-Regular.f641a7d.svg#OpenSansRegular) format("svg")}@font-face{font-family:Open Sans;font-weight:400;font-style:italic;src:url(/best-resume-ever/static/fonts/OpenSans-Italic.e487b7c.eot);src:url(/best-resume-ever/static/fonts/OpenSans-Italic.e487b7c.eot?#iefix) format("embedded-opentype"),url(/best-resume-ever/static/fonts/OpenSans-Italic.383eba0.woff2) format("woff2"),url(/best-resume-ever/static/fonts/OpenSans-Italic.5250746.woff) format("woff"),url(/best-resume-ever/static/fonts/OpenSans-Italic.9b30f13.ttf) format("truetype"),url(/best-resume-ever/static/img/OpenSans-Italic.d6671d4.svg#OpenSansItalic) format("svg")}@font-face{font-family:Open Sans;font-weight:600;font-style:normal;src:url(/best-resume-ever/static/fonts/OpenSans-Semibold.0ea0450.eot);src:url(/best-resume-ever/static/fonts/OpenSans-Semibold.0ea0450.eot?#iefix) format("embedded-opentype"),url(/best-resume-ever/static/fonts/OpenSans-Semibold.08952b0.woff2) format("woff2"),url(/best-resume-ever/static/fonts/OpenSans-Semibold.9f21442.woff) format("woff"),url(/best-resume-ever/static/fonts/OpenSans-Semibold.33f225b.ttf) format("truetype"),url(/best-resume-ever/static/img/OpenSans-Semibold.bb100c9.svg#OpenSansSemibold) format("svg")}@font-face{font-family:Open Sans;font-weight:600;font-style:italic;src:url(/best-resume-ever/static/fonts/OpenSans-SemiboldItalic.da06141.eot);src:url(/best-resume-ever/static/fonts/OpenSans-SemiboldItalic.da06141.eot?#iefix) format("embedded-opentype"),url(/best-resume-ever/static/fonts/OpenSans-SemiboldItalic.3343e54.woff2) format("woff2"),url(/best-resume-ever/static/fonts/OpenSans-SemiboldItalic.ec55f26.woff) format("woff"),url(/best-resume-ever/static/fonts/OpenSans-SemiboldItalic.1c0b4eb.ttf) format("truetype"),url(/best-resume-ever/static/img/OpenSans-SemiboldItalic.ddc348f.svg#OpenSansSemiboldItalic) format("svg")}@font-face{font-family:Open Sans;font-weight:700;font-style:normal;src:url(/best-resume-ever/static/fonts/OpenSans-Bold.7ae9b8b.eot);src:url(/best-resume-ever/static/fonts/OpenSans-Bold.7ae9b8b.eot?#iefix) format("embedded-opentype"),url(/best-resume-ever/static/fonts/OpenSans-Bold.3326e4d.woff2) format("woff2"),url(/best-resume-ever/static/fonts/OpenSans-Bold.8926673.woff) format("woff"),url(/best-resume-ever/static/fonts/OpenSans-Bold.5a10091.ttf) format("truetype"),url(/best-resume-ever/static/img/OpenSans-Bold.d6291f8.svg#OpenSansBold) format("svg")}@font-face{font-family:Open Sans;font-weight:700;font-style:italic;src:url(/best-resume-ever/static/fonts/OpenSans-BoldItalic.ea07932.eot);src:url(/best-resume-ever/static/fonts/OpenSans-BoldItalic.ea07932.eot?#iefix) format("embedded-opentype"),url(/best-resume-ever/static/fonts/OpenSans-BoldItalic.5aaceea.woff2) format("woff2"),url(/best-resume-ever/static/fonts/OpenSans-BoldItalic.7be88e7.woff) format("woff"),url(/best-resume-ever/static/fonts/OpenSans-BoldItalic.c36b5ac.ttf) format("truetype"),url(/best-resume-ever/static/img/OpenSans-BoldItalic.a54aba8.svg#OpenSansBoldItalic) format("svg")}@font-face{font-family:Open Sans;font-weight:800;font-style:normal;src:url(/best-resume-ever/static/fonts/OpenSans-ExtraBold.561e4b6.eot);src:url(/best-resume-ever/static/fonts/OpenSans-ExtraBold.561e4b6.eot?#iefix) format("embedded-opentype"),url(/best-resume-ever/static/fonts/OpenSans-ExtraBold.5211065.woff2) format("woff2"),url(/best-resume-ever/static/fonts/OpenSans-ExtraBold.12e2ed7.woff) format("woff"),url(/best-resume-ever/static/fonts/OpenSans-ExtraBold.19b56cf.ttf) format("truetype"),url(/best-resume-ever/static/img/OpenSans-ExtraBold.8c5c497.svg#OpenSansExtrabold) format("svg")}@font-face{font-family:Open Sans;font-weight:800;font-style:italic;src:url(/best-resume-ever/static/fonts/OpenSans-ExtraBoldItalic.5f467e7.eot);src:url(/best-resume-ever/static/fonts/OpenSans-ExtraBoldItalic.5f467e7.eot?#iefix) format("embedded-opentype"),url(/best-resume-ever/static/fonts/OpenSans-ExtraBoldItalic.bc511ba.woff2) format("woff2"),url(/best-resume-ever/static/fonts/OpenSans-ExtraBoldItalic.4f44077.woff) format("woff"),url(/best-resume-ever/static/fonts/OpenSans-ExtraBoldItalic.4595d7f.ttf) format("truetype"),url(/best-resume-ever/static/img/OpenSans-ExtraBoldItalic.9704305.svg#OpenSansExtraboldItalic) format("svg")}@font-face{font-family:Open Sans Condensed;font-weight:300;font-style:normal;src:url(/best-resume-ever/static/fonts/opensans-condlight.fa14197.eot);src:url(/best-resume-ever/static/fonts/opensans-condlight.fa14197.eot?#iefix) format("embedded-opentype"),url(/best-resume-ever/static/fonts/opensans-condlight.fd21219.woff) format("woff"),url(/best-resume-ever/static/fonts/opensans-condlight.78a0d7e.ttf) format("truetype"),url(/best-resume-ever/static/img/opensans-condlight.55ca06a.svg#OpenSansCondensedLight) format("svg")}@font-face{font-family:Open Sans Condensed;font-weight:300;font-style:italic;src:url(/best-resume-ever/static/fonts/opensans-condlightitalic.b722edf.eot);src:url(/best-resume-ever/static/fonts/opensans-condlightitalic.b722edf.eot?#iefix) format("embedded-opentype"),url(/best-resume-ever/static/fonts/opensans-condlightitalic.36dda30.woff) format("woff"),url(/best-resume-ever/static/fonts/opensans-condlightitalic.41ed725.ttf) format("truetype"),url(/best-resume-ever/static/img/opensans-condlightitalic.c00c6b0.svg#OpenSansCondensedLightItalic) format("svg")}@font-face{font-family:Open Sans Condensed;font-weight:700;font-style:normal;src:url(/best-resume-ever/static/fonts/opensans-condbold.790124b.eot);src:url(/best-resume-ever/static/fonts/opensans-condbold.790124b.eot?#iefix) format("embedded-opentype"),url(/best-resume-ever/static/fonts/opensans-condbold.16a153a.woff) format("woff"),url(/best-resume-ever/static/fonts/opensans-condbold.c28df5d.ttf) format("truetype"),url(/best-resume-ever/static/img/opensans-condbold.1e26591.svg#OpenSansCondensedBold) format("svg")}@font-face{font-family:Raleway;src:url(/best-resume-ever/static/fonts/Raleway-Thin.ebd07bb.ttf) format("truetype");font-style:normal;font-weight:100;text-rendering:optimizeLegibility}@font-face{font-family:Raleway;src:url(/best-resume-ever/static/fonts/Raleway-Thin-Italic.f8708e6.ttf) format("truetype");font-style:italic;font-weight:100;text-rendering:optimizeLegibility}@font-face{font-family:Raleway;src:url(/best-resume-ever/static/fonts/Raleway-ExtraLight.ebd5c80.ttf) format("truetype");font-style:normal;font-weight:200;text-rendering:optimizeLegibility}@font-face{font-family:Raleway;src:url(/best-resume-ever/static/fonts/Raleway-ExtraLight-Italic.91fc8a2.ttf) format("truetype");font-style:italic;font-weight:200;text-rendering:optimizeLegibility}@font-face{font-family:Raleway;src:url(/best-resume-ever/static/fonts/Raleway-Light.6b562d7.ttf) format("truetype");font-style:normal;font-weight:300;text-rendering:optimizeLegibility}@font-face{font-family:Raleway;src:url(/best-resume-ever/static/fonts/Raleway-Light-Italic.fa415a9.ttf) format("truetype");font-style:italic;font-weight:300;text-rendering:optimizeLegibility}@font-face{font-family:Raleway;src:url(/best-resume-ever/static/fonts/Raleway-Regular.2d4cd87.ttf) format("truetype");font-style:normal;font-weight:400;text-rendering:optimizeLegibility}@font-face{font-family:Raleway;src:url(/best-resume-ever/static/fonts/Raleway-Regular-Italic.b1f58e1.ttf) format("truetype");font-style:italic;font-weight:400;text-rendering:optimizeLegibility}@font-face{font-family:Raleway;src:url(/best-resume-ever/static/fonts/Raleway-Medium.2e763f8.ttf) format("truetype");font-style:normal;font-weight:500;text-rendering:optimizeLegibility}@font-face{font-family:Raleway;src:url(/best-resume-ever/static/fonts/Raleway-Medium-Italic.c966b86.ttf) format("truetype");font-style:italic;font-weight:500;text-rendering:optimizeLegibility}@font-face{font-family:Raleway;src:url(/best-resume-ever/static/fonts/Raleway-SemiBold.e18d388.ttf) format("truetype");font-style:normal;font-weight:600;text-rendering:optimizeLegibility}@font-face{font-family:Raleway;src:url(/best-resume-ever/static/fonts/Raleway-SemiBold-Italic.4bd987d.ttf) format("truetype");font-style:italic;font-weight:600;text-rendering:optimizeLegibility}@font-face{font-family:Raleway;src:url(/best-resume-ever/static/fonts/Raleway-Bold.f5c9c1a.ttf) format("truetype");font-style:normal;font-weight:700;text-rendering:optimizeLegibility}@font-face{font-family:Raleway;src:url(/best-resume-ever/static/fonts/Raleway-Bold-Italic.02d3658.ttf) format("truetype");font-style:italic;font-weight:700;text-rendering:optimizeLegibility}@font-face{font-family:Raleway;src:url(/best-resume-ever/static/fonts/Raleway-ExtraBold.299ddfe.ttf) format("truetype");font-style:normal;font-weight:800;text-rendering:optimizeLegibility}@font-face{font-family:Raleway;src:url(/best-resume-ever/static/fonts/Raleway-ExtraBold-Italic.8832d30.ttf) format("truetype");font-style:italic;font-weight:800;text-rendering:optimizeLegibility}@font-face{font-family:Raleway;src:url(/best-resume-ever/static/fonts/Raleway-Black.d641109.ttf) format("truetype");font-style:normal;font-weight:900;text-rendering:optimizeLegibility}@font-face{font-family:Raleway;src:url(/best-resume-ever/static/fonts/Raleway-Black-Italic.0f629c9.ttf) format("truetype");font-style:italic;font-weight:900;text-rendering:optimizeLegibility}body{padding:0;margin:0;overflow-x:hidden;background:#ccc}.page-inner[data-v-09e61b2b]{height:100%;width:100%}.page-wrapper[data-v-09e61b2b]{overflow-x:hidden;background:#ccc;margin:0;padding:0;-webkit-print-color-adjust:exact;box-sizing:border-box}.resume[data-v-09e61b2b]{height:100%;width:100%}.page[data-v-09e61b2b]{background:#fff;position:relative;width:21cm;height:29.68cm;display:block;page-break-after:auto;overflow:hidden}.resume[data-v-7951fa00]{font-family:Roboto!important;background:#ccc}a[data-v-7951fa00]{cursor:pointer}.description-personal[data-v-7951fa00]{margin-left:20px;margin-top:20px;padding-right:40px;text-align:justify;font-family:Roboto}.title[data-v-7951fa00]{right:25px;padding-left:20px;padding-top:20px;bottom:25px}.title h2[data-v-7951fa00]{text-transform:uppercase;display:block;font-size:1.17em;-webkit-margin-before:1em;-webkit-margin-after:1em;-webkit-margin-start:0;-webkit-margin-end:0;color:#fff;color:rgba(0,0,0,.7);padding-top:0;margin-top:0;letter-spacing:10px;font-weight:400}.title div[data-v-7951fa00]{margin-top:-5px;margin-top:0;margin:0;padding:0;line-height:15pt;font-weight:300;letter-spacing:2px;color:#fff;color:#16151c;color:rgba(63,61,60,.71);display:block;font-size:.67em;-webkit-margin-before:2.33em;-webkit-margin-start:0;-webkit-margin-end:0;padding-top:0}.section-headline[data-v-7951fa00],.title div[data-v-7951fa00]{font-weight:500;letter-spacing:3px;font-size:10pt;text-transform:uppercase;opacity:.8}.section-headline[data-v-7951fa00]{margin-left:20px;margin-top:40px;margin-bottom:20px;color:#3f3d3c}.c[data-v-7951fa00]{clear:both}li[data-v-7951fa00]{margin:0;padding:0;list-style-type:none;padding-top:9px}ul[data-v-7951fa00]{margin:0;padding:0;list-style-type:none}p[data-v-7951fa00]{margin-top:0;margin-bottom:25px;font-family:Roboto,sans-serif;font-weight:300;font-size:10pt;line-height:17pt}.m_box[data-v-7951fa00]{box-shadow:0 2px 5px 0 rgba(0,0,0,.16),0 2px 10px 0 rgba(0,0,0,.12)}.fa[data-v-7951fa00],.material-icons[data-v-7951fa00]{display:inline-block;font-style:normal;font-weight:400;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:26px}h1[data-v-7951fa00],h2[data-v-7951fa00],h3[data-v-7951fa00],h5[data-v-7951fa00],h6[data-v-7951fa00]{font-weight:400;margin:0}h2[data-v-7951fa00]{font-weight:500;font-size:22pt;line-height:37pt}h4[data-v-7951fa00]{font-weight:400;margin:0;font-size:12pt;line-height:20pt;opacity:1}.rightCol[data-v-7951fa00]{width:63.5%;height:100%;float:right;display:flex;flex-direction:column}.rightCol .block[data-v-7951fa00]{width:90%;position:relative;background-color:#fff;padding:20px;margin-top:5px;margin-bottom:5px;display:inline-block;box-shadow:0 2px 5px 0 rgba(0,0,0,.16),0 2px 10px 0 rgba(0,0,0,.12)}.rightCol .block .headline[data-v-7951fa00]{font-weight:300;display:block;font-size:15px;color:rgba(0,0,0,.870588)}.rightCol .block .subheadline[data-v-7951fa00]{color:rgba(0,0,0,.541176);display:block;font-size:14px;font-weight:300}.rightCol .block .info[data-v-7951fa00]{font-size:14px;color:rgba(0,0,0,.870588);margin-bottom:0;padding-top:20px}.rightCol .block .icon[data-v-7951fa00]{width:16%;float:left;margin-left:0}.rightCol .block .icon .fa[data-v-7951fa00],.rightCol .block .icon .material-icons[data-v-7951fa00]{text-align:center;display:block;font-size:30pt}.rightCol .block .content[data-v-7951fa00]{width:80%;position:absolute;height:96%;left:17%;padding-right:3%;text-align:left;display:flex;flex-direction:column}.rightCol .block .content .item[data-v-7951fa00]{border-bottom:1px solid #bdbdbd;flex:1;width:97%;display:flex;justify-content:center;flex-direction:column;text-align:left;padding-top:0}.rightCol .block .content .item span[data-v-7951fa00]{color:#d8ab94;margin-top:0;font-size:10pt;line-height:16pt}.rightCol .block .content .item p[data-v-7951fa00]{margin-top:5px}.rightCol .block .content .item[data-v-7951fa00]:last-of-type{border-bottom-style:none}.leftCol[data-v-7951fa00]{width:35%;height:100%;float:left;padding:0;text-align:left;color:#fff;color:hsla(0,0%,100%,.59);background-color:#16151c;overflow:hidden;display:block}.leftCol .section-headline[data-v-7951fa00]{color:hsla(0,0%,100%,.54)}.leftCol a[data-v-7951fa00]{color:hsla(0,0%,100%,.59);text-decoration:none}.leftCol .heading[data-v-7951fa00]{background-color:#fff;background-repeat:no-repeat;background-size:cover;background-position:50%;position:relative;width:100%;height:277px}.leftCol .item[data-v-7951fa00]{width:100%;margin-top:13px;float:left}.leftCol .item .fa[data-v-7951fa00],.leftCol .item .material-icons[data-v-7951fa00]{display:inherit;text-align:center}.leftCol .item .icon[data-v-7951fa00]{width:20%;float:left}.leftCol .item .text[data-v-7951fa00]{float:right;width:69%;padding-right:10%}.leftCol .item .text[data-v-7951fa00],.leftCol .item .text li[data-v-7951fa00]{padding-top:0;display:block;font-size:15px;font-weight:300}.leftCol .item span[data-v-7951fa00]{font-weight:300}.leftCol .item .skill[data-v-7951fa00]{clear:both;width:97%;padding-top:4px}.leftCol .item .skill .left[data-v-7951fa00]{float:left;width:10%;padding-top:3px}.leftCol .item .skill .left i[data-v-7951fa00]:nth-child(2){float:left;padding-top:4px}.leftCol .item .skill .right[data-v-7951fa00]{float:right;width:93%}.leftCol .item .skill .right .progress[data-v-7951fa00]{float:left;position:relative;height:2px;display:block;width:95%;background-color:hsla(0,0%,100%,.19);border-radius:2px;margin:.5rem 0 1rem;overflow:visible;margin-bottom:10px}.leftCol .item .skill .right .progress .determinate[data-v-7951fa00]{background-color:#78909c;position:absolute;top:0;bottom:0}.leftCol .item .skill .right .progress .determinate .fa[data-v-7951fa00],.leftCol .item .skill .right .progress .determinate .material-icons[data-v-7951fa00]{font-size:13px;position:absolute;top:-4px;right:-2px;margin-left:50%;color:#fff}.leftCol .item.last .text[data-v-7951fa00]{border-bottom-style:none;padding-bottom:0}#myselfpic[data-v-7951fa00]{background-image:url(/best-resume-ever/static/img/id.087ce5d.jpg);color:#000}#githubIcon[data-v-7951fa00]{width:25px;padding-left:17px}#resume1[data-v-892f1822]{font-family:Source Sans Pro,sans-serif;font-size:20px;padding-bottom:50px}#resume1 a[data-v-892f1822],#resume1 a[data-v-892f1822]:focus,#resume1 a[data-v-892f1822]:hover,#resume1 a[data-v-892f1822]:visited{color:#616161}#resume1 h3[data-v-892f1822]{margin-bottom:0}#resume1 span[data-v-892f1822]{display:inline-block}#resume1 .row[data-v-892f1822]{width:100%}#resume1 .half[data-v-892f1822]{width:44%}#resume1 .half.left[data-v-892f1822]{float:left;text-align:right;padding-left:4%;padding-right:2%}#resume1 .half.right[data-v-892f1822]{float:right;text-align:left;padding-right:4%;padding-left:2%}#resume1 .center[data-v-892f1822]{margin-left:auto;margin-right:auto}#resume1 .text-center[data-v-892f1822]{text-align:center}#resume1 .name[data-v-892f1822]{border:1px solid #000;text-transform:uppercase;padding:10px 20px;margin-top:80px;margin-bottom:5px;font-family:Open Sans,sans-serif;font-size:35px;font-weight:600;letter-spacing:10px}#resume1 .position[data-v-892f1822]{text-transform:uppercase;font-family:Open Sans,sans-serif;font-size:smaller;color:#757575;margin-bottom:40px}#resume1 .image[data-v-892f1822]{width:100px;height:100px;margin-top:50px;margin-bottom:50px}#resume1 .image .img[data-v-892f1822]{width:100%;height:100%;border-radius:50%;background-image:url(/best-resume-ever/static/img/id.087ce5d.jpg);background-repeat:none;background-position:50%;background-size:cover}#resume1 .contact[data-v-892f1822]{width:100%}#resume1 .contact table[data-v-892f1822]{text-align:right;float:right;margin-top:5px;color:#616161;font-size:20px}#resume1 .contact table i[data-v-892f1822]{padding:2px;color:#616161}#resume1 .contact table tr td[data-v-892f1822]:nth-child(2){vertical-align:top}#resume1 .experience .experience-block span[data-v-892f1822]{width:100%;color:#616161}#resume1 .experience .experience-block span.company[data-v-892f1822]{font-weight:700;padding-bottom:5px;padding-top:10px;color:#424242}#resume1 .experience .experience-block span.job-title[data-v-892f1822]{font-style:italic}#resume1 .education-block span[data-v-892f1822]{color:#616161}#resume1 .education-block span.degree[data-v-892f1822]{font-weight:700;padding-bottom:5px;padding-top:10px;color:#424242}#resume1 .skills-other[data-v-892f1822]{color:#616161;margin-bottom:10px}#resume1 .skills[data-v-892f1822]{margin-top:20px;margin-bottom:10px}#resume1 .skills .skill-block[data-v-892f1822]{padding-bottom:10px;display:inline-block}#resume1 .skills .skill-block .skill[data-v-892f1822]{width:100px;color:#616161;float:left}#resume1 .skills .skill-block .skill-bar[data-v-892f1822]{float:right;background:#e0e0e0;overflow:hidden;height:8px;border-radius:3px;margin-top:6.5px;position:relative;width:249px}#resume1 .skills .skill-block .skill-bar .level[data-v-892f1822]{background:#757575;height:100%}#resume3[data-v-233d6d70]{font-family:Open Sans Condensed,sans-serif;padding-bottom:50px}#resume3 a[data-v-233d6d70],#resume3 a[data-v-233d6d70]:focus,#resume3 a[data-v-233d6d70]:hover{color:#000;text-decoration:none}#resume3 h3[data-v-233d6d70]{font-weight:700;text-transform:uppercase;margin-bottom:10px}#resume3 .resume-header .triangle[data-v-233d6d70]{width:0;height:0;border-style:solid;border-width:600px 0 0 1500px;border-color:#006064 transparent transparent;position:absolute;left:-600px;top:0}#resume3 .resume-header .person-header[data-v-233d6d70]{position:absolute;z-index:20;right:15%;top:200px}#resume3 .resume-header .person-header .person-wrapper[data-v-233d6d70]{overflow:hidden;position:relative}#resume3 .resume-header .person-header .img[data-v-233d6d70]{height:100%;width:100px;float:left;position:absolute;top:0;right:0;background:url(/best-resume-ever/static/img/id.087ce5d.jpg);background-position:50%;background-size:cover}#resume3 .resume-header .person-header .person[data-v-233d6d70]{float:right;color:#fff;margin-right:120px}#resume3 .resume-header .person-header .name[data-v-233d6d70]{text-transform:uppercase;font-size:50px;display:table-caption;text-align:right;line-height:1;font-weight:700}#resume3 .resume-header .person-header .position[data-v-233d6d70]{font-size:20px;display:table-caption;text-align:right;line-height:1;margin-top:10px}#resume3 .resume-content[data-v-233d6d70]{margin-top:435px;margin-left:15%;width:70%}#resume3 .resume-content .experience .experience-block[data-v-233d6d70]{line-height:1;margin-bottom:10px}#resume3 .resume-content .experience .experience-block .row[data-v-233d6d70]:first-child{font-size:20px;text-transform:uppercase}#resume3 .resume-content .experience .experience-block .row:first-child i[data-v-233d6d70]{font-size:17px}#resume3 .resume-content .experience .experience-block[data-v-233d6d70]:first-of-type{width:80%}#resume3 .education-block[data-v-233d6d70]{line-height:1;margin-bottom:10px}#resume3 .education-block .row[data-v-233d6d70]:first-child{font-size:20px;text-transform:uppercase}#resume3 .skill-section .skills[data-v-233d6d70]{width:100%}#resume3 .skill-section .skills .skill-block[data-v-233d6d70]{width:50%;float:left}#resume3 .skill-section .skills .skill-block i[data-v-233d6d70]{font-size:17px;margin-right:15px}#resume3 .skill-section .skills .skill-block .skill[data-v-233d6d70]{font-size:20px}#resume3 .skills-other[data-v-233d6d70]{display:inline-block;font-size:20px;margin-top:10px;line-height:1}#resume3 .contact[data-v-233d6d70]{margin-top:50px}#resume3 .contact a[data-v-233d6d70],#resume3 .contact span[data-v-233d6d70]{display:inline-block;font-size:20px;list-style:none;margin-top:0;line-height:1;float:left;padding-left:0;margin-left:0}#resume2[data-v-7a8de726]{font-family:Raleway,sans-serif;padding-bottom:50px}#resume2 a[data-v-7a8de726],#resume2 a[data-v-7a8de726]:focus,#resume2 a[data-v-7a8de726]:hover,#resume2 a[data-v-7a8de726]:visited{text-decoration:none}#resume2 h3[data-v-7a8de726]{text-transform:uppercase;padding-top:0;margin-top:0;letter-spacing:5px;font-weight:400}#resume2 .top-row[data-v-7a8de726]{width:100%;padding-top:100px;padding-bottom:100px}#resume2 .top-row span[data-v-7a8de726]{width:100%;display:block;text-align:center;font-weight:400}#resume2 .top-row span.person-name[data-v-7a8de726]{text-transform:uppercase;font-size:50px;letter-spacing:10px}#resume2 .top-row span.person-position[data-v-7a8de726]{letter-spacing:5px}#resume2 .left-col[data-v-7a8de726]{width:26%;float:left;padding-left:8%;padding-right:4%}#resume2 .left-col .person-image .image-centerer[data-v-7a8de726]{display:flex;justify-content:center;height:auto;overflow:hidden}#resume2 .left-col .person-image .image-centerer .img[data-v-7a8de726]{flex:none;background:url(/best-resume-ever/static/img/id.087ce5d.jpg);background-position:50%;background-size:cover;height:250px;width:100%}#resume2 .left-col .contact h3[data-v-7a8de726]{text-align:center;margin-top:20px}#resume2 .left-col .contact .contact-row[data-v-7a8de726]{text-align:center;letter-spacing:2px;margin-bottom:3px}#resume2 .left-col .contact .contact-row a[data-v-7a8de726]{color:#000}#resume2 .left-col .contact .contact-row[data-v-7a8de726]:first-of-type{margin-top:50px}#resume2 .left-col .contact .contact-row.dots[data-v-7a8de726]{margin-top:20px;margin-bottom:15px;font-size:10px;color:hsla(0,0%,60%,.6)}#resume2 .right-col[data-v-7a8de726]{width:50%;float:right;padding-left:4%;padding-right:8%}#resume2 .right-col .experience-block[data-v-7a8de726]{margin-bottom:10px}#resume2 .right-col .experience-block .row[data-v-7a8de726]:first-child{margin-bottom:3px}#resume2 .right-col .experience-block .row .company[data-v-7a8de726]{text-transform:uppercase;font-size:19px}#resume2 .right-col .experience-block .row .job-title[data-v-7a8de726]{font-size:19px}#resume2 .right-col .education[data-v-7a8de726]{margin-top:50px}#resume2 .right-col .education .education-block[data-v-7a8de726]{margin-bottom:10px}#resume2 .right-col .education .education-block .degree[data-v-7a8de726]{font-size:19px;text-transform:uppercase;margin-bottom:3px}#resume2 .right-col .skills-block[data-v-7a8de726]{margin-top:50px;position:relative}#resume2 .right-col .skills-block .skills[data-v-7a8de726]{margin-bottom:10px;margin-bottom:20px;position:relative;margin-left:auto;margin-right:auto;display:inline-block}#resume2 .right-col .skills-block .skills .skill[data-v-7a8de726]{width:80px;height:80px;border-radius:50%;position:relative;border:1px solid #333;margin:3px;float:left;font-size:13px}#resume2 .right-col .skills-block .skills .skill .skill-name[data-v-7a8de726]{text-align:center;position:absolute;top:50%;transform:translateY(-50%);width:100%}#resume2 .right-col .skills-block .skills .skills-other[data-v-7a8de726]{display:inline-block;width:100%;margin-top:20px}#template[data-v-0dad0972]{box-sizing:border-box;font-family:Open Sans,sans-serif}#template h1[data-v-0dad0972],#template h2[data-v-0dad0972]{margin:0;color:#680568}#template p[data-v-0dad0972]{margin:0;font-size:12px}#template ul li[data-v-0dad0972]{color:#680568;font-size:12px}#template a[data-v-0dad0972]{color:#fff;text-decoration:none}#template .list-item-black[data-v-0dad0972]{color:#000}#template #resume-header[data-v-0dad0972]{color:#fff;height:136px;background-color:purple;box-shadow:inset 0 0 200px #301030;padding:40px 100px 25px}#template #resume-header #header-left[data-v-0dad0972]{width:100%;float:left}#template #resume-header #header-left h1[data-v-0dad0972]{font-size:56px;color:#fff;text-transform:uppercase;line-height:56px}#template #resume-header #header-left h2[data-v-0dad0972]{font-size:22px;color:#fff}#template #resume-header #header-left #info-flex[data-v-0dad0972]{display:flex;margin-top:20px;font-size:14px}#template #resume-header #header-left #info-flex span[data-v-0dad0972]{margin-right:25px}#template #resume-header #header-left #info-flex i[data-v-0dad0972]{margin-right:5px}#template #resume-body[data-v-0dad0972]{padding:40px 100px}#template #resume-body #education-title[data-v-0dad0972],#template #resume-body #experience-title[data-v-0dad0972],#template #resume-body #skills-title[data-v-0dad0972]{font-size:26px;text-transform:uppercase}#template #resume-body .experience[data-v-0dad0972]{margin:10px 0 10px 50px}#template #resume-body .experience ul[data-v-0dad0972]{margin:5px 0 0}#template #resume-body .company[data-v-0dad0972],#template #resume-body .education-description[data-v-0dad0972]{font-size:20px}#template #resume-body .job-info[data-v-0dad0972]{margin-bottom:5px}#template #resume-body .degree[data-v-0dad0972],#template #resume-body .job-title[data-v-0dad0972]{font-weight:700;color:#680568;font-size:16px}#template #resume-body .education-timeperiod[data-v-0dad0972],#template #resume-body .experience-timeperiod[data-v-0dad0972]{font-weight:100;color:#680568;font-size:16px}#template #resume-body .education[data-v-0dad0972]{margin:10px 0 10px 50px}#template #resume-body #skill-list[data-v-0dad0972]{column-count:3;list-style-position:inside}#template #resume-body #skill-list ul li[data-v-0dad0972]{font-size:14px}#template #resume-body #education-container[data-v-0dad0972],#template #resume-body #skills-container[data-v-0dad0972]{margin-top:20px}#template #resume-footer[data-v-0dad0972]{padding:20px 100px;height:135px;background-color:purple;box-shadow:inset 0 0 100px #301030;box-sizing:border-box;position:absolute;bottom:0;width:100%}#template #resume-footer h2[data-v-0dad0972],#template #resume-footer p[data-v-0dad0972]{color:#fff}.spacer[data-v-0dad0972]{width:100%;border-bottom:1px solid #680568;margin:5px 0 10px}#resume2[data-v-5a320576]{font-family:Raleway,sans-serif;padding-bottom:50px;text-align:right;direction:rtl}#resume2 a[data-v-5a320576],#resume2 a[data-v-5a320576]:focus,#resume2 a[data-v-5a320576]:hover,#resume2 a[data-v-5a320576]:visited{text-decoration:none}#resume2 h3[data-v-5a320576]{text-transform:uppercase;padding-top:0;margin-top:0;letter-spacing:5px;font-weight:400}#resume2 .top-row[data-v-5a320576]{width:100%;padding-top:100px;padding-bottom:100px}#resume2 .top-row span[data-v-5a320576]{width:100%;display:block;text-align:center;font-weight:400}#resume2 .top-row span.person-name[data-v-5a320576]{text-transform:uppercase;font-size:50px;letter-spacing:10px}#resume2 .top-row span.person-position[data-v-5a320576]{letter-spacing:5px}#resume2 .right-col[data-v-5a320576]{width:26%;float:right;padding-right:8%;padding-left:4%}#resume2 .right-col .person-image .image-centerer[data-v-5a320576]{display:flex;justify-content:center;height:auto;overflow:hidden}#resume2 .right-col .person-image .image-centerer .img[data-v-5a320576]{flex:none;background:url(/best-resume-ever/static/img/id.087ce5d.jpg);background-position:50%;background-size:cover;height:250px;width:100%}#resume2 .right-col .contact h3[data-v-5a320576]{text-align:center;margin-top:20px}#resume2 .right-col .contact .contact-row[data-v-5a320576]{text-align:center;letter-spacing:2px;margin-bottom:3px}#resume2 .right-col .contact .contact-row a[data-v-5a320576]{color:#000}#resume2 .right-col .contact .contact-row[data-v-5a320576]:first-of-type{margin-top:50px}#resume2 .right-col .contact .contact-row.dots[data-v-5a320576]{margin-top:20px;margin-bottom:15px;font-size:10px;color:hsla(0,0%,60%,.6)}#resume2 .left-col[data-v-5a320576]{width:50%;float:left;padding-right:4%;padding-left:8%}#resume2 .left-col .experience-block[data-v-5a320576]{margin-bottom:10px}#resume2 .left-col .experience-block .row[data-v-5a320576]:first-child{margin-bottom:3px}#resume2 .left-col .experience-block .row .company[data-v-5a320576]{text-transform:uppercase;font-size:19px}#resume2 .left-col .experience-block .row .job-title[data-v-5a320576]{font-size:19px}#resume2 .left-col .education[data-v-5a320576]{margin-top:50px}#resume2 .left-col .education .education-block[data-v-5a320576]{margin-bottom:10px}#resume2 .left-col .education .education-block .degree[data-v-5a320576]{font-size:19px;text-transform:uppercase;margin-bottom:3px}#resume2 .left-col .skills-block[data-v-5a320576]{margin-top:50px;position:relative}#resume2 .left-col .skills-block .skills[data-v-5a320576]{margin-bottom:10px;margin-bottom:20px;position:relative;margin-left:auto;margin-right:auto;display:inline-block}#resume2 .left-col .skills-block .skills .skill[data-v-5a320576]{width:80px;height:80px;border-radius:50%;position:relative;border:1px solid #333;margin:3px;float:right;font-size:13px}#resume2 .left-col .skills-block .skills .skill .skill-name[data-v-5a320576]{text-align:center;position:absolute;top:50%;transform:translateY(-50%);width:100%}#resume2 .left-col .skills-block .skills .skills-other[data-v-5a320576]{display:inline-block;width:100%;margin-top:20px}#resume1[data-v-0b36d5e6]{font-family:Source Sans Pro,sans-serif;font-size:20px;padding-bottom:50px;direction:rtl}#resume1 a[data-v-0b36d5e6],#resume1 a[data-v-0b36d5e6]:focus,#resume1 a[data-v-0b36d5e6]:hover,#resume1 a[data-v-0b36d5e6]:visited{color:#616161}#resume1 h3[data-v-0b36d5e6]{margin-bottom:0}#resume1 span[data-v-0b36d5e6]{display:inline-block}#resume1 .row[data-v-0b36d5e6]{width:100%}#resume1 .half[data-v-0b36d5e6]{width:44%}#resume1 .half.left[data-v-0b36d5e6]{float:left;text-align:right;padding-left:4%;padding-right:2%}#resume1 .half.right[data-v-0b36d5e6]{float:right;text-align:right;padding-right:4%;padding-left:2%}#resume1 .center[data-v-0b36d5e6]{margin-left:auto;margin-right:auto}#resume1 .text-center[data-v-0b36d5e6]{text-align:center}#resume1 .name[data-v-0b36d5e6]{border:1px solid #000;text-transform:uppercase;padding:10px 20px;margin-top:80px;margin-bottom:5px;font-family:Open Sans,sans-serif;font-size:35px;font-weight:600;letter-spacing:10px}#resume1 .position[data-v-0b36d5e6]{text-transform:uppercase;font-family:Open Sans,sans-serif;font-size:smaller;color:#757575;margin-bottom:40px}#resume1 .image[data-v-0b36d5e6]{width:100px;height:100px;margin-top:50px;margin-bottom:50px}#resume1 .image .img[data-v-0b36d5e6]{width:100%;height:100%;border-radius:50%;background-image:url(/best-resume-ever/static/img/id.087ce5d.jpg);background-repeat:none;background-position:50%;background-size:cover}#resume1 .contact[data-v-0b36d5e6]{width:100%}#resume1 .contact table[data-v-0b36d5e6]{text-align:right;float:right;margin-top:5px;color:#616161;font-size:20px}#resume1 .contact table i[data-v-0b36d5e6]{padding:2px;color:#616161}#resume1 .contact table tr td[data-v-0b36d5e6]:nth-child(2){vertical-align:top}#resume1 .experience .experience-block span[data-v-0b36d5e6]{width:100%;color:#616161}#resume1 .experience .experience-block span.company[data-v-0b36d5e6]{font-weight:700;padding-bottom:5px;padding-top:10px;color:#424242}#resume1 .experience .experience-block span.job-title[data-v-0b36d5e6]{font-style:italic}#resume1 .education-block span[data-v-0b36d5e6]{color:#616161}#resume1 .education-block span.degree[data-v-0b36d5e6]{font-weight:700;padding-bottom:5px;padding-top:10px;color:#424242}#resume1 .skills-other[data-v-0b36d5e6]{color:#616161;margin-bottom:10px}#resume1 .skills[data-v-0b36d5e6]{margin-top:20px;margin-bottom:10px;direction:ltr!important}#resume1 .skills .skill-block[data-v-0b36d5e6]{padding-bottom:10px;display:inline-block}#resume1 .skills .skill-block .skill[data-v-0b36d5e6]{width:100px;color:#616161;float:left;text-align:left}#resume1 .skills .skill-block .skill-bar[data-v-0b36d5e6]{float:right;background:#e0e0e0;overflow:hidden;height:8px;border-radius:3px;margin-top:6.5px;position:relative;width:249px}#resume1 .skills .skill-block .skill-bar .level[data-v-0b36d5e6]{background:#757575;height:100%}.resume[data-v-c5510dfe]{display:flex;position:relative;font-family:Roboto!important;font-size:.9em}.left-column[data-v-c5510dfe]{width:30%;text-align:left;color:#fff;color:hsla(0,0%,100%,.59);background-color:#a800fa;z-index:2;opacity:1;position:absolute}.left-column-bg[data-v-c5510dfe],.left-column[data-v-c5510dfe]{height:100%;padding:30px;padding-top:45px;overflow:hidden;display:block}.left-column-bg[data-v-c5510dfe]{background-repeat:no-repeat;background-size:cover;background-position:25% 25%;opacity:.4;width:35%;position:relative;top:0;z-index:1}.right-column[data-v-c5510dfe]{display:flex;flex-direction:column;padding:30px;height:100%;width:65%}a[data-v-c5510dfe]{color:inherit;cursor:pointer;-webkit-text-decoration-line:none;text-decoration-line:none}a[data-v-c5510dfe]:visited{color:inherit}.material-icons[data-v-c5510dfe]{color:#a800fa;position:relative;top:5px}.font-awesome-icons[data-v-c5510dfe]{color:#a800fa;font-size:1.3em;margin-right:6px}.small-icon[data-v-c5510dfe]{top:2.5px;font-size:1.4em}.contact-icon[data-v-c5510dfe]{color:#fff;font-size:1.5em;margin-right:10px;top:2px;position:relative}.contact-icon-svg[data-v-c5510dfe]{margin-top:-2.5px;margin-right:10px;transform:scale(1);top:5px;position:relative}.contact-icon-svg path[data-v-c5510dfe]{fill:#fff}.external-link[data-v-c5510dfe]{display:block;margin-bottom:5px}.block-marged[data-v-c5510dfe]{margin-top:15px;margin-bottom:15px}.multi-line-txt[data-v-c5510dfe]{margin-top:30px;margin-bottom:20px}.social-container[data-v-c5510dfe]{margin-top:30px;margin-bottom:30px}.headline[data-v-c5510dfe]{color:#fff;font-size:1.3em;font-weight:700}.txt-full-white[data-v-c5510dfe]{color:#fff}.uppercase[data-v-c5510dfe]{text-transform:uppercase}.section-headline[data-v-c5510dfe]{color:#a800fa;display:inline-block;font-size:1.2em;margin-left:5px}.section-content[data-v-c5510dfe]{margin-top:10px;padding-left:32px}.section-content__item[data-v-c5510dfe]{display:block;margin-bottom:10px}.section-content__item-grid[data-v-c5510dfe]{flex:1 1 0;margin-bottom:10px;padding-right:10px}.section-content-grid[data-v-c5510dfe]{display:flex;flex-wrap:wrap;justify-content:space-between;margin-top:10px;margin-bottom:10px;padding-left:32px}.grid-item[data-v-c5510dfe]{padding-right:20px}.section-content__header[data-v-c5510dfe]{display:block;font-size:1.1em;font-weight:500}.squarred-grid-item[data-v-c5510dfe]{display:block;border:1px solid #a800fa;background-color:#a800fa;color:#fff;margin-top:5px;padding:5px;transition:.5s}.squarred-grid-item[data-v-c5510dfe]:hover{background-color:transparent;color:#a800fa;transition:.5s}.section-content__subheader[data-v-c5510dfe]{display:block;font-weight:400}.section-content__text[data-v-c5510dfe]{display:block;font-weight:300}.section-content__text--light[data-v-c5510dfe]{color:rgba(0,0,0,.42);font-weight:300}.section-content__header[data-v-c5510dfe],.section-content__subheader[data-v-c5510dfe],.section-content__text--light[data-v-c5510dfe]{line-height:1.5em}.section[data-v-c5510dfe]{margin-top:10px;margin-bottom:10px}.lang-icon[data-v-c5510dfe]{color:rgba(0,0,0,.72);font-size:3em}.lang-icon[data-v-c5510dfe]:hover{color:#a800fa}.hobbies-container[data-v-c5510dfe]{margin-top:30px}.hobbies-content[data-v-c5510dfe]{display:flex;flex-direction:column}.hobby-item[data-v-c5510dfe]{display:grid;grid-template-columns:30px auto;color:hsla(0,0%,100%,.6);margin-right:25px;margin-bottom:10px;transition:.5s}.hobby-item[data-v-c5510dfe]:hover{color:hsla(0,0%,100%,.8);transition:.5s}.hobby-item__icon[data-v-c5510dfe]{font-size:1.3em}.hobby-item__icon-label[data-v-c5510dfe]{top:2.5px;position:relative}.subheadline[data-v-c5510dfe]{color:hsla(0,0%,100%,.8);font-size:1.2em;display:block;margin-bottom:10px}.home[data-v-77812a90]{font-family:Roboto!important}.logo[data-v-77812a90]{text-align:center}.logo img[data-v-77812a90]{height:50px;margin-top:40px}.title[data-v-77812a90]{font-weight:400;text-align:center;width:100%;color:#000;font-weight:300;font-size:30px;line-height:110%;margin:1.78rem 0 1.424rem;margin-top:0;margin-bottom:40px}.previews[data-v-77812a90]{width:90%;margin-right:auto;margin-left:auto}.preview[data-v-77812a90]{width:180px;float:left;margin-left:1.5%;margin-right:1.5%;margin-bottom:1.5%;box-shadow:0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12),0 3px 1px -2px rgba(0,0,0,.2);height:252px;overflow:hidden}.preview-wrapper[data-v-77812a90]{position:relative;background:#fff}.preview img[data-v-77812a90]{width:100%;opacity:.5;filter:blur(1px)}.preview span[data-v-77812a90]{position:absolute;max-width:100%;font-size:24px;font-weight:300;color:rgba(0,0,0,.75);width:100%;text-align:center;display:inline-block;top:50%;transform:translateY(-50%)} \ No newline at end of file diff --git a/docs/static/fonts/Roboto-Black.2a82f89.eot b/docs/static/fonts/Roboto-Black.2a82f89.eot deleted file mode 100644 index fb31517..0000000 Binary files a/docs/static/fonts/Roboto-Black.2a82f89.eot and /dev/null differ diff --git a/docs/static/fonts/Roboto-Black.2b8d692.woff2 b/docs/static/fonts/Roboto-Black.2b8d692.woff2 deleted file mode 100644 index 9559f02..0000000 Binary files a/docs/static/fonts/Roboto-Black.2b8d692.woff2 and /dev/null differ diff --git a/docs/static/fonts/Roboto-Black.313a656.woff b/docs/static/fonts/Roboto-Black.313a656.woff new file mode 100644 index 0000000..b1ddac3 Binary files /dev/null and b/docs/static/fonts/Roboto-Black.313a656.woff differ diff --git a/docs/static/fonts/Roboto-Black.44236ad.ttf b/docs/static/fonts/Roboto-Black.44236ad.ttf deleted file mode 100644 index 8d9864f..0000000 Binary files a/docs/static/fonts/Roboto-Black.44236ad.ttf and /dev/null differ diff --git a/docs/static/fonts/Roboto-Black.4c3b622.woff b/docs/static/fonts/Roboto-Black.4c3b622.woff deleted file mode 100644 index 9b72779..0000000 Binary files a/docs/static/fonts/Roboto-Black.4c3b622.woff and /dev/null differ diff --git a/docs/static/fonts/Roboto-Black.59eb360.woff2 b/docs/static/fonts/Roboto-Black.59eb360.woff2 new file mode 100644 index 0000000..41186d0 Binary files /dev/null and b/docs/static/fonts/Roboto-Black.59eb360.woff2 differ diff --git a/docs/static/fonts/Roboto-Black.b8ff9b5.eot b/docs/static/fonts/Roboto-Black.b8ff9b5.eot new file mode 100644 index 0000000..62675df Binary files /dev/null and b/docs/static/fonts/Roboto-Black.b8ff9b5.eot differ diff --git a/docs/static/fonts/Roboto-Black.ec4c996.ttf b/docs/static/fonts/Roboto-Black.ec4c996.ttf new file mode 100644 index 0000000..689fe5c Binary files /dev/null and b/docs/static/fonts/Roboto-Black.ec4c996.ttf differ diff --git a/docs/static/fonts/Roboto-BlackItalic.38d14dd.woff2 b/docs/static/fonts/Roboto-BlackItalic.38d14dd.woff2 deleted file mode 100644 index 5cb417b..0000000 Binary files a/docs/static/fonts/Roboto-BlackItalic.38d14dd.woff2 and /dev/null differ diff --git a/docs/static/fonts/Roboto-BlackItalic.3a99796.woff b/docs/static/fonts/Roboto-BlackItalic.3a99796.woff deleted file mode 100644 index 609bdf4..0000000 Binary files a/docs/static/fonts/Roboto-BlackItalic.3a99796.woff and /dev/null differ diff --git a/docs/static/fonts/Roboto-BlackItalic.4b7407c.eot b/docs/static/fonts/Roboto-BlackItalic.4b7407c.eot deleted file mode 100644 index c662a37..0000000 Binary files a/docs/static/fonts/Roboto-BlackItalic.4b7407c.eot and /dev/null differ diff --git a/docs/static/fonts/Roboto-BlackItalic.50705c5.ttf b/docs/static/fonts/Roboto-BlackItalic.50705c5.ttf new file mode 100644 index 0000000..0b4e0ee Binary files /dev/null and b/docs/static/fonts/Roboto-BlackItalic.50705c5.ttf differ diff --git a/docs/static/fonts/Roboto-BlackItalic.ad0f284.ttf b/docs/static/fonts/Roboto-BlackItalic.ad0f284.ttf deleted file mode 100644 index f699cf5..0000000 Binary files a/docs/static/fonts/Roboto-BlackItalic.ad0f284.ttf and /dev/null differ diff --git a/docs/static/fonts/Roboto-BlackItalic.b283ac9.eot b/docs/static/fonts/Roboto-BlackItalic.b283ac9.eot new file mode 100644 index 0000000..5456030 Binary files /dev/null and b/docs/static/fonts/Roboto-BlackItalic.b283ac9.eot differ diff --git a/docs/static/fonts/Roboto-BlackItalic.cc2fadc.woff b/docs/static/fonts/Roboto-BlackItalic.cc2fadc.woff new file mode 100644 index 0000000..b97efea Binary files /dev/null and b/docs/static/fonts/Roboto-BlackItalic.cc2fadc.woff differ diff --git a/docs/static/fonts/Roboto-BlackItalic.f75569f.woff2 b/docs/static/fonts/Roboto-BlackItalic.f75569f.woff2 new file mode 100644 index 0000000..df3c3f4 Binary files /dev/null and b/docs/static/fonts/Roboto-BlackItalic.f75569f.woff2 differ diff --git a/docs/static/fonts/Roboto-Bold.50d75e4.woff b/docs/static/fonts/Roboto-Bold.50d75e4.woff new file mode 100644 index 0000000..6e0f562 Binary files /dev/null and b/docs/static/fonts/Roboto-Bold.50d75e4.woff differ diff --git a/docs/static/fonts/Roboto-Bold.56a76a2.ttf b/docs/static/fonts/Roboto-Bold.56a76a2.ttf deleted file mode 100644 index 865ddca..0000000 Binary files a/docs/static/fonts/Roboto-Bold.56a76a2.ttf and /dev/null differ diff --git a/docs/static/fonts/Roboto-Bold.7345066.eot b/docs/static/fonts/Roboto-Bold.7345066.eot new file mode 100644 index 0000000..a16d592 Binary files /dev/null and b/docs/static/fonts/Roboto-Bold.7345066.eot differ diff --git a/docs/static/fonts/Roboto-Bold.ab96cca.woff2 b/docs/static/fonts/Roboto-Bold.ab96cca.woff2 deleted file mode 100644 index 715ac19..0000000 Binary files a/docs/static/fonts/Roboto-Bold.ab96cca.woff2 and /dev/null differ diff --git a/docs/static/fonts/Roboto-Bold.ad140ff.woff b/docs/static/fonts/Roboto-Bold.ad140ff.woff deleted file mode 100644 index 93a1d5a..0000000 Binary files a/docs/static/fonts/Roboto-Bold.ad140ff.woff and /dev/null differ diff --git a/docs/static/fonts/Roboto-Bold.b52fac2.woff2 b/docs/static/fonts/Roboto-Bold.b52fac2.woff2 new file mode 100644 index 0000000..76817cc Binary files /dev/null and b/docs/static/fonts/Roboto-Bold.b52fac2.woff2 differ diff --git a/docs/static/fonts/Roboto-Bold.c8bcb1c.eot b/docs/static/fonts/Roboto-Bold.c8bcb1c.eot deleted file mode 100644 index e492f62..0000000 Binary files a/docs/static/fonts/Roboto-Bold.c8bcb1c.eot and /dev/null differ diff --git a/docs/static/fonts/Roboto-Bold.ee7b96f.ttf b/docs/static/fonts/Roboto-Bold.ee7b96f.ttf new file mode 100644 index 0000000..d3f01ad Binary files /dev/null and b/docs/static/fonts/Roboto-Bold.ee7b96f.ttf differ diff --git a/docs/static/fonts/Roboto-BoldItalic.1eb7a89.ttf b/docs/static/fonts/Roboto-BoldItalic.1eb7a89.ttf new file mode 100644 index 0000000..41cc1e7 Binary files /dev/null and b/docs/static/fonts/Roboto-BoldItalic.1eb7a89.ttf differ diff --git a/docs/static/fonts/Roboto-BoldItalic.355e388.woff2 b/docs/static/fonts/Roboto-BoldItalic.355e388.woff2 deleted file mode 100644 index c91e0f8..0000000 Binary files a/docs/static/fonts/Roboto-BoldItalic.355e388.woff2 and /dev/null differ diff --git a/docs/static/fonts/Roboto-BoldItalic.4b2cc52.eot b/docs/static/fonts/Roboto-BoldItalic.4b2cc52.eot deleted file mode 100644 index 488eda5..0000000 Binary files a/docs/static/fonts/Roboto-BoldItalic.4b2cc52.eot and /dev/null differ diff --git a/docs/static/fonts/Roboto-BoldItalic.4fe0f73.woff b/docs/static/fonts/Roboto-BoldItalic.4fe0f73.woff new file mode 100644 index 0000000..ea90d71 Binary files /dev/null and b/docs/static/fonts/Roboto-BoldItalic.4fe0f73.woff differ diff --git a/docs/static/fonts/Roboto-BoldItalic.94008e6.woff2 b/docs/static/fonts/Roboto-BoldItalic.94008e6.woff2 new file mode 100644 index 0000000..45c9ef7 Binary files /dev/null and b/docs/static/fonts/Roboto-BoldItalic.94008e6.woff2 differ diff --git a/docs/static/fonts/Roboto-BoldItalic.a7dce23.woff b/docs/static/fonts/Roboto-BoldItalic.a7dce23.woff deleted file mode 100644 index f1d7598..0000000 Binary files a/docs/static/fonts/Roboto-BoldItalic.a7dce23.woff and /dev/null differ diff --git a/docs/static/fonts/Roboto-BoldItalic.cd56bcf.eot b/docs/static/fonts/Roboto-BoldItalic.cd56bcf.eot new file mode 100644 index 0000000..08a0091 Binary files /dev/null and b/docs/static/fonts/Roboto-BoldItalic.cd56bcf.eot differ diff --git a/docs/static/fonts/Roboto-BoldItalic.d23d5bd.ttf b/docs/static/fonts/Roboto-BoldItalic.d23d5bd.ttf deleted file mode 100644 index a4aa1a7..0000000 Binary files a/docs/static/fonts/Roboto-BoldItalic.d23d5bd.ttf and /dev/null differ diff --git a/docs/static/fonts/Roboto-Light.020877f.eot b/docs/static/fonts/Roboto-Light.020877f.eot new file mode 100644 index 0000000..3c72107 Binary files /dev/null and b/docs/static/fonts/Roboto-Light.020877f.eot differ diff --git a/docs/static/fonts/Roboto-Light.1830791.eot b/docs/static/fonts/Roboto-Light.1830791.eot deleted file mode 100644 index 02efb7f..0000000 Binary files a/docs/static/fonts/Roboto-Light.1830791.eot and /dev/null differ diff --git a/docs/static/fonts/Roboto-Light.37fbbba.woff b/docs/static/fonts/Roboto-Light.37fbbba.woff deleted file mode 100644 index 404afba..0000000 Binary files a/docs/static/fonts/Roboto-Light.37fbbba.woff and /dev/null differ diff --git a/docs/static/fonts/Roboto-Light.8e0860f.woff2 b/docs/static/fonts/Roboto-Light.8e0860f.woff2 deleted file mode 100644 index 5f26201..0000000 Binary files a/docs/static/fonts/Roboto-Light.8e0860f.woff2 and /dev/null differ diff --git a/docs/static/fonts/Roboto-Light.a2b8c64.ttf b/docs/static/fonts/Roboto-Light.a2b8c64.ttf deleted file mode 100644 index 67194b5..0000000 Binary files a/docs/static/fonts/Roboto-Light.a2b8c64.ttf and /dev/null differ diff --git a/docs/static/fonts/Roboto-Light.c73eb1c.woff b/docs/static/fonts/Roboto-Light.c73eb1c.woff new file mode 100644 index 0000000..b9e9918 Binary files /dev/null and b/docs/static/fonts/Roboto-Light.c73eb1c.woff differ diff --git a/docs/static/fonts/Roboto-Light.d26871e.woff2 b/docs/static/fonts/Roboto-Light.d26871e.woff2 new file mode 100644 index 0000000..ddbf4a9 Binary files /dev/null and b/docs/static/fonts/Roboto-Light.d26871e.woff2 differ diff --git a/docs/static/fonts/Roboto-Light.fc84e99.ttf b/docs/static/fonts/Roboto-Light.fc84e99.ttf new file mode 100644 index 0000000..219063a Binary files /dev/null and b/docs/static/fonts/Roboto-Light.fc84e99.ttf differ diff --git a/docs/static/fonts/Roboto-LightItalic.056caea.ttf b/docs/static/fonts/Roboto-LightItalic.056caea.ttf deleted file mode 100644 index 8c36d0d..0000000 Binary files a/docs/static/fonts/Roboto-LightItalic.056caea.ttf and /dev/null differ diff --git a/docs/static/fonts/Roboto-LightItalic.13efe6c.woff b/docs/static/fonts/Roboto-LightItalic.13efe6c.woff new file mode 100644 index 0000000..329ec9b Binary files /dev/null and b/docs/static/fonts/Roboto-LightItalic.13efe6c.woff differ diff --git a/docs/static/fonts/Roboto-LightItalic.76ce6e2.eot b/docs/static/fonts/Roboto-LightItalic.76ce6e2.eot new file mode 100644 index 0000000..8bab141 Binary files /dev/null and b/docs/static/fonts/Roboto-LightItalic.76ce6e2.eot differ diff --git a/docs/static/fonts/Roboto-LightItalic.879d940.woff2 b/docs/static/fonts/Roboto-LightItalic.879d940.woff2 deleted file mode 100644 index 5fa7eed..0000000 Binary files a/docs/static/fonts/Roboto-LightItalic.879d940.woff2 and /dev/null differ diff --git a/docs/static/fonts/Roboto-LightItalic.c7b4e74.woff b/docs/static/fonts/Roboto-LightItalic.c7b4e74.woff deleted file mode 100644 index 07117c5..0000000 Binary files a/docs/static/fonts/Roboto-LightItalic.c7b4e74.woff and /dev/null differ diff --git a/docs/static/fonts/Roboto-LightItalic.cdd1c48.eot b/docs/static/fonts/Roboto-LightItalic.cdd1c48.eot deleted file mode 100644 index 1d10a9a..0000000 Binary files a/docs/static/fonts/Roboto-LightItalic.cdd1c48.eot and /dev/null differ diff --git a/docs/static/fonts/Roboto-LightItalic.d1efcd4.ttf b/docs/static/fonts/Roboto-LightItalic.d1efcd4.ttf new file mode 100644 index 0000000..0e81e87 Binary files /dev/null and b/docs/static/fonts/Roboto-LightItalic.d1efcd4.ttf differ diff --git a/docs/static/fonts/Roboto-LightItalic.e8eaae9.woff2 b/docs/static/fonts/Roboto-LightItalic.e8eaae9.woff2 new file mode 100644 index 0000000..ba70c2a Binary files /dev/null and b/docs/static/fonts/Roboto-LightItalic.e8eaae9.woff2 differ diff --git a/docs/static/fonts/Roboto-Medium.1d65948.woff b/docs/static/fonts/Roboto-Medium.1d65948.woff new file mode 100644 index 0000000..005e928 Binary files /dev/null and b/docs/static/fonts/Roboto-Medium.1d65948.woff differ diff --git a/docs/static/fonts/Roboto-Medium.2741a14.woff2 b/docs/static/fonts/Roboto-Medium.2741a14.woff2 deleted file mode 100644 index f9f6913..0000000 Binary files a/docs/static/fonts/Roboto-Medium.2741a14.woff2 and /dev/null differ diff --git a/docs/static/fonts/Roboto-Medium.303ded6.woff b/docs/static/fonts/Roboto-Medium.303ded6.woff deleted file mode 100644 index b18e6b8..0000000 Binary files a/docs/static/fonts/Roboto-Medium.303ded6.woff and /dev/null differ diff --git a/docs/static/fonts/Roboto-Medium.76cad5b.eot b/docs/static/fonts/Roboto-Medium.76cad5b.eot deleted file mode 100644 index af87147..0000000 Binary files a/docs/static/fonts/Roboto-Medium.76cad5b.eot and /dev/null differ diff --git a/docs/static/fonts/Roboto-Medium.90d1676.woff2 b/docs/static/fonts/Roboto-Medium.90d1676.woff2 new file mode 100644 index 0000000..6a88805 Binary files /dev/null and b/docs/static/fonts/Roboto-Medium.90d1676.woff2 differ diff --git a/docs/static/fonts/Roboto-Medium.a7943c3.eot b/docs/static/fonts/Roboto-Medium.a7943c3.eot new file mode 100644 index 0000000..9e30b51 Binary files /dev/null and b/docs/static/fonts/Roboto-Medium.a7943c3.eot differ diff --git a/docs/static/fonts/Roboto-Medium.c54f2a3.ttf b/docs/static/fonts/Roboto-Medium.c54f2a3.ttf deleted file mode 100644 index a3c8563..0000000 Binary files a/docs/static/fonts/Roboto-Medium.c54f2a3.ttf and /dev/null differ diff --git a/docs/static/fonts/Roboto-Medium.d088405.ttf b/docs/static/fonts/Roboto-Medium.d088405.ttf new file mode 100644 index 0000000..1a7f3b0 Binary files /dev/null and b/docs/static/fonts/Roboto-Medium.d088405.ttf differ diff --git a/docs/static/fonts/Roboto-MediumItalic.13ec0eb.woff2 b/docs/static/fonts/Roboto-MediumItalic.13ec0eb.woff2 new file mode 100644 index 0000000..cf21729 Binary files /dev/null and b/docs/static/fonts/Roboto-MediumItalic.13ec0eb.woff2 differ diff --git a/docs/static/fonts/Roboto-MediumItalic.7a49ce7.eot b/docs/static/fonts/Roboto-MediumItalic.7a49ce7.eot deleted file mode 100644 index 5af9e15..0000000 Binary files a/docs/static/fonts/Roboto-MediumItalic.7a49ce7.eot and /dev/null differ diff --git a/docs/static/fonts/Roboto-MediumItalic.83e114c.woff b/docs/static/fonts/Roboto-MediumItalic.83e114c.woff new file mode 100644 index 0000000..01eba14 Binary files /dev/null and b/docs/static/fonts/Roboto-MediumItalic.83e114c.woff differ diff --git a/docs/static/fonts/Roboto-MediumItalic.91f50d0.eot b/docs/static/fonts/Roboto-MediumItalic.91f50d0.eot new file mode 100644 index 0000000..903c4f5 Binary files /dev/null and b/docs/static/fonts/Roboto-MediumItalic.91f50d0.eot differ diff --git a/docs/static/fonts/Roboto-MediumItalic.bd19ad6.ttf b/docs/static/fonts/Roboto-MediumItalic.bd19ad6.ttf new file mode 100644 index 0000000..0030295 Binary files /dev/null and b/docs/static/fonts/Roboto-MediumItalic.bd19ad6.ttf differ diff --git a/docs/static/fonts/Roboto-MediumItalic.da059a7.woff b/docs/static/fonts/Roboto-MediumItalic.da059a7.woff deleted file mode 100644 index 2be7d89..0000000 Binary files a/docs/static/fonts/Roboto-MediumItalic.da059a7.woff and /dev/null differ diff --git a/docs/static/fonts/Roboto-MediumItalic.f10d1f4.woff2 b/docs/static/fonts/Roboto-MediumItalic.f10d1f4.woff2 deleted file mode 100644 index 9b7b828..0000000 Binary files a/docs/static/fonts/Roboto-MediumItalic.f10d1f4.woff2 and /dev/null differ diff --git a/docs/static/fonts/Roboto-MediumItalic.fa18335.ttf b/docs/static/fonts/Roboto-MediumItalic.fa18335.ttf deleted file mode 100644 index 5976a8b..0000000 Binary files a/docs/static/fonts/Roboto-MediumItalic.fa18335.ttf and /dev/null differ diff --git a/docs/static/fonts/Roboto-Regular.081b11e.woff b/docs/static/fonts/Roboto-Regular.081b11e.woff deleted file mode 100644 index 2f53e7c..0000000 Binary files a/docs/static/fonts/Roboto-Regular.081b11e.woff and /dev/null differ diff --git a/docs/static/fonts/Roboto-Regular.35b07eb.woff b/docs/static/fonts/Roboto-Regular.35b07eb.woff new file mode 100644 index 0000000..96c1986 Binary files /dev/null and b/docs/static/fonts/Roboto-Regular.35b07eb.woff differ diff --git a/docs/static/fonts/Roboto-Regular.3e1af3e.ttf b/docs/static/fonts/Roboto-Regular.3e1af3e.ttf new file mode 100644 index 0000000..2c97eea Binary files /dev/null and b/docs/static/fonts/Roboto-Regular.3e1af3e.ttf differ diff --git a/docs/static/fonts/Roboto-Regular.6866c2b.eot b/docs/static/fonts/Roboto-Regular.6866c2b.eot new file mode 100644 index 0000000..16cb276 Binary files /dev/null and b/docs/static/fonts/Roboto-Regular.6866c2b.eot differ diff --git a/docs/static/fonts/Roboto-Regular.6a561d6.eot b/docs/static/fonts/Roboto-Regular.6a561d6.eot deleted file mode 100644 index 88d74e2..0000000 Binary files a/docs/static/fonts/Roboto-Regular.6a561d6.eot and /dev/null differ diff --git a/docs/static/fonts/Roboto-Regular.73f0a88.woff2 b/docs/static/fonts/Roboto-Regular.73f0a88.woff2 new file mode 100644 index 0000000..9a0064e Binary files /dev/null and b/docs/static/fonts/Roboto-Regular.73f0a88.woff2 differ diff --git a/docs/static/fonts/Roboto-Regular.99b14f0.ttf b/docs/static/fonts/Roboto-Regular.99b14f0.ttf deleted file mode 100644 index bcaeba1..0000000 Binary files a/docs/static/fonts/Roboto-Regular.99b14f0.ttf and /dev/null differ diff --git a/docs/static/fonts/Roboto-Regular.b2a6341.woff2 b/docs/static/fonts/Roboto-Regular.b2a6341.woff2 deleted file mode 100644 index 1d1539e..0000000 Binary files a/docs/static/fonts/Roboto-Regular.b2a6341.woff2 and /dev/null differ diff --git a/docs/static/fonts/Roboto-RegularItalic.35e55b1.eot b/docs/static/fonts/Roboto-RegularItalic.35e55b1.eot new file mode 100644 index 0000000..92fb91b Binary files /dev/null and b/docs/static/fonts/Roboto-RegularItalic.35e55b1.eot differ diff --git a/docs/static/fonts/Roboto-RegularItalic.42bbe4e.ttf b/docs/static/fonts/Roboto-RegularItalic.42bbe4e.ttf new file mode 100644 index 0000000..6a1cee5 Binary files /dev/null and b/docs/static/fonts/Roboto-RegularItalic.42bbe4e.ttf differ diff --git a/docs/static/fonts/Roboto-RegularItalic.4357beb.woff2 b/docs/static/fonts/Roboto-RegularItalic.4357beb.woff2 new file mode 100644 index 0000000..e7f173b Binary files /dev/null and b/docs/static/fonts/Roboto-RegularItalic.4357beb.woff2 differ diff --git a/docs/static/fonts/Roboto-RegularItalic.8add1ba.woff b/docs/static/fonts/Roboto-RegularItalic.8add1ba.woff deleted file mode 100644 index 60f95dd..0000000 Binary files a/docs/static/fonts/Roboto-RegularItalic.8add1ba.woff and /dev/null differ diff --git a/docs/static/fonts/Roboto-RegularItalic.90dbf90.ttf b/docs/static/fonts/Roboto-RegularItalic.90dbf90.ttf deleted file mode 100644 index df9dac5..0000000 Binary files a/docs/static/fonts/Roboto-RegularItalic.90dbf90.ttf and /dev/null differ diff --git a/docs/static/fonts/Roboto-RegularItalic.df8e3a9.woff2 b/docs/static/fonts/Roboto-RegularItalic.df8e3a9.woff2 deleted file mode 100644 index 75495c3..0000000 Binary files a/docs/static/fonts/Roboto-RegularItalic.df8e3a9.woff2 and /dev/null differ diff --git a/docs/static/fonts/Roboto-RegularItalic.f3660f4.eot b/docs/static/fonts/Roboto-RegularItalic.f3660f4.eot deleted file mode 100644 index 9979e49..0000000 Binary files a/docs/static/fonts/Roboto-RegularItalic.f3660f4.eot and /dev/null differ diff --git a/docs/static/fonts/Roboto-RegularItalic.f5902d5.woff b/docs/static/fonts/Roboto-RegularItalic.f5902d5.woff new file mode 100644 index 0000000..818233d Binary files /dev/null and b/docs/static/fonts/Roboto-RegularItalic.f5902d5.woff differ diff --git a/docs/static/fonts/Roboto-Thin.790ebf4.woff2 b/docs/static/fonts/Roboto-Thin.790ebf4.woff2 deleted file mode 100644 index a26400d..0000000 Binary files a/docs/static/fonts/Roboto-Thin.790ebf4.woff2 and /dev/null differ diff --git a/docs/static/fonts/Roboto-Thin.89e2666.ttf b/docs/static/fonts/Roboto-Thin.89e2666.ttf new file mode 100644 index 0000000..b74a4fd Binary files /dev/null and b/docs/static/fonts/Roboto-Thin.89e2666.ttf differ diff --git a/docs/static/fonts/Roboto-Thin.90d3804.woff b/docs/static/fonts/Roboto-Thin.90d3804.woff deleted file mode 100644 index e115692..0000000 Binary files a/docs/static/fonts/Roboto-Thin.90d3804.woff and /dev/null differ diff --git a/docs/static/fonts/Roboto-Thin.9b2ed84.eot b/docs/static/fonts/Roboto-Thin.9b2ed84.eot new file mode 100644 index 0000000..940823f Binary files /dev/null and b/docs/static/fonts/Roboto-Thin.9b2ed84.eot differ diff --git a/docs/static/fonts/Roboto-Thin.ad538a6.woff2 b/docs/static/fonts/Roboto-Thin.ad538a6.woff2 new file mode 100644 index 0000000..2fb9b5f Binary files /dev/null and b/docs/static/fonts/Roboto-Thin.ad538a6.woff2 differ diff --git a/docs/static/fonts/Roboto-Thin.c25fd8d.eot b/docs/static/fonts/Roboto-Thin.c25fd8d.eot deleted file mode 100644 index 7cfb5ad..0000000 Binary files a/docs/static/fonts/Roboto-Thin.c25fd8d.eot and /dev/null differ diff --git a/docs/static/fonts/Roboto-Thin.cc85ce3.ttf b/docs/static/fonts/Roboto-Thin.cc85ce3.ttf deleted file mode 100644 index 883f769..0000000 Binary files a/docs/static/fonts/Roboto-Thin.cc85ce3.ttf and /dev/null differ diff --git a/docs/static/fonts/Roboto-Thin.d3b4737.woff b/docs/static/fonts/Roboto-Thin.d3b4737.woff new file mode 100644 index 0000000..e1cee8f Binary files /dev/null and b/docs/static/fonts/Roboto-Thin.d3b4737.woff differ diff --git a/docs/static/fonts/Roboto-ThinItalic.0fc2538.ttf b/docs/static/fonts/Roboto-ThinItalic.0fc2538.ttf new file mode 100644 index 0000000..dd0ddb8 Binary files /dev/null and b/docs/static/fonts/Roboto-ThinItalic.0fc2538.ttf differ diff --git a/docs/static/fonts/Roboto-ThinItalic.11b5cc9.ttf b/docs/static/fonts/Roboto-ThinItalic.11b5cc9.ttf deleted file mode 100644 index 17066fe..0000000 Binary files a/docs/static/fonts/Roboto-ThinItalic.11b5cc9.ttf and /dev/null differ diff --git a/docs/static/fonts/Roboto-ThinItalic.5882932.woff b/docs/static/fonts/Roboto-ThinItalic.5882932.woff deleted file mode 100644 index eab0271..0000000 Binary files a/docs/static/fonts/Roboto-ThinItalic.5882932.woff and /dev/null differ diff --git a/docs/static/fonts/Roboto-ThinItalic.5b4a33e.woff2 b/docs/static/fonts/Roboto-ThinItalic.5b4a33e.woff2 new file mode 100644 index 0000000..67c4240 Binary files /dev/null and b/docs/static/fonts/Roboto-ThinItalic.5b4a33e.woff2 differ diff --git a/docs/static/fonts/Roboto-ThinItalic.64ca718.eot b/docs/static/fonts/Roboto-ThinItalic.64ca718.eot deleted file mode 100644 index 4dc3e5b..0000000 Binary files a/docs/static/fonts/Roboto-ThinItalic.64ca718.eot and /dev/null differ diff --git a/docs/static/fonts/Roboto-ThinItalic.8a2c1a5.woff2 b/docs/static/fonts/Roboto-ThinItalic.8a2c1a5.woff2 deleted file mode 100644 index f00aafc..0000000 Binary files a/docs/static/fonts/Roboto-ThinItalic.8a2c1a5.woff2 and /dev/null differ diff --git a/docs/static/fonts/Roboto-ThinItalic.8a96edb.woff b/docs/static/fonts/Roboto-ThinItalic.8a96edb.woff new file mode 100644 index 0000000..d337378 Binary files /dev/null and b/docs/static/fonts/Roboto-ThinItalic.8a96edb.woff differ diff --git a/docs/static/fonts/Roboto-ThinItalic.f30a27a.eot b/docs/static/fonts/Roboto-ThinItalic.f30a27a.eot new file mode 100644 index 0000000..a61a6ae Binary files /dev/null and b/docs/static/fonts/Roboto-ThinItalic.f30a27a.eot differ diff --git a/docs/static/img/Roboto-Black.9c4bede.svg b/docs/static/img/Roboto-Black.9c4bede.svg new file mode 100644 index 0000000..9efdf4e --- /dev/null +++ b/docs/static/img/Roboto-Black.9c4bede.svg @@ -0,0 +1,302 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/static/img/Roboto-Black.ab04c76.svg b/docs/static/img/Roboto-Black.ab04c76.svg deleted file mode 100644 index dbfd08f..0000000 --- a/docs/static/img/Roboto-Black.ab04c76.svg +++ /dev/null @@ -1,10968 +0,0 @@ - - - - -Created by FontForge 20150102 at Thu Feb 26 00:52:08 2015 - By uniteet7 -Copyright 2011 Google Inc. All Rights Reserved. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docs/static/img/Roboto-BlackItalic.1f37c75.svg b/docs/static/img/Roboto-BlackItalic.1f37c75.svg deleted file mode 100644 index b500fec..0000000 --- a/docs/static/img/Roboto-BlackItalic.1f37c75.svg +++ /dev/null @@ -1,11086 +0,0 @@ - - - - -Created by FontForge 20150102 at Thu Feb 26 01:19:32 2015 - By uniteet7 -Copyright 2011 Google Inc. All Rights Reserved. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docs/static/img/Roboto-BlackItalic.9ede86e.svg b/docs/static/img/Roboto-BlackItalic.9ede86e.svg new file mode 100644 index 0000000..f8f5ab3 --- /dev/null +++ b/docs/static/img/Roboto-BlackItalic.9ede86e.svg @@ -0,0 +1,324 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/static/img/Roboto-Bold.57888be.svg b/docs/static/img/Roboto-Bold.57888be.svg new file mode 100644 index 0000000..11db87d --- /dev/null +++ b/docs/static/img/Roboto-Bold.57888be.svg @@ -0,0 +1,309 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/static/img/Roboto-Bold.c7f4667.svg b/docs/static/img/Roboto-Bold.c7f4667.svg deleted file mode 100644 index c1905d2..0000000 --- a/docs/static/img/Roboto-Bold.c7f4667.svg +++ /dev/null @@ -1,11010 +0,0 @@ - - - - -Created by FontForge 20150102 at Thu Feb 26 01:20:37 2015 - By uniteet7 -Copyright 2011 Google Inc. All Rights Reserved. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docs/static/img/Roboto-BoldItalic.4466317.svg b/docs/static/img/Roboto-BoldItalic.4466317.svg new file mode 100644 index 0000000..050bee0 --- /dev/null +++ b/docs/static/img/Roboto-BoldItalic.4466317.svg @@ -0,0 +1,325 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/static/img/Roboto-BoldItalic.c2e0f75.svg b/docs/static/img/Roboto-BoldItalic.c2e0f75.svg deleted file mode 100644 index b534969..0000000 --- a/docs/static/img/Roboto-BoldItalic.c2e0f75.svg +++ /dev/null @@ -1,11096 +0,0 @@ - - - - -Created by FontForge 20150102 at Thu Feb 26 01:23:09 2015 - By uniteet7 -Copyright 2011 Google Inc. All Rights Reserved. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docs/static/img/Roboto-Light.054fa50.svg b/docs/static/img/Roboto-Light.054fa50.svg deleted file mode 100644 index 204d813..0000000 --- a/docs/static/img/Roboto-Light.054fa50.svg +++ /dev/null @@ -1,10564 +0,0 @@ - - - - -Created by FontForge 20150102 at Thu Feb 26 01:24:10 2015 - By uniteet7 -Copyright 2011 Google Inc. All Rights Reserved. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docs/static/img/Roboto-Light.dd0bea1.svg b/docs/static/img/Roboto-Light.dd0bea1.svg new file mode 100644 index 0000000..4ded944 --- /dev/null +++ b/docs/static/img/Roboto-Light.dd0bea1.svg @@ -0,0 +1,312 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/static/img/Roboto-LightItalic.1a9e39e.svg b/docs/static/img/Roboto-LightItalic.1a9e39e.svg deleted file mode 100644 index 71edb52..0000000 --- a/docs/static/img/Roboto-LightItalic.1a9e39e.svg +++ /dev/null @@ -1,10646 +0,0 @@ - - - - -Created by FontForge 20150102 at Thu Feb 26 01:24:27 2015 - By uniteet7 -Copyright 2011 Google Inc. All Rights Reserved. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docs/static/img/Roboto-LightItalic.f8b0d5a.svg b/docs/static/img/Roboto-LightItalic.f8b0d5a.svg new file mode 100644 index 0000000..758402b --- /dev/null +++ b/docs/static/img/Roboto-LightItalic.f8b0d5a.svg @@ -0,0 +1,329 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/static/img/Roboto-Medium.2b4f394.svg b/docs/static/img/Roboto-Medium.2b4f394.svg deleted file mode 100644 index cf0f501..0000000 --- a/docs/static/img/Roboto-Medium.2b4f394.svg +++ /dev/null @@ -1,10999 +0,0 @@ - - - - -Created by FontForge 20150102 at Thu Feb 26 01:24:41 2015 - By uniteet7 -Copyright 2011 Google Inc. All Rights Reserved. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docs/static/img/Roboto-Medium.95204ac.svg b/docs/static/img/Roboto-Medium.95204ac.svg new file mode 100644 index 0000000..67eecf4 --- /dev/null +++ b/docs/static/img/Roboto-Medium.95204ac.svg @@ -0,0 +1,305 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/static/img/Roboto-MediumItalic.b5bd232.svg b/docs/static/img/Roboto-MediumItalic.b5bd232.svg new file mode 100644 index 0000000..bed50dc --- /dev/null +++ b/docs/static/img/Roboto-MediumItalic.b5bd232.svg @@ -0,0 +1,326 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/static/img/Roboto-MediumItalic.eb65fb1.svg b/docs/static/img/Roboto-MediumItalic.eb65fb1.svg deleted file mode 100644 index 2bc277f..0000000 --- a/docs/static/img/Roboto-MediumItalic.eb65fb1.svg +++ /dev/null @@ -1,11100 +0,0 @@ - - - - -Created by FontForge 20150102 at Thu Feb 26 01:24:52 2015 - By uniteet7 -Copyright 2011 Google Inc. All Rights Reserved. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docs/static/img/Roboto-Regular.766c892.svg b/docs/static/img/Roboto-Regular.766c892.svg deleted file mode 100644 index c852d0e..0000000 --- a/docs/static/img/Roboto-Regular.766c892.svg +++ /dev/null @@ -1,10520 +0,0 @@ - - - - -Created by FontForge 20150102 at Thu Feb 26 01:25:42 2015 - By uniteet7 -Copyright 2011 Google Inc. All Rights Reserved. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docs/static/img/Roboto-Regular.8681f43.svg b/docs/static/img/Roboto-Regular.8681f43.svg new file mode 100644 index 0000000..627f5a3 --- /dev/null +++ b/docs/static/img/Roboto-Regular.8681f43.svg @@ -0,0 +1,308 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/static/img/Roboto-RegularItalic.39c358e.svg b/docs/static/img/Roboto-RegularItalic.39c358e.svg new file mode 100644 index 0000000..4d59797 --- /dev/null +++ b/docs/static/img/Roboto-RegularItalic.39c358e.svg @@ -0,0 +1,323 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/static/img/Roboto-RegularItalic.527502d.svg b/docs/static/img/Roboto-RegularItalic.527502d.svg deleted file mode 100644 index f9fd3f2..0000000 --- a/docs/static/img/Roboto-RegularItalic.527502d.svg +++ /dev/null @@ -1,10629 +0,0 @@ - - - - -Created by FontForge 20150102 at Thu Feb 26 01:23:52 2015 - By uniteet7 -Copyright 2011 Google Inc. All Rights Reserved. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docs/static/img/Roboto-Thin.ba422f7.svg b/docs/static/img/Roboto-Thin.ba422f7.svg deleted file mode 100644 index 1ca90f6..0000000 --- a/docs/static/img/Roboto-Thin.ba422f7.svg +++ /dev/null @@ -1,10617 +0,0 @@ - - - - -Created by FontForge 20150102 at Thu Feb 26 01:25:58 2015 - By uniteet7 -Copyright 2011 Google Inc. All Rights Reserved. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docs/static/img/Roboto-Thin.bdd892c.svg b/docs/static/img/Roboto-Thin.bdd892c.svg new file mode 100644 index 0000000..e8c8fc8 --- /dev/null +++ b/docs/static/img/Roboto-Thin.bdd892c.svg @@ -0,0 +1,313 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/static/img/Roboto-ThinItalic.21e9a2e.svg b/docs/static/img/Roboto-ThinItalic.21e9a2e.svg deleted file mode 100644 index 7fc4b26..0000000 --- a/docs/static/img/Roboto-ThinItalic.21e9a2e.svg +++ /dev/null @@ -1,10726 +0,0 @@ - - - - -Created by FontForge 20150102 at Thu Feb 26 01:26:08 2015 - By uniteet7 -Copyright 2011 Google Inc. All Rights Reserved. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docs/static/img/Roboto-ThinItalic.98c7980.svg b/docs/static/img/Roboto-ThinItalic.98c7980.svg new file mode 100644 index 0000000..c51ce87 --- /dev/null +++ b/docs/static/img/Roboto-ThinItalic.98c7980.svg @@ -0,0 +1,332 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/static/img/resume-creative.4b5318e.png b/docs/static/img/resume-creative.4b5318e.png new file mode 100644 index 0000000..561b5c9 Binary files /dev/null and b/docs/static/img/resume-creative.4b5318e.png differ diff --git a/docs/static/img/resume-left-right-rtl.356fd8f.png b/docs/static/img/resume-left-right-rtl.356fd8f.png new file mode 100644 index 0000000..b5aba98 Binary files /dev/null and b/docs/static/img/resume-left-right-rtl.356fd8f.png differ diff --git a/docs/static/img/resume-left-right-rtl.75f8068.png b/docs/static/img/resume-left-right-rtl.75f8068.png deleted file mode 100644 index ed66800..0000000 Binary files a/docs/static/img/resume-left-right-rtl.75f8068.png and /dev/null differ diff --git a/docs/static/img/resume-left-right.1244943.png b/docs/static/img/resume-left-right.1244943.png new file mode 100644 index 0000000..a027284 Binary files /dev/null and b/docs/static/img/resume-left-right.1244943.png differ diff --git a/docs/static/img/resume-left-right.4ba1e85.png b/docs/static/img/resume-left-right.4ba1e85.png deleted file mode 100644 index 1050874..0000000 Binary files a/docs/static/img/resume-left-right.4ba1e85.png and /dev/null differ diff --git a/docs/static/img/resume-material-dark.57f3ae8.png b/docs/static/img/resume-material-dark.57f3ae8.png new file mode 100644 index 0000000..3cfdf5e Binary files /dev/null and b/docs/static/img/resume-material-dark.57f3ae8.png differ diff --git a/docs/static/img/resume-material-dark.722cd11.png b/docs/static/img/resume-material-dark.722cd11.png deleted file mode 100644 index 2541f3e..0000000 Binary files a/docs/static/img/resume-material-dark.722cd11.png and /dev/null differ diff --git a/docs/static/img/resume-oblique.5d80820.png b/docs/static/img/resume-oblique.5d80820.png new file mode 100644 index 0000000..fc915e2 Binary files /dev/null and b/docs/static/img/resume-oblique.5d80820.png differ diff --git a/docs/static/img/resume-oblique.a02cfe1.png b/docs/static/img/resume-oblique.a02cfe1.png deleted file mode 100644 index 20eea89..0000000 Binary files a/docs/static/img/resume-oblique.a02cfe1.png and /dev/null differ diff --git a/docs/static/img/resume-purple.6c93c28.png b/docs/static/img/resume-purple.6c93c28.png deleted file mode 100644 index 42404df..0000000 Binary files a/docs/static/img/resume-purple.6c93c28.png and /dev/null differ diff --git a/docs/static/img/resume-purple.b458f56.png b/docs/static/img/resume-purple.b458f56.png new file mode 100644 index 0000000..2016c92 Binary files /dev/null and b/docs/static/img/resume-purple.b458f56.png differ diff --git a/docs/static/img/resume-side-bar-rtl.72fb12a.png b/docs/static/img/resume-side-bar-rtl.72fb12a.png new file mode 100644 index 0000000..c2c721c Binary files /dev/null and b/docs/static/img/resume-side-bar-rtl.72fb12a.png differ diff --git a/docs/static/img/resume-side-bar-rtl.abd6c1a.png b/docs/static/img/resume-side-bar-rtl.abd6c1a.png deleted file mode 100644 index 06d4ea0..0000000 Binary files a/docs/static/img/resume-side-bar-rtl.abd6c1a.png and /dev/null differ diff --git a/docs/static/img/resume-side-bar.61dbca6.png b/docs/static/img/resume-side-bar.61dbca6.png new file mode 100644 index 0000000..986186e Binary files /dev/null and b/docs/static/img/resume-side-bar.61dbca6.png differ diff --git a/docs/static/img/resume-side-bar.f99c742.png b/docs/static/img/resume-side-bar.f99c742.png deleted file mode 100644 index 5de84ae..0000000 Binary files a/docs/static/img/resume-side-bar.f99c742.png and /dev/null differ diff --git a/docs/static/js/app.7cb85790ecf110c80b21.js b/docs/static/js/app.7cb85790ecf110c80b21.js new file mode 100644 index 0000000..87fe9e6 --- /dev/null +++ b/docs/static/js/app.7cb85790ecf110c80b21.js @@ -0,0 +1,1551 @@ +webpackJsonp([1],[ +/* 0 */, +/* 1 */, +/* 2 */, +/* 3 */ +/***/ (function(module, __webpack_exports__, __webpack_require__) { + +"use strict"; +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return getVueOptions; }); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_babel_runtime_core_js_object_keys__ = __webpack_require__(48); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_babel_runtime_core_js_object_keys___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_babel_runtime_core_js_object_keys__); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_js_yaml__ = __webpack_require__(75); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_js_yaml___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1_js_yaml__); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__resume_data_yml__ = __webpack_require__(101); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__terms__ = __webpack_require__(102); + + + + + +function getVueOptions(name) { + var opt = { + name: name, + data: function data() { + return { + person: __WEBPACK_IMPORTED_MODULE_1_js_yaml___default.a.load(__WEBPACK_IMPORTED_MODULE_2__resume_data_yml__["a" /* PERSON */]), + terms: __WEBPACK_IMPORTED_MODULE_3__terms__["a" /* terms */] + }; + }, + + computed: { + lang: function lang() { + var defaultLang = this.terms.en; + var useLang = this.terms[this.person.lang]; + + __WEBPACK_IMPORTED_MODULE_0_babel_runtime_core_js_object_keys___default()(defaultLang).filter(function (k) { + return !useLang[k]; + }).forEach(function (k) { + console.log(k); + useLang[k] = defaultLang[k]; + }); + + return useLang; + } + } + }; + return opt; +} + + + +/***/ }), +/* 4 */, +/* 5 */, +/* 6 */, +/* 7 */, +/* 8 */, +/* 9 */, +/* 10 */, +/* 11 */, +/* 12 */, +/* 13 */, +/* 14 */, +/* 15 */, +/* 16 */ +/***/ (function(module, __webpack_exports__, __webpack_require__) { + +"use strict"; + + +/* harmony default export */ __webpack_exports__["a"] = ({ + name: 'app' +}); + +/***/ }), +/* 17 */ +/***/ (function(module, __webpack_exports__, __webpack_require__) { + +"use strict"; +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_vue__ = __webpack_require__(1); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__resumes_resumes__ = __webpack_require__(45); + + + + +/* harmony default export */ __webpack_exports__["a"] = (__WEBPACK_IMPORTED_MODULE_0_vue__["a" /* default */].component('resume', { + name: 'app' +})); + +/***/ }), +/* 18 */ +/***/ (function(module, __webpack_exports__, __webpack_require__) { + +"use strict"; +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_vue__ = __webpack_require__(1); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__options__ = __webpack_require__(3); + + + + +var name = 'material-dark'; + +/* harmony default export */ __webpack_exports__["a"] = (__WEBPACK_IMPORTED_MODULE_0_vue__["a" /* default */].component(name, Object(__WEBPACK_IMPORTED_MODULE_1__options__["a" /* getVueOptions */])(name))); + +/***/ }), +/* 19 */, +/* 20 */, +/* 21 */, +/* 22 */, +/* 23 */, +/* 24 */, +/* 25 */ +/***/ (function(module, __webpack_exports__, __webpack_require__) { + +"use strict"; +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_vue__ = __webpack_require__(1); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__options__ = __webpack_require__(3); + + + + + +var name = 'left-right'; +/* harmony default export */ __webpack_exports__["a"] = (__WEBPACK_IMPORTED_MODULE_0_vue__["a" /* default */].component(name, Object(__WEBPACK_IMPORTED_MODULE_1__options__["a" /* getVueOptions */])(name))); + +/***/ }), +/* 26 */ +/***/ (function(module, __webpack_exports__, __webpack_require__) { + +"use strict"; +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_vue__ = __webpack_require__(1); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__options__ = __webpack_require__(3); + + + + + +var name = 'oblique'; +/* harmony default export */ __webpack_exports__["a"] = (__WEBPACK_IMPORTED_MODULE_0_vue__["a" /* default */].component(name, Object(__WEBPACK_IMPORTED_MODULE_1__options__["a" /* getVueOptions */])(name))); + +/***/ }), +/* 27 */ +/***/ (function(module, __webpack_exports__, __webpack_require__) { + +"use strict"; +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_vue__ = __webpack_require__(1); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__options__ = __webpack_require__(3); + + + + + +var name = 'side-bar'; +/* harmony default export */ __webpack_exports__["a"] = (__WEBPACK_IMPORTED_MODULE_0_vue__["a" /* default */].component(name, Object(__WEBPACK_IMPORTED_MODULE_1__options__["a" /* getVueOptions */])(name))); + +/***/ }), +/* 28 */ +/***/ (function(module, __webpack_exports__, __webpack_require__) { + +"use strict"; +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_vue__ = __webpack_require__(1); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__options__ = __webpack_require__(3); + + + + + +/* harmony default export */ __webpack_exports__["a"] = (__WEBPACK_IMPORTED_MODULE_0_vue__["a" /* default */].component('purple', Object(__WEBPACK_IMPORTED_MODULE_1__options__["a" /* getVueOptions */])(name))); + +/***/ }), +/* 29 */ +/***/ (function(module, __webpack_exports__, __webpack_require__) { + +"use strict"; +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_vue__ = __webpack_require__(1); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__options__ = __webpack_require__(3); + + + + + +var name = 'side-bar-rtl'; +/* harmony default export */ __webpack_exports__["a"] = (__WEBPACK_IMPORTED_MODULE_0_vue__["a" /* default */].component(name, Object(__WEBPACK_IMPORTED_MODULE_1__options__["a" /* getVueOptions */])(name))); + +/***/ }), +/* 30 */ +/***/ (function(module, __webpack_exports__, __webpack_require__) { + +"use strict"; +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_vue__ = __webpack_require__(1); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__options__ = __webpack_require__(3); + + + + +var name = 'left-right-rtl'; +/* harmony default export */ __webpack_exports__["a"] = (__WEBPACK_IMPORTED_MODULE_0_vue__["a" /* default */].component(name, Object(__WEBPACK_IMPORTED_MODULE_1__options__["a" /* getVueOptions */])(name))); + +/***/ }), +/* 31 */ +/***/ (function(module, __webpack_exports__, __webpack_require__) { + +"use strict"; +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_vue__ = __webpack_require__(1); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__options__ = __webpack_require__(3); + + + + + +var name = 'creative'; + +/* harmony default export */ __webpack_exports__["a"] = (__WEBPACK_IMPORTED_MODULE_0_vue__["a" /* default */].component(name, Object(__WEBPACK_IMPORTED_MODULE_1__options__["a" /* getVueOptions */])(name))); + +/***/ }), +/* 32 */ +/***/ (function(module, __webpack_exports__, __webpack_require__) { + +"use strict"; +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_vue__ = __webpack_require__(1); + + + +/* harmony default export */ __webpack_exports__["a"] = (__WEBPACK_IMPORTED_MODULE_0_vue__["a" /* default */].component('resume', { + name: 'app' +})); + +/***/ }), +/* 33 */ +/***/ (function(module, __webpack_exports__, __webpack_require__) { + +"use strict"; +Object.defineProperty(__webpack_exports__, "__esModule", { value: true }); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_vue__ = __webpack_require__(1); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__App__ = __webpack_require__(37); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__router__ = __webpack_require__(41); + + + + + +__WEBPACK_IMPORTED_MODULE_0_vue__["a" /* default */].config.productionTip = false; + +new __WEBPACK_IMPORTED_MODULE_0_vue__["a" /* default */]({ + el: '#app', + router: __WEBPACK_IMPORTED_MODULE_2__router__["a" /* default */], + template: '', + components: { + App: __WEBPACK_IMPORTED_MODULE_1__App__["a" /* default */] + } +}); + +/***/ }), +/* 34 */, +/* 35 */, +/* 36 */, +/* 37 */ +/***/ (function(module, __webpack_exports__, __webpack_require__) { + +"use strict"; +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__node_modules_vue_loader_lib_runtime_component_normalizer__ = __webpack_require__(2); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_App_vue__ = __webpack_require__(16); +/* unused harmony namespace reexport */ +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__node_modules_vue_loader_lib_template_compiler_index_id_data_v_6fce9f56_hasScoped_false_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_App_vue__ = __webpack_require__(40); +function injectStyle (context) { + __webpack_require__(38) +} + +/* script */ + + +/* template */ + +/* template functional */ +var __vue_template_functional__ = false +/* styles */ +var __vue_styles__ = injectStyle +/* scopeId */ +var __vue_scopeId__ = null +/* moduleIdentifier (server only) */ +var __vue_module_identifier__ = null +var Component = Object(__WEBPACK_IMPORTED_MODULE_0__node_modules_vue_loader_lib_runtime_component_normalizer__["a" /* default */])( + __WEBPACK_IMPORTED_MODULE_1__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_App_vue__["a" /* default */], + __WEBPACK_IMPORTED_MODULE_2__node_modules_vue_loader_lib_template_compiler_index_id_data_v_6fce9f56_hasScoped_false_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_App_vue__["a" /* default */], + __vue_template_functional__, + __vue_styles__, + __vue_scopeId__, + __vue_module_identifier__ +) + +/* harmony default export */ __webpack_exports__["a"] = (Component.exports); + + +/***/ }), +/* 38 */ +/***/ (function(module, exports) { + +// removed by extract-text-webpack-plugin + +/***/ }), +/* 39 */, +/* 40 */ +/***/ (function(module, __webpack_exports__, __webpack_require__) { + +"use strict"; +var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{attrs:{"id":"app"}},[_c('router-view')],1)} +var staticRenderFns = [] +var esExports = { render: render, staticRenderFns: staticRenderFns } +/* harmony default export */ __webpack_exports__["a"] = (esExports); + +/***/ }), +/* 41 */ +/***/ (function(module, __webpack_exports__, __webpack_require__) { + +"use strict"; +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_vue__ = __webpack_require__(1); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_vue_router__ = __webpack_require__(42); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__pages_resume__ = __webpack_require__(43); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__pages_home__ = __webpack_require__(149); + + + + + +__WEBPACK_IMPORTED_MODULE_0_vue__["a" /* default */].use(__WEBPACK_IMPORTED_MODULE_1_vue_router__["a" /* default */]); + +/* harmony default export */ __webpack_exports__["a"] = (new __WEBPACK_IMPORTED_MODULE_1_vue_router__["a" /* default */]({ + routes: [{ + path: '/', + name: 'home', + component: __WEBPACK_IMPORTED_MODULE_3__pages_home__["a" /* default */] + }, { + path: '/resume/:resumeid', + name: 'resume', + component: __WEBPACK_IMPORTED_MODULE_2__pages_resume__["a" /* default */] + }] +})); + +/***/ }), +/* 42 */, +/* 43 */ +/***/ (function(module, __webpack_exports__, __webpack_require__) { + +"use strict"; +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__node_modules_vue_loader_lib_runtime_component_normalizer__ = __webpack_require__(2); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_resume_vue__ = __webpack_require__(17); +/* unused harmony namespace reexport */ +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__node_modules_vue_loader_lib_template_compiler_index_id_data_v_09e61b2b_hasScoped_true_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_resume_vue__ = __webpack_require__(148); +function injectStyle (context) { + __webpack_require__(44) +} + +/* script */ + + +/* template */ + +/* template functional */ +var __vue_template_functional__ = false +/* styles */ +var __vue_styles__ = injectStyle +/* scopeId */ +var __vue_scopeId__ = "data-v-09e61b2b" +/* moduleIdentifier (server only) */ +var __vue_module_identifier__ = null +var Component = Object(__WEBPACK_IMPORTED_MODULE_0__node_modules_vue_loader_lib_runtime_component_normalizer__["a" /* default */])( + __WEBPACK_IMPORTED_MODULE_1__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_resume_vue__["a" /* default */], + __WEBPACK_IMPORTED_MODULE_2__node_modules_vue_loader_lib_template_compiler_index_id_data_v_09e61b2b_hasScoped_true_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_resume_vue__["a" /* default */], + __vue_template_functional__, + __vue_styles__, + __vue_scopeId__, + __vue_module_identifier__ +) + +/* harmony default export */ __webpack_exports__["a"] = (Component.exports); + + +/***/ }), +/* 44 */ +/***/ (function(module, exports) { + +// removed by extract-text-webpack-plugin + +/***/ }), +/* 45 */ +/***/ (function(module, __webpack_exports__, __webpack_require__) { + +"use strict"; +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__material_dark_vue__ = __webpack_require__(46); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__left_right_vue__ = __webpack_require__(127); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__oblique_vue__ = __webpack_require__(130); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__side_bar_vue__ = __webpack_require__(133); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__purple_vue__ = __webpack_require__(136); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__side_bar_rtl_vue__ = __webpack_require__(139); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__left_right_rtl_vue__ = __webpack_require__(142); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__creative_vue__ = __webpack_require__(145); + + + + + + + + + + +/***/ }), +/* 46 */ +/***/ (function(module, __webpack_exports__, __webpack_require__) { + +"use strict"; +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__node_modules_vue_loader_lib_runtime_component_normalizer__ = __webpack_require__(2); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_material_dark_vue__ = __webpack_require__(18); +/* unused harmony reexport namespace */ +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__node_modules_vue_loader_lib_template_compiler_index_id_data_v_7951fa00_hasScoped_true_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_material_dark_vue__ = __webpack_require__(126); +function injectStyle (context) { + __webpack_require__(47) +} + +/* script */ + + +/* template */ + +/* template functional */ +var __vue_template_functional__ = false +/* styles */ +var __vue_styles__ = injectStyle +/* scopeId */ +var __vue_scopeId__ = "data-v-7951fa00" +/* moduleIdentifier (server only) */ +var __vue_module_identifier__ = null +var Component = Object(__WEBPACK_IMPORTED_MODULE_0__node_modules_vue_loader_lib_runtime_component_normalizer__["a" /* default */])( + __WEBPACK_IMPORTED_MODULE_1__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_material_dark_vue__["a" /* default */], + __WEBPACK_IMPORTED_MODULE_2__node_modules_vue_loader_lib_template_compiler_index_id_data_v_7951fa00_hasScoped_true_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_material_dark_vue__["a" /* default */], + __vue_template_functional__, + __vue_styles__, + __vue_scopeId__, + __vue_module_identifier__ +) + +/* unused harmony default export */ var _unused_webpack_default_export = (Component.exports); + + +/***/ }), +/* 47 */ +/***/ (function(module, exports) { + +// removed by extract-text-webpack-plugin + +/***/ }), +/* 48 */, +/* 49 */, +/* 50 */, +/* 51 */, +/* 52 */, +/* 53 */, +/* 54 */, +/* 55 */, +/* 56 */, +/* 57 */, +/* 58 */, +/* 59 */, +/* 60 */, +/* 61 */, +/* 62 */, +/* 63 */, +/* 64 */, +/* 65 */, +/* 66 */, +/* 67 */, +/* 68 */, +/* 69 */, +/* 70 */, +/* 71 */, +/* 72 */, +/* 73 */, +/* 74 */, +/* 75 */, +/* 76 */, +/* 77 */, +/* 78 */, +/* 79 */, +/* 80 */, +/* 81 */, +/* 82 */, +/* 83 */, +/* 84 */, +/* 85 */, +/* 86 */, +/* 87 */, +/* 88 */, +/* 89 */, +/* 90 */, +/* 91 */, +/* 92 */, +/* 93 */, +/* 94 */, +/* 95 */, +/* 96 */, +/* 97 */, +/* 98 */, +/* 99 */, +/* 100 */, +/* 101 */ +/***/ (function(module, __webpack_exports__, __webpack_require__) { + +"use strict"; +/* #*/ const PERSON = ` +name: + first: John + middle: + last: Doe +about: Hi, my name is John Doe. I"m just about the most boring type of person you could + possibly imagine. I like collecting leaves from the tree in my back yard and documenting + each time I eat a peanut that is non-uniform. I am not a robot. Please hire me. +position: Software Developer + +birth: + year: 1990 + location: New York + +experience: +- company: Company A + position: Developer + timeperiod: since January 2016 + description: Programming and watching cute cat videos. + website: https://example.com + +- company: Company B + position: Frontend Developer + timeperiod: January 2015 - December 2015 + description: Fulfillment of extremely important tasks. + +- company: Company C + position: Trainee + timeperiod: March 2014 - December 2014 + description: Making coffee and baking cookies. + +education: +- degree: Master of Arts + timeperiod: March 2012 - December 2013 + description: Major in Hacking and Computer Penetration, University A, New York, USA. + website: https://example.com + +- degree: Bachelor of Science + timeperiod: March 2009 - December 2011 + description: Major in Engineering, University B, Los Angeles, USA. + +# skill level goes 0 to 100 +skills: +- name: HTML5 + level: 99 +- name: CSS3 + level: 95 +- name: JavaScript + level: 97 +- name: Node.js + level: 93 +- name: Angular 2 + level: 60 +- name: TypeScript + level: 80 +- name: ES.Next + level: 70 +- name: Docker + level: 99 +knowledge: Also proficient in Adobe Photoshop and Illustrator, grew up bilingual + (English and Klingon). + +projects: +- name: best-resume-ever + platform: Vue + description: 👔 💼 Build fast 🚀 and easy multiple beautiful resumes and create your best CV ever! Made with Vue and LESS. + url: https://github.com/salomonelli/best-resume-ever + +hobbies: +- name: Video Games + iconClass: fa fa-gamepad + url: https://example.com + +- name: Drawing + iconClass: fa fa-pencil + url: https://example.com + +contributions: +- name: best-resume-ever + description: 👔 💼 Build fast 🚀 and easy multiple beautiful resumes. + url: https://github.com/salomonelli/best-resume-ever + +contact: + email: john.doe@email.com + phone: 0123 456789 + street: 1234 Broadway + city: New York + website: johndoe.com + github: johnyD +# en, de, fr, pt, ca, cn, it, es, th, pt-br, ru, sv, id, hu, pl, ja, ka, nl, he, zh-tw, lt, ko, el +lang: en +` +/* harmony export (immutable) */ __webpack_exports__["a"] = PERSON; + + + +/***/ }), +/* 102 */ +/***/ (function(module, __webpack_exports__, __webpack_require__) { + +"use strict"; +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return terms; }); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__lang_en__ = __webpack_require__(103); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__lang_de__ = __webpack_require__(104); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__lang_fr__ = __webpack_require__(105); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__lang_pt__ = __webpack_require__(106); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__lang_ca__ = __webpack_require__(107); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__lang_cn__ = __webpack_require__(108); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__lang_it__ = __webpack_require__(109); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__lang_es__ = __webpack_require__(110); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_8__lang_th__ = __webpack_require__(111); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_9__lang_id__ = __webpack_require__(112); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_10__lang_sv__ = __webpack_require__(113); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_11__lang_ru__ = __webpack_require__(114); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_12__lang_pt_br__ = __webpack_require__(115); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_13__lang_hu__ = __webpack_require__(116); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_14__lang_pl__ = __webpack_require__(117); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_15__lang_he__ = __webpack_require__(118); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_16__lang_ja__ = __webpack_require__(119); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_17__lang_zh_tw__ = __webpack_require__(120); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_18__lang_nl__ = __webpack_require__(121); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_19__lang_lt__ = __webpack_require__(122); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_20__lang_tr__ = __webpack_require__(123); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_21__lang_ko__ = __webpack_require__(124); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_22__lang_el__ = __webpack_require__(125); + + + + + + + + + + + + + + + + + + + + + + + + +var terms = { + en: __WEBPACK_IMPORTED_MODULE_0__lang_en__["a" /* default */], de: __WEBPACK_IMPORTED_MODULE_1__lang_de__["a" /* default */], fr: __WEBPACK_IMPORTED_MODULE_2__lang_fr__["a" /* default */], pt: __WEBPACK_IMPORTED_MODULE_3__lang_pt__["a" /* default */], ca: __WEBPACK_IMPORTED_MODULE_4__lang_ca__["a" /* default */], cn: __WEBPACK_IMPORTED_MODULE_5__lang_cn__["a" /* default */], it: __WEBPACK_IMPORTED_MODULE_6__lang_it__["a" /* default */], es: __WEBPACK_IMPORTED_MODULE_7__lang_es__["a" /* default */], th: __WEBPACK_IMPORTED_MODULE_8__lang_th__["a" /* default */], 'pt-br': __WEBPACK_IMPORTED_MODULE_12__lang_pt_br__["a" /* default */], ru: __WEBPACK_IMPORTED_MODULE_11__lang_ru__["a" /* default */], sv: __WEBPACK_IMPORTED_MODULE_10__lang_sv__["a" /* default */], id: __WEBPACK_IMPORTED_MODULE_9__lang_id__["a" /* default */], hu: __WEBPACK_IMPORTED_MODULE_13__lang_hu__["a" /* default */], pl: __WEBPACK_IMPORTED_MODULE_14__lang_pl__["a" /* default */], ja: __WEBPACK_IMPORTED_MODULE_16__lang_ja__["a" /* default */], nl: __WEBPACK_IMPORTED_MODULE_18__lang_nl__["a" /* default */], he: __WEBPACK_IMPORTED_MODULE_15__lang_he__["a" /* default */], 'zh-tw': __WEBPACK_IMPORTED_MODULE_17__lang_zh_tw__["a" /* default */], lt: __WEBPACK_IMPORTED_MODULE_19__lang_lt__["a" /* default */], tr: __WEBPACK_IMPORTED_MODULE_20__lang_tr__["a" /* default */], ko: __WEBPACK_IMPORTED_MODULE_21__lang_ko__["a" /* default */], el: __WEBPACK_IMPORTED_MODULE_22__lang_el__["a" /* default */] +}; + +/***/ }), +/* 103 */ +/***/ (function(module, __webpack_exports__, __webpack_require__) { + +"use strict"; + +var lang = { + contact: 'Contact', + born: 'Born', + bornIn: 'in', + experience: 'Experience', + education: 'Education', + skills: 'Skills', + projects: 'Projects', + contributions: 'Contributions', + about: 'About me' +}; +/* harmony default export */ __webpack_exports__["a"] = (lang); + +/***/ }), +/* 104 */ +/***/ (function(module, __webpack_exports__, __webpack_require__) { + +"use strict"; + +var lang = { + contact: 'Kontakt', + born: 'Geboren', + bornIn: 'in', + experience: 'Berufserfahrung', + education: 'Schulbildung', + skills: 'Qualifikationen', + projects: 'Projecten', + contributions: 'Bijdragen', + about: 'Über mich' +}; +/* harmony default export */ __webpack_exports__["a"] = (lang); + +/***/ }), +/* 105 */ +/***/ (function(module, __webpack_exports__, __webpack_require__) { + +"use strict"; + +var lang = { + contact: 'Contact', + born: 'Né en', + bornIn: 'à', + experience: 'Expérience professionelle', + education: 'Formation', + skills: 'Compétences', + projects: 'Projets', + contributions: 'Contributions', + about: 'À propos de moi' +}; +/* harmony default export */ __webpack_exports__["a"] = (lang); + +/***/ }), +/* 106 */ +/***/ (function(module, __webpack_exports__, __webpack_require__) { + +"use strict"; + +var lang = { + contact: 'Contactos', + experience: 'Experiência Profissional', + education: 'Educação', + skills: 'Competências', + projects: 'Projetos', + contributions: 'Contribuições', + about: 'Sobre mim' +}; +/* harmony default export */ __webpack_exports__["a"] = (lang); + +/***/ }), +/* 107 */ +/***/ (function(module, __webpack_exports__, __webpack_require__) { + +"use strict"; + +var lang = { + contact: 'Contacte', + experience: 'Experiència', + education: 'Educació', + skills: 'Habilitats', + projects: 'Projectes', + contributions: 'Contribucions', + about: 'Sobre mi' +}; +/* harmony default export */ __webpack_exports__["a"] = (lang); + +/***/ }), +/* 108 */ +/***/ (function(module, __webpack_exports__, __webpack_require__) { + +"use strict"; + +var lang = { + contact: '联系方式', + experience: '工作经历', + education: '教育经历', + skills: '技能专长', + projects: '项目', + contributions: '捐款', + about: '自我介绍' +}; +/* harmony default export */ __webpack_exports__["a"] = (lang); + +/***/ }), +/* 109 */ +/***/ (function(module, __webpack_exports__, __webpack_require__) { + +"use strict"; + +var lang = { + contact: 'Contatti', + experience: 'Esperienza professionale', + education: 'Formazione', + skills: 'Competenze', + contributions: 'Contributi', + projects: 'Progetti', + about: 'Su di me' +}; +/* harmony default export */ __webpack_exports__["a"] = (lang); + +/***/ }), +/* 110 */ +/***/ (function(module, __webpack_exports__, __webpack_require__) { + +"use strict"; + +var lang = { + contact: 'Contacto', + experience: 'Experiencia', + education: 'Educación', + skills: 'Habilidades', + projects: 'Proyectos', + contributions: 'Contribuciones', + about: 'Sobre mi' +}; +/* harmony default export */ __webpack_exports__["a"] = (lang); + +/***/ }), +/* 111 */ +/***/ (function(module, __webpack_exports__, __webpack_require__) { + +"use strict"; +var lang = { + contact: 'ข้อมูลติดต่อ', + experience: 'ประสบการณ์ทำงาน', + education: 'ประวัติการศึกษา', + skills: 'ทักษะและความสามารถ', + about: 'ข้อมูลส่วนตัว' +}; +/* harmony default export */ __webpack_exports__["a"] = (lang); + +/***/ }), +/* 112 */ +/***/ (function(module, __webpack_exports__, __webpack_require__) { + +"use strict"; + +var lang = { + contact: 'Kontak', + experience: 'Pengalaman', + education: 'Pendidikan', + skills: 'Keterampilan', + projects: 'Proyek', + contributions: 'Kontribusi', + about: 'Tentang Saya' +}; +/* harmony default export */ __webpack_exports__["a"] = (lang); + +/***/ }), +/* 113 */ +/***/ (function(module, __webpack_exports__, __webpack_require__) { + +"use strict"; +var lang = { + contact: 'Kontakt', + experience: 'Arbetslivserfarenhet', + education: 'Utbildning', + skills: 'Kunskaper', + about: 'Om mig' +}; +/* harmony default export */ __webpack_exports__["a"] = (lang); + +/***/ }), +/* 114 */ +/***/ (function(module, __webpack_exports__, __webpack_require__) { + +"use strict"; + +var lang = { + contact: 'Контакты', + experience: 'Опыт', + education: 'Образование', + skills: 'Навыки', + projects: 'проектов', + contributions: 'взносы', + about: 'Обо мне' +}; + +/* harmony default export */ __webpack_exports__["a"] = (lang); + +/***/ }), +/* 115 */ +/***/ (function(module, __webpack_exports__, __webpack_require__) { + +"use strict"; + +var lang = { + contact: 'Contato', + experience: 'Experiência Profissional', + + education: 'Formação Acadêmica', + skills: 'Competências', + projects: 'Projetos', + contributions: 'Contribuições', + about: 'Sobre' +}; +/* harmony default export */ __webpack_exports__["a"] = (lang); + +/***/ }), +/* 116 */ +/***/ (function(module, __webpack_exports__, __webpack_require__) { + +"use strict"; + +var lang = { + contact: 'Kapcsolat', + experience: 'Munkatapasztalat', + education: 'Tanulmány', + skills: 'Készségek', + projects: 'Projektek', + contributions: 'Hozzájárulások', + about: 'Rólam' +}; +/* harmony default export */ __webpack_exports__["a"] = (lang); + +/***/ }), +/* 117 */ +/***/ (function(module, __webpack_exports__, __webpack_require__) { + +"use strict"; + +var lang = { + contact: 'Kontakt', + experience: 'Doświadczenie', + education: 'Wykształcenie', + skills: 'Umiejętności', + projects: 'Projektowanie', + contributions: 'Składki', + about: 'O mnie' +}; +/* harmony default export */ __webpack_exports__["a"] = (lang); + +/***/ }), +/* 118 */ +/***/ (function(module, __webpack_exports__, __webpack_require__) { + +"use strict"; + +var lang = { + contact: 'יצירת קשר', + experience: 'ניסיון', + education: 'השכלה', + skills: 'כישורים', + projects: 'פרויקטים', + contributions: 'תרומות', + about: 'תמצית' +}; +/* harmony default export */ __webpack_exports__["a"] = (lang); + +/***/ }), +/* 119 */ +/***/ (function(module, __webpack_exports__, __webpack_require__) { + +"use strict"; + +var lang = { + contact: '連絡先', + experience: '職務経歴', + education: '学歴', + skills: 'スキル', + projects: 'プロジェクト', + contributions: '貢献', + about: '自己紹介' +}; +/* harmony default export */ __webpack_exports__["a"] = (lang); + +/***/ }), +/* 120 */ +/***/ (function(module, __webpack_exports__, __webpack_require__) { + +"use strict"; +var lang = { + contact: '聯絡方式', + experience: '經歷', + education: '學歷', + skills: '技能專長', + about: '自我介紹' +}; +/* harmony default export */ __webpack_exports__["a"] = (lang); + +/***/ }), +/* 121 */ +/***/ (function(module, __webpack_exports__, __webpack_require__) { + +"use strict"; + +var lang = { + contact: 'Contact', + experience: 'Ervaringen', + education: 'Opleidingen', + skills: 'Skills', + projects: 'Projecten', + contributions: 'Bijdragen', + about: 'Over mij' +}; +/* harmony default export */ __webpack_exports__["a"] = (lang); + +/***/ }), +/* 122 */ +/***/ (function(module, __webpack_exports__, __webpack_require__) { + +"use strict"; +var lang = { + contact: 'Kontaktai', + experience: 'Patirtis', + education: 'Išsilavinimas', + skills: 'Įgūdžiai', + about: 'Apie mane' +}; +/* harmony default export */ __webpack_exports__["a"] = (lang); + +/***/ }), +/* 123 */ +/***/ (function(module, __webpack_exports__, __webpack_require__) { + +"use strict"; +var lang = { + contact: 'İletişim', + experience: 'Deneyim', + education: 'Eğitim', + skills: 'Yetenekler', + about: 'Hakkımda' +}; +/* harmony default export */ __webpack_exports__["a"] = (lang); + +/***/ }), +/* 124 */ +/***/ (function(module, __webpack_exports__, __webpack_require__) { + +"use strict"; + +var lang = { + contact: '연락처', + experience: '경력', + education: '학력', + skills: '보유스킬', + projects: '프로젝트', + contributions: '기고', + about: '자기소개' +}; +/* harmony default export */ __webpack_exports__["a"] = (lang); + +/***/ }), +/* 125 */ +/***/ (function(module, __webpack_exports__, __webpack_require__) { + +"use strict"; +var lang = { + contact: 'Επικοινωνία', + experience: 'Επαγγελματική εμπειρία', + education: 'Εκπαίδευση', + skills: 'Δεξιότητες', + about: 'Σχετικά με εμένα' +}; +/* harmony default export */ __webpack_exports__["a"] = (lang); + +/***/ }), +/* 126 */ +/***/ (function(module, __webpack_exports__, __webpack_require__) { + +"use strict"; +var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:"resume"},[_c('div',{staticClass:"leftCol m_box"},[_c('div',{staticClass:"shadow"}),_vm._v(" "),_c('div',{staticClass:"heading",attrs:{"id":"myselfpic"}}),_vm._v(" "),_c('div',{staticClass:"section-headline"},[_vm._v("\n "+_vm._s(_vm.lang.contact)+"\n ")]),_vm._v(" "),_c('div',{staticClass:"item"},[_vm._m(0),_vm._v(" "),_c('div',{staticClass:"text"},[_c('ul',[_c('li',[_vm._v(" "+_vm._s(_vm.lang.born)+" "+_vm._s(_vm.person.birth.year)+" "+_vm._s(_vm.lang.bornIn)+" "+_vm._s(_vm.person.birth.location))])])])]),_vm._v(" "),_c('div',{staticClass:"item"},[_vm._m(1),_vm._v(" "),_c('div',{staticClass:"text"},[_c('ul',[_c('li',[_vm._v(_vm._s(_vm.person.contact.street))]),_vm._v(" "),_c('li',[_vm._v(_vm._s(_vm.person.contact.city))])])])]),_vm._v(" "),_c('a',{attrs:{"href":'tel:'+_vm.person.contact.phone}},[_c('div',{staticClass:"item"},[_vm._m(2),_vm._v(" "),_c('div',{staticClass:"text"},[_vm._v("\n "+_vm._s(_vm.person.contact.phone)+"\n ")])])]),_vm._v(" "),_c('a',{attrs:{"href":'mailto:'+_vm.person.contact.email}},[_c('div',{staticClass:"item"},[_vm._m(3),_vm._v(" "),_c('div',{staticClass:"text"},[_vm._v("\n "+_vm._s(_vm.person.contact.email)+"\n ")])])]),_vm._v(" "),(_vm.person.contact.github)?_c('a',{attrs:{"href":'https://github.com/'+_vm.person.contact.github,"target":"_blank"}},[_c('div',{staticClass:"item"},[_vm._m(4),_vm._v(" "),_c('div',{staticClass:"text"},[_c('span',[_vm._v("@"+_vm._s(_vm.person.contact.github))]),_vm._v(" "),_c('span',[_vm._v("github.com/"+_vm._s(_vm.person.contact.github))])])])]):_vm._e(),_vm._v(" "),(_vm.person.contact.website)?_c('a',{attrs:{"href":_vm.person.contact.website,"target":"_blank"}},[_c('div',{staticClass:"item"},[_vm._m(5),_vm._v(" "),_c('div',{staticClass:"text"},[_c('span',[_vm._v(_vm._s(_vm.person.contact.website))])])])]):_vm._e(),_vm._v(" "),_c('div',{staticClass:"item last"},[_c('div',{staticClass:"section-headline"},[_vm._v("\n "+_vm._s(_vm.lang.skills)+"\n ")]),_vm._v(" "),_vm._l((_vm.person.skills),function(skill){return _c('div',{key:skill.name,staticClass:"skill"},[_c('div',{staticClass:"right"},[_c('span',[_vm._v(_vm._s(skill.name)+" ")]),_vm._v(" "),_c('div',{staticClass:"progress"},[_c('div',{staticClass:"determinate",style:('width: '+skill.level+'%;')},[_c('i',{staticClass:"fa fa-circle"})])])])])})],2)]),_vm._v(" "),_c('div',{staticClass:"rightCol"},[_c('div',{staticClass:"title"},[_c('h2',[_vm._v(_vm._s(_vm.person.name.first)+" "+_vm._s(_vm.person.name.middle)+" "+_vm._s(_vm.person.name.last))]),_vm._v(" "),_c('div',[_vm._v(_vm._s(_vm.person.position))])]),_vm._v(" "),_c('div',{staticClass:"section-headline"},[_vm._v(_vm._s(_vm.lang.experience))]),_vm._v(" "),_vm._l((_vm.person.experience),function(experience){return _c('div',{key:experience.company,staticClass:"block"},[_c('div',{staticClass:"block-helper"}),_vm._v(" "),_c('h3',{staticClass:"headline"},[_vm._v(_vm._s(experience.position)+" - "+_vm._s(experience.company))]),_vm._v(" "),_c('div',{staticClass:"subheadline"},[_vm._v(_vm._s(experience.timeperiod))]),_vm._v(" "),_c('p',{staticClass:"info"},[_vm._v("\n "+_vm._s(experience.description)+"\n ")])])}),_vm._v(" "),_c('div',{staticClass:"section-headline"},[_vm._v(_vm._s(_vm.lang.education))]),_vm._v(" "),_vm._l((_vm.person.education),function(education){return _c('div',{key:education.degree,staticClass:"block"},[_c('div',{staticClass:"block-helper"}),_vm._v(" "),_c('div',{staticClass:"headline"},[_vm._v(_vm._s(education.degree))]),_vm._v(" "),_c('p',{staticClass:"info"},[_vm._v("\n "+_vm._s(education.timeperiod)+", "+_vm._s(education.description)+"\n ")])])})],2),_vm._v(" "),_c('div',{staticStyle:{"clear":"both"}})])} +var staticRenderFns = [function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:"icon"},[_c('i',{staticClass:"material-icons"},[_vm._v("account_circle")])])},function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:"icon"},[_c('i',{staticClass:"material-icons"},[_vm._v("location_city")])])},function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:"icon"},[_c('i',{staticClass:"material-icons"},[_vm._v("phone")])])},function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:"icon"},[_c('i',{staticClass:"material-icons"},[_vm._v("email")])])},function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:"icon"},[_c('i',{staticClass:"fa fa-github"})])},function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:"icon"},[_c('i',{staticClass:"material-icons"},[_vm._v("language")])])}] +var esExports = { render: render, staticRenderFns: staticRenderFns } +/* harmony default export */ __webpack_exports__["a"] = (esExports); + +/***/ }), +/* 127 */ +/***/ (function(module, __webpack_exports__, __webpack_require__) { + +"use strict"; +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__node_modules_vue_loader_lib_runtime_component_normalizer__ = __webpack_require__(2); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_left_right_vue__ = __webpack_require__(25); +/* unused harmony reexport namespace */ +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__node_modules_vue_loader_lib_template_compiler_index_id_data_v_892f1822_hasScoped_true_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_left_right_vue__ = __webpack_require__(129); +function injectStyle (context) { + __webpack_require__(128) +} + +/* script */ + + +/* template */ + +/* template functional */ +var __vue_template_functional__ = false +/* styles */ +var __vue_styles__ = injectStyle +/* scopeId */ +var __vue_scopeId__ = "data-v-892f1822" +/* moduleIdentifier (server only) */ +var __vue_module_identifier__ = null +var Component = Object(__WEBPACK_IMPORTED_MODULE_0__node_modules_vue_loader_lib_runtime_component_normalizer__["a" /* default */])( + __WEBPACK_IMPORTED_MODULE_1__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_left_right_vue__["a" /* default */], + __WEBPACK_IMPORTED_MODULE_2__node_modules_vue_loader_lib_template_compiler_index_id_data_v_892f1822_hasScoped_true_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_left_right_vue__["a" /* default */], + __vue_template_functional__, + __vue_styles__, + __vue_scopeId__, + __vue_module_identifier__ +) + +/* unused harmony default export */ var _unused_webpack_default_export = (Component.exports); + + +/***/ }), +/* 128 */ +/***/ (function(module, exports) { + +// removed by extract-text-webpack-plugin + +/***/ }), +/* 129 */ +/***/ (function(module, __webpack_exports__, __webpack_require__) { + +"use strict"; +var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:"resume",attrs:{"id":"resume1"}},[_c('div',{staticClass:"row text-center"},[_c('span',{staticClass:"name"},[_vm._v(_vm._s(_vm.person.name.first)+" "+_vm._s(_vm.person.name.middle)+" "+_vm._s(_vm.person.name.last))])]),_vm._v(" "),_c('div',{staticClass:"row text-center"},[_c('p',{staticClass:"position center"},[_vm._v(_vm._s(_vm.person.position))])]),_vm._v(" "),_vm._m(0),_vm._v(" "),_c('div',{staticClass:"left half"},[_c('div',{staticClass:"experience"},[_c('h3',[_vm._v(_vm._s(_vm.lang.experience))]),_vm._v(" "),_vm._l((_vm.person.experience),function(experience){return _c('div',{key:experience.company,staticClass:"experience-block"},[_c('span',{staticClass:"company"},[_vm._v(" "+_vm._s(experience.company)+" ")]),_vm._v(" "),_c('span',{staticClass:"job-title"},[_vm._v(" "+_vm._s(experience.position)+" ")]),_vm._v(" "),_c('span',{staticClass:"time-period"},[_vm._v(" "+_vm._s(experience.timeperiod))]),_vm._v(" "),_c('span',{staticClass:"job-description"},[_vm._v(" "+_vm._s(experience.description)+" ")])])})],2),_vm._v(" "),_c('div',{staticClass:"contact"},[_c('h3',[_vm._v(_vm._s(_vm.lang.contact))]),_vm._v(" "),_c('table',[_c('tr',[_c('td',[_c('a',{attrs:{"href":'mailto:'+_vm.person.contact.email}},[_vm._v(_vm._s(_vm.person.contact.email))])]),_vm._v(" "),_vm._m(1)]),_vm._v(" "),_c('tr',[_c('td',[_c('a',{attrs:{"href":'tel:'+_vm.person.contact.phone}},[_vm._v(_vm._s(_vm.person.contact.phone))])]),_vm._v(" "),_vm._m(2)]),_vm._v(" "),_c('tr',[_c('td',[_vm._v(_vm._s(_vm.person.contact.street)+" "),_c('br'),_vm._v(" "+_vm._s(_vm.person.contact.city))]),_vm._v(" "),_vm._m(3)]),_vm._v(" "),(_vm.person.contact.website)?_c('tr',[_c('td',[_c('a',{attrs:{"href":_vm.person.contact.website}},[_vm._v(_vm._s(_vm.person.contact.website))])]),_vm._v(" "),_vm._m(4)]):_vm._e(),_vm._v(" "),(_vm.person.contact.github)?_c('tr',[_c('td',[_c('a',{attrs:{"href":'https://github.com/'+_vm.person.contact.github}},[_vm._v("https://github.com/"+_vm._s(_vm.person.contact.github))])]),_vm._v(" "),_vm._m(5)]):_vm._e()])])]),_vm._v(" "),_c('div',{staticClass:"right half"},[_c('div',{staticClass:"education"},[_c('h3',[_vm._v(_vm._s(_vm.lang.education))]),_vm._v(" "),_vm._l((_vm.person.education),function(education){return _c('div',{key:education.degree,staticClass:"education-block"},[_c('span',{staticClass:"degree"},[_vm._v(_vm._s(education.degree))]),_vm._v(" "),_c('span',{staticClass:"degree-description"},[_vm._v(_vm._s(education.description))])])})],2),_vm._v(" "),_c('h3',[_vm._v(_vm._s(_vm.lang.skills))]),_vm._v(" "),_c('div',{staticClass:"skills"},_vm._l((_vm.person.skills),function(skill){return _c('div',{key:skill.name,staticClass:"skill-block"},[_c('span',{staticClass:"skill"},[_vm._v(_vm._s(skill.name))]),_vm._v(" "),_c('div',{staticClass:"skill-bar"},[_c('div',{staticClass:"level",style:('width: '+skill.level+'%')})])])})),_vm._v(" "),_c('span',{staticClass:"skills-other"},[_vm._v(" "+_vm._s(_vm.person.knowledge)+" ")])])])} +var staticRenderFns = [function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:"row"},[_c('div',{staticClass:"image center"},[_c('div',{staticClass:"img"})])])},function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('td',[_c('i',{staticClass:"fa fa-envelope",attrs:{"aria-hidden":"true"}})])},function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('td',[_c('i',{staticClass:"fa fa-phone",attrs:{"aria-hidden":"true"}})])},function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('td',[_c('i',{staticClass:"fa fa-home",attrs:{"aria-hidden":"true"}})])},function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('td',[_c('i',{staticClass:"fa fa-globe",attrs:{"aria-hidden":"true"}})])},function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('td',[_c('i',{staticClass:"fa fa-github",attrs:{"aria-hidden":"true"}})])}] +var esExports = { render: render, staticRenderFns: staticRenderFns } +/* harmony default export */ __webpack_exports__["a"] = (esExports); + +/***/ }), +/* 130 */ +/***/ (function(module, __webpack_exports__, __webpack_require__) { + +"use strict"; +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__node_modules_vue_loader_lib_runtime_component_normalizer__ = __webpack_require__(2); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_oblique_vue__ = __webpack_require__(26); +/* unused harmony reexport namespace */ +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__node_modules_vue_loader_lib_template_compiler_index_id_data_v_233d6d70_hasScoped_true_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_oblique_vue__ = __webpack_require__(132); +function injectStyle (context) { + __webpack_require__(131) +} + +/* script */ + + +/* template */ + +/* template functional */ +var __vue_template_functional__ = false +/* styles */ +var __vue_styles__ = injectStyle +/* scopeId */ +var __vue_scopeId__ = "data-v-233d6d70" +/* moduleIdentifier (server only) */ +var __vue_module_identifier__ = null +var Component = Object(__WEBPACK_IMPORTED_MODULE_0__node_modules_vue_loader_lib_runtime_component_normalizer__["a" /* default */])( + __WEBPACK_IMPORTED_MODULE_1__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_oblique_vue__["a" /* default */], + __WEBPACK_IMPORTED_MODULE_2__node_modules_vue_loader_lib_template_compiler_index_id_data_v_233d6d70_hasScoped_true_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_oblique_vue__["a" /* default */], + __vue_template_functional__, + __vue_styles__, + __vue_scopeId__, + __vue_module_identifier__ +) + +/* unused harmony default export */ var _unused_webpack_default_export = (Component.exports); + + +/***/ }), +/* 131 */ +/***/ (function(module, exports) { + +// removed by extract-text-webpack-plugin + +/***/ }), +/* 132 */ +/***/ (function(module, __webpack_exports__, __webpack_require__) { + +"use strict"; +var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:"resume",attrs:{"id":"resume3"}},[_c('div',{staticClass:"resume-header"},[_c('div',{staticClass:"triangle"}),_vm._v(" "),_c('div',{staticClass:"person-header"},[_c('div',{staticClass:"person-wrapper"},[_c('div',{staticClass:"person"},[_c('div',{staticClass:"name"},[_vm._v(_vm._s(_vm.person.name.first)+" "+_vm._s(_vm.person.name.middle)+" "+_vm._s(_vm.person.name.last))]),_vm._v(" "),_c('div',{staticClass:"position"},[_vm._v(_vm._s(_vm.person.position))])]),_vm._v(" "),_c('div',{staticClass:"img"})])])]),_vm._v(" "),_c('div',{staticClass:"resume-content"},[_c('div',{staticClass:"experience"},[_c('h3',[_vm._v(_vm._s(_vm.lang.experience))]),_vm._v(" "),_vm._l((_vm.person.experience),function(experience){return _c('div',{key:experience.company,staticClass:"experience-block"},[_c('div',{staticClass:"row"},[_c('span',{staticClass:"job-title"},[_vm._v(" "+_vm._s(experience.position)+" ")]),_vm._v(" "),_c('i',{staticClass:"material-icons"},[_vm._v("details")]),_vm._v(" "),_c('span',{staticClass:"company"},[_vm._v(" "+_vm._s(experience.company)+" ")])]),_vm._v(" "),_c('div',{staticClass:"row"},[_c('span',{staticClass:"time-period"},[_vm._v(" "+_vm._s(experience.timeperiod))]),_vm._v(" "),_c('span',{staticClass:"job-description"},[_vm._v(", "+_vm._s(experience.description)+" ")])])])})],2),_vm._v(" "),_c('div',{staticClass:"education"},[_c('h3',[_vm._v(_vm._s(_vm.lang.education))]),_vm._v(" "),_vm._l((_vm.person.education),function(education){return _c('div',{key:education.degree,staticClass:"education-block"},[_c('div',{staticClass:"row"},[_c('span',{staticClass:"degree"},[_vm._v(_vm._s(education.degree))])]),_vm._v(" "),_c('div',{staticClass:"row"},[_c('span',{staticClass:"degree-description"},[_vm._v(_vm._s(education.description))])])])})],2),_vm._v(" "),_c('div',{staticClass:"skill-section"},[_c('h3',[_vm._v(_vm._s(_vm.lang.skills))]),_vm._v(" "),_vm._l((_vm.person.skills),function(skill){return _c('div',{key:skill.name,staticClass:"skills"},[_c('div',{staticClass:"skill-block"},[_c('i',{staticClass:"material-icons"},[_vm._v("details")]),_vm._v(" "),_c('span',{staticClass:"skill"},[_vm._v(_vm._s(skill.name))])])])})],2),_vm._v(" "),_c('div',{staticClass:"skills-other"},[_c('span',[_vm._v(_vm._s(_vm.person.knowledge)+" ")])]),_vm._v(" "),_c('div',{staticClass:"contact"},[_c('h3',[_vm._v(_vm._s(_vm.lang.contact))]),_vm._v(" "),_c('a',{attrs:{"href":'mailto:'+_vm.person.contact.email}},[_vm._v(" "+_vm._s(_vm.person.contact.email))]),_vm._v(" "),_c('span',[_vm._v("; ")]),_vm._v(" "),_c('a',{attrs:{"href":'tel:'+_vm.person.contact.phone}},[_vm._v(_vm._s(_vm.person.contact.phone))]),_vm._v(" "),_c('span',[_vm._v("; ")]),_vm._v(" "),_c('span',[_vm._v(_vm._s(_vm.person.contact.street)+", "+_vm._s(_vm.person.contact.city))]),_vm._v(" "),_c('span',[_vm._v("; ")]),_vm._v(" "),(_vm.person.contact.website)?_c('a',{attrs:{"href":_vm.person.contact.website}},[_vm._v("\n "+_vm._s(_vm.person.contact.website))]):_vm._e(),_vm._v(" "),(_vm.person.contact.website)?_c('span',[_vm._v("; ")]):_vm._e(),_vm._v(" "),(_vm.person.contact.github)?_c('a',{attrs:{"href":'https://github.com/'+_vm.person.contact.github}},[_vm._v("\n https://github.com/"+_vm._s(_vm.person.contact.github))]):_vm._e()])])])} +var staticRenderFns = [] +var esExports = { render: render, staticRenderFns: staticRenderFns } +/* harmony default export */ __webpack_exports__["a"] = (esExports); + +/***/ }), +/* 133 */ +/***/ (function(module, __webpack_exports__, __webpack_require__) { + +"use strict"; +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__node_modules_vue_loader_lib_runtime_component_normalizer__ = __webpack_require__(2); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_side_bar_vue__ = __webpack_require__(27); +/* unused harmony reexport namespace */ +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__node_modules_vue_loader_lib_template_compiler_index_id_data_v_7a8de726_hasScoped_true_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_side_bar_vue__ = __webpack_require__(135); +function injectStyle (context) { + __webpack_require__(134) +} + +/* script */ + + +/* template */ + +/* template functional */ +var __vue_template_functional__ = false +/* styles */ +var __vue_styles__ = injectStyle +/* scopeId */ +var __vue_scopeId__ = "data-v-7a8de726" +/* moduleIdentifier (server only) */ +var __vue_module_identifier__ = null +var Component = Object(__WEBPACK_IMPORTED_MODULE_0__node_modules_vue_loader_lib_runtime_component_normalizer__["a" /* default */])( + __WEBPACK_IMPORTED_MODULE_1__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_side_bar_vue__["a" /* default */], + __WEBPACK_IMPORTED_MODULE_2__node_modules_vue_loader_lib_template_compiler_index_id_data_v_7a8de726_hasScoped_true_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_side_bar_vue__["a" /* default */], + __vue_template_functional__, + __vue_styles__, + __vue_scopeId__, + __vue_module_identifier__ +) + +/* unused harmony default export */ var _unused_webpack_default_export = (Component.exports); + + +/***/ }), +/* 134 */ +/***/ (function(module, exports) { + +// removed by extract-text-webpack-plugin + +/***/ }), +/* 135 */ +/***/ (function(module, __webpack_exports__, __webpack_require__) { + +"use strict"; +var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:"resume",attrs:{"id":"resume2"}},[_c('div',{staticClass:"top-row"},[_c('span',{staticClass:"person-name"},[_vm._v("\n "+_vm._s(_vm.person.name.first)+" "+_vm._s(_vm.person.name.middle)+" "+_vm._s(_vm.person.name.last)+"\n ")]),_vm._v(" "),_c('span',{staticClass:"person-position"},[_vm._v("\n "+_vm._s(_vm.person.position)+"\n ")])]),_vm._v(" "),_c('div',{staticClass:"left-col"},[_vm._m(0),_vm._v(" "),_c('div',{staticClass:"contact"},[_c('h3',[_vm._v(_vm._s(_vm.lang.contact))]),_vm._v(" "),_c('div',{staticClass:"contact-row"},[_c('a',{attrs:{"href":'mailto:'+_vm.person.contact.email}},[_vm._v(_vm._s(_vm.person.contact.email))])]),_vm._v(" "),_vm._m(1),_vm._v(" "),_c('div',{staticClass:"contact-row"},[_c('a',{attrs:{"href":'tel:'+_vm.person.contact.phone}},[_vm._v(_vm._s(_vm.person.contact.phone))])]),_vm._v(" "),_vm._m(2),_vm._v(" "),_c('div',{staticClass:"contact-row"},[_vm._v("\n "+_vm._s(_vm.person.contact.street)+" "),_c('br'),_vm._v(" "+_vm._s(_vm.person.contact.city)+"\n ")]),_vm._v(" "),(_vm.person.contact.github)?_c('div',{staticClass:"contact-row dots"},[_c('i',{staticClass:"fa fa-circle",attrs:{"aria-hidden":"true"}}),_vm._v(" "),_c('i',{staticClass:"fa fa-circle",attrs:{"aria-hidden":"true"}}),_vm._v(" "),_c('i',{staticClass:"fa fa-circle",attrs:{"aria-hidden":"true"}})]):_vm._e(),_vm._v(" "),(_vm.person.contact.github)?_c('div',{staticClass:"contact-row"},[_c('a',{attrs:{"href":'https://github.com/'+_vm.person.contact.github}},[_vm._v("https://github.com/"+_vm._s(_vm.person.contact.github))])]):_vm._e()])]),_vm._v(" "),_c('div',{staticClass:"right-col"},[_c('div',{staticClass:"experience"},[_c('h3',[_vm._v(_vm._s(_vm.lang.experience))]),_vm._v(" "),_vm._l((_vm.person.experience),function(experience){return _c('div',{key:experience.company,staticClass:"experience-block"},[_c('div',{staticClass:"row"},[_c('span',{staticClass:"company"},[_vm._v(" "+_vm._s(experience.company)+" -")]),_vm._v(" "),_c('span',{staticClass:"job-title"},[_vm._v(" "+_vm._s(experience.position)+" ")])]),_vm._v(" "),_c('div',{staticClass:"row"},[_c('span',{staticClass:"time-period"},[_vm._v(" "+_vm._s(experience.timeperiod))])]),_vm._v(" "),_c('div',{staticClass:"row"},[_c('span',{staticClass:"job-description"},[_vm._v(" "+_vm._s(experience.description)+" ")])])])})],2),_vm._v(" "),_c('div',{staticClass:"education"},[_c('h3',[_vm._v(_vm._s(_vm.lang.education))]),_vm._v(" "),_vm._l((_vm.person.education),function(education){return _c('div',{key:education.degree,staticClass:"education-block"},[_c('div',{staticClass:"row"},[_c('span',{staticClass:"degree"},[_vm._v(_vm._s(education.degree))])]),_vm._v(" "),_c('div',{staticClass:"row"},[_c('span',{staticClass:"degree-description"},[_vm._v(_vm._s(education.description))])])])})],2),_vm._v(" "),_c('div',{staticClass:"skills-block"},[_c('h3',[_vm._v(_vm._s(_vm.lang.skills))]),_vm._v(" "),_c('div',{staticClass:"skills"},_vm._l((_vm.person.skills),function(skill){return _c('div',{key:skill.name,staticClass:"skill"},[_c('span',{staticClass:"skill-name"},[_vm._v(_vm._s(skill.name))])])})),_vm._v(" "),_c('span',{staticClass:"skills-other"},[_vm._v(" "+_vm._s(_vm.person.knowledge)+" ")])])])])} +var staticRenderFns = [function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:"person-image"},[_c('div',{staticClass:"image-centerer"},[_c('div',{staticClass:"img"})])])},function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:"contact-row dots"},[_c('i',{staticClass:"fa fa-circle",attrs:{"aria-hidden":"true"}}),_vm._v(" "),_c('i',{staticClass:"fa fa-circle",attrs:{"aria-hidden":"true"}}),_vm._v(" "),_c('i',{staticClass:"fa fa-circle",attrs:{"aria-hidden":"true"}})])},function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:"contact-row dots"},[_c('i',{staticClass:"fa fa-circle",attrs:{"aria-hidden":"true"}}),_vm._v(" "),_c('i',{staticClass:"fa fa-circle",attrs:{"aria-hidden":"true"}}),_vm._v(" "),_c('i',{staticClass:"fa fa-circle",attrs:{"aria-hidden":"true"}})])}] +var esExports = { render: render, staticRenderFns: staticRenderFns } +/* harmony default export */ __webpack_exports__["a"] = (esExports); + +/***/ }), +/* 136 */ +/***/ (function(module, __webpack_exports__, __webpack_require__) { + +"use strict"; +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__node_modules_vue_loader_lib_runtime_component_normalizer__ = __webpack_require__(2); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_purple_vue__ = __webpack_require__(28); +/* unused harmony reexport namespace */ +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__node_modules_vue_loader_lib_template_compiler_index_id_data_v_0dad0972_hasScoped_true_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_purple_vue__ = __webpack_require__(138); +function injectStyle (context) { + __webpack_require__(137) +} + +/* script */ + + +/* template */ + +/* template functional */ +var __vue_template_functional__ = false +/* styles */ +var __vue_styles__ = injectStyle +/* scopeId */ +var __vue_scopeId__ = "data-v-0dad0972" +/* moduleIdentifier (server only) */ +var __vue_module_identifier__ = null +var Component = Object(__WEBPACK_IMPORTED_MODULE_0__node_modules_vue_loader_lib_runtime_component_normalizer__["a" /* default */])( + __WEBPACK_IMPORTED_MODULE_1__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_purple_vue__["a" /* default */], + __WEBPACK_IMPORTED_MODULE_2__node_modules_vue_loader_lib_template_compiler_index_id_data_v_0dad0972_hasScoped_true_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_purple_vue__["a" /* default */], + __vue_template_functional__, + __vue_styles__, + __vue_scopeId__, + __vue_module_identifier__ +) + +/* unused harmony default export */ var _unused_webpack_default_export = (Component.exports); + + +/***/ }), +/* 137 */ +/***/ (function(module, exports) { + +// removed by extract-text-webpack-plugin + +/***/ }), +/* 138 */ +/***/ (function(module, __webpack_exports__, __webpack_require__) { + +"use strict"; +var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:"resume",attrs:{"id":"template"}},[_c('div',{attrs:{"id":"resume-header"}},[_c('div',{attrs:{"id":"header-left"}},[_c('h2',{attrs:{"id":"position"}},[_vm._v(_vm._s(_vm.person.position))]),_vm._v(" "),_c('h1',{attrs:{"id":"name"}},[_vm._v(_vm._s(_vm.person.name.first)+" "+_vm._s(_vm.person.name.last))]),_vm._v(" "),_c('div',{attrs:{"id":"info-flex"}},[_c('span',{attrs:{"id":"email"}},[_c('a',{attrs:{"href":"mailto:" + _vm.person.contact.email}},[_c('i',{staticClass:"fa fa-envelope",attrs:{"aria-hidden":"true"}}),_vm._v(" "+_vm._s(_vm.person.contact.email))])]),_vm._v(" "),_c('span',{attrs:{"id":"phone"}},[_c('i',{staticClass:"fa fa-phone-square",attrs:{"aria-hidden":"true"}}),_vm._v(" "+_vm._s(_vm.person.contact.phone))]),_vm._v(" "),(_vm.person.contact.website)?_c('span',{attrs:{"id":"website"}},[_c('a',{attrs:{"href":_vm.person.contact.website}},[_c('i',{staticClass:"fa fa-home",attrs:{"aria-hidden":"true"}}),_vm._v(" "+_vm._s(_vm.person.contact.website))])]):_vm._e(),_vm._v(" "),(_vm.person.contact.github)?_c('span',{attrs:{"id":"github"}},[_c('a',{attrs:{"href":"https://github.com/" + _vm.person.contact.github}},[_c('i',{staticClass:"fa fa-github",attrs:{"aria-hidden":"true"}}),_vm._v(" "+_vm._s(_vm.person.contact.github))])]):_vm._e()])]),_vm._v(" "),_vm._m(0)]),_vm._v(" "),_c('div',{attrs:{"id":"resume-body"}},[_c('div',{attrs:{"id":"experience-container"}},[_c('h2',{attrs:{"id":"experience-title"}},[_vm._v(_vm._s(_vm.lang.experience))]),_vm._v(" "),_c('div',{staticClass:"spacer"}),_vm._v(" "),_vm._l((_vm.person.experience),function(experience){return _c('div',{key:experience.company,staticClass:"experience"},[_c('h2',{staticClass:"company"},[_vm._v(_vm._s(experience.company))]),_vm._v(" "),_c('p',{staticClass:"job-info"},[_c('span',{staticClass:"job-title"},[_vm._v(_vm._s(experience.position)+" | ")]),_c('span',{staticClass:"experience-timeperiod"},[_vm._v(_vm._s(experience.timeperiod))])]),_vm._v(" "),(experience.description)?_c('p',{staticClass:"job-description"},[_vm._v(_vm._s(experience.description))]):_vm._e(),_vm._v(" "),(experience.list)?_c('ul',_vm._l((experience.list),function(item,index){return _c('li',{key:index},[_c('span',{staticClass:"list-item-black"},[_vm._v("\n "+_vm._s(item)+"\n ")])])})):_vm._e()])})],2),_vm._v(" "),_c('div',{attrs:{"id":"education-container"}},[_c('h2',{attrs:{"id":"education-title"}},[_vm._v(_vm._s(_vm.lang.education))]),_vm._v(" "),_c('div',{staticClass:"spacer"}),_vm._v(" "),_vm._l((_vm.person.education),function(education){return _c('div',{key:education.degree,staticClass:"education"},[_c('h2',{staticClass:"education-description"},[_vm._v(_vm._s(education.description))]),_vm._v(" "),_c('p',[_c('span',{staticClass:"degree"},[_vm._v(_vm._s(education.degree)+" | ")]),_c('span',{staticClass:"education-timeperiod"},[_vm._v(_vm._s(education.timeperiod))])])])})],2),_vm._v(" "),(_vm.person.skills != [])?_c('div',{attrs:{"id":"skills-container"}},[_c('h2',{attrs:{"id":"skills-title"}},[_vm._v(_vm._s(_vm.lang.skills))]),_vm._v(" "),_c('div',{staticClass:"spacer"}),_vm._v(" "),_c('p',{attrs:{"id":"skill-description"}},[_vm._v(_vm._s(_vm.person.knowledge))]),_vm._v(" "),_c('ul',{attrs:{"id":"skill-list"}},_vm._l((_vm.person.skills),function(skill){return _c('li',{key:skill.name,staticClass:"skill"},[_c('span',{staticClass:"list-item-black"},[_vm._v("\n "+_vm._s(skill.name)+"\n ")])])}))]):_vm._e()]),_vm._v(" "),_c('div',{attrs:{"id":"resume-footer"}},[(_vm.person.about)?_c('div',[_c('h2',[_vm._v(_vm._s(_vm.lang.about))]),_vm._v(" "),_c('p',[_vm._v(_vm._s(_vm.person.about))])]):_vm._e()])])} +var staticRenderFns = [function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{attrs:{"id":"header-right"}},[_c('div',{attrs:{"id":"headshot"}})])}] +var esExports = { render: render, staticRenderFns: staticRenderFns } +/* harmony default export */ __webpack_exports__["a"] = (esExports); + +/***/ }), +/* 139 */ +/***/ (function(module, __webpack_exports__, __webpack_require__) { + +"use strict"; +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__node_modules_vue_loader_lib_runtime_component_normalizer__ = __webpack_require__(2); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_side_bar_rtl_vue__ = __webpack_require__(29); +/* unused harmony reexport namespace */ +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__node_modules_vue_loader_lib_template_compiler_index_id_data_v_5a320576_hasScoped_true_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_side_bar_rtl_vue__ = __webpack_require__(141); +function injectStyle (context) { + __webpack_require__(140) +} + +/* script */ + + +/* template */ + +/* template functional */ +var __vue_template_functional__ = false +/* styles */ +var __vue_styles__ = injectStyle +/* scopeId */ +var __vue_scopeId__ = "data-v-5a320576" +/* moduleIdentifier (server only) */ +var __vue_module_identifier__ = null +var Component = Object(__WEBPACK_IMPORTED_MODULE_0__node_modules_vue_loader_lib_runtime_component_normalizer__["a" /* default */])( + __WEBPACK_IMPORTED_MODULE_1__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_side_bar_rtl_vue__["a" /* default */], + __WEBPACK_IMPORTED_MODULE_2__node_modules_vue_loader_lib_template_compiler_index_id_data_v_5a320576_hasScoped_true_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_side_bar_rtl_vue__["a" /* default */], + __vue_template_functional__, + __vue_styles__, + __vue_scopeId__, + __vue_module_identifier__ +) + +/* unused harmony default export */ var _unused_webpack_default_export = (Component.exports); + + +/***/ }), +/* 140 */ +/***/ (function(module, exports) { + +// removed by extract-text-webpack-plugin + +/***/ }), +/* 141 */ +/***/ (function(module, __webpack_exports__, __webpack_require__) { + +"use strict"; +var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:"resume",attrs:{"id":"resume2"}},[_c('div',{staticClass:"top-row"},[_c('span',{staticClass:"person-name"},[_vm._v("\n "+_vm._s(_vm.person.name.first)+" "+_vm._s(_vm.person.name.middle)+" "+_vm._s(_vm.person.name.last)+"\n ")]),_vm._v(" "),_c('span',{staticClass:"person-position"},[_vm._v("\n "+_vm._s(_vm.person.position)+"\n ")])]),_vm._v(" "),_c('div',{staticClass:"right-col"},[_vm._m(0),_vm._v(" "),_c('div',{staticClass:"contact"},[_c('h3',[_vm._v(_vm._s(_vm.lang.contact))]),_vm._v(" "),_c('div',{staticClass:"contact-row"},[_c('a',{attrs:{"href":'mailto:'+_vm.person.contact.email}},[_vm._v(_vm._s(_vm.person.contact.email))])]),_vm._v(" "),_vm._m(1),_vm._v(" "),_c('div',{staticClass:"contact-row"},[_c('a',{attrs:{"href":"'tel:'+person.contact.phone"}},[_vm._v(_vm._s(_vm.person.contact.phone))])]),_vm._v(" "),_vm._m(2),_vm._v(" "),_c('div',{staticClass:"contact-row"},[_vm._v("\n "+_vm._s(_vm.person.contact.street)+" "),_c('br'),_vm._v(" "+_vm._s(_vm.person.contact.city)+"\n ")]),_vm._v(" "),_vm._m(3),_vm._v(" "),_c('div',{staticClass:"contact-row"},[_c('a',{attrs:{"href":'https://github.com/'+_vm.person.contact.github}},[_vm._v("https://github.com/"+_vm._s(_vm.person.contact.github))])])])]),_vm._v(" "),_c('div',{staticClass:"left-col"},[_c('div',{staticClass:"experience"},[_c('h3',[_vm._v(_vm._s(_vm.lang.experience))]),_vm._v(" "),_vm._l((_vm.person.experience),function(experience){return _c('div',{staticClass:"experience-block"},[_c('div',{staticClass:"row"},[_c('span',{staticClass:"company"},[_vm._v(" "+_vm._s(experience.company)+" -")]),_vm._v(" "),_c('span',{staticClass:"job-title"},[_vm._v(" "+_vm._s(experience.position)+" ")])]),_vm._v(" "),_c('div',{staticClass:"row"},[_c('span',{staticClass:"time-period"},[_vm._v(" "+_vm._s(experience.timeperiod))])]),_vm._v(" "),_c('div',{staticClass:"row"},[_c('span',{staticClass:"job-description"},[_vm._v(" "+_vm._s(experience.description)+" ")])])])})],2),_vm._v(" "),_c('div',{staticClass:"education"},[_c('h3',[_vm._v(_vm._s(_vm.lang.education))]),_vm._v(" "),_vm._l((_vm.person.education),function(education){return _c('div',{staticClass:"education-block"},[_c('div',{staticClass:"row"},[_c('span',{staticClass:"degree"},[_vm._v(_vm._s(education.degree))])]),_vm._v(" "),_c('div',{staticClass:"row"},[_c('span',{staticClass:"degree-description"},[_vm._v(_vm._s(education.description))])])])})],2),_vm._v(" "),_c('div',{staticClass:"skills-block"},[_c('h3',[_vm._v(_vm._s(_vm.lang.skills))]),_vm._v(" "),_c('div',{staticClass:"skills"},_vm._l((_vm.person.skills),function(skill){return _c('div',{staticClass:"skill"},[_c('span',{staticClass:"skill-name"},[_vm._v(_vm._s(skill.name))])])})),_vm._v(" "),_c('span',{staticClass:"skills-other"},[_vm._v(" "+_vm._s(_vm.person.knowledge)+" ")])])])])} +var staticRenderFns = [function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:"person-image"},[_c('div',{staticClass:"image-centerer"},[_c('div',{staticClass:"img"})])])},function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:"contact-row dots"},[_c('i',{staticClass:"fa fa-circle",attrs:{"aria-hidden":"true"}}),_vm._v(" "),_c('i',{staticClass:"fa fa-circle",attrs:{"aria-hidden":"true"}}),_vm._v(" "),_c('i',{staticClass:"fa fa-circle",attrs:{"aria-hidden":"true"}})])},function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:"contact-row dots"},[_c('i',{staticClass:"fa fa-circle",attrs:{"aria-hidden":"true"}}),_vm._v(" "),_c('i',{staticClass:"fa fa-circle",attrs:{"aria-hidden":"true"}}),_vm._v(" "),_c('i',{staticClass:"fa fa-circle",attrs:{"aria-hidden":"true"}})])},function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:"contact-row dots"},[_c('i',{staticClass:"fa fa-circle",attrs:{"aria-hidden":"true"}}),_vm._v(" "),_c('i',{staticClass:"fa fa-circle",attrs:{"aria-hidden":"true"}}),_vm._v(" "),_c('i',{staticClass:"fa fa-circle",attrs:{"aria-hidden":"true"}})])}] +var esExports = { render: render, staticRenderFns: staticRenderFns } +/* harmony default export */ __webpack_exports__["a"] = (esExports); + +/***/ }), +/* 142 */ +/***/ (function(module, __webpack_exports__, __webpack_require__) { + +"use strict"; +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__node_modules_vue_loader_lib_runtime_component_normalizer__ = __webpack_require__(2); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_left_right_rtl_vue__ = __webpack_require__(30); +/* unused harmony reexport namespace */ +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__node_modules_vue_loader_lib_template_compiler_index_id_data_v_0b36d5e6_hasScoped_true_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_left_right_rtl_vue__ = __webpack_require__(144); +function injectStyle (context) { + __webpack_require__(143) +} + +/* script */ + + +/* template */ + +/* template functional */ +var __vue_template_functional__ = false +/* styles */ +var __vue_styles__ = injectStyle +/* scopeId */ +var __vue_scopeId__ = "data-v-0b36d5e6" +/* moduleIdentifier (server only) */ +var __vue_module_identifier__ = null +var Component = Object(__WEBPACK_IMPORTED_MODULE_0__node_modules_vue_loader_lib_runtime_component_normalizer__["a" /* default */])( + __WEBPACK_IMPORTED_MODULE_1__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_left_right_rtl_vue__["a" /* default */], + __WEBPACK_IMPORTED_MODULE_2__node_modules_vue_loader_lib_template_compiler_index_id_data_v_0b36d5e6_hasScoped_true_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_left_right_rtl_vue__["a" /* default */], + __vue_template_functional__, + __vue_styles__, + __vue_scopeId__, + __vue_module_identifier__ +) + +/* unused harmony default export */ var _unused_webpack_default_export = (Component.exports); + + +/***/ }), +/* 143 */ +/***/ (function(module, exports) { + +// removed by extract-text-webpack-plugin + +/***/ }), +/* 144 */ +/***/ (function(module, __webpack_exports__, __webpack_require__) { + +"use strict"; +var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:"resume",attrs:{"id":"resume1"}},[_c('div',{staticClass:"row text-center"},[_c('span',{staticClass:"name"},[_vm._v(_vm._s(_vm.person.name.first)+" "+_vm._s(_vm.person.name.middle)+" "+_vm._s(_vm.person.name.last))])]),_vm._v(" "),_c('div',{staticClass:"row text-center"},[_c('p',{staticClass:"position center"},[_vm._v(_vm._s(_vm.person.position))])]),_vm._v(" "),_vm._m(0),_vm._v(" "),_c('div',{staticClass:"left half"},[_c('div',{staticClass:"experience"},[_c('h3',[_vm._v(_vm._s(_vm.lang.experience))]),_vm._v(" "),_vm._l((_vm.person.experience),function(experience){return _c('div',{key:experience.company,staticClass:"experience-block"},[_c('span',{staticClass:"company"},[_vm._v(" "+_vm._s(experience.company)+" ")]),_vm._v(" "),_c('span',{staticClass:"job-title"},[_vm._v(" "+_vm._s(experience.position)+" ")]),_vm._v(" "),_c('span',{staticClass:"time-period"},[_vm._v(" "+_vm._s(experience.timeperiod))]),_vm._v(" "),_c('span',{staticClass:"job-description"},[_vm._v(" "+_vm._s(experience.description)+" ")])])})],2),_vm._v(" "),_c('div',{staticClass:"contact"},[_c('h3',[_vm._v(_vm._s(_vm.lang.contact))]),_vm._v(" "),_c('table',[_c('tr',[_vm._m(1),_vm._v(" "),_c('td',[_c('a',{attrs:{"href":'mailto:'+_vm.person.contact.email}},[_vm._v(_vm._s(_vm.person.contact.email))])])]),_vm._v(" "),_c('tr',[_vm._m(2),_vm._v(" "),_c('td',[_c('a',{attrs:{"href":'tel:'+_vm.person.contact.phone}},[_vm._v(_vm._s(_vm.person.contact.phone))])])]),_vm._v(" "),_c('tr',[_vm._m(3),_vm._v(" "),_c('td',[_vm._v(_vm._s(_vm.person.contact.street)+" "),_c('br'),_vm._v(" "+_vm._s(_vm.person.contact.city))])]),_vm._v(" "),(_vm.person.contact.website)?_c('tr',[_vm._m(4),_vm._v(" "),_c('td',[_c('a',{attrs:{"href":_vm.person.contact.website}},[_vm._v(_vm._s(_vm.person.contact.website))])])]):_vm._e(),_vm._v(" "),(_vm.person.contact.github)?_c('tr',[_vm._m(5),_vm._v(" "),_c('td',[_c('a',{attrs:{"href":'https://github.com/'+_vm.person.contact.github}},[_vm._v("https://github.com/"+_vm._s(_vm.person.contact.github))])])]):_vm._e()])])]),_vm._v(" "),_c('div',{staticClass:"right half"},[_c('div',{staticClass:"education"},[_c('h3',[_vm._v(_vm._s(_vm.lang.education))]),_vm._v(" "),_vm._l((_vm.person.education),function(education){return _c('div',{key:education.degree,staticClass:"education-block"},[_c('span',{staticClass:"degree"},[_vm._v(_vm._s(education.degree))]),_vm._v(" "),_c('span',{staticClass:"degree-description"},[_vm._v(_vm._s(education.description))])])})],2),_vm._v(" "),_c('h3',[_vm._v(_vm._s(_vm.lang.skills))]),_vm._v(" "),_c('div',{staticClass:"skills"},_vm._l((_vm.person.skills),function(skill){return _c('div',{key:skill.name,staticClass:"skill-block"},[_c('span',{staticClass:"skill"},[_vm._v(_vm._s(skill.name))]),_vm._v(" "),_c('div',{staticClass:"skill-bar"},[_c('div',{staticClass:"level",style:('width: '+skill.level+'%')})])])})),_vm._v(" "),_c('span',{staticClass:"skills-other"},[_vm._v(" "+_vm._s(_vm.person.skillDescription)+" ")])])])} +var staticRenderFns = [function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:"row"},[_c('div',{staticClass:"image center"},[_c('div',{staticClass:"img"})])])},function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('td',[_c('i',{staticClass:"fa fa-envelope",attrs:{"aria-hidden":"true"}})])},function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('td',[_c('i',{staticClass:"fa fa-phone",attrs:{"aria-hidden":"true"}})])},function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('td',[_c('i',{staticClass:"fa fa-home",attrs:{"aria-hidden":"true"}})])},function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('td',[_c('i',{staticClass:"fa fa-globe",attrs:{"aria-hidden":"true"}})])},function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('td',[_c('i',{staticClass:"fa fa-github",attrs:{"aria-hidden":"true"}})])}] +var esExports = { render: render, staticRenderFns: staticRenderFns } +/* harmony default export */ __webpack_exports__["a"] = (esExports); + +/***/ }), +/* 145 */ +/***/ (function(module, __webpack_exports__, __webpack_require__) { + +"use strict"; +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__node_modules_vue_loader_lib_runtime_component_normalizer__ = __webpack_require__(2); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_creative_vue__ = __webpack_require__(31); +/* unused harmony reexport namespace */ +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__node_modules_vue_loader_lib_template_compiler_index_id_data_v_c5510dfe_hasScoped_true_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_creative_vue__ = __webpack_require__(147); +function injectStyle (context) { + __webpack_require__(146) +} + +/* script */ + + +/* template */ + +/* template functional */ +var __vue_template_functional__ = false +/* styles */ +var __vue_styles__ = injectStyle +/* scopeId */ +var __vue_scopeId__ = "data-v-c5510dfe" +/* moduleIdentifier (server only) */ +var __vue_module_identifier__ = null +var Component = Object(__WEBPACK_IMPORTED_MODULE_0__node_modules_vue_loader_lib_runtime_component_normalizer__["a" /* default */])( + __WEBPACK_IMPORTED_MODULE_1__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_creative_vue__["a" /* default */], + __WEBPACK_IMPORTED_MODULE_2__node_modules_vue_loader_lib_template_compiler_index_id_data_v_c5510dfe_hasScoped_true_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_creative_vue__["a" /* default */], + __vue_template_functional__, + __vue_styles__, + __vue_scopeId__, + __vue_module_identifier__ +) + +/* unused harmony default export */ var _unused_webpack_default_export = (Component.exports); + + +/***/ }), +/* 146 */ +/***/ (function(module, exports) { + +// removed by extract-text-webpack-plugin + +/***/ }), +/* 147 */ +/***/ (function(module, __webpack_exports__, __webpack_require__) { + +"use strict"; +var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:"resume",attrs:{"id":"resume2"}},[_c('div',{staticClass:"left-column"},[_c('div',[_c('div',{staticClass:"headline"},[_c('span',[_vm._v(" "+_vm._s(_vm.person.name.first)+" "+_vm._s(_vm.person.name.middle)+" ")]),_vm._v(" "),_c('span',{staticClass:"uppercase"},[_vm._v(" "+_vm._s(_vm.person.name.last)+" ")])]),_vm._v(" "),_c('p',[_c('span',{staticClass:"txt-full-white"},[_vm._v(" "+_vm._s(_vm.person.position)+" ")]),_vm._v(" "),_c('br'),_vm._v(" "),_c('span',[_vm._v(" "+_vm._s(_vm.person.contact.city)+" ")])])]),_vm._v(" "),_c('div',{staticClass:"multi-line-txt"},[_vm._v("\n "+_vm._s(_vm.person.about)+"\n ")]),_vm._v(" "),_c('div',{staticClass:"multi-line-txt"},[_vm._v("\n "+_vm._s(_vm.person.knowledge)+"\n ")]),_vm._v(" "),_c('a',{attrs:{"href":'mailto:' + _vm.person.contact.email}},[_c('div',{staticClass:"block-marged txt-full-white"},[_vm._v("\n "+_vm._s(_vm.person.contact.email)+"\n ")])]),_vm._v(" "),_c('div',{staticClass:"block-marged txt-full-white"},[_vm._v("\n "+_vm._s(_vm.person.contact.phone)+"\n ")]),_vm._v(" "),_c('div',{staticClass:"social-container"},[(_vm.person.contact.website)?_c('a',{attrs:{"href":_vm.person.contact.website}},[_c('div',{staticClass:"block-marged txt-full-white"},[_c('i',{staticClass:"fa fa-globe contact-icon"}),_vm._v("\n "+_vm._s(_vm.person.contact.website)+"\n ")])]):_vm._e(),_vm._v(" "),(_vm.person.contact.github)?_c('a',{staticClass:"external-link",attrs:{"href":'https://github.com/' + _vm.person.contact.github}},[_c('i',{staticClass:"fa fa-github contact-icon"}),_vm._v(" "),_c('span',{staticClass:"block-marged txt-full-white"},[_vm._v("\n "+_vm._s(_vm.person.contact.github)+"\n ")])]):_vm._e(),_vm._v(" "),(_vm.person.contact.codefights)?_c('a',{staticClass:"external-link",attrs:{"href":'https://codefights.com/profile/' + _vm.person.contact.codefights}},[_c('svg',{staticClass:"contact-icon-svg",attrs:{"width":"20","height":"20","viewBox":"0 0 24 24"}},[_c('path',{attrs:{"d":"M12 15.2L9.2 4.8 0 3.2l1.7 2.6 5.7.7.7 2.3-3.7-.4 1.3 2 3 .3L12 20.8l3.3-10.1 3-.3 1.3-2-3.7.4.7-2.3 5.7-.7L24 3.2l-9.2 1.6"}})]),_vm._v(" "),_c('span',{staticClass:"block-marged txt-full-white"},[_vm._v("\n "+_vm._s(_vm.person.contact.codefights)+"\n ")])]):_vm._e(),_vm._v(" "),(_vm.person.contact.medium)?_c('a',{staticClass:"external-link",attrs:{"href":'https://medium.com/@' + _vm.person.contact.medium}},[_c('i',{staticClass:"fab fa-medium contact-icon"}),_vm._v(" "),_c('span',{staticClass:"block-marged txt-full-white"},[_vm._v("\n "+_vm._s(_vm.person.contact.medium)+"\n ")])]):_vm._e()]),_vm._v(" "),_c('div',{staticClass:"hobbies-container"},[_c('div',{staticClass:"hobbies-content"},_vm._l((_vm.person.hobbies),function(hobby,index){return _c('a',{key:index,staticClass:"hobby-item",attrs:{"href":hobby.url}},[(hobby.iconClass)?_c('i',{class:hobby.iconClass + ' hobby-item__icon'}):_vm._e(),_vm._v(" "),_c('span',{staticClass:"hobby-item__icon-label"},[_vm._v(" "+_vm._s(hobby.name)+" ")])])}))])]),_vm._v(" "),_c('div',{staticClass:"left-column-bg"}),_vm._v(" "),_c('div',{staticClass:"right-column"},[_c('div',{staticClass:"experience-section section"},[_c('div',{staticClass:"icon"},[_c('i',{staticClass:"material-icons small-icon"},[_vm._v("work")]),_vm._v(" "),_c('span',{staticClass:"section-headline"},[_vm._v(_vm._s(_vm.lang.experience))])]),_vm._v(" "),_c('div',{staticClass:"section-content"},_vm._l((_vm.person.experience),function(experience,index){return _c('a',{key:index,staticClass:"section-content__item",attrs:{"href":experience.website}},[_c('span',{staticClass:"section-content__header"},[_vm._v(" "+_vm._s(experience.position))]),_vm._v(" "),_c('span',{staticClass:"section-content__subheader"},[_vm._v(" "+_vm._s(experience.company))]),_vm._v(" "),_c('div',{staticClass:"section-content__text"},[_vm._v(" "+_vm._s(experience.timeperiod))]),_vm._v(" "),_c('span',{staticClass:"section-content__text--light"},[_vm._v(" "+_vm._s(experience.description))])])}))]),_vm._v(" "),_c('div',{staticClass:"education-section section"},[_c('div',{staticClass:"icon"},[_c('i',{staticClass:"material-icons"},[_vm._v("school")]),_vm._v(" "),_c('span',{staticClass:"section-headline"},[_vm._v(_vm._s(_vm.lang.education))])]),_vm._v(" "),_c('div',{staticClass:"section-content"},_vm._l((_vm.person.education),function(education,index){return _c('a',{key:index,staticClass:"section-content__item",attrs:{"href":education.website}},[_c('span',{staticClass:"section-content__header"},[_vm._v(" "+_vm._s(education.school)+" ")]),_vm._v(" "),_c('span',{staticClass:"section-content__subheader"},[_vm._v(_vm._s(education.degree))]),_vm._v(" "),_c('span',{staticClass:"section-content__text"},[_vm._v(" "+_vm._s(education.timeperiod)+" ")]),_vm._v(" "),_c('span',{staticClass:"section-content__text--light"},[_vm._v(" "+_vm._s(education.description)+" ")])])}))]),_vm._v(" "),(_vm.person.projects)?_c('div',{staticClass:"projects-section section"},[_c('div',{staticClass:"icon"},[_c('i',{staticClass:"material-icons"},[_vm._v("code")]),_vm._v(" "),_c('span',{staticClass:"section-headline"},[_vm._v(" "+_vm._s(_vm.lang.projects)+" ")])]),_vm._v(" "),_c('div',{staticClass:"section-content"},_vm._l((_vm.person.projects),function(project,index){return _c('a',{key:index,staticClass:"section-content__item",attrs:{"href":project.url}},[_c('span',{staticClass:"section-content__header"},[_vm._v(" "+_vm._s(project.name)+" ")]),_vm._v(" "),_c('span',{staticClass:"section-content__subheader"},[_vm._v(_vm._s(project.platform))]),_vm._v(" "),_c('span',{staticClass:"section-content__text"},[_vm._v(" "+_vm._s(project.description)+" ")]),_vm._v(" "),_c('span',{staticClass:"section-content__text--light"},[_vm._v(" "+_vm._s(project.url)+" ")])])}))]):_vm._e(),_vm._v(" "),(_vm.person.skills)?_c('div',{staticClass:"skills-section section"},[_c('div',{staticClass:"icon"},[_c('i',{staticClass:"material-icons"},[_vm._v("done_all")]),_vm._v(" "),_c('span',{staticClass:"section-headline"},[_vm._v(" "+_vm._s(_vm.lang.skills)+" ")])]),_vm._v(" "),_c('div',{staticClass:"section-content-grid"},_vm._l((_vm.person.skills),function(skill,index){return _c('a',{key:index,staticClass:"grid-item",attrs:{"href":skill.url}},[(skill.iconClass)?_c('i',{class:'lang-icon ' + skill.iconClass}):_c('span',{staticClass:"squarred-grid-item"},[_vm._v(" "+_vm._s(skill.name)+" ")])])}))]):_vm._e(),_vm._v(" "),(_vm.person.contributions)?_c('div',{staticClass:"contributions-section section"},[_c('div',{staticClass:"icon"},[_c('i',{staticClass:"fa fa-heart font-awesome-icons"}),_vm._v(" "),_c('span',{staticClass:"section-headline"},[_vm._v(" "+_vm._s(_vm.lang.contributions)+" ")])]),_vm._v(" "),_c('div',{staticClass:"section-content-grid"},_vm._l((_vm.person.contributions),function(contribution,index){return _c('a',{key:index,staticClass:"section-content__item-grid",attrs:{"href":contribution.url}},[_c('span',{staticClass:"section-content__header"},[_vm._v(" "+_vm._s(contribution.name)+" ")]),_vm._v(" "),_c('span',{staticClass:"section-content__text"},[_vm._v(" "+_vm._s(contribution.description)+" ")]),_vm._v(" "),_c('span',{staticClass:"section-content__text--light",staticStyle:{"word-break":"break-all"}},[_vm._v("\n "+_vm._s(contribution.url)+"\n ")])])}))]):_vm._e()])])} +var staticRenderFns = [] +var esExports = { render: render, staticRenderFns: staticRenderFns } +/* harmony default export */ __webpack_exports__["a"] = (esExports); + +/***/ }), +/* 148 */ +/***/ (function(module, __webpack_exports__, __webpack_require__) { + +"use strict"; +var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:"page-wrapper"},[_c('div',{staticClass:"page",attrs:{"id":_vm.$route.params.resumeid}},[_c('div',{staticClass:"page-inner"},[_c(_vm.$route.params.resumeid,{tag:"component"})],1)])])} +var staticRenderFns = [] +var esExports = { render: render, staticRenderFns: staticRenderFns } +/* harmony default export */ __webpack_exports__["a"] = (esExports); + +/***/ }), +/* 149 */ +/***/ (function(module, __webpack_exports__, __webpack_require__) { + +"use strict"; +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__node_modules_vue_loader_lib_runtime_component_normalizer__ = __webpack_require__(2); +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_home_vue__ = __webpack_require__(32); +/* unused harmony namespace reexport */ +/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__node_modules_vue_loader_lib_template_compiler_index_id_data_v_77812a90_hasScoped_true_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_home_vue__ = __webpack_require__(151); +function injectStyle (context) { + __webpack_require__(150) +} + +/* script */ + + +/* template */ + +/* template functional */ +var __vue_template_functional__ = false +/* styles */ +var __vue_styles__ = injectStyle +/* scopeId */ +var __vue_scopeId__ = "data-v-77812a90" +/* moduleIdentifier (server only) */ +var __vue_module_identifier__ = null +var Component = Object(__WEBPACK_IMPORTED_MODULE_0__node_modules_vue_loader_lib_runtime_component_normalizer__["a" /* default */])( + __WEBPACK_IMPORTED_MODULE_1__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_home_vue__["a" /* default */], + __WEBPACK_IMPORTED_MODULE_2__node_modules_vue_loader_lib_template_compiler_index_id_data_v_77812a90_hasScoped_true_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_home_vue__["a" /* default */], + __vue_template_functional__, + __vue_styles__, + __vue_scopeId__, + __vue_module_identifier__ +) + +/* harmony default export */ __webpack_exports__["a"] = (Component.exports); + + +/***/ }), +/* 150 */ +/***/ (function(module, exports) { + +// removed by extract-text-webpack-plugin + +/***/ }), +/* 151 */ +/***/ (function(module, __webpack_exports__, __webpack_require__) { + +"use strict"; +var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:"home"},[_vm._m(0),_vm._v(" "),_vm._m(1),_vm._v(" "),_c('h3',{staticClass:"title"},[_vm._v("best-resume-ever")]),_vm._v(" "),_c('div',{staticClass:"previews"},[_c('div',{staticClass:"preview"},[_c('router-link',{attrs:{"to":'/resume/material-dark'}},[_c('div',{staticClass:"preview-wrapper"},[_c('img',{attrs:{"src":__webpack_require__(152)}}),_vm._v(" "),_c('span',[_vm._v("material-dark")])])])],1),_vm._v(" "),_c('div',{staticClass:"preview"},[_c('router-link',{attrs:{"to":'/resume/left-right'}},[_c('div',{staticClass:"preview-wrapper"},[_c('img',{attrs:{"src":__webpack_require__(153)}}),_vm._v(" "),_c('span',[_vm._v("left-right")])])])],1),_vm._v(" "),_c('div',{staticClass:"preview"},[_c('router-link',{attrs:{"to":'/resume/oblique'}},[_c('div',{staticClass:"preview-wrapper"},[_c('img',{attrs:{"src":__webpack_require__(154)}}),_vm._v(" "),_c('span',[_vm._v("oblique")])])])],1),_vm._v(" "),_c('div',{staticClass:"preview"},[_c('router-link',{attrs:{"to":'/resume/side-bar'}},[_c('div',{staticClass:"preview-wrapper"},[_c('img',{attrs:{"src":__webpack_require__(155)}}),_vm._v(" "),_c('span',[_vm._v("side-bar")])])])],1),_vm._v(" "),_c('div',{staticClass:"preview"},[_c('router-link',{attrs:{"to":'/resume/purple'}},[_c('div',{staticClass:"preview-wrapper"},[_c('img',{attrs:{"src":__webpack_require__(156)}}),_vm._v(" "),_c('span',[_vm._v("purple")])])])],1),_vm._v(" "),_c('div',{staticClass:"preview"},[_c('router-link',{attrs:{"to":'/resume/side-bar-rtl'}},[_c('div',{staticClass:"preview-wrapper"},[_c('img',{attrs:{"src":__webpack_require__(157)}}),_vm._v(" "),_c('span',[_vm._v("side-bar-rtl")])])])],1),_vm._v(" "),_c('div',{staticClass:"preview"},[_c('router-link',{attrs:{"to":'/resume/left-right-rtl'}},[_c('div',{staticClass:"preview-wrapper"},[_c('img',{attrs:{"src":__webpack_require__(158)}}),_vm._v(" "),_c('span',[_vm._v("left-right-rtl")])])])],1),_vm._v(" "),_c('div',{staticClass:"preview"},[_c('router-link',{attrs:{"to":'/resume/creative'}},[_c('div',{staticClass:"preview-wrapper"},[_c('img',{attrs:{"src":__webpack_require__(159)}}),_vm._v(" "),_c('span',[_vm._v("creative")])])])],1)])])} +var staticRenderFns = [function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('a',{attrs:{"href":"https://github.com/salomonelli/best-resume-ever","target":"_blank"}},[_c('img',{staticStyle:{"position":"absolute","top":"0","right":"0","border":"0"},attrs:{"src":"https://camo.githubusercontent.com/38ef81f8aca64bb9a64448d0d70f1308ef5341ab/68747470733a2f2f73332e616d617a6f6e6177732e636f6d2f6769746875622f726962626f6e732f666f726b6d655f72696768745f6461726b626c75655f3132313632312e706e67","alt":"Fork me on GitHub","data-canonical-src":"https://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png"}})])},function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:"logo"},[_c('img',{attrs:{"src":__webpack_require__(160)}})])}] +var esExports = { render: render, staticRenderFns: staticRenderFns } +/* harmony default export */ __webpack_exports__["a"] = (esExports); + +/***/ }), +/* 152 */ +/***/ (function(module, exports, __webpack_require__) { + +module.exports = __webpack_require__.p + "static/img/resume-material-dark.57f3ae8.png"; + +/***/ }), +/* 153 */ +/***/ (function(module, exports, __webpack_require__) { + +module.exports = __webpack_require__.p + "static/img/resume-left-right.1244943.png"; + +/***/ }), +/* 154 */ +/***/ (function(module, exports, __webpack_require__) { + +module.exports = __webpack_require__.p + "static/img/resume-oblique.5d80820.png"; + +/***/ }), +/* 155 */ +/***/ (function(module, exports, __webpack_require__) { + +module.exports = __webpack_require__.p + "static/img/resume-side-bar.61dbca6.png"; + +/***/ }), +/* 156 */ +/***/ (function(module, exports, __webpack_require__) { + +module.exports = __webpack_require__.p + "static/img/resume-purple.b458f56.png"; + +/***/ }), +/* 157 */ +/***/ (function(module, exports, __webpack_require__) { + +module.exports = __webpack_require__.p + "static/img/resume-side-bar-rtl.72fb12a.png"; + +/***/ }), +/* 158 */ +/***/ (function(module, exports, __webpack_require__) { + +module.exports = __webpack_require__.p + "static/img/resume-left-right-rtl.356fd8f.png"; + +/***/ }), +/* 159 */ +/***/ (function(module, exports, __webpack_require__) { + +module.exports = __webpack_require__.p + "static/img/resume-creative.4b5318e.png"; + +/***/ }), +/* 160 */ +/***/ (function(module, exports, __webpack_require__) { + +module.exports = __webpack_require__.p + "static/img/logo.1522a48.png"; + +/***/ }) +],[33]); +//# sourceMappingURL=app.7cb85790ecf110c80b21.js.map \ No newline at end of file diff --git a/docs/static/js/app.7cb85790ecf110c80b21.js.map b/docs/static/js/app.7cb85790ecf110c80b21.js.map new file mode 100644 index 0000000..519eed9 --- /dev/null +++ b/docs/static/js/app.7cb85790ecf110c80b21.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["webpack:///./src/resumes/options.js","webpack:///src/App.vue","webpack:///src/pages/resume.vue","webpack:///src/resumes/material-dark.vue","webpack:///src/resumes/left-right.vue","webpack:///src/resumes/oblique.vue","webpack:///src/resumes/side-bar.vue","webpack:///src/resumes/purple.vue","webpack:///src/resumes/side-bar-rtl.vue","webpack:///src/resumes/left-right-rtl.vue","webpack:///src/resumes/creative.vue","webpack:///src/pages/home.vue","webpack:///./src/main.js","webpack:///./src/App.vue","webpack:///./src/App.vue?4ee9","webpack:///./src/App.vue?f1e9","webpack:///./src/router/index.js","webpack:///./src/pages/resume.vue","webpack:///./src/pages/resume.vue?8632","webpack:///./src/resumes/resumes.js","webpack:///./src/resumes/material-dark.vue","webpack:///./src/resumes/material-dark.vue?71c5","webpack:///./resume/data.yml","webpack:///./src/terms.js","webpack:///./src/lang/en.js","webpack:///./src/lang/de.js","webpack:///./src/lang/fr.js","webpack:///./src/lang/pt.js","webpack:///./src/lang/ca.js","webpack:///./src/lang/cn.js","webpack:///./src/lang/it.js","webpack:///./src/lang/es.js","webpack:///./src/lang/th.js","webpack:///./src/lang/id.js","webpack:///./src/lang/sv.js","webpack:///./src/lang/ru.js","webpack:///./src/lang/pt-br.js","webpack:///./src/lang/hu.js","webpack:///./src/lang/pl.js","webpack:///./src/lang/he.js","webpack:///./src/lang/ja.js","webpack:///./src/lang/zh-tw.js","webpack:///./src/lang/nl.js","webpack:///./src/lang/lt.js","webpack:///./src/lang/tr.js","webpack:///./src/lang/ko.js","webpack:///./src/lang/el.js","webpack:///./src/resumes/material-dark.vue?6887","webpack:///./src/resumes/left-right.vue","webpack:///./src/resumes/left-right.vue?8290","webpack:///./src/resumes/left-right.vue?6b50","webpack:///./src/resumes/oblique.vue","webpack:///./src/resumes/oblique.vue?9a36","webpack:///./src/resumes/oblique.vue?78fa","webpack:///./src/resumes/side-bar.vue","webpack:///./src/resumes/side-bar.vue?724d","webpack:///./src/resumes/side-bar.vue?1895","webpack:///./src/resumes/purple.vue","webpack:///./src/resumes/purple.vue?47c2","webpack:///./src/resumes/purple.vue?e0ff","webpack:///./src/resumes/side-bar-rtl.vue","webpack:///./src/resumes/side-bar-rtl.vue?8069","webpack:///./src/resumes/side-bar-rtl.vue?c5af","webpack:///./src/resumes/left-right-rtl.vue","webpack:///./src/resumes/left-right-rtl.vue?272a","webpack:///./src/resumes/left-right-rtl.vue?2d48","webpack:///./src/resumes/creative.vue","webpack:///./src/resumes/creative.vue?6c76","webpack:///./src/resumes/creative.vue?c002","webpack:///./src/pages/resume.vue?0d8b","webpack:///./src/pages/home.vue","webpack:///./src/pages/home.vue?66eb","webpack:///./src/pages/home.vue?41a5","webpack:///./src/assets/preview/resume-material-dark.png","webpack:///./src/assets/preview/resume-left-right.png","webpack:///./src/assets/preview/resume-oblique.png","webpack:///./src/assets/preview/resume-side-bar.png","webpack:///./src/assets/preview/resume-purple.png","webpack:///./src/assets/preview/resume-side-bar-rtl.png","webpack:///./src/assets/preview/resume-left-right-rtl.png","webpack:///./src/assets/preview/resume-creative.png","webpack:///./src/assets/logo.png"],"names":["getVueOptions","name","opt","data","person","yaml","load","terms","computed","lang","defaultLang","en","useLang","filter","k","forEach","console","log","Vue","config","productionTip","el","router","template","components","App","use","routes","path","component","Home","Resume","de","fr","pt","ca","cn","it","es","th","ru","sv","id","hu","pl","ja","nl","he","lt","tr","ko","contact","born","bornIn","experience","education","skills","projects","contributions","about"],"mappings":";;;;;;;;;;;;;;;;AAAA;AACA;AAGA;;AAKA,SAASA,aAAT,CAAwBC,IAAxB,EAA8B;AAC5B,MAAIC,MAAM;AACRD,UAAMA,IADE;AAERE,QAFQ,kBAEA;AACN,aAAO;AACLC,gBAAQ,+CAAAC,CAAKC,IAAL,CAAU,gEAAV,CADH;AAELC,eAAO,qDAAAA;AAFF,OAAP;AAID,KAPO;;AAQRC,cAAU;AACRC,UADQ,kBACA;AACN,YAAMC,cAAc,KAAKH,KAAL,CAAWI,EAA/B;AACA,YAAMC,UAAU,KAAKL,KAAL,CAAW,KAAKH,MAAL,CAAYK,IAAvB,CAAhB;;AAGA,kFAAYC,WAAZ,EACGG,MADH,CACU;AAAA,iBAAK,CAACD,QAAQE,CAAR,CAAN;AAAA,SADV,EAEGC,OAFH,CAEW,aAAK;AACZC,kBAAQC,GAAR,CAAYH,CAAZ;AACAF,kBAAQE,CAAR,IAAaJ,YAAYI,CAAZ,CAAb;AACD,SALH;;AAOA,eAAOF,OAAP;AACD;AAdO;AARF,GAAV;AAyBA,SAAOV,GAAP;AACD;;;;;;;;;;;;;;;;;;;;;;;AC7BD;QAEA;AADA,G;;;;;;;;;;;ACGA;AACA;AACA;QAEA;AADA,I;;;;;;;;;;;AC8GA;AACA;AACA;;AAEA,8M;;;;;;;;;;;;;;;;;ACxDA;AACA;;AAEA;AACA,8M;;;;;;;;;;;ACDA;AACA;;AAEA;AACA,8M;;;;;;;;;;;ACWA;AACA;;AAEA;AACA,8M;;;;;;;;;;;AC5BA;AACA;;AAEA,kN;;;;;;;;;;;ACqBA;AACA;;AAEA;AACA,8M;;;;;;;;;;;ACtBA;AACA;AACA;AACA,8M;;;;;;;;;;;AC8HA;AACA;;AAEA;;AAEA,8M;;;;;;;;;;ACjIA;AACA;QAEA;AADA,I;;;;;;;;;;;;AC7EA;AACA;AACA;;AAEA,oDAAAgB,CAAIC,MAAJ,CAAWC,aAAX,GAA2B,KAA3B;;AAGA,IAAI,oDAAJ,CAAQ;AACNC,MAAI,MADE;AAENC,UAAA,wDAFM;AAGNC,YAAU,QAHJ;AAINC,cAAY;AACVC,SAAA,qDAAAA;AADU;AAJN,CAAR,E;;;;;;;;;;;;;ACTA;AAAA;AACA,wBAA0S;AAC1S;AACA;AACA;AACA;AACA;AACA;AACqK;AACrK;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;;;;;;AC1BA,yC;;;;;;;;ACAA,0BAA0B,aAAa,0BAA0B,wBAAwB,iBAAiB,OAAO,YAAY;AAC7H;AACA,iBAAiB;AACjB,kE;;;;;;;;;;;ACHA;AACA;AACA;AACA;;AAEA,oDAAAP,CAAIQ,GAAJ,CAAQ,2DAAR;;AAEA,yDAAe,IAAI,2DAAJ,CAAW;AACxBC,UAAQ,CACN;AACEC,UAAM,GADR;AAEE3B,UAAM,MAFR;AAGE4B,eAAW,4DAAAC;AAHb,GADM,EAMN;AACEF,UAAM,mBADR;AAEE3B,UAAM,QAFR;AAGE4B,eAAW,8DAAAE;AAHb,GANM;AADgB,CAAX,CAAf,E;;;;;;;;;;;ACPA;AAAA;AACA,wBAA+S;AAC/S;AACA;AACA;AACA;AACA;AACA;AACuK;AACvK;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;;;;;;AC1BA,yC;;;;;;;;;;;;;;;;ACCA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;ACPA;AAAA;AACA,wBAAgV;AAChV;AACA;AACA;AACA;AACA;AACA;AACuK;AACvK;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;;;;;;AC1BA,yC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;ACAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AAAA;AAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AC3FA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEO,IAAMxB,QAAQ;AACnBI,MAAA,yDADmB,EACfqB,IAAA,yDADe,EACXC,IAAA,yDADW,EACPC,IAAA,yDADO,EACHC,IAAA,yDADG,EACCC,IAAA,yDADD,EACKC,IAAA,yDADL,EACSC,IAAA,yDADT,EACaC,IAAA,yDADb,EACiB,SAAS,6DAD1B,EACgCC,IAAA,0DADhC,EACoCC,IAAA,0DADpC,EACwCC,IAAA,yDADxC,EAC4CC,IAAA,0DAD5C,EACgDC,IAAA,0DADhD,EACoDC,IAAA,0DADpD,EACwDC,IAAA,0DADxD,EAC4DC,IAAA,0DAD5D,EACgE,SAAS,6DADzE,EAC+EC,IAAA,0DAD/E,EACmFC,IAAA,0DADnF,EACuFC,IAAA,0DADvF,EAC2F7B,IAAA,0DAAAA;AAD3F,CAAd,C;;;;;;;;ACvBP,IAAMZ,OAAO;AACX0C,WAAS,SADE;AAEXC,QAAM,MAFK;AAGXC,UAAQ,IAHG;AAIXC,cAAY,YAJD;AAKXC,aAAW,WALA;AAMXC,UAAQ,QANG;AAOXC,YAAU,UAPC;AAQXC,iBAAe,eARJ;AASXC,SAAO;AATI,CAAb;AAWA,yDAAelD,IAAf,E;;;;;;;;ACXA,IAAMA,OAAO;AACX0C,WAAS,SADE;AAEXC,QAAM,SAFK;AAGXC,UAAQ,IAHG;AAIXC,cAAY,iBAJD;AAKXC,aAAW,cALA;AAMXC,UAAQ,iBANG;AAOXC,YAAU,WAPC;AAQXC,iBAAe,WARJ;AASXC,SAAO;AATI,CAAb;AAWA,yDAAelD,IAAf,E;;;;;;;;ACXA,IAAMA,OAAO;AACX0C,WAAS,SADE;AAEXC,QAAM,OAFK;AAGXC,UAAQ,GAHG;AAIXC,cAAY,2BAJD;AAKXC,aAAW,WALA;AAMXC,UAAQ,aANG;AAOXC,YAAU,SAPC;AAQXC,iBAAe,eARJ;AASXC,SAAO;AATI,CAAb;AAWA,yDAAelD,IAAf,E;;;;;;;;ACXA,IAAMA,OAAO;AACX0C,WAAS,WADE;AAEXG,cAAY,0BAFD;AAGXC,aAAW,UAHA;AAIXC,UAAQ,cAJG;AAKXC,YAAU,UALC;AAMXC,iBAAe,eANJ;AAOXC,SAAO;AAPI,CAAb;AASA,yDAAelD,IAAf,E;;;;;;;;ACTA,IAAMA,OAAO;AACX0C,WAAS,UADE;AAEXG,cAAY,aAFD;AAGXC,aAAW,UAHA;AAIXC,UAAQ,YAJG;AAKXC,YAAU,WALC;AAMXC,iBAAe,eANJ;AAOXC,SAAO;AAPI,CAAb;AASA,yDAAelD,IAAf,E;;;;;;;;ACTA,IAAMA,OAAO;AACX0C,WAAS,MADE;AAEXG,cAAY,MAFD;AAGXC,aAAW,MAHA;AAIXC,UAAQ,MAJG;AAKXC,YAAU,IALC;AAMXC,iBAAe,IANJ;AAOXC,SAAO;AAPI,CAAb;AASA,yDAAelD,IAAf,E;;;;;;;;ACTA,IAAMA,OAAO;AACX0C,WAAS,UADE;AAEXG,cAAY,0BAFD;AAGXC,aAAW,YAHA;AAIXC,UAAQ,YAJG;AAKXE,iBAAe,YALJ;AAMXD,YAAU,UANC;AAOXE,SAAO;AAPI,CAAb;AASA,yDAAelD,IAAf,E;;;;;;;;ACTA,IAAMA,OAAO;AACX0C,WAAS,UADE;AAEXG,cAAY,aAFD;AAGXC,aAAW,WAHA;AAIXC,UAAQ,aAJG;AAKXC,YAAU,WALC;AAMXC,iBAAe,gBANJ;AAOXC,SAAO;AAPI,CAAb;AASA,yDAAelD,IAAf,E;;;;;;;ACVA,IAAMA,OAAO;AACX0C,WAAS,cADE;AAEXG,cAAY,iBAFD;AAGXC,aAAW,iBAHA;AAIXC,UAAQ,oBAJG;AAKXG,SAAO;AALI,CAAb;AAOA,yDAAelD,IAAf,E;;;;;;;;ACNA,IAAMA,OAAO;AACX0C,WAAS,QADE;AAEXG,cAAY,YAFD;AAGXC,aAAW,YAHA;AAIXC,UAAQ,cAJG;AAKXC,YAAU,QALC;AAMXC,iBAAe,YANJ;AAOXC,SAAO;AAPI,CAAb;AASA,yDAAelD,IAAf,E;;;;;;;ACVA,IAAMA,OAAO;AACX0C,WAAS,SADE;AAEXG,cAAY,sBAFD;AAGXC,aAAW,YAHA;AAIXC,UAAQ,WAJG;AAKXG,SAAO;AALI,CAAb;AAOA,yDAAelD,IAAf,E;;;;;;;;ACNA,IAAMA,OAAO;AACX0C,WAAS,UADE;AAEXG,cAAY,MAFD;AAGXC,aAAW,aAHA;AAIXC,UAAQ,QAJG;AAKXC,YAAU,UALC;AAMXC,iBAAe,QANJ;AAOXC,SAAO;AAPI,CAAb;;AAUA,yDAAelD,IAAf,E;;;;;;;;ACVA,IAAMA,OAAO;AACX0C,WAAS,SADE;AAEXG,cAAY,0BAFD;;AAIXC,aAAW,oBAJA;AAKXC,UAAQ,cALG;AAMXC,YAAU,UANC;AAOXC,iBAAe,eAPJ;AAQXC,SAAO;AARI,CAAb;AAUA,yDAAelD,IAAf,E;;;;;;;;ACVA,IAAMA,OAAO;AACX0C,WAAS,WADE;AAEXG,cAAY,kBAFD;AAGXC,aAAW,WAHA;AAIXC,UAAQ,WAJG;AAKXC,YAAU,WALC;AAMXC,iBAAe,gBANJ;AAOXC,SAAO;AAPI,CAAb;AASA,yDAAelD,IAAf,E;;;;;;;;ACTA,IAAMA,OAAO;AACX0C,WAAS,SADE;AAEXG,cAAY,eAFD;AAGXC,aAAW,eAHA;AAIXC,UAAQ,cAJG;AAKXC,YAAU,eALC;AAMXC,iBAAe,SANJ;AAOXC,SAAO;AAPI,CAAb;AASA,yDAAelD,IAAf,E;;;;;;;;ACTA,IAAMA,OAAO;AACX0C,WAAS,WADE;AAEXG,cAAY,QAFD;AAGXC,aAAW,OAHA;AAIXC,UAAQ,SAJG;AAKXC,YAAU,UALC;AAMXC,iBAAe,QANJ;AAOXC,SAAO;AAPI,CAAb;AASA,yDAAelD,IAAf,E;;;;;;;;ACTA,IAAMA,OAAO;AACX0C,WAAS,KADE;AAEXG,cAAY,MAFD;AAGXC,aAAW,IAHA;AAIXC,UAAQ,KAJG;AAKXC,YAAU,QALC;AAMXC,iBAAe,IANJ;AAOXC,SAAO;AAPI,CAAb;AASA,yDAAelD,IAAf,E;;;;;;;ACVA,IAAMA,OAAO;AACX0C,WAAS,MADE;AAEXG,cAAY,IAFD;AAGXC,aAAW,IAHA;AAIXC,UAAQ,MAJG;AAKXG,SAAO;AALI,CAAb;AAOA,yDAAelD,IAAf,E;;;;;;;;ACNA,IAAMA,OAAO;AACX0C,WAAS,SADE;AAEXG,cAAY,YAFD;AAGXC,aAAW,aAHA;AAIXC,UAAQ,QAJG;AAKXC,YAAU,WALC;AAMXC,iBAAe,WANJ;AAOXC,SAAO;AAPI,CAAb;AASA,yDAAelD,IAAf,E;;;;;;;ACVA,IAAMA,OAAO;AACX0C,WAAS,WADE;AAEXG,cAAY,UAFD;AAGXC,aAAW,eAHA;AAIXC,UAAQ,UAJG;AAKXG,SAAO;AALI,CAAb;AAOA,yDAAelD,IAAf,E;;;;;;;ACPA,IAAMA,OAAO;AACX0C,WAAS,UADE;AAEXG,cAAY,SAFD;AAGXC,aAAW,QAHA;AAIXC,UAAQ,YAJG;AAKXG,SAAO;AALI,CAAb;AAOA,yDAAelD,IAAf,E;;;;;;;;ACNA,IAAMA,OAAO;AACX0C,WAAS,KADE;AAEXG,cAAY,IAFD;AAGXC,aAAW,IAHA;AAIXC,UAAQ,MAJG;AAKXC,YAAU,MALC;AAMXC,iBAAe,IANJ;AAOXC,SAAO;AAPI,CAAb;AASA,yDAAelD,IAAf,E;;;;;;;ACVA,IAAMA,OAAO;AACX0C,WAAS,aADE;AAEXG,cAAY,wBAFD;AAGXC,aAAW,YAHA;AAIXC,UAAQ,YAJG;AAKXG,SAAO;AALI,CAAb;AAOA,yDAAelD,IAAf,E;;;;;;;ACPA,0BAA0B,aAAa,0BAA0B,wBAAwB,iBAAiB,qBAAqB,YAAY,4BAA4B,YAAY,qBAAqB,wBAAwB,6BAA6B,kBAAkB,wBAAwB,+BAA+B,+EAA+E,mBAAmB,kCAAkC,mBAAmB,wLAAwL,mBAAmB,kCAAkC,mBAAmB,yJAAyJ,OAAO,wCAAwC,YAAY,mBAAmB,kCAAkC,mBAAmB,iGAAiG,OAAO,2CAA2C,YAAY,mBAAmB,kCAAkC,mBAAmB,6HAA6H,OAAO,0EAA0E,YAAY,mBAAmB,kCAAkC,mBAAmB,8MAA8M,OAAO,qDAAqD,YAAY,mBAAmB,kCAAkC,mBAAmB,+FAA+F,wBAAwB,YAAY,+BAA+B,mHAAmH,iBAAiB,mCAAmC,YAAY,oBAAoB,oEAAoE,uBAAuB,YAAY,0DAA0D,GAAG,UAAU,2BAA2B,UAAU,8BAA8B,uBAAuB,YAAY,oBAAoB,2MAA2M,+BAA+B,wGAAwG,iBAAiB,2CAA2C,YAAY,2BAA2B,uBAAuB,uBAAuB,+FAA+F,0BAA0B,8DAA8D,mBAAmB,yEAAyE,wBAAwB,+BAA+B,qGAAqG,iBAAiB,yCAAyC,YAAY,2BAA2B,wBAAwB,uBAAuB,yDAAyD,mBAAmB,sGAAsG,4BAA4B,aAAa,gBAAgB;AAC9vH,oCAAoC,aAAa,0BAA0B,wBAAwB,iBAAiB,mBAAmB,UAAU,6BAA6B,+BAA+B,cAAc,aAAa,0BAA0B,wBAAwB,iBAAiB,mBAAmB,UAAU,6BAA6B,8BAA8B,cAAc,aAAa,0BAA0B,wBAAwB,iBAAiB,mBAAmB,UAAU,6BAA6B,sBAAsB,cAAc,aAAa,0BAA0B,wBAAwB,iBAAiB,mBAAmB,UAAU,6BAA6B,sBAAsB,cAAc,aAAa,0BAA0B,wBAAwB,iBAAiB,mBAAmB,UAAU,2BAA2B,IAAI,cAAc,aAAa,0BAA0B,wBAAwB,iBAAiB,mBAAmB,UAAU,6BAA6B,yBAAyB;AAC1iC,iBAAiB;AACjB,kE;;;;;;;;;;ACHA;AAAA;AACA,yBAAgV;AAChV;AACA;AACA;AACA;AACA;AACA;AACuK;AACvK;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;;;;;;AC1BA,yC;;;;;;;ACAA,0BAA0B,aAAa,0BAA0B,wBAAwB,iBAAiB,4BAA4B,gBAAgB,YAAY,8BAA8B,aAAa,mBAAmB,sIAAsI,8BAA8B,UAAU,8BAA8B,sFAAsF,wBAAwB,YAAY,yBAAyB,iHAAiH,iBAAiB,sDAAsD,aAAa,sBAAsB,sEAAsE,wBAAwB,uEAAuE,0BAA0B,qEAAqE,8BAA8B,qDAAqD,4BAA4B,sBAAsB,gGAAgG,OAAO,2CAA2C,6GAA6G,OAAO,wCAAwC,qSAAqS,OAAO,mCAAmC,oJAAoJ,OAAO,wDAAwD,mIAAmI,yBAAyB,YAAY,wBAAwB,8GAA8G,iBAAiB,mDAAmD,aAAa,qBAAqB,4DAA4D,iCAAiC,4CAA4C,mFAAmF,qBAAqB,4CAA4C,iBAAiB,yCAAyC,aAAa,oBAAoB,qDAAqD,wBAAwB,YAAY,sDAAsD,MAAM,0BAA0B,2BAA2B;AACz8F,oCAAoC,aAAa,0BAA0B,wBAAwB,iBAAiB,kBAAkB,YAAY,2BAA2B,YAAY,kBAAkB,MAAM,cAAc,aAAa,0BAA0B,wBAAwB,wBAAwB,oCAAoC,sBAAsB,IAAI,cAAc,aAAa,0BAA0B,wBAAwB,wBAAwB,iCAAiC,sBAAsB,IAAI,cAAc,aAAa,0BAA0B,wBAAwB,wBAAwB,gCAAgC,sBAAsB,IAAI,cAAc,aAAa,0BAA0B,wBAAwB,wBAAwB,iCAAiC,sBAAsB,IAAI,cAAc,aAAa,0BAA0B,wBAAwB,wBAAwB,kCAAkC,sBAAsB,IAAI;AACp/B,iBAAiB;AACjB,kE;;;;;;;;;;ACHA;AAAA;AACA,yBAAgV;AAChV;AACA;AACA;AACA;AACA;AACA;AACuK;AACvK;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;;;;;;AC1BA,yC;;;;;;;ACAA,0BAA0B,aAAa,0BAA0B,wBAAwB,iBAAiB,4BAA4B,gBAAgB,YAAY,4BAA4B,YAAY,uBAAuB,wBAAwB,4BAA4B,YAAY,6BAA6B,YAAY,qBAAqB,YAAY,mBAAmB,oIAAoI,uBAAuB,gEAAgE,kBAAkB,8BAA8B,6BAA6B,YAAY,yBAAyB,iHAAiH,iBAAiB,sDAAsD,YAAY,kBAAkB,aAAa,wBAAwB,oEAAoE,6BAA6B,6CAA6C,sBAAsB,uEAAuE,kBAAkB,aAAa,0BAA0B,qEAAqE,8BAA8B,wDAAwD,4BAA4B,wBAAwB,8GAA8G,iBAAiB,mDAAmD,YAAY,kBAAkB,aAAa,qBAAqB,6DAA6D,kBAAkB,aAAa,iCAAiC,8CAA8C,4BAA4B,4BAA4B,oGAAoG,iBAAiB,oCAAoC,YAAY,0BAA0B,UAAU,6BAA6B,6CAA6C,oBAAoB,mCAAmC,4BAA4B,2BAA2B,gFAAgF,sBAAsB,kEAAkE,OAAO,2CAA2C,iFAAiF,0BAA0B,OAAO,wCAAwC,6EAA6E,8IAA8I,uDAAuD,OAAO,mCAAmC,wIAAwI,+DAA+D,OAAO,wDAAwD;AACrsG;AACA,iBAAiB;AACjB,kE;;;;;;;;;;ACHA;AAAA;AACA,yBAAgV;AAChV;AACA;AACA;AACA;AACA;AACA;AACuK;AACvK;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;;;;;;AC1BA,yC;;;;;;;ACAA,0BAA0B,aAAa,0BAA0B,wBAAwB,iBAAiB,4BAA4B,gBAAgB,YAAY,sBAAsB,aAAa,0BAA0B,iKAAiK,8BAA8B,4FAA4F,uBAAuB,kCAAkC,sBAAsB,oEAAoE,0BAA0B,UAAU,OAAO,2CAA2C,2FAA2F,0BAA0B,UAAU,OAAO,wCAAwC,2FAA2F,0BAA0B,+LAA+L,+BAA+B,UAAU,kCAAkC,sBAAsB,sBAAsB,kCAAkC,sBAAsB,sBAAsB,kCAAkC,sBAAsB,+DAA+D,0BAA0B,UAAU,OAAO,wDAAwD,yGAAyG,wBAAwB,YAAY,yBAAyB,iHAAiH,iBAAiB,sDAAsD,YAAY,kBAAkB,aAAa,sBAAsB,uEAAuE,wBAAwB,wEAAwE,kBAAkB,aAAa,0BAA0B,sEAAsE,kBAAkB,aAAa,8BAA8B,uDAAuD,4BAA4B,wBAAwB,8GAA8G,iBAAiB,mDAAmD,YAAY,kBAAkB,aAAa,qBAAqB,6DAA6D,kBAAkB,aAAa,iCAAiC,8CAA8C,4BAA4B,2BAA2B,mEAAmE,qBAAqB,4CAA4C,iBAAiB,mCAAmC,aAAa,yBAAyB,iCAAiC,0BAA0B,2BAA2B;AACztG,oCAAoC,aAAa,0BAA0B,wBAAwB,iBAAiB,2BAA2B,YAAY,6BAA6B,YAAY,kBAAkB,MAAM,cAAc,aAAa,0BAA0B,wBAAwB,iBAAiB,+BAA+B,UAAU,kCAAkC,sBAAsB,sBAAsB,kCAAkC,sBAAsB,sBAAsB,kCAAkC,sBAAsB,IAAI,cAAc,aAAa,0BAA0B,wBAAwB,iBAAiB,+BAA+B,UAAU,kCAAkC,sBAAsB,sBAAsB,kCAAkC,sBAAsB,sBAAsB,kCAAkC,sBAAsB,IAAI;AAC15B,iBAAiB;AACjB,kE;;;;;;;;;;ACHA;AAAA;AACA,yBAAgV;AAChV;AACA;AACA;AACA;AACA;AACA;AACuK;AACvK;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;;;;;;AC1BA,yC;;;;;;;ACAA,0BAA0B,aAAa,0BAA0B,wBAAwB,iBAAiB,4BAA4B,iBAAiB,YAAY,OAAO,sBAAsB,YAAY,OAAO,oBAAoB,WAAW,OAAO,iBAAiB,6DAA6D,OAAO,aAAa,iGAAiG,OAAO,kBAAkB,aAAa,OAAO,cAAc,UAAU,OAAO,6CAA6C,UAAU,oCAAoC,sBAAsB,0EAA0E,OAAO,cAAc,UAAU,wCAAwC,sBAAsB,qGAAqG,OAAO,gBAAgB,UAAU,OAAO,mCAAmC,UAAU,gCAAgC,sBAAsB,iHAAiH,OAAO,eAAe,UAAU,OAAO,0DAA0D,UAAU,kCAAkC,sBAAsB,+GAA+G,OAAO,oBAAoB,YAAY,OAAO,6BAA6B,WAAW,OAAO,yBAAyB,8DAA8D,qBAAqB,kEAAkE,iBAAiB,gDAAgD,WAAW,sBAAsB,2DAA2D,uBAAuB,aAAa,wBAAwB,yDAAyD,oCAAoC,yFAAyF,8BAA8B,wIAAwI,gBAAgB,UAAU,aAAa,8BAA8B,mFAAmF,cAAc,4BAA4B,OAAO,4BAA4B,WAAW,OAAO,wBAAwB,6DAA6D,qBAAqB,gEAAgE,iBAAiB,6CAA6C,WAAW,oCAAoC,yEAAyE,qBAAqB,sDAAsD,mCAAmC,6CAA6C,sDAAsD,OAAO,yBAAyB,WAAW,OAAO,qBAAqB,0DAA0D,qBAAqB,sBAAsB,OAAO,0BAA0B,8DAA8D,OAAO,mBAAmB,4CAA4C,gBAAgB,mCAAmC,aAAa,8BAA8B,iFAAiF,sCAAsC,OAAO,sBAAsB;AAC9jH,oCAAoC,aAAa,0BAA0B,wBAAwB,iBAAiB,OAAO,qBAAqB,YAAY,OAAO,iBAAiB,IAAI;AACxL,iBAAiB;AACjB,kE;;;;;;;;;;ACHA;AAAA;AACA,yBAAgV;AAChV;AACA;AACA;AACA;AACA;AACA;AACuK;AACvK;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;;;;;;AC1BA,yC;;;;;;;ACAA,0BAA0B,aAAa,0BAA0B,wBAAwB,iBAAiB,4BAA4B,gBAAgB,YAAY,sBAAsB,aAAa,0BAA0B,iKAAiK,8BAA8B,4FAA4F,wBAAwB,kCAAkC,sBAAsB,oEAAoE,0BAA0B,UAAU,OAAO,2CAA2C,2FAA2F,0BAA0B,UAAU,OAAO,sCAAsC,2FAA2F,0BAA0B,yLAAyL,0BAA0B,UAAU,OAAO,wDAAwD,gGAAgG,uBAAuB,YAAY,yBAAyB,iHAAiH,iBAAiB,+BAA+B,YAAY,kBAAkB,aAAa,sBAAsB,uEAAuE,wBAAwB,wEAAwE,kBAAkB,aAAa,0BAA0B,sEAAsE,kBAAkB,aAAa,8BAA8B,uDAAuD,4BAA4B,wBAAwB,8GAA8G,iBAAiB,8BAA8B,YAAY,kBAAkB,aAAa,qBAAqB,6DAA6D,kBAAkB,aAAa,iCAAiC,8CAA8C,4BAA4B,2BAA2B,mEAAmE,qBAAqB,4CAA4C,iBAAiB,oBAAoB,aAAa,yBAAyB,iCAAiC,0BAA0B,2BAA2B;AACj1F,oCAAoC,aAAa,0BAA0B,wBAAwB,iBAAiB,2BAA2B,YAAY,6BAA6B,YAAY,kBAAkB,MAAM,cAAc,aAAa,0BAA0B,wBAAwB,iBAAiB,+BAA+B,UAAU,kCAAkC,sBAAsB,sBAAsB,kCAAkC,sBAAsB,sBAAsB,kCAAkC,sBAAsB,IAAI,cAAc,aAAa,0BAA0B,wBAAwB,iBAAiB,+BAA+B,UAAU,kCAAkC,sBAAsB,sBAAsB,kCAAkC,sBAAsB,sBAAsB,kCAAkC,sBAAsB,IAAI,cAAc,aAAa,0BAA0B,wBAAwB,iBAAiB,+BAA+B,UAAU,kCAAkC,sBAAsB,sBAAsB,kCAAkC,sBAAsB,sBAAsB,kCAAkC,sBAAsB,IAAI;AACzvC,iBAAiB;AACjB,kE;;;;;;;;;;ACHA;AAAA;AACA,yBAAgV;AAChV;AACA;AACA;AACA;AACA;AACA;AACuK;AACvK;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;;;;;;AC1BA,yC;;;;;;;ACAA,0BAA0B,aAAa,0BAA0B,wBAAwB,iBAAiB,4BAA4B,gBAAgB,YAAY,8BAA8B,aAAa,mBAAmB,sIAAsI,8BAA8B,UAAU,8BAA8B,sFAAsF,wBAAwB,YAAY,yBAAyB,iHAAiH,iBAAiB,sDAAsD,aAAa,sBAAsB,sEAAsE,wBAAwB,uEAAuE,0BAA0B,qEAAqE,8BAA8B,qDAAqD,4BAA4B,sBAAsB,sHAAsH,OAAO,2CAA2C,6GAA6G,OAAO,wCAAwC,qSAAqS,OAAO,mCAAmC,oJAAoJ,OAAO,wDAAwD,6GAA6G,yBAAyB,YAAY,wBAAwB,8GAA8G,iBAAiB,mDAAmD,aAAa,qBAAqB,4DAA4D,iCAAiC,4CAA4C,mFAAmF,qBAAqB,4CAA4C,iBAAiB,yCAAyC,aAAa,oBAAoB,qDAAqD,wBAAwB,YAAY,sDAAsD,MAAM,0BAA0B,2BAA2B;AACz8F,oCAAoC,aAAa,0BAA0B,wBAAwB,iBAAiB,kBAAkB,YAAY,2BAA2B,YAAY,kBAAkB,MAAM,cAAc,aAAa,0BAA0B,wBAAwB,wBAAwB,oCAAoC,sBAAsB,IAAI,cAAc,aAAa,0BAA0B,wBAAwB,wBAAwB,iCAAiC,sBAAsB,IAAI,cAAc,aAAa,0BAA0B,wBAAwB,wBAAwB,gCAAgC,sBAAsB,IAAI,cAAc,aAAa,0BAA0B,wBAAwB,wBAAwB,iCAAiC,sBAAsB,IAAI,cAAc,aAAa,0BAA0B,wBAAwB,wBAAwB,kCAAkC,sBAAsB,IAAI;AACp/B,iBAAiB;AACjB,kE;;;;;;;;;;ACHA;AAAA;AACA,yBAAgV;AAChV;AACA;AACA;AACA;AACA;AACA;AACuK;AACvK;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;;;;;;AC1BA,yC;;;;;;;ACAA,0BAA0B,aAAa,0BAA0B,wBAAwB,iBAAiB,4BAA4B,gBAAgB,YAAY,0BAA0B,sBAAsB,uBAAuB,uHAAuH,wBAAwB,kFAAkF,6BAA6B,wKAAwK,6BAA6B,+EAA+E,6BAA6B,iFAAiF,OAAO,6CAA6C,YAAY,0CAA0C,6FAA6F,0CAA0C,uFAAuF,+BAA+B,uCAAuC,OAAO,mCAAmC,YAAY,0CAA0C,UAAU,uCAAuC,sIAAsI,mCAAmC,0DAA0D,UAAU,wCAAwC,yBAAyB,0CAA0C,yIAAyI,mCAAmC,0EAA0E,YAAY,sCAAsC,kDAAkD,aAAa,OAAO,mIAAmI,2BAA2B,0CAA0C,yIAAyI,mCAAmC,2DAA2D,UAAU,yCAAyC,yBAAyB,0CAA0C,6GAA6G,gCAAgC,YAAY,8BAA8B,mDAAmD,eAAe,0CAA0C,kBAAkB,4BAA4B,4CAA4C,kCAAkC,qCAAqC,yCAAyC,6BAA6B,6BAA6B,wBAAwB,2BAA2B,YAAY,yCAAyC,YAAY,mBAAmB,UAAU,wCAAwC,0CAA0C,+BAA+B,gEAAgE,8BAA8B,2DAA2D,eAAe,qDAAqD,2BAA2B,aAAa,sCAAsC,mEAAmE,yCAAyC,iEAAiE,oCAAoC,qEAAqE,2CAA2C,iDAAiD,2BAA2B,wCAAwC,YAAY,mBAAmB,UAAU,6BAA6B,4CAA4C,+BAA+B,+DAA+D,8BAA8B,yDAAyD,eAAe,qDAAqD,0BAA0B,aAAa,sCAAsC,oEAAoE,yCAAyC,4DAA4D,oCAAoC,wEAAwE,2CAA2C,oDAAoD,iDAAiD,uCAAuC,YAAY,mBAAmB,UAAU,6BAA6B,0CAA0C,+BAA+B,sEAAsE,8BAA8B,sDAAsD,eAAe,qDAAqD,oBAAoB,aAAa,sCAAsC,gEAAgE,yCAAyC,4DAA4D,oCAAoC,uEAAuE,2CAA2C,0CAA0C,wDAAwD,qCAAqC,YAAY,mBAAmB,UAAU,6BAA6B,8CAA8C,+BAA+B,oEAAoE,mCAAmC,kDAAkD,eAAe,yCAAyC,kBAAkB,4BAA4B,qCAAqC,aAAa,iCAAiC,yCAAyC,+DAA+D,4CAA4C,YAAY,mBAAmB,UAAU,6CAA6C,yBAAyB,+BAA+B,2EAA2E,mCAAmC,gEAAgE,eAAe,0DAA0D,yBAAyB,aAAa,sCAAsC,qEAAqE,oCAAoC,4EAA4E,wDAAwD,0BAA0B,uEAAuE;AAC9wO;AACA,iBAAiB;AACjB,kE;;;;;;;ACHA,0BAA0B,aAAa,0BAA0B,wBAAwB,iBAAiB,2BAA2B,YAAY,0BAA0B,iCAAiC,YAAY,yBAAyB,iCAAiC,gBAAgB;AAClS;AACA,iBAAiB;AACjB,kE;;;;;;;;;;ACHA;AAAA;AACA,yBAA+S;AAC/S;AACA;AACA;AACA;AACA;AACA;AACuK;AACvK;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;;;;;;AC1BA,yC;;;;;;;ACAA,0BAA0B,aAAa,0BAA0B,wBAAwB,iBAAiB,mBAAmB,uDAAuD,oBAAoB,qDAAqD,uBAAuB,YAAY,sBAAsB,oBAAoB,OAAO,8BAA8B,YAAY,8BAA8B,YAAY,OAAO,gCAA6D,iFAAiF,sBAAsB,oBAAoB,OAAO,2BAA2B,YAAY,8BAA8B,YAAY,OAAO,gCAA0D,8EAA8E,sBAAsB,oBAAoB,OAAO,wBAAwB,YAAY,8BAA8B,YAAY,OAAO,gCAAuD,2EAA2E,sBAAsB,oBAAoB,OAAO,yBAAyB,YAAY,8BAA8B,YAAY,OAAO,gCAAwD,4EAA4E,sBAAsB,oBAAoB,OAAO,uBAAuB,YAAY,8BAA8B,YAAY,OAAO,gCAAsD,0EAA0E,sBAAsB,oBAAoB,OAAO,6BAA6B,YAAY,8BAA8B,YAAY,OAAO,gCAA4D,gFAAgF,sBAAsB,oBAAoB,OAAO,+BAA+B,YAAY,8BAA8B,YAAY,OAAO,gCAA8D,kFAAkF,sBAAsB,oBAAoB,OAAO,yBAAyB,YAAY,8BAA8B,YAAY,OAAO,gCAAwD;AACt1E,oCAAoC,aAAa,0BAA0B,wBAAwB,eAAe,OAAO,4EAA4E,YAAY,aAAa,yDAAyD,QAAQ,gWAAgW,IAAI,cAAc,aAAa,0BAA0B,wBAAwB,iBAAiB,mBAAmB,YAAY,OAAO,gCAAqC,IAAI;AAChzB,iBAAiB;AACjB,kE;;;;;;ACHA,uF;;;;;;ACAA,oF;;;;;;ACAA,iF;;;;;;ACAA,kF;;;;;;ACAA,gF;;;;;;ACAA,sF;;;;;;ACAA,wF;;;;;;ACAA,kF;;;;;;ACAA,uE","file":"static/js/app.7cb85790ecf110c80b21.js","sourcesContent":["import yaml from 'js-yaml';\nimport {\n PERSON\n} from '../../resume/data.yml';\nimport {\n terms\n} from '../terms';\n\n// Called by templates to decrease redundancy\nfunction getVueOptions (name) {\n let opt = {\n name: name,\n data () {\n return {\n person: yaml.load(PERSON),\n terms: terms\n };\n },\n computed: {\n lang () {\n const defaultLang = this.terms.en;\n const useLang = this.terms[this.person.lang];\n\n // overwrite non-set fields with default lang\n Object.keys(defaultLang)\n .filter(k => !useLang[k])\n .forEach(k => {\n console.log(k);\n useLang[k] = defaultLang[k];\n });\n\n return useLang;\n }\n }\n };\n return opt;\n}\n\nexport {\n getVueOptions\n};\n\n\n\n// WEBPACK FOOTER //\n// ./src/resumes/options.js","\n\n\n\n\n\n\n\n// WEBPACK FOOTER //\n// src/App.vue","\n\n\n\n\n\n\n\n// WEBPACK FOOTER //\n// src/pages/resume.vue","\n\n\n\n\n\n\n\n\n// WEBPACK FOOTER //\n// src/resumes/material-dark.vue","\n\n\n\n\n\n\n\n\n// WEBPACK FOOTER //\n// src/resumes/left-right.vue","\n\n\n\n\n\n\n\n\n// WEBPACK FOOTER //\n// src/resumes/oblique.vue","\n\n\n\n\n\n\n\n\n// WEBPACK FOOTER //\n// src/resumes/side-bar.vue","\n\n\n\n\n\n\n\n\n// WEBPACK FOOTER //\n// src/resumes/purple.vue","\n\n\n\n\n\n\n\n\n// WEBPACK FOOTER //\n// src/resumes/side-bar-rtl.vue","\n\n\n\n\n\n\n\n\n// WEBPACK FOOTER //\n// src/resumes/left-right-rtl.vue","\n\n\n\n\n\n\n\n// WEBPACK FOOTER //\n// src/resumes/creative.vue","\n\n\n\n\n\n\n\n// WEBPACK FOOTER //\n// src/pages/home.vue","// The Vue build version to load with the `import` command\n// (runtime-only or standalone) has been set in webpack.base.conf with an alias.\nimport Vue from 'vue';\nimport App from './App';\nimport router from './router';\n\nVue.config.productionTip = false;\n\n/* eslint-disable no-new */\nnew Vue({\n el: '#app',\n router,\n template: '',\n components: {\n App\n }\n});\n\n\n\n// WEBPACK FOOTER //\n// ./src/main.js","function injectStyle (context) {\n require(\"!!../node_modules/extract-text-webpack-plugin/dist/loader.js?{\\\"omit\\\":1,\\\"remove\\\":true}!vue-style-loader!css-loader?{\\\"minimize\\\":true,\\\"sourceMap\\\":true}!../node_modules/vue-loader/lib/style-compiler/index?{\\\"vue\\\":true,\\\"id\\\":\\\"data-v-6fce9f56\\\",\\\"scoped\\\":false,\\\"sourceMap\\\":false}!../node_modules/vue-loader/lib/selector?type=styles&index=0!./App.vue\")\n}\nimport normalizeComponent from \"!../node_modules/vue-loader/lib/runtime/component-normalizer\"\n/* script */\nexport * from \"!!babel-loader!../node_modules/vue-loader/lib/selector?type=script&index=0!./App.vue\"\nimport __vue_script__ from \"!!babel-loader!../node_modules/vue-loader/lib/selector?type=script&index=0!./App.vue\"\n/* template */\nimport __vue_template__ from \"!!../node_modules/vue-loader/lib/template-compiler/index?{\\\"id\\\":\\\"data-v-6fce9f56\\\",\\\"hasScoped\\\":false,\\\"buble\\\":{\\\"transforms\\\":{}}}!../node_modules/vue-loader/lib/selector?type=template&index=0!./App.vue\"\n/* template functional */\nvar __vue_template_functional__ = false\n/* styles */\nvar __vue_styles__ = injectStyle\n/* scopeId */\nvar __vue_scopeId__ = null\n/* moduleIdentifier (server only) */\nvar __vue_module_identifier__ = null\nvar Component = normalizeComponent(\n __vue_script__,\n __vue_template__,\n __vue_template_functional__,\n __vue_styles__,\n __vue_scopeId__,\n __vue_module_identifier__\n)\n\nexport default Component.exports\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./src/App.vue\n// module id = 37\n// module chunks = 1","// removed by extract-text-webpack-plugin\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/extract-text-webpack-plugin/dist/loader.js?{\"omit\":1,\"remove\":true}!./node_modules/vue-style-loader!./node_modules/css-loader?{\"minimize\":true,\"sourceMap\":true}!./node_modules/vue-loader/lib/style-compiler?{\"vue\":true,\"id\":\"data-v-6fce9f56\",\"scoped\":false,\"sourceMap\":false}!./node_modules/vue-loader/lib/selector.js?type=styles&index=0!./src/App.vue\n// module id = 38\n// module chunks = 1","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{attrs:{\"id\":\"app\"}},[_c('router-view')],1)}\nvar staticRenderFns = []\nvar esExports = { render: render, staticRenderFns: staticRenderFns }\nexport default esExports\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/vue-loader/lib/template-compiler?{\"id\":\"data-v-6fce9f56\",\"hasScoped\":false,\"buble\":{\"transforms\":{}}}!./node_modules/vue-loader/lib/selector.js?type=template&index=0!./src/App.vue\n// module id = 40\n// module chunks = 1","import Vue from 'vue';\nimport Router from 'vue-router';\nimport Resume from '@/pages/resume';\nimport Home from '@/pages/home';\n\nVue.use(Router);\n\nexport default new Router({\n routes: [\n {\n path: '/',\n name: 'home',\n component: Home\n },\n {\n path: '/resume/:resumeid',\n name: 'resume',\n component: Resume\n }\n ]\n});\n\n\n\n// WEBPACK FOOTER //\n// ./src/router/index.js","function injectStyle (context) {\n require(\"!!../../node_modules/extract-text-webpack-plugin/dist/loader.js?{\\\"omit\\\":1,\\\"remove\\\":true}!vue-style-loader!css-loader?{\\\"minimize\\\":true,\\\"sourceMap\\\":true}!../../node_modules/vue-loader/lib/style-compiler/index?{\\\"vue\\\":true,\\\"id\\\":\\\"data-v-09e61b2b\\\",\\\"scoped\\\":true,\\\"sourceMap\\\":false}!../../node_modules/vue-loader/lib/selector?type=styles&index=0!./resume.vue\")\n}\nimport normalizeComponent from \"!../../node_modules/vue-loader/lib/runtime/component-normalizer\"\n/* script */\nexport * from \"!!babel-loader!../../node_modules/vue-loader/lib/selector?type=script&index=0!./resume.vue\"\nimport __vue_script__ from \"!!babel-loader!../../node_modules/vue-loader/lib/selector?type=script&index=0!./resume.vue\"\n/* template */\nimport __vue_template__ from \"!!../../node_modules/vue-loader/lib/template-compiler/index?{\\\"id\\\":\\\"data-v-09e61b2b\\\",\\\"hasScoped\\\":true,\\\"buble\\\":{\\\"transforms\\\":{}}}!../../node_modules/vue-loader/lib/selector?type=template&index=0!./resume.vue\"\n/* template functional */\nvar __vue_template_functional__ = false\n/* styles */\nvar __vue_styles__ = injectStyle\n/* scopeId */\nvar __vue_scopeId__ = \"data-v-09e61b2b\"\n/* moduleIdentifier (server only) */\nvar __vue_module_identifier__ = null\nvar Component = normalizeComponent(\n __vue_script__,\n __vue_template__,\n __vue_template_functional__,\n __vue_styles__,\n __vue_scopeId__,\n __vue_module_identifier__\n)\n\nexport default Component.exports\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./src/pages/resume.vue\n// module id = 43\n// module chunks = 1","// removed by extract-text-webpack-plugin\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/extract-text-webpack-plugin/dist/loader.js?{\"omit\":1,\"remove\":true}!./node_modules/vue-style-loader!./node_modules/css-loader?{\"minimize\":true,\"sourceMap\":true}!./node_modules/vue-loader/lib/style-compiler?{\"vue\":true,\"id\":\"data-v-09e61b2b\",\"scoped\":true,\"sourceMap\":false}!./node_modules/vue-loader/lib/selector.js?type=styles&index=0!./src/pages/resume.vue\n// module id = 44\n// module chunks = 1","// If you create a new resume, import it here:\nimport './material-dark.vue';\nimport './left-right.vue';\nimport './oblique.vue';\nimport './side-bar.vue';\nimport './purple.vue';\nimport './side-bar-rtl.vue';\nimport './left-right-rtl.vue';\nimport './creative.vue';\n\n\n\n// WEBPACK FOOTER //\n// ./src/resumes/resumes.js","function injectStyle (context) {\n require(\"!!../../node_modules/extract-text-webpack-plugin/dist/loader.js?{\\\"omit\\\":1,\\\"remove\\\":true}!vue-style-loader!css-loader?{\\\"minimize\\\":true,\\\"sourceMap\\\":true}!../../node_modules/vue-loader/lib/style-compiler/index?{\\\"vue\\\":true,\\\"id\\\":\\\"data-v-7951fa00\\\",\\\"scoped\\\":true,\\\"sourceMap\\\":false}!less-loader?{\\\"sourceMap\\\":true}!../../node_modules/vue-loader/lib/selector?type=styles&index=0!./material-dark.vue\")\n}\nimport normalizeComponent from \"!../../node_modules/vue-loader/lib/runtime/component-normalizer\"\n/* script */\nexport * from \"!!babel-loader!../../node_modules/vue-loader/lib/selector?type=script&index=0!./material-dark.vue\"\nimport __vue_script__ from \"!!babel-loader!../../node_modules/vue-loader/lib/selector?type=script&index=0!./material-dark.vue\"\n/* template */\nimport __vue_template__ from \"!!../../node_modules/vue-loader/lib/template-compiler/index?{\\\"id\\\":\\\"data-v-7951fa00\\\",\\\"hasScoped\\\":true,\\\"buble\\\":{\\\"transforms\\\":{}}}!../../node_modules/vue-loader/lib/selector?type=template&index=0!./material-dark.vue\"\n/* template functional */\nvar __vue_template_functional__ = false\n/* styles */\nvar __vue_styles__ = injectStyle\n/* scopeId */\nvar __vue_scopeId__ = \"data-v-7951fa00\"\n/* moduleIdentifier (server only) */\nvar __vue_module_identifier__ = null\nvar Component = normalizeComponent(\n __vue_script__,\n __vue_template__,\n __vue_template_functional__,\n __vue_styles__,\n __vue_scopeId__,\n __vue_module_identifier__\n)\n\nexport default Component.exports\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./src/resumes/material-dark.vue\n// module id = 46\n// module chunks = 1","// removed by extract-text-webpack-plugin\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/extract-text-webpack-plugin/dist/loader.js?{\"omit\":1,\"remove\":true}!./node_modules/vue-style-loader!./node_modules/css-loader?{\"minimize\":true,\"sourceMap\":true}!./node_modules/vue-loader/lib/style-compiler?{\"vue\":true,\"id\":\"data-v-7951fa00\",\"scoped\":true,\"sourceMap\":false}!./node_modules/less-loader/dist/cjs.js?{\"sourceMap\":true}!./node_modules/vue-loader/lib/selector.js?type=styles&index=0!./src/resumes/material-dark.vue\n// module id = 47\n// module chunks = 1","/* #*/ export const PERSON = `\nname:\n first: John\n middle:\n last: Doe\nabout: Hi, my name is John Doe. I\"m just about the most boring type of person you could\n possibly imagine. I like collecting leaves from the tree in my back yard and documenting\n each time I eat a peanut that is non-uniform. I am not a robot. Please hire me.\nposition: Software Developer\n\nbirth:\n year: 1990\n location: New York\n\nexperience:\n- company: Company A\n position: Developer\n timeperiod: since January 2016\n description: Programming and watching cute cat videos.\n website: https://example.com\n\n- company: Company B\n position: Frontend Developer\n timeperiod: January 2015 - December 2015\n description: Fulfillment of extremely important tasks.\n\n- company: Company C\n position: Trainee\n timeperiod: March 2014 - December 2014\n description: Making coffee and baking cookies.\n\neducation:\n- degree: Master of Arts\n timeperiod: March 2012 - December 2013\n description: Major in Hacking and Computer Penetration, University A, New York, USA.\n website: https://example.com\n\n- degree: Bachelor of Science\n timeperiod: March 2009 - December 2011\n description: Major in Engineering, University B, Los Angeles, USA.\n\n# skill level goes 0 to 100\nskills:\n- name: HTML5\n level: 99\n- name: CSS3\n level: 95\n- name: JavaScript\n level: 97\n- name: Node.js\n level: 93\n- name: Angular 2\n level: 60\n- name: TypeScript\n level: 80\n- name: ES.Next\n level: 70\n- name: Docker\n level: 99\nknowledge: Also proficient in Adobe Photoshop and Illustrator, grew up bilingual\n (English and Klingon).\n\nprojects:\n- name: best-resume-ever\n platform: Vue\n description: 👔 💼 Build fast 🚀 and easy multiple beautiful resumes and create your best CV ever! Made with Vue and LESS.\n url: https://github.com/salomonelli/best-resume-ever\n\nhobbies:\n- name: Video Games\n iconClass: fa fa-gamepad\n url: https://example.com\n\n- name: Drawing\n iconClass: fa fa-pencil\n url: https://example.com\n\ncontributions:\n- name: best-resume-ever\n description: 👔 💼 Build fast 🚀 and easy multiple beautiful resumes.\n url: https://github.com/salomonelli/best-resume-ever\n\ncontact:\n email: john.doe@email.com\n phone: 0123 456789\n street: 1234 Broadway\n city: New York\n website: johndoe.com\n github: johnyD\n# en, de, fr, pt, ca, cn, it, es, th, pt-br, ru, sv, id, hu, pl, ja, ka, nl, he, zh-tw, lt, ko, el\nlang: en\n`\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./resume/data.yml\n// module id = 101\n// module chunks = 1","import en from './lang/en';\nimport de from './lang/de';\nimport fr from './lang/fr';\nimport pt from './lang/pt';\nimport ca from './lang/ca';\nimport cn from './lang/cn';\nimport it from './lang/it';\nimport es from './lang/es';\nimport th from './lang/th';\nimport id from './lang/id';\nimport sv from './lang/sv';\nimport ru from './lang/ru';\nimport ptbr from './lang/pt-br';\nimport hu from './lang/hu';\nimport pl from './lang/pl';\nimport he from './lang/he';\nimport ja from './lang/ja';\nimport zhtw from './lang/zh-tw';\nimport nl from './lang/nl';\nimport lt from './lang/lt';\nimport tr from './lang/tr';\nimport ko from './lang/ko';\nimport el from './lang/el';\n\nexport const terms = {\n en, de, fr, pt, ca, cn, it, es, th, 'pt-br': ptbr, ru, sv, id, hu, pl, ja, nl, he, 'zh-tw': zhtw, lt, tr, ko, el\n};\n\n\n\n// WEBPACK FOOTER //\n// ./src/terms.js","// English\nconst lang = {\n contact: 'Contact',\n born: 'Born',\n bornIn: 'in',\n experience: 'Experience',\n education: 'Education',\n skills: 'Skills',\n projects: 'Projects',\n contributions: 'Contributions',\n about: 'About me'\n};\nexport default lang;\n\n\n\n// WEBPACK FOOTER //\n// ./src/lang/en.js","// Dutch\nconst lang = {\n contact: 'Kontakt',\n born: 'Geboren',\n bornIn: 'in',\n experience: 'Berufserfahrung',\n education: 'Schulbildung',\n skills: 'Qualifikationen',\n projects: 'Projecten',\n contributions: 'Bijdragen',\n about: 'Über mich'\n};\nexport default lang;\n\n\n\n// WEBPACK FOOTER //\n// ./src/lang/de.js","// French\nconst lang = {\n contact: 'Contact',\n born: 'Né en',\n bornIn: 'à',\n experience: 'Expérience professionelle',\n education: 'Formation',\n skills: 'Compétences',\n projects: 'Projets',\n contributions: 'Contributions',\n about: 'À propos de moi'\n};\nexport default lang;\n\n\n\n// WEBPACK FOOTER //\n// ./src/lang/fr.js","// Portuguese\nconst lang = {\n contact: 'Contactos',\n experience: 'Experiência Profissional',\n education: 'Educação',\n skills: 'Competências',\n projects: 'Projetos',\n contributions: 'Contribuições',\n about: 'Sobre mim'\n};\nexport default lang;\n\n\n\n// WEBPACK FOOTER //\n// ./src/lang/pt.js","// Catalan\nconst lang = {\n contact: 'Contacte',\n experience: 'Experiència',\n education: 'Educació',\n skills: 'Habilitats',\n projects: 'Projectes',\n contributions: 'Contribucions',\n about: 'Sobre mi'\n};\nexport default lang;\n\n\n\n// WEBPACK FOOTER //\n// ./src/lang/ca.js","// Chinese (Simplified)\nconst lang = {\n contact: '联系方式',\n experience: '工作经历',\n education: '教育经历',\n skills: '技能专长',\n projects: '项目',\n contributions: '捐款',\n about: '自我介绍'\n};\nexport default lang;\n\n\n\n// WEBPACK FOOTER //\n// ./src/lang/cn.js","// Italian\nconst lang = {\n contact: 'Contatti',\n experience: 'Esperienza professionale',\n education: 'Formazione',\n skills: 'Competenze',\n contributions: 'Contributi',\n projects: 'Progetti',\n about: 'Su di me'\n};\nexport default lang;\n\n\n\n// WEBPACK FOOTER //\n// ./src/lang/it.js","// Spanish\nconst lang = {\n contact: 'Contacto',\n experience: 'Experiencia',\n education: 'Educación',\n skills: 'Habilidades',\n projects: 'Proyectos',\n contributions: 'Contribuciones',\n about: 'Sobre mi'\n};\nexport default lang;\n\n\n\n// WEBPACK FOOTER //\n// ./src/lang/es.js","const lang = {\n contact: 'ข้อมูลติดต่อ',\n experience: 'ประสบการณ์ทำงาน',\n education: 'ประวัติการศึกษา',\n skills: 'ทักษะและความสามารถ',\n about: 'ข้อมูลส่วนตัว'\n};\nexport default lang;\n\n\n\n// WEBPACK FOOTER //\n// ./src/lang/th.js","// Indonesian\nconst lang = {\n contact: 'Kontak',\n experience: 'Pengalaman',\n education: 'Pendidikan',\n skills: 'Keterampilan',\n projects: 'Proyek',\n contributions: 'Kontribusi',\n about: 'Tentang Saya'\n};\nexport default lang;\n\n\n\n// WEBPACK FOOTER //\n// ./src/lang/id.js","const lang = {\n contact: 'Kontakt',\n experience: 'Arbetslivserfarenhet',\n education: 'Utbildning',\n skills: 'Kunskaper',\n about: 'Om mig'\n};\nexport default lang;\n\n\n\n// WEBPACK FOOTER //\n// ./src/lang/sv.js","// Russian\nconst lang = {\n contact: 'Контакты',\n experience: 'Опыт',\n education: 'Образование',\n skills: 'Навыки',\n projects: 'проектов',\n contributions: 'взносы',\n about: 'Обо мне'\n};\n\nexport default lang;\n\n\n\n// WEBPACK FOOTER //\n// ./src/lang/ru.js","// Portuguese\nconst lang = {\n contact: 'Contato',\n experience: 'Experiência Profissional',\n /* You can choose, \"Educação\" or \"Formação Acadêmica\"! But the second one is more professional and is more used. */\n education: 'Formação Acadêmica',\n skills: 'Competências',\n projects: 'Projetos',\n contributions: 'Contribuições',\n about: 'Sobre'\n};\nexport default lang;\n\n\n\n// WEBPACK FOOTER //\n// ./src/lang/pt-br.js","// Hungarian\nconst lang = {\n contact: 'Kapcsolat',\n experience: 'Munkatapasztalat',\n education: 'Tanulmány',\n skills: 'Készségek',\n projects: 'Projektek',\n contributions: 'Hozzájárulások',\n about: 'Rólam'\n};\nexport default lang;\n\n\n\n// WEBPACK FOOTER //\n// ./src/lang/hu.js","// Polish\nconst lang = {\n contact: 'Kontakt',\n experience: 'Doświadczenie',\n education: 'Wykształcenie',\n skills: 'Umiejętności',\n projects: 'Projektowanie',\n contributions: 'Składki',\n about: 'O mnie'\n};\nexport default lang;\n\n\n\n// WEBPACK FOOTER //\n// ./src/lang/pl.js","// Hebrew\nconst lang = {\n contact: 'יצירת קשר',\n experience: 'ניסיון',\n education: 'השכלה',\n skills: 'כישורים',\n projects: 'פרויקטים',\n contributions: 'תרומות',\n about: 'תמצית'\n};\nexport default lang;\n\n\n\n// WEBPACK FOOTER //\n// ./src/lang/he.js","// Japanese\nconst lang = {\n contact: '連絡先',\n experience: '職務経歴',\n education: '学歴',\n skills: 'スキル',\n projects: 'プロジェクト',\n contributions: '貢献',\n about: '自己紹介'\n};\nexport default lang;\n\n\n\n// WEBPACK FOOTER //\n// ./src/lang/ja.js","const lang = {\n contact: '聯絡方式',\n experience: '經歷',\n education: '學歷',\n skills: '技能專長',\n about: '自我介紹'\n};\nexport default lang;\n\n\n\n// WEBPACK FOOTER //\n// ./src/lang/zh-tw.js","// Nederlands\nconst lang = {\n contact: 'Contact',\n experience: 'Ervaringen',\n education: 'Opleidingen',\n skills: 'Skills',\n projects: 'Projecten',\n contributions: 'Bijdragen',\n about: 'Over mij'\n};\nexport default lang;\n\n\n\n// WEBPACK FOOTER //\n// ./src/lang/nl.js","const lang = {\n contact: 'Kontaktai',\n experience: 'Patirtis',\n education: 'Išsilavinimas',\n skills: 'Įgūdžiai',\n about: 'Apie mane'\n};\nexport default lang;\n\n\n\n// WEBPACK FOOTER //\n// ./src/lang/lt.js","const lang = {\n contact: 'İletişim',\n experience: 'Deneyim',\n education: 'Eğitim',\n skills: 'Yetenekler',\n about: 'Hakkımda'\n};\nexport default lang;\n\n\n\n// WEBPACK FOOTER //\n// ./src/lang/tr.js","// Korean\nconst lang = {\n contact: '연락처',\n experience: '경력',\n education: '학력',\n skills: '보유스킬',\n projects: '프로젝트',\n contributions: '기고',\n about: '자기소개'\n};\nexport default lang;\n\n\n\n// WEBPACK FOOTER //\n// ./src/lang/ko.js","const lang = {\n contact: 'Επικοινωνία',\n experience: 'Επαγγελματική εμπειρία',\n education: 'Εκπαίδευση',\n skills: 'Δεξιότητες',\n about: 'Σχετικά με εμένα'\n};\nexport default lang;\n\n\n\n// WEBPACK FOOTER //\n// ./src/lang/el.js","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:\"resume\"},[_c('div',{staticClass:\"leftCol m_box\"},[_c('div',{staticClass:\"shadow\"}),_vm._v(\" \"),_c('div',{staticClass:\"heading\",attrs:{\"id\":\"myselfpic\"}}),_vm._v(\" \"),_c('div',{staticClass:\"section-headline\"},[_vm._v(\"\\n \"+_vm._s(_vm.lang.contact)+\"\\n \")]),_vm._v(\" \"),_c('div',{staticClass:\"item\"},[_vm._m(0),_vm._v(\" \"),_c('div',{staticClass:\"text\"},[_c('ul',[_c('li',[_vm._v(\" \"+_vm._s(_vm.lang.born)+\" \"+_vm._s(_vm.person.birth.year)+\" \"+_vm._s(_vm.lang.bornIn)+\" \"+_vm._s(_vm.person.birth.location))])])])]),_vm._v(\" \"),_c('div',{staticClass:\"item\"},[_vm._m(1),_vm._v(\" \"),_c('div',{staticClass:\"text\"},[_c('ul',[_c('li',[_vm._v(_vm._s(_vm.person.contact.street))]),_vm._v(\" \"),_c('li',[_vm._v(_vm._s(_vm.person.contact.city))])])])]),_vm._v(\" \"),_c('a',{attrs:{\"href\":'tel:'+_vm.person.contact.phone}},[_c('div',{staticClass:\"item\"},[_vm._m(2),_vm._v(\" \"),_c('div',{staticClass:\"text\"},[_vm._v(\"\\n \"+_vm._s(_vm.person.contact.phone)+\"\\n \")])])]),_vm._v(\" \"),_c('a',{attrs:{\"href\":'mailto:'+_vm.person.contact.email}},[_c('div',{staticClass:\"item\"},[_vm._m(3),_vm._v(\" \"),_c('div',{staticClass:\"text\"},[_vm._v(\"\\n \"+_vm._s(_vm.person.contact.email)+\"\\n \")])])]),_vm._v(\" \"),(_vm.person.contact.github)?_c('a',{attrs:{\"href\":'https://github.com/'+_vm.person.contact.github,\"target\":\"_blank\"}},[_c('div',{staticClass:\"item\"},[_vm._m(4),_vm._v(\" \"),_c('div',{staticClass:\"text\"},[_c('span',[_vm._v(\"@\"+_vm._s(_vm.person.contact.github))]),_vm._v(\" \"),_c('span',[_vm._v(\"github.com/\"+_vm._s(_vm.person.contact.github))])])])]):_vm._e(),_vm._v(\" \"),(_vm.person.contact.website)?_c('a',{attrs:{\"href\":_vm.person.contact.website,\"target\":\"_blank\"}},[_c('div',{staticClass:\"item\"},[_vm._m(5),_vm._v(\" \"),_c('div',{staticClass:\"text\"},[_c('span',[_vm._v(_vm._s(_vm.person.contact.website))])])])]):_vm._e(),_vm._v(\" \"),_c('div',{staticClass:\"item last\"},[_c('div',{staticClass:\"section-headline\"},[_vm._v(\"\\n \"+_vm._s(_vm.lang.skills)+\"\\n \")]),_vm._v(\" \"),_vm._l((_vm.person.skills),function(skill){return _c('div',{key:skill.name,staticClass:\"skill\"},[_c('div',{staticClass:\"right\"},[_c('span',[_vm._v(_vm._s(skill.name)+\" \")]),_vm._v(\" \"),_c('div',{staticClass:\"progress\"},[_c('div',{staticClass:\"determinate\",style:('width: '+skill.level+'%;')},[_c('i',{staticClass:\"fa fa-circle\"})])])])])})],2)]),_vm._v(\" \"),_c('div',{staticClass:\"rightCol\"},[_c('div',{staticClass:\"title\"},[_c('h2',[_vm._v(_vm._s(_vm.person.name.first)+\" \"+_vm._s(_vm.person.name.middle)+\" \"+_vm._s(_vm.person.name.last))]),_vm._v(\" \"),_c('div',[_vm._v(_vm._s(_vm.person.position))])]),_vm._v(\" \"),_c('div',{staticClass:\"section-headline\"},[_vm._v(_vm._s(_vm.lang.experience))]),_vm._v(\" \"),_vm._l((_vm.person.experience),function(experience){return _c('div',{key:experience.company,staticClass:\"block\"},[_c('div',{staticClass:\"block-helper\"}),_vm._v(\" \"),_c('h3',{staticClass:\"headline\"},[_vm._v(_vm._s(experience.position)+\" - \"+_vm._s(experience.company))]),_vm._v(\" \"),_c('div',{staticClass:\"subheadline\"},[_vm._v(_vm._s(experience.timeperiod))]),_vm._v(\" \"),_c('p',{staticClass:\"info\"},[_vm._v(\"\\n \"+_vm._s(experience.description)+\"\\n \")])])}),_vm._v(\" \"),_c('div',{staticClass:\"section-headline\"},[_vm._v(_vm._s(_vm.lang.education))]),_vm._v(\" \"),_vm._l((_vm.person.education),function(education){return _c('div',{key:education.degree,staticClass:\"block\"},[_c('div',{staticClass:\"block-helper\"}),_vm._v(\" \"),_c('div',{staticClass:\"headline\"},[_vm._v(_vm._s(education.degree))]),_vm._v(\" \"),_c('p',{staticClass:\"info\"},[_vm._v(\"\\n \"+_vm._s(education.timeperiod)+\", \"+_vm._s(education.description)+\"\\n \")])])})],2),_vm._v(\" \"),_c('div',{staticStyle:{\"clear\":\"both\"}})])}\nvar staticRenderFns = [function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:\"icon\"},[_c('i',{staticClass:\"material-icons\"},[_vm._v(\"account_circle\")])])},function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:\"icon\"},[_c('i',{staticClass:\"material-icons\"},[_vm._v(\"location_city\")])])},function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:\"icon\"},[_c('i',{staticClass:\"material-icons\"},[_vm._v(\"phone\")])])},function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:\"icon\"},[_c('i',{staticClass:\"material-icons\"},[_vm._v(\"email\")])])},function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:\"icon\"},[_c('i',{staticClass:\"fa fa-github\"})])},function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:\"icon\"},[_c('i',{staticClass:\"material-icons\"},[_vm._v(\"language\")])])}]\nvar esExports = { render: render, staticRenderFns: staticRenderFns }\nexport default esExports\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/vue-loader/lib/template-compiler?{\"id\":\"data-v-7951fa00\",\"hasScoped\":true,\"buble\":{\"transforms\":{}}}!./node_modules/vue-loader/lib/selector.js?type=template&index=0!./src/resumes/material-dark.vue\n// module id = 126\n// module chunks = 1","function injectStyle (context) {\n require(\"!!../../node_modules/extract-text-webpack-plugin/dist/loader.js?{\\\"omit\\\":1,\\\"remove\\\":true}!vue-style-loader!css-loader?{\\\"minimize\\\":true,\\\"sourceMap\\\":true}!../../node_modules/vue-loader/lib/style-compiler/index?{\\\"vue\\\":true,\\\"id\\\":\\\"data-v-892f1822\\\",\\\"scoped\\\":true,\\\"sourceMap\\\":false}!less-loader?{\\\"sourceMap\\\":true}!../../node_modules/vue-loader/lib/selector?type=styles&index=0!./left-right.vue\")\n}\nimport normalizeComponent from \"!../../node_modules/vue-loader/lib/runtime/component-normalizer\"\n/* script */\nexport * from \"!!babel-loader!../../node_modules/vue-loader/lib/selector?type=script&index=0!./left-right.vue\"\nimport __vue_script__ from \"!!babel-loader!../../node_modules/vue-loader/lib/selector?type=script&index=0!./left-right.vue\"\n/* template */\nimport __vue_template__ from \"!!../../node_modules/vue-loader/lib/template-compiler/index?{\\\"id\\\":\\\"data-v-892f1822\\\",\\\"hasScoped\\\":true,\\\"buble\\\":{\\\"transforms\\\":{}}}!../../node_modules/vue-loader/lib/selector?type=template&index=0!./left-right.vue\"\n/* template functional */\nvar __vue_template_functional__ = false\n/* styles */\nvar __vue_styles__ = injectStyle\n/* scopeId */\nvar __vue_scopeId__ = \"data-v-892f1822\"\n/* moduleIdentifier (server only) */\nvar __vue_module_identifier__ = null\nvar Component = normalizeComponent(\n __vue_script__,\n __vue_template__,\n __vue_template_functional__,\n __vue_styles__,\n __vue_scopeId__,\n __vue_module_identifier__\n)\n\nexport default Component.exports\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./src/resumes/left-right.vue\n// module id = 127\n// module chunks = 1","// removed by extract-text-webpack-plugin\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/extract-text-webpack-plugin/dist/loader.js?{\"omit\":1,\"remove\":true}!./node_modules/vue-style-loader!./node_modules/css-loader?{\"minimize\":true,\"sourceMap\":true}!./node_modules/vue-loader/lib/style-compiler?{\"vue\":true,\"id\":\"data-v-892f1822\",\"scoped\":true,\"sourceMap\":false}!./node_modules/less-loader/dist/cjs.js?{\"sourceMap\":true}!./node_modules/vue-loader/lib/selector.js?type=styles&index=0!./src/resumes/left-right.vue\n// module id = 128\n// module chunks = 1","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:\"resume\",attrs:{\"id\":\"resume1\"}},[_c('div',{staticClass:\"row text-center\"},[_c('span',{staticClass:\"name\"},[_vm._v(_vm._s(_vm.person.name.first)+\" \"+_vm._s(_vm.person.name.middle)+\" \"+_vm._s(_vm.person.name.last))])]),_vm._v(\" \"),_c('div',{staticClass:\"row text-center\"},[_c('p',{staticClass:\"position center\"},[_vm._v(_vm._s(_vm.person.position))])]),_vm._v(\" \"),_vm._m(0),_vm._v(\" \"),_c('div',{staticClass:\"left half\"},[_c('div',{staticClass:\"experience\"},[_c('h3',[_vm._v(_vm._s(_vm.lang.experience))]),_vm._v(\" \"),_vm._l((_vm.person.experience),function(experience){return _c('div',{key:experience.company,staticClass:\"experience-block\"},[_c('span',{staticClass:\"company\"},[_vm._v(\" \"+_vm._s(experience.company)+\" \")]),_vm._v(\" \"),_c('span',{staticClass:\"job-title\"},[_vm._v(\" \"+_vm._s(experience.position)+\" \")]),_vm._v(\" \"),_c('span',{staticClass:\"time-period\"},[_vm._v(\" \"+_vm._s(experience.timeperiod))]),_vm._v(\" \"),_c('span',{staticClass:\"job-description\"},[_vm._v(\" \"+_vm._s(experience.description)+\" \")])])})],2),_vm._v(\" \"),_c('div',{staticClass:\"contact\"},[_c('h3',[_vm._v(_vm._s(_vm.lang.contact))]),_vm._v(\" \"),_c('table',[_c('tr',[_c('td',[_c('a',{attrs:{\"href\":'mailto:'+_vm.person.contact.email}},[_vm._v(_vm._s(_vm.person.contact.email))])]),_vm._v(\" \"),_vm._m(1)]),_vm._v(\" \"),_c('tr',[_c('td',[_c('a',{attrs:{\"href\":'tel:'+_vm.person.contact.phone}},[_vm._v(_vm._s(_vm.person.contact.phone))])]),_vm._v(\" \"),_vm._m(2)]),_vm._v(\" \"),_c('tr',[_c('td',[_vm._v(_vm._s(_vm.person.contact.street)+\" \"),_c('br'),_vm._v(\" \"+_vm._s(_vm.person.contact.city))]),_vm._v(\" \"),_vm._m(3)]),_vm._v(\" \"),(_vm.person.contact.website)?_c('tr',[_c('td',[_c('a',{attrs:{\"href\":_vm.person.contact.website}},[_vm._v(_vm._s(_vm.person.contact.website))])]),_vm._v(\" \"),_vm._m(4)]):_vm._e(),_vm._v(\" \"),(_vm.person.contact.github)?_c('tr',[_c('td',[_c('a',{attrs:{\"href\":'https://github.com/'+_vm.person.contact.github}},[_vm._v(\"https://github.com/\"+_vm._s(_vm.person.contact.github))])]),_vm._v(\" \"),_vm._m(5)]):_vm._e()])])]),_vm._v(\" \"),_c('div',{staticClass:\"right half\"},[_c('div',{staticClass:\"education\"},[_c('h3',[_vm._v(_vm._s(_vm.lang.education))]),_vm._v(\" \"),_vm._l((_vm.person.education),function(education){return _c('div',{key:education.degree,staticClass:\"education-block\"},[_c('span',{staticClass:\"degree\"},[_vm._v(_vm._s(education.degree))]),_vm._v(\" \"),_c('span',{staticClass:\"degree-description\"},[_vm._v(_vm._s(education.description))])])})],2),_vm._v(\" \"),_c('h3',[_vm._v(_vm._s(_vm.lang.skills))]),_vm._v(\" \"),_c('div',{staticClass:\"skills\"},_vm._l((_vm.person.skills),function(skill){return _c('div',{key:skill.name,staticClass:\"skill-block\"},[_c('span',{staticClass:\"skill\"},[_vm._v(_vm._s(skill.name))]),_vm._v(\" \"),_c('div',{staticClass:\"skill-bar\"},[_c('div',{staticClass:\"level\",style:('width: '+skill.level+'%')})])])})),_vm._v(\" \"),_c('span',{staticClass:\"skills-other\"},[_vm._v(\" \"+_vm._s(_vm.person.knowledge)+\" \")])])])}\nvar staticRenderFns = [function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:\"row\"},[_c('div',{staticClass:\"image center\"},[_c('div',{staticClass:\"img\"})])])},function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('td',[_c('i',{staticClass:\"fa fa-envelope\",attrs:{\"aria-hidden\":\"true\"}})])},function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('td',[_c('i',{staticClass:\"fa fa-phone\",attrs:{\"aria-hidden\":\"true\"}})])},function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('td',[_c('i',{staticClass:\"fa fa-home\",attrs:{\"aria-hidden\":\"true\"}})])},function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('td',[_c('i',{staticClass:\"fa fa-globe\",attrs:{\"aria-hidden\":\"true\"}})])},function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('td',[_c('i',{staticClass:\"fa fa-github\",attrs:{\"aria-hidden\":\"true\"}})])}]\nvar esExports = { render: render, staticRenderFns: staticRenderFns }\nexport default esExports\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/vue-loader/lib/template-compiler?{\"id\":\"data-v-892f1822\",\"hasScoped\":true,\"buble\":{\"transforms\":{}}}!./node_modules/vue-loader/lib/selector.js?type=template&index=0!./src/resumes/left-right.vue\n// module id = 129\n// module chunks = 1","function injectStyle (context) {\n require(\"!!../../node_modules/extract-text-webpack-plugin/dist/loader.js?{\\\"omit\\\":1,\\\"remove\\\":true}!vue-style-loader!css-loader?{\\\"minimize\\\":true,\\\"sourceMap\\\":true}!../../node_modules/vue-loader/lib/style-compiler/index?{\\\"vue\\\":true,\\\"id\\\":\\\"data-v-233d6d70\\\",\\\"scoped\\\":true,\\\"sourceMap\\\":false}!less-loader?{\\\"sourceMap\\\":true}!../../node_modules/vue-loader/lib/selector?type=styles&index=0!./oblique.vue\")\n}\nimport normalizeComponent from \"!../../node_modules/vue-loader/lib/runtime/component-normalizer\"\n/* script */\nexport * from \"!!babel-loader!../../node_modules/vue-loader/lib/selector?type=script&index=0!./oblique.vue\"\nimport __vue_script__ from \"!!babel-loader!../../node_modules/vue-loader/lib/selector?type=script&index=0!./oblique.vue\"\n/* template */\nimport __vue_template__ from \"!!../../node_modules/vue-loader/lib/template-compiler/index?{\\\"id\\\":\\\"data-v-233d6d70\\\",\\\"hasScoped\\\":true,\\\"buble\\\":{\\\"transforms\\\":{}}}!../../node_modules/vue-loader/lib/selector?type=template&index=0!./oblique.vue\"\n/* template functional */\nvar __vue_template_functional__ = false\n/* styles */\nvar __vue_styles__ = injectStyle\n/* scopeId */\nvar __vue_scopeId__ = \"data-v-233d6d70\"\n/* moduleIdentifier (server only) */\nvar __vue_module_identifier__ = null\nvar Component = normalizeComponent(\n __vue_script__,\n __vue_template__,\n __vue_template_functional__,\n __vue_styles__,\n __vue_scopeId__,\n __vue_module_identifier__\n)\n\nexport default Component.exports\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./src/resumes/oblique.vue\n// module id = 130\n// module chunks = 1","// removed by extract-text-webpack-plugin\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/extract-text-webpack-plugin/dist/loader.js?{\"omit\":1,\"remove\":true}!./node_modules/vue-style-loader!./node_modules/css-loader?{\"minimize\":true,\"sourceMap\":true}!./node_modules/vue-loader/lib/style-compiler?{\"vue\":true,\"id\":\"data-v-233d6d70\",\"scoped\":true,\"sourceMap\":false}!./node_modules/less-loader/dist/cjs.js?{\"sourceMap\":true}!./node_modules/vue-loader/lib/selector.js?type=styles&index=0!./src/resumes/oblique.vue\n// module id = 131\n// module chunks = 1","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:\"resume\",attrs:{\"id\":\"resume3\"}},[_c('div',{staticClass:\"resume-header\"},[_c('div',{staticClass:\"triangle\"}),_vm._v(\" \"),_c('div',{staticClass:\"person-header\"},[_c('div',{staticClass:\"person-wrapper\"},[_c('div',{staticClass:\"person\"},[_c('div',{staticClass:\"name\"},[_vm._v(_vm._s(_vm.person.name.first)+\" \"+_vm._s(_vm.person.name.middle)+\" \"+_vm._s(_vm.person.name.last))]),_vm._v(\" \"),_c('div',{staticClass:\"position\"},[_vm._v(_vm._s(_vm.person.position))])]),_vm._v(\" \"),_c('div',{staticClass:\"img\"})])])]),_vm._v(\" \"),_c('div',{staticClass:\"resume-content\"},[_c('div',{staticClass:\"experience\"},[_c('h3',[_vm._v(_vm._s(_vm.lang.experience))]),_vm._v(\" \"),_vm._l((_vm.person.experience),function(experience){return _c('div',{key:experience.company,staticClass:\"experience-block\"},[_c('div',{staticClass:\"row\"},[_c('span',{staticClass:\"job-title\"},[_vm._v(\" \"+_vm._s(experience.position)+\" \")]),_vm._v(\" \"),_c('i',{staticClass:\"material-icons\"},[_vm._v(\"details\")]),_vm._v(\" \"),_c('span',{staticClass:\"company\"},[_vm._v(\" \"+_vm._s(experience.company)+\" \")])]),_vm._v(\" \"),_c('div',{staticClass:\"row\"},[_c('span',{staticClass:\"time-period\"},[_vm._v(\" \"+_vm._s(experience.timeperiod))]),_vm._v(\" \"),_c('span',{staticClass:\"job-description\"},[_vm._v(\", \"+_vm._s(experience.description)+\" \")])])])})],2),_vm._v(\" \"),_c('div',{staticClass:\"education\"},[_c('h3',[_vm._v(_vm._s(_vm.lang.education))]),_vm._v(\" \"),_vm._l((_vm.person.education),function(education){return _c('div',{key:education.degree,staticClass:\"education-block\"},[_c('div',{staticClass:\"row\"},[_c('span',{staticClass:\"degree\"},[_vm._v(_vm._s(education.degree))])]),_vm._v(\" \"),_c('div',{staticClass:\"row\"},[_c('span',{staticClass:\"degree-description\"},[_vm._v(_vm._s(education.description))])])])})],2),_vm._v(\" \"),_c('div',{staticClass:\"skill-section\"},[_c('h3',[_vm._v(_vm._s(_vm.lang.skills))]),_vm._v(\" \"),_vm._l((_vm.person.skills),function(skill){return _c('div',{key:skill.name,staticClass:\"skills\"},[_c('div',{staticClass:\"skill-block\"},[_c('i',{staticClass:\"material-icons\"},[_vm._v(\"details\")]),_vm._v(\" \"),_c('span',{staticClass:\"skill\"},[_vm._v(_vm._s(skill.name))])])])})],2),_vm._v(\" \"),_c('div',{staticClass:\"skills-other\"},[_c('span',[_vm._v(_vm._s(_vm.person.knowledge)+\" \")])]),_vm._v(\" \"),_c('div',{staticClass:\"contact\"},[_c('h3',[_vm._v(_vm._s(_vm.lang.contact))]),_vm._v(\" \"),_c('a',{attrs:{\"href\":'mailto:'+_vm.person.contact.email}},[_vm._v(\" \"+_vm._s(_vm.person.contact.email))]),_vm._v(\" \"),_c('span',[_vm._v(\"; \")]),_vm._v(\" \"),_c('a',{attrs:{\"href\":'tel:'+_vm.person.contact.phone}},[_vm._v(_vm._s(_vm.person.contact.phone))]),_vm._v(\" \"),_c('span',[_vm._v(\"; \")]),_vm._v(\" \"),_c('span',[_vm._v(_vm._s(_vm.person.contact.street)+\", \"+_vm._s(_vm.person.contact.city))]),_vm._v(\" \"),_c('span',[_vm._v(\"; \")]),_vm._v(\" \"),(_vm.person.contact.website)?_c('a',{attrs:{\"href\":_vm.person.contact.website}},[_vm._v(\"\\n \"+_vm._s(_vm.person.contact.website))]):_vm._e(),_vm._v(\" \"),(_vm.person.contact.website)?_c('span',[_vm._v(\"; \")]):_vm._e(),_vm._v(\" \"),(_vm.person.contact.github)?_c('a',{attrs:{\"href\":'https://github.com/'+_vm.person.contact.github}},[_vm._v(\"\\n https://github.com/\"+_vm._s(_vm.person.contact.github))]):_vm._e()])])])}\nvar staticRenderFns = []\nvar esExports = { render: render, staticRenderFns: staticRenderFns }\nexport default esExports\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/vue-loader/lib/template-compiler?{\"id\":\"data-v-233d6d70\",\"hasScoped\":true,\"buble\":{\"transforms\":{}}}!./node_modules/vue-loader/lib/selector.js?type=template&index=0!./src/resumes/oblique.vue\n// module id = 132\n// module chunks = 1","function injectStyle (context) {\n require(\"!!../../node_modules/extract-text-webpack-plugin/dist/loader.js?{\\\"omit\\\":1,\\\"remove\\\":true}!vue-style-loader!css-loader?{\\\"minimize\\\":true,\\\"sourceMap\\\":true}!../../node_modules/vue-loader/lib/style-compiler/index?{\\\"vue\\\":true,\\\"id\\\":\\\"data-v-7a8de726\\\",\\\"scoped\\\":true,\\\"sourceMap\\\":false}!less-loader?{\\\"sourceMap\\\":true}!../../node_modules/vue-loader/lib/selector?type=styles&index=0!./side-bar.vue\")\n}\nimport normalizeComponent from \"!../../node_modules/vue-loader/lib/runtime/component-normalizer\"\n/* script */\nexport * from \"!!babel-loader!../../node_modules/vue-loader/lib/selector?type=script&index=0!./side-bar.vue\"\nimport __vue_script__ from \"!!babel-loader!../../node_modules/vue-loader/lib/selector?type=script&index=0!./side-bar.vue\"\n/* template */\nimport __vue_template__ from \"!!../../node_modules/vue-loader/lib/template-compiler/index?{\\\"id\\\":\\\"data-v-7a8de726\\\",\\\"hasScoped\\\":true,\\\"buble\\\":{\\\"transforms\\\":{}}}!../../node_modules/vue-loader/lib/selector?type=template&index=0!./side-bar.vue\"\n/* template functional */\nvar __vue_template_functional__ = false\n/* styles */\nvar __vue_styles__ = injectStyle\n/* scopeId */\nvar __vue_scopeId__ = \"data-v-7a8de726\"\n/* moduleIdentifier (server only) */\nvar __vue_module_identifier__ = null\nvar Component = normalizeComponent(\n __vue_script__,\n __vue_template__,\n __vue_template_functional__,\n __vue_styles__,\n __vue_scopeId__,\n __vue_module_identifier__\n)\n\nexport default Component.exports\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./src/resumes/side-bar.vue\n// module id = 133\n// module chunks = 1","// removed by extract-text-webpack-plugin\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/extract-text-webpack-plugin/dist/loader.js?{\"omit\":1,\"remove\":true}!./node_modules/vue-style-loader!./node_modules/css-loader?{\"minimize\":true,\"sourceMap\":true}!./node_modules/vue-loader/lib/style-compiler?{\"vue\":true,\"id\":\"data-v-7a8de726\",\"scoped\":true,\"sourceMap\":false}!./node_modules/less-loader/dist/cjs.js?{\"sourceMap\":true}!./node_modules/vue-loader/lib/selector.js?type=styles&index=0!./src/resumes/side-bar.vue\n// module id = 134\n// module chunks = 1","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:\"resume\",attrs:{\"id\":\"resume2\"}},[_c('div',{staticClass:\"top-row\"},[_c('span',{staticClass:\"person-name\"},[_vm._v(\"\\n \"+_vm._s(_vm.person.name.first)+\" \"+_vm._s(_vm.person.name.middle)+\" \"+_vm._s(_vm.person.name.last)+\"\\n \")]),_vm._v(\" \"),_c('span',{staticClass:\"person-position\"},[_vm._v(\"\\n \"+_vm._s(_vm.person.position)+\"\\n \")])]),_vm._v(\" \"),_c('div',{staticClass:\"left-col\"},[_vm._m(0),_vm._v(\" \"),_c('div',{staticClass:\"contact\"},[_c('h3',[_vm._v(_vm._s(_vm.lang.contact))]),_vm._v(\" \"),_c('div',{staticClass:\"contact-row\"},[_c('a',{attrs:{\"href\":'mailto:'+_vm.person.contact.email}},[_vm._v(_vm._s(_vm.person.contact.email))])]),_vm._v(\" \"),_vm._m(1),_vm._v(\" \"),_c('div',{staticClass:\"contact-row\"},[_c('a',{attrs:{\"href\":'tel:'+_vm.person.contact.phone}},[_vm._v(_vm._s(_vm.person.contact.phone))])]),_vm._v(\" \"),_vm._m(2),_vm._v(\" \"),_c('div',{staticClass:\"contact-row\"},[_vm._v(\"\\n \"+_vm._s(_vm.person.contact.street)+\" \"),_c('br'),_vm._v(\" \"+_vm._s(_vm.person.contact.city)+\"\\n \")]),_vm._v(\" \"),(_vm.person.contact.github)?_c('div',{staticClass:\"contact-row dots\"},[_c('i',{staticClass:\"fa fa-circle\",attrs:{\"aria-hidden\":\"true\"}}),_vm._v(\" \"),_c('i',{staticClass:\"fa fa-circle\",attrs:{\"aria-hidden\":\"true\"}}),_vm._v(\" \"),_c('i',{staticClass:\"fa fa-circle\",attrs:{\"aria-hidden\":\"true\"}})]):_vm._e(),_vm._v(\" \"),(_vm.person.contact.github)?_c('div',{staticClass:\"contact-row\"},[_c('a',{attrs:{\"href\":'https://github.com/'+_vm.person.contact.github}},[_vm._v(\"https://github.com/\"+_vm._s(_vm.person.contact.github))])]):_vm._e()])]),_vm._v(\" \"),_c('div',{staticClass:\"right-col\"},[_c('div',{staticClass:\"experience\"},[_c('h3',[_vm._v(_vm._s(_vm.lang.experience))]),_vm._v(\" \"),_vm._l((_vm.person.experience),function(experience){return _c('div',{key:experience.company,staticClass:\"experience-block\"},[_c('div',{staticClass:\"row\"},[_c('span',{staticClass:\"company\"},[_vm._v(\" \"+_vm._s(experience.company)+\" -\")]),_vm._v(\" \"),_c('span',{staticClass:\"job-title\"},[_vm._v(\" \"+_vm._s(experience.position)+\" \")])]),_vm._v(\" \"),_c('div',{staticClass:\"row\"},[_c('span',{staticClass:\"time-period\"},[_vm._v(\" \"+_vm._s(experience.timeperiod))])]),_vm._v(\" \"),_c('div',{staticClass:\"row\"},[_c('span',{staticClass:\"job-description\"},[_vm._v(\" \"+_vm._s(experience.description)+\" \")])])])})],2),_vm._v(\" \"),_c('div',{staticClass:\"education\"},[_c('h3',[_vm._v(_vm._s(_vm.lang.education))]),_vm._v(\" \"),_vm._l((_vm.person.education),function(education){return _c('div',{key:education.degree,staticClass:\"education-block\"},[_c('div',{staticClass:\"row\"},[_c('span',{staticClass:\"degree\"},[_vm._v(_vm._s(education.degree))])]),_vm._v(\" \"),_c('div',{staticClass:\"row\"},[_c('span',{staticClass:\"degree-description\"},[_vm._v(_vm._s(education.description))])])])})],2),_vm._v(\" \"),_c('div',{staticClass:\"skills-block\"},[_c('h3',[_vm._v(_vm._s(_vm.lang.skills))]),_vm._v(\" \"),_c('div',{staticClass:\"skills\"},_vm._l((_vm.person.skills),function(skill){return _c('div',{key:skill.name,staticClass:\"skill\"},[_c('span',{staticClass:\"skill-name\"},[_vm._v(_vm._s(skill.name))])])})),_vm._v(\" \"),_c('span',{staticClass:\"skills-other\"},[_vm._v(\" \"+_vm._s(_vm.person.knowledge)+\" \")])])])])}\nvar staticRenderFns = [function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:\"person-image\"},[_c('div',{staticClass:\"image-centerer\"},[_c('div',{staticClass:\"img\"})])])},function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:\"contact-row dots\"},[_c('i',{staticClass:\"fa fa-circle\",attrs:{\"aria-hidden\":\"true\"}}),_vm._v(\" \"),_c('i',{staticClass:\"fa fa-circle\",attrs:{\"aria-hidden\":\"true\"}}),_vm._v(\" \"),_c('i',{staticClass:\"fa fa-circle\",attrs:{\"aria-hidden\":\"true\"}})])},function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:\"contact-row dots\"},[_c('i',{staticClass:\"fa fa-circle\",attrs:{\"aria-hidden\":\"true\"}}),_vm._v(\" \"),_c('i',{staticClass:\"fa fa-circle\",attrs:{\"aria-hidden\":\"true\"}}),_vm._v(\" \"),_c('i',{staticClass:\"fa fa-circle\",attrs:{\"aria-hidden\":\"true\"}})])}]\nvar esExports = { render: render, staticRenderFns: staticRenderFns }\nexport default esExports\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/vue-loader/lib/template-compiler?{\"id\":\"data-v-7a8de726\",\"hasScoped\":true,\"buble\":{\"transforms\":{}}}!./node_modules/vue-loader/lib/selector.js?type=template&index=0!./src/resumes/side-bar.vue\n// module id = 135\n// module chunks = 1","function injectStyle (context) {\n require(\"!!../../node_modules/extract-text-webpack-plugin/dist/loader.js?{\\\"omit\\\":1,\\\"remove\\\":true}!vue-style-loader!css-loader?{\\\"minimize\\\":true,\\\"sourceMap\\\":true}!../../node_modules/vue-loader/lib/style-compiler/index?{\\\"vue\\\":true,\\\"id\\\":\\\"data-v-0dad0972\\\",\\\"scoped\\\":true,\\\"sourceMap\\\":false}!less-loader?{\\\"sourceMap\\\":true}!../../node_modules/vue-loader/lib/selector?type=styles&index=0!./purple.vue\")\n}\nimport normalizeComponent from \"!../../node_modules/vue-loader/lib/runtime/component-normalizer\"\n/* script */\nexport * from \"!!babel-loader!../../node_modules/vue-loader/lib/selector?type=script&index=0!./purple.vue\"\nimport __vue_script__ from \"!!babel-loader!../../node_modules/vue-loader/lib/selector?type=script&index=0!./purple.vue\"\n/* template */\nimport __vue_template__ from \"!!../../node_modules/vue-loader/lib/template-compiler/index?{\\\"id\\\":\\\"data-v-0dad0972\\\",\\\"hasScoped\\\":true,\\\"buble\\\":{\\\"transforms\\\":{}}}!../../node_modules/vue-loader/lib/selector?type=template&index=0!./purple.vue\"\n/* template functional */\nvar __vue_template_functional__ = false\n/* styles */\nvar __vue_styles__ = injectStyle\n/* scopeId */\nvar __vue_scopeId__ = \"data-v-0dad0972\"\n/* moduleIdentifier (server only) */\nvar __vue_module_identifier__ = null\nvar Component = normalizeComponent(\n __vue_script__,\n __vue_template__,\n __vue_template_functional__,\n __vue_styles__,\n __vue_scopeId__,\n __vue_module_identifier__\n)\n\nexport default Component.exports\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./src/resumes/purple.vue\n// module id = 136\n// module chunks = 1","// removed by extract-text-webpack-plugin\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/extract-text-webpack-plugin/dist/loader.js?{\"omit\":1,\"remove\":true}!./node_modules/vue-style-loader!./node_modules/css-loader?{\"minimize\":true,\"sourceMap\":true}!./node_modules/vue-loader/lib/style-compiler?{\"vue\":true,\"id\":\"data-v-0dad0972\",\"scoped\":true,\"sourceMap\":false}!./node_modules/less-loader/dist/cjs.js?{\"sourceMap\":true}!./node_modules/vue-loader/lib/selector.js?type=styles&index=0!./src/resumes/purple.vue\n// module id = 137\n// module chunks = 1","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:\"resume\",attrs:{\"id\":\"template\"}},[_c('div',{attrs:{\"id\":\"resume-header\"}},[_c('div',{attrs:{\"id\":\"header-left\"}},[_c('h2',{attrs:{\"id\":\"position\"}},[_vm._v(_vm._s(_vm.person.position))]),_vm._v(\" \"),_c('h1',{attrs:{\"id\":\"name\"}},[_vm._v(_vm._s(_vm.person.name.first)+\" \"+_vm._s(_vm.person.name.last))]),_vm._v(\" \"),_c('div',{attrs:{\"id\":\"info-flex\"}},[_c('span',{attrs:{\"id\":\"email\"}},[_c('a',{attrs:{\"href\":\"mailto:\" + _vm.person.contact.email}},[_c('i',{staticClass:\"fa fa-envelope\",attrs:{\"aria-hidden\":\"true\"}}),_vm._v(\" \"+_vm._s(_vm.person.contact.email))])]),_vm._v(\" \"),_c('span',{attrs:{\"id\":\"phone\"}},[_c('i',{staticClass:\"fa fa-phone-square\",attrs:{\"aria-hidden\":\"true\"}}),_vm._v(\" \"+_vm._s(_vm.person.contact.phone))]),_vm._v(\" \"),(_vm.person.contact.website)?_c('span',{attrs:{\"id\":\"website\"}},[_c('a',{attrs:{\"href\":_vm.person.contact.website}},[_c('i',{staticClass:\"fa fa-home\",attrs:{\"aria-hidden\":\"true\"}}),_vm._v(\" \"+_vm._s(_vm.person.contact.website))])]):_vm._e(),_vm._v(\" \"),(_vm.person.contact.github)?_c('span',{attrs:{\"id\":\"github\"}},[_c('a',{attrs:{\"href\":\"https://github.com/\" + _vm.person.contact.github}},[_c('i',{staticClass:\"fa fa-github\",attrs:{\"aria-hidden\":\"true\"}}),_vm._v(\" \"+_vm._s(_vm.person.contact.github))])]):_vm._e()])]),_vm._v(\" \"),_vm._m(0)]),_vm._v(\" \"),_c('div',{attrs:{\"id\":\"resume-body\"}},[_c('div',{attrs:{\"id\":\"experience-container\"}},[_c('h2',{attrs:{\"id\":\"experience-title\"}},[_vm._v(_vm._s(_vm.lang.experience))]),_vm._v(\" \"),_c('div',{staticClass:\"spacer\"}),_vm._v(\" \"),_vm._l((_vm.person.experience),function(experience){return _c('div',{key:experience.company,staticClass:\"experience\"},[_c('h2',{staticClass:\"company\"},[_vm._v(_vm._s(experience.company))]),_vm._v(\" \"),_c('p',{staticClass:\"job-info\"},[_c('span',{staticClass:\"job-title\"},[_vm._v(_vm._s(experience.position)+\" | \")]),_c('span',{staticClass:\"experience-timeperiod\"},[_vm._v(_vm._s(experience.timeperiod))])]),_vm._v(\" \"),(experience.description)?_c('p',{staticClass:\"job-description\"},[_vm._v(_vm._s(experience.description))]):_vm._e(),_vm._v(\" \"),(experience.list)?_c('ul',_vm._l((experience.list),function(item,index){return _c('li',{key:index},[_c('span',{staticClass:\"list-item-black\"},[_vm._v(\"\\n \"+_vm._s(item)+\"\\n \")])])})):_vm._e()])})],2),_vm._v(\" \"),_c('div',{attrs:{\"id\":\"education-container\"}},[_c('h2',{attrs:{\"id\":\"education-title\"}},[_vm._v(_vm._s(_vm.lang.education))]),_vm._v(\" \"),_c('div',{staticClass:\"spacer\"}),_vm._v(\" \"),_vm._l((_vm.person.education),function(education){return _c('div',{key:education.degree,staticClass:\"education\"},[_c('h2',{staticClass:\"education-description\"},[_vm._v(_vm._s(education.description))]),_vm._v(\" \"),_c('p',[_c('span',{staticClass:\"degree\"},[_vm._v(_vm._s(education.degree)+\" | \")]),_c('span',{staticClass:\"education-timeperiod\"},[_vm._v(_vm._s(education.timeperiod))])])])})],2),_vm._v(\" \"),(_vm.person.skills != [])?_c('div',{attrs:{\"id\":\"skills-container\"}},[_c('h2',{attrs:{\"id\":\"skills-title\"}},[_vm._v(_vm._s(_vm.lang.skills))]),_vm._v(\" \"),_c('div',{staticClass:\"spacer\"}),_vm._v(\" \"),_c('p',{attrs:{\"id\":\"skill-description\"}},[_vm._v(_vm._s(_vm.person.knowledge))]),_vm._v(\" \"),_c('ul',{attrs:{\"id\":\"skill-list\"}},_vm._l((_vm.person.skills),function(skill){return _c('li',{key:skill.name,staticClass:\"skill\"},[_c('span',{staticClass:\"list-item-black\"},[_vm._v(\"\\n \"+_vm._s(skill.name)+\"\\n \")])])}))]):_vm._e()]),_vm._v(\" \"),_c('div',{attrs:{\"id\":\"resume-footer\"}},[(_vm.person.about)?_c('div',[_c('h2',[_vm._v(_vm._s(_vm.lang.about))]),_vm._v(\" \"),_c('p',[_vm._v(_vm._s(_vm.person.about))])]):_vm._e()])])}\nvar staticRenderFns = [function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{attrs:{\"id\":\"header-right\"}},[_c('div',{attrs:{\"id\":\"headshot\"}})])}]\nvar esExports = { render: render, staticRenderFns: staticRenderFns }\nexport default esExports\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/vue-loader/lib/template-compiler?{\"id\":\"data-v-0dad0972\",\"hasScoped\":true,\"buble\":{\"transforms\":{}}}!./node_modules/vue-loader/lib/selector.js?type=template&index=0!./src/resumes/purple.vue\n// module id = 138\n// module chunks = 1","function injectStyle (context) {\n require(\"!!../../node_modules/extract-text-webpack-plugin/dist/loader.js?{\\\"omit\\\":1,\\\"remove\\\":true}!vue-style-loader!css-loader?{\\\"minimize\\\":true,\\\"sourceMap\\\":true}!../../node_modules/vue-loader/lib/style-compiler/index?{\\\"vue\\\":true,\\\"id\\\":\\\"data-v-5a320576\\\",\\\"scoped\\\":true,\\\"sourceMap\\\":false}!less-loader?{\\\"sourceMap\\\":true}!../../node_modules/vue-loader/lib/selector?type=styles&index=0!./side-bar-rtl.vue\")\n}\nimport normalizeComponent from \"!../../node_modules/vue-loader/lib/runtime/component-normalizer\"\n/* script */\nexport * from \"!!babel-loader!../../node_modules/vue-loader/lib/selector?type=script&index=0!./side-bar-rtl.vue\"\nimport __vue_script__ from \"!!babel-loader!../../node_modules/vue-loader/lib/selector?type=script&index=0!./side-bar-rtl.vue\"\n/* template */\nimport __vue_template__ from \"!!../../node_modules/vue-loader/lib/template-compiler/index?{\\\"id\\\":\\\"data-v-5a320576\\\",\\\"hasScoped\\\":true,\\\"buble\\\":{\\\"transforms\\\":{}}}!../../node_modules/vue-loader/lib/selector?type=template&index=0!./side-bar-rtl.vue\"\n/* template functional */\nvar __vue_template_functional__ = false\n/* styles */\nvar __vue_styles__ = injectStyle\n/* scopeId */\nvar __vue_scopeId__ = \"data-v-5a320576\"\n/* moduleIdentifier (server only) */\nvar __vue_module_identifier__ = null\nvar Component = normalizeComponent(\n __vue_script__,\n __vue_template__,\n __vue_template_functional__,\n __vue_styles__,\n __vue_scopeId__,\n __vue_module_identifier__\n)\n\nexport default Component.exports\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./src/resumes/side-bar-rtl.vue\n// module id = 139\n// module chunks = 1","// removed by extract-text-webpack-plugin\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/extract-text-webpack-plugin/dist/loader.js?{\"omit\":1,\"remove\":true}!./node_modules/vue-style-loader!./node_modules/css-loader?{\"minimize\":true,\"sourceMap\":true}!./node_modules/vue-loader/lib/style-compiler?{\"vue\":true,\"id\":\"data-v-5a320576\",\"scoped\":true,\"sourceMap\":false}!./node_modules/less-loader/dist/cjs.js?{\"sourceMap\":true}!./node_modules/vue-loader/lib/selector.js?type=styles&index=0!./src/resumes/side-bar-rtl.vue\n// module id = 140\n// module chunks = 1","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:\"resume\",attrs:{\"id\":\"resume2\"}},[_c('div',{staticClass:\"top-row\"},[_c('span',{staticClass:\"person-name\"},[_vm._v(\"\\n \"+_vm._s(_vm.person.name.first)+\" \"+_vm._s(_vm.person.name.middle)+\" \"+_vm._s(_vm.person.name.last)+\"\\n \")]),_vm._v(\" \"),_c('span',{staticClass:\"person-position\"},[_vm._v(\"\\n \"+_vm._s(_vm.person.position)+\"\\n \")])]),_vm._v(\" \"),_c('div',{staticClass:\"right-col\"},[_vm._m(0),_vm._v(\" \"),_c('div',{staticClass:\"contact\"},[_c('h3',[_vm._v(_vm._s(_vm.lang.contact))]),_vm._v(\" \"),_c('div',{staticClass:\"contact-row\"},[_c('a',{attrs:{\"href\":'mailto:'+_vm.person.contact.email}},[_vm._v(_vm._s(_vm.person.contact.email))])]),_vm._v(\" \"),_vm._m(1),_vm._v(\" \"),_c('div',{staticClass:\"contact-row\"},[_c('a',{attrs:{\"href\":\"'tel:'+person.contact.phone\"}},[_vm._v(_vm._s(_vm.person.contact.phone))])]),_vm._v(\" \"),_vm._m(2),_vm._v(\" \"),_c('div',{staticClass:\"contact-row\"},[_vm._v(\"\\n \"+_vm._s(_vm.person.contact.street)+\" \"),_c('br'),_vm._v(\" \"+_vm._s(_vm.person.contact.city)+\"\\n \")]),_vm._v(\" \"),_vm._m(3),_vm._v(\" \"),_c('div',{staticClass:\"contact-row\"},[_c('a',{attrs:{\"href\":'https://github.com/'+_vm.person.contact.github}},[_vm._v(\"https://github.com/\"+_vm._s(_vm.person.contact.github))])])])]),_vm._v(\" \"),_c('div',{staticClass:\"left-col\"},[_c('div',{staticClass:\"experience\"},[_c('h3',[_vm._v(_vm._s(_vm.lang.experience))]),_vm._v(\" \"),_vm._l((_vm.person.experience),function(experience){return _c('div',{staticClass:\"experience-block\"},[_c('div',{staticClass:\"row\"},[_c('span',{staticClass:\"company\"},[_vm._v(\" \"+_vm._s(experience.company)+\" -\")]),_vm._v(\" \"),_c('span',{staticClass:\"job-title\"},[_vm._v(\" \"+_vm._s(experience.position)+\" \")])]),_vm._v(\" \"),_c('div',{staticClass:\"row\"},[_c('span',{staticClass:\"time-period\"},[_vm._v(\" \"+_vm._s(experience.timeperiod))])]),_vm._v(\" \"),_c('div',{staticClass:\"row\"},[_c('span',{staticClass:\"job-description\"},[_vm._v(\" \"+_vm._s(experience.description)+\" \")])])])})],2),_vm._v(\" \"),_c('div',{staticClass:\"education\"},[_c('h3',[_vm._v(_vm._s(_vm.lang.education))]),_vm._v(\" \"),_vm._l((_vm.person.education),function(education){return _c('div',{staticClass:\"education-block\"},[_c('div',{staticClass:\"row\"},[_c('span',{staticClass:\"degree\"},[_vm._v(_vm._s(education.degree))])]),_vm._v(\" \"),_c('div',{staticClass:\"row\"},[_c('span',{staticClass:\"degree-description\"},[_vm._v(_vm._s(education.description))])])])})],2),_vm._v(\" \"),_c('div',{staticClass:\"skills-block\"},[_c('h3',[_vm._v(_vm._s(_vm.lang.skills))]),_vm._v(\" \"),_c('div',{staticClass:\"skills\"},_vm._l((_vm.person.skills),function(skill){return _c('div',{staticClass:\"skill\"},[_c('span',{staticClass:\"skill-name\"},[_vm._v(_vm._s(skill.name))])])})),_vm._v(\" \"),_c('span',{staticClass:\"skills-other\"},[_vm._v(\" \"+_vm._s(_vm.person.knowledge)+\" \")])])])])}\nvar staticRenderFns = [function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:\"person-image\"},[_c('div',{staticClass:\"image-centerer\"},[_c('div',{staticClass:\"img\"})])])},function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:\"contact-row dots\"},[_c('i',{staticClass:\"fa fa-circle\",attrs:{\"aria-hidden\":\"true\"}}),_vm._v(\" \"),_c('i',{staticClass:\"fa fa-circle\",attrs:{\"aria-hidden\":\"true\"}}),_vm._v(\" \"),_c('i',{staticClass:\"fa fa-circle\",attrs:{\"aria-hidden\":\"true\"}})])},function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:\"contact-row dots\"},[_c('i',{staticClass:\"fa fa-circle\",attrs:{\"aria-hidden\":\"true\"}}),_vm._v(\" \"),_c('i',{staticClass:\"fa fa-circle\",attrs:{\"aria-hidden\":\"true\"}}),_vm._v(\" \"),_c('i',{staticClass:\"fa fa-circle\",attrs:{\"aria-hidden\":\"true\"}})])},function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:\"contact-row dots\"},[_c('i',{staticClass:\"fa fa-circle\",attrs:{\"aria-hidden\":\"true\"}}),_vm._v(\" \"),_c('i',{staticClass:\"fa fa-circle\",attrs:{\"aria-hidden\":\"true\"}}),_vm._v(\" \"),_c('i',{staticClass:\"fa fa-circle\",attrs:{\"aria-hidden\":\"true\"}})])}]\nvar esExports = { render: render, staticRenderFns: staticRenderFns }\nexport default esExports\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/vue-loader/lib/template-compiler?{\"id\":\"data-v-5a320576\",\"hasScoped\":true,\"buble\":{\"transforms\":{}}}!./node_modules/vue-loader/lib/selector.js?type=template&index=0!./src/resumes/side-bar-rtl.vue\n// module id = 141\n// module chunks = 1","function injectStyle (context) {\n require(\"!!../../node_modules/extract-text-webpack-plugin/dist/loader.js?{\\\"omit\\\":1,\\\"remove\\\":true}!vue-style-loader!css-loader?{\\\"minimize\\\":true,\\\"sourceMap\\\":true}!../../node_modules/vue-loader/lib/style-compiler/index?{\\\"vue\\\":true,\\\"id\\\":\\\"data-v-0b36d5e6\\\",\\\"scoped\\\":true,\\\"sourceMap\\\":false}!less-loader?{\\\"sourceMap\\\":true}!../../node_modules/vue-loader/lib/selector?type=styles&index=0!./left-right-rtl.vue\")\n}\nimport normalizeComponent from \"!../../node_modules/vue-loader/lib/runtime/component-normalizer\"\n/* script */\nexport * from \"!!babel-loader!../../node_modules/vue-loader/lib/selector?type=script&index=0!./left-right-rtl.vue\"\nimport __vue_script__ from \"!!babel-loader!../../node_modules/vue-loader/lib/selector?type=script&index=0!./left-right-rtl.vue\"\n/* template */\nimport __vue_template__ from \"!!../../node_modules/vue-loader/lib/template-compiler/index?{\\\"id\\\":\\\"data-v-0b36d5e6\\\",\\\"hasScoped\\\":true,\\\"buble\\\":{\\\"transforms\\\":{}}}!../../node_modules/vue-loader/lib/selector?type=template&index=0!./left-right-rtl.vue\"\n/* template functional */\nvar __vue_template_functional__ = false\n/* styles */\nvar __vue_styles__ = injectStyle\n/* scopeId */\nvar __vue_scopeId__ = \"data-v-0b36d5e6\"\n/* moduleIdentifier (server only) */\nvar __vue_module_identifier__ = null\nvar Component = normalizeComponent(\n __vue_script__,\n __vue_template__,\n __vue_template_functional__,\n __vue_styles__,\n __vue_scopeId__,\n __vue_module_identifier__\n)\n\nexport default Component.exports\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./src/resumes/left-right-rtl.vue\n// module id = 142\n// module chunks = 1","// removed by extract-text-webpack-plugin\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/extract-text-webpack-plugin/dist/loader.js?{\"omit\":1,\"remove\":true}!./node_modules/vue-style-loader!./node_modules/css-loader?{\"minimize\":true,\"sourceMap\":true}!./node_modules/vue-loader/lib/style-compiler?{\"vue\":true,\"id\":\"data-v-0b36d5e6\",\"scoped\":true,\"sourceMap\":false}!./node_modules/less-loader/dist/cjs.js?{\"sourceMap\":true}!./node_modules/vue-loader/lib/selector.js?type=styles&index=0!./src/resumes/left-right-rtl.vue\n// module id = 143\n// module chunks = 1","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:\"resume\",attrs:{\"id\":\"resume1\"}},[_c('div',{staticClass:\"row text-center\"},[_c('span',{staticClass:\"name\"},[_vm._v(_vm._s(_vm.person.name.first)+\" \"+_vm._s(_vm.person.name.middle)+\" \"+_vm._s(_vm.person.name.last))])]),_vm._v(\" \"),_c('div',{staticClass:\"row text-center\"},[_c('p',{staticClass:\"position center\"},[_vm._v(_vm._s(_vm.person.position))])]),_vm._v(\" \"),_vm._m(0),_vm._v(\" \"),_c('div',{staticClass:\"left half\"},[_c('div',{staticClass:\"experience\"},[_c('h3',[_vm._v(_vm._s(_vm.lang.experience))]),_vm._v(\" \"),_vm._l((_vm.person.experience),function(experience){return _c('div',{key:experience.company,staticClass:\"experience-block\"},[_c('span',{staticClass:\"company\"},[_vm._v(\" \"+_vm._s(experience.company)+\" \")]),_vm._v(\" \"),_c('span',{staticClass:\"job-title\"},[_vm._v(\" \"+_vm._s(experience.position)+\" \")]),_vm._v(\" \"),_c('span',{staticClass:\"time-period\"},[_vm._v(\" \"+_vm._s(experience.timeperiod))]),_vm._v(\" \"),_c('span',{staticClass:\"job-description\"},[_vm._v(\" \"+_vm._s(experience.description)+\" \")])])})],2),_vm._v(\" \"),_c('div',{staticClass:\"contact\"},[_c('h3',[_vm._v(_vm._s(_vm.lang.contact))]),_vm._v(\" \"),_c('table',[_c('tr',[_vm._m(1),_vm._v(\" \"),_c('td',[_c('a',{attrs:{\"href\":'mailto:'+_vm.person.contact.email}},[_vm._v(_vm._s(_vm.person.contact.email))])])]),_vm._v(\" \"),_c('tr',[_vm._m(2),_vm._v(\" \"),_c('td',[_c('a',{attrs:{\"href\":'tel:'+_vm.person.contact.phone}},[_vm._v(_vm._s(_vm.person.contact.phone))])])]),_vm._v(\" \"),_c('tr',[_vm._m(3),_vm._v(\" \"),_c('td',[_vm._v(_vm._s(_vm.person.contact.street)+\" \"),_c('br'),_vm._v(\" \"+_vm._s(_vm.person.contact.city))])]),_vm._v(\" \"),(_vm.person.contact.website)?_c('tr',[_vm._m(4),_vm._v(\" \"),_c('td',[_c('a',{attrs:{\"href\":_vm.person.contact.website}},[_vm._v(_vm._s(_vm.person.contact.website))])])]):_vm._e(),_vm._v(\" \"),(_vm.person.contact.github)?_c('tr',[_vm._m(5),_vm._v(\" \"),_c('td',[_c('a',{attrs:{\"href\":'https://github.com/'+_vm.person.contact.github}},[_vm._v(\"https://github.com/\"+_vm._s(_vm.person.contact.github))])])]):_vm._e()])])]),_vm._v(\" \"),_c('div',{staticClass:\"right half\"},[_c('div',{staticClass:\"education\"},[_c('h3',[_vm._v(_vm._s(_vm.lang.education))]),_vm._v(\" \"),_vm._l((_vm.person.education),function(education){return _c('div',{key:education.degree,staticClass:\"education-block\"},[_c('span',{staticClass:\"degree\"},[_vm._v(_vm._s(education.degree))]),_vm._v(\" \"),_c('span',{staticClass:\"degree-description\"},[_vm._v(_vm._s(education.description))])])})],2),_vm._v(\" \"),_c('h3',[_vm._v(_vm._s(_vm.lang.skills))]),_vm._v(\" \"),_c('div',{staticClass:\"skills\"},_vm._l((_vm.person.skills),function(skill){return _c('div',{key:skill.name,staticClass:\"skill-block\"},[_c('span',{staticClass:\"skill\"},[_vm._v(_vm._s(skill.name))]),_vm._v(\" \"),_c('div',{staticClass:\"skill-bar\"},[_c('div',{staticClass:\"level\",style:('width: '+skill.level+'%')})])])})),_vm._v(\" \"),_c('span',{staticClass:\"skills-other\"},[_vm._v(\" \"+_vm._s(_vm.person.skillDescription)+\" \")])])])}\nvar staticRenderFns = [function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:\"row\"},[_c('div',{staticClass:\"image center\"},[_c('div',{staticClass:\"img\"})])])},function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('td',[_c('i',{staticClass:\"fa fa-envelope\",attrs:{\"aria-hidden\":\"true\"}})])},function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('td',[_c('i',{staticClass:\"fa fa-phone\",attrs:{\"aria-hidden\":\"true\"}})])},function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('td',[_c('i',{staticClass:\"fa fa-home\",attrs:{\"aria-hidden\":\"true\"}})])},function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('td',[_c('i',{staticClass:\"fa fa-globe\",attrs:{\"aria-hidden\":\"true\"}})])},function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('td',[_c('i',{staticClass:\"fa fa-github\",attrs:{\"aria-hidden\":\"true\"}})])}]\nvar esExports = { render: render, staticRenderFns: staticRenderFns }\nexport default esExports\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/vue-loader/lib/template-compiler?{\"id\":\"data-v-0b36d5e6\",\"hasScoped\":true,\"buble\":{\"transforms\":{}}}!./node_modules/vue-loader/lib/selector.js?type=template&index=0!./src/resumes/left-right-rtl.vue\n// module id = 144\n// module chunks = 1","function injectStyle (context) {\n require(\"!!../../node_modules/extract-text-webpack-plugin/dist/loader.js?{\\\"omit\\\":1,\\\"remove\\\":true}!vue-style-loader!css-loader?{\\\"minimize\\\":true,\\\"sourceMap\\\":true}!../../node_modules/vue-loader/lib/style-compiler/index?{\\\"vue\\\":true,\\\"id\\\":\\\"data-v-c5510dfe\\\",\\\"scoped\\\":true,\\\"sourceMap\\\":false}!less-loader?{\\\"sourceMap\\\":true}!../../node_modules/vue-loader/lib/selector?type=styles&index=0!./creative.vue\")\n}\nimport normalizeComponent from \"!../../node_modules/vue-loader/lib/runtime/component-normalizer\"\n/* script */\nexport * from \"!!babel-loader!../../node_modules/vue-loader/lib/selector?type=script&index=0!./creative.vue\"\nimport __vue_script__ from \"!!babel-loader!../../node_modules/vue-loader/lib/selector?type=script&index=0!./creative.vue\"\n/* template */\nimport __vue_template__ from \"!!../../node_modules/vue-loader/lib/template-compiler/index?{\\\"id\\\":\\\"data-v-c5510dfe\\\",\\\"hasScoped\\\":true,\\\"buble\\\":{\\\"transforms\\\":{}}}!../../node_modules/vue-loader/lib/selector?type=template&index=0!./creative.vue\"\n/* template functional */\nvar __vue_template_functional__ = false\n/* styles */\nvar __vue_styles__ = injectStyle\n/* scopeId */\nvar __vue_scopeId__ = \"data-v-c5510dfe\"\n/* moduleIdentifier (server only) */\nvar __vue_module_identifier__ = null\nvar Component = normalizeComponent(\n __vue_script__,\n __vue_template__,\n __vue_template_functional__,\n __vue_styles__,\n __vue_scopeId__,\n __vue_module_identifier__\n)\n\nexport default Component.exports\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./src/resumes/creative.vue\n// module id = 145\n// module chunks = 1","// removed by extract-text-webpack-plugin\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/extract-text-webpack-plugin/dist/loader.js?{\"omit\":1,\"remove\":true}!./node_modules/vue-style-loader!./node_modules/css-loader?{\"minimize\":true,\"sourceMap\":true}!./node_modules/vue-loader/lib/style-compiler?{\"vue\":true,\"id\":\"data-v-c5510dfe\",\"scoped\":true,\"sourceMap\":false}!./node_modules/less-loader/dist/cjs.js?{\"sourceMap\":true}!./node_modules/vue-loader/lib/selector.js?type=styles&index=0!./src/resumes/creative.vue\n// module id = 146\n// module chunks = 1","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:\"resume\",attrs:{\"id\":\"resume2\"}},[_c('div',{staticClass:\"left-column\"},[_c('div',[_c('div',{staticClass:\"headline\"},[_c('span',[_vm._v(\" \"+_vm._s(_vm.person.name.first)+\" \"+_vm._s(_vm.person.name.middle)+\" \")]),_vm._v(\" \"),_c('span',{staticClass:\"uppercase\"},[_vm._v(\" \"+_vm._s(_vm.person.name.last)+\" \")])]),_vm._v(\" \"),_c('p',[_c('span',{staticClass:\"txt-full-white\"},[_vm._v(\" \"+_vm._s(_vm.person.position)+\" \")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('span',[_vm._v(\" \"+_vm._s(_vm.person.contact.city)+\" \")])])]),_vm._v(\" \"),_c('div',{staticClass:\"multi-line-txt\"},[_vm._v(\"\\n \"+_vm._s(_vm.person.about)+\"\\n \")]),_vm._v(\" \"),_c('div',{staticClass:\"multi-line-txt\"},[_vm._v(\"\\n \"+_vm._s(_vm.person.knowledge)+\"\\n \")]),_vm._v(\" \"),_c('a',{attrs:{\"href\":'mailto:' + _vm.person.contact.email}},[_c('div',{staticClass:\"block-marged txt-full-white\"},[_vm._v(\"\\n \"+_vm._s(_vm.person.contact.email)+\"\\n \")])]),_vm._v(\" \"),_c('div',{staticClass:\"block-marged txt-full-white\"},[_vm._v(\"\\n \"+_vm._s(_vm.person.contact.phone)+\"\\n \")]),_vm._v(\" \"),_c('div',{staticClass:\"social-container\"},[(_vm.person.contact.website)?_c('a',{attrs:{\"href\":_vm.person.contact.website}},[_c('div',{staticClass:\"block-marged txt-full-white\"},[_c('i',{staticClass:\"fa fa-globe contact-icon\"}),_vm._v(\"\\n \"+_vm._s(_vm.person.contact.website)+\"\\n \")])]):_vm._e(),_vm._v(\" \"),(_vm.person.contact.github)?_c('a',{staticClass:\"external-link\",attrs:{\"href\":'https://github.com/' + _vm.person.contact.github}},[_c('i',{staticClass:\"fa fa-github contact-icon\"}),_vm._v(\" \"),_c('span',{staticClass:\"block-marged txt-full-white\"},[_vm._v(\"\\n \"+_vm._s(_vm.person.contact.github)+\"\\n \")])]):_vm._e(),_vm._v(\" \"),(_vm.person.contact.codefights)?_c('a',{staticClass:\"external-link\",attrs:{\"href\":'https://codefights.com/profile/' + _vm.person.contact.codefights}},[_c('svg',{staticClass:\"contact-icon-svg\",attrs:{\"width\":\"20\",\"height\":\"20\",\"viewBox\":\"0 0 24 24\"}},[_c('path',{attrs:{\"d\":\"M12 15.2L9.2 4.8 0 3.2l1.7 2.6 5.7.7.7 2.3-3.7-.4 1.3 2 3 .3L12 20.8l3.3-10.1 3-.3 1.3-2-3.7.4.7-2.3 5.7-.7L24 3.2l-9.2 1.6\"}})]),_vm._v(\" \"),_c('span',{staticClass:\"block-marged txt-full-white\"},[_vm._v(\"\\n \"+_vm._s(_vm.person.contact.codefights)+\"\\n \")])]):_vm._e(),_vm._v(\" \"),(_vm.person.contact.medium)?_c('a',{staticClass:\"external-link\",attrs:{\"href\":'https://medium.com/@' + _vm.person.contact.medium}},[_c('i',{staticClass:\"fab fa-medium contact-icon\"}),_vm._v(\" \"),_c('span',{staticClass:\"block-marged txt-full-white\"},[_vm._v(\"\\n \"+_vm._s(_vm.person.contact.medium)+\"\\n \")])]):_vm._e()]),_vm._v(\" \"),_c('div',{staticClass:\"hobbies-container\"},[_c('div',{staticClass:\"hobbies-content\"},_vm._l((_vm.person.hobbies),function(hobby,index){return _c('a',{key:index,staticClass:\"hobby-item\",attrs:{\"href\":hobby.url}},[(hobby.iconClass)?_c('i',{class:hobby.iconClass + ' hobby-item__icon'}):_vm._e(),_vm._v(\" \"),_c('span',{staticClass:\"hobby-item__icon-label\"},[_vm._v(\" \"+_vm._s(hobby.name)+\" \")])])}))])]),_vm._v(\" \"),_c('div',{staticClass:\"left-column-bg\"}),_vm._v(\" \"),_c('div',{staticClass:\"right-column\"},[_c('div',{staticClass:\"experience-section section\"},[_c('div',{staticClass:\"icon\"},[_c('i',{staticClass:\"material-icons small-icon\"},[_vm._v(\"work\")]),_vm._v(\" \"),_c('span',{staticClass:\"section-headline\"},[_vm._v(_vm._s(_vm.lang.experience))])]),_vm._v(\" \"),_c('div',{staticClass:\"section-content\"},_vm._l((_vm.person.experience),function(experience,index){return _c('a',{key:index,staticClass:\"section-content__item\",attrs:{\"href\":experience.website}},[_c('span',{staticClass:\"section-content__header\"},[_vm._v(\" \"+_vm._s(experience.position))]),_vm._v(\" \"),_c('span',{staticClass:\"section-content__subheader\"},[_vm._v(\" \"+_vm._s(experience.company))]),_vm._v(\" \"),_c('div',{staticClass:\"section-content__text\"},[_vm._v(\" \"+_vm._s(experience.timeperiod))]),_vm._v(\" \"),_c('span',{staticClass:\"section-content__text--light\"},[_vm._v(\" \"+_vm._s(experience.description))])])}))]),_vm._v(\" \"),_c('div',{staticClass:\"education-section section\"},[_c('div',{staticClass:\"icon\"},[_c('i',{staticClass:\"material-icons\"},[_vm._v(\"school\")]),_vm._v(\" \"),_c('span',{staticClass:\"section-headline\"},[_vm._v(_vm._s(_vm.lang.education))])]),_vm._v(\" \"),_c('div',{staticClass:\"section-content\"},_vm._l((_vm.person.education),function(education,index){return _c('a',{key:index,staticClass:\"section-content__item\",attrs:{\"href\":education.website}},[_c('span',{staticClass:\"section-content__header\"},[_vm._v(\" \"+_vm._s(education.school)+\" \")]),_vm._v(\" \"),_c('span',{staticClass:\"section-content__subheader\"},[_vm._v(_vm._s(education.degree))]),_vm._v(\" \"),_c('span',{staticClass:\"section-content__text\"},[_vm._v(\" \"+_vm._s(education.timeperiod)+\" \")]),_vm._v(\" \"),_c('span',{staticClass:\"section-content__text--light\"},[_vm._v(\" \"+_vm._s(education.description)+\" \")])])}))]),_vm._v(\" \"),(_vm.person.projects)?_c('div',{staticClass:\"projects-section section\"},[_c('div',{staticClass:\"icon\"},[_c('i',{staticClass:\"material-icons\"},[_vm._v(\"code\")]),_vm._v(\" \"),_c('span',{staticClass:\"section-headline\"},[_vm._v(\" \"+_vm._s(_vm.lang.projects)+\" \")])]),_vm._v(\" \"),_c('div',{staticClass:\"section-content\"},_vm._l((_vm.person.projects),function(project,index){return _c('a',{key:index,staticClass:\"section-content__item\",attrs:{\"href\":project.url}},[_c('span',{staticClass:\"section-content__header\"},[_vm._v(\" \"+_vm._s(project.name)+\" \")]),_vm._v(\" \"),_c('span',{staticClass:\"section-content__subheader\"},[_vm._v(_vm._s(project.platform))]),_vm._v(\" \"),_c('span',{staticClass:\"section-content__text\"},[_vm._v(\" \"+_vm._s(project.description)+\" \")]),_vm._v(\" \"),_c('span',{staticClass:\"section-content__text--light\"},[_vm._v(\" \"+_vm._s(project.url)+\" \")])])}))]):_vm._e(),_vm._v(\" \"),(_vm.person.skills)?_c('div',{staticClass:\"skills-section section\"},[_c('div',{staticClass:\"icon\"},[_c('i',{staticClass:\"material-icons\"},[_vm._v(\"done_all\")]),_vm._v(\" \"),_c('span',{staticClass:\"section-headline\"},[_vm._v(\" \"+_vm._s(_vm.lang.skills)+\" \")])]),_vm._v(\" \"),_c('div',{staticClass:\"section-content-grid\"},_vm._l((_vm.person.skills),function(skill,index){return _c('a',{key:index,staticClass:\"grid-item\",attrs:{\"href\":skill.url}},[(skill.iconClass)?_c('i',{class:'lang-icon ' + skill.iconClass}):_c('span',{staticClass:\"squarred-grid-item\"},[_vm._v(\" \"+_vm._s(skill.name)+\" \")])])}))]):_vm._e(),_vm._v(\" \"),(_vm.person.contributions)?_c('div',{staticClass:\"contributions-section section\"},[_c('div',{staticClass:\"icon\"},[_c('i',{staticClass:\"fa fa-heart font-awesome-icons\"}),_vm._v(\" \"),_c('span',{staticClass:\"section-headline\"},[_vm._v(\" \"+_vm._s(_vm.lang.contributions)+\" \")])]),_vm._v(\" \"),_c('div',{staticClass:\"section-content-grid\"},_vm._l((_vm.person.contributions),function(contribution,index){return _c('a',{key:index,staticClass:\"section-content__item-grid\",attrs:{\"href\":contribution.url}},[_c('span',{staticClass:\"section-content__header\"},[_vm._v(\" \"+_vm._s(contribution.name)+\" \")]),_vm._v(\" \"),_c('span',{staticClass:\"section-content__text\"},[_vm._v(\" \"+_vm._s(contribution.description)+\" \")]),_vm._v(\" \"),_c('span',{staticClass:\"section-content__text--light\",staticStyle:{\"word-break\":\"break-all\"}},[_vm._v(\"\\n \"+_vm._s(contribution.url)+\"\\n \")])])}))]):_vm._e()])])}\nvar staticRenderFns = []\nvar esExports = { render: render, staticRenderFns: staticRenderFns }\nexport default esExports\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/vue-loader/lib/template-compiler?{\"id\":\"data-v-c5510dfe\",\"hasScoped\":true,\"buble\":{\"transforms\":{}}}!./node_modules/vue-loader/lib/selector.js?type=template&index=0!./src/resumes/creative.vue\n// module id = 147\n// module chunks = 1","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:\"page-wrapper\"},[_c('div',{staticClass:\"page\",attrs:{\"id\":_vm.$route.params.resumeid}},[_c('div',{staticClass:\"page-inner\"},[_c(_vm.$route.params.resumeid,{tag:\"component\"})],1)])])}\nvar staticRenderFns = []\nvar esExports = { render: render, staticRenderFns: staticRenderFns }\nexport default esExports\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/vue-loader/lib/template-compiler?{\"id\":\"data-v-09e61b2b\",\"hasScoped\":true,\"buble\":{\"transforms\":{}}}!./node_modules/vue-loader/lib/selector.js?type=template&index=0!./src/pages/resume.vue\n// module id = 148\n// module chunks = 1","function injectStyle (context) {\n require(\"!!../../node_modules/extract-text-webpack-plugin/dist/loader.js?{\\\"omit\\\":1,\\\"remove\\\":true}!vue-style-loader!css-loader?{\\\"minimize\\\":true,\\\"sourceMap\\\":true}!../../node_modules/vue-loader/lib/style-compiler/index?{\\\"vue\\\":true,\\\"id\\\":\\\"data-v-77812a90\\\",\\\"scoped\\\":true,\\\"sourceMap\\\":false}!../../node_modules/vue-loader/lib/selector?type=styles&index=0!./home.vue\")\n}\nimport normalizeComponent from \"!../../node_modules/vue-loader/lib/runtime/component-normalizer\"\n/* script */\nexport * from \"!!babel-loader!../../node_modules/vue-loader/lib/selector?type=script&index=0!./home.vue\"\nimport __vue_script__ from \"!!babel-loader!../../node_modules/vue-loader/lib/selector?type=script&index=0!./home.vue\"\n/* template */\nimport __vue_template__ from \"!!../../node_modules/vue-loader/lib/template-compiler/index?{\\\"id\\\":\\\"data-v-77812a90\\\",\\\"hasScoped\\\":true,\\\"buble\\\":{\\\"transforms\\\":{}}}!../../node_modules/vue-loader/lib/selector?type=template&index=0!./home.vue\"\n/* template functional */\nvar __vue_template_functional__ = false\n/* styles */\nvar __vue_styles__ = injectStyle\n/* scopeId */\nvar __vue_scopeId__ = \"data-v-77812a90\"\n/* moduleIdentifier (server only) */\nvar __vue_module_identifier__ = null\nvar Component = normalizeComponent(\n __vue_script__,\n __vue_template__,\n __vue_template_functional__,\n __vue_styles__,\n __vue_scopeId__,\n __vue_module_identifier__\n)\n\nexport default Component.exports\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./src/pages/home.vue\n// module id = 149\n// module chunks = 1","// removed by extract-text-webpack-plugin\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/extract-text-webpack-plugin/dist/loader.js?{\"omit\":1,\"remove\":true}!./node_modules/vue-style-loader!./node_modules/css-loader?{\"minimize\":true,\"sourceMap\":true}!./node_modules/vue-loader/lib/style-compiler?{\"vue\":true,\"id\":\"data-v-77812a90\",\"scoped\":true,\"sourceMap\":false}!./node_modules/vue-loader/lib/selector.js?type=styles&index=0!./src/pages/home.vue\n// module id = 150\n// module chunks = 1","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:\"home\"},[_vm._m(0),_vm._v(\" \"),_vm._m(1),_vm._v(\" \"),_c('h3',{staticClass:\"title\"},[_vm._v(\"best-resume-ever\")]),_vm._v(\" \"),_c('div',{staticClass:\"previews\"},[_c('div',{staticClass:\"preview\"},[_c('router-link',{attrs:{\"to\":'/resume/material-dark'}},[_c('div',{staticClass:\"preview-wrapper\"},[_c('img',{attrs:{\"src\":require(\"../assets/preview/resume-material-dark.png\")}}),_vm._v(\" \"),_c('span',[_vm._v(\"material-dark\")])])])],1),_vm._v(\" \"),_c('div',{staticClass:\"preview\"},[_c('router-link',{attrs:{\"to\":'/resume/left-right'}},[_c('div',{staticClass:\"preview-wrapper\"},[_c('img',{attrs:{\"src\":require(\"../assets/preview/resume-left-right.png\")}}),_vm._v(\" \"),_c('span',[_vm._v(\"left-right\")])])])],1),_vm._v(\" \"),_c('div',{staticClass:\"preview\"},[_c('router-link',{attrs:{\"to\":'/resume/oblique'}},[_c('div',{staticClass:\"preview-wrapper\"},[_c('img',{attrs:{\"src\":require(\"../assets/preview/resume-oblique.png\")}}),_vm._v(\" \"),_c('span',[_vm._v(\"oblique\")])])])],1),_vm._v(\" \"),_c('div',{staticClass:\"preview\"},[_c('router-link',{attrs:{\"to\":'/resume/side-bar'}},[_c('div',{staticClass:\"preview-wrapper\"},[_c('img',{attrs:{\"src\":require(\"../assets/preview/resume-side-bar.png\")}}),_vm._v(\" \"),_c('span',[_vm._v(\"side-bar\")])])])],1),_vm._v(\" \"),_c('div',{staticClass:\"preview\"},[_c('router-link',{attrs:{\"to\":'/resume/purple'}},[_c('div',{staticClass:\"preview-wrapper\"},[_c('img',{attrs:{\"src\":require(\"../assets/preview/resume-purple.png\")}}),_vm._v(\" \"),_c('span',[_vm._v(\"purple\")])])])],1),_vm._v(\" \"),_c('div',{staticClass:\"preview\"},[_c('router-link',{attrs:{\"to\":'/resume/side-bar-rtl'}},[_c('div',{staticClass:\"preview-wrapper\"},[_c('img',{attrs:{\"src\":require(\"../assets/preview/resume-side-bar-rtl.png\")}}),_vm._v(\" \"),_c('span',[_vm._v(\"side-bar-rtl\")])])])],1),_vm._v(\" \"),_c('div',{staticClass:\"preview\"},[_c('router-link',{attrs:{\"to\":'/resume/left-right-rtl'}},[_c('div',{staticClass:\"preview-wrapper\"},[_c('img',{attrs:{\"src\":require(\"../assets/preview/resume-left-right-rtl.png\")}}),_vm._v(\" \"),_c('span',[_vm._v(\"left-right-rtl\")])])])],1),_vm._v(\" \"),_c('div',{staticClass:\"preview\"},[_c('router-link',{attrs:{\"to\":'/resume/creative'}},[_c('div',{staticClass:\"preview-wrapper\"},[_c('img',{attrs:{\"src\":require(\"../assets/preview/resume-creative.png\")}}),_vm._v(\" \"),_c('span',[_vm._v(\"creative\")])])])],1)])])}\nvar staticRenderFns = [function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('a',{attrs:{\"href\":\"https://github.com/salomonelli/best-resume-ever\",\"target\":\"_blank\"}},[_c('img',{staticStyle:{\"position\":\"absolute\",\"top\":\"0\",\"right\":\"0\",\"border\":\"0\"},attrs:{\"src\":\"https://camo.githubusercontent.com/38ef81f8aca64bb9a64448d0d70f1308ef5341ab/68747470733a2f2f73332e616d617a6f6e6177732e636f6d2f6769746875622f726962626f6e732f666f726b6d655f72696768745f6461726b626c75655f3132313632312e706e67\",\"alt\":\"Fork me on GitHub\",\"data-canonical-src\":\"https://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png\"}})])},function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:\"logo\"},[_c('img',{attrs:{\"src\":require(\"../assets/logo.png\")}})])}]\nvar esExports = { render: render, staticRenderFns: staticRenderFns }\nexport default esExports\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/vue-loader/lib/template-compiler?{\"id\":\"data-v-77812a90\",\"hasScoped\":true,\"buble\":{\"transforms\":{}}}!./node_modules/vue-loader/lib/selector.js?type=template&index=0!./src/pages/home.vue\n// module id = 151\n// module chunks = 1","module.exports = __webpack_public_path__ + \"static/img/resume-material-dark.57f3ae8.png\";\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./src/assets/preview/resume-material-dark.png\n// module id = 152\n// module chunks = 1","module.exports = __webpack_public_path__ + \"static/img/resume-left-right.1244943.png\";\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./src/assets/preview/resume-left-right.png\n// module id = 153\n// module chunks = 1","module.exports = __webpack_public_path__ + \"static/img/resume-oblique.5d80820.png\";\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./src/assets/preview/resume-oblique.png\n// module id = 154\n// module chunks = 1","module.exports = __webpack_public_path__ + \"static/img/resume-side-bar.61dbca6.png\";\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./src/assets/preview/resume-side-bar.png\n// module id = 155\n// module chunks = 1","module.exports = __webpack_public_path__ + \"static/img/resume-purple.b458f56.png\";\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./src/assets/preview/resume-purple.png\n// module id = 156\n// module chunks = 1","module.exports = __webpack_public_path__ + \"static/img/resume-side-bar-rtl.72fb12a.png\";\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./src/assets/preview/resume-side-bar-rtl.png\n// module id = 157\n// module chunks = 1","module.exports = __webpack_public_path__ + \"static/img/resume-left-right-rtl.356fd8f.png\";\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./src/assets/preview/resume-left-right-rtl.png\n// module id = 158\n// module chunks = 1","module.exports = __webpack_public_path__ + \"static/img/resume-creative.4b5318e.png\";\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./src/assets/preview/resume-creative.png\n// module id = 159\n// module chunks = 1","module.exports = __webpack_public_path__ + \"static/img/logo.1522a48.png\";\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./src/assets/logo.png\n// module id = 160\n// module chunks = 1"],"sourceRoot":""} \ No newline at end of file diff --git a/docs/static/js/app.e2c878cafbb20641fa24.js b/docs/static/js/app.e2c878cafbb20641fa24.js deleted file mode 100644 index a65f631..0000000 --- a/docs/static/js/app.e2c878cafbb20641fa24.js +++ /dev/null @@ -1,1365 +0,0 @@ -webpackJsonp([0],[ -/* 0 */, -/* 1 */, -/* 2 */, -/* 3 */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return getVueOptions; }); -/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_js_yaml__ = __webpack_require__(31); -/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_js_yaml___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_js_yaml__); -/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__resume_data_yml__ = __webpack_require__(57); -/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__terms__ = __webpack_require__(58); - - - - -function getVueOptions(name) { - var opt = { - name: name, - data: function data() { - return { - person: __WEBPACK_IMPORTED_MODULE_0_js_yaml___default.a.load(__WEBPACK_IMPORTED_MODULE_1__resume_data_yml__["a" /* PERSON */]), - terms: __WEBPACK_IMPORTED_MODULE_2__terms__["a" /* terms */] - }; - }, - - computed: { - lang: function lang() { - return this.terms[this.person.lang]; - } - } - }; - return opt; -} - - - -/***/ }), -/* 4 */, -/* 5 */, -/* 6 */, -/* 7 */, -/* 8 */, -/* 9 */, -/* 10 */, -/* 11 */, -/* 12 */, -/* 13 */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -Object.defineProperty(__webpack_exports__, "__esModule", { value: true }); -/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_vue__ = __webpack_require__(1); -/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__App__ = __webpack_require__(17); -/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__router__ = __webpack_require__(22); - - - - - -__WEBPACK_IMPORTED_MODULE_0_vue__["a" /* default */].config.productionTip = false; - -new __WEBPACK_IMPORTED_MODULE_0_vue__["a" /* default */]({ - el: '#app', - router: __WEBPACK_IMPORTED_MODULE_2__router__["a" /* default */], - template: '', - components: { - App: __WEBPACK_IMPORTED_MODULE_1__App__["a" /* default */] - } -}); - -/***/ }), -/* 14 */, -/* 15 */, -/* 16 */, -/* 17 */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_App_vue__ = __webpack_require__(20); -/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_a80551ac_hasScoped_false_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_App_vue__ = __webpack_require__(21); -function injectStyle (ssrContext) { - __webpack_require__(18) -} -var normalizeComponent = __webpack_require__(2) -/* script */ - -/* template */ - -/* template functional */ - var __vue_template_functional__ = false -/* styles */ -var __vue_styles__ = injectStyle -/* scopeId */ -var __vue_scopeId__ = null -/* moduleIdentifier (server only) */ -var __vue_module_identifier__ = null -var Component = normalizeComponent( - __WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_App_vue__["a" /* default */], - __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_a80551ac_hasScoped_false_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_App_vue__["a" /* default */], - __vue_template_functional__, - __vue_styles__, - __vue_scopeId__, - __vue_module_identifier__ -) - -/* harmony default export */ __webpack_exports__["a"] = (Component.exports); - - -/***/ }), -/* 18 */ -/***/ (function(module, exports) { - -// removed by extract-text-webpack-plugin - -/***/ }), -/* 19 */, -/* 20 */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; - - -/* harmony default export */ __webpack_exports__["a"] = ({ - name: 'app' -}); - -/***/ }), -/* 21 */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{attrs:{"id":"app"}},[_c('router-view')],1)} -var staticRenderFns = [] -var esExports = { render: render, staticRenderFns: staticRenderFns } -/* harmony default export */ __webpack_exports__["a"] = (esExports); - -/***/ }), -/* 22 */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_vue__ = __webpack_require__(1); -/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_vue_router__ = __webpack_require__(23); -/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__pages_resume__ = __webpack_require__(24); -/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__pages_home__ = __webpack_require__(107); - - - - - -__WEBPACK_IMPORTED_MODULE_0_vue__["a" /* default */].use(__WEBPACK_IMPORTED_MODULE_1_vue_router__["a" /* default */]); - -/* harmony default export */ __webpack_exports__["a"] = (new __WEBPACK_IMPORTED_MODULE_1_vue_router__["a" /* default */]({ - routes: [{ - path: '/', - name: 'home', - component: __WEBPACK_IMPORTED_MODULE_3__pages_home__["a" /* default */] - }, { - path: '/resume/:resumeid', - name: 'resume', - component: __WEBPACK_IMPORTED_MODULE_2__pages_resume__["a" /* default */] - }] -})); - -/***/ }), -/* 23 */, -/* 24 */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_resume_vue__ = __webpack_require__(26); -/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_a4e9d902_hasScoped_true_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_resume_vue__ = __webpack_require__(106); -function injectStyle (ssrContext) { - __webpack_require__(25) -} -var normalizeComponent = __webpack_require__(2) -/* script */ - -/* template */ - -/* template functional */ - var __vue_template_functional__ = false -/* styles */ -var __vue_styles__ = injectStyle -/* scopeId */ -var __vue_scopeId__ = "data-v-a4e9d902" -/* moduleIdentifier (server only) */ -var __vue_module_identifier__ = null -var Component = normalizeComponent( - __WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_resume_vue__["a" /* default */], - __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_a4e9d902_hasScoped_true_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_resume_vue__["a" /* default */], - __vue_template_functional__, - __vue_styles__, - __vue_scopeId__, - __vue_module_identifier__ -) - -/* harmony default export */ __webpack_exports__["a"] = (Component.exports); - - -/***/ }), -/* 25 */ -/***/ (function(module, exports) { - -// removed by extract-text-webpack-plugin - -/***/ }), -/* 26 */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_vue__ = __webpack_require__(1); -/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__resumes_resumes__ = __webpack_require__(27); - - - - -/* harmony default export */ __webpack_exports__["a"] = (__WEBPACK_IMPORTED_MODULE_0_vue__["a" /* default */].component('resume', { - name: 'app' -})); - -/***/ }), -/* 27 */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__material_dark_vue__ = __webpack_require__(28); -/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__left_right_vue__ = __webpack_require__(82); -/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__oblique_vue__ = __webpack_require__(86); -/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__side_bar_vue__ = __webpack_require__(90); -/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__purple_vue__ = __webpack_require__(94); -/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__side_bar_rtl_vue__ = __webpack_require__(98); -/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__left_right_rtl_vue__ = __webpack_require__(102); - - - - - - - - - -/***/ }), -/* 28 */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_material_dark_vue__ = __webpack_require__(30); -/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_31798ddc_hasScoped_true_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_material_dark_vue__ = __webpack_require__(81); -function injectStyle (ssrContext) { - __webpack_require__(29) -} -var normalizeComponent = __webpack_require__(2) -/* script */ - -/* template */ - -/* template functional */ - var __vue_template_functional__ = false -/* styles */ -var __vue_styles__ = injectStyle -/* scopeId */ -var __vue_scopeId__ = "data-v-31798ddc" -/* moduleIdentifier (server only) */ -var __vue_module_identifier__ = null -var Component = normalizeComponent( - __WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_material_dark_vue__["a" /* default */], - __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_31798ddc_hasScoped_true_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_material_dark_vue__["a" /* default */], - __vue_template_functional__, - __vue_styles__, - __vue_scopeId__, - __vue_module_identifier__ -) - -/* unused harmony default export */ var _unused_webpack_default_export = (Component.exports); - - -/***/ }), -/* 29 */ -/***/ (function(module, exports) { - -// removed by extract-text-webpack-plugin - -/***/ }), -/* 30 */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_vue__ = __webpack_require__(1); -/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__options__ = __webpack_require__(3); - - - - -var name = 'material-dark'; - -/* harmony default export */ __webpack_exports__["a"] = (__WEBPACK_IMPORTED_MODULE_0_vue__["a" /* default */].component(name, Object(__WEBPACK_IMPORTED_MODULE_1__options__["a" /* getVueOptions */])(name))); - -/***/ }), -/* 31 */, -/* 32 */, -/* 33 */, -/* 34 */, -/* 35 */, -/* 36 */, -/* 37 */, -/* 38 */, -/* 39 */, -/* 40 */, -/* 41 */, -/* 42 */, -/* 43 */, -/* 44 */, -/* 45 */, -/* 46 */, -/* 47 */, -/* 48 */, -/* 49 */, -/* 50 */, -/* 51 */, -/* 52 */, -/* 53 */, -/* 54 */, -/* 55 */, -/* 56 */, -/* 57 */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -/* #*/ const PERSON = ` -name: - first: John - middle: - last: Doe -about: Hi, my name is John Doe. I"m just about the most boring type of person you could - possibly imagine. I like collecting leaves from the tree in my back yard and documenting - each time I eat a peanut that is non-uniform. I am not a robot. Please hire me. -position: Software Developer - -birth: - year: 1990 - location: New York - -experience: -- company: Company A - position: Developer - timeperiod: since January 2016 - description: Programming and watching cute cat videos. - -- company: Company B - position: Frontend Developer - timeperiod: January 2015 - December 2015 - description: Fulfillment of extremely important tasks. - -- company: Company C - position: Trainee - timeperiod: March 2014 - December 2014 - description: Making coffee and baking cookies. - -education: -- degree: Master of Arts - timeperiod: March 2012 - December 2013 - description: Major in Hacking and Computer Penetration, University A, New York, USA. - -- degree: Bachelor of Science - timeperiod: March 2009 - December 2011 - description: Major in Engineering, University B, Los Angeles, USA. - -# skill level goes 0 to 100 -skills: -- name: HTML5 - level: 99 -- name: CSS3 - level: 95 -- name: JavaScript - level: 97 -- name: Node.js - level: 93 -- name: Angular 2 - level: 60 -- name: TypeScript - level: 80 -- name: ES.Next - level: 70 -- name: Docker - level: 99 -knowledge: Also proficient in Adobe Photoshop and Illustrator, grew up bilingual - (English and Klingon). - -contact: - email: john.doe@email.com - phone: 0123 456789 - street: 1234 Broadway - city: New York - website: johndoe.com - github: johnyD -# en, de, fr, pt, ca, cn, it, es, th, pt-br, ru, sv, id, hu, pl, ja, nl, he, zh-tw, lt, ko -lang: en -` -/* harmony export (immutable) */ __webpack_exports__["a"] = PERSON; - - - -/***/ }), -/* 58 */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return terms; }); -/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__lang_en__ = __webpack_require__(59); -/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__lang_de__ = __webpack_require__(60); -/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__lang_fr__ = __webpack_require__(61); -/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__lang_pt__ = __webpack_require__(62); -/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__lang_ca__ = __webpack_require__(63); -/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__lang_cn__ = __webpack_require__(64); -/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__lang_it__ = __webpack_require__(65); -/* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__lang_es__ = __webpack_require__(66); -/* harmony import */ var __WEBPACK_IMPORTED_MODULE_8__lang_th__ = __webpack_require__(67); -/* harmony import */ var __WEBPACK_IMPORTED_MODULE_9__lang_id__ = __webpack_require__(68); -/* harmony import */ var __WEBPACK_IMPORTED_MODULE_10__lang_sv__ = __webpack_require__(69); -/* harmony import */ var __WEBPACK_IMPORTED_MODULE_11__lang_ru__ = __webpack_require__(70); -/* harmony import */ var __WEBPACK_IMPORTED_MODULE_12__lang_pt_br__ = __webpack_require__(71); -/* harmony import */ var __WEBPACK_IMPORTED_MODULE_13__lang_hu__ = __webpack_require__(72); -/* harmony import */ var __WEBPACK_IMPORTED_MODULE_14__lang_pl__ = __webpack_require__(73); -/* harmony import */ var __WEBPACK_IMPORTED_MODULE_15__lang_he__ = __webpack_require__(74); -/* harmony import */ var __WEBPACK_IMPORTED_MODULE_16__lang_ja__ = __webpack_require__(75); -/* harmony import */ var __WEBPACK_IMPORTED_MODULE_17__lang_zh_tw__ = __webpack_require__(76); -/* harmony import */ var __WEBPACK_IMPORTED_MODULE_18__lang_nl__ = __webpack_require__(77); -/* harmony import */ var __WEBPACK_IMPORTED_MODULE_19__lang_lt__ = __webpack_require__(78); -/* harmony import */ var __WEBPACK_IMPORTED_MODULE_20__lang_tr__ = __webpack_require__(79); -/* harmony import */ var __WEBPACK_IMPORTED_MODULE_21__lang_ko__ = __webpack_require__(80); - - - - - - - - - - - - - - - - - - - - - - - -var terms = { - en: __WEBPACK_IMPORTED_MODULE_0__lang_en__["a" /* default */], de: __WEBPACK_IMPORTED_MODULE_1__lang_de__["a" /* default */], fr: __WEBPACK_IMPORTED_MODULE_2__lang_fr__["a" /* default */], pt: __WEBPACK_IMPORTED_MODULE_3__lang_pt__["a" /* default */], ca: __WEBPACK_IMPORTED_MODULE_4__lang_ca__["a" /* default */], cn: __WEBPACK_IMPORTED_MODULE_5__lang_cn__["a" /* default */], it: __WEBPACK_IMPORTED_MODULE_6__lang_it__["a" /* default */], es: __WEBPACK_IMPORTED_MODULE_7__lang_es__["a" /* default */], th: __WEBPACK_IMPORTED_MODULE_8__lang_th__["a" /* default */], 'pt-br': __WEBPACK_IMPORTED_MODULE_12__lang_pt_br__["a" /* default */], ru: __WEBPACK_IMPORTED_MODULE_11__lang_ru__["a" /* default */], sv: __WEBPACK_IMPORTED_MODULE_10__lang_sv__["a" /* default */], id: __WEBPACK_IMPORTED_MODULE_9__lang_id__["a" /* default */], hu: __WEBPACK_IMPORTED_MODULE_13__lang_hu__["a" /* default */], pl: __WEBPACK_IMPORTED_MODULE_14__lang_pl__["a" /* default */], ja: __WEBPACK_IMPORTED_MODULE_16__lang_ja__["a" /* default */], nl: __WEBPACK_IMPORTED_MODULE_18__lang_nl__["a" /* default */], he: __WEBPACK_IMPORTED_MODULE_15__lang_he__["a" /* default */], 'zh-tw': __WEBPACK_IMPORTED_MODULE_17__lang_zh_tw__["a" /* default */], lt: __WEBPACK_IMPORTED_MODULE_19__lang_lt__["a" /* default */], tr: __WEBPACK_IMPORTED_MODULE_20__lang_tr__["a" /* default */], ko: __WEBPACK_IMPORTED_MODULE_21__lang_ko__["a" /* default */] -}; - -/***/ }), -/* 59 */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; - -var en = { - headings: { - contact: 'Contact', - experience: 'Experience', - education: 'Education', - skills: 'Skills', - about: 'About me' - } -}; -/* harmony default export */ __webpack_exports__["a"] = (en); - -/***/ }), -/* 60 */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; - -var de = { - headings: { - contact: 'Kontakt', - experience: 'Berufserfahrung', - education: 'Schulbildung', - skills: 'Qualifikationen', - about: 'Über mich' - } -}; -/* harmony default export */ __webpack_exports__["a"] = (de); - -/***/ }), -/* 61 */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; - -var fr = { - headings: { - contact: 'Contact', - experience: 'Expérience professionelle', - education: 'Formation', - skills: 'Compétences', - about: 'À propos de moi' - } -}; -/* harmony default export */ __webpack_exports__["a"] = (fr); - -/***/ }), -/* 62 */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; - -var pt = { - headings: { - contact: 'Contactos', - experience: 'Experiência Profissional', - education: 'Educação', - skills: 'Competências', - about: 'Sobre mim' - } -}; -/* harmony default export */ __webpack_exports__["a"] = (pt); - -/***/ }), -/* 63 */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; - -var ca = { - headings: { - contact: 'Contacte', - experience: 'Experiència', - education: 'Educació', - skills: 'Habilitats', - about: 'Sobre mi' - } -}; -/* harmony default export */ __webpack_exports__["a"] = (ca); - -/***/ }), -/* 64 */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; - -var cn = { - headings: { - contact: '联系方式', - experience: '工作经历', - education: '教育经历', - skills: '技能专长', - about: '自我介绍' - } -}; -/* harmony default export */ __webpack_exports__["a"] = (cn); - -/***/ }), -/* 65 */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; - -var it = { - headings: { - contact: 'Contatti', - experience: 'Esperienza professionale', - education: 'Formazione', - skills: 'Competenze', - about: 'Su di me' - } -}; -/* harmony default export */ __webpack_exports__["a"] = (it); - -/***/ }), -/* 66 */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; - -var es = { - headings: { - contact: 'Contacto', - experience: 'Experiencia', - education: 'Educación', - skills: 'Habilidades', - about: 'Sobre mi' - } -}; -/* harmony default export */ __webpack_exports__["a"] = (es); - -/***/ }), -/* 67 */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; - -var th = { - headings: { - contact: 'ข้อมูลติดต่อ', - experience: 'ประสบการณ์ทำงาน', - education: 'ประวัติการศึกษา', - skills: 'ทักษะและความสามารถ', - about: 'ข้อมูลส่วนตัว' - } -}; -/* harmony default export */ __webpack_exports__["a"] = (th); - -/***/ }), -/* 68 */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; - -var id = { - headings: { - contact: "Kontak", - experience: "Pengalaman", - education: "Pendidikan", - skills: "Keterampilan", - about: "Tentang Saya" - } -}; -/* harmony default export */ __webpack_exports__["a"] = (id); - -/***/ }), -/* 69 */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; - -var sv = { - headings: { - contact: 'Kontakt', - experience: 'Arbetslivserfarenhet', - education: 'Utbildning', - skills: 'Kunskaper', - about: 'Om mig' - } -}; -/* harmony default export */ __webpack_exports__["a"] = (sv); - -/***/ }), -/* 70 */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; - - -var ru = { - headings: { - contact: "Контакты", - experience: "Опыт", - education: "Обучение", - skills: "Навыки", - about: "Обо мне" - } -}; - -/* harmony default export */ __webpack_exports__["a"] = (ru); - -/***/ }), -/* 71 */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; - -var ptbr = { - headings: { - contact: 'Contato', - experience: 'Experiência Profissional', - education: 'Educação', - skills: 'Competências', - about: 'Sobre' - } -}; -/* harmony default export */ __webpack_exports__["a"] = (ptbr); - -/***/ }), -/* 72 */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; - -var hu = { - headings: { - contact: 'Kapcsolat', - experience: 'Munkatapasztalat', - education: 'Tanulmány', - skills: 'Készségek', - about: 'Rólam' - } -}; -/* harmony default export */ __webpack_exports__["a"] = (hu); - -/***/ }), -/* 73 */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; - -var pl = { - headings: { - contact: 'Kontakt', - experience: 'Doświadczenie', - education: 'Wykształcenie', - skills: 'Umiejętności', - about: 'O mnie' - } -}; -/* harmony default export */ __webpack_exports__["a"] = (pl); - -/***/ }), -/* 74 */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; - -var he = { - headings: { - contact: 'יצירת קשר', - experience: 'ניסיון', - education: 'השכלה', - skills: 'כישורים', - about: 'תמצית' - } -}; -/* harmony default export */ __webpack_exports__["a"] = (he); - -/***/ }), -/* 75 */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; - -var jp = { - headings: { - contact: '連絡先', - experience: '職務経歴', - education: '学歴', - skills: 'スキル', - about: '自己紹介' - } -}; -/* harmony default export */ __webpack_exports__["a"] = (jp); - -/***/ }), -/* 76 */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; - -var zhtw = { - headings: { - contact: '聯絡方式', - experience: '經歷', - education: '學歷', - skills: '技能專長', - about: '自我介紹' - } -}; -/* harmony default export */ __webpack_exports__["a"] = (zhtw); - -/***/ }), -/* 77 */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; - -var nl = { - headings: { - contact: 'Contact', - experience: 'Ervaringen', - education: 'Opleidingen', - skills: 'Skills', - about: 'Over mij' - } -}; -/* harmony default export */ __webpack_exports__["a"] = (nl); - -/***/ }), -/* 78 */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; - -var lt = { - headings: { - contact: 'Kontaktai', - experience: 'Patirtis', - education: 'Išsilavinimas', - skills: 'Įgūdžiai', - about: 'Apie mane' - } -}; -/* harmony default export */ __webpack_exports__["a"] = (lt); - -/***/ }), -/* 79 */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; - -var tr = { - headings: { - contact: 'İletişim', - experience: 'Deneyim', - education: 'Eğitim', - skills: 'Yetenekler', - about: 'Hakkımda' - } -}; -/* harmony default export */ __webpack_exports__["a"] = (tr); - -/***/ }), -/* 80 */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; - -var ko = { - headings: { - contact: "연락처", - experience: "경력", - education: "학력", - skills: "보유스킬", - about: "자기소개" - } -}; -/* harmony default export */ __webpack_exports__["a"] = (ko); - -/***/ }), -/* 81 */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:"resume"},[_c('div',{staticClass:"leftCol m_box"},[_c('div',{staticClass:"shadow"}),_vm._v(" "),_c('div',{staticClass:"heading",attrs:{"id":"myselfpic"}}),_vm._v(" "),_c('div',{staticClass:"section-headline"},[_vm._v("\n "+_vm._s(_vm.lang.headings.contact)+"\n ")]),_vm._v(" "),_c('div',{staticClass:"item"},[_vm._m(0),_vm._v(" "),_c('div',{staticClass:"text"},[_c('ul',[_c('li',[_vm._v(" Born "+_vm._s(_vm.person.birth.year)+" in "+_vm._s(_vm.person.birth.location))])])])]),_vm._v(" "),_c('div',{staticClass:"item"},[_vm._m(1),_vm._v(" "),_c('div',{staticClass:"text"},[_c('ul',[_c('li',[_vm._v(_vm._s(_vm.person.contact.street))]),_vm._v(" "),_c('li',[_vm._v(_vm._s(_vm.person.contact.city))])])])]),_vm._v(" "),_c('a',{attrs:{"href":'tel:'+_vm.person.contact.phone}},[_c('div',{staticClass:"item"},[_vm._m(2),_vm._v(" "),_c('div',{staticClass:"text"},[_vm._v("\n "+_vm._s(_vm.person.contact.phone)+"\n ")])])]),_vm._v(" "),_c('a',{attrs:{"href":'mailto:'+_vm.person.contact.email}},[_c('div',{staticClass:"item"},[_vm._m(3),_vm._v(" "),_c('div',{staticClass:"text"},[_vm._v("\n "+_vm._s(_vm.person.contact.email)+"\n ")])])]),_vm._v(" "),(_vm.person.contact.github)?_c('a',{attrs:{"href":'https://github.com/'+_vm.person.contact.github,"target":"_blank"}},[_c('div',{staticClass:"item"},[_vm._m(4),_vm._v(" "),_c('div',{staticClass:"text"},[_c('span',[_vm._v("@"+_vm._s(_vm.person.contact.github))]),_vm._v(" "),_c('span',[_vm._v("github.com/"+_vm._s(_vm.person.contact.github))])])])]):_vm._e(),_vm._v(" "),(_vm.person.contact.website)?_c('a',{attrs:{"href":_vm.person.contact.website,"target":"_blank"}},[_c('div',{staticClass:"item"},[_vm._m(5),_vm._v(" "),_c('div',{staticClass:"text"},[_c('span',[_vm._v(_vm._s(_vm.person.contact.website))])])])]):_vm._e(),_vm._v(" "),_c('div',{staticClass:"item last"},[_c('div',{staticClass:"section-headline"},[_vm._v("\n "+_vm._s(_vm.lang.headings.skills)+"\n ")]),_vm._v(" "),_vm._l((_vm.person.skills),function(skill){return _c('div',{key:skill.name,staticClass:"skill"},[_c('div',{staticClass:"right"},[_c('span',[_vm._v(_vm._s(skill.name)+" ")]),_vm._v(" "),_c('div',{staticClass:"progress"},[_c('div',{staticClass:"determinate",style:('width: '+skill.level+'%;')},[_c('i',{staticClass:"fa fa-circle"})])])])])})],2)]),_vm._v(" "),_c('div',{staticClass:"rightCol"},[_c('div',{staticClass:"title"},[_c('h2',[_vm._v(_vm._s(_vm.person.name.first)+" "+_vm._s(_vm.person.name.middle)+" "+_vm._s(_vm.person.name.last))]),_vm._v(" "),_c('div',[_vm._v(_vm._s(_vm.person.position))])]),_vm._v(" "),_c('div',{staticClass:"section-headline"},[_vm._v(_vm._s(_vm.lang.headings.experience))]),_vm._v(" "),_vm._l((_vm.person.experience),function(experience){return _c('div',{key:experience.company,staticClass:"block"},[_c('div',{staticClass:"block-helper"}),_vm._v(" "),_c('div',{staticClass:"headline"},[_vm._v(_vm._s(experience.position)+" - "+_vm._s(experience.company)),_vm._v(" "),_c('div',{staticClass:"subheadline"},[_vm._v(_vm._s(experience.timeperiod))]),_vm._v(" "),_c('p',{staticClass:"info"},[_vm._v("\n "+_vm._s(experience.description)+"\n ")])])])}),_vm._v(" "),_c('div',{staticClass:"section-headline"},[_vm._v(_vm._s(_vm.lang.headings.education))]),_vm._v(" "),_vm._l((_vm.person.education),function(education){return _c('div',{key:education.degree,staticClass:"block"},[_c('div',{staticClass:"block-helper"}),_vm._v(" "),_c('div',{staticClass:"headline"},[_vm._v(_vm._s(education.degree))]),_vm._v(" "),_c('p',{staticClass:"info"},[_vm._v("\n "+_vm._s(education.timeperiod)+", "+_vm._s(education.description)+"\n ")])])})],2),_vm._v(" "),_c('div',{staticStyle:{"clear":"both"}})])} -var staticRenderFns = [function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:"icon"},[_c('i',{staticClass:"material-icons"},[_vm._v("account_circle")])])},function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:"icon"},[_c('i',{staticClass:"material-icons"},[_vm._v("location_city")])])},function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:"icon"},[_c('i',{staticClass:"material-icons"},[_vm._v("phone")])])},function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:"icon"},[_c('i',{staticClass:"material-icons"},[_vm._v("email")])])},function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:"icon"},[_c('i',{staticClass:"fa fa-github"})])},function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:"icon"},[_c('i',{staticClass:"material-icons"},[_vm._v("language")])])}] -var esExports = { render: render, staticRenderFns: staticRenderFns } -/* harmony default export */ __webpack_exports__["a"] = (esExports); - -/***/ }), -/* 82 */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_left_right_vue__ = __webpack_require__(84); -/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_25653886_hasScoped_true_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_left_right_vue__ = __webpack_require__(85); -function injectStyle (ssrContext) { - __webpack_require__(83) -} -var normalizeComponent = __webpack_require__(2) -/* script */ - -/* template */ - -/* template functional */ - var __vue_template_functional__ = false -/* styles */ -var __vue_styles__ = injectStyle -/* scopeId */ -var __vue_scopeId__ = "data-v-25653886" -/* moduleIdentifier (server only) */ -var __vue_module_identifier__ = null -var Component = normalizeComponent( - __WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_left_right_vue__["a" /* default */], - __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_25653886_hasScoped_true_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_left_right_vue__["a" /* default */], - __vue_template_functional__, - __vue_styles__, - __vue_scopeId__, - __vue_module_identifier__ -) - -/* unused harmony default export */ var _unused_webpack_default_export = (Component.exports); - - -/***/ }), -/* 83 */ -/***/ (function(module, exports) { - -// removed by extract-text-webpack-plugin - -/***/ }), -/* 84 */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_vue__ = __webpack_require__(1); -/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__options__ = __webpack_require__(3); - - - - - -var name = 'left-right'; -/* harmony default export */ __webpack_exports__["a"] = (__WEBPACK_IMPORTED_MODULE_0_vue__["a" /* default */].component(name, Object(__WEBPACK_IMPORTED_MODULE_1__options__["a" /* getVueOptions */])(name))); - -/***/ }), -/* 85 */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:"resume",attrs:{"id":"resume1"}},[_c('div',{staticClass:"row text-center"},[_c('span',{staticClass:"name"},[_vm._v(_vm._s(_vm.person.name.first)+" "+_vm._s(_vm.person.name.middle)+" "+_vm._s(_vm.person.name.last))])]),_vm._v(" "),_c('div',{staticClass:"row text-center"},[_c('p',{staticClass:"position center"},[_vm._v(_vm._s(_vm.person.position))])]),_vm._v(" "),_vm._m(0),_vm._v(" "),_c('div',{staticClass:"left half"},[_c('div',{staticClass:"experience"},[_c('h3',[_vm._v(_vm._s(_vm.lang.headings.experience))]),_vm._v(" "),_vm._l((_vm.person.experience),function(experience){return _c('div',{key:experience.company,staticClass:"experience-block"},[_c('span',{staticClass:"company"},[_vm._v(" "+_vm._s(experience.company)+" ")]),_vm._v(" "),_c('span',{staticClass:"job-title"},[_vm._v(" "+_vm._s(experience.position)+" ")]),_vm._v(" "),_c('span',{staticClass:"time-period"},[_vm._v(" "+_vm._s(experience.timeperiod))]),_vm._v(" "),_c('span',{staticClass:"job-description"},[_vm._v(" "+_vm._s(experience.description)+" ")])])})],2),_vm._v(" "),_c('div',{staticClass:"contact"},[_c('h3',[_vm._v(_vm._s(_vm.lang.headings.contact))]),_vm._v(" "),_c('table',[_c('tr',[_c('td',[_c('a',{attrs:{"href":'mailto:'+_vm.person.contact.email}},[_vm._v(_vm._s(_vm.person.contact.email))])]),_vm._v(" "),_vm._m(1)]),_vm._v(" "),_c('tr',[_c('td',[_c('a',{attrs:{"href":'tel:'+_vm.person.contact.phone}},[_vm._v(_vm._s(_vm.person.contact.phone))])]),_vm._v(" "),_vm._m(2)]),_vm._v(" "),_c('tr',[_c('td',[_vm._v(_vm._s(_vm.person.contact.street)+" "),_c('br'),_vm._v(" "+_vm._s(_vm.person.contact.city))]),_vm._v(" "),_vm._m(3)]),_vm._v(" "),(_vm.person.contact.website)?_c('tr',[_c('td',[_c('a',{attrs:{"href":_vm.person.contact.website}},[_vm._v(_vm._s(_vm.person.contact.website))])]),_vm._v(" "),_vm._m(4)]):_vm._e(),_vm._v(" "),(_vm.person.contact.github)?_c('tr',[_c('td',[_c('a',{attrs:{"href":'https://github.com/'+_vm.person.contact.github}},[_vm._v("https://github.com/"+_vm._s(_vm.person.contact.github))])]),_vm._v(" "),_vm._m(5)]):_vm._e()])])]),_vm._v(" "),_c('div',{staticClass:"right half"},[_c('div',{staticClass:"education"},[_c('h3',[_vm._v(_vm._s(_vm.lang.headings.education))]),_vm._v(" "),_vm._l((_vm.person.education),function(education){return _c('div',{key:education.degree,staticClass:"education-block"},[_c('span',{staticClass:"degree"},[_vm._v(_vm._s(education.degree))]),_vm._v(" "),_c('span',{staticClass:"degree-description"},[_vm._v(_vm._s(education.description))])])})],2),_vm._v(" "),_c('h3',[_vm._v(_vm._s(_vm.lang.headings.skills))]),_vm._v(" "),_c('div',{staticClass:"skills"},_vm._l((_vm.person.skills),function(skill){return _c('div',{key:skill.name,staticClass:"skill-block"},[_c('span',{staticClass:"skill"},[_vm._v(_vm._s(skill.name))]),_vm._v(" "),_c('div',{staticClass:"skill-bar"},[_c('div',{staticClass:"level",style:('width: '+skill.level+'%')})])])})),_vm._v(" "),_c('span',{staticClass:"skills-other"},[_vm._v(" "+_vm._s(_vm.person.knowledge)+" ")])])])} -var staticRenderFns = [function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:"row"},[_c('div',{staticClass:"image center"},[_c('div',{staticClass:"img"})])])},function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('td',[_c('i',{staticClass:"fa fa-envelope",attrs:{"aria-hidden":"true"}})])},function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('td',[_c('i',{staticClass:"fa fa-phone",attrs:{"aria-hidden":"true"}})])},function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('td',[_c('i',{staticClass:"fa fa-home",attrs:{"aria-hidden":"true"}})])},function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('td',[_c('i',{staticClass:"fa fa-globe",attrs:{"aria-hidden":"true"}})])},function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('td',[_c('i',{staticClass:"fa fa-github",attrs:{"aria-hidden":"true"}})])}] -var esExports = { render: render, staticRenderFns: staticRenderFns } -/* harmony default export */ __webpack_exports__["a"] = (esExports); - -/***/ }), -/* 86 */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_oblique_vue__ = __webpack_require__(88); -/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_3e9e9731_hasScoped_true_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_oblique_vue__ = __webpack_require__(89); -function injectStyle (ssrContext) { - __webpack_require__(87) -} -var normalizeComponent = __webpack_require__(2) -/* script */ - -/* template */ - -/* template functional */ - var __vue_template_functional__ = false -/* styles */ -var __vue_styles__ = injectStyle -/* scopeId */ -var __vue_scopeId__ = "data-v-3e9e9731" -/* moduleIdentifier (server only) */ -var __vue_module_identifier__ = null -var Component = normalizeComponent( - __WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_oblique_vue__["a" /* default */], - __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_3e9e9731_hasScoped_true_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_oblique_vue__["a" /* default */], - __vue_template_functional__, - __vue_styles__, - __vue_scopeId__, - __vue_module_identifier__ -) - -/* unused harmony default export */ var _unused_webpack_default_export = (Component.exports); - - -/***/ }), -/* 87 */ -/***/ (function(module, exports) { - -// removed by extract-text-webpack-plugin - -/***/ }), -/* 88 */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_vue__ = __webpack_require__(1); -/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__options__ = __webpack_require__(3); - - - - - -var name = 'oblique'; -/* harmony default export */ __webpack_exports__["a"] = (__WEBPACK_IMPORTED_MODULE_0_vue__["a" /* default */].component(name, Object(__WEBPACK_IMPORTED_MODULE_1__options__["a" /* getVueOptions */])(name))); - -/***/ }), -/* 89 */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:"resume",attrs:{"id":"resume3"}},[_c('div',{staticClass:"resume-header"},[_c('div',{staticClass:"triangle"}),_vm._v(" "),_c('div',{staticClass:"person-header"},[_c('div',{staticClass:"person-wrapper"},[_c('div',{staticClass:"person"},[_c('div',{staticClass:"name"},[_vm._v(_vm._s(_vm.person.name.first)+" "+_vm._s(_vm.person.name.middle)+" "+_vm._s(_vm.person.name.last))]),_vm._v(" "),_c('div',{staticClass:"position"},[_vm._v(_vm._s(_vm.person.position))])]),_vm._v(" "),_c('div',{staticClass:"img"})])])]),_vm._v(" "),_c('div',{staticClass:"resume-content"},[_c('div',{staticClass:"experience"},[_c('h3',[_vm._v(_vm._s(_vm.lang.headings.experience))]),_vm._v(" "),_vm._l((_vm.person.experience),function(experience){return _c('div',{key:experience.company,staticClass:"experience-block"},[_c('div',{staticClass:"row"},[_c('span',{staticClass:"job-title"},[_vm._v(" "+_vm._s(experience.position)+" ")]),_vm._v(" "),_c('i',{staticClass:"material-icons"},[_vm._v("details")]),_vm._v(" "),_c('span',{staticClass:"company"},[_vm._v(" "+_vm._s(experience.company)+" ")])]),_vm._v(" "),_c('div',{staticClass:"row"},[_c('span',{staticClass:"time-period"},[_vm._v(" "+_vm._s(experience.timeperiod))]),_vm._v(" "),_c('span',{staticClass:"job-description"},[_vm._v(", "+_vm._s(experience.description)+" ")])])])})],2),_vm._v(" "),_c('div',{staticClass:"education"},[_c('h3',[_vm._v(_vm._s(_vm.lang.headings.education))]),_vm._v(" "),_vm._l((_vm.person.education),function(education){return _c('div',{key:education.degree,staticClass:"education-block"},[_c('div',{staticClass:"row"},[_c('span',{staticClass:"degree"},[_vm._v(_vm._s(education.degree))])]),_vm._v(" "),_c('div',{staticClass:"row"},[_c('span',{staticClass:"degree-description"},[_vm._v(_vm._s(education.description))])])])})],2),_vm._v(" "),_c('div',{staticClass:"skill-section"},[_c('h3',[_vm._v(_vm._s(_vm.lang.headings.skills))]),_vm._v(" "),_vm._l((_vm.person.skills),function(skill){return _c('div',{key:skill.name,staticClass:"skills"},[_c('div',{staticClass:"skill-block"},[_c('i',{staticClass:"material-icons"},[_vm._v("details")]),_vm._v(" "),_c('span',{staticClass:"skill"},[_vm._v(_vm._s(skill.name))])])])})],2),_vm._v(" "),_c('div',{staticClass:"skills-other"},[_c('span',[_vm._v(_vm._s(_vm.person.knowledge)+" ")])]),_vm._v(" "),_c('div',{staticClass:"contact"},[_c('h3',[_vm._v(_vm._s(_vm.lang.headings.contact))]),_vm._v(" "),_c('a',{attrs:{"href":'mailto:'+_vm.person.contact.email}},[_vm._v(" "+_vm._s(_vm.person.contact.email))]),_vm._v(" "),_c('span',[_vm._v("; ")]),_vm._v(" "),_c('a',{attrs:{"href":'tel:'+_vm.person.contact.phone}},[_vm._v(_vm._s(_vm.person.contact.phone))]),_vm._v(" "),_c('span',[_vm._v("; ")]),_vm._v(" "),_c('span',[_vm._v(_vm._s(_vm.person.contact.street)+", "+_vm._s(_vm.person.contact.city))]),_vm._v(" "),_c('span',[_vm._v("; ")]),_vm._v(" "),(_vm.person.contact.website)?_c('a',{attrs:{"href":_vm.person.contact.website}},[_vm._v("\n "+_vm._s(_vm.person.contact.website))]):_vm._e(),_vm._v(" "),(_vm.person.contact.website)?_c('span',[_vm._v("; ")]):_vm._e(),_vm._v(" "),(_vm.person.contact.github)?_c('a',{attrs:{"href":'https://github.com/'+_vm.person.contact.github}},[_vm._v("\n https://github.com/"+_vm._s(_vm.person.contact.github))]):_vm._e()])])])} -var staticRenderFns = [] -var esExports = { render: render, staticRenderFns: staticRenderFns } -/* harmony default export */ __webpack_exports__["a"] = (esExports); - -/***/ }), -/* 90 */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_side_bar_vue__ = __webpack_require__(92); -/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_4ac258cd_hasScoped_true_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_side_bar_vue__ = __webpack_require__(93); -function injectStyle (ssrContext) { - __webpack_require__(91) -} -var normalizeComponent = __webpack_require__(2) -/* script */ - -/* template */ - -/* template functional */ - var __vue_template_functional__ = false -/* styles */ -var __vue_styles__ = injectStyle -/* scopeId */ -var __vue_scopeId__ = "data-v-4ac258cd" -/* moduleIdentifier (server only) */ -var __vue_module_identifier__ = null -var Component = normalizeComponent( - __WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_side_bar_vue__["a" /* default */], - __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_4ac258cd_hasScoped_true_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_side_bar_vue__["a" /* default */], - __vue_template_functional__, - __vue_styles__, - __vue_scopeId__, - __vue_module_identifier__ -) - -/* unused harmony default export */ var _unused_webpack_default_export = (Component.exports); - - -/***/ }), -/* 91 */ -/***/ (function(module, exports) { - -// removed by extract-text-webpack-plugin - -/***/ }), -/* 92 */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_vue__ = __webpack_require__(1); -/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__options__ = __webpack_require__(3); - - - - - -var name = 'side-bar'; -/* harmony default export */ __webpack_exports__["a"] = (__WEBPACK_IMPORTED_MODULE_0_vue__["a" /* default */].component(name, Object(__WEBPACK_IMPORTED_MODULE_1__options__["a" /* getVueOptions */])(name))); - -/***/ }), -/* 93 */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:"resume",attrs:{"id":"resume2"}},[_c('div',{staticClass:"top-row"},[_c('span',{staticClass:"person-name"},[_vm._v("\n "+_vm._s(_vm.person.name.first)+" "+_vm._s(_vm.person.name.middle)+" "+_vm._s(_vm.person.name.last)+"\n ")]),_vm._v(" "),_c('span',{staticClass:"person-position"},[_vm._v("\n "+_vm._s(_vm.person.position)+"\n ")])]),_vm._v(" "),_c('div',{staticClass:"left-col"},[_vm._m(0),_vm._v(" "),_c('div',{staticClass:"contact"},[_c('h3',[_vm._v(_vm._s(_vm.lang.headings.contact))]),_vm._v(" "),_c('div',{staticClass:"contact-row"},[_c('a',{attrs:{"href":'mailto:'+_vm.person.contact.email}},[_vm._v(_vm._s(_vm.person.contact.email))])]),_vm._v(" "),_vm._m(1),_vm._v(" "),_c('div',{staticClass:"contact-row"},[_c('a',{attrs:{"href":'tel:'+_vm.person.contact.phone}},[_vm._v(_vm._s(_vm.person.contact.phone))])]),_vm._v(" "),_vm._m(2),_vm._v(" "),_c('div',{staticClass:"contact-row"},[_vm._v("\n "+_vm._s(_vm.person.contact.street)+" "),_c('br'),_vm._v(" "+_vm._s(_vm.person.contact.city)+"\n ")]),_vm._v(" "),(_vm.person.contact.github)?_c('div',{staticClass:"contact-row dots"},[_c('i',{staticClass:"fa fa-circle",attrs:{"aria-hidden":"true"}}),_vm._v(" "),_c('i',{staticClass:"fa fa-circle",attrs:{"aria-hidden":"true"}}),_vm._v(" "),_c('i',{staticClass:"fa fa-circle",attrs:{"aria-hidden":"true"}})]):_vm._e(),_vm._v(" "),(_vm.person.contact.github)?_c('div',{staticClass:"contact-row"},[_c('a',{attrs:{"href":'https://github.com/'+_vm.person.contact.github}},[_vm._v("https://github.com/"+_vm._s(_vm.person.contact.github))])]):_vm._e()])]),_vm._v(" "),_c('div',{staticClass:"right-col"},[_c('div',{staticClass:"experience"},[_c('h3',[_vm._v(_vm._s(_vm.lang.headings.experience))]),_vm._v(" "),_vm._l((_vm.person.experience),function(experience){return _c('div',{key:experience.company,staticClass:"experience-block"},[_c('div',{staticClass:"row"},[_c('span',{staticClass:"company"},[_vm._v(" "+_vm._s(experience.company)+" -")]),_vm._v(" "),_c('span',{staticClass:"job-title"},[_vm._v(" "+_vm._s(experience.position)+" ")])]),_vm._v(" "),_c('div',{staticClass:"row"},[_c('span',{staticClass:"time-period"},[_vm._v(" "+_vm._s(experience.timeperiod))])]),_vm._v(" "),_c('div',{staticClass:"row"},[_c('span',{staticClass:"job-description"},[_vm._v(" "+_vm._s(experience.description)+" ")])])])})],2),_vm._v(" "),_c('div',{staticClass:"education"},[_c('h3',[_vm._v(_vm._s(_vm.lang.headings.education))]),_vm._v(" "),_vm._l((_vm.person.education),function(education){return _c('div',{key:education.degree,staticClass:"education-block"},[_c('div',{staticClass:"row"},[_c('span',{staticClass:"degree"},[_vm._v(_vm._s(education.degree))])]),_vm._v(" "),_c('div',{staticClass:"row"},[_c('span',{staticClass:"degree-description"},[_vm._v(_vm._s(education.description))])])])})],2),_vm._v(" "),_c('div',{staticClass:"skills-block"},[_c('h3',[_vm._v(_vm._s(_vm.lang.headings.skills))]),_vm._v(" "),_c('div',{staticClass:"skills"},_vm._l((_vm.person.skills),function(skill){return _c('div',{key:skill.name,staticClass:"skill"},[_c('span',{staticClass:"skill-name"},[_vm._v(_vm._s(skill.name))])])})),_vm._v(" "),_c('span',{staticClass:"skills-other"},[_vm._v(" "+_vm._s(_vm.person.knowledge)+" ")])])])])} -var staticRenderFns = [function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:"person-image"},[_c('div',{staticClass:"image-centerer"},[_c('div',{staticClass:"img"})])])},function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:"contact-row dots"},[_c('i',{staticClass:"fa fa-circle",attrs:{"aria-hidden":"true"}}),_vm._v(" "),_c('i',{staticClass:"fa fa-circle",attrs:{"aria-hidden":"true"}}),_vm._v(" "),_c('i',{staticClass:"fa fa-circle",attrs:{"aria-hidden":"true"}})])},function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:"contact-row dots"},[_c('i',{staticClass:"fa fa-circle",attrs:{"aria-hidden":"true"}}),_vm._v(" "),_c('i',{staticClass:"fa fa-circle",attrs:{"aria-hidden":"true"}}),_vm._v(" "),_c('i',{staticClass:"fa fa-circle",attrs:{"aria-hidden":"true"}})])}] -var esExports = { render: render, staticRenderFns: staticRenderFns } -/* harmony default export */ __webpack_exports__["a"] = (esExports); - -/***/ }), -/* 94 */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_purple_vue__ = __webpack_require__(96); -/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_1f07d728_hasScoped_true_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_purple_vue__ = __webpack_require__(97); -function injectStyle (ssrContext) { - __webpack_require__(95) -} -var normalizeComponent = __webpack_require__(2) -/* script */ - -/* template */ - -/* template functional */ - var __vue_template_functional__ = false -/* styles */ -var __vue_styles__ = injectStyle -/* scopeId */ -var __vue_scopeId__ = "data-v-1f07d728" -/* moduleIdentifier (server only) */ -var __vue_module_identifier__ = null -var Component = normalizeComponent( - __WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_purple_vue__["a" /* default */], - __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_1f07d728_hasScoped_true_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_purple_vue__["a" /* default */], - __vue_template_functional__, - __vue_styles__, - __vue_scopeId__, - __vue_module_identifier__ -) - -/* unused harmony default export */ var _unused_webpack_default_export = (Component.exports); - - -/***/ }), -/* 95 */ -/***/ (function(module, exports) { - -// removed by extract-text-webpack-plugin - -/***/ }), -/* 96 */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_vue__ = __webpack_require__(1); -/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__options__ = __webpack_require__(3); - - - - - -/* harmony default export */ __webpack_exports__["a"] = (__WEBPACK_IMPORTED_MODULE_0_vue__["a" /* default */].component('purple', Object(__WEBPACK_IMPORTED_MODULE_1__options__["a" /* getVueOptions */])(name))); - -/***/ }), -/* 97 */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:"resume",attrs:{"id":"template"}},[_c('div',{attrs:{"id":"resume-header"}},[_c('div',{attrs:{"id":"header-left"}},[_c('h2',{attrs:{"id":"position"}},[_vm._v(_vm._s(_vm.person.position))]),_vm._v(" "),_c('h1',{attrs:{"id":"name"}},[_vm._v(_vm._s(_vm.person.name.first)+" "+_vm._s(_vm.person.name.last))]),_vm._v(" "),_c('div',{attrs:{"id":"info-flex"}},[_c('span',{attrs:{"id":"email"}},[_c('a',{attrs:{"href":"mailto:" + _vm.person.contact.email}},[_c('i',{staticClass:"fa fa-envelope",attrs:{"aria-hidden":"true"}}),_vm._v(" "+_vm._s(_vm.person.contact.email))])]),_vm._v(" "),_c('span',{attrs:{"id":"phone"}},[_c('i',{staticClass:"fa fa-phone-square",attrs:{"aria-hidden":"true"}}),_vm._v(" "+_vm._s(_vm.person.contact.phone))]),_vm._v(" "),(_vm.person.contact.website)?_c('span',{attrs:{"id":"website"}},[_c('a',{attrs:{"href":_vm.person.contact.website}},[_c('i',{staticClass:"fa fa-home",attrs:{"aria-hidden":"true"}}),_vm._v(" "+_vm._s(_vm.person.contact.website))])]):_vm._e(),_vm._v(" "),(_vm.person.contact.github)?_c('span',{attrs:{"id":"github"}},[_c('a',{attrs:{"href":"https://github.com/" + _vm.person.contact.github}},[_c('i',{staticClass:"fa fa-github",attrs:{"aria-hidden":"true"}}),_vm._v(" "+_vm._s(_vm.person.contact.github))])]):_vm._e()])]),_vm._v(" "),_vm._m(0)]),_vm._v(" "),_c('div',{attrs:{"id":"resume-body"}},[_c('div',{attrs:{"id":"experience-container"}},[_c('h2',{attrs:{"id":"experience-title"}},[_vm._v(_vm._s(_vm.lang.headings.experience))]),_vm._v(" "),_c('div',{staticClass:"spacer"}),_vm._v(" "),_vm._l((_vm.person.experience),function(experience){return _c('div',{key:experience.company,staticClass:"experience"},[_c('h2',{staticClass:"company"},[_vm._v(_vm._s(experience.company))]),_vm._v(" "),_c('p',{staticClass:"job-info"},[_c('span',{staticClass:"job-title"},[_vm._v(_vm._s(experience.position)+" | ")]),_c('span',{staticClass:"experience-timeperiod"},[_vm._v(_vm._s(experience.timeperiod))])]),_vm._v(" "),(experience.description)?_c('p',{staticClass:"job-description"},[_vm._v(_vm._s(experience.description))]):_vm._e(),_vm._v(" "),(experience.list)?_c('ul',_vm._l((experience.list),function(item,index){return _c('li',{key:index},[_c('span',{staticClass:"list-item-black"},[_vm._v("\n "+_vm._s(item)+"\n ")])])})):_vm._e()])})],2),_vm._v(" "),_c('div',{attrs:{"id":"education-container"}},[_c('h2',{attrs:{"id":"education-title"}},[_vm._v(_vm._s(_vm.lang.headings.education))]),_vm._v(" "),_c('div',{staticClass:"spacer"}),_vm._v(" "),_vm._l((_vm.person.education),function(education){return _c('div',{key:education.degree,staticClass:"education"},[_c('h2',{staticClass:"education-description"},[_vm._v(_vm._s(education.description))]),_vm._v(" "),_c('p',[_c('span',{staticClass:"degree"},[_vm._v(_vm._s(education.degree)+" | ")]),_c('span',{staticClass:"education-timeperiod"},[_vm._v(_vm._s(education.timeperiod))])])])})],2),_vm._v(" "),(_vm.person.skills != [])?_c('div',{attrs:{"id":"skills-container"}},[_c('h2',{attrs:{"id":"skills-title"}},[_vm._v(_vm._s(_vm.lang.headings.skills))]),_vm._v(" "),_c('div',{staticClass:"spacer"}),_vm._v(" "),_c('p',{attrs:{"id":"skill-description"}},[_vm._v(_vm._s(_vm.person.knowledge))]),_vm._v(" "),_c('ul',{attrs:{"id":"skill-list"}},_vm._l((_vm.person.skills),function(skill){return _c('li',{key:skill.name,staticClass:"skill"},[_c('span',{staticClass:"list-item-black"},[_vm._v("\n "+_vm._s(skill.name)+"\n ")])])}))]):_vm._e()]),_vm._v(" "),_c('div',{attrs:{"id":"resume-footer"}},[(_vm.person.about)?_c('div',[_c('h2',[_vm._v(_vm._s(_vm.lang.headings.about))]),_vm._v(" "),_c('p',[_vm._v(_vm._s(_vm.person.about))])]):_vm._e()])])} -var staticRenderFns = [function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{attrs:{"id":"header-right"}},[_c('div',{attrs:{"id":"headshot"}})])}] -var esExports = { render: render, staticRenderFns: staticRenderFns } -/* harmony default export */ __webpack_exports__["a"] = (esExports); - -/***/ }), -/* 98 */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_side_bar_rtl_vue__ = __webpack_require__(100); -/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_7f2ce22c_hasScoped_true_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_side_bar_rtl_vue__ = __webpack_require__(101); -function injectStyle (ssrContext) { - __webpack_require__(99) -} -var normalizeComponent = __webpack_require__(2) -/* script */ - -/* template */ - -/* template functional */ - var __vue_template_functional__ = false -/* styles */ -var __vue_styles__ = injectStyle -/* scopeId */ -var __vue_scopeId__ = "data-v-7f2ce22c" -/* moduleIdentifier (server only) */ -var __vue_module_identifier__ = null -var Component = normalizeComponent( - __WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_side_bar_rtl_vue__["a" /* default */], - __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_7f2ce22c_hasScoped_true_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_side_bar_rtl_vue__["a" /* default */], - __vue_template_functional__, - __vue_styles__, - __vue_scopeId__, - __vue_module_identifier__ -) - -/* unused harmony default export */ var _unused_webpack_default_export = (Component.exports); - - -/***/ }), -/* 99 */ -/***/ (function(module, exports) { - -// removed by extract-text-webpack-plugin - -/***/ }), -/* 100 */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_vue__ = __webpack_require__(1); -/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__options__ = __webpack_require__(3); - - - - - -var name = 'side-bar-rtl'; -/* harmony default export */ __webpack_exports__["a"] = (__WEBPACK_IMPORTED_MODULE_0_vue__["a" /* default */].component(name, Object(__WEBPACK_IMPORTED_MODULE_1__options__["a" /* getVueOptions */])(name))); - -/***/ }), -/* 101 */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:"resume",attrs:{"id":"resume2"}},[_c('div',{staticClass:"top-row"},[_c('span',{staticClass:"person-name"},[_vm._v("\n "+_vm._s(_vm.person.name.first)+" "+_vm._s(_vm.person.name.middle)+" "+_vm._s(_vm.person.name.last)+"\n ")]),_vm._v(" "),_c('span',{staticClass:"person-position"},[_vm._v("\n "+_vm._s(_vm.person.position)+"\n ")])]),_vm._v(" "),_c('div',{staticClass:"right-col"},[_vm._m(0),_vm._v(" "),_c('div',{staticClass:"contact"},[_c('h3',[_vm._v(_vm._s(_vm.lang.headings.contact))]),_vm._v(" "),_c('div',{staticClass:"contact-row"},[_c('a',{attrs:{"href":'mailto:'+_vm.person.contact.email}},[_vm._v(_vm._s(_vm.person.contact.email))])]),_vm._v(" "),_vm._m(1),_vm._v(" "),_c('div',{staticClass:"contact-row"},[_c('a',{attrs:{"href":"'tel:'+person.contact.phone"}},[_vm._v(_vm._s(_vm.person.contact.phone))])]),_vm._v(" "),_vm._m(2),_vm._v(" "),_c('div',{staticClass:"contact-row"},[_vm._v("\n "+_vm._s(_vm.person.contact.street)+" "),_c('br'),_vm._v(" "+_vm._s(_vm.person.contact.city)+"\n ")]),_vm._v(" "),_vm._m(3),_vm._v(" "),_c('div',{staticClass:"contact-row"},[_c('a',{attrs:{"href":'https://github.com/'+_vm.person.contact.github}},[_vm._v("https://github.com/"+_vm._s(_vm.person.contact.github))])])])]),_vm._v(" "),_c('div',{staticClass:"left-col"},[_c('div',{staticClass:"experience"},[_c('h3',[_vm._v(_vm._s(_vm.lang.headings.experience))]),_vm._v(" "),_vm._l((_vm.person.experience),function(experience){return _c('div',{staticClass:"experience-block"},[_c('div',{staticClass:"row"},[_c('span',{staticClass:"company"},[_vm._v(" "+_vm._s(experience.company)+" -")]),_vm._v(" "),_c('span',{staticClass:"job-title"},[_vm._v(" "+_vm._s(experience.position)+" ")])]),_vm._v(" "),_c('div',{staticClass:"row"},[_c('span',{staticClass:"time-period"},[_vm._v(" "+_vm._s(experience.timeperiod))])]),_vm._v(" "),_c('div',{staticClass:"row"},[_c('span',{staticClass:"job-description"},[_vm._v(" "+_vm._s(experience.description)+" ")])])])})],2),_vm._v(" "),_c('div',{staticClass:"education"},[_c('h3',[_vm._v(_vm._s(_vm.lang.headings.education))]),_vm._v(" "),_vm._l((_vm.person.education),function(education){return _c('div',{staticClass:"education-block"},[_c('div',{staticClass:"row"},[_c('span',{staticClass:"degree"},[_vm._v(_vm._s(education.degree))])]),_vm._v(" "),_c('div',{staticClass:"row"},[_c('span',{staticClass:"degree-description"},[_vm._v(_vm._s(education.description))])])])})],2),_vm._v(" "),_c('div',{staticClass:"skills-block"},[_c('h3',[_vm._v(_vm._s(_vm.lang.headings.skills))]),_vm._v(" "),_c('div',{staticClass:"skills"},_vm._l((_vm.person.skills),function(skill){return _c('div',{staticClass:"skill"},[_c('span',{staticClass:"skill-name"},[_vm._v(_vm._s(skill.name))])])})),_vm._v(" "),_c('span',{staticClass:"skills-other"},[_vm._v(" "+_vm._s(_vm.person.knowledge)+" ")])])])])} -var staticRenderFns = [function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:"person-image"},[_c('div',{staticClass:"image-centerer"},[_c('div',{staticClass:"img"})])])},function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:"contact-row dots"},[_c('i',{staticClass:"fa fa-circle",attrs:{"aria-hidden":"true"}}),_vm._v(" "),_c('i',{staticClass:"fa fa-circle",attrs:{"aria-hidden":"true"}}),_vm._v(" "),_c('i',{staticClass:"fa fa-circle",attrs:{"aria-hidden":"true"}})])},function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:"contact-row dots"},[_c('i',{staticClass:"fa fa-circle",attrs:{"aria-hidden":"true"}}),_vm._v(" "),_c('i',{staticClass:"fa fa-circle",attrs:{"aria-hidden":"true"}}),_vm._v(" "),_c('i',{staticClass:"fa fa-circle",attrs:{"aria-hidden":"true"}})])},function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:"contact-row dots"},[_c('i',{staticClass:"fa fa-circle",attrs:{"aria-hidden":"true"}}),_vm._v(" "),_c('i',{staticClass:"fa fa-circle",attrs:{"aria-hidden":"true"}}),_vm._v(" "),_c('i',{staticClass:"fa fa-circle",attrs:{"aria-hidden":"true"}})])}] -var esExports = { render: render, staticRenderFns: staticRenderFns } -/* harmony default export */ __webpack_exports__["a"] = (esExports); - -/***/ }), -/* 102 */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_left_right_rtl_vue__ = __webpack_require__(104); -/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_6a982bba_hasScoped_true_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_left_right_rtl_vue__ = __webpack_require__(105); -function injectStyle (ssrContext) { - __webpack_require__(103) -} -var normalizeComponent = __webpack_require__(2) -/* script */ - -/* template */ - -/* template functional */ - var __vue_template_functional__ = false -/* styles */ -var __vue_styles__ = injectStyle -/* scopeId */ -var __vue_scopeId__ = "data-v-6a982bba" -/* moduleIdentifier (server only) */ -var __vue_module_identifier__ = null -var Component = normalizeComponent( - __WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_left_right_rtl_vue__["a" /* default */], - __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_6a982bba_hasScoped_true_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_left_right_rtl_vue__["a" /* default */], - __vue_template_functional__, - __vue_styles__, - __vue_scopeId__, - __vue_module_identifier__ -) - -/* unused harmony default export */ var _unused_webpack_default_export = (Component.exports); - - -/***/ }), -/* 103 */ -/***/ (function(module, exports) { - -// removed by extract-text-webpack-plugin - -/***/ }), -/* 104 */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_vue__ = __webpack_require__(1); -/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__options__ = __webpack_require__(3); - - - - -var name = 'left-right-rtl'; -/* harmony default export */ __webpack_exports__["a"] = (__WEBPACK_IMPORTED_MODULE_0_vue__["a" /* default */].component(name, Object(__WEBPACK_IMPORTED_MODULE_1__options__["a" /* getVueOptions */])(name))); - -/***/ }), -/* 105 */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:"resume",attrs:{"id":"resume1"}},[_c('div',{staticClass:"row text-center"},[_c('span',{staticClass:"name"},[_vm._v(_vm._s(_vm.person.name.first)+" "+_vm._s(_vm.person.name.middle)+" "+_vm._s(_vm.person.name.last))])]),_vm._v(" "),_c('div',{staticClass:"row text-center"},[_c('p',{staticClass:"position center"},[_vm._v(_vm._s(_vm.person.position))])]),_vm._v(" "),_vm._m(0),_vm._v(" "),_c('div',{staticClass:"left half"},[_c('div',{staticClass:"experience"},[_c('h3',[_vm._v(_vm._s(_vm.lang.headings.experience))]),_vm._v(" "),_vm._l((_vm.person.experience),function(experience){return _c('div',{key:experience.company,staticClass:"experience-block"},[_c('span',{staticClass:"company"},[_vm._v(" "+_vm._s(experience.company)+" ")]),_vm._v(" "),_c('span',{staticClass:"job-title"},[_vm._v(" "+_vm._s(experience.position)+" ")]),_vm._v(" "),_c('span',{staticClass:"time-period"},[_vm._v(" "+_vm._s(experience.timeperiod))]),_vm._v(" "),_c('span',{staticClass:"job-description"},[_vm._v(" "+_vm._s(experience.description)+" ")])])})],2),_vm._v(" "),_c('div',{staticClass:"contact"},[_c('h3',[_vm._v(_vm._s(_vm.lang.headings.contact))]),_vm._v(" "),_c('table',[_c('tr',[_vm._m(1),_vm._v(" "),_c('td',[_c('a',{attrs:{"href":'mailto:'+_vm.person.contact.email}},[_vm._v(_vm._s(_vm.person.contact.email))])])]),_vm._v(" "),_c('tr',[_vm._m(2),_vm._v(" "),_c('td',[_c('a',{attrs:{"href":'tel:'+_vm.person.contact.phone}},[_vm._v(_vm._s(_vm.person.contact.phone))])])]),_vm._v(" "),_c('tr',[_vm._m(3),_vm._v(" "),_c('td',[_vm._v(_vm._s(_vm.person.contact.street)+" "),_c('br'),_vm._v(" "+_vm._s(_vm.person.contact.city))])]),_vm._v(" "),(_vm.person.contact.website)?_c('tr',[_vm._m(4),_vm._v(" "),_c('td',[_c('a',{attrs:{"href":_vm.person.contact.website}},[_vm._v(_vm._s(_vm.person.contact.website))])])]):_vm._e(),_vm._v(" "),(_vm.person.contact.github)?_c('tr',[_vm._m(5),_vm._v(" "),_c('td',[_c('a',{attrs:{"href":'https://github.com/'+_vm.person.contact.github}},[_vm._v("https://github.com/"+_vm._s(_vm.person.contact.github))])])]):_vm._e()])])]),_vm._v(" "),_c('div',{staticClass:"right half"},[_c('div',{staticClass:"education"},[_c('h3',[_vm._v(_vm._s(_vm.lang.headings.education))]),_vm._v(" "),_vm._l((_vm.person.education),function(education){return _c('div',{key:education.degree,staticClass:"education-block"},[_c('span',{staticClass:"degree"},[_vm._v(_vm._s(education.degree))]),_vm._v(" "),_c('span',{staticClass:"degree-description"},[_vm._v(_vm._s(education.description))])])})],2),_vm._v(" "),_c('h3',[_vm._v(_vm._s(_vm.lang.headings.skills))]),_vm._v(" "),_c('div',{staticClass:"skills"},_vm._l((_vm.person.skills),function(skill){return _c('div',{key:skill.name,staticClass:"skill-block"},[_c('span',{staticClass:"skill"},[_vm._v(_vm._s(skill.name))]),_vm._v(" "),_c('div',{staticClass:"skill-bar"},[_c('div',{staticClass:"level",style:('width: '+skill.level+'%')})])])})),_vm._v(" "),_c('span',{staticClass:"skills-other"},[_vm._v(" "+_vm._s(_vm.person.skillDescription)+" ")])])])} -var staticRenderFns = [function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:"row"},[_c('div',{staticClass:"image center"},[_c('div',{staticClass:"img"})])])},function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('td',[_c('i',{staticClass:"fa fa-envelope",attrs:{"aria-hidden":"true"}})])},function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('td',[_c('i',{staticClass:"fa fa-phone",attrs:{"aria-hidden":"true"}})])},function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('td',[_c('i',{staticClass:"fa fa-home",attrs:{"aria-hidden":"true"}})])},function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('td',[_c('i',{staticClass:"fa fa-globe",attrs:{"aria-hidden":"true"}})])},function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('td',[_c('i',{staticClass:"fa fa-github",attrs:{"aria-hidden":"true"}})])}] -var esExports = { render: render, staticRenderFns: staticRenderFns } -/* harmony default export */ __webpack_exports__["a"] = (esExports); - -/***/ }), -/* 106 */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:"page-wrapper"},[_c('div',{staticClass:"page",attrs:{"id":_vm.$route.params.resumeid}},[_c('div',{staticClass:"page-inner"},[_c(_vm.$route.params.resumeid,{tag:"component"})],1)])])} -var staticRenderFns = [] -var esExports = { render: render, staticRenderFns: staticRenderFns } -/* harmony default export */ __webpack_exports__["a"] = (esExports); - -/***/ }), -/* 107 */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_home_vue__ = __webpack_require__(109); -/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_d7e5c49e_hasScoped_true_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_home_vue__ = __webpack_require__(110); -function injectStyle (ssrContext) { - __webpack_require__(108) -} -var normalizeComponent = __webpack_require__(2) -/* script */ - -/* template */ - -/* template functional */ - var __vue_template_functional__ = false -/* styles */ -var __vue_styles__ = injectStyle -/* scopeId */ -var __vue_scopeId__ = "data-v-d7e5c49e" -/* moduleIdentifier (server only) */ -var __vue_module_identifier__ = null -var Component = normalizeComponent( - __WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_home_vue__["a" /* default */], - __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_d7e5c49e_hasScoped_true_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_home_vue__["a" /* default */], - __vue_template_functional__, - __vue_styles__, - __vue_scopeId__, - __vue_module_identifier__ -) - -/* harmony default export */ __webpack_exports__["a"] = (Component.exports); - - -/***/ }), -/* 108 */ -/***/ (function(module, exports) { - -// removed by extract-text-webpack-plugin - -/***/ }), -/* 109 */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_vue__ = __webpack_require__(1); - - - -/* harmony default export */ __webpack_exports__["a"] = (__WEBPACK_IMPORTED_MODULE_0_vue__["a" /* default */].component('resume', { - name: 'app' -})); - -/***/ }), -/* 110 */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:"home"},[_vm._m(0),_vm._v(" "),_vm._m(1),_vm._v(" "),_c('h3',{staticClass:"title"},[_vm._v("best-resume-ever")]),_vm._v(" "),_c('div',{staticClass:"previews"},[_c('div',{staticClass:"preview"},[_c('router-link',{attrs:{"to":'/resume/material-dark'}},[_c('div',{staticClass:"preview-wrapper"},[_c('img',{attrs:{"src":__webpack_require__(111)}}),_vm._v(" "),_c('span',[_vm._v("material-dark")])])])],1),_vm._v(" "),_c('div',{staticClass:"preview"},[_c('router-link',{attrs:{"to":'/resume/left-right'}},[_c('div',{staticClass:"preview-wrapper"},[_c('img',{attrs:{"src":__webpack_require__(112)}}),_vm._v(" "),_c('span',[_vm._v("left-right")])])])],1),_vm._v(" "),_c('div',{staticClass:"preview"},[_c('router-link',{attrs:{"to":'/resume/oblique'}},[_c('div',{staticClass:"preview-wrapper"},[_c('img',{attrs:{"src":__webpack_require__(113)}}),_vm._v(" "),_c('span',[_vm._v("oblique")])])])],1),_vm._v(" "),_c('div',{staticClass:"preview"},[_c('router-link',{attrs:{"to":'/resume/side-bar'}},[_c('div',{staticClass:"preview-wrapper"},[_c('img',{attrs:{"src":__webpack_require__(114)}}),_vm._v(" "),_c('span',[_vm._v("side-bar")])])])],1),_vm._v(" "),_c('div',{staticClass:"preview"},[_c('router-link',{attrs:{"to":'/resume/purple'}},[_c('div',{staticClass:"preview-wrapper"},[_c('img',{attrs:{"src":__webpack_require__(115)}}),_vm._v(" "),_c('span',[_vm._v("purple")])])])],1),_vm._v(" "),_c('div',{staticClass:"preview"},[_c('router-link',{attrs:{"to":'/resume/side-bar-rtl'}},[_c('div',{staticClass:"preview-wrapper"},[_c('img',{attrs:{"src":__webpack_require__(116)}}),_vm._v(" "),_c('span',[_vm._v("side-bar-rtl")])])])],1),_vm._v(" "),_c('div',{staticClass:"preview"},[_c('router-link',{attrs:{"to":'/resume/left-right-rtl'}},[_c('div',{staticClass:"preview-wrapper"},[_c('img',{attrs:{"src":__webpack_require__(117)}}),_vm._v(" "),_c('span',[_vm._v("left-right-rtl")])])])],1)])])} -var staticRenderFns = [function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('a',{attrs:{"href":"https://github.com/salomonelli/best-resume-ever","target":"_blank"}},[_c('img',{staticStyle:{"position":"absolute","top":"0","right":"0","border":"0"},attrs:{"src":"https://camo.githubusercontent.com/38ef81f8aca64bb9a64448d0d70f1308ef5341ab/68747470733a2f2f73332e616d617a6f6e6177732e636f6d2f6769746875622f726962626f6e732f666f726b6d655f72696768745f6461726b626c75655f3132313632312e706e67","alt":"Fork me on GitHub","data-canonical-src":"https://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png"}})])},function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:"logo"},[_c('img',{attrs:{"src":__webpack_require__(118)}})])}] -var esExports = { render: render, staticRenderFns: staticRenderFns } -/* harmony default export */ __webpack_exports__["a"] = (esExports); - -/***/ }), -/* 111 */ -/***/ (function(module, exports, __webpack_require__) { - -module.exports = __webpack_require__.p + "static/img/resume-material-dark.722cd11.png"; - -/***/ }), -/* 112 */ -/***/ (function(module, exports, __webpack_require__) { - -module.exports = __webpack_require__.p + "static/img/resume-left-right.4ba1e85.png"; - -/***/ }), -/* 113 */ -/***/ (function(module, exports, __webpack_require__) { - -module.exports = __webpack_require__.p + "static/img/resume-oblique.a02cfe1.png"; - -/***/ }), -/* 114 */ -/***/ (function(module, exports, __webpack_require__) { - -module.exports = __webpack_require__.p + "static/img/resume-side-bar.f99c742.png"; - -/***/ }), -/* 115 */ -/***/ (function(module, exports, __webpack_require__) { - -module.exports = __webpack_require__.p + "static/img/resume-purple.6c93c28.png"; - -/***/ }), -/* 116 */ -/***/ (function(module, exports, __webpack_require__) { - -module.exports = __webpack_require__.p + "static/img/resume-side-bar-rtl.abd6c1a.png"; - -/***/ }), -/* 117 */ -/***/ (function(module, exports, __webpack_require__) { - -module.exports = __webpack_require__.p + "static/img/resume-left-right-rtl.75f8068.png"; - -/***/ }), -/* 118 */ -/***/ (function(module, exports, __webpack_require__) { - -module.exports = __webpack_require__.p + "static/img/logo.1522a48.png"; - -/***/ }) -],[13]); -//# sourceMappingURL=app.e2c878cafbb20641fa24.js.map \ No newline at end of file diff --git a/docs/static/js/app.e2c878cafbb20641fa24.js.map b/docs/static/js/app.e2c878cafbb20641fa24.js.map deleted file mode 100644 index e5734ff..0000000 --- a/docs/static/js/app.e2c878cafbb20641fa24.js.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"sources":["webpack:///./src/resumes/options.js","webpack:///./src/main.js","webpack:///./src/App.vue","webpack:///./src/App.vue?c635","webpack:///src/App.vue","webpack:///./src/App.vue?57c6","webpack:///./src/router/index.js","webpack:///./src/pages/resume.vue","webpack:///./src/pages/resume.vue?1ff5","webpack:///src/pages/resume.vue","webpack:///./src/resumes/resumes.js","webpack:///./src/resumes/material-dark.vue","webpack:///./src/resumes/material-dark.vue?6010","webpack:///src/resumes/material-dark.vue","webpack:///./resume/data.yml","webpack:///./src/terms.js","webpack:///./src/lang/en.js","webpack:///./src/lang/de.js","webpack:///./src/lang/fr.js","webpack:///./src/lang/pt.js","webpack:///./src/lang/ca.js","webpack:///./src/lang/cn.js","webpack:///./src/lang/it.js","webpack:///./src/lang/es.js","webpack:///./src/lang/th.js","webpack:///./src/lang/id.js","webpack:///./src/lang/sv.js","webpack:///./src/lang/ru.js","webpack:///./src/lang/pt-br.js","webpack:///./src/lang/hu.js","webpack:///./src/lang/pl.js","webpack:///./src/lang/he.js","webpack:///./src/lang/ja.js","webpack:///./src/lang/zh-tw.js","webpack:///./src/lang/nl.js","webpack:///./src/lang/lt.js","webpack:///./src/lang/tr.js","webpack:///./src/lang/ko.js","webpack:///./src/resumes/material-dark.vue?ba7a","webpack:///./src/resumes/left-right.vue","webpack:///./src/resumes/left-right.vue?a02f","webpack:///src/resumes/left-right.vue","webpack:///./src/resumes/left-right.vue?4e84","webpack:///./src/resumes/oblique.vue","webpack:///./src/resumes/oblique.vue?3ccd","webpack:///src/resumes/oblique.vue","webpack:///./src/resumes/oblique.vue?64ac","webpack:///./src/resumes/side-bar.vue","webpack:///./src/resumes/side-bar.vue?8725","webpack:///src/resumes/side-bar.vue","webpack:///./src/resumes/side-bar.vue?a59b","webpack:///./src/resumes/purple.vue","webpack:///./src/resumes/purple.vue?2cdb","webpack:///src/resumes/purple.vue","webpack:///./src/resumes/purple.vue?e6d2","webpack:///./src/resumes/side-bar-rtl.vue","webpack:///./src/resumes/side-bar-rtl.vue?e1b0","webpack:///src/resumes/side-bar-rtl.vue","webpack:///./src/resumes/side-bar-rtl.vue?17c7","webpack:///./src/resumes/left-right-rtl.vue","webpack:///./src/resumes/left-right-rtl.vue?0c5f","webpack:///src/resumes/left-right-rtl.vue","webpack:///./src/resumes/left-right-rtl.vue?8e1d","webpack:///./src/pages/resume.vue?7d71","webpack:///./src/pages/home.vue","webpack:///./src/pages/home.vue?33c5","webpack:///src/pages/home.vue","webpack:///./src/pages/home.vue?daf5","webpack:///./src/assets/preview/resume-material-dark.png","webpack:///./src/assets/preview/resume-left-right.png","webpack:///./src/assets/preview/resume-oblique.png","webpack:///./src/assets/preview/resume-side-bar.png","webpack:///./src/assets/preview/resume-purple.png","webpack:///./src/assets/preview/resume-side-bar-rtl.png","webpack:///./src/assets/preview/resume-left-right-rtl.png","webpack:///./src/assets/logo.png"],"names":["getVueOptions","name","opt","data","person","yaml","load","terms","computed","lang","Vue","config","productionTip","el","router","template","components","App","use","routes","path","component","Home","Resume","en","de","fr","pt","ca","cn","it","es","th","ru","sv","id","hu","pl","ja","nl","he","lt","tr","ko","headings","contact","experience","education","skills","about","ptbr","jp","zhtw"],"mappings":";;;;;;;;;;;;;AAAA;AACA;AACA;;AAGA,SAASA,aAAT,CAAwBC,IAAxB,EAA8B;AAC5B,MAAIC,MAAM;AACRD,UAAMA,IADE;AAERE,QAFQ,kBAEA;AACN,aAAO;AACLC,gBAAQ,+CAAAC,CAAKC,IAAL,CAAU,gEAAV,CADH;AAELC,eAAO,qDAAAA;AAFF,OAAP;AAID,KAPO;;AAQRC,cAAU;AACRC,UADQ,kBACA;AACN,eAAO,KAAKF,KAAL,CAAW,KAAKH,MAAL,CAAYK,IAAvB,CAAP;AACD;AAHO;AARF,GAAV;AAcA,SAAOP,GAAP;AACD;;;;;;;;;;;;;;;;;;;;;;;ACnBD;AACA;AACA;;AAEA,oDAAAQ,CAAIC,MAAJ,CAAWC,aAAX,GAA2B,KAA3B;;AAGA,IAAI,oDAAJ,CAAQ;AACNC,MAAI,MADE;AAENC,UAAA,wDAFM;AAGNC,YAAU,QAHJ;AAINC,cAAY;AACVC,SAAA,qDAAAA;AADU;AAJN,CAAR,E;;;;;;;;;;;ACTA;AAAA;AACA,wBAAgT;AAChT;AACA;AACA;AACA;AACA;AACqK;AACrK;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;;;;;;ACzBA,yC;;;;;;;;;;ACOA;QAEA;AADA,G;;;;;;;ACRA,0BAA0B,aAAa,0BAA0B,wBAAwB,iBAAiB,OAAO,YAAY;AAC7H;AACA,iBAAiB;AACjB,kE;;;;;;;;;;;ACHA;AACA;AACA;AACA;;AAEA,oDAAAP,CAAIQ,GAAJ,CAAQ,2DAAR;;AAEA,yDAAe,IAAI,2DAAJ,CAAW;AACxBC,UAAQ,CACN;AACEC,UAAM,GADR;AAEEnB,UAAM,MAFR;AAGEoB,eAAW,4DAAAC;AAHb,GADM,EAMN;AACEF,UAAM,mBADR;AAEEnB,UAAM,QAFR;AAGEoB,eAAW,8DAAAE;AAHb,GANM;AADgB,CAAX,CAAf,E;;;;;;;;;ACPA;AAAA;AACA,wBAAqT;AACrT;AACA;AACA;AACA;AACA;AACuK;AACvK;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;;;;;;ACzBA,yC;;;;;;;;;;;ACWA;AACA;AACA;QAEA;AADA,I;;;;;;;;;;;;;;;ACbA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;ACNA;AAAA;AACA,wBAAsV;AACtV;AACA;AACA;AACA;AACA;AACuK;AACvK;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;;;;;;ACzBA,yC;;;;;;;;;;;AC6HA;AACA;AACA;;AAEA,8M;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;ACjIA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AAAA;AAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;ACrEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEO,IAAMhB,QAAQ;AACnBiB,MAAA,yDADmB,EACfC,IAAA,yDADe,EACXC,IAAA,yDADW,EACPC,IAAA,yDADO,EACHC,IAAA,yDADG,EACCC,IAAA,yDADD,EACKC,IAAA,yDADL,EACSC,IAAA,yDADT,EACaC,IAAA,yDADb,EACiB,SAAS,6DAD1B,EACgCC,IAAA,0DADhC,EACoCC,IAAA,0DADpC,EACwCC,IAAA,yDADxC,EAC4CC,IAAA,0DAD5C,EACgDC,IAAA,0DADhD,EACoDC,IAAA,0DADpD,EACwDC,IAAA,0DADxD,EAC4DC,IAAA,0DAD5D,EACgE,SAAS,6DADzE,EAC+EC,IAAA,0DAD/E,EACmFC,IAAA,0DADnF,EACuFC,IAAA,0DAAAA;AADvF,CAAd,C;;;;;;;;ACtBP,IAAMnB,KAAK;AACToB,YAAU;AACRC,aAAS,SADD;AAERC,gBAAY,YAFJ;AAGRC,eAAW,WAHH;AAIRC,YAAQ,QAJA;AAKRC,WAAO;AALC;AADD,CAAX;AASA,yDAAezB,EAAf,E;;;;;;;;ACTA,IAAMC,KAAK;AACTmB,YAAU;AACRC,aAAS,SADD;AAERC,gBAAY,iBAFJ;AAGRC,eAAW,cAHH;AAIRC,YAAQ,iBAJA;AAKRC,WAAO;AALC;AADD,CAAX;AASA,yDAAexB,EAAf,E;;;;;;;;ACTA,IAAMC,KAAK;AACTkB,YAAU;AACRC,aAAS,SADD;AAERC,gBAAY,2BAFJ;AAGRC,eAAW,WAHH;AAIRC,YAAQ,aAJA;AAKRC,WAAO;AALC;AADD,CAAX;AASA,yDAAevB,EAAf,E;;;;;;;;ACTA,IAAMC,KAAK;AACTiB,YAAU;AACRC,aAAS,WADD;AAERC,gBAAY,0BAFJ;AAGRC,eAAW,UAHH;AAIRC,YAAQ,cAJA;AAKRC,WAAO;AALC;AADD,CAAX;AASA,yDAAetB,EAAf,E;;;;;;;;ACTA,IAAMC,KAAK;AACTgB,YAAU;AACRC,aAAS,UADD;AAERC,gBAAY,aAFJ;AAGRC,eAAW,UAHH;AAIRC,YAAQ,YAJA;AAKRC,WAAO;AALC;AADD,CAAX;AASA,yDAAerB,EAAf,E;;;;;;;;ACTA,IAAMC,KAAK;AACTe,YAAU;AACRC,aAAS,MADD;AAERC,gBAAY,MAFJ;AAGRC,eAAW,MAHH;AAIRC,YAAQ,MAJA;AAKRC,WAAO;AALC;AADD,CAAX;AASA,yDAAepB,EAAf,E;;;;;;;;ACTA,IAAMC,KAAK;AACTc,YAAU;AACRC,aAAS,UADD;AAERC,gBAAY,0BAFJ;AAGRC,eAAW,YAHH;AAIRC,YAAQ,YAJA;AAKRC,WAAO;AALC;AADD,CAAX;AASA,yDAAenB,EAAf,E;;;;;;;;ACTA,IAAMC,KAAK;AACTa,YAAU;AACRC,aAAS,UADD;AAERC,gBAAY,aAFJ;AAGRC,eAAW,WAHH;AAIRC,YAAQ,aAJA;AAKRC,WAAO;AALC;AADD,CAAX;AASA,yDAAelB,EAAf,E;;;;;;;;ACTA,IAAMC,KAAK;AACTY,YAAU;AACRC,aAAS,cADD;AAERC,gBAAY,iBAFJ;AAGRC,eAAW,iBAHH;AAIRC,YAAQ,oBAJA;AAKRC,WAAO;AALC;AADD,CAAX;AASA,yDAAejB,EAAf,E;;;;;;;;ACTA,IAAMG,KAAK;AACTS,YAAU;AACRC,aAAS,QADD;AAERC,gBAAY,YAFJ;AAGRC,eAAW,YAHH;AAIRC,YAAQ,cAJA;AAKRC,WAAO;AALC;AADD,CAAX;AASA,yDAAed,EAAf,E;;;;;;;;ACTA,IAAMD,KAAK;AACTU,YAAU;AACRC,aAAS,SADD;AAERC,gBAAY,sBAFJ;AAGRC,eAAW,YAHH;AAIRC,YAAQ,WAJA;AAKRC,WAAO;AALC;AADD,CAAX;AASA,yDAAef,EAAf,E;;;;;;;;;ACRA,IAAMD,KAAK;AACPW,cAAU;AACNC,iBAAS,UADH;AAENC,oBAAY,MAFN;AAGNC,mBAAW,UAHL;AAINC,gBAAQ,QAJF;AAKNC,eAAO;AALD;AADH,CAAX;;AAUA,yDAAehB,EAAf,E;;;;;;;;ACXA,IAAMiB,OAAO;AACXN,YAAU;AACRC,aAAS,SADD;AAERC,gBAAY,0BAFJ;AAGRC,eAAW,UAHH;AAIRC,YAAQ,cAJA;AAKRC,WAAO;AALC;AADC,CAAb;AASA,yDAAeC,IAAf,E;;;;;;;;ACTA,IAAMd,KAAK;AACTQ,YAAU;AACRC,aAAS,WADD;AAERC,gBAAY,kBAFJ;AAGRC,eAAW,WAHH;AAIRC,YAAQ,WAJA;AAKRC,WAAO;AALC;AADD,CAAX;AASA,yDAAeb,EAAf,E;;;;;;;;ACTA,IAAMC,KAAK;AACTO,YAAU;AACRC,aAAS,SADD;AAERC,gBAAY,eAFJ;AAGRC,eAAW,eAHH;AAIRC,YAAQ,cAJA;AAKRC,WAAO;AALC;AADD,CAAX;AASA,yDAAeZ,EAAf,E;;;;;;;;ACTA,IAAMG,KAAK;AACTI,YAAU;AACRC,aAAS,WADD;AAERC,gBAAY,QAFJ;AAGRC,eAAW,OAHH;AAIRC,YAAQ,SAJA;AAKRC,WAAO;AALC;AADD,CAAX;AASA,yDAAeT,EAAf,E;;;;;;;;ACTA,IAAMW,KAAK;AACTP,YAAU;AACRC,aAAS,KADD;AAERC,gBAAY,MAFJ;AAGRC,eAAW,IAHH;AAIRC,YAAQ,KAJA;AAKRC,WAAO;AALC;AADD,CAAX;AASA,yDAAeE,EAAf,E;;;;;;;;ACTA,IAAMC,OAAO;AACXR,YAAU;AACRC,aAAS,MADD;AAERC,gBAAY,IAFJ;AAGRC,eAAW,IAHH;AAIRC,YAAQ,MAJA;AAKRC,WAAO;AALC;AADC,CAAb;AASA,yDAAeG,IAAf,E;;;;;;;;ACTA,IAAMb,KAAK;AACPK,YAAU;AACRC,aAAS,SADD;AAERC,gBAAY,YAFJ;AAGRC,eAAW,aAHH;AAIRC,YAAQ,QAJA;AAKRC,WAAO;AALC;AADH,CAAX;AASE,yDAAeV,EAAf,E;;;;;;;;ACTF,IAAME,KAAK;AACTG,YAAU;AACRC,aAAS,WADD;AAERC,gBAAY,UAFJ;AAGRC,eAAW,eAHH;AAIRC,YAAQ,UAJA;AAKRC,WAAO;AALC;AADD,CAAX;AASA,yDAAeR,EAAf,E;;;;;;;;ACTA,IAAMC,KAAK;AACTE,YAAU;AACRC,aAAS,UADD;AAERC,gBAAY,SAFJ;AAGRC,eAAW,QAHH;AAIRC,YAAQ,YAJA;AAKRC,WAAO;AALC;AADD,CAAX;AASA,yDAAeP,EAAf,E;;;;;;;;ACTA,IAAMC,KAAK;AACRC,YAAU;AACRC,aAAS,KADD;AAERC,gBAAY,IAFJ;AAGRC,eAAW,IAHH;AAIRC,YAAQ,MAJA;AAKRC,WAAO;AALC;AADF,CAAX;AASC,yDAAeN,EAAf,E;;;;;;;ACVD,0BAA0B,aAAa,0BAA0B,wBAAwB,iBAAiB,qBAAqB,YAAY,4BAA4B,YAAY,qBAAqB,wBAAwB,6BAA6B,kBAAkB,wBAAwB,+BAA+B,wFAAwF,mBAAmB,kCAAkC,mBAAmB,0IAA0I,mBAAmB,kCAAkC,mBAAmB,yJAAyJ,OAAO,wCAAwC,YAAY,mBAAmB,kCAAkC,mBAAmB,iGAAiG,OAAO,2CAA2C,YAAY,mBAAmB,kCAAkC,mBAAmB,6HAA6H,OAAO,0EAA0E,YAAY,mBAAmB,kCAAkC,mBAAmB,8MAA8M,OAAO,qDAAqD,YAAY,mBAAmB,kCAAkC,mBAAmB,+FAA+F,wBAAwB,YAAY,+BAA+B,4HAA4H,iBAAiB,mCAAmC,YAAY,oBAAoB,oEAAoE,uBAAuB,YAAY,0DAA0D,GAAG,UAAU,2BAA2B,UAAU,8BAA8B,uBAAuB,YAAY,oBAAoB,2MAA2M,+BAA+B,iHAAiH,iBAAiB,2CAA2C,YAAY,2BAA2B,wBAAwB,uBAAuB,6FAA6F,0BAA0B,8DAA8D,mBAAmB,2EAA2E,wBAAwB,+BAA+B,8GAA8G,iBAAiB,yCAAyC,YAAY,2BAA2B,wBAAwB,uBAAuB,yDAAyD,mBAAmB,sGAAsG,4BAA4B,aAAa,gBAAgB;AACrvH,oCAAoC,aAAa,0BAA0B,wBAAwB,iBAAiB,mBAAmB,UAAU,6BAA6B,+BAA+B,cAAc,aAAa,0BAA0B,wBAAwB,iBAAiB,mBAAmB,UAAU,6BAA6B,8BAA8B,cAAc,aAAa,0BAA0B,wBAAwB,iBAAiB,mBAAmB,UAAU,6BAA6B,sBAAsB,cAAc,aAAa,0BAA0B,wBAAwB,iBAAiB,mBAAmB,UAAU,6BAA6B,sBAAsB,cAAc,aAAa,0BAA0B,wBAAwB,iBAAiB,mBAAmB,UAAU,2BAA2B,IAAI,cAAc,aAAa,0BAA0B,wBAAwB,iBAAiB,mBAAmB,UAAU,6BAA6B,yBAAyB;AAC1iC,iBAAiB;AACjB,kE;;;;;;;;ACHA;AAAA;AACA,wBAAsV;AACtV;AACA;AACA;AACA;AACA;AACuK;AACvK;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;;;;;;ACzBA,yC;;;;;;;;;;;ACwEA;AACA;;AAEA;AACA,8M;;;;;;;AC5EA,0BAA0B,aAAa,0BAA0B,wBAAwB,iBAAiB,4BAA4B,gBAAgB,YAAY,8BAA8B,aAAa,mBAAmB,sIAAsI,8BAA8B,UAAU,8BAA8B,sFAAsF,wBAAwB,YAAY,yBAAyB,0HAA0H,iBAAiB,sDAAsD,aAAa,sBAAsB,sEAAsE,wBAAwB,uEAAuE,0BAA0B,qEAAqE,8BAA8B,qDAAqD,4BAA4B,sBAAsB,yGAAyG,OAAO,2CAA2C,6GAA6G,OAAO,wCAAwC,qSAAqS,OAAO,mCAAmC,oJAAoJ,OAAO,wDAAwD,mIAAmI,yBAAyB,YAAY,wBAAwB,uHAAuH,iBAAiB,mDAAmD,aAAa,qBAAqB,4DAA4D,iCAAiC,4CAA4C,4FAA4F,qBAAqB,4CAA4C,iBAAiB,yCAAyC,aAAa,oBAAoB,qDAAqD,wBAAwB,YAAY,sDAAsD,MAAM,0BAA0B,2BAA2B;AAC7+F,oCAAoC,aAAa,0BAA0B,wBAAwB,iBAAiB,kBAAkB,YAAY,2BAA2B,YAAY,kBAAkB,MAAM,cAAc,aAAa,0BAA0B,wBAAwB,wBAAwB,oCAAoC,sBAAsB,IAAI,cAAc,aAAa,0BAA0B,wBAAwB,wBAAwB,iCAAiC,sBAAsB,IAAI,cAAc,aAAa,0BAA0B,wBAAwB,wBAAwB,gCAAgC,sBAAsB,IAAI,cAAc,aAAa,0BAA0B,wBAAwB,wBAAwB,iCAAiC,sBAAsB,IAAI,cAAc,aAAa,0BAA0B,wBAAwB,wBAAwB,kCAAkC,sBAAsB,IAAI;AACp/B,iBAAiB;AACjB,kE;;;;;;;;ACHA;AAAA;AACA,wBAAsV;AACtV;AACA;AACA;AACA;AACA;AACuK;AACvK;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;;;;;;ACzBA,yC;;;;;;;;;;;AC2EA;AACA;;AAEA;AACA,8M;;;;;;;AC/EA,0BAA0B,aAAa,0BAA0B,wBAAwB,iBAAiB,4BAA4B,gBAAgB,YAAY,4BAA4B,YAAY,uBAAuB,wBAAwB,4BAA4B,YAAY,6BAA6B,YAAY,qBAAqB,YAAY,mBAAmB,oIAAoI,uBAAuB,gEAAgE,kBAAkB,8BAA8B,6BAA6B,YAAY,yBAAyB,0HAA0H,iBAAiB,sDAAsD,YAAY,kBAAkB,aAAa,wBAAwB,oEAAoE,6BAA6B,6CAA6C,sBAAsB,uEAAuE,kBAAkB,aAAa,0BAA0B,qEAAqE,8BAA8B,wDAAwD,4BAA4B,wBAAwB,uHAAuH,iBAAiB,mDAAmD,YAAY,kBAAkB,aAAa,qBAAqB,6DAA6D,kBAAkB,aAAa,iCAAiC,8CAA8C,4BAA4B,4BAA4B,6GAA6G,iBAAiB,oCAAoC,YAAY,0BAA0B,UAAU,6BAA6B,6CAA6C,oBAAoB,mCAAmC,4BAA4B,2BAA2B,gFAAgF,sBAAsB,2EAA2E,OAAO,2CAA2C,iFAAiF,0BAA0B,OAAO,wCAAwC,6EAA6E,8IAA8I,uDAAuD,OAAO,mCAAmC,wIAAwI,+DAA+D,OAAO,wDAAwD;AACzuG;AACA,iBAAiB;AACjB,kE;;;;;;;;ACHA;AAAA;AACA,wBAAsV;AACtV;AACA;AACA;AACA;AACA;AACuK;AACvK;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;;;;;;ACzBA,yC;;;;;;;;;;;AC0FA;AACA;;AAEA;AACA,8M;;;;;;;AC9FA,0BAA0B,aAAa,0BAA0B,wBAAwB,iBAAiB,4BAA4B,gBAAgB,YAAY,sBAAsB,aAAa,0BAA0B,iKAAiK,8BAA8B,4FAA4F,uBAAuB,kCAAkC,sBAAsB,6EAA6E,0BAA0B,UAAU,OAAO,2CAA2C,2FAA2F,0BAA0B,UAAU,OAAO,wCAAwC,2FAA2F,0BAA0B,+LAA+L,+BAA+B,UAAU,kCAAkC,sBAAsB,sBAAsB,kCAAkC,sBAAsB,sBAAsB,kCAAkC,sBAAsB,+DAA+D,0BAA0B,UAAU,OAAO,wDAAwD,yGAAyG,wBAAwB,YAAY,yBAAyB,0HAA0H,iBAAiB,sDAAsD,YAAY,kBAAkB,aAAa,sBAAsB,uEAAuE,wBAAwB,wEAAwE,kBAAkB,aAAa,0BAA0B,sEAAsE,kBAAkB,aAAa,8BAA8B,uDAAuD,4BAA4B,wBAAwB,uHAAuH,iBAAiB,mDAAmD,YAAY,kBAAkB,aAAa,qBAAqB,6DAA6D,kBAAkB,aAAa,iCAAiC,8CAA8C,4BAA4B,2BAA2B,4EAA4E,qBAAqB,4CAA4C,iBAAiB,mCAAmC,aAAa,yBAAyB,iCAAiC,0BAA0B,2BAA2B;AAC7vG,oCAAoC,aAAa,0BAA0B,wBAAwB,iBAAiB,2BAA2B,YAAY,6BAA6B,YAAY,kBAAkB,MAAM,cAAc,aAAa,0BAA0B,wBAAwB,iBAAiB,+BAA+B,UAAU,kCAAkC,sBAAsB,sBAAsB,kCAAkC,sBAAsB,sBAAsB,kCAAkC,sBAAsB,IAAI,cAAc,aAAa,0BAA0B,wBAAwB,iBAAiB,+BAA+B,UAAU,kCAAkC,sBAAsB,sBAAsB,kCAAkC,sBAAsB,sBAAsB,kCAAkC,sBAAsB,IAAI;AAC15B,iBAAiB;AACjB,kE;;;;;;;;ACHA;AAAA;AACA,wBAAsV;AACtV;AACA;AACA;AACA;AACA;AACuK;AACvK;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;;;;;;ACzBA,yC;;;;;;;;;;;ACkEA;AACA;;AAEA,kN;;;;;;;ACrEA,0BAA0B,aAAa,0BAA0B,wBAAwB,iBAAiB,4BAA4B,iBAAiB,YAAY,OAAO,sBAAsB,YAAY,OAAO,oBAAoB,WAAW,OAAO,iBAAiB,6DAA6D,OAAO,aAAa,iGAAiG,OAAO,kBAAkB,aAAa,OAAO,cAAc,UAAU,OAAO,6CAA6C,UAAU,oCAAoC,sBAAsB,0EAA0E,OAAO,cAAc,UAAU,wCAAwC,sBAAsB,qGAAqG,OAAO,gBAAgB,UAAU,OAAO,mCAAmC,UAAU,gCAAgC,sBAAsB,iHAAiH,OAAO,eAAe,UAAU,OAAO,0DAA0D,UAAU,kCAAkC,sBAAsB,+GAA+G,OAAO,oBAAoB,YAAY,OAAO,6BAA6B,WAAW,OAAO,yBAAyB,uEAAuE,qBAAqB,kEAAkE,iBAAiB,gDAAgD,WAAW,sBAAsB,2DAA2D,uBAAuB,aAAa,wBAAwB,yDAAyD,oCAAoC,yFAAyF,8BAA8B,wIAAwI,gBAAgB,UAAU,aAAa,8BAA8B,mFAAmF,cAAc,4BAA4B,OAAO,4BAA4B,WAAW,OAAO,wBAAwB,sEAAsE,qBAAqB,gEAAgE,iBAAiB,6CAA6C,WAAW,oCAAoC,yEAAyE,qBAAqB,sDAAsD,mCAAmC,6CAA6C,sDAAsD,OAAO,yBAAyB,WAAW,OAAO,qBAAqB,mEAAmE,qBAAqB,sBAAsB,OAAO,0BAA0B,8DAA8D,OAAO,mBAAmB,4CAA4C,gBAAgB,mCAAmC,aAAa,8BAA8B,iFAAiF,sCAAsC,OAAO,sBAAsB;AACzlH,oCAAoC,aAAa,0BAA0B,wBAAwB,iBAAiB,OAAO,qBAAqB,YAAY,OAAO,iBAAiB,IAAI;AACxL,iBAAiB;AACjB,kE;;;;;;;;ACHA;AAAA;AACA,wBAAsV;AACtV;AACA;AACA;AACA;AACA;AACuK;AACvK;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;;;;;;ACzBA,yC;;;;;;;;;;;AC0FA;AACA;;AAEA;AACA,8M;;;;;;;AC9FA,0BAA0B,aAAa,0BAA0B,wBAAwB,iBAAiB,4BAA4B,gBAAgB,YAAY,sBAAsB,aAAa,0BAA0B,iKAAiK,8BAA8B,4FAA4F,wBAAwB,kCAAkC,sBAAsB,6EAA6E,0BAA0B,UAAU,OAAO,2CAA2C,2FAA2F,0BAA0B,UAAU,OAAO,sCAAsC,2FAA2F,0BAA0B,yLAAyL,0BAA0B,UAAU,OAAO,wDAAwD,gGAAgG,uBAAuB,YAAY,yBAAyB,0HAA0H,iBAAiB,+BAA+B,YAAY,kBAAkB,aAAa,sBAAsB,uEAAuE,wBAAwB,wEAAwE,kBAAkB,aAAa,0BAA0B,sEAAsE,kBAAkB,aAAa,8BAA8B,uDAAuD,4BAA4B,wBAAwB,uHAAuH,iBAAiB,8BAA8B,YAAY,kBAAkB,aAAa,qBAAqB,6DAA6D,kBAAkB,aAAa,iCAAiC,8CAA8C,4BAA4B,2BAA2B,4EAA4E,qBAAqB,4CAA4C,iBAAiB,oBAAoB,aAAa,yBAAyB,iCAAiC,0BAA0B,2BAA2B;AACr3F,oCAAoC,aAAa,0BAA0B,wBAAwB,iBAAiB,2BAA2B,YAAY,6BAA6B,YAAY,kBAAkB,MAAM,cAAc,aAAa,0BAA0B,wBAAwB,iBAAiB,+BAA+B,UAAU,kCAAkC,sBAAsB,sBAAsB,kCAAkC,sBAAsB,sBAAsB,kCAAkC,sBAAsB,IAAI,cAAc,aAAa,0BAA0B,wBAAwB,iBAAiB,+BAA+B,UAAU,kCAAkC,sBAAsB,sBAAsB,kCAAkC,sBAAsB,sBAAsB,kCAAkC,sBAAsB,IAAI,cAAc,aAAa,0BAA0B,wBAAwB,iBAAiB,+BAA+B,UAAU,kCAAkC,sBAAsB,sBAAsB,kCAAkC,sBAAsB,sBAAsB,kCAAkC,sBAAsB,IAAI;AACzvC,iBAAiB;AACjB,kE;;;;;;;;ACHA;AAAA;AACA,yBAAsV;AACtV;AACA;AACA;AACA;AACA;AACuK;AACvK;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;;;;;;ACzBA,yC;;;;;;;;;;;ACwEA;AACA;AACA;AACA,8M;;;;;;;AC3EA,0BAA0B,aAAa,0BAA0B,wBAAwB,iBAAiB,4BAA4B,gBAAgB,YAAY,8BAA8B,aAAa,mBAAmB,sIAAsI,8BAA8B,UAAU,8BAA8B,sFAAsF,wBAAwB,YAAY,yBAAyB,0HAA0H,iBAAiB,sDAAsD,aAAa,sBAAsB,sEAAsE,wBAAwB,uEAAuE,0BAA0B,qEAAqE,8BAA8B,qDAAqD,4BAA4B,sBAAsB,+HAA+H,OAAO,2CAA2C,6GAA6G,OAAO,wCAAwC,qSAAqS,OAAO,mCAAmC,oJAAoJ,OAAO,wDAAwD,6GAA6G,yBAAyB,YAAY,wBAAwB,uHAAuH,iBAAiB,mDAAmD,aAAa,qBAAqB,4DAA4D,iCAAiC,4CAA4C,4FAA4F,qBAAqB,4CAA4C,iBAAiB,yCAAyC,aAAa,oBAAoB,qDAAqD,wBAAwB,YAAY,sDAAsD,MAAM,0BAA0B,2BAA2B;AAC7+F,oCAAoC,aAAa,0BAA0B,wBAAwB,iBAAiB,kBAAkB,YAAY,2BAA2B,YAAY,kBAAkB,MAAM,cAAc,aAAa,0BAA0B,wBAAwB,wBAAwB,oCAAoC,sBAAsB,IAAI,cAAc,aAAa,0BAA0B,wBAAwB,wBAAwB,iCAAiC,sBAAsB,IAAI,cAAc,aAAa,0BAA0B,wBAAwB,wBAAwB,gCAAgC,sBAAsB,IAAI,cAAc,aAAa,0BAA0B,wBAAwB,wBAAwB,iCAAiC,sBAAsB,IAAI,cAAc,aAAa,0BAA0B,wBAAwB,wBAAwB,kCAAkC,sBAAsB,IAAI;AACp/B,iBAAiB;AACjB,kE;;;;;;;ACHA,0BAA0B,aAAa,0BAA0B,wBAAwB,iBAAiB,2BAA2B,YAAY,0BAA0B,iCAAiC,YAAY,yBAAyB,iCAAiC,gBAAgB;AAClS;AACA,iBAAiB;AACjB,kE;;;;;;;;ACHA;AAAA;AACA,yBAAqT;AACrT;AACA;AACA;AACA;AACA;AACuK;AACvK;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;;;;;;ACzBA,yC;;;;;;;;;;ACqEA;AACA;QAEA;AADA,I;;;;;;;ACvEA,0BAA0B,aAAa,0BAA0B,wBAAwB,iBAAiB,mBAAmB,uDAAuD,oBAAoB,qDAAqD,uBAAuB,YAAY,sBAAsB,oBAAoB,OAAO,8BAA8B,YAAY,8BAA8B,YAAY,OAAO,gCAA6D,iFAAiF,sBAAsB,oBAAoB,OAAO,2BAA2B,YAAY,8BAA8B,YAAY,OAAO,gCAA0D,8EAA8E,sBAAsB,oBAAoB,OAAO,wBAAwB,YAAY,8BAA8B,YAAY,OAAO,gCAAuD,2EAA2E,sBAAsB,oBAAoB,OAAO,yBAAyB,YAAY,8BAA8B,YAAY,OAAO,gCAAwD,4EAA4E,sBAAsB,oBAAoB,OAAO,uBAAuB,YAAY,8BAA8B,YAAY,OAAO,gCAAsD,0EAA0E,sBAAsB,oBAAoB,OAAO,6BAA6B,YAAY,8BAA8B,YAAY,OAAO,gCAA4D,gFAAgF,sBAAsB,oBAAoB,OAAO,+BAA+B,YAAY,8BAA8B,YAAY,OAAO,gCAA8D;AACrkE,oCAAoC,aAAa,0BAA0B,wBAAwB,eAAe,OAAO,4EAA4E,YAAY,aAAa,yDAAyD,QAAQ,gWAAgW,IAAI,cAAc,aAAa,0BAA0B,wBAAwB,iBAAiB,mBAAmB,YAAY,OAAO,gCAAqC,IAAI;AAChzB,iBAAiB;AACjB,kE;;;;;;ACHA,uF;;;;;;ACAA,oF;;;;;;ACAA,iF;;;;;;ACAA,kF;;;;;;ACAA,gF;;;;;;ACAA,sF;;;;;;ACAA,wF;;;;;;ACAA,uE","file":"static/js/app.e2c878cafbb20641fa24.js","sourcesContent":["import yaml from 'js-yaml';\nimport { PERSON } from '../../resume/data.yml';\nimport { terms } from '../terms';\n\n// Called by templates to decrease redundancy\nfunction getVueOptions (name) {\n let opt = {\n name: name,\n data () {\n return {\n person: yaml.load(PERSON),\n terms: terms\n };\n },\n computed: {\n lang () {\n return this.terms[this.person.lang];\n }\n }\n };\n return opt;\n}\n\nexport { getVueOptions };\n\n\n\n// WEBPACK FOOTER //\n// ./src/resumes/options.js","// The Vue build version to load with the `import` command\n// (runtime-only or standalone) has been set in webpack.base.conf with an alias.\nimport Vue from 'vue';\nimport App from './App';\nimport router from './router';\n\nVue.config.productionTip = false;\n\n/* eslint-disable no-new */\nnew Vue({\n el: '#app',\n router,\n template: '',\n components: {\n App\n }\n});\n\n\n\n// WEBPACK FOOTER //\n// ./src/main.js","function injectStyle (ssrContext) {\n require(\"!!../node_modules/extract-text-webpack-plugin/dist/loader.js?{\\\"omit\\\":1,\\\"remove\\\":true}!vue-style-loader!css-loader?{\\\"minimize\\\":true,\\\"sourceMap\\\":true}!../node_modules/vue-loader/lib/style-compiler/index?{\\\"vue\\\":true,\\\"id\\\":\\\"data-v-a80551ac\\\",\\\"scoped\\\":false,\\\"hasInlineConfig\\\":false}!../node_modules/vue-loader/lib/selector?type=styles&index=0!./App.vue\")\n}\nvar normalizeComponent = require(\"!../node_modules/vue-loader/lib/component-normalizer\")\n/* script */\nimport __vue_script__ from \"!!babel-loader!../node_modules/vue-loader/lib/selector?type=script&index=0!./App.vue\"\n/* template */\nimport __vue_template__ from \"!!../node_modules/vue-loader/lib/template-compiler/index?{\\\"id\\\":\\\"data-v-a80551ac\\\",\\\"hasScoped\\\":false,\\\"buble\\\":{\\\"transforms\\\":{}}}!../node_modules/vue-loader/lib/selector?type=template&index=0!./App.vue\"\n/* template functional */\n var __vue_template_functional__ = false\n/* styles */\nvar __vue_styles__ = injectStyle\n/* scopeId */\nvar __vue_scopeId__ = null\n/* moduleIdentifier (server only) */\nvar __vue_module_identifier__ = null\nvar Component = normalizeComponent(\n __vue_script__,\n __vue_template__,\n __vue_template_functional__,\n __vue_styles__,\n __vue_scopeId__,\n __vue_module_identifier__\n)\n\nexport default Component.exports\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./src/App.vue\n// module id = 17\n// module chunks = 0","// removed by extract-text-webpack-plugin\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/extract-text-webpack-plugin/dist/loader.js?{\"omit\":1,\"remove\":true}!./node_modules/vue-style-loader!./node_modules/css-loader?{\"minimize\":true,\"sourceMap\":true}!./node_modules/vue-loader/lib/style-compiler?{\"vue\":true,\"id\":\"data-v-a80551ac\",\"scoped\":false,\"hasInlineConfig\":false}!./node_modules/vue-loader/lib/selector.js?type=styles&index=0!./src/App.vue\n// module id = 18\n// module chunks = 0","\n\n\n\n\n\n\n\n// WEBPACK FOOTER //\n// src/App.vue","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{attrs:{\"id\":\"app\"}},[_c('router-view')],1)}\nvar staticRenderFns = []\nvar esExports = { render: render, staticRenderFns: staticRenderFns }\nexport default esExports\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/vue-loader/lib/template-compiler?{\"id\":\"data-v-a80551ac\",\"hasScoped\":false,\"buble\":{\"transforms\":{}}}!./node_modules/vue-loader/lib/selector.js?type=template&index=0!./src/App.vue\n// module id = 21\n// module chunks = 0","import Vue from 'vue';\nimport Router from 'vue-router';\nimport Resume from '@/pages/resume';\nimport Home from '@/pages/home';\n\nVue.use(Router);\n\nexport default new Router({\n routes: [\n {\n path: '/',\n name: 'home',\n component: Home\n },\n {\n path: '/resume/:resumeid',\n name: 'resume',\n component: Resume\n }\n ]\n});\n\n\n\n// WEBPACK FOOTER //\n// ./src/router/index.js","function injectStyle (ssrContext) {\n require(\"!!../../node_modules/extract-text-webpack-plugin/dist/loader.js?{\\\"omit\\\":1,\\\"remove\\\":true}!vue-style-loader!css-loader?{\\\"minimize\\\":true,\\\"sourceMap\\\":true}!../../node_modules/vue-loader/lib/style-compiler/index?{\\\"vue\\\":true,\\\"id\\\":\\\"data-v-a4e9d902\\\",\\\"scoped\\\":true,\\\"hasInlineConfig\\\":false}!../../node_modules/vue-loader/lib/selector?type=styles&index=0!./resume.vue\")\n}\nvar normalizeComponent = require(\"!../../node_modules/vue-loader/lib/component-normalizer\")\n/* script */\nimport __vue_script__ from \"!!babel-loader!../../node_modules/vue-loader/lib/selector?type=script&index=0!./resume.vue\"\n/* template */\nimport __vue_template__ from \"!!../../node_modules/vue-loader/lib/template-compiler/index?{\\\"id\\\":\\\"data-v-a4e9d902\\\",\\\"hasScoped\\\":true,\\\"buble\\\":{\\\"transforms\\\":{}}}!../../node_modules/vue-loader/lib/selector?type=template&index=0!./resume.vue\"\n/* template functional */\n var __vue_template_functional__ = false\n/* styles */\nvar __vue_styles__ = injectStyle\n/* scopeId */\nvar __vue_scopeId__ = \"data-v-a4e9d902\"\n/* moduleIdentifier (server only) */\nvar __vue_module_identifier__ = null\nvar Component = normalizeComponent(\n __vue_script__,\n __vue_template__,\n __vue_template_functional__,\n __vue_styles__,\n __vue_scopeId__,\n __vue_module_identifier__\n)\n\nexport default Component.exports\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./src/pages/resume.vue\n// module id = 24\n// module chunks = 0","// removed by extract-text-webpack-plugin\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/extract-text-webpack-plugin/dist/loader.js?{\"omit\":1,\"remove\":true}!./node_modules/vue-style-loader!./node_modules/css-loader?{\"minimize\":true,\"sourceMap\":true}!./node_modules/vue-loader/lib/style-compiler?{\"vue\":true,\"id\":\"data-v-a4e9d902\",\"scoped\":true,\"hasInlineConfig\":false}!./node_modules/vue-loader/lib/selector.js?type=styles&index=0!./src/pages/resume.vue\n// module id = 25\n// module chunks = 0","\n\n\n\n\n\n\n\n// WEBPACK FOOTER //\n// src/pages/resume.vue","// If you create a new resume, import it here:\nimport './material-dark.vue';\nimport './left-right.vue';\nimport './oblique.vue';\nimport './side-bar.vue';\nimport './purple.vue';\nimport './side-bar-rtl.vue';\nimport './left-right-rtl.vue';\n\n\n\n// WEBPACK FOOTER //\n// ./src/resumes/resumes.js","function injectStyle (ssrContext) {\n require(\"!!../../node_modules/extract-text-webpack-plugin/dist/loader.js?{\\\"omit\\\":1,\\\"remove\\\":true}!vue-style-loader!css-loader?{\\\"minimize\\\":true,\\\"sourceMap\\\":true}!../../node_modules/vue-loader/lib/style-compiler/index?{\\\"vue\\\":true,\\\"id\\\":\\\"data-v-31798ddc\\\",\\\"scoped\\\":true,\\\"hasInlineConfig\\\":false}!less-loader?{\\\"sourceMap\\\":true}!../../node_modules/vue-loader/lib/selector?type=styles&index=0!./material-dark.vue\")\n}\nvar normalizeComponent = require(\"!../../node_modules/vue-loader/lib/component-normalizer\")\n/* script */\nimport __vue_script__ from \"!!babel-loader!../../node_modules/vue-loader/lib/selector?type=script&index=0!./material-dark.vue\"\n/* template */\nimport __vue_template__ from \"!!../../node_modules/vue-loader/lib/template-compiler/index?{\\\"id\\\":\\\"data-v-31798ddc\\\",\\\"hasScoped\\\":true,\\\"buble\\\":{\\\"transforms\\\":{}}}!../../node_modules/vue-loader/lib/selector?type=template&index=0!./material-dark.vue\"\n/* template functional */\n var __vue_template_functional__ = false\n/* styles */\nvar __vue_styles__ = injectStyle\n/* scopeId */\nvar __vue_scopeId__ = \"data-v-31798ddc\"\n/* moduleIdentifier (server only) */\nvar __vue_module_identifier__ = null\nvar Component = normalizeComponent(\n __vue_script__,\n __vue_template__,\n __vue_template_functional__,\n __vue_styles__,\n __vue_scopeId__,\n __vue_module_identifier__\n)\n\nexport default Component.exports\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./src/resumes/material-dark.vue\n// module id = 28\n// module chunks = 0","// removed by extract-text-webpack-plugin\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/extract-text-webpack-plugin/dist/loader.js?{\"omit\":1,\"remove\":true}!./node_modules/vue-style-loader!./node_modules/css-loader?{\"minimize\":true,\"sourceMap\":true}!./node_modules/vue-loader/lib/style-compiler?{\"vue\":true,\"id\":\"data-v-31798ddc\",\"scoped\":true,\"hasInlineConfig\":false}!./node_modules/less-loader/dist/cjs.js?{\"sourceMap\":true}!./node_modules/vue-loader/lib/selector.js?type=styles&index=0!./src/resumes/material-dark.vue\n// module id = 29\n// module chunks = 0","\n\n\n\n\n\n\n\n\n// WEBPACK FOOTER //\n// src/resumes/material-dark.vue","/* #*/ export const PERSON = `\nname:\n first: John\n middle:\n last: Doe\nabout: Hi, my name is John Doe. I\"m just about the most boring type of person you could\n possibly imagine. I like collecting leaves from the tree in my back yard and documenting\n each time I eat a peanut that is non-uniform. I am not a robot. Please hire me.\nposition: Software Developer\n\nbirth:\n year: 1990\n location: New York\n\nexperience:\n- company: Company A\n position: Developer\n timeperiod: since January 2016\n description: Programming and watching cute cat videos.\n\n- company: Company B\n position: Frontend Developer\n timeperiod: January 2015 - December 2015\n description: Fulfillment of extremely important tasks.\n\n- company: Company C\n position: Trainee\n timeperiod: March 2014 - December 2014\n description: Making coffee and baking cookies.\n\neducation:\n- degree: Master of Arts\n timeperiod: March 2012 - December 2013\n description: Major in Hacking and Computer Penetration, University A, New York, USA.\n\n- degree: Bachelor of Science\n timeperiod: March 2009 - December 2011\n description: Major in Engineering, University B, Los Angeles, USA.\n\n# skill level goes 0 to 100\nskills:\n- name: HTML5\n level: 99\n- name: CSS3\n level: 95\n- name: JavaScript\n level: 97\n- name: Node.js\n level: 93\n- name: Angular 2\n level: 60\n- name: TypeScript\n level: 80\n- name: ES.Next\n level: 70\n- name: Docker\n level: 99\nknowledge: Also proficient in Adobe Photoshop and Illustrator, grew up bilingual\n (English and Klingon).\n\ncontact:\n email: john.doe@email.com\n phone: 0123 456789\n street: 1234 Broadway\n city: New York\n website: johndoe.com\n github: johnyD\n# en, de, fr, pt, ca, cn, it, es, th, pt-br, ru, sv, id, hu, pl, ja, nl, he, zh-tw, lt, ko\nlang: en\n`\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./resume/data.yml\n// module id = 57\n// module chunks = 0","import en from './lang/en';\nimport de from './lang/de';\nimport fr from './lang/fr';\nimport pt from './lang/pt';\nimport ca from './lang/ca';\nimport cn from './lang/cn';\nimport it from './lang/it';\nimport es from './lang/es';\nimport th from './lang/th';\nimport id from './lang/id';\nimport sv from './lang/sv';\nimport ru from './lang/ru';\nimport ptbr from './lang/pt-br';\nimport hu from './lang/hu';\nimport pl from './lang/pl';\nimport he from './lang/he';\nimport ja from './lang/ja';\nimport zhtw from './lang/zh-tw';\nimport nl from './lang/nl';\nimport lt from './lang/lt';\nimport tr from './lang/tr';\nimport ko from './lang/ko';\n\nexport const terms = {\n en, de, fr, pt, ca, cn, it, es, th, 'pt-br': ptbr, ru, sv, id, hu, pl, ja, nl, he, 'zh-tw': zhtw, lt, tr, ko\n};\n\n\n\n// WEBPACK FOOTER //\n// ./src/terms.js","/* eslint-disable */\nconst en = {\n headings: {\n contact: 'Contact',\n experience: 'Experience',\n education: 'Education',\n skills: 'Skills',\n about: 'About me'\n }\n};\nexport default en;\n\n\n\n// WEBPACK FOOTER //\n// ./src/lang/en.js","/* eslint-disable */\nconst de = {\n headings: {\n contact: 'Kontakt',\n experience: 'Berufserfahrung',\n education: 'Schulbildung',\n skills: 'Qualifikationen',\n about: 'Über mich' \n }\n};\nexport default de;\n\n\n\n// WEBPACK FOOTER //\n// ./src/lang/de.js","/* eslint-disable */\nconst fr = {\n headings: {\n contact: 'Contact',\n experience: 'Expérience professionelle',\n education: 'Formation',\n skills: 'Compétences',\n about: 'À propos de moi' \n }\n};\nexport default fr;\n\n\n\n// WEBPACK FOOTER //\n// ./src/lang/fr.js","/* eslint-disable */\nconst pt = {\n headings: {\n contact: 'Contactos',\n experience: 'Experiência Profissional',\n education: 'Educação',\n skills: 'Competências',\n about: 'Sobre mim'\n }\n};\nexport default pt;\n\n\n\n// WEBPACK FOOTER //\n// ./src/lang/pt.js","/* eslint-disable */\nconst ca = {\n headings: {\n contact: 'Contacte',\n experience: 'Experiència',\n education: 'Educació',\n skills: 'Habilitats',\n about: 'Sobre mi'\n }\n};\nexport default ca;\n\n\n\n// WEBPACK FOOTER //\n// ./src/lang/ca.js","/* eslint-disable */\nconst cn = {\n headings: {\n contact: '联系方式',\n experience: '工作经历',\n education: '教育经历',\n skills: '技能专长',\n about: '自我介绍'\n }\n};\nexport default cn;\n\n\n\n// WEBPACK FOOTER //\n// ./src/lang/cn.js","/* eslint-disable */\nconst it = {\n headings: {\n contact: 'Contatti',\n experience: 'Esperienza professionale',\n education: 'Formazione',\n skills: 'Competenze',\n about: 'Su di me'\n }\n};\nexport default it;\n\n\n\n// WEBPACK FOOTER //\n// ./src/lang/it.js","/* eslint-disable */\nconst es = {\n headings: {\n contact: 'Contacto',\n experience: 'Experiencia',\n education: 'Educación',\n skills: 'Habilidades',\n about: 'Sobre mi'\n }\n};\nexport default es;\n\n\n\n// WEBPACK FOOTER //\n// ./src/lang/es.js","/* eslint-disable */\nconst th = {\n headings: {\n contact: 'ข้อมูลติดต่อ',\n experience: 'ประสบการณ์ทำงาน',\n education: 'ประวัติการศึกษา',\n skills: 'ทักษะและความสามารถ',\n about: 'ข้อมูลส่วนตัว'\n }\n};\nexport default th;\n\n\n\n// WEBPACK FOOTER //\n// ./src/lang/th.js","/* eslint-disable */\r\nconst id = {\r\n headings: {\r\n contact: \"Kontak\",\r\n experience: \"Pengalaman\",\r\n education: \"Pendidikan\",\r\n skills: \"Keterampilan\",\r\n about: \"Tentang Saya\"\r\n }\r\n};\r\nexport default id;\r\n\n\n\n// WEBPACK FOOTER //\n// ./src/lang/id.js","/* eslint-disable */\nconst sv = {\n headings: {\n contact: 'Kontakt',\n experience: 'Arbetslivserfarenhet',\n education: 'Utbildning',\n skills: 'Kunskaper',\n about: 'Om mig'\n }\n};\nexport default sv;\n\n\n\n// WEBPACK FOOTER //\n// ./src/lang/sv.js","/* eslint-disable */\n\nconst ru = {\n headings: {\n contact: \"Контакты\",\n experience: \"Опыт\",\n education: \"Обучение\",\n skills: \"Навыки\",\n about: \"Обо мне\"\n }\n};\n\nexport default ru;\n\n\n// WEBPACK FOOTER //\n// ./src/lang/ru.js","/* eslint-disable */\nconst ptbr = {\n headings: {\n contact: 'Contato',\n experience: 'Experiência Profissional',\n education: 'Educação',\n skills: 'Competências',\n about: 'Sobre'\n }\n};\nexport default ptbr;\n\n\n\n// WEBPACK FOOTER //\n// ./src/lang/pt-br.js","/* eslint-disable */\nconst hu = {\n headings: {\n contact: 'Kapcsolat',\n experience: 'Munkatapasztalat',\n education: 'Tanulmány',\n skills: 'Készségek',\n about: 'Rólam'\n }\n};\nexport default hu;\n\n\n\n// WEBPACK FOOTER //\n// ./src/lang/hu.js","/* eslint-disable */\nconst pl = {\n headings: {\n contact: 'Kontakt',\n experience: 'Doświadczenie',\n education: 'Wykształcenie',\n skills: 'Umiejętności',\n about: 'O mnie'\n }\n};\nexport default pl;\n\n\n\n// WEBPACK FOOTER //\n// ./src/lang/pl.js","/* eslint-disable */\nconst he = {\n headings: {\n contact: 'יצירת קשר',\n experience: 'ניסיון',\n education: 'השכלה',\n skills: 'כישורים',\n about: 'תמצית'\n }\n};\nexport default he;\n\n\n\n// WEBPACK FOOTER //\n// ./src/lang/he.js","/* eslint-disable */\nconst jp = {\n headings: {\n contact: '連絡先',\n experience: '職務経歴',\n education: '学歴',\n skills: 'スキル',\n about: '自己紹介'\n }\n};\nexport default jp;\n\n\n\n// WEBPACK FOOTER //\n// ./src/lang/ja.js","/* eslint-disable */\nconst zhtw = {\n headings: {\n contact: '聯絡方式',\n experience: '經歷',\n education: '學歷',\n skills: '技能專長',\n about: '自我介紹'\n }\n};\nexport default zhtw;\n\n\n\n// WEBPACK FOOTER //\n// ./src/lang/zh-tw.js","/* eslint-disable */\nconst nl = {\n headings: {\n contact: 'Contact',\n experience: 'Ervaringen',\n education: 'Opleidingen',\n skills: 'Skills',\n about: 'Over mij'\n }\n };\n export default nl;\n\n\n// WEBPACK FOOTER //\n// ./src/lang/nl.js","/* eslint-disable */\nconst lt = {\n headings: {\n contact: 'Kontaktai',\n experience: 'Patirtis',\n education: 'Išsilavinimas',\n skills: 'Įgūdžiai',\n about: 'Apie mane'\n }\n};\nexport default lt;\n\n\n\n// WEBPACK FOOTER //\n// ./src/lang/lt.js","/* eslint-disable */\nconst tr = {\n headings: {\n contact: 'İletişim',\n experience: 'Deneyim',\n education: 'Eğitim',\n skills: 'Yetenekler',\n about: 'Hakkımda'\n }\n};\nexport default tr;\n\n\n\n// WEBPACK FOOTER //\n// ./src/lang/tr.js","/* eslint-disable */\nconst ko = {\n headings: {\n contact: \"연락처\",\n experience: \"경력\",\n education: \"학력\",\n skills: \"보유스킬\",\n about: \"자기소개\"\n }\n };\n export default ko;\n\n\n\n// WEBPACK FOOTER //\n// ./src/lang/ko.js","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:\"resume\"},[_c('div',{staticClass:\"leftCol m_box\"},[_c('div',{staticClass:\"shadow\"}),_vm._v(\" \"),_c('div',{staticClass:\"heading\",attrs:{\"id\":\"myselfpic\"}}),_vm._v(\" \"),_c('div',{staticClass:\"section-headline\"},[_vm._v(\"\\n \"+_vm._s(_vm.lang.headings.contact)+\"\\n \")]),_vm._v(\" \"),_c('div',{staticClass:\"item\"},[_vm._m(0),_vm._v(\" \"),_c('div',{staticClass:\"text\"},[_c('ul',[_c('li',[_vm._v(\" Born \"+_vm._s(_vm.person.birth.year)+\" in \"+_vm._s(_vm.person.birth.location))])])])]),_vm._v(\" \"),_c('div',{staticClass:\"item\"},[_vm._m(1),_vm._v(\" \"),_c('div',{staticClass:\"text\"},[_c('ul',[_c('li',[_vm._v(_vm._s(_vm.person.contact.street))]),_vm._v(\" \"),_c('li',[_vm._v(_vm._s(_vm.person.contact.city))])])])]),_vm._v(\" \"),_c('a',{attrs:{\"href\":'tel:'+_vm.person.contact.phone}},[_c('div',{staticClass:\"item\"},[_vm._m(2),_vm._v(\" \"),_c('div',{staticClass:\"text\"},[_vm._v(\"\\n \"+_vm._s(_vm.person.contact.phone)+\"\\n \")])])]),_vm._v(\" \"),_c('a',{attrs:{\"href\":'mailto:'+_vm.person.contact.email}},[_c('div',{staticClass:\"item\"},[_vm._m(3),_vm._v(\" \"),_c('div',{staticClass:\"text\"},[_vm._v(\"\\n \"+_vm._s(_vm.person.contact.email)+\"\\n \")])])]),_vm._v(\" \"),(_vm.person.contact.github)?_c('a',{attrs:{\"href\":'https://github.com/'+_vm.person.contact.github,\"target\":\"_blank\"}},[_c('div',{staticClass:\"item\"},[_vm._m(4),_vm._v(\" \"),_c('div',{staticClass:\"text\"},[_c('span',[_vm._v(\"@\"+_vm._s(_vm.person.contact.github))]),_vm._v(\" \"),_c('span',[_vm._v(\"github.com/\"+_vm._s(_vm.person.contact.github))])])])]):_vm._e(),_vm._v(\" \"),(_vm.person.contact.website)?_c('a',{attrs:{\"href\":_vm.person.contact.website,\"target\":\"_blank\"}},[_c('div',{staticClass:\"item\"},[_vm._m(5),_vm._v(\" \"),_c('div',{staticClass:\"text\"},[_c('span',[_vm._v(_vm._s(_vm.person.contact.website))])])])]):_vm._e(),_vm._v(\" \"),_c('div',{staticClass:\"item last\"},[_c('div',{staticClass:\"section-headline\"},[_vm._v(\"\\n \"+_vm._s(_vm.lang.headings.skills)+\"\\n \")]),_vm._v(\" \"),_vm._l((_vm.person.skills),function(skill){return _c('div',{key:skill.name,staticClass:\"skill\"},[_c('div',{staticClass:\"right\"},[_c('span',[_vm._v(_vm._s(skill.name)+\" \")]),_vm._v(\" \"),_c('div',{staticClass:\"progress\"},[_c('div',{staticClass:\"determinate\",style:('width: '+skill.level+'%;')},[_c('i',{staticClass:\"fa fa-circle\"})])])])])})],2)]),_vm._v(\" \"),_c('div',{staticClass:\"rightCol\"},[_c('div',{staticClass:\"title\"},[_c('h2',[_vm._v(_vm._s(_vm.person.name.first)+\" \"+_vm._s(_vm.person.name.middle)+\" \"+_vm._s(_vm.person.name.last))]),_vm._v(\" \"),_c('div',[_vm._v(_vm._s(_vm.person.position))])]),_vm._v(\" \"),_c('div',{staticClass:\"section-headline\"},[_vm._v(_vm._s(_vm.lang.headings.experience))]),_vm._v(\" \"),_vm._l((_vm.person.experience),function(experience){return _c('div',{key:experience.company,staticClass:\"block\"},[_c('div',{staticClass:\"block-helper\"}),_vm._v(\" \"),_c('div',{staticClass:\"headline\"},[_vm._v(_vm._s(experience.position)+\" - \"+_vm._s(experience.company)),_vm._v(\" \"),_c('div',{staticClass:\"subheadline\"},[_vm._v(_vm._s(experience.timeperiod))]),_vm._v(\" \"),_c('p',{staticClass:\"info\"},[_vm._v(\"\\n \"+_vm._s(experience.description)+\"\\n \")])])])}),_vm._v(\" \"),_c('div',{staticClass:\"section-headline\"},[_vm._v(_vm._s(_vm.lang.headings.education))]),_vm._v(\" \"),_vm._l((_vm.person.education),function(education){return _c('div',{key:education.degree,staticClass:\"block\"},[_c('div',{staticClass:\"block-helper\"}),_vm._v(\" \"),_c('div',{staticClass:\"headline\"},[_vm._v(_vm._s(education.degree))]),_vm._v(\" \"),_c('p',{staticClass:\"info\"},[_vm._v(\"\\n \"+_vm._s(education.timeperiod)+\", \"+_vm._s(education.description)+\"\\n \")])])})],2),_vm._v(\" \"),_c('div',{staticStyle:{\"clear\":\"both\"}})])}\nvar staticRenderFns = [function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:\"icon\"},[_c('i',{staticClass:\"material-icons\"},[_vm._v(\"account_circle\")])])},function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:\"icon\"},[_c('i',{staticClass:\"material-icons\"},[_vm._v(\"location_city\")])])},function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:\"icon\"},[_c('i',{staticClass:\"material-icons\"},[_vm._v(\"phone\")])])},function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:\"icon\"},[_c('i',{staticClass:\"material-icons\"},[_vm._v(\"email\")])])},function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:\"icon\"},[_c('i',{staticClass:\"fa fa-github\"})])},function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:\"icon\"},[_c('i',{staticClass:\"material-icons\"},[_vm._v(\"language\")])])}]\nvar esExports = { render: render, staticRenderFns: staticRenderFns }\nexport default esExports\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/vue-loader/lib/template-compiler?{\"id\":\"data-v-31798ddc\",\"hasScoped\":true,\"buble\":{\"transforms\":{}}}!./node_modules/vue-loader/lib/selector.js?type=template&index=0!./src/resumes/material-dark.vue\n// module id = 81\n// module chunks = 0","function injectStyle (ssrContext) {\n require(\"!!../../node_modules/extract-text-webpack-plugin/dist/loader.js?{\\\"omit\\\":1,\\\"remove\\\":true}!vue-style-loader!css-loader?{\\\"minimize\\\":true,\\\"sourceMap\\\":true}!../../node_modules/vue-loader/lib/style-compiler/index?{\\\"vue\\\":true,\\\"id\\\":\\\"data-v-25653886\\\",\\\"scoped\\\":true,\\\"hasInlineConfig\\\":false}!less-loader?{\\\"sourceMap\\\":true}!../../node_modules/vue-loader/lib/selector?type=styles&index=0!./left-right.vue\")\n}\nvar normalizeComponent = require(\"!../../node_modules/vue-loader/lib/component-normalizer\")\n/* script */\nimport __vue_script__ from \"!!babel-loader!../../node_modules/vue-loader/lib/selector?type=script&index=0!./left-right.vue\"\n/* template */\nimport __vue_template__ from \"!!../../node_modules/vue-loader/lib/template-compiler/index?{\\\"id\\\":\\\"data-v-25653886\\\",\\\"hasScoped\\\":true,\\\"buble\\\":{\\\"transforms\\\":{}}}!../../node_modules/vue-loader/lib/selector?type=template&index=0!./left-right.vue\"\n/* template functional */\n var __vue_template_functional__ = false\n/* styles */\nvar __vue_styles__ = injectStyle\n/* scopeId */\nvar __vue_scopeId__ = \"data-v-25653886\"\n/* moduleIdentifier (server only) */\nvar __vue_module_identifier__ = null\nvar Component = normalizeComponent(\n __vue_script__,\n __vue_template__,\n __vue_template_functional__,\n __vue_styles__,\n __vue_scopeId__,\n __vue_module_identifier__\n)\n\nexport default Component.exports\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./src/resumes/left-right.vue\n// module id = 82\n// module chunks = 0","// removed by extract-text-webpack-plugin\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/extract-text-webpack-plugin/dist/loader.js?{\"omit\":1,\"remove\":true}!./node_modules/vue-style-loader!./node_modules/css-loader?{\"minimize\":true,\"sourceMap\":true}!./node_modules/vue-loader/lib/style-compiler?{\"vue\":true,\"id\":\"data-v-25653886\",\"scoped\":true,\"hasInlineConfig\":false}!./node_modules/less-loader/dist/cjs.js?{\"sourceMap\":true}!./node_modules/vue-loader/lib/selector.js?type=styles&index=0!./src/resumes/left-right.vue\n// module id = 83\n// module chunks = 0","\n\n\n\n\n\n\n\n\n// WEBPACK FOOTER //\n// src/resumes/left-right.vue","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:\"resume\",attrs:{\"id\":\"resume1\"}},[_c('div',{staticClass:\"row text-center\"},[_c('span',{staticClass:\"name\"},[_vm._v(_vm._s(_vm.person.name.first)+\" \"+_vm._s(_vm.person.name.middle)+\" \"+_vm._s(_vm.person.name.last))])]),_vm._v(\" \"),_c('div',{staticClass:\"row text-center\"},[_c('p',{staticClass:\"position center\"},[_vm._v(_vm._s(_vm.person.position))])]),_vm._v(\" \"),_vm._m(0),_vm._v(\" \"),_c('div',{staticClass:\"left half\"},[_c('div',{staticClass:\"experience\"},[_c('h3',[_vm._v(_vm._s(_vm.lang.headings.experience))]),_vm._v(\" \"),_vm._l((_vm.person.experience),function(experience){return _c('div',{key:experience.company,staticClass:\"experience-block\"},[_c('span',{staticClass:\"company\"},[_vm._v(\" \"+_vm._s(experience.company)+\" \")]),_vm._v(\" \"),_c('span',{staticClass:\"job-title\"},[_vm._v(\" \"+_vm._s(experience.position)+\" \")]),_vm._v(\" \"),_c('span',{staticClass:\"time-period\"},[_vm._v(\" \"+_vm._s(experience.timeperiod))]),_vm._v(\" \"),_c('span',{staticClass:\"job-description\"},[_vm._v(\" \"+_vm._s(experience.description)+\" \")])])})],2),_vm._v(\" \"),_c('div',{staticClass:\"contact\"},[_c('h3',[_vm._v(_vm._s(_vm.lang.headings.contact))]),_vm._v(\" \"),_c('table',[_c('tr',[_c('td',[_c('a',{attrs:{\"href\":'mailto:'+_vm.person.contact.email}},[_vm._v(_vm._s(_vm.person.contact.email))])]),_vm._v(\" \"),_vm._m(1)]),_vm._v(\" \"),_c('tr',[_c('td',[_c('a',{attrs:{\"href\":'tel:'+_vm.person.contact.phone}},[_vm._v(_vm._s(_vm.person.contact.phone))])]),_vm._v(\" \"),_vm._m(2)]),_vm._v(\" \"),_c('tr',[_c('td',[_vm._v(_vm._s(_vm.person.contact.street)+\" \"),_c('br'),_vm._v(\" \"+_vm._s(_vm.person.contact.city))]),_vm._v(\" \"),_vm._m(3)]),_vm._v(\" \"),(_vm.person.contact.website)?_c('tr',[_c('td',[_c('a',{attrs:{\"href\":_vm.person.contact.website}},[_vm._v(_vm._s(_vm.person.contact.website))])]),_vm._v(\" \"),_vm._m(4)]):_vm._e(),_vm._v(\" \"),(_vm.person.contact.github)?_c('tr',[_c('td',[_c('a',{attrs:{\"href\":'https://github.com/'+_vm.person.contact.github}},[_vm._v(\"https://github.com/\"+_vm._s(_vm.person.contact.github))])]),_vm._v(\" \"),_vm._m(5)]):_vm._e()])])]),_vm._v(\" \"),_c('div',{staticClass:\"right half\"},[_c('div',{staticClass:\"education\"},[_c('h3',[_vm._v(_vm._s(_vm.lang.headings.education))]),_vm._v(\" \"),_vm._l((_vm.person.education),function(education){return _c('div',{key:education.degree,staticClass:\"education-block\"},[_c('span',{staticClass:\"degree\"},[_vm._v(_vm._s(education.degree))]),_vm._v(\" \"),_c('span',{staticClass:\"degree-description\"},[_vm._v(_vm._s(education.description))])])})],2),_vm._v(\" \"),_c('h3',[_vm._v(_vm._s(_vm.lang.headings.skills))]),_vm._v(\" \"),_c('div',{staticClass:\"skills\"},_vm._l((_vm.person.skills),function(skill){return _c('div',{key:skill.name,staticClass:\"skill-block\"},[_c('span',{staticClass:\"skill\"},[_vm._v(_vm._s(skill.name))]),_vm._v(\" \"),_c('div',{staticClass:\"skill-bar\"},[_c('div',{staticClass:\"level\",style:('width: '+skill.level+'%')})])])})),_vm._v(\" \"),_c('span',{staticClass:\"skills-other\"},[_vm._v(\" \"+_vm._s(_vm.person.knowledge)+\" \")])])])}\nvar staticRenderFns = [function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:\"row\"},[_c('div',{staticClass:\"image center\"},[_c('div',{staticClass:\"img\"})])])},function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('td',[_c('i',{staticClass:\"fa fa-envelope\",attrs:{\"aria-hidden\":\"true\"}})])},function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('td',[_c('i',{staticClass:\"fa fa-phone\",attrs:{\"aria-hidden\":\"true\"}})])},function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('td',[_c('i',{staticClass:\"fa fa-home\",attrs:{\"aria-hidden\":\"true\"}})])},function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('td',[_c('i',{staticClass:\"fa fa-globe\",attrs:{\"aria-hidden\":\"true\"}})])},function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('td',[_c('i',{staticClass:\"fa fa-github\",attrs:{\"aria-hidden\":\"true\"}})])}]\nvar esExports = { render: render, staticRenderFns: staticRenderFns }\nexport default esExports\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/vue-loader/lib/template-compiler?{\"id\":\"data-v-25653886\",\"hasScoped\":true,\"buble\":{\"transforms\":{}}}!./node_modules/vue-loader/lib/selector.js?type=template&index=0!./src/resumes/left-right.vue\n// module id = 85\n// module chunks = 0","function injectStyle (ssrContext) {\n require(\"!!../../node_modules/extract-text-webpack-plugin/dist/loader.js?{\\\"omit\\\":1,\\\"remove\\\":true}!vue-style-loader!css-loader?{\\\"minimize\\\":true,\\\"sourceMap\\\":true}!../../node_modules/vue-loader/lib/style-compiler/index?{\\\"vue\\\":true,\\\"id\\\":\\\"data-v-3e9e9731\\\",\\\"scoped\\\":true,\\\"hasInlineConfig\\\":false}!less-loader?{\\\"sourceMap\\\":true}!../../node_modules/vue-loader/lib/selector?type=styles&index=0!./oblique.vue\")\n}\nvar normalizeComponent = require(\"!../../node_modules/vue-loader/lib/component-normalizer\")\n/* script */\nimport __vue_script__ from \"!!babel-loader!../../node_modules/vue-loader/lib/selector?type=script&index=0!./oblique.vue\"\n/* template */\nimport __vue_template__ from \"!!../../node_modules/vue-loader/lib/template-compiler/index?{\\\"id\\\":\\\"data-v-3e9e9731\\\",\\\"hasScoped\\\":true,\\\"buble\\\":{\\\"transforms\\\":{}}}!../../node_modules/vue-loader/lib/selector?type=template&index=0!./oblique.vue\"\n/* template functional */\n var __vue_template_functional__ = false\n/* styles */\nvar __vue_styles__ = injectStyle\n/* scopeId */\nvar __vue_scopeId__ = \"data-v-3e9e9731\"\n/* moduleIdentifier (server only) */\nvar __vue_module_identifier__ = null\nvar Component = normalizeComponent(\n __vue_script__,\n __vue_template__,\n __vue_template_functional__,\n __vue_styles__,\n __vue_scopeId__,\n __vue_module_identifier__\n)\n\nexport default Component.exports\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./src/resumes/oblique.vue\n// module id = 86\n// module chunks = 0","// removed by extract-text-webpack-plugin\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/extract-text-webpack-plugin/dist/loader.js?{\"omit\":1,\"remove\":true}!./node_modules/vue-style-loader!./node_modules/css-loader?{\"minimize\":true,\"sourceMap\":true}!./node_modules/vue-loader/lib/style-compiler?{\"vue\":true,\"id\":\"data-v-3e9e9731\",\"scoped\":true,\"hasInlineConfig\":false}!./node_modules/less-loader/dist/cjs.js?{\"sourceMap\":true}!./node_modules/vue-loader/lib/selector.js?type=styles&index=0!./src/resumes/oblique.vue\n// module id = 87\n// module chunks = 0","\n\n\n\n\n\n\n\n\n// WEBPACK FOOTER //\n// src/resumes/oblique.vue","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:\"resume\",attrs:{\"id\":\"resume3\"}},[_c('div',{staticClass:\"resume-header\"},[_c('div',{staticClass:\"triangle\"}),_vm._v(\" \"),_c('div',{staticClass:\"person-header\"},[_c('div',{staticClass:\"person-wrapper\"},[_c('div',{staticClass:\"person\"},[_c('div',{staticClass:\"name\"},[_vm._v(_vm._s(_vm.person.name.first)+\" \"+_vm._s(_vm.person.name.middle)+\" \"+_vm._s(_vm.person.name.last))]),_vm._v(\" \"),_c('div',{staticClass:\"position\"},[_vm._v(_vm._s(_vm.person.position))])]),_vm._v(\" \"),_c('div',{staticClass:\"img\"})])])]),_vm._v(\" \"),_c('div',{staticClass:\"resume-content\"},[_c('div',{staticClass:\"experience\"},[_c('h3',[_vm._v(_vm._s(_vm.lang.headings.experience))]),_vm._v(\" \"),_vm._l((_vm.person.experience),function(experience){return _c('div',{key:experience.company,staticClass:\"experience-block\"},[_c('div',{staticClass:\"row\"},[_c('span',{staticClass:\"job-title\"},[_vm._v(\" \"+_vm._s(experience.position)+\" \")]),_vm._v(\" \"),_c('i',{staticClass:\"material-icons\"},[_vm._v(\"details\")]),_vm._v(\" \"),_c('span',{staticClass:\"company\"},[_vm._v(\" \"+_vm._s(experience.company)+\" \")])]),_vm._v(\" \"),_c('div',{staticClass:\"row\"},[_c('span',{staticClass:\"time-period\"},[_vm._v(\" \"+_vm._s(experience.timeperiod))]),_vm._v(\" \"),_c('span',{staticClass:\"job-description\"},[_vm._v(\", \"+_vm._s(experience.description)+\" \")])])])})],2),_vm._v(\" \"),_c('div',{staticClass:\"education\"},[_c('h3',[_vm._v(_vm._s(_vm.lang.headings.education))]),_vm._v(\" \"),_vm._l((_vm.person.education),function(education){return _c('div',{key:education.degree,staticClass:\"education-block\"},[_c('div',{staticClass:\"row\"},[_c('span',{staticClass:\"degree\"},[_vm._v(_vm._s(education.degree))])]),_vm._v(\" \"),_c('div',{staticClass:\"row\"},[_c('span',{staticClass:\"degree-description\"},[_vm._v(_vm._s(education.description))])])])})],2),_vm._v(\" \"),_c('div',{staticClass:\"skill-section\"},[_c('h3',[_vm._v(_vm._s(_vm.lang.headings.skills))]),_vm._v(\" \"),_vm._l((_vm.person.skills),function(skill){return _c('div',{key:skill.name,staticClass:\"skills\"},[_c('div',{staticClass:\"skill-block\"},[_c('i',{staticClass:\"material-icons\"},[_vm._v(\"details\")]),_vm._v(\" \"),_c('span',{staticClass:\"skill\"},[_vm._v(_vm._s(skill.name))])])])})],2),_vm._v(\" \"),_c('div',{staticClass:\"skills-other\"},[_c('span',[_vm._v(_vm._s(_vm.person.knowledge)+\" \")])]),_vm._v(\" \"),_c('div',{staticClass:\"contact\"},[_c('h3',[_vm._v(_vm._s(_vm.lang.headings.contact))]),_vm._v(\" \"),_c('a',{attrs:{\"href\":'mailto:'+_vm.person.contact.email}},[_vm._v(\" \"+_vm._s(_vm.person.contact.email))]),_vm._v(\" \"),_c('span',[_vm._v(\"; \")]),_vm._v(\" \"),_c('a',{attrs:{\"href\":'tel:'+_vm.person.contact.phone}},[_vm._v(_vm._s(_vm.person.contact.phone))]),_vm._v(\" \"),_c('span',[_vm._v(\"; \")]),_vm._v(\" \"),_c('span',[_vm._v(_vm._s(_vm.person.contact.street)+\", \"+_vm._s(_vm.person.contact.city))]),_vm._v(\" \"),_c('span',[_vm._v(\"; \")]),_vm._v(\" \"),(_vm.person.contact.website)?_c('a',{attrs:{\"href\":_vm.person.contact.website}},[_vm._v(\"\\n \"+_vm._s(_vm.person.contact.website))]):_vm._e(),_vm._v(\" \"),(_vm.person.contact.website)?_c('span',[_vm._v(\"; \")]):_vm._e(),_vm._v(\" \"),(_vm.person.contact.github)?_c('a',{attrs:{\"href\":'https://github.com/'+_vm.person.contact.github}},[_vm._v(\"\\n https://github.com/\"+_vm._s(_vm.person.contact.github))]):_vm._e()])])])}\nvar staticRenderFns = []\nvar esExports = { render: render, staticRenderFns: staticRenderFns }\nexport default esExports\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/vue-loader/lib/template-compiler?{\"id\":\"data-v-3e9e9731\",\"hasScoped\":true,\"buble\":{\"transforms\":{}}}!./node_modules/vue-loader/lib/selector.js?type=template&index=0!./src/resumes/oblique.vue\n// module id = 89\n// module chunks = 0","function injectStyle (ssrContext) {\n require(\"!!../../node_modules/extract-text-webpack-plugin/dist/loader.js?{\\\"omit\\\":1,\\\"remove\\\":true}!vue-style-loader!css-loader?{\\\"minimize\\\":true,\\\"sourceMap\\\":true}!../../node_modules/vue-loader/lib/style-compiler/index?{\\\"vue\\\":true,\\\"id\\\":\\\"data-v-4ac258cd\\\",\\\"scoped\\\":true,\\\"hasInlineConfig\\\":false}!less-loader?{\\\"sourceMap\\\":true}!../../node_modules/vue-loader/lib/selector?type=styles&index=0!./side-bar.vue\")\n}\nvar normalizeComponent = require(\"!../../node_modules/vue-loader/lib/component-normalizer\")\n/* script */\nimport __vue_script__ from \"!!babel-loader!../../node_modules/vue-loader/lib/selector?type=script&index=0!./side-bar.vue\"\n/* template */\nimport __vue_template__ from \"!!../../node_modules/vue-loader/lib/template-compiler/index?{\\\"id\\\":\\\"data-v-4ac258cd\\\",\\\"hasScoped\\\":true,\\\"buble\\\":{\\\"transforms\\\":{}}}!../../node_modules/vue-loader/lib/selector?type=template&index=0!./side-bar.vue\"\n/* template functional */\n var __vue_template_functional__ = false\n/* styles */\nvar __vue_styles__ = injectStyle\n/* scopeId */\nvar __vue_scopeId__ = \"data-v-4ac258cd\"\n/* moduleIdentifier (server only) */\nvar __vue_module_identifier__ = null\nvar Component = normalizeComponent(\n __vue_script__,\n __vue_template__,\n __vue_template_functional__,\n __vue_styles__,\n __vue_scopeId__,\n __vue_module_identifier__\n)\n\nexport default Component.exports\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./src/resumes/side-bar.vue\n// module id = 90\n// module chunks = 0","// removed by extract-text-webpack-plugin\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/extract-text-webpack-plugin/dist/loader.js?{\"omit\":1,\"remove\":true}!./node_modules/vue-style-loader!./node_modules/css-loader?{\"minimize\":true,\"sourceMap\":true}!./node_modules/vue-loader/lib/style-compiler?{\"vue\":true,\"id\":\"data-v-4ac258cd\",\"scoped\":true,\"hasInlineConfig\":false}!./node_modules/less-loader/dist/cjs.js?{\"sourceMap\":true}!./node_modules/vue-loader/lib/selector.js?type=styles&index=0!./src/resumes/side-bar.vue\n// module id = 91\n// module chunks = 0","\n\n\n\n\n\n\n\n\n// WEBPACK FOOTER //\n// src/resumes/side-bar.vue","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:\"resume\",attrs:{\"id\":\"resume2\"}},[_c('div',{staticClass:\"top-row\"},[_c('span',{staticClass:\"person-name\"},[_vm._v(\"\\n \"+_vm._s(_vm.person.name.first)+\" \"+_vm._s(_vm.person.name.middle)+\" \"+_vm._s(_vm.person.name.last)+\"\\n \")]),_vm._v(\" \"),_c('span',{staticClass:\"person-position\"},[_vm._v(\"\\n \"+_vm._s(_vm.person.position)+\"\\n \")])]),_vm._v(\" \"),_c('div',{staticClass:\"left-col\"},[_vm._m(0),_vm._v(\" \"),_c('div',{staticClass:\"contact\"},[_c('h3',[_vm._v(_vm._s(_vm.lang.headings.contact))]),_vm._v(\" \"),_c('div',{staticClass:\"contact-row\"},[_c('a',{attrs:{\"href\":'mailto:'+_vm.person.contact.email}},[_vm._v(_vm._s(_vm.person.contact.email))])]),_vm._v(\" \"),_vm._m(1),_vm._v(\" \"),_c('div',{staticClass:\"contact-row\"},[_c('a',{attrs:{\"href\":'tel:'+_vm.person.contact.phone}},[_vm._v(_vm._s(_vm.person.contact.phone))])]),_vm._v(\" \"),_vm._m(2),_vm._v(\" \"),_c('div',{staticClass:\"contact-row\"},[_vm._v(\"\\n \"+_vm._s(_vm.person.contact.street)+\" \"),_c('br'),_vm._v(\" \"+_vm._s(_vm.person.contact.city)+\"\\n \")]),_vm._v(\" \"),(_vm.person.contact.github)?_c('div',{staticClass:\"contact-row dots\"},[_c('i',{staticClass:\"fa fa-circle\",attrs:{\"aria-hidden\":\"true\"}}),_vm._v(\" \"),_c('i',{staticClass:\"fa fa-circle\",attrs:{\"aria-hidden\":\"true\"}}),_vm._v(\" \"),_c('i',{staticClass:\"fa fa-circle\",attrs:{\"aria-hidden\":\"true\"}})]):_vm._e(),_vm._v(\" \"),(_vm.person.contact.github)?_c('div',{staticClass:\"contact-row\"},[_c('a',{attrs:{\"href\":'https://github.com/'+_vm.person.contact.github}},[_vm._v(\"https://github.com/\"+_vm._s(_vm.person.contact.github))])]):_vm._e()])]),_vm._v(\" \"),_c('div',{staticClass:\"right-col\"},[_c('div',{staticClass:\"experience\"},[_c('h3',[_vm._v(_vm._s(_vm.lang.headings.experience))]),_vm._v(\" \"),_vm._l((_vm.person.experience),function(experience){return _c('div',{key:experience.company,staticClass:\"experience-block\"},[_c('div',{staticClass:\"row\"},[_c('span',{staticClass:\"company\"},[_vm._v(\" \"+_vm._s(experience.company)+\" -\")]),_vm._v(\" \"),_c('span',{staticClass:\"job-title\"},[_vm._v(\" \"+_vm._s(experience.position)+\" \")])]),_vm._v(\" \"),_c('div',{staticClass:\"row\"},[_c('span',{staticClass:\"time-period\"},[_vm._v(\" \"+_vm._s(experience.timeperiod))])]),_vm._v(\" \"),_c('div',{staticClass:\"row\"},[_c('span',{staticClass:\"job-description\"},[_vm._v(\" \"+_vm._s(experience.description)+\" \")])])])})],2),_vm._v(\" \"),_c('div',{staticClass:\"education\"},[_c('h3',[_vm._v(_vm._s(_vm.lang.headings.education))]),_vm._v(\" \"),_vm._l((_vm.person.education),function(education){return _c('div',{key:education.degree,staticClass:\"education-block\"},[_c('div',{staticClass:\"row\"},[_c('span',{staticClass:\"degree\"},[_vm._v(_vm._s(education.degree))])]),_vm._v(\" \"),_c('div',{staticClass:\"row\"},[_c('span',{staticClass:\"degree-description\"},[_vm._v(_vm._s(education.description))])])])})],2),_vm._v(\" \"),_c('div',{staticClass:\"skills-block\"},[_c('h3',[_vm._v(_vm._s(_vm.lang.headings.skills))]),_vm._v(\" \"),_c('div',{staticClass:\"skills\"},_vm._l((_vm.person.skills),function(skill){return _c('div',{key:skill.name,staticClass:\"skill\"},[_c('span',{staticClass:\"skill-name\"},[_vm._v(_vm._s(skill.name))])])})),_vm._v(\" \"),_c('span',{staticClass:\"skills-other\"},[_vm._v(\" \"+_vm._s(_vm.person.knowledge)+\" \")])])])])}\nvar staticRenderFns = [function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:\"person-image\"},[_c('div',{staticClass:\"image-centerer\"},[_c('div',{staticClass:\"img\"})])])},function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:\"contact-row dots\"},[_c('i',{staticClass:\"fa fa-circle\",attrs:{\"aria-hidden\":\"true\"}}),_vm._v(\" \"),_c('i',{staticClass:\"fa fa-circle\",attrs:{\"aria-hidden\":\"true\"}}),_vm._v(\" \"),_c('i',{staticClass:\"fa fa-circle\",attrs:{\"aria-hidden\":\"true\"}})])},function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:\"contact-row dots\"},[_c('i',{staticClass:\"fa fa-circle\",attrs:{\"aria-hidden\":\"true\"}}),_vm._v(\" \"),_c('i',{staticClass:\"fa fa-circle\",attrs:{\"aria-hidden\":\"true\"}}),_vm._v(\" \"),_c('i',{staticClass:\"fa fa-circle\",attrs:{\"aria-hidden\":\"true\"}})])}]\nvar esExports = { render: render, staticRenderFns: staticRenderFns }\nexport default esExports\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/vue-loader/lib/template-compiler?{\"id\":\"data-v-4ac258cd\",\"hasScoped\":true,\"buble\":{\"transforms\":{}}}!./node_modules/vue-loader/lib/selector.js?type=template&index=0!./src/resumes/side-bar.vue\n// module id = 93\n// module chunks = 0","function injectStyle (ssrContext) {\n require(\"!!../../node_modules/extract-text-webpack-plugin/dist/loader.js?{\\\"omit\\\":1,\\\"remove\\\":true}!vue-style-loader!css-loader?{\\\"minimize\\\":true,\\\"sourceMap\\\":true}!../../node_modules/vue-loader/lib/style-compiler/index?{\\\"vue\\\":true,\\\"id\\\":\\\"data-v-1f07d728\\\",\\\"scoped\\\":true,\\\"hasInlineConfig\\\":false}!less-loader?{\\\"sourceMap\\\":true}!../../node_modules/vue-loader/lib/selector?type=styles&index=0!./purple.vue\")\n}\nvar normalizeComponent = require(\"!../../node_modules/vue-loader/lib/component-normalizer\")\n/* script */\nimport __vue_script__ from \"!!babel-loader!../../node_modules/vue-loader/lib/selector?type=script&index=0!./purple.vue\"\n/* template */\nimport __vue_template__ from \"!!../../node_modules/vue-loader/lib/template-compiler/index?{\\\"id\\\":\\\"data-v-1f07d728\\\",\\\"hasScoped\\\":true,\\\"buble\\\":{\\\"transforms\\\":{}}}!../../node_modules/vue-loader/lib/selector?type=template&index=0!./purple.vue\"\n/* template functional */\n var __vue_template_functional__ = false\n/* styles */\nvar __vue_styles__ = injectStyle\n/* scopeId */\nvar __vue_scopeId__ = \"data-v-1f07d728\"\n/* moduleIdentifier (server only) */\nvar __vue_module_identifier__ = null\nvar Component = normalizeComponent(\n __vue_script__,\n __vue_template__,\n __vue_template_functional__,\n __vue_styles__,\n __vue_scopeId__,\n __vue_module_identifier__\n)\n\nexport default Component.exports\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./src/resumes/purple.vue\n// module id = 94\n// module chunks = 0","// removed by extract-text-webpack-plugin\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/extract-text-webpack-plugin/dist/loader.js?{\"omit\":1,\"remove\":true}!./node_modules/vue-style-loader!./node_modules/css-loader?{\"minimize\":true,\"sourceMap\":true}!./node_modules/vue-loader/lib/style-compiler?{\"vue\":true,\"id\":\"data-v-1f07d728\",\"scoped\":true,\"hasInlineConfig\":false}!./node_modules/less-loader/dist/cjs.js?{\"sourceMap\":true}!./node_modules/vue-loader/lib/selector.js?type=styles&index=0!./src/resumes/purple.vue\n// module id = 95\n// module chunks = 0","\n\n\n\n\n\n\n\n\n// WEBPACK FOOTER //\n// src/resumes/purple.vue","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:\"resume\",attrs:{\"id\":\"template\"}},[_c('div',{attrs:{\"id\":\"resume-header\"}},[_c('div',{attrs:{\"id\":\"header-left\"}},[_c('h2',{attrs:{\"id\":\"position\"}},[_vm._v(_vm._s(_vm.person.position))]),_vm._v(\" \"),_c('h1',{attrs:{\"id\":\"name\"}},[_vm._v(_vm._s(_vm.person.name.first)+\" \"+_vm._s(_vm.person.name.last))]),_vm._v(\" \"),_c('div',{attrs:{\"id\":\"info-flex\"}},[_c('span',{attrs:{\"id\":\"email\"}},[_c('a',{attrs:{\"href\":\"mailto:\" + _vm.person.contact.email}},[_c('i',{staticClass:\"fa fa-envelope\",attrs:{\"aria-hidden\":\"true\"}}),_vm._v(\" \"+_vm._s(_vm.person.contact.email))])]),_vm._v(\" \"),_c('span',{attrs:{\"id\":\"phone\"}},[_c('i',{staticClass:\"fa fa-phone-square\",attrs:{\"aria-hidden\":\"true\"}}),_vm._v(\" \"+_vm._s(_vm.person.contact.phone))]),_vm._v(\" \"),(_vm.person.contact.website)?_c('span',{attrs:{\"id\":\"website\"}},[_c('a',{attrs:{\"href\":_vm.person.contact.website}},[_c('i',{staticClass:\"fa fa-home\",attrs:{\"aria-hidden\":\"true\"}}),_vm._v(\" \"+_vm._s(_vm.person.contact.website))])]):_vm._e(),_vm._v(\" \"),(_vm.person.contact.github)?_c('span',{attrs:{\"id\":\"github\"}},[_c('a',{attrs:{\"href\":\"https://github.com/\" + _vm.person.contact.github}},[_c('i',{staticClass:\"fa fa-github\",attrs:{\"aria-hidden\":\"true\"}}),_vm._v(\" \"+_vm._s(_vm.person.contact.github))])]):_vm._e()])]),_vm._v(\" \"),_vm._m(0)]),_vm._v(\" \"),_c('div',{attrs:{\"id\":\"resume-body\"}},[_c('div',{attrs:{\"id\":\"experience-container\"}},[_c('h2',{attrs:{\"id\":\"experience-title\"}},[_vm._v(_vm._s(_vm.lang.headings.experience))]),_vm._v(\" \"),_c('div',{staticClass:\"spacer\"}),_vm._v(\" \"),_vm._l((_vm.person.experience),function(experience){return _c('div',{key:experience.company,staticClass:\"experience\"},[_c('h2',{staticClass:\"company\"},[_vm._v(_vm._s(experience.company))]),_vm._v(\" \"),_c('p',{staticClass:\"job-info\"},[_c('span',{staticClass:\"job-title\"},[_vm._v(_vm._s(experience.position)+\" | \")]),_c('span',{staticClass:\"experience-timeperiod\"},[_vm._v(_vm._s(experience.timeperiod))])]),_vm._v(\" \"),(experience.description)?_c('p',{staticClass:\"job-description\"},[_vm._v(_vm._s(experience.description))]):_vm._e(),_vm._v(\" \"),(experience.list)?_c('ul',_vm._l((experience.list),function(item,index){return _c('li',{key:index},[_c('span',{staticClass:\"list-item-black\"},[_vm._v(\"\\n \"+_vm._s(item)+\"\\n \")])])})):_vm._e()])})],2),_vm._v(\" \"),_c('div',{attrs:{\"id\":\"education-container\"}},[_c('h2',{attrs:{\"id\":\"education-title\"}},[_vm._v(_vm._s(_vm.lang.headings.education))]),_vm._v(\" \"),_c('div',{staticClass:\"spacer\"}),_vm._v(\" \"),_vm._l((_vm.person.education),function(education){return _c('div',{key:education.degree,staticClass:\"education\"},[_c('h2',{staticClass:\"education-description\"},[_vm._v(_vm._s(education.description))]),_vm._v(\" \"),_c('p',[_c('span',{staticClass:\"degree\"},[_vm._v(_vm._s(education.degree)+\" | \")]),_c('span',{staticClass:\"education-timeperiod\"},[_vm._v(_vm._s(education.timeperiod))])])])})],2),_vm._v(\" \"),(_vm.person.skills != [])?_c('div',{attrs:{\"id\":\"skills-container\"}},[_c('h2',{attrs:{\"id\":\"skills-title\"}},[_vm._v(_vm._s(_vm.lang.headings.skills))]),_vm._v(\" \"),_c('div',{staticClass:\"spacer\"}),_vm._v(\" \"),_c('p',{attrs:{\"id\":\"skill-description\"}},[_vm._v(_vm._s(_vm.person.knowledge))]),_vm._v(\" \"),_c('ul',{attrs:{\"id\":\"skill-list\"}},_vm._l((_vm.person.skills),function(skill){return _c('li',{key:skill.name,staticClass:\"skill\"},[_c('span',{staticClass:\"list-item-black\"},[_vm._v(\"\\n \"+_vm._s(skill.name)+\"\\n \")])])}))]):_vm._e()]),_vm._v(\" \"),_c('div',{attrs:{\"id\":\"resume-footer\"}},[(_vm.person.about)?_c('div',[_c('h2',[_vm._v(_vm._s(_vm.lang.headings.about))]),_vm._v(\" \"),_c('p',[_vm._v(_vm._s(_vm.person.about))])]):_vm._e()])])}\nvar staticRenderFns = [function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{attrs:{\"id\":\"header-right\"}},[_c('div',{attrs:{\"id\":\"headshot\"}})])}]\nvar esExports = { render: render, staticRenderFns: staticRenderFns }\nexport default esExports\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/vue-loader/lib/template-compiler?{\"id\":\"data-v-1f07d728\",\"hasScoped\":true,\"buble\":{\"transforms\":{}}}!./node_modules/vue-loader/lib/selector.js?type=template&index=0!./src/resumes/purple.vue\n// module id = 97\n// module chunks = 0","function injectStyle (ssrContext) {\n require(\"!!../../node_modules/extract-text-webpack-plugin/dist/loader.js?{\\\"omit\\\":1,\\\"remove\\\":true}!vue-style-loader!css-loader?{\\\"minimize\\\":true,\\\"sourceMap\\\":true}!../../node_modules/vue-loader/lib/style-compiler/index?{\\\"vue\\\":true,\\\"id\\\":\\\"data-v-7f2ce22c\\\",\\\"scoped\\\":true,\\\"hasInlineConfig\\\":false}!less-loader?{\\\"sourceMap\\\":true}!../../node_modules/vue-loader/lib/selector?type=styles&index=0!./side-bar-rtl.vue\")\n}\nvar normalizeComponent = require(\"!../../node_modules/vue-loader/lib/component-normalizer\")\n/* script */\nimport __vue_script__ from \"!!babel-loader!../../node_modules/vue-loader/lib/selector?type=script&index=0!./side-bar-rtl.vue\"\n/* template */\nimport __vue_template__ from \"!!../../node_modules/vue-loader/lib/template-compiler/index?{\\\"id\\\":\\\"data-v-7f2ce22c\\\",\\\"hasScoped\\\":true,\\\"buble\\\":{\\\"transforms\\\":{}}}!../../node_modules/vue-loader/lib/selector?type=template&index=0!./side-bar-rtl.vue\"\n/* template functional */\n var __vue_template_functional__ = false\n/* styles */\nvar __vue_styles__ = injectStyle\n/* scopeId */\nvar __vue_scopeId__ = \"data-v-7f2ce22c\"\n/* moduleIdentifier (server only) */\nvar __vue_module_identifier__ = null\nvar Component = normalizeComponent(\n __vue_script__,\n __vue_template__,\n __vue_template_functional__,\n __vue_styles__,\n __vue_scopeId__,\n __vue_module_identifier__\n)\n\nexport default Component.exports\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./src/resumes/side-bar-rtl.vue\n// module id = 98\n// module chunks = 0","// removed by extract-text-webpack-plugin\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/extract-text-webpack-plugin/dist/loader.js?{\"omit\":1,\"remove\":true}!./node_modules/vue-style-loader!./node_modules/css-loader?{\"minimize\":true,\"sourceMap\":true}!./node_modules/vue-loader/lib/style-compiler?{\"vue\":true,\"id\":\"data-v-7f2ce22c\",\"scoped\":true,\"hasInlineConfig\":false}!./node_modules/less-loader/dist/cjs.js?{\"sourceMap\":true}!./node_modules/vue-loader/lib/selector.js?type=styles&index=0!./src/resumes/side-bar-rtl.vue\n// module id = 99\n// module chunks = 0","\n\n\n\n\n\n\n\n\n// WEBPACK FOOTER //\n// src/resumes/side-bar-rtl.vue","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:\"resume\",attrs:{\"id\":\"resume2\"}},[_c('div',{staticClass:\"top-row\"},[_c('span',{staticClass:\"person-name\"},[_vm._v(\"\\n \"+_vm._s(_vm.person.name.first)+\" \"+_vm._s(_vm.person.name.middle)+\" \"+_vm._s(_vm.person.name.last)+\"\\n \")]),_vm._v(\" \"),_c('span',{staticClass:\"person-position\"},[_vm._v(\"\\n \"+_vm._s(_vm.person.position)+\"\\n \")])]),_vm._v(\" \"),_c('div',{staticClass:\"right-col\"},[_vm._m(0),_vm._v(\" \"),_c('div',{staticClass:\"contact\"},[_c('h3',[_vm._v(_vm._s(_vm.lang.headings.contact))]),_vm._v(\" \"),_c('div',{staticClass:\"contact-row\"},[_c('a',{attrs:{\"href\":'mailto:'+_vm.person.contact.email}},[_vm._v(_vm._s(_vm.person.contact.email))])]),_vm._v(\" \"),_vm._m(1),_vm._v(\" \"),_c('div',{staticClass:\"contact-row\"},[_c('a',{attrs:{\"href\":\"'tel:'+person.contact.phone\"}},[_vm._v(_vm._s(_vm.person.contact.phone))])]),_vm._v(\" \"),_vm._m(2),_vm._v(\" \"),_c('div',{staticClass:\"contact-row\"},[_vm._v(\"\\n \"+_vm._s(_vm.person.contact.street)+\" \"),_c('br'),_vm._v(\" \"+_vm._s(_vm.person.contact.city)+\"\\n \")]),_vm._v(\" \"),_vm._m(3),_vm._v(\" \"),_c('div',{staticClass:\"contact-row\"},[_c('a',{attrs:{\"href\":'https://github.com/'+_vm.person.contact.github}},[_vm._v(\"https://github.com/\"+_vm._s(_vm.person.contact.github))])])])]),_vm._v(\" \"),_c('div',{staticClass:\"left-col\"},[_c('div',{staticClass:\"experience\"},[_c('h3',[_vm._v(_vm._s(_vm.lang.headings.experience))]),_vm._v(\" \"),_vm._l((_vm.person.experience),function(experience){return _c('div',{staticClass:\"experience-block\"},[_c('div',{staticClass:\"row\"},[_c('span',{staticClass:\"company\"},[_vm._v(\" \"+_vm._s(experience.company)+\" -\")]),_vm._v(\" \"),_c('span',{staticClass:\"job-title\"},[_vm._v(\" \"+_vm._s(experience.position)+\" \")])]),_vm._v(\" \"),_c('div',{staticClass:\"row\"},[_c('span',{staticClass:\"time-period\"},[_vm._v(\" \"+_vm._s(experience.timeperiod))])]),_vm._v(\" \"),_c('div',{staticClass:\"row\"},[_c('span',{staticClass:\"job-description\"},[_vm._v(\" \"+_vm._s(experience.description)+\" \")])])])})],2),_vm._v(\" \"),_c('div',{staticClass:\"education\"},[_c('h3',[_vm._v(_vm._s(_vm.lang.headings.education))]),_vm._v(\" \"),_vm._l((_vm.person.education),function(education){return _c('div',{staticClass:\"education-block\"},[_c('div',{staticClass:\"row\"},[_c('span',{staticClass:\"degree\"},[_vm._v(_vm._s(education.degree))])]),_vm._v(\" \"),_c('div',{staticClass:\"row\"},[_c('span',{staticClass:\"degree-description\"},[_vm._v(_vm._s(education.description))])])])})],2),_vm._v(\" \"),_c('div',{staticClass:\"skills-block\"},[_c('h3',[_vm._v(_vm._s(_vm.lang.headings.skills))]),_vm._v(\" \"),_c('div',{staticClass:\"skills\"},_vm._l((_vm.person.skills),function(skill){return _c('div',{staticClass:\"skill\"},[_c('span',{staticClass:\"skill-name\"},[_vm._v(_vm._s(skill.name))])])})),_vm._v(\" \"),_c('span',{staticClass:\"skills-other\"},[_vm._v(\" \"+_vm._s(_vm.person.knowledge)+\" \")])])])])}\nvar staticRenderFns = [function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:\"person-image\"},[_c('div',{staticClass:\"image-centerer\"},[_c('div',{staticClass:\"img\"})])])},function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:\"contact-row dots\"},[_c('i',{staticClass:\"fa fa-circle\",attrs:{\"aria-hidden\":\"true\"}}),_vm._v(\" \"),_c('i',{staticClass:\"fa fa-circle\",attrs:{\"aria-hidden\":\"true\"}}),_vm._v(\" \"),_c('i',{staticClass:\"fa fa-circle\",attrs:{\"aria-hidden\":\"true\"}})])},function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:\"contact-row dots\"},[_c('i',{staticClass:\"fa fa-circle\",attrs:{\"aria-hidden\":\"true\"}}),_vm._v(\" \"),_c('i',{staticClass:\"fa fa-circle\",attrs:{\"aria-hidden\":\"true\"}}),_vm._v(\" \"),_c('i',{staticClass:\"fa fa-circle\",attrs:{\"aria-hidden\":\"true\"}})])},function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:\"contact-row dots\"},[_c('i',{staticClass:\"fa fa-circle\",attrs:{\"aria-hidden\":\"true\"}}),_vm._v(\" \"),_c('i',{staticClass:\"fa fa-circle\",attrs:{\"aria-hidden\":\"true\"}}),_vm._v(\" \"),_c('i',{staticClass:\"fa fa-circle\",attrs:{\"aria-hidden\":\"true\"}})])}]\nvar esExports = { render: render, staticRenderFns: staticRenderFns }\nexport default esExports\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/vue-loader/lib/template-compiler?{\"id\":\"data-v-7f2ce22c\",\"hasScoped\":true,\"buble\":{\"transforms\":{}}}!./node_modules/vue-loader/lib/selector.js?type=template&index=0!./src/resumes/side-bar-rtl.vue\n// module id = 101\n// module chunks = 0","function injectStyle (ssrContext) {\n require(\"!!../../node_modules/extract-text-webpack-plugin/dist/loader.js?{\\\"omit\\\":1,\\\"remove\\\":true}!vue-style-loader!css-loader?{\\\"minimize\\\":true,\\\"sourceMap\\\":true}!../../node_modules/vue-loader/lib/style-compiler/index?{\\\"vue\\\":true,\\\"id\\\":\\\"data-v-6a982bba\\\",\\\"scoped\\\":true,\\\"hasInlineConfig\\\":false}!less-loader?{\\\"sourceMap\\\":true}!../../node_modules/vue-loader/lib/selector?type=styles&index=0!./left-right-rtl.vue\")\n}\nvar normalizeComponent = require(\"!../../node_modules/vue-loader/lib/component-normalizer\")\n/* script */\nimport __vue_script__ from \"!!babel-loader!../../node_modules/vue-loader/lib/selector?type=script&index=0!./left-right-rtl.vue\"\n/* template */\nimport __vue_template__ from \"!!../../node_modules/vue-loader/lib/template-compiler/index?{\\\"id\\\":\\\"data-v-6a982bba\\\",\\\"hasScoped\\\":true,\\\"buble\\\":{\\\"transforms\\\":{}}}!../../node_modules/vue-loader/lib/selector?type=template&index=0!./left-right-rtl.vue\"\n/* template functional */\n var __vue_template_functional__ = false\n/* styles */\nvar __vue_styles__ = injectStyle\n/* scopeId */\nvar __vue_scopeId__ = \"data-v-6a982bba\"\n/* moduleIdentifier (server only) */\nvar __vue_module_identifier__ = null\nvar Component = normalizeComponent(\n __vue_script__,\n __vue_template__,\n __vue_template_functional__,\n __vue_styles__,\n __vue_scopeId__,\n __vue_module_identifier__\n)\n\nexport default Component.exports\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./src/resumes/left-right-rtl.vue\n// module id = 102\n// module chunks = 0","// removed by extract-text-webpack-plugin\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/extract-text-webpack-plugin/dist/loader.js?{\"omit\":1,\"remove\":true}!./node_modules/vue-style-loader!./node_modules/css-loader?{\"minimize\":true,\"sourceMap\":true}!./node_modules/vue-loader/lib/style-compiler?{\"vue\":true,\"id\":\"data-v-6a982bba\",\"scoped\":true,\"hasInlineConfig\":false}!./node_modules/less-loader/dist/cjs.js?{\"sourceMap\":true}!./node_modules/vue-loader/lib/selector.js?type=styles&index=0!./src/resumes/left-right-rtl.vue\n// module id = 103\n// module chunks = 0","\n\n\n\n\n\n\n\n\n// WEBPACK FOOTER //\n// src/resumes/left-right-rtl.vue","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:\"resume\",attrs:{\"id\":\"resume1\"}},[_c('div',{staticClass:\"row text-center\"},[_c('span',{staticClass:\"name\"},[_vm._v(_vm._s(_vm.person.name.first)+\" \"+_vm._s(_vm.person.name.middle)+\" \"+_vm._s(_vm.person.name.last))])]),_vm._v(\" \"),_c('div',{staticClass:\"row text-center\"},[_c('p',{staticClass:\"position center\"},[_vm._v(_vm._s(_vm.person.position))])]),_vm._v(\" \"),_vm._m(0),_vm._v(\" \"),_c('div',{staticClass:\"left half\"},[_c('div',{staticClass:\"experience\"},[_c('h3',[_vm._v(_vm._s(_vm.lang.headings.experience))]),_vm._v(\" \"),_vm._l((_vm.person.experience),function(experience){return _c('div',{key:experience.company,staticClass:\"experience-block\"},[_c('span',{staticClass:\"company\"},[_vm._v(\" \"+_vm._s(experience.company)+\" \")]),_vm._v(\" \"),_c('span',{staticClass:\"job-title\"},[_vm._v(\" \"+_vm._s(experience.position)+\" \")]),_vm._v(\" \"),_c('span',{staticClass:\"time-period\"},[_vm._v(\" \"+_vm._s(experience.timeperiod))]),_vm._v(\" \"),_c('span',{staticClass:\"job-description\"},[_vm._v(\" \"+_vm._s(experience.description)+\" \")])])})],2),_vm._v(\" \"),_c('div',{staticClass:\"contact\"},[_c('h3',[_vm._v(_vm._s(_vm.lang.headings.contact))]),_vm._v(\" \"),_c('table',[_c('tr',[_vm._m(1),_vm._v(\" \"),_c('td',[_c('a',{attrs:{\"href\":'mailto:'+_vm.person.contact.email}},[_vm._v(_vm._s(_vm.person.contact.email))])])]),_vm._v(\" \"),_c('tr',[_vm._m(2),_vm._v(\" \"),_c('td',[_c('a',{attrs:{\"href\":'tel:'+_vm.person.contact.phone}},[_vm._v(_vm._s(_vm.person.contact.phone))])])]),_vm._v(\" \"),_c('tr',[_vm._m(3),_vm._v(\" \"),_c('td',[_vm._v(_vm._s(_vm.person.contact.street)+\" \"),_c('br'),_vm._v(\" \"+_vm._s(_vm.person.contact.city))])]),_vm._v(\" \"),(_vm.person.contact.website)?_c('tr',[_vm._m(4),_vm._v(\" \"),_c('td',[_c('a',{attrs:{\"href\":_vm.person.contact.website}},[_vm._v(_vm._s(_vm.person.contact.website))])])]):_vm._e(),_vm._v(\" \"),(_vm.person.contact.github)?_c('tr',[_vm._m(5),_vm._v(\" \"),_c('td',[_c('a',{attrs:{\"href\":'https://github.com/'+_vm.person.contact.github}},[_vm._v(\"https://github.com/\"+_vm._s(_vm.person.contact.github))])])]):_vm._e()])])]),_vm._v(\" \"),_c('div',{staticClass:\"right half\"},[_c('div',{staticClass:\"education\"},[_c('h3',[_vm._v(_vm._s(_vm.lang.headings.education))]),_vm._v(\" \"),_vm._l((_vm.person.education),function(education){return _c('div',{key:education.degree,staticClass:\"education-block\"},[_c('span',{staticClass:\"degree\"},[_vm._v(_vm._s(education.degree))]),_vm._v(\" \"),_c('span',{staticClass:\"degree-description\"},[_vm._v(_vm._s(education.description))])])})],2),_vm._v(\" \"),_c('h3',[_vm._v(_vm._s(_vm.lang.headings.skills))]),_vm._v(\" \"),_c('div',{staticClass:\"skills\"},_vm._l((_vm.person.skills),function(skill){return _c('div',{key:skill.name,staticClass:\"skill-block\"},[_c('span',{staticClass:\"skill\"},[_vm._v(_vm._s(skill.name))]),_vm._v(\" \"),_c('div',{staticClass:\"skill-bar\"},[_c('div',{staticClass:\"level\",style:('width: '+skill.level+'%')})])])})),_vm._v(\" \"),_c('span',{staticClass:\"skills-other\"},[_vm._v(\" \"+_vm._s(_vm.person.skillDescription)+\" \")])])])}\nvar staticRenderFns = [function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:\"row\"},[_c('div',{staticClass:\"image center\"},[_c('div',{staticClass:\"img\"})])])},function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('td',[_c('i',{staticClass:\"fa fa-envelope\",attrs:{\"aria-hidden\":\"true\"}})])},function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('td',[_c('i',{staticClass:\"fa fa-phone\",attrs:{\"aria-hidden\":\"true\"}})])},function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('td',[_c('i',{staticClass:\"fa fa-home\",attrs:{\"aria-hidden\":\"true\"}})])},function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('td',[_c('i',{staticClass:\"fa fa-globe\",attrs:{\"aria-hidden\":\"true\"}})])},function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('td',[_c('i',{staticClass:\"fa fa-github\",attrs:{\"aria-hidden\":\"true\"}})])}]\nvar esExports = { render: render, staticRenderFns: staticRenderFns }\nexport default esExports\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/vue-loader/lib/template-compiler?{\"id\":\"data-v-6a982bba\",\"hasScoped\":true,\"buble\":{\"transforms\":{}}}!./node_modules/vue-loader/lib/selector.js?type=template&index=0!./src/resumes/left-right-rtl.vue\n// module id = 105\n// module chunks = 0","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:\"page-wrapper\"},[_c('div',{staticClass:\"page\",attrs:{\"id\":_vm.$route.params.resumeid}},[_c('div',{staticClass:\"page-inner\"},[_c(_vm.$route.params.resumeid,{tag:\"component\"})],1)])])}\nvar staticRenderFns = []\nvar esExports = { render: render, staticRenderFns: staticRenderFns }\nexport default esExports\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/vue-loader/lib/template-compiler?{\"id\":\"data-v-a4e9d902\",\"hasScoped\":true,\"buble\":{\"transforms\":{}}}!./node_modules/vue-loader/lib/selector.js?type=template&index=0!./src/pages/resume.vue\n// module id = 106\n// module chunks = 0","function injectStyle (ssrContext) {\n require(\"!!../../node_modules/extract-text-webpack-plugin/dist/loader.js?{\\\"omit\\\":1,\\\"remove\\\":true}!vue-style-loader!css-loader?{\\\"minimize\\\":true,\\\"sourceMap\\\":true}!../../node_modules/vue-loader/lib/style-compiler/index?{\\\"vue\\\":true,\\\"id\\\":\\\"data-v-d7e5c49e\\\",\\\"scoped\\\":true,\\\"hasInlineConfig\\\":false}!../../node_modules/vue-loader/lib/selector?type=styles&index=0!./home.vue\")\n}\nvar normalizeComponent = require(\"!../../node_modules/vue-loader/lib/component-normalizer\")\n/* script */\nimport __vue_script__ from \"!!babel-loader!../../node_modules/vue-loader/lib/selector?type=script&index=0!./home.vue\"\n/* template */\nimport __vue_template__ from \"!!../../node_modules/vue-loader/lib/template-compiler/index?{\\\"id\\\":\\\"data-v-d7e5c49e\\\",\\\"hasScoped\\\":true,\\\"buble\\\":{\\\"transforms\\\":{}}}!../../node_modules/vue-loader/lib/selector?type=template&index=0!./home.vue\"\n/* template functional */\n var __vue_template_functional__ = false\n/* styles */\nvar __vue_styles__ = injectStyle\n/* scopeId */\nvar __vue_scopeId__ = \"data-v-d7e5c49e\"\n/* moduleIdentifier (server only) */\nvar __vue_module_identifier__ = null\nvar Component = normalizeComponent(\n __vue_script__,\n __vue_template__,\n __vue_template_functional__,\n __vue_styles__,\n __vue_scopeId__,\n __vue_module_identifier__\n)\n\nexport default Component.exports\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./src/pages/home.vue\n// module id = 107\n// module chunks = 0","// removed by extract-text-webpack-plugin\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/extract-text-webpack-plugin/dist/loader.js?{\"omit\":1,\"remove\":true}!./node_modules/vue-style-loader!./node_modules/css-loader?{\"minimize\":true,\"sourceMap\":true}!./node_modules/vue-loader/lib/style-compiler?{\"vue\":true,\"id\":\"data-v-d7e5c49e\",\"scoped\":true,\"hasInlineConfig\":false}!./node_modules/vue-loader/lib/selector.js?type=styles&index=0!./src/pages/home.vue\n// module id = 108\n// module chunks = 0","\n\n\n\n\n\n\n\n// WEBPACK FOOTER //\n// src/pages/home.vue","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:\"home\"},[_vm._m(0),_vm._v(\" \"),_vm._m(1),_vm._v(\" \"),_c('h3',{staticClass:\"title\"},[_vm._v(\"best-resume-ever\")]),_vm._v(\" \"),_c('div',{staticClass:\"previews\"},[_c('div',{staticClass:\"preview\"},[_c('router-link',{attrs:{\"to\":'/resume/material-dark'}},[_c('div',{staticClass:\"preview-wrapper\"},[_c('img',{attrs:{\"src\":require(\"../assets/preview/resume-material-dark.png\")}}),_vm._v(\" \"),_c('span',[_vm._v(\"material-dark\")])])])],1),_vm._v(\" \"),_c('div',{staticClass:\"preview\"},[_c('router-link',{attrs:{\"to\":'/resume/left-right'}},[_c('div',{staticClass:\"preview-wrapper\"},[_c('img',{attrs:{\"src\":require(\"../assets/preview/resume-left-right.png\")}}),_vm._v(\" \"),_c('span',[_vm._v(\"left-right\")])])])],1),_vm._v(\" \"),_c('div',{staticClass:\"preview\"},[_c('router-link',{attrs:{\"to\":'/resume/oblique'}},[_c('div',{staticClass:\"preview-wrapper\"},[_c('img',{attrs:{\"src\":require(\"../assets/preview/resume-oblique.png\")}}),_vm._v(\" \"),_c('span',[_vm._v(\"oblique\")])])])],1),_vm._v(\" \"),_c('div',{staticClass:\"preview\"},[_c('router-link',{attrs:{\"to\":'/resume/side-bar'}},[_c('div',{staticClass:\"preview-wrapper\"},[_c('img',{attrs:{\"src\":require(\"../assets/preview/resume-side-bar.png\")}}),_vm._v(\" \"),_c('span',[_vm._v(\"side-bar\")])])])],1),_vm._v(\" \"),_c('div',{staticClass:\"preview\"},[_c('router-link',{attrs:{\"to\":'/resume/purple'}},[_c('div',{staticClass:\"preview-wrapper\"},[_c('img',{attrs:{\"src\":require(\"../assets/preview/resume-purple.png\")}}),_vm._v(\" \"),_c('span',[_vm._v(\"purple\")])])])],1),_vm._v(\" \"),_c('div',{staticClass:\"preview\"},[_c('router-link',{attrs:{\"to\":'/resume/side-bar-rtl'}},[_c('div',{staticClass:\"preview-wrapper\"},[_c('img',{attrs:{\"src\":require(\"../assets/preview/resume-side-bar-rtl.png\")}}),_vm._v(\" \"),_c('span',[_vm._v(\"side-bar-rtl\")])])])],1),_vm._v(\" \"),_c('div',{staticClass:\"preview\"},[_c('router-link',{attrs:{\"to\":'/resume/left-right-rtl'}},[_c('div',{staticClass:\"preview-wrapper\"},[_c('img',{attrs:{\"src\":require(\"../assets/preview/resume-left-right-rtl.png\")}}),_vm._v(\" \"),_c('span',[_vm._v(\"left-right-rtl\")])])])],1)])])}\nvar staticRenderFns = [function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('a',{attrs:{\"href\":\"https://github.com/salomonelli/best-resume-ever\",\"target\":\"_blank\"}},[_c('img',{staticStyle:{\"position\":\"absolute\",\"top\":\"0\",\"right\":\"0\",\"border\":\"0\"},attrs:{\"src\":\"https://camo.githubusercontent.com/38ef81f8aca64bb9a64448d0d70f1308ef5341ab/68747470733a2f2f73332e616d617a6f6e6177732e636f6d2f6769746875622f726962626f6e732f666f726b6d655f72696768745f6461726b626c75655f3132313632312e706e67\",\"alt\":\"Fork me on GitHub\",\"data-canonical-src\":\"https://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png\"}})])},function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:\"logo\"},[_c('img',{attrs:{\"src\":require(\"../assets/logo.png\")}})])}]\nvar esExports = { render: render, staticRenderFns: staticRenderFns }\nexport default esExports\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/vue-loader/lib/template-compiler?{\"id\":\"data-v-d7e5c49e\",\"hasScoped\":true,\"buble\":{\"transforms\":{}}}!./node_modules/vue-loader/lib/selector.js?type=template&index=0!./src/pages/home.vue\n// module id = 110\n// module chunks = 0","module.exports = __webpack_public_path__ + \"static/img/resume-material-dark.722cd11.png\";\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./src/assets/preview/resume-material-dark.png\n// module id = 111\n// module chunks = 0","module.exports = __webpack_public_path__ + \"static/img/resume-left-right.4ba1e85.png\";\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./src/assets/preview/resume-left-right.png\n// module id = 112\n// module chunks = 0","module.exports = __webpack_public_path__ + \"static/img/resume-oblique.a02cfe1.png\";\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./src/assets/preview/resume-oblique.png\n// module id = 113\n// module chunks = 0","module.exports = __webpack_public_path__ + \"static/img/resume-side-bar.f99c742.png\";\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./src/assets/preview/resume-side-bar.png\n// module id = 114\n// module chunks = 0","module.exports = __webpack_public_path__ + \"static/img/resume-purple.6c93c28.png\";\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./src/assets/preview/resume-purple.png\n// module id = 115\n// module chunks = 0","module.exports = __webpack_public_path__ + \"static/img/resume-side-bar-rtl.abd6c1a.png\";\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./src/assets/preview/resume-side-bar-rtl.png\n// module id = 116\n// module chunks = 0","module.exports = __webpack_public_path__ + \"static/img/resume-left-right-rtl.75f8068.png\";\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./src/assets/preview/resume-left-right-rtl.png\n// module id = 117\n// module chunks = 0","module.exports = __webpack_public_path__ + \"static/img/logo.1522a48.png\";\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./src/assets/logo.png\n// module id = 118\n// module chunks = 0"],"sourceRoot":""} \ No newline at end of file diff --git a/docs/static/js/manifest.9e85fafdfbbcf91af5e7.js b/docs/static/js/manifest.9e85fafdfbbcf91af5e7.js deleted file mode 100644 index 8129ddc..0000000 --- a/docs/static/js/manifest.9e85fafdfbbcf91af5e7.js +++ /dev/null @@ -1,2 +0,0 @@ -!function(e){function r(n){if(t[n])return t[n].exports;var o=t[n]={i:n,l:!1,exports:{}};return e[n].call(o.exports,o,o.exports,r),o.l=!0,o.exports}var n=window.webpackJsonp;window.webpackJsonp=function(t,c,a){for(var u,i,f,s=0,l=[];s= 0 && Math.floor(n) === n && isFinite(val) +} + +/** + * Convert a value to a string that is actually rendered. + */ +function toString (val) { + return val == null + ? '' + : typeof val === 'object' + ? JSON.stringify(val, null, 2) + : String(val) +} + +/** + * Convert a input value to a number for persistence. + * If the conversion fails, return original string. + */ +function toNumber (val) { + var n = parseFloat(val); + return isNaN(n) ? val : n +} + +/** + * Make a map and return a function for checking if a key + * is in that map. + */ +function makeMap ( + str, + expectsLowerCase +) { + var map = Object.create(null); + var list = str.split(','); + for (var i = 0; i < list.length; i++) { + map[list[i]] = true; + } + return expectsLowerCase + ? function (val) { return map[val.toLowerCase()]; } + : function (val) { return map[val]; } +} + +/** + * Check if a tag is a built-in tag. + */ +var isBuiltInTag = makeMap('slot,component', true); + +/** + * Check if a attribute is a reserved attribute. + */ +var isReservedAttribute = makeMap('key,ref,slot,slot-scope,is'); + +/** + * Remove an item from an array + */ +function remove (arr, item) { + if (arr.length) { + var index = arr.indexOf(item); + if (index > -1) { + return arr.splice(index, 1) + } + } +} + +/** + * Check whether the object has the property. + */ +var hasOwnProperty = Object.prototype.hasOwnProperty; +function hasOwn (obj, key) { + return hasOwnProperty.call(obj, key) +} + +/** + * Create a cached version of a pure function. + */ +function cached (fn) { + var cache = Object.create(null); + return (function cachedFn (str) { + var hit = cache[str]; + return hit || (cache[str] = fn(str)) + }) +} + +/** + * Camelize a hyphen-delimited string. + */ +var camelizeRE = /-(\w)/g; +var camelize = cached(function (str) { + return str.replace(camelizeRE, function (_, c) { return c ? c.toUpperCase() : ''; }) +}); + +/** + * Capitalize a string. + */ +var capitalize = cached(function (str) { + return str.charAt(0).toUpperCase() + str.slice(1) +}); + +/** + * Hyphenate a camelCase string. + */ +var hyphenateRE = /\B([A-Z])/g; +var hyphenate = cached(function (str) { + return str.replace(hyphenateRE, '-$1').toLowerCase() +}); + +/** + * Simple bind, faster than native + */ +function bind (fn, ctx) { + function boundFn (a) { + var l = arguments.length; + return l + ? l > 1 + ? fn.apply(ctx, arguments) + : fn.call(ctx, a) + : fn.call(ctx) + } + // record original fn length + boundFn._length = fn.length; + return boundFn +} + +/** + * Convert an Array-like object to a real Array. + */ +function toArray (list, start) { + start = start || 0; + var i = list.length - start; + var ret = new Array(i); + while (i--) { + ret[i] = list[i + start]; + } + return ret +} + +/** + * Mix properties into target object. + */ +function extend (to, _from) { + for (var key in _from) { + to[key] = _from[key]; + } + return to +} + +/** + * Merge an Array of Objects into a single Object. + */ +function toObject (arr) { + var res = {}; + for (var i = 0; i < arr.length; i++) { + if (arr[i]) { + extend(res, arr[i]); + } + } + return res +} + +/** + * Perform no operation. + * Stubbing args to make Flow happy without leaving useless transpiled code + * with ...rest (https://flow.org/blog/2017/05/07/Strict-Function-Call-Arity/) + */ +function noop (a, b, c) {} + +/** + * Always return false. + */ +var no = function (a, b, c) { return false; }; + +/** + * Return same value + */ +var identity = function (_) { return _; }; + +/** + * Generate a static keys string from compiler modules. + */ +function genStaticKeys (modules) { + return modules.reduce(function (keys, m) { + return keys.concat(m.staticKeys || []) + }, []).join(',') +} + +/** + * Check if two values are loosely equal - that is, + * if they are plain objects, do they have the same shape? + */ +function looseEqual (a, b) { + if (a === b) { return true } + var isObjectA = isObject(a); + var isObjectB = isObject(b); + if (isObjectA && isObjectB) { + try { + var isArrayA = Array.isArray(a); + var isArrayB = Array.isArray(b); + if (isArrayA && isArrayB) { + return a.length === b.length && a.every(function (e, i) { + return looseEqual(e, b[i]) + }) + } else if (!isArrayA && !isArrayB) { + var keysA = Object.keys(a); + var keysB = Object.keys(b); + return keysA.length === keysB.length && keysA.every(function (key) { + return looseEqual(a[key], b[key]) + }) + } else { + /* istanbul ignore next */ + return false + } + } catch (e) { + /* istanbul ignore next */ + return false + } + } else if (!isObjectA && !isObjectB) { + return String(a) === String(b) + } else { + return false + } +} + +function looseIndexOf (arr, val) { + for (var i = 0; i < arr.length; i++) { + if (looseEqual(arr[i], val)) { return i } + } + return -1 +} + +/** + * Ensure a function is called only once. + */ +function once (fn) { + var called = false; + return function () { + if (!called) { + called = true; + fn.apply(this, arguments); + } + } +} + +var SSR_ATTR = 'data-server-rendered'; + +var ASSET_TYPES = [ + 'component', + 'directive', + 'filter' +]; + +var LIFECYCLE_HOOKS = [ + 'beforeCreate', + 'created', + 'beforeMount', + 'mounted', + 'beforeUpdate', + 'updated', + 'beforeDestroy', + 'destroyed', + 'activated', + 'deactivated', + 'errorCaptured' +]; + +/* */ + +var config = ({ + /** + * Option merge strategies (used in core/util/options) + */ + // $flow-disable-line + optionMergeStrategies: Object.create(null), + + /** + * Whether to suppress warnings. + */ + silent: false, + + /** + * Show production mode tip message on boot? + */ + productionTip: "production" !== 'production', + + /** + * Whether to enable devtools + */ + devtools: "production" !== 'production', + + /** + * Whether to record perf + */ + performance: false, + + /** + * Error handler for watcher errors + */ + errorHandler: null, + + /** + * Warn handler for watcher warns + */ + warnHandler: null, + + /** + * Ignore certain custom elements + */ + ignoredElements: [], + + /** + * Custom user key aliases for v-on + */ + // $flow-disable-line + keyCodes: Object.create(null), + + /** + * Check if a tag is reserved so that it cannot be registered as a + * component. This is platform-dependent and may be overwritten. + */ + isReservedTag: no, + + /** + * Check if an attribute is reserved so that it cannot be used as a component + * prop. This is platform-dependent and may be overwritten. + */ + isReservedAttr: no, + + /** + * Check if a tag is an unknown element. + * Platform-dependent. + */ + isUnknownElement: no, + + /** + * Get the namespace of an element + */ + getTagNamespace: noop, + + /** + * Parse the real tag name for the specific platform. + */ + parsePlatformTagName: identity, + + /** + * Check if an attribute must be bound using property, e.g. value + * Platform-dependent. + */ + mustUseProp: no, + + /** + * Exposed for legacy reasons + */ + _lifecycleHooks: LIFECYCLE_HOOKS +}); + +/* */ + +/** + * Check if a string starts with $ or _ + */ +function isReserved (str) { + var c = (str + '').charCodeAt(0); + return c === 0x24 || c === 0x5F +} + +/** + * Define a property. + */ +function def (obj, key, val, enumerable) { + Object.defineProperty(obj, key, { + value: val, + enumerable: !!enumerable, + writable: true, + configurable: true + }); +} + +/** + * Parse simple path. + */ +var bailRE = /[^\w.$]/; +function parsePath (path) { + if (bailRE.test(path)) { + return + } + var segments = path.split('.'); + return function (obj) { + for (var i = 0; i < segments.length; i++) { + if (!obj) { return } + obj = obj[segments[i]]; + } + return obj + } +} + +/* */ + + +// can we use __proto__? +var hasProto = '__proto__' in {}; + +// Browser environment sniffing +var inBrowser = typeof window !== 'undefined'; +var inWeex = typeof WXEnvironment !== 'undefined' && !!WXEnvironment.platform; +var weexPlatform = inWeex && WXEnvironment.platform.toLowerCase(); +var UA = inBrowser && window.navigator.userAgent.toLowerCase(); +var isIE = UA && /msie|trident/.test(UA); +var isIE9 = UA && UA.indexOf('msie 9.0') > 0; +var isEdge = UA && UA.indexOf('edge/') > 0; +var isAndroid = (UA && UA.indexOf('android') > 0) || (weexPlatform === 'android'); +var isIOS = (UA && /iphone|ipad|ipod|ios/.test(UA)) || (weexPlatform === 'ios'); +var isChrome = UA && /chrome\/\d+/.test(UA) && !isEdge; + +// Firefox has a "watch" function on Object.prototype... +var nativeWatch = ({}).watch; + +var supportsPassive = false; +if (inBrowser) { + try { + var opts = {}; + Object.defineProperty(opts, 'passive', ({ + get: function get () { + /* istanbul ignore next */ + supportsPassive = true; + } + })); // https://github.com/facebook/flow/issues/285 + window.addEventListener('test-passive', null, opts); + } catch (e) {} +} + +// this needs to be lazy-evaled because vue may be required before +// vue-server-renderer can set VUE_ENV +var _isServer; +var isServerRendering = function () { + if (_isServer === undefined) { + /* istanbul ignore if */ + if (!inBrowser && typeof global !== 'undefined') { + // detect presence of vue-server-renderer and avoid + // Webpack shimming the process + _isServer = global['process'].env.VUE_ENV === 'server'; + } else { + _isServer = false; + } + } + return _isServer +}; + +// detect devtools +var devtools = inBrowser && window.__VUE_DEVTOOLS_GLOBAL_HOOK__; + +/* istanbul ignore next */ +function isNative (Ctor) { + return typeof Ctor === 'function' && /native code/.test(Ctor.toString()) +} + +var hasSymbol = + typeof Symbol !== 'undefined' && isNative(Symbol) && + typeof Reflect !== 'undefined' && isNative(Reflect.ownKeys); + +var _Set; +/* istanbul ignore if */ // $flow-disable-line +if (typeof Set !== 'undefined' && isNative(Set)) { + // use native Set when available. + _Set = Set; +} else { + // a non-standard Set polyfill that only works with primitive keys. + _Set = (function () { + function Set () { + this.set = Object.create(null); + } + Set.prototype.has = function has (key) { + return this.set[key] === true + }; + Set.prototype.add = function add (key) { + this.set[key] = true; + }; + Set.prototype.clear = function clear () { + this.set = Object.create(null); + }; + + return Set; + }()); +} + +/* */ + +var warn = noop; +var tip = noop; +var generateComponentTrace = (noop); // work around flow check +var formatComponentName = (noop); + +if (false) { + var hasConsole = typeof console !== 'undefined'; + var classifyRE = /(?:^|[-_])(\w)/g; + var classify = function (str) { return str + .replace(classifyRE, function (c) { return c.toUpperCase(); }) + .replace(/[-_]/g, ''); }; + + warn = function (msg, vm) { + var trace = vm ? generateComponentTrace(vm) : ''; + + if (config.warnHandler) { + config.warnHandler.call(null, msg, vm, trace); + } else if (hasConsole && (!config.silent)) { + console.error(("[Vue warn]: " + msg + trace)); + } + }; + + tip = function (msg, vm) { + if (hasConsole && (!config.silent)) { + console.warn("[Vue tip]: " + msg + ( + vm ? generateComponentTrace(vm) : '' + )); + } + }; + + formatComponentName = function (vm, includeFile) { + if (vm.$root === vm) { + return '' + } + var options = typeof vm === 'function' && vm.cid != null + ? vm.options + : vm._isVue + ? vm.$options || vm.constructor.options + : vm || {}; + var name = options.name || options._componentTag; + var file = options.__file; + if (!name && file) { + var match = file.match(/([^/\\]+)\.vue$/); + name = match && match[1]; + } + + return ( + (name ? ("<" + (classify(name)) + ">") : "") + + (file && includeFile !== false ? (" at " + file) : '') + ) + }; + + var repeat = function (str, n) { + var res = ''; + while (n) { + if (n % 2 === 1) { res += str; } + if (n > 1) { str += str; } + n >>= 1; + } + return res + }; + + generateComponentTrace = function (vm) { + if (vm._isVue && vm.$parent) { + var tree = []; + var currentRecursiveSequence = 0; + while (vm) { + if (tree.length > 0) { + var last = tree[tree.length - 1]; + if (last.constructor === vm.constructor) { + currentRecursiveSequence++; + vm = vm.$parent; + continue + } else if (currentRecursiveSequence > 0) { + tree[tree.length - 1] = [last, currentRecursiveSequence]; + currentRecursiveSequence = 0; + } + } + tree.push(vm); + vm = vm.$parent; + } + return '\n\nfound in\n\n' + tree + .map(function (vm, i) { return ("" + (i === 0 ? '---> ' : repeat(' ', 5 + i * 2)) + (Array.isArray(vm) + ? ((formatComponentName(vm[0])) + "... (" + (vm[1]) + " recursive calls)") + : formatComponentName(vm))); }) + .join('\n') + } else { + return ("\n\n(found in " + (formatComponentName(vm)) + ")") + } + }; +} + +/* */ + + +var uid = 0; + +/** + * A dep is an observable that can have multiple + * directives subscribing to it. + */ +var Dep = function Dep () { + this.id = uid++; + this.subs = []; +}; + +Dep.prototype.addSub = function addSub (sub) { + this.subs.push(sub); +}; + +Dep.prototype.removeSub = function removeSub (sub) { + remove(this.subs, sub); +}; + +Dep.prototype.depend = function depend () { + if (Dep.target) { + Dep.target.addDep(this); + } +}; + +Dep.prototype.notify = function notify () { + // stabilize the subscriber list first + var subs = this.subs.slice(); + for (var i = 0, l = subs.length; i < l; i++) { + subs[i].update(); + } +}; + +// the current target watcher being evaluated. +// this is globally unique because there could be only one +// watcher being evaluated at any time. +Dep.target = null; +var targetStack = []; + +function pushTarget (_target) { + if (Dep.target) { targetStack.push(Dep.target); } + Dep.target = _target; +} + +function popTarget () { + Dep.target = targetStack.pop(); +} + +/* */ + +var VNode = function VNode ( + tag, + data, + children, + text, + elm, + context, + componentOptions, + asyncFactory +) { + this.tag = tag; + this.data = data; + this.children = children; + this.text = text; + this.elm = elm; + this.ns = undefined; + this.context = context; + this.fnContext = undefined; + this.fnOptions = undefined; + this.fnScopeId = undefined; + this.key = data && data.key; + this.componentOptions = componentOptions; + this.componentInstance = undefined; + this.parent = undefined; + this.raw = false; + this.isStatic = false; + this.isRootInsert = true; + this.isComment = false; + this.isCloned = false; + this.isOnce = false; + this.asyncFactory = asyncFactory; + this.asyncMeta = undefined; + this.isAsyncPlaceholder = false; +}; + +var prototypeAccessors = { child: { configurable: true } }; + +// DEPRECATED: alias for componentInstance for backwards compat. +/* istanbul ignore next */ +prototypeAccessors.child.get = function () { + return this.componentInstance +}; + +Object.defineProperties( VNode.prototype, prototypeAccessors ); + +var createEmptyVNode = function (text) { + if ( text === void 0 ) text = ''; + + var node = new VNode(); + node.text = text; + node.isComment = true; + return node +}; + +function createTextVNode (val) { + return new VNode(undefined, undefined, undefined, String(val)) +} + +// optimized shallow clone +// used for static nodes and slot nodes because they may be reused across +// multiple renders, cloning them avoids errors when DOM manipulations rely +// on their elm reference. +function cloneVNode (vnode, deep) { + var componentOptions = vnode.componentOptions; + var cloned = new VNode( + vnode.tag, + vnode.data, + vnode.children, + vnode.text, + vnode.elm, + vnode.context, + componentOptions, + vnode.asyncFactory + ); + cloned.ns = vnode.ns; + cloned.isStatic = vnode.isStatic; + cloned.key = vnode.key; + cloned.isComment = vnode.isComment; + cloned.fnContext = vnode.fnContext; + cloned.fnOptions = vnode.fnOptions; + cloned.fnScopeId = vnode.fnScopeId; + cloned.isCloned = true; + if (deep) { + if (vnode.children) { + cloned.children = cloneVNodes(vnode.children, true); + } + if (componentOptions && componentOptions.children) { + componentOptions.children = cloneVNodes(componentOptions.children, true); + } + } + return cloned +} + +function cloneVNodes (vnodes, deep) { + var len = vnodes.length; + var res = new Array(len); + for (var i = 0; i < len; i++) { + res[i] = cloneVNode(vnodes[i], deep); + } + return res +} + +/* + * not type checking this file because flow doesn't play well with + * dynamically accessing methods on Array prototype + */ + +var arrayProto = Array.prototype; +var arrayMethods = Object.create(arrayProto);[ + 'push', + 'pop', + 'shift', + 'unshift', + 'splice', + 'sort', + 'reverse' +].forEach(function (method) { + // cache original method + var original = arrayProto[method]; + def(arrayMethods, method, function mutator () { + var args = [], len = arguments.length; + while ( len-- ) args[ len ] = arguments[ len ]; + + var result = original.apply(this, args); + var ob = this.__ob__; + var inserted; + switch (method) { + case 'push': + case 'unshift': + inserted = args; + break + case 'splice': + inserted = args.slice(2); + break + } + if (inserted) { ob.observeArray(inserted); } + // notify change + ob.dep.notify(); + return result + }); +}); + +/* */ + +var arrayKeys = Object.getOwnPropertyNames(arrayMethods); + +/** + * By default, when a reactive property is set, the new value is + * also converted to become reactive. However when passing down props, + * we don't want to force conversion because the value may be a nested value + * under a frozen data structure. Converting it would defeat the optimization. + */ +var observerState = { + shouldConvert: true +}; + +/** + * Observer class that are attached to each observed + * object. Once attached, the observer converts target + * object's property keys into getter/setters that + * collect dependencies and dispatches updates. + */ +var Observer = function Observer (value) { + this.value = value; + this.dep = new Dep(); + this.vmCount = 0; + def(value, '__ob__', this); + if (Array.isArray(value)) { + var augment = hasProto + ? protoAugment + : copyAugment; + augment(value, arrayMethods, arrayKeys); + this.observeArray(value); + } else { + this.walk(value); + } +}; + +/** + * Walk through each property and convert them into + * getter/setters. This method should only be called when + * value type is Object. + */ +Observer.prototype.walk = function walk (obj) { + var keys = Object.keys(obj); + for (var i = 0; i < keys.length; i++) { + defineReactive(obj, keys[i], obj[keys[i]]); + } +}; + +/** + * Observe a list of Array items. + */ +Observer.prototype.observeArray = function observeArray (items) { + for (var i = 0, l = items.length; i < l; i++) { + observe(items[i]); + } +}; + +// helpers + +/** + * Augment an target Object or Array by intercepting + * the prototype chain using __proto__ + */ +function protoAugment (target, src, keys) { + /* eslint-disable no-proto */ + target.__proto__ = src; + /* eslint-enable no-proto */ +} + +/** + * Augment an target Object or Array by defining + * hidden properties. + */ +/* istanbul ignore next */ +function copyAugment (target, src, keys) { + for (var i = 0, l = keys.length; i < l; i++) { + var key = keys[i]; + def(target, key, src[key]); + } +} + +/** + * Attempt to create an observer instance for a value, + * returns the new observer if successfully observed, + * or the existing observer if the value already has one. + */ +function observe (value, asRootData) { + if (!isObject(value) || value instanceof VNode) { + return + } + var ob; + if (hasOwn(value, '__ob__') && value.__ob__ instanceof Observer) { + ob = value.__ob__; + } else if ( + observerState.shouldConvert && + !isServerRendering() && + (Array.isArray(value) || isPlainObject(value)) && + Object.isExtensible(value) && + !value._isVue + ) { + ob = new Observer(value); + } + if (asRootData && ob) { + ob.vmCount++; + } + return ob +} + +/** + * Define a reactive property on an Object. + */ +function defineReactive ( + obj, + key, + val, + customSetter, + shallow +) { + var dep = new Dep(); + + var property = Object.getOwnPropertyDescriptor(obj, key); + if (property && property.configurable === false) { + return + } + + // cater for pre-defined getter/setters + var getter = property && property.get; + var setter = property && property.set; + + var childOb = !shallow && observe(val); + Object.defineProperty(obj, key, { + enumerable: true, + configurable: true, + get: function reactiveGetter () { + var value = getter ? getter.call(obj) : val; + if (Dep.target) { + dep.depend(); + if (childOb) { + childOb.dep.depend(); + if (Array.isArray(value)) { + dependArray(value); + } + } + } + return value + }, + set: function reactiveSetter (newVal) { + var value = getter ? getter.call(obj) : val; + /* eslint-disable no-self-compare */ + if (newVal === value || (newVal !== newVal && value !== value)) { + return + } + /* eslint-enable no-self-compare */ + if (false) { + customSetter(); + } + if (setter) { + setter.call(obj, newVal); + } else { + val = newVal; + } + childOb = !shallow && observe(newVal); + dep.notify(); + } + }); +} + +/** + * Set a property on an object. Adds the new property and + * triggers change notification if the property doesn't + * already exist. + */ +function set (target, key, val) { + if (Array.isArray(target) && isValidArrayIndex(key)) { + target.length = Math.max(target.length, key); + target.splice(key, 1, val); + return val + } + if (key in target && !(key in Object.prototype)) { + target[key] = val; + return val + } + var ob = (target).__ob__; + if (target._isVue || (ob && ob.vmCount)) { + "production" !== 'production' && warn( + 'Avoid adding reactive properties to a Vue instance or its root $data ' + + 'at runtime - declare it upfront in the data option.' + ); + return val + } + if (!ob) { + target[key] = val; + return val + } + defineReactive(ob.value, key, val); + ob.dep.notify(); + return val +} + +/** + * Delete a property and trigger change if necessary. + */ +function del (target, key) { + if (Array.isArray(target) && isValidArrayIndex(key)) { + target.splice(key, 1); + return + } + var ob = (target).__ob__; + if (target._isVue || (ob && ob.vmCount)) { + "production" !== 'production' && warn( + 'Avoid deleting properties on a Vue instance or its root $data ' + + '- just set it to null.' + ); + return + } + if (!hasOwn(target, key)) { + return + } + delete target[key]; + if (!ob) { + return + } + ob.dep.notify(); +} + +/** + * Collect dependencies on array elements when the array is touched, since + * we cannot intercept array element access like property getters. + */ +function dependArray (value) { + for (var e = (void 0), i = 0, l = value.length; i < l; i++) { + e = value[i]; + e && e.__ob__ && e.__ob__.dep.depend(); + if (Array.isArray(e)) { + dependArray(e); + } + } +} + +/* */ + +/** + * Option overwriting strategies are functions that handle + * how to merge a parent option value and a child option + * value into the final value. + */ +var strats = config.optionMergeStrategies; + +/** + * Options with restrictions + */ +if (false) { + strats.el = strats.propsData = function (parent, child, vm, key) { + if (!vm) { + warn( + "option \"" + key + "\" can only be used during instance " + + 'creation with the `new` keyword.' + ); + } + return defaultStrat(parent, child) + }; +} + +/** + * Helper that recursively merges two data objects together. + */ +function mergeData (to, from) { + if (!from) { return to } + var key, toVal, fromVal; + var keys = Object.keys(from); + for (var i = 0; i < keys.length; i++) { + key = keys[i]; + toVal = to[key]; + fromVal = from[key]; + if (!hasOwn(to, key)) { + set(to, key, fromVal); + } else if (isPlainObject(toVal) && isPlainObject(fromVal)) { + mergeData(toVal, fromVal); + } + } + return to +} + +/** + * Data + */ +function mergeDataOrFn ( + parentVal, + childVal, + vm +) { + if (!vm) { + // in a Vue.extend merge, both should be functions + if (!childVal) { + return parentVal + } + if (!parentVal) { + return childVal + } + // when parentVal & childVal are both present, + // we need to return a function that returns the + // merged result of both functions... no need to + // check if parentVal is a function here because + // it has to be a function to pass previous merges. + return function mergedDataFn () { + return mergeData( + typeof childVal === 'function' ? childVal.call(this, this) : childVal, + typeof parentVal === 'function' ? parentVal.call(this, this) : parentVal + ) + } + } else { + return function mergedInstanceDataFn () { + // instance merge + var instanceData = typeof childVal === 'function' + ? childVal.call(vm, vm) + : childVal; + var defaultData = typeof parentVal === 'function' + ? parentVal.call(vm, vm) + : parentVal; + if (instanceData) { + return mergeData(instanceData, defaultData) + } else { + return defaultData + } + } + } +} + +strats.data = function ( + parentVal, + childVal, + vm +) { + if (!vm) { + if (childVal && typeof childVal !== 'function') { + "production" !== 'production' && warn( + 'The "data" option should be a function ' + + 'that returns a per-instance value in component ' + + 'definitions.', + vm + ); + + return parentVal + } + return mergeDataOrFn(parentVal, childVal) + } + + return mergeDataOrFn(parentVal, childVal, vm) +}; + +/** + * Hooks and props are merged as arrays. + */ +function mergeHook ( + parentVal, + childVal +) { + return childVal + ? parentVal + ? parentVal.concat(childVal) + : Array.isArray(childVal) + ? childVal + : [childVal] + : parentVal +} + +LIFECYCLE_HOOKS.forEach(function (hook) { + strats[hook] = mergeHook; +}); + +/** + * Assets + * + * When a vm is present (instance creation), we need to do + * a three-way merge between constructor options, instance + * options and parent options. + */ +function mergeAssets ( + parentVal, + childVal, + vm, + key +) { + var res = Object.create(parentVal || null); + if (childVal) { + "production" !== 'production' && assertObjectType(key, childVal, vm); + return extend(res, childVal) + } else { + return res + } +} + +ASSET_TYPES.forEach(function (type) { + strats[type + 's'] = mergeAssets; +}); + +/** + * Watchers. + * + * Watchers hashes should not overwrite one + * another, so we merge them as arrays. + */ +strats.watch = function ( + parentVal, + childVal, + vm, + key +) { + // work around Firefox's Object.prototype.watch... + if (parentVal === nativeWatch) { parentVal = undefined; } + if (childVal === nativeWatch) { childVal = undefined; } + /* istanbul ignore if */ + if (!childVal) { return Object.create(parentVal || null) } + if (false) { + assertObjectType(key, childVal, vm); + } + if (!parentVal) { return childVal } + var ret = {}; + extend(ret, parentVal); + for (var key$1 in childVal) { + var parent = ret[key$1]; + var child = childVal[key$1]; + if (parent && !Array.isArray(parent)) { + parent = [parent]; + } + ret[key$1] = parent + ? parent.concat(child) + : Array.isArray(child) ? child : [child]; + } + return ret +}; + +/** + * Other object hashes. + */ +strats.props = +strats.methods = +strats.inject = +strats.computed = function ( + parentVal, + childVal, + vm, + key +) { + if (childVal && "production" !== 'production') { + assertObjectType(key, childVal, vm); + } + if (!parentVal) { return childVal } + var ret = Object.create(null); + extend(ret, parentVal); + if (childVal) { extend(ret, childVal); } + return ret +}; +strats.provide = mergeDataOrFn; + +/** + * Default strategy. + */ +var defaultStrat = function (parentVal, childVal) { + return childVal === undefined + ? parentVal + : childVal +}; + +/** + * Validate component names + */ +function checkComponents (options) { + for (var key in options.components) { + validateComponentName(key); + } +} + +function validateComponentName (name) { + if (!/^[a-zA-Z][\w-]*$/.test(name)) { + warn( + 'Invalid component name: "' + name + '". Component names ' + + 'can only contain alphanumeric characters and the hyphen, ' + + 'and must start with a letter.' + ); + } + if (isBuiltInTag(name) || config.isReservedTag(name)) { + warn( + 'Do not use built-in or reserved HTML elements as component ' + + 'id: ' + name + ); + } +} + +/** + * Ensure all props option syntax are normalized into the + * Object-based format. + */ +function normalizeProps (options, vm) { + var props = options.props; + if (!props) { return } + var res = {}; + var i, val, name; + if (Array.isArray(props)) { + i = props.length; + while (i--) { + val = props[i]; + if (typeof val === 'string') { + name = camelize(val); + res[name] = { type: null }; + } else if (false) { + warn('props must be strings when using array syntax.'); + } + } + } else if (isPlainObject(props)) { + for (var key in props) { + val = props[key]; + name = camelize(key); + res[name] = isPlainObject(val) + ? val + : { type: val }; + } + } else if (false) { + warn( + "Invalid value for option \"props\": expected an Array or an Object, " + + "but got " + (toRawType(props)) + ".", + vm + ); + } + options.props = res; +} + +/** + * Normalize all injections into Object-based format + */ +function normalizeInject (options, vm) { + var inject = options.inject; + if (!inject) { return } + var normalized = options.inject = {}; + if (Array.isArray(inject)) { + for (var i = 0; i < inject.length; i++) { + normalized[inject[i]] = { from: inject[i] }; + } + } else if (isPlainObject(inject)) { + for (var key in inject) { + var val = inject[key]; + normalized[key] = isPlainObject(val) + ? extend({ from: key }, val) + : { from: val }; + } + } else if (false) { + warn( + "Invalid value for option \"inject\": expected an Array or an Object, " + + "but got " + (toRawType(inject)) + ".", + vm + ); + } +} + +/** + * Normalize raw function directives into object format. + */ +function normalizeDirectives (options) { + var dirs = options.directives; + if (dirs) { + for (var key in dirs) { + var def = dirs[key]; + if (typeof def === 'function') { + dirs[key] = { bind: def, update: def }; + } + } + } +} + +function assertObjectType (name, value, vm) { + if (!isPlainObject(value)) { + warn( + "Invalid value for option \"" + name + "\": expected an Object, " + + "but got " + (toRawType(value)) + ".", + vm + ); + } +} + +/** + * Merge two option objects into a new one. + * Core utility used in both instantiation and inheritance. + */ +function mergeOptions ( + parent, + child, + vm +) { + if (false) { + checkComponents(child); + } + + if (typeof child === 'function') { + child = child.options; + } + + normalizeProps(child, vm); + normalizeInject(child, vm); + normalizeDirectives(child); + var extendsFrom = child.extends; + if (extendsFrom) { + parent = mergeOptions(parent, extendsFrom, vm); + } + if (child.mixins) { + for (var i = 0, l = child.mixins.length; i < l; i++) { + parent = mergeOptions(parent, child.mixins[i], vm); + } + } + var options = {}; + var key; + for (key in parent) { + mergeField(key); + } + for (key in child) { + if (!hasOwn(parent, key)) { + mergeField(key); + } + } + function mergeField (key) { + var strat = strats[key] || defaultStrat; + options[key] = strat(parent[key], child[key], vm, key); + } + return options +} + +/** + * Resolve an asset. + * This function is used because child instances need access + * to assets defined in its ancestor chain. + */ +function resolveAsset ( + options, + type, + id, + warnMissing +) { + /* istanbul ignore if */ + if (typeof id !== 'string') { + return + } + var assets = options[type]; + // check local registration variations first + if (hasOwn(assets, id)) { return assets[id] } + var camelizedId = camelize(id); + if (hasOwn(assets, camelizedId)) { return assets[camelizedId] } + var PascalCaseId = capitalize(camelizedId); + if (hasOwn(assets, PascalCaseId)) { return assets[PascalCaseId] } + // fallback to prototype chain + var res = assets[id] || assets[camelizedId] || assets[PascalCaseId]; + if (false) { + warn( + 'Failed to resolve ' + type.slice(0, -1) + ': ' + id, + options + ); + } + return res +} + +/* */ + +function validateProp ( + key, + propOptions, + propsData, + vm +) { + var prop = propOptions[key]; + var absent = !hasOwn(propsData, key); + var value = propsData[key]; + // handle boolean props + if (isType(Boolean, prop.type)) { + if (absent && !hasOwn(prop, 'default')) { + value = false; + } else if (!isType(String, prop.type) && (value === '' || value === hyphenate(key))) { + value = true; + } + } + // check default value + if (value === undefined) { + value = getPropDefaultValue(vm, prop, key); + // since the default value is a fresh copy, + // make sure to observe it. + var prevShouldConvert = observerState.shouldConvert; + observerState.shouldConvert = true; + observe(value); + observerState.shouldConvert = prevShouldConvert; + } + if ( + false + ) { + assertProp(prop, key, value, vm, absent); + } + return value +} + +/** + * Get the default value of a prop. + */ +function getPropDefaultValue (vm, prop, key) { + // no default, return undefined + if (!hasOwn(prop, 'default')) { + return undefined + } + var def = prop.default; + // warn against non-factory defaults for Object & Array + if (false) { + warn( + 'Invalid default value for prop "' + key + '": ' + + 'Props with type Object/Array must use a factory function ' + + 'to return the default value.', + vm + ); + } + // the raw prop value was also undefined from previous render, + // return previous default value to avoid unnecessary watcher trigger + if (vm && vm.$options.propsData && + vm.$options.propsData[key] === undefined && + vm._props[key] !== undefined + ) { + return vm._props[key] + } + // call factory function for non-Function types + // a value is Function if its prototype is function even across different execution context + return typeof def === 'function' && getType(prop.type) !== 'Function' + ? def.call(vm) + : def +} + +/** + * Assert whether a prop is valid. + */ +function assertProp ( + prop, + name, + value, + vm, + absent +) { + if (prop.required && absent) { + warn( + 'Missing required prop: "' + name + '"', + vm + ); + return + } + if (value == null && !prop.required) { + return + } + var type = prop.type; + var valid = !type || type === true; + var expectedTypes = []; + if (type) { + if (!Array.isArray(type)) { + type = [type]; + } + for (var i = 0; i < type.length && !valid; i++) { + var assertedType = assertType(value, type[i]); + expectedTypes.push(assertedType.expectedType || ''); + valid = assertedType.valid; + } + } + if (!valid) { + warn( + "Invalid prop: type check failed for prop \"" + name + "\"." + + " Expected " + (expectedTypes.map(capitalize).join(', ')) + + ", got " + (toRawType(value)) + ".", + vm + ); + return + } + var validator = prop.validator; + if (validator) { + if (!validator(value)) { + warn( + 'Invalid prop: custom validator check failed for prop "' + name + '".', + vm + ); + } + } +} + +var simpleCheckRE = /^(String|Number|Boolean|Function|Symbol)$/; + +function assertType (value, type) { + var valid; + var expectedType = getType(type); + if (simpleCheckRE.test(expectedType)) { + var t = typeof value; + valid = t === expectedType.toLowerCase(); + // for primitive wrapper objects + if (!valid && t === 'object') { + valid = value instanceof type; + } + } else if (expectedType === 'Object') { + valid = isPlainObject(value); + } else if (expectedType === 'Array') { + valid = Array.isArray(value); + } else { + valid = value instanceof type; + } + return { + valid: valid, + expectedType: expectedType + } +} + +/** + * Use function string name to check built-in types, + * because a simple equality check will fail when running + * across different vms / iframes. + */ +function getType (fn) { + var match = fn && fn.toString().match(/^\s*function (\w+)/); + return match ? match[1] : '' +} + +function isType (type, fn) { + if (!Array.isArray(fn)) { + return getType(fn) === getType(type) + } + for (var i = 0, len = fn.length; i < len; i++) { + if (getType(fn[i]) === getType(type)) { + return true + } + } + /* istanbul ignore next */ + return false +} + +/* */ + +function handleError (err, vm, info) { + if (vm) { + var cur = vm; + while ((cur = cur.$parent)) { + var hooks = cur.$options.errorCaptured; + if (hooks) { + for (var i = 0; i < hooks.length; i++) { + try { + var capture = hooks[i].call(cur, err, vm, info) === false; + if (capture) { return } + } catch (e) { + globalHandleError(e, cur, 'errorCaptured hook'); + } + } + } + } + } + globalHandleError(err, vm, info); +} + +function globalHandleError (err, vm, info) { + if (config.errorHandler) { + try { + return config.errorHandler.call(null, err, vm, info) + } catch (e) { + logError(e, null, 'config.errorHandler'); + } + } + logError(err, vm, info); +} + +function logError (err, vm, info) { + if (false) { + warn(("Error in " + info + ": \"" + (err.toString()) + "\""), vm); + } + /* istanbul ignore else */ + if ((inBrowser || inWeex) && typeof console !== 'undefined') { + console.error(err); + } else { + throw err + } +} + +/* */ +/* globals MessageChannel */ + +var callbacks = []; +var pending = false; + +function flushCallbacks () { + pending = false; + var copies = callbacks.slice(0); + callbacks.length = 0; + for (var i = 0; i < copies.length; i++) { + copies[i](); + } +} + +// Here we have async deferring wrappers using both micro and macro tasks. +// In < 2.4 we used micro tasks everywhere, but there are some scenarios where +// micro tasks have too high a priority and fires in between supposedly +// sequential events (e.g. #4521, #6690) or even between bubbling of the same +// event (#6566). However, using macro tasks everywhere also has subtle problems +// when state is changed right before repaint (e.g. #6813, out-in transitions). +// Here we use micro task by default, but expose a way to force macro task when +// needed (e.g. in event handlers attached by v-on). +var microTimerFunc; +var macroTimerFunc; +var useMacroTask = false; + +// Determine (macro) Task defer implementation. +// Technically setImmediate should be the ideal choice, but it's only available +// in IE. The only polyfill that consistently queues the callback after all DOM +// events triggered in the same loop is by using MessageChannel. +/* istanbul ignore if */ +if (typeof setImmediate !== 'undefined' && isNative(setImmediate)) { + macroTimerFunc = function () { + setImmediate(flushCallbacks); + }; +} else if (typeof MessageChannel !== 'undefined' && ( + isNative(MessageChannel) || + // PhantomJS + MessageChannel.toString() === '[object MessageChannelConstructor]' +)) { + var channel = new MessageChannel(); + var port = channel.port2; + channel.port1.onmessage = flushCallbacks; + macroTimerFunc = function () { + port.postMessage(1); + }; +} else { + /* istanbul ignore next */ + macroTimerFunc = function () { + setTimeout(flushCallbacks, 0); + }; +} + +// Determine MicroTask defer implementation. +/* istanbul ignore next, $flow-disable-line */ +if (typeof Promise !== 'undefined' && isNative(Promise)) { + var p = Promise.resolve(); + microTimerFunc = function () { + p.then(flushCallbacks); + // in problematic UIWebViews, Promise.then doesn't completely break, but + // it can get stuck in a weird state where callbacks are pushed into the + // microtask queue but the queue isn't being flushed, until the browser + // needs to do some other work, e.g. handle a timer. Therefore we can + // "force" the microtask queue to be flushed by adding an empty timer. + if (isIOS) { setTimeout(noop); } + }; +} else { + // fallback to macro + microTimerFunc = macroTimerFunc; +} + +/** + * Wrap a function so that if any code inside triggers state change, + * the changes are queued using a Task instead of a MicroTask. + */ +function withMacroTask (fn) { + return fn._withTask || (fn._withTask = function () { + useMacroTask = true; + var res = fn.apply(null, arguments); + useMacroTask = false; + return res + }) +} + +function nextTick (cb, ctx) { + var _resolve; + callbacks.push(function () { + if (cb) { + try { + cb.call(ctx); + } catch (e) { + handleError(e, ctx, 'nextTick'); + } + } else if (_resolve) { + _resolve(ctx); + } + }); + if (!pending) { + pending = true; + if (useMacroTask) { + macroTimerFunc(); + } else { + microTimerFunc(); + } + } + // $flow-disable-line + if (!cb && typeof Promise !== 'undefined') { + return new Promise(function (resolve) { + _resolve = resolve; + }) + } +} + +/* */ + +var mark; +var measure; + +if (false) { + var perf = inBrowser && window.performance; + /* istanbul ignore if */ + if ( + perf && + perf.mark && + perf.measure && + perf.clearMarks && + perf.clearMeasures + ) { + mark = function (tag) { return perf.mark(tag); }; + measure = function (name, startTag, endTag) { + perf.measure(name, startTag, endTag); + perf.clearMarks(startTag); + perf.clearMarks(endTag); + perf.clearMeasures(name); + }; + } +} + +/* not type checking this file because flow doesn't play well with Proxy */ + +var initProxy; + +if (false) { + var allowedGlobals = makeMap( + 'Infinity,undefined,NaN,isFinite,isNaN,' + + 'parseFloat,parseInt,decodeURI,decodeURIComponent,encodeURI,encodeURIComponent,' + + 'Math,Number,Date,Array,Object,Boolean,String,RegExp,Map,Set,JSON,Intl,' + + 'require' // for Webpack/Browserify + ); + + var warnNonPresent = function (target, key) { + warn( + "Property or method \"" + key + "\" is not defined on the instance but " + + 'referenced during render. Make sure that this property is reactive, ' + + 'either in the data option, or for class-based components, by ' + + 'initializing the property. ' + + 'See: https://vuejs.org/v2/guide/reactivity.html#Declaring-Reactive-Properties.', + target + ); + }; + + var hasProxy = + typeof Proxy !== 'undefined' && + Proxy.toString().match(/native code/); + + if (hasProxy) { + var isBuiltInModifier = makeMap('stop,prevent,self,ctrl,shift,alt,meta,exact'); + config.keyCodes = new Proxy(config.keyCodes, { + set: function set (target, key, value) { + if (isBuiltInModifier(key)) { + warn(("Avoid overwriting built-in modifier in config.keyCodes: ." + key)); + return false + } else { + target[key] = value; + return true + } + } + }); + } + + var hasHandler = { + has: function has (target, key) { + var has = key in target; + var isAllowed = allowedGlobals(key) || key.charAt(0) === '_'; + if (!has && !isAllowed) { + warnNonPresent(target, key); + } + return has || !isAllowed + } + }; + + var getHandler = { + get: function get (target, key) { + if (typeof key === 'string' && !(key in target)) { + warnNonPresent(target, key); + } + return target[key] + } + }; + + initProxy = function initProxy (vm) { + if (hasProxy) { + // determine which proxy handler to use + var options = vm.$options; + var handlers = options.render && options.render._withStripped + ? getHandler + : hasHandler; + vm._renderProxy = new Proxy(vm, handlers); + } else { + vm._renderProxy = vm; + } + }; +} + +/* */ + +var seenObjects = new _Set(); + +/** + * Recursively traverse an object to evoke all converted + * getters, so that every nested property inside the object + * is collected as a "deep" dependency. + */ +function traverse (val) { + _traverse(val, seenObjects); + seenObjects.clear(); +} + +function _traverse (val, seen) { + var i, keys; + var isA = Array.isArray(val); + if ((!isA && !isObject(val)) || Object.isFrozen(val)) { + return + } + if (val.__ob__) { + var depId = val.__ob__.dep.id; + if (seen.has(depId)) { + return + } + seen.add(depId); + } + if (isA) { + i = val.length; + while (i--) { _traverse(val[i], seen); } + } else { + keys = Object.keys(val); + i = keys.length; + while (i--) { _traverse(val[keys[i]], seen); } + } +} + +/* */ + +var normalizeEvent = cached(function (name) { + var passive = name.charAt(0) === '&'; + name = passive ? name.slice(1) : name; + var once$$1 = name.charAt(0) === '~'; // Prefixed last, checked first + name = once$$1 ? name.slice(1) : name; + var capture = name.charAt(0) === '!'; + name = capture ? name.slice(1) : name; + return { + name: name, + once: once$$1, + capture: capture, + passive: passive + } +}); + +function createFnInvoker (fns) { + function invoker () { + var arguments$1 = arguments; + + var fns = invoker.fns; + if (Array.isArray(fns)) { + var cloned = fns.slice(); + for (var i = 0; i < cloned.length; i++) { + cloned[i].apply(null, arguments$1); + } + } else { + // return handler return value for single handlers + return fns.apply(null, arguments) + } + } + invoker.fns = fns; + return invoker +} + +function updateListeners ( + on, + oldOn, + add, + remove$$1, + vm +) { + var name, def, cur, old, event; + for (name in on) { + def = cur = on[name]; + old = oldOn[name]; + event = normalizeEvent(name); + /* istanbul ignore if */ + if (isUndef(cur)) { + "production" !== 'production' && warn( + "Invalid handler for event \"" + (event.name) + "\": got " + String(cur), + vm + ); + } else if (isUndef(old)) { + if (isUndef(cur.fns)) { + cur = on[name] = createFnInvoker(cur); + } + add(event.name, cur, event.once, event.capture, event.passive, event.params); + } else if (cur !== old) { + old.fns = cur; + on[name] = old; + } + } + for (name in oldOn) { + if (isUndef(on[name])) { + event = normalizeEvent(name); + remove$$1(event.name, oldOn[name], event.capture); + } + } +} + +/* */ + +function mergeVNodeHook (def, hookKey, hook) { + if (def instanceof VNode) { + def = def.data.hook || (def.data.hook = {}); + } + var invoker; + var oldHook = def[hookKey]; + + function wrappedHook () { + hook.apply(this, arguments); + // important: remove merged hook to ensure it's called only once + // and prevent memory leak + remove(invoker.fns, wrappedHook); + } + + if (isUndef(oldHook)) { + // no existing hook + invoker = createFnInvoker([wrappedHook]); + } else { + /* istanbul ignore if */ + if (isDef(oldHook.fns) && isTrue(oldHook.merged)) { + // already a merged invoker + invoker = oldHook; + invoker.fns.push(wrappedHook); + } else { + // existing plain hook + invoker = createFnInvoker([oldHook, wrappedHook]); + } + } + + invoker.merged = true; + def[hookKey] = invoker; +} + +/* */ + +function extractPropsFromVNodeData ( + data, + Ctor, + tag +) { + // we are only extracting raw values here. + // validation and default values are handled in the child + // component itself. + var propOptions = Ctor.options.props; + if (isUndef(propOptions)) { + return + } + var res = {}; + var attrs = data.attrs; + var props = data.props; + if (isDef(attrs) || isDef(props)) { + for (var key in propOptions) { + var altKey = hyphenate(key); + if (false) { + var keyInLowerCase = key.toLowerCase(); + if ( + key !== keyInLowerCase && + attrs && hasOwn(attrs, keyInLowerCase) + ) { + tip( + "Prop \"" + keyInLowerCase + "\" is passed to component " + + (formatComponentName(tag || Ctor)) + ", but the declared prop name is" + + " \"" + key + "\". " + + "Note that HTML attributes are case-insensitive and camelCased " + + "props need to use their kebab-case equivalents when using in-DOM " + + "templates. You should probably use \"" + altKey + "\" instead of \"" + key + "\"." + ); + } + } + checkProp(res, props, key, altKey, true) || + checkProp(res, attrs, key, altKey, false); + } + } + return res +} + +function checkProp ( + res, + hash, + key, + altKey, + preserve +) { + if (isDef(hash)) { + if (hasOwn(hash, key)) { + res[key] = hash[key]; + if (!preserve) { + delete hash[key]; + } + return true + } else if (hasOwn(hash, altKey)) { + res[key] = hash[altKey]; + if (!preserve) { + delete hash[altKey]; + } + return true + } + } + return false +} + +/* */ + +// The template compiler attempts to minimize the need for normalization by +// statically analyzing the template at compile time. +// +// For plain HTML markup, normalization can be completely skipped because the +// generated render function is guaranteed to return Array. There are +// two cases where extra normalization is needed: + +// 1. When the children contains components - because a functional component +// may return an Array instead of a single root. In this case, just a simple +// normalization is needed - if any child is an Array, we flatten the whole +// thing with Array.prototype.concat. It is guaranteed to be only 1-level deep +// because functional components already normalize their own children. +function simpleNormalizeChildren (children) { + for (var i = 0; i < children.length; i++) { + if (Array.isArray(children[i])) { + return Array.prototype.concat.apply([], children) + } + } + return children +} + +// 2. When the children contains constructs that always generated nested Arrays, +// e.g.