ekatra

Clone or download

Modified Files

A .gitignore
+4 −0
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,4 @@
+node_modules/
+.DS_STORE
+build/
+package-lock.json
A config/env.js
+28 −0
--- /dev/null
+++ b/config/env.js
@@ -0,0 +1,28 @@
+// Grab NODE_ENV and REACT_APP_* environment variables and prepare them to be
+// injected into the application via DefinePlugin in Webpack configuration.
+
+var REACT_APP = /^REACT_APP_/i;
+
+function getClientEnvironment(publicUrl) {
+ var processEnv = Object
+ .keys(process.env)
+ .filter(key => REACT_APP.test(key))
+ .reduce((env, key) => {
+ env[key] = JSON.stringify(process.env[key]);
+ return env;
+ }, {
+ // Useful for determining whether we’re running in production mode.
+ // Most importantly, it switches React into the correct mode.
+ 'NODE_ENV': JSON.stringify(
+ process.env.NODE_ENV || 'development'
+ ),
+ // Useful for resolving the correct path to static assets in `public`.
+ // For example, <img src={process.env.PUBLIC_URL + '/img/logo.png'} />.
+ // This should only be used as an escape hatch. Normally you would put
+ // images into the `src` and `import` them in code to get their paths.
+ 'PUBLIC_URL': JSON.stringify(publicUrl)
+ });
+ return {'process.env': processEnv};
+}
+
+module.exports = getClientEnvironment;
--- /dev/null
+++ b/config/jest/cssTransform.js
@@ -0,0 +1,12 @@
+// This is a custom Jest transformer turning style imports into empty objects.
+// http://facebook.github.io/jest/docs/tutorial-webpack.html
+
+module.exports = {
+ process() {
+ return 'module.exports = {};';
+ },
+ getCacheKey(fileData, filename) {
+ // The output is always the same.
+ return 'cssTransform';
+ },
+};
--- /dev/null
+++ b/config/jest/fileTransform.js
@@ -0,0 +1,10 @@
+const path = require('path');
+
+// This is a custom Jest transformer turning file imports into filenames.
+// http://facebook.github.io/jest/docs/tutorial-webpack.html
+
+module.exports = {
+ process(src, filename) {
+ return 'module.exports = ' + JSON.stringify(path.basename(filename)) + ';';
+ },
+};
A config/paths.js
+46 −0
--- /dev/null
+++ b/config/paths.js
@@ -0,0 +1,46 @@
+var path = require('path');
+var fs = require('fs');
+
+// Make sure any symlinks in the project folder are resolved:
+// https://github.com/facebookincubator/create-react-app/issues/637
+var appDirectory = fs.realpathSync(process.cwd());
+function resolveApp(relativePath) {
+ return path.resolve(appDirectory, relativePath);
+}
+
+// We support resolving modules according to `NODE_PATH`.
+// This lets you use absolute paths in imports inside large monorepos:
+// https://github.com/facebookincubator/create-react-app/issues/253.
+
+// It works similar to `NODE_PATH` in Node itself:
+// https://nodejs.org/api/modules.html#modules_loading_from_the_global_folders
+
+// We will export `nodePaths` as an array of absolute paths.
+// It will then be used by Webpack configs.
+// Jest doesn’t need this because it already handles `NODE_PATH` out of the box.
+
+// Note that unlike in Node, only *relative* paths from `NODE_PATH` are honored.
+// Otherwise, we risk importing Node.js core modules into an app instead of Webpack shims.
+// https://github.com/facebookincubator/create-react-app/issues/1023#issuecomment-265344421
+
+var nodePaths = (process.env.NODE_PATH || '')
+ .split(process.platform === 'win32' ? ';' : ':')
+ .filter(Boolean)
+ .filter(folder => !path.isAbsolute(folder))
+ .map(resolveApp);
+
+// config after eject: we're in ./config/
+module.exports = {
+ // Changed from build to build_webpack so smart contract compilations are not overwritten.
+ appBuild: resolveApp('build_webpack'),
+ appPublic: resolveApp('public'),
+ appHtml: resolveApp('public/index.html'),
+ appIndexJs: resolveApp('src/index.js'),
+ appPackageJson: resolveApp('package.json'),
+ appSrc: resolveApp('src'),
+ yarnLockFile: resolveApp('yarn.lock'),
+ testsSetup: resolveApp('src/setupTests.js'),
+ appNodeModules: resolveApp('node_modules'),
+ ownNodeModules: resolveApp('node_modules'),
+ nodePaths: nodePaths
+};
A config/polyfills.js
+14 −0
--- /dev/null
+++ b/config/polyfills.js
@@ -0,0 +1,14 @@
+if (typeof Promise === 'undefined') {
+ // Rejection tracking prevents a common issue where React gets into an
+ // inconsistent state due to an error, but it gets swallowed by a Promise,
+ // and the user has no idea what causes React's erratic future behavior.
+ require('promise/lib/rejection-tracking').enable();
+ window.Promise = require('promise/lib/es6-extensions.js');
+}
+
+// fetch() polyfill for making API calls.
+require('whatwg-fetch');
+
+// Object.assign() is commonly used with React.
+// It will use the native implementation if it's present and isn't buggy.
+Object.assign = require('object-assign');
--- /dev/null
+++ b/config/webpack.config.dev.js
@@ -0,0 +1,243 @@
+var autoprefixer = require('autoprefixer');
+var webpack = require('webpack');
+var HtmlWebpackPlugin = require('html-webpack-plugin');
+var CaseSensitivePathsPlugin = require('case-sensitive-paths-webpack-plugin');
+var InterpolateHtmlPlugin = require('react-dev-utils/InterpolateHtmlPlugin');
+var WatchMissingNodeModulesPlugin = require('react-dev-utils/WatchMissingNodeModulesPlugin');
+var getClientEnvironment = require('./env');
+var paths = require('./paths');
+
+
+
+// Webpack uses `publicPath` to determine where the app is being served from.
+// In development, we always serve from the root. This makes config easier.
+var publicPath = '/';
+// `publicUrl` is just like `publicPath`, but we will provide it to our app
+// as %PUBLIC_URL% in `index.html` and `process.env.PUBLIC_URL` in JavaScript.
+// Omit trailing slash as %PUBLIC_PATH%/xyz looks better than %PUBLIC_PATH%xyz.
+var publicUrl = '';
+// Get environment variables to inject into our app.
+var env = getClientEnvironment(publicUrl);
+
+// This is the development configuration.
+// It is focused on developer experience and fast rebuilds.
+// The production configuration is different and lives in a separate file.
+module.exports = {
+ // You may want 'eval' instead if you prefer to see the compiled output in DevTools.
+ // See the discussion in https://github.com/facebookincubator/create-react-app/issues/343.
+ devtool: 'cheap-module-source-map',
+ // These are the "entry points" to our application.
+ // This means they will be the "root" imports that are included in JS bundle.
+ // The first two entry points enable "hot" CSS and auto-refreshes for JS.
+ entry: [
+ // Include an alternative client for WebpackDevServer. A client's job is to
+ // connect to WebpackDevServer by a socket and get notified about changes.
+ // When you save a file, the client will either apply hot updates (in case
+ // of CSS changes), or refresh the page (in case of JS changes). When you
+ // make a syntax error, this client will display a syntax error overlay.
+ // Note: instead of the default WebpackDevServer client, we use a custom one
+ // to bring better experience for Create React App users. You can replace
+ // the line below with these two lines if you prefer the stock client:
+ // require.resolve('webpack-dev-server/client') + '?/',
+ // require.resolve('webpack/hot/dev-server'),
+ require.resolve('react-dev-utils/webpackHotDevClient'),
+ require.resolve('react-error-overlay'),
+ // We ship a few polyfills by default:
+ require.resolve('./polyfills'),
+ // Finally, this is your app's code:
+ paths.appIndexJs
+ // We include the app code last so that if there is a runtime error during
+ // initialization, it doesn't blow up the WebpackDevServer client, and
+ // changing JS code would still trigger a refresh.
+ ],
+ output: {
+ // Next line is not used in dev but WebpackDevServer crashes without it:
+ path: paths.appBuild,
+ // Add /* filename */ comments to generated require()s in the output.
+ pathinfo: true,
+ // This does not produce a real file. It's just the virtual path that is
+ // served by WebpackDevServer in development. This is the JS bundle
+ // containing code from all our entry points, and the Webpack runtime.
+ filename: 'static/js/bundle.js',
+ // This is the URL that app is served from. We use "/" in development.
+ publicPath: publicPath
+ },
+ resolve: {
+ // This allows you to set a fallback for where Webpack should look for modules.
+ // We read `NODE_PATH` environment variable in `paths.js` and pass paths here.
+ // We use `fallback` instead of `root` because we want `node_modules` to "win"
+ // if there any conflicts. This matches Node resolution mechanism.
+ // https://github.com/facebookincubator/create-react-app/issues/253
+ fallback: paths.nodePaths,
+ // These are the reasonable defaults supported by the Node ecosystem.
+ // We also include JSX as a common component filename extension to support
+ // some tools, although we do not recommend using it, see:
+ // https://github.com/facebookincubator/create-react-app/issues/290
+ extensions: ['.js', '.json', '.jsx', ''],
+ alias: {
+ // Support React Native Web
+ // https://www.smashingmagazine.com/2016/08/a-glimpse-into-the-future-with-react-native-for-web/
+ 'react-native': 'react-native-web'
+ }
+ },
+
+ module: {
+ // First, run the linter.
+ // It's important to do this before Babel processes the JS.
+ preLoaders: [
+ {
+ test: /\.(js|jsx)$/,
+ loader: 'eslint',
+ include: paths.appSrc,
+ }
+ ],
+ loaders: [
+ // Default loader: load all assets that are not handled
+ // by other loaders with the url loader.
+ // Note: This list needs to be updated with every change of extensions
+ // the other loaders match.
+ // E.g., when adding a loader for a new supported file extension,
+ // we need to add the supported extension to this loader too.
+ // Add one new line in `exclude` for each loader.
+ //
+ // "file" loader makes sure those assets get served by WebpackDevServer.
+ // When you `import` an asset, you get its (virtual) filename.
+ // In production, they would get copied to the `build` folder.
+ // "url" loader works like "file" loader except that it embeds assets
+ // smaller than specified limit in bytes as data URLs to avoid requests.
+ // A missing `test` is equivalent to a match.
+ {
+ exclude: [
+ /\.html$/,
+ /\.(js|jsx)$/,
+ /\.css$/,
+ /\.json$/,
+ /\.woff$/,
+ /\.woff2$/,
+ /\.(ttf|svg|eot)$/
+ ],
+ loader: 'url',
+ query: {
+ limit: 10000,
+ name: 'static/media/[name].[hash:8].[ext]'
+ }
+ },
+ // Process JS with Babel.
+ {
+ test: /\.(js|jsx)$/,
+ include: paths.appSrc,
+ loader: 'babel',
+ query: {
+
+ // This is a feature of `babel-loader` for webpack (not Babel itself).
+ // It enables caching results in ./node_modules/.cache/babel-loader/
+ // directory for faster rebuilds.
+ cacheDirectory: true
+ }
+ },
+ // "postcss" loader applies autoprefixer to our CSS.
+ // "css" loader resolves paths in CSS and adds assets as dependencies.
+ // "style" loader turns CSS into JS modules that inject <style> tags.
+ // In production, we use a plugin to extract that CSS to a file, but
+ // in development "style" loader enables hot editing of CSS.
+ {
+ test: /\.css$/,
+ loader: 'style!css?importLoaders=1!postcss'
+ },
+ // JSON is not enabled by default in Webpack but both Node and Browserify
+ // allow it implicitly so we also enable it.
+ {
+ test: /\.json$/,
+ loader: 'json'
+ },
+ // "file" loader for svg
+ {
+ test: /\.svg$/,
+ loader: 'file',
+ query: {
+ name: 'static/media/[name].[hash:8].[ext]'
+ }
+ },
+ // "file" loader for fonts
+ {
+ test: /\.woff$/,
+ loader: 'file',
+ query: {
+ name: 'fonts/[name].[hash].[ext]'
+ }
+ },
+ {
+ test: /\.woff2$/,
+ loader: 'file',
+ query: {
+ name: 'fonts/[name].[hash].[ext]'
+ }
+ },
+ {
+ test: /\.(ttf|eot)$/,
+ loader: 'file',
+ query: {
+ name: 'fonts/[name].[hash].[ext]'
+ }
+ },
+ // Truffle solidity loader to watch for changes in Solitiy files and hot
+ // reload contracts with webpack.
+ //
+ // CURRENTLY REMOVED DUE TO INCOMPATIBILITY WITH TRUFFLE 3
+ // Compile and migrate contracts manually.
+ //
+ /*{
+ test: /\.sol$/,
+ loader: 'truffle-solidity?network_id=123'
+ }*/
+ ]
+ },
+
+ // We use PostCSS for autoprefixing only.
+ postcss: function() {
+ return [
+ autoprefixer({
+ browsers: [
+ '>1%',
+ 'last 4 versions',
+ 'Firefox ESR',
+ 'not ie < 9', // React doesn't support IE8 anyway
+ ]
+ }),
+ ];
+ },
+ plugins: [
+ // Makes the public URL available as %PUBLIC_URL% in index.html, e.g.:
+ // <link rel="shortcut icon" href="%PUBLIC_URL%/favicon.ico">
+ // In development, this will be an empty string.
+ new InterpolateHtmlPlugin({
+ PUBLIC_URL: publicUrl
+ }),
+ // Generates an `index.html` file with the <script> injected.
+ new HtmlWebpackPlugin({
+ inject: true,
+ template: paths.appHtml,
+ }),
+ // Makes some environment variables available to the JS code, for example:
+ // if (process.env.NODE_ENV === 'development') { ... }. See `./env.js`.
+ new webpack.DefinePlugin(env),
+ // This is necessary to emit hot updates (currently CSS only):
+ new webpack.HotModuleReplacementPlugin(),
+ // Watcher doesn't work well if you mistype casing in a path so we use
+ // a plugin that prints an error when you attempt to do this.
+ // See https://github.com/facebookincubator/create-react-app/issues/240
+ new CaseSensitivePathsPlugin(),
+ // If you require a missing module and then `npm install` it, you still have
+ // to restart the development server for Webpack to discover it. This plugin
+ // makes the discovery automatic so you don't have to restart.
+ // See https://github.com/facebookincubator/create-react-app/issues/186
+ new WatchMissingNodeModulesPlugin(paths.appNodeModules)
+ ],
+ // Some libraries import Node modules but don't use them in the browser.
+ // Tell Webpack to provide empty mocks for them so importing them works.
+ node: {
+ fs: 'empty',
+ net: 'empty',
+ tls: 'empty'
+ }
+};
--- /dev/null
+++ b/config/webpack.config.prod.js
@@ -0,0 +1,269 @@
+var autoprefixer = require('autoprefixer');
+var webpack = require('webpack');
+var HtmlWebpackPlugin = require('html-webpack-plugin');
+var ExtractTextPlugin = require('extract-text-webpack-plugin');
+var ManifestPlugin = require('webpack-manifest-plugin');
+var InterpolateHtmlPlugin = require('react-dev-utils/InterpolateHtmlPlugin');
+var url = require('url');
+var paths = require('./paths');
+var getClientEnvironment = require('./env');
+
+
+
+function ensureSlash(path, needsSlash) {
+ var hasSlash = path.endsWith('/');
+ if (hasSlash && !needsSlash) {
+ return path.substr(path, path.length - 1);
+ } else if (!hasSlash && needsSlash) {
+ return path + '/';
+ } else {
+ return path;
+ }
+}
+
+// We use "homepage" field to infer "public path" at which the app is served.
+// Webpack needs to know it to put the right <script> hrefs into HTML even in
+// single-page apps that may serve index.html for nested URLs like /todos/42.
+// We can't use a relative path in HTML because we don't want to load something
+// like /todos/42/static/js/bundle.7289d.js. We have to know the root.
+var homepagePath = require(paths.appPackageJson).homepage;
+var homepagePathname = homepagePath ? url.parse(homepagePath).pathname : '/';
+// Webpack uses `publicPath` to determine where the app is being served from.
+// It requires a trailing slash, or the file assets will get an incorrect path.
+var publicPath = ensureSlash(homepagePathname, true);
+// `publicUrl` is just like `publicPath`, but we will provide it to our app
+// as %PUBLIC_URL% in `index.html` and `process.env.PUBLIC_URL` in JavaScript.
+// Omit trailing slash as %PUBLIC_PATH%/xyz looks better than %PUBLIC_PATH%xyz.
+var publicUrl = ensureSlash(homepagePathname, false);
+// Get environment variables to inject into our app.
+var env = getClientEnvironment(publicUrl);
+
+// Assert this just to be safe.
+// Development builds of React are slow and not intended for production.
+if (env['process.env'].NODE_ENV !== '"production"') {
+ throw new Error('Production builds must have NODE_ENV=production.');
+}
+
+// This is the production configuration.
+// It compiles slowly and is focused on producing a fast and minimal bundle.
+// The development configuration is different and lives in a separate file.
+module.exports = {
+ // Don't attempt to continue if there are any errors.
+ bail: true,
+ // We generate sourcemaps in production. This is slow but gives good results.
+ // You can exclude the *.map files from the build during deployment.
+ devtool: 'source-map',
+ // In production, we only want to load the polyfills and the app code.
+ entry: [
+ require.resolve('./polyfills'),
+ paths.appIndexJs
+ ],
+ output: {
+ // The build folder.
+ path: paths.appBuild,
+ // Generated JS file names (with nested folders).
+ // There will be one main bundle, and one file per asynchronous chunk.
+ // We don't currently advertise code splitting but Webpack supports it.
+ filename: 'static/js/[name].[chunkhash:8].js',
+ chunkFilename: 'static/js/[name].[chunkhash:8].chunk.js',
+ // We inferred the "public path" (such as / or /my-project) from homepage.
+ publicPath: publicPath
+ },
+ resolve: {
+ // This allows you to set a fallback for where Webpack should look for modules.
+ // We read `NODE_PATH` environment variable in `paths.js` and pass paths here.
+ // We use `fallback` instead of `root` because we want `node_modules` to "win"
+ // if there any conflicts. This matches Node resolution mechanism.
+ // https://github.com/facebookincubator/create-react-app/issues/253
+ fallback: paths.nodePaths,
+ // These are the reasonable defaults supported by the Node ecosystem.
+ // We also include JSX as a common component filename extension to support
+ // some tools, although we do not recommend using it, see:
+ // https://github.com/facebookincubator/create-react-app/issues/290
+ extensions: ['.js', '.json', '.jsx', ''],
+ alias: {
+ // Support React Native Web
+ // https://www.smashingmagazine.com/2016/08/a-glimpse-into-the-future-with-react-native-for-web/
+ 'react-native': 'react-native-web'
+ }
+ },
+
+ module: {
+ // First, run the linter.
+ // It's important to do this before Babel processes the JS.
+ preLoaders: [
+ {
+ test: /\.(js|jsx)$/,
+ loader: 'eslint',
+ include: paths.appSrc
+ }
+ ],
+ loaders: [
+ // Default loader: load all assets that are not handled
+ // by other loaders with the url loader.
+ // Note: This list needs to be updated with every change of extensions
+ // the other loaders match.
+ // E.g., when adding a loader for a new supported file extension,
+ // we need to add the supported extension to this loader too.
+ // Add one new line in `exclude` for each loader.
+ //
+ // "file" loader makes sure those assets end up in the `build` folder.
+ // When you `import` an asset, you get its filename.
+ // "url" loader works just like "file" loader but it also embeds
+ // assets smaller than specified size as data URLs to avoid requests.
+ {
+ exclude: [
+ /\.html$/,
+ /\.(js|jsx)$/,
+ /\.css$/,
+ /\.json$/,
+ /\.woff$/,
+ /\.woff2$/,
+ /\.(ttf|svg|eot)$/
+ ],
+ loader: 'url',
+ query: {
+ limit: 10000,
+ name: 'static/media/[name].[hash:8].[ext]'
+ }
+ },
+ // Process JS with Babel.
+ {
+ test: /\.(js|jsx)$/,
+ include: paths.appSrc,
+ loader: 'babel',
+ },
+ // The notation here is somewhat confusing.
+ // "postcss" loader applies autoprefixer to our CSS.
+ // "css" loader resolves paths in CSS and adds assets as dependencies.
+ // "style" loader normally turns CSS into JS modules injecting <style>,
+ // but unlike in development configuration, we do something different.
+ // `ExtractTextPlugin` first applies the "postcss" and "css" loaders
+ // (second argument), then grabs the result CSS and puts it into a
+ // separate file in our build process. This way we actually ship
+ // a single CSS file in production instead of JS code injecting <style>
+ // tags. If you use code splitting, however, any async bundles will still
+ // use the "style" loader inside the async code so CSS from them won't be
+ // in the main CSS file.
+ {
+ test: /\.css$/,
+ loader: ExtractTextPlugin.extract('style', 'css?importLoaders=1!postcss')
+ // Note: this won't work without `new ExtractTextPlugin()` in `plugins`.
+ },
+ // JSON is not enabled by default in Webpack but both Node and Browserify
+ // allow it implicitly so we also enable it.
+ {
+ test: /\.json$/,
+ loader: 'json'
+ },
+ // "file" loader for svg
+ {
+ test: /\.svg$/,
+ loader: 'file',
+ query: {
+ name: 'static/media/[name].[hash:8].[ext]'
+ }
+ },
+ // "file" loader for fonts
+ {
+ test: /\.woff$/,
+ loader: 'file',
+ query: {
+ name: 'fonts/[name].[hash].[ext]'
+ }
+ },
+ {
+ test: /\.woff2$/,
+ loader: 'file',
+ query: {
+ name: 'fonts/[name].[hash].[ext]'
+ }
+ },
+ {
+ test: /\.(ttf|eot)$/,
+ loader: 'file',
+ query: {
+ name: 'fonts/[name].[hash].[ext]'
+ }
+ }
+ ]
+ },
+
+ // We use PostCSS for autoprefixing only.
+ postcss: function() {
+ return [
+ autoprefixer({
+ browsers: [
+ '>1%',
+ 'last 4 versions',
+ 'Firefox ESR',
+ 'not ie < 9', // React doesn't support IE8 anyway
+ ]
+ }),
+ ];
+ },
+ plugins: [
+ // Makes the public URL available as %PUBLIC_URL% in index.html, e.g.:
+ // <link rel="shortcut icon" href="%PUBLIC_URL%/favicon.ico">
+ // In production, it will be an empty string unless you specify "homepage"
+ // in `package.json`, in which case it will be the pathname of that URL.
+ new InterpolateHtmlPlugin({
+ PUBLIC_URL: publicUrl
+ }),
+ // Generates an `index.html` file with the <script> injected.
+ new HtmlWebpackPlugin({
+ inject: true,
+ template: paths.appHtml,
+ minify: {
+ removeComments: true,
+ collapseWhitespace: true,
+ removeRedundantAttributes: true,
+ useShortDoctype: true,
+ removeEmptyAttributes: true,
+ removeStyleLinkTypeAttributes: true,
+ keepClosingSlash: true,
+ minifyJS: true,
+ minifyCSS: true,
+ minifyURLs: true
+ }
+ }),
+ // Makes some environment variables available to the JS code, for example:
+ // if (process.env.NODE_ENV === 'production') { ... }. See `./env.js`.
+ // It is absolutely essential that NODE_ENV was set to production here.
+ // Otherwise React will be compiled in the very slow development mode.
+ new webpack.DefinePlugin(env),
+ // This helps ensure the builds are consistent if source hasn't changed:
+ new webpack.optimize.OccurrenceOrderPlugin(),
+ // Try to dedupe duplicated modules, if any:
+ new webpack.optimize.DedupePlugin(),
+ // Minify the code.
+ new webpack.optimize.UglifyJsPlugin({
+ compress: {
+ screw_ie8: true, // React doesn't support IE8
+ warnings: false
+ },
+ mangle: {
+ screw_ie8: true
+ },
+ output: {
+ comments: false,
+ screw_ie8: true
+ }
+ }),
+ // Note: this won't work without ExtractTextPlugin.extract(..) in `loaders`.
+ new ExtractTextPlugin('static/css/[name].[contenthash:8].css'),
+ // Generate a manifest file which contains a mapping of all asset filenames
+ // to their corresponding output file so that tools can pick it up without
+ // having to parse `index.html`.
+ new ManifestPlugin({
+ fileName: 'asset-manifest.json'
+ })
+ ],
+ // Some libraries import Node modules but don't use them in the browser.
+ // Tell Webpack to provide empty mocks for them so importing them works.
+ node: {
+ fs: 'empty',
+ net: 'empty',
+ tls: 'empty'
+ }
+};
--- /dev/null
+++ b/contracts/BasicComplaint.sol
@@ -0,0 +1,47 @@
+pragma solidity ^0.4.24;
+
+contract BasicComplaint {
+
+ enum Status { Open, Viewed, Ongoing, UnderReview, Closed }
+
+ uint constant REWARD_POINTS = 10;
+ uint constant REVIEW_SUCCESS = 60;
+ uint constant RESPONSE_DEADLINE = 2 days; // 2 days
+
+ struct Location {
+ uint _lat;
+ uint _long;
+ }
+
+ struct ExternalResources {
+ string[] _ipfs;
+ }
+
+ struct Review {
+ uint _sumReviewPoints;
+ uint _totalReviewPoints;
+ }
+
+ struct Task {
+ string _title;
+ string _description;
+ address _govtEntityAddress;
+ int _reward;
+ uint[5] _timeStamps; // 0:_expectedStartTimestamp 1:_expectedDurationTimestamp 2:_actualStartTimestamp 3:_actualEndTimestamp 4: _responseDeadline
+ Review _review;
+ mapping(address => bool) _reviewValidation;
+ Status _status;
+ }
+
+ struct Complaint {
+ address _complainantAddress;
+ Location _location;
+ string _title;
+ string _description;
+ ExternalResources _external_resources;
+ Task[] _taskList;
+ address[] _signersList;
+ mapping(address => bool) _signerListValidation;
+ Status _status;
+ }
+}
A contracts/Ekatra.sol
+308 −0
--- /dev/null
+++ b/contracts/Ekatra.sol
@@ -0,0 +1,308 @@
+pragma solidity ^0.4.24;
+
+import "./BasicComplaint.sol";
+
+interface GovtEntity {
+ function giveRewards(address account, int reward) external;
+}
+
+contract Ekatra is BasicComplaint {
+
+ mapping(bytes32 => Complaint) public _registry;
+ GovtEntity govtEntity;
+
+ event ComplaintHash(bytes32 hash, address complainant);
+ event NewComplaintEvent(bytes32 hash, uint lat, uint long);
+ event NewTaskEvent(bytes32 complaintHash, uint taskId, address govtEntityAddress);
+
+ function initGovtEntity(address contractAddress) public {
+ govtEntity = GovtEntity(contractAddress);
+ }
+
+ function registerComplaint(
+ string title,
+ string description,
+ uint lat,
+ uint long,
+ address govtEntityAddress
+ ) public {
+
+ bytes32 hash = keccak256( abi.encodePacked(
+ title,
+ description,
+ lat,
+ long,
+ govtEntityAddress,
+ now
+ ));
+
+ Complaint storage complaint = _registry[hash];
+
+ Location storage location = _registry[hash]._location;
+
+ complaint._complainantAddress = msg.sender;
+ complaint._title = title;
+ complaint._description = description;
+ complaint._status = Status.Open;
+
+ location._lat = lat;
+ location._long = long;
+
+ complaint._signersList.push(msg.sender);
+ complaint._signerListValidation[msg.sender] = true;
+
+ Task memory task;
+ task._title = "Assign POC";
+ task._description = "Assign a person from your department to look into this issue";
+ task._govtEntityAddress = govtEntityAddress;
+ task._reward = 100;
+ task._timeStamps[0] = now;
+ task._timeStamps[1] = 2; // 4 days
+ task._timeStamps[2] = now;
+ task._timeStamps[4] = now + 1;
+ task._status = Status.Ongoing;
+
+ complaint._taskList.push(task);
+
+ emit ComplaintHash(hash, msg.sender);
+ emit NewComplaintEvent(hash, lat, long);
+ emit NewTaskEvent(hash, 0, govtEntityAddress);
+ }
+
+ function addTask(
+ bytes32 complaintHash,
+ string title,
+ string description,
+ address govtEntityAddress
+ ) public {
+
+ Task memory task;
+ task._title = title;
+ task._description = description;
+ task._govtEntityAddress = govtEntityAddress;
+ task._reward = 100;
+ task._timeStamps[4] = now + RESPONSE_DEADLINE;
+ task._status = Status.Open;
+
+ if(_registry[complaintHash]._taskList[_registry[complaintHash]._taskList.length - 1]._status == Status.Open) {
+ _registry[complaintHash]._taskList[_registry[complaintHash]._taskList.length - 1]._status = Status.Ongoing;
+ } else {
+ _registry[complaintHash]._taskList[_registry[complaintHash]._taskList.length - 1]._status = Status.UnderReview;
+ _registry[complaintHash]._taskList[_registry[complaintHash]._taskList.length - 1]._timeStamps[3] = now;
+ }
+
+ _registry[complaintHash]._taskList.push(task);
+
+ emit NewTaskEvent(
+ complaintHash,
+ _registry[complaintHash]._taskList.length - 1,
+ govtEntityAddress
+ );
+ }
+
+ function getTask(
+ bytes32 complaintHash,
+ uint taskId
+ )
+ public
+ view
+ returns(
+ string title,
+ string description,
+ address govtEntityAddress,
+ int reward,
+ uint[5] timestamps,
+ Status status
+ )
+ {
+ return(
+ _registry[complaintHash]._taskList[taskId]._title,
+ _registry[complaintHash]._taskList[taskId]._description,
+ _registry[complaintHash]._taskList[taskId]._govtEntityAddress,
+ _registry[complaintHash]._taskList[taskId]._reward,
+ _registry[complaintHash]._taskList[taskId]._timeStamps,
+ _registry[complaintHash]._taskList[taskId]._status
+ );
+ }
+
+ function updateTaskStatus(
+ bytes32 complaintHash,
+ uint taskId,
+ Status status
+ ) public {
+ assert(status < Status.Closed);
+
+ if(status == Status.Ongoing) {
+ _registry[complaintHash]._taskList[taskId]._timeStamps[2] = now;
+ }
+ _registry[complaintHash]._taskList[taskId]._status = status;
+ }
+
+ function startTask(
+ bytes32 complaintHash,
+ uint taskId
+ )
+ public
+ {
+ assert(_registry[complaintHash]._taskList[taskId]._status == Status.Viewed);
+
+ uint correctTimestamp = _registry[complaintHash]._taskList[taskId - 1]._timeStamps[3] + _registry[complaintHash]._taskList[taskId]._timeStamps[0];
+ if(now > correctTimestamp) {
+ uint penalty = ((correctTimestamp - uint(now)) * 100) / _registry[complaintHash]._taskList[taskId]._timeStamps[0];
+
+ _registry[complaintHash]._taskList[taskId]._reward = _registry[complaintHash]._taskList[taskId]._reward - int(penalty);
+ }
+
+ _registry[complaintHash]._taskList[taskId]._status = Status.Ongoing;
+ _registry[complaintHash]._taskList[taskId]._timeStamps[2] = now;
+ }
+
+ function updateTaskDetails(
+ bytes32 complaintHash,
+ uint taskId,
+ uint expectedStartTimestamp,
+ uint expectedDurationTimestamp
+ ) public {
+
+ if(now > _registry[complaintHash]._taskList[taskId]._timeStamps[4]) {
+ uint penalty = ((_registry[complaintHash]._taskList[taskId]._timeStamps[4] - now) * 100) / RESPONSE_DEADLINE;
+
+ _registry[complaintHash]._taskList[taskId]._reward = _registry[complaintHash]._taskList[taskId]._reward - int(penalty);
+ }
+
+ _registry[complaintHash]._taskList[taskId]._timeStamps[0] = expectedStartTimestamp;
+ _registry[complaintHash]._taskList[taskId]._timeStamps[1] = expectedDurationTimestamp;
+
+ _registry[complaintHash]._taskList[taskId]._status = Status.Viewed;
+ }
+
+ function endTask(
+ bytes32 complaintHash,
+ uint taskId
+ )
+ public
+ returns(bool)
+ {
+ if(checkReviewSuccess(complaintHash, taskId)) {
+ // TODO: add reward to dept.
+ uint expectedEnd = _registry[complaintHash]._taskList[taskId]._timeStamps[1] + _registry[complaintHash]._taskList[taskId]._timeStamps[2];
+ if(expectedEnd > _registry[complaintHash]._taskList[taskId]._timeStamps[3]) {
+ uint penalty = ((_registry[complaintHash]._taskList[taskId]._timeStamps[3] - expectedEnd) * 100) / _registry[complaintHash]._taskList[taskId]._timeStamps[1];
+
+ _registry[complaintHash]._taskList[taskId]._reward = _registry[complaintHash]._taskList[taskId]._reward - int(penalty);
+ }
+
+ govtEntity.giveRewards(
+ _registry[complaintHash]._taskList[taskId]._govtEntityAddress,
+ _registry[complaintHash]._taskList[taskId]._reward
+ );
+
+ // if assert fails notify the user that not enough review.
+ _registry[complaintHash]._taskList[taskId]._status = Status.Closed;
+
+ if(_registry[complaintHash]._taskList.length - 1 == taskId) {
+ _registry[complaintHash]._status = Status.Closed;
+ }
+
+ return true;
+ } else {
+ return false;
+ }
+
+ }
+
+ function lastTask(
+ bytes32 complaintHash,
+ uint taskId
+ ) public {
+ _registry[complaintHash]._taskList[taskId]._status = Status.UnderReview;
+ _registry[complaintHash]._taskList[taskId]._timeStamps[3] = now;
+ }
+
+ function addExpectedDurationTime(
+ bytes32 complaintHash,
+ uint taskId,
+ uint expectedDurationTimestamp
+ ) public {
+ assert(_registry[complaintHash]._taskList[taskId]._govtEntityAddress == msg.sender);
+ _registry[complaintHash]._taskList[taskId]._timeStamps[1] = expectedDurationTimestamp;
+ }
+
+ function endComplaint(bytes32 complaintHash) public {
+ for(uint i = 0; i < _registry[complaintHash]._taskList.length; i++) {
+ if(endTask(complaintHash, i) == false) {
+ return;
+ }
+ }
+
+ _registry[complaintHash]._status = Status.Closed;
+ }
+
+ function checkReviewSuccess(
+ bytes32 complaintHash,
+ uint taskId
+ ) private view returns(bool) {
+ return((_registry[complaintHash]._taskList[taskId]._review._sumReviewPoints * 100) /
+ _registry[complaintHash]._taskList[taskId]._review._totalReviewPoints >= REVIEW_SUCCESS);
+ }
+
+ function addSigner(bytes32 complaintHash) public {
+ if(_registry[complaintHash]._signerListValidation[msg.sender] == false) {
+ _registry[complaintHash]._signersList.push(msg.sender);
+ _registry[complaintHash]._signerListValidation[msg.sender] = true;
+ }
+ }
+
+ // reward related functions
+
+ function reviewTask(
+ bytes32 complaintHash,
+ uint taskId,
+ uint reward
+ ) public {
+ if( _registry[complaintHash]._taskList[taskId]._govtEntityAddress != msg.sender &&
+ _registry[complaintHash]._taskList[taskId]._reviewValidation[msg.sender] == false &&
+ reward <= REWARD_POINTS) {
+
+ _registry[complaintHash]._taskList[taskId]._review._sumReviewPoints += reward;
+ _registry[complaintHash]._taskList[taskId]._review._totalReviewPoints += REWARD_POINTS;
+ _registry[complaintHash]._taskList[taskId]._reviewValidation[msg.sender] = true;
+ }
+
+ }
+
+ function getReview(
+ bytes32 complaintHash,
+ uint taskId
+ )
+ public
+ view
+ returns(
+ uint sum,
+ uint total
+ )
+ {
+ return(
+ _registry[complaintHash]._taskList[taskId]._review._sumReviewPoints,
+ _registry[complaintHash]._taskList[taskId]._review._totalReviewPoints
+ );
+ }
+
+ function getComplaint(bytes32 complaintHash) public view returns(
+ string title,
+ string description,
+ uint taskListLength,
+ address[] signerList,
+ Status status
+ ) {
+ return(
+ _registry[complaintHash]._title,
+ _registry[complaintHash]._description,
+ _registry[complaintHash]._taskList.length,
+ _registry[complaintHash]._signersList,
+ _registry[complaintHash]._status
+ );
+ }
+
+ // distribute reward function.
+}
--- /dev/null
+++ b/contracts/GovtEntity.sol
@@ -0,0 +1,34 @@
+pragma solidity ^0.4.24;
+
+contract GovtEntity {
+
+ // can represent people in a department.
+ mapping(address => address[]) _entityStakeholders;
+
+ // holds name and reward associated.
+ struct Entity {
+ string _name;
+ int _reward;
+ }
+
+ mapping(address => Entity) _registry;
+
+ function registerName(string name) public {
+ _registry[msg.sender]._name = name;
+ }
+
+ function getReward() public view returns(int reward) {
+ return(_registry[msg.sender]._reward);
+ }
+
+ function getDetails() public view returns(string name, int reward) {
+ return(_registry[msg.sender]._name, _registry[msg.sender]._reward);
+ }
+
+ // 'public' not safe
+ function giveRewards(address account, int reward) public {
+ _registry[account]._reward += reward;
+ }
+
+ // Add consolidated reward points.
+}
--- /dev/null
+++ b/contracts/Migrations.sol
@@ -0,0 +1,23 @@
+pragma solidity ^0.4.2;
+
+contract Migrations {
+ address public owner;
+ uint public last_completed_migration;
+
+ modifier restricted() {
+ if (msg.sender == owner) _;
+ }
+
+ function Migrations() public {
+ owner = msg.sender;
+ }
+
+ function setCompleted(uint completed) public restricted {
+ last_completed_migration = completed;
+ }
+
+ function upgrade(address new_address) public restricted {
+ Migrations upgraded = Migrations(new_address);
+ upgraded.setCompleted(last_completed_migration);
+ }
+}
--- /dev/null
+++ b/migrations/1_initial_migration.js
@@ -0,0 +1,5 @@
+var Migrations = artifacts.require("./Migrations.sol");
+
+module.exports = function(deployer) {
+ deployer.deploy(Migrations);
+};
--- /dev/null
+++ b/migrations/2_deploy_contracts.js
@@ -0,0 +1,7 @@
+var Ekatra = artifacts.require("./Ekatra.sol");
+var GovtEntity = artifacts.require("./GovtEntity.sol");
+
+module.exports = function(deployer) {
+ deployer.deploy(Ekatra);
+ deployer.deploy(GovtEntity);
+};
A package.json
+107 −0
--- /dev/null
+++ b/package.json
@@ -0,0 +1,107 @@
+{
+ "name": "ekatra",
+ "version": "0.0.1",
+ "private": true,
+ "devDependencies": {
+ "autoprefixer": "6.5.1",
+ "babel-core": "6.17.0",
+ "babel-eslint": "7.1.1",
+ "babel-jest": "17.0.2",
+ "babel-loader": "6.2.7",
+ "babel-preset-react-app": "^2.0.1",
+ "case-sensitive-paths-webpack-plugin": "1.1.4",
+ "chalk": "1.1.3",
+ "connect-history-api-fallback": "1.3.0",
+ "cross-spawn": "4.0.2",
+ "css-loader": "0.26.0",
+ "detect-port": "1.0.1",
+ "dotenv": "2.0.0",
+ "eslint": "3.8.1",
+ "eslint-config-react-app": "^0.5.0",
+ "eslint-loader": "1.6.0",
+ "eslint-plugin-flowtype": "2.21.0",
+ "eslint-plugin-import": "^2.13.0",
+ "eslint-plugin-jsx-a11y": "2.2.3",
+ "eslint-plugin-react": "6.4.1",
+ "extract-text-webpack-plugin": "1.0.1",
+ "file-loader": "0.9.0",
+ "filesize": "3.3.0",
+ "fs-extra": "0.30.0",
+ "gzip-size": "3.0.0",
+ "html-webpack-plugin": "2.24.0",
+ "http-proxy-middleware": "0.17.2",
+ "jest": "18.1.0",
+ "json-loader": "0.5.4",
+ "object-assign": "4.1.0",
+ "path-exists": "2.1.0",
+ "postcss-loader": "1.0.0",
+ "promise": "7.1.1",
+ "react-dev-utils": "^5.0.1",
+ "react-error-overlay": "^4.0.0",
+ "recursive-readdir": "2.1.0",
+ "strip-ansi": "3.0.1",
+ "style-loader": "0.13.1",
+ "truffle-contract": "^1.1.8",
+ "truffle-solidity-loader": "0.0.8",
+ "url-loader": "0.5.7",
+ "webpack": "1.14.0",
+ "webpack-dev-server": "1.16.2",
+ "webpack-manifest-plugin": "1.1.0",
+ "whatwg-fetch": "1.0.0"
+ },
+ "dependencies": {
+ "bootstrap": "^4.1.1",
+ "dotenv": "^2.0.0",
+ "jquery": "^3.3.1",
+ "popper.js": "^1.14.3",
+ "react": "^16.1.0",
+ "react-dom": "^16.1.0",
+ "react-router-dom": "^4.3.1",
+ "web3": "^1.0.0-beta.34"
+ },
+ "scripts": {
+ "start": "node scripts/start.js",
+ "build": "node scripts/build.js",
+ "test": "node scripts/test.js --env=jsdom"
+ },
+ "jest": {
+ "collectCoverageFrom": [
+ "src/**/*.{js,jsx}"
+ ],
+ "setupFiles": [
+ "<rootDir>/config/polyfills.js"
+ ],
+ "testMatch": [
+ "<rootDir>/src/**/__tests__/**/*.js?(x)",
+ "<rootDir>/src/**/?(*.)(spec|test).js?(x)"
+ ],
+ "testEnvironment": "node",
+ "testURL": "http://localhost",
+ "transform": {
+ "^.+\\.(js|jsx)$": "<rootDir>/node_modules/babel-jest",
+ "^.+\\.css$": "<rootDir>/config/jest/cssTransform.js",
+ "^(?!.*\\.(js|jsx|css|json)$)": "<rootDir>/config/jest/fileTransform.js"
+ },
+ "transformIgnorePatterns": [
+ "[/\\\\]node_modules[/\\\\].+\\.(js|jsx)$"
+ ],
+ "moduleNameMapper": {
+ "^react-native$": "react-native-web"
+ },
+ "moduleFileExtensions": [
+ "web.js",
+ "js",
+ "json",
+ "web.jsx",
+ "jsx"
+ ]
+ },
+ "babel": {
+ "presets": [
+ "react-app"
+ ]
+ },
+ "eslintConfig": {
+ "extends": "react-app"
+ }
+}
A public/favicon.ico
+- −-
Binary files /dev/null and b/public/favicon.ico differ
A public/img/c1.svg
+147 −0
--- /dev/null
+++ b/public/img/c1.svg
@@ -0,0 +1,147 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Generator: Adobe Illustrator 18.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
+<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
+ viewBox="124.7 117 362 505.6" enable-background="new 124.7 117 362 505.6" xml:space="preserve">
+<g id="Avatar_3">
+ <path fill="#DCDBDB" d="M128.5,619.5h354.3v-81.3c0-66.9-59.3-121.6-131.5-121.6h-9.1v-13.7v-23.6h-74.5v37.3H260
+ c-72.2,0-131.5,54.7-131.5,121.6L128.5,619.5L128.5,619.5z"/>
+ <path fill="#1C1C1C" d="M132.3,615.7h347.4v-77.5c0-32.7-14.4-61.6-37.3-83.6c-23.6-21.3-55.5-35-90.5-35h-9.9
+ c-2.3,0-3.8-1.5-3.8-3.8v-33.5h-67.7v33.5c0,2.3-1.5,3.8-3.8,3.8h-7.6c-35,0-67.7,13.7-90.5,35c-22.8,21.3-37.3,50.9-37.3,83.6
+ v77.5H132.3z M483.5,622.6h-355c-2.3,0-3.8-1.5-3.8-3.8v-80.6c0-34.2,15.2-66.1,39.5-88.2c24.3-22.8,58.5-36.5,95-36.5h3.8V380
+ c0-2.3,1.5-3.8,3.8-3.8h75.3c2.3,0,3.8,1.5,3.8,3.8v33.5h6.1c37.3,0,70.7,13.7,95,36.5c24.3,22.8,39.5,54,39.5,88.2v80.6
+ C487.3,621,485,622.6,483.5,622.6z"/>
+ <path fill="#1C1C1C" d="M197.7,511.6c0.8-1.5,3-3,4.6-2.3c1.5,0.8,3,3,2.3,4.6c-2.3,6.1-3.8,12.2-4.6,19
+ c-0.8,6.1-1.5,12.9-1.5,19.8v63.9h216.7v-63.9c0-6.8-0.8-12.9-1.5-19.8s-3-12.9-4.6-19c-0.8-1.5,0-3.8,2.3-4.6
+ c1.5-0.8,3.8,0,4.6,2.3c2.3,6.1,3.8,12.9,5.3,19.8c0.8,6.8,1.5,13.7,1.5,20.5v66.9c0,2.3-1.5,3.8-3.8,3.8h-225
+ c-2.3,0-3.8-1.5-3.8-3.8v-66.9c0-6.8,0.8-13.7,1.5-20.5C193.1,524.5,195.4,517.6,197.7,511.6z"/>
+ <path fill="#FDC27A" d="M342.1,369.4c0,15.2,0.8,93.5,0.8,93.5c-24.3,17.5-48.7,17.5-74.5,0c0-17.5-0.8-96.6-0.8-96.6
+ C293.5,387.6,318.5,389.2,342.1,369.4z"/>
+ <path fill="#1C1C1C" d="M345.9,369.4c0,18.2,0.8,93.5,0.8,93.5c0,1.5-0.8,2.3-1.5,3l0,0c-12.9,9.1-25.8,13.7-38.8,13.7
+ c-12.9,0-26.6-4.6-40.3-13.7c-0.8-0.8-1.5-1.5-1.5-3c0-19.8-0.8-96.6-0.8-96.6c0-2.3,1.5-3.8,3.8-3.8c0.8,0,1.5,0,2.3,0.8
+ c12.2,9.9,24.3,15.2,35.7,16c11.4,0.8,22.8-3.8,34.2-12.9c1.5-1.5,3.8-0.8,5.3,0.8C345.9,367.9,345.9,368.6,345.9,369.4
+ L345.9,369.4L345.9,369.4z M339.8,461.4c0-10.6-0.8-63.9-0.8-85.1c-10.6,7.6-22,10.6-33.5,9.9c-11.4-0.8-22.8-4.6-34.2-12.9
+ c0,19.8,0.8,72.2,0.8,87.4c11.4,7.6,23.6,11.4,34.2,11.4C317.8,472.8,329.2,469,339.8,461.4z"/>
+
+ <rect x="217.5" y="514.6" transform="matrix(-0.2088 0.978 -0.978 -0.2088 894.4603 312.3516)" fill="#1C1C1C" width="206.8" height="6.8"/>
+ <polygon fill="#1C1C1C" points="334.5,462.1 386.2,513.8 325.4,621 319.3,617.2 377.8,515.4 329.9,467.5 "/>
+
+ <rect x="197.1" y="501" transform="matrix(0.2088 0.978 -0.978 0.2088 719.9225 118.9838)" fill="#1C1C1C" width="178.7" height="6.8"/>
+ <polygon fill="#1C1C1C" points="280.5,467.5 232.6,515.4 291.2,617.2 285.1,621 223.5,513.8 275.2,462.1 "/>
+ <path fill="#40545A" d="M280.5,494.1l24.3,98.1l24.3-98.1l9.1-50.9c-22,7.6-44.1,7.6-67.7,0L280.5,494.1z"/>
+ <path fill="#1C1C1C" d="M283.6,493.3l21.3,84.4l21.3-84.4l8.4-44.9c-9.1,2.3-19,3.8-28.9,3.8c-9.9,0-19.8-1.5-29.6-3.8L283.6,493.3
+ L283.6,493.3z M301.8,592.9l-25.1-98.1l-9.1-50.9c0-0.8,0-1.5,0-2.3c0.8-1.5,2.3-3,4.6-2.3c11.4,3.8,22.8,5.3,33.5,5.3
+ s21.3-1.5,31.9-5.3c0.8,0,1.5,0,1.5,0c2.3,0,3,2.3,3,3.8l-9.1,50.2c0,0,0,0,0,0.8l-24.3,98.1c0,1.5-1.5,2.3-2.3,3
+ C304.1,595.9,301.8,594.4,301.8,592.9z"/>
+ <path fill="#FDC27A" d="M306.4,148.9L306.4,148.9c48.7,0,88.2,39.5,88.2,88.2v65.4c0,48.7-39.5,88.2-88.2,88.2l0,0
+ c-48.7,0-88.2-39.5-88.2-88.2v-65.4C218.2,189.2,257.7,148.9,306.4,148.9z"/>
+ <path fill="#1C1C1C" d="M306.4,145.9c25.1,0,48.7,10.6,64.6,27.4c16.7,16.7,27.4,39.5,27.4,64.6v65.4c0,25.1-10.6,48.7-27.4,64.6
+ c-16.7,16.7-39.5,27.4-64.6,27.4s-48.7-10.6-64.6-27.4c-16.7-16.7-27.4-39.5-27.4-64.6v-65.4c0-25.1,10.6-48.7,27.4-64.6
+ C258.5,155.8,281.3,145.9,306.4,145.9L306.4,145.9z M366.4,177.8c-15.2-15.2-36.5-25.1-60.1-25.1c-23.6,0-44.9,9.9-60.1,25.1
+ c-15.2,15.2-25.1,36.5-25.1,60.1v65.4c0,23.6,9.9,44.9,25.1,60.1c15.2,15.2,36.5,25.1,60.1,25.1c23.6,0,44.9-9.9,60.1-25.1
+ c15.2-15.2,25.1-36.5,25.1-60.1v-65.4C391.5,214.3,381.6,193,366.4,177.8z"/>
+ <path fill="#1C1C1C" d="M308.7,316.9c0,2.3-1.5,3.8-3.8,3.8c-2.3,0-3.8-1.5-3.8-3.8c0-6.1,0-9.1,1.5-11.4l0,0c2.3-3,4.6-3,9.9-3
+ c2.3,0,3-0.8,3.8-2.3c0-0.8,0-1.5,0-2.3c0-0.8,0-1.5,0-2.3c-0.8-1.5-1.5-2.3-2.3-2.3c-2.3,0-3.8-1.5-3.8-3.8v-27.4
+ c0-2.3,1.5-3.8,3.8-3.8c2.3,0,3.8,1.5,3.8,3.8v24.3c3,0.8,4.6,3.8,5.3,6.1c0.8,1.5,0.8,3,0.8,4.6c0,1.5,0,3-0.8,4.6
+ c-1.5,3.8-4.6,6.8-10.6,6.8c-3,0-3.8,0-3.8,0l0,0C308.7,310.1,308.7,312.4,308.7,316.9z"/>
+ <path fill="#FFFFFF" d="M336,329.9c-2.3,14.4-15.2,25.8-31.2,25.8l0,0c-15.2,0-28.1-11.4-31.2-25.8H336z"/>
+ <path fill="#1C1C1C" d="M339.8,330.6c-1.5,8.4-6.1,15.2-12.2,20.5c-6.1,5.3-13.7,8.4-22.8,8.4c-8.4,0-16.7-3-22.8-8.4
+ c-6.1-5.3-10.6-12.2-12.2-20.5c0-2.3,0.8-3.8,3-3.8h0.8H336C338.3,326.8,339.8,328.3,339.8,330.6
+ C339.8,329.9,339.8,330.6,339.8,330.6L339.8,330.6z M323.1,345.8c3.8-3,6.8-7.6,8.4-12.2h-53.2c1.5,4.6,4.6,9.1,8.4,12.2
+ c4.6,3.8,11.4,6.8,18.2,6.8C311.7,351.9,317.8,349.6,323.1,345.8z"/>
+ <path fill="#FDC27A" d="M218.2,256.1L218.2,256.1c-0.8-3.8-3.8-6.8-7.6-6.8h-6.1c-4.6,0-7.6,3.8-7.6,7.6V282l0,0
+ c0,12.9,9.1,23.6,22,25.8V282v-25.1v-0.8H218.2z"/>
+ <path fill="#1C1C1C" d="M214.4,256.9L214.4,256.9c0-1.5-0.8-2.3-1.5-3c-0.8-0.8-1.5-0.8-3-0.8h-6.1c-1.5,0-2.3,0.8-3,1.5
+ s-1.5,1.5-1.5,3V282c0,5.3,2.3,10.6,5.3,14.4c2.3,3,5.3,5.3,9.1,6.8v-46.4H214.4z M218.2,248.5c0.8,0.8,2.3,2.3,3,3.8h1.5v60.1
+ l-4.6-0.8c-6.8-1.5-12.9-5.3-17.5-10.6c-4.6-5.3-6.8-12.2-6.8-19v-25.1c0-3,1.5-6.1,3-8.4c2.3-2.3,4.6-3,8.4-3h6.1
+ C213.6,245.5,215.9,247,218.2,248.5z"/>
+ <path fill="#FDC27A" d="M395.3,256.1L395.3,256.1c0.8-3.8,3.8-6.8,7.6-6.8h6.1c4.6,0,7.6,3.8,7.6,7.6V282l0,0
+ c0,12.9-9.1,23.6-22,25.8V282v-25.1v-0.8H395.3z"/>
+ <path fill="#1C1C1C" d="M398.4,256.9L398.4,256.9v46.4c3.8-1.5,6.8-3.8,9.1-6.8c3-3.8,5.3-9.1,5.3-14.4v-25.1c0-1.5-0.8-2.3-1.5-3
+ c-0.8-0.8-1.5-1.5-3-1.5h-5.3c-0.8,0-2.3,0.8-3,0.8C399.1,254.6,399.1,255.4,398.4,256.9L398.4,256.9z M392.3,252.3
+ c0.8-1.5,1.5-2.3,3-3.8c2.3-1.5,4.6-3,7.6-3h6.1c3,0,6.1,1.5,8.4,3c2.3,2.3,3,4.6,3,8.4V282c0,7.6-2.3,13.7-6.8,19
+ s-10.6,9.1-17.5,10.6l-4.6,0.8v-60.1H392.3z"/>
+ <polygon fill="#A1A1A0" points="334.5,467.5 355,487.2 396.8,475.8 370.2,418 342.1,399 "/>
+ <path fill="#1C1C1C" d="M338.3,465.9l17.5,17.5l35.7-9.9l-25.1-53.2l-22-15.2L338.3,465.9L338.3,465.9z M352,490.3L330.7,469
+ c3-25.1,6.1-50.2,9.1-76l33.5,22.8l28.9,63.1l-47.9,12.9L352,490.3z"/>
+ <polygon fill="#A1A1A0" points="275.2,467.5 255.4,487.2 212.9,475.8 240.2,418 267.6,399 "/>
+ <path fill="#1C1C1C" d="M278.3,469.7l-22,22l-47.9-12.9c9.9-21.3,19.8-41.8,28.9-63.1l33.5-22.8l9.1,76L278.3,469.7L278.3,469.7z
+ M253.9,483.4l17.5-17.5l-6.8-60.8l-22,15.2l-25.1,53.2L253.9,483.4z"/>
+ <path fill="#1C1C1C" d="M418.1,573.9c2.3,0,3.8,1.5,3.8,3.8s-1.5,3.8-3.8,3.8H374c-2.3,0-3.8-1.5-3.8-3.8s1.5-3.8,3.8-3.8H418.1z"
+ />
+ <polygon fill="#FFFFFF" points="418.1,560.2 377.1,560.2 395.3,530.6 "/>
+ <path fill="#1C1C1C" d="M418.1,564h-41.1c-2.3,0-3.8-1.5-3.8-3.8c0-0.8,0-1.5,0.8-2.3l19-29.6c0.8-1.5,3-2.3,4.6-0.8
+ c0.8,0,0.8,0.8,0.8,0.8l22,29.6c1.5,1.5,0.8,3.8-0.8,5.3C419.7,564,418.9,564,418.1,564L418.1,564L418.1,564z M383.2,557.2h27.4
+ l-15.2-19.8L383.2,557.2z"/>
+ <path fill="#DC5940" d="M282.1,463.7c-31.2,18.2-25.8,21.3-25.8-15.2s-5.3-33.5,25.8-15.2S313.2,445.4,282.1,463.7z"/>
+ <path fill="#1C1C1C" d="M283.6,466.7c-4.6,2.3-8.4,4.6-11.4,6.8c-9.1,5.3-13.7,8.4-16.7,6.1c-3.8-2.3-3.8-7.6-3-17.5
+ c0-3,0-7.6,0-12.9c0-6.1,0-9.9,0-12.9c0-10.6-0.8-16,3-17.5c3.8-2.3,8.4,0.8,16.7,6.1c3,1.5,6.8,3.8,11.4,6.8
+ c4.6,3,8.4,4.6,11.4,6.1c9.1,5.3,13.7,7.6,13.7,12.2c0,4.6-4.6,6.8-13.7,12.2C291.9,462.1,288.1,464.4,283.6,466.7L283.6,466.7z
+ M268.4,467.5c3-2.3,6.8-4.6,11.4-6.8l0,0c4.6-3,8.4-4.6,11.4-6.8c6.8-3.8,9.9-5.3,9.9-5.3s-3-1.5-9.9-5.3c-3-1.5-7.6-3.8-11.4-6.8
+ c-4.6-2.3-8.4-4.6-11.4-6.8c-6.8-3.8-9.9-6.1-9.9-6.1s0,3.8,0,11.4c0,3.8,0,8.4,0,13.7c0,4.6,0,9.1,0,13.7c0,7.6,0,11.4,0,11.4
+ C259.2,473.5,262.3,471.3,268.4,467.5z"/>
+ <path fill="#DC5940" d="M329.2,463.7c31.2,18.2,25.8,21.3,25.8-15.2s5.3-33.5-25.8-15.2C297.3,451.5,297.3,445.4,329.2,463.7z"/>
+ <path fill="#1C1C1C" d="M330.7,460.6c4.6,2.3,8.4,4.6,11.4,6.8c6.8,3.8,9.9,6.1,9.9,6.1s0-3.8,0-11.4c0-3.8,0-8.4,0-13.7
+ c0-4.6,0-9.1,0-13.7c0-7.6,0-11.4,0-11.4s-3,2.3-9.9,6.1c-3,2.3-6.8,4.6-11.4,6.8c-4.6,2.3-8.4,4.6-11.4,6.8
+ c-6.8,3.8-9.9,5.3-9.9,5.3s3,1.5,9.9,5.3C322.3,456.1,326.1,457.6,330.7,460.6L330.7,460.6L330.7,460.6z M338.3,473.5
+ c-3-1.5-6.8-3.8-11.4-6.8c-4.6-2.3-8.4-4.6-11.4-6.1c-9.1-5.3-13.7-7.6-13.7-12.2c0-4.6,4.6-6.8,13.7-12.2c3-1.5,6.8-3.8,11.4-6.1
+ c4.6-2.3,8.4-4.6,11.4-6.8c9.1-5.3,13.7-8.4,16.7-6.1c3.8,2.3,3.8,7.6,3,17.5c0,3,0,7.6,0,12.9c0,6.1,0,9.9,0,12.9
+ c0,10.6,0,16-3,17.5C352,481.9,347.4,478.9,338.3,473.5z"/>
+ <circle fill="#DC5940" cx="305.6" cy="448.5" r="12.9"/>
+ <path fill="#1C1C1C" d="M305.6,431.7c4.6,0,8.4,1.5,11.4,4.6l0,0c3,3,4.6,6.8,4.6,11.4c0,4.6-1.5,8.4-4.6,11.4l0,0
+ c-3,3-6.8,4.6-11.4,4.6c-4.6,0-8.4-1.5-11.4-4.6l0,0c-3-3-4.6-6.8-4.6-11.4c0-4.6,1.5-8.4,4.6-11.4l0,0
+ C296.5,434,301.1,431.7,305.6,431.7L305.6,431.7z M312.5,441.6c-1.5-1.5-3.8-3-6.8-3c-2.3,0-5.3,0.8-6.8,3l0,0
+ c-1.5,1.5-3,3.8-3,6.8c0,2.3,0.8,5.3,3,6.8l0,0c1.5,1.5,3.8,3,6.8,3c2.3,0,5.3-0.8,6.8-3l0,0c1.5-1.5,3-3.8,3-6.8
+ C314.7,446.2,314,443.9,312.5,441.6L312.5,441.6z"/>
+ <path fill="#A76739" d="M225,183.9h6.1l0,0l0,0c5.3,0,7.6,9.1,7.6,13.7v25.8v16.7c0,14.4-5.3,39.5-22,44.1v-41.8v-45.6
+ C217.4,193,219,183.9,225,183.9z"/>
+ <path fill="#1C1C1C" d="M225,180.1h6.1h0.8c3.8,0,6.1,2.3,8.4,5.3c2.3,3.8,3,8.4,3,11.4v42.6c0,8.4-2.3,21.3-6.8,31.2
+ c-3.8,7.6-9.1,14.4-17.5,16.7c-1.5,0.8-3.8-0.8-4.6-2.3v-0.8l0,0v-86.7c0,0,0,0,0-0.8c0-3,0.8-7.6,3-11.4
+ C218.2,182.4,221.2,180.1,225,180.1L225,180.1z M231.1,187.7H225c-0.8,0-1.5,0.8-2.3,1.5c-1.5,2.3-2.3,5.3-2.3,7.6
+ c0.8,26.6,0,54.7,0,81.3c3.8-2.3,6.1-6.1,8.4-10.6c4.6-9.1,6.1-19.8,6.1-28.1v-42.6c0-2.3-0.8-5.3-1.5-7.6
+ C232.6,188.5,231.9,187.7,231.1,187.7L231.1,187.7z"/>
+ <path fill="#A76739" d="M387,177h-6.1c-6.1,0-7.6,9.1-7.6,13.7v25.8v16.7c0,14.4,5.3,39.5,22,44.1v-41.8V190
+ C394.6,185.4,393,177,387,177z"/>
+ <path fill="#1C1C1C" d="M387,180.1h-6.1l0,0c-0.8,0-1.5,0.8-2.3,2.3c-1.5,2.3-2.3,6.1-2.3,7.6v42.6c0,7.6,1.5,19,6.1,28.1
+ c2.3,4.6,5.3,8.4,8.4,10.6V190l0,0c0-2.3-0.8-5.3-2.3-8.4C388.5,180.8,387.7,180.1,387,180.1L387,180.1z M380.9,173.2h6.1
+ c3.8,0,6.8,2.3,8.4,5.3c2.3,3.8,3,8.4,3,11.4l0,0v92l-4.6-1.5c-7.6-2.3-13.7-9.1-17.5-16.7c-4.6-9.9-6.8-22-6.8-31.2V190
+ c0-3,0.8-7.6,3-11.4C374.8,175.5,377.1,173.2,380.9,173.2L380.9,173.2z"/>
+ <path fill="#A76739" d="M310.2,135.2c-37.3,0-76.8,3-79.1,48.7c-1.5,23.6,28.1,27.4,48.7,27.4h60.8c19.8,0,38-5.3,51.7-15.2
+ c16.7-11.4,28.1-27.4,30.4-45.6c0-2.3,0.8-4.6,0.8-7.6c0-7.6-1.5-14.4-3.8-20.5c-13.7,8.4-30.4,12.9-48.7,12.9
+ C371,135.2,310.2,135.2,310.2,135.2z"/>
+ <path fill="#1C1C1C" d="M310.2,139c-18.2,0-37.3,0.8-50.9,6.8c-13.7,6.1-23.6,16.7-24.3,38c-0.8,9.9,5.3,16,13.7,19
+ c9.1,3.8,21.3,4.6,31.2,4.6h60.8c9.1,0,18.2-1.5,26.6-3.8c8.4-2.3,16.7-6.1,23.6-10.6c8.4-5.3,14.4-12.2,19.8-19.8
+ c4.6-7.6,7.6-15.2,9.1-23.6c0-0.8,0-2.3,0-3s0-2.3,0-3.8c0-3,0-6.8-0.8-9.9c0-2.3-0.8-3.8-1.5-5.3c-6.1,3-12.9,6.1-19.8,7.6
+ c-8.4,2.3-17.5,3.8-26.6,3.8H310.2L310.2,139z M256.2,139c15.2-6.8,35-7.6,54-7.6H371c8.4,0,16.7-0.8,24.3-3
+ c8.4-2.3,15.2-5.3,22-9.1l3.8-2.3l1.5,3.8c1.5,3.8,2.3,6.8,3,10.6s0.8,7.6,0.8,11.4c0,1.5,0,2.3,0,3.8s0,2.3-0.8,3.8
+ c-1.5,9.9-4.6,19-9.9,26.6c-5.3,8.4-12.9,16-22,21.3c-7.6,5.3-16,9.1-25.1,11.4s-18.2,3.8-28.1,3.8h-60.8
+ c-10.6,0-23.6-0.8-34.2-5.3c-11.4-4.6-19-12.2-18.2-26.6C228.8,159.6,240.2,146.6,256.2,139z"/>
+ <path fill="#1C1C1C" d="M326.9,245.5h39.5c3,0,6.1,1.5,8.4,3.8c2.3,2.3,3.8,5.3,3.8,8.4v21.3c0,3-1.5,6.1-3.8,8.4
+ c-2.3,2.3-5.3,3.8-8.4,3.8h-39.5c-3,0-6.1-1.5-8.4-3.8c-2.3-2.3-3.8-5.3-3.8-8.4v-21.3c0-3,1.5-6.1,3.8-8.4l0,0
+ C320.1,247,323.1,245.5,326.9,245.5L326.9,245.5z M366.4,253.1h-39.5c-1.5,0-2.3,0.8-3,1.5l0,0c-0.8,0.8-1.5,2.3-1.5,3v21.3
+ c0,1.5,0.8,2.3,1.5,3c0.8,0.8,2.3,1.5,3,1.5h39.5c1.5,0,2.3-0.8,3-1.5s1.5-2.3,1.5-3v-21.3c0-1.5-0.8-2.3-1.5-3
+ C368.7,253.8,367.2,253.1,366.4,253.1z"/>
+ <rect x="210.6" y="245.5" fill="#1C1C1C" width="192.3" height="6.8"/>
+ <path fill="#1C1C1C" d="M234.9,176.3c-1.5-1.5-1.5-3.8,0-5.3s3.8-1.5,5.3,0c5.3,5.3,13.7,9.1,23.6,11.4c10.6,2.3,24.3,3,38.8,3
+ c2.3,0,3.8,1.5,3.8,3.8c0,2.3-1.5,3.8-3.8,3.8c-15.2,0-28.9-0.8-40.3-3C250.9,186.9,241,183.1,234.9,176.3z"/>
+ <path fill="#1C1C1C" d="M228.1,143.6c0-2.3,1.5-3.8,3.8-3.8c2.3,0,3.8,1.5,3.8,3.8v40.3c0,2.3-1.5,3.8-3.8,3.8
+ c-0.8,0-1.5,0-2.3-0.8l0,0l-25.1-20.5c-1.5-1.5-1.5-3.8-0.8-5.3c1.5-1.5,3.8-1.5,5.3-0.8l19,16L228.1,143.6z"/>
+ <circle fill="#40545A" cx="265.3" cy="272.1" r="10.6"/>
+ <path fill="#1C1C1C" d="M265.3,258.4c3.8,0,7.6,1.5,9.9,3.8l0,0c2.3,2.3,3.8,6.1,3.8,9.9s-1.5,7.6-3.8,9.9l0,0
+ c-2.3,2.3-6.1,3.8-9.9,3.8s-7.6-1.5-9.9-3.8l0,0c-2.3-2.3-3.8-6.1-3.8-9.9s1.5-7.6,3.8-9.9l0,0
+ C257.7,259.9,261.5,258.4,265.3,258.4L265.3,258.4z M269.9,267.5L269.9,267.5c-1.5-1.5-3-2.3-5.3-2.3s-3.8,0.8-5.3,2.3l0,0
+ c-1.5,1.5-2.3,3-2.3,5.3c0,2.3,0.8,3.8,2.3,5.3l0,0c1.5,1.5,3,2.3,5.3,2.3s3.8-0.8,5.3-2.3l0,0c1.5-1.5,2.3-3,2.3-5.3
+ C272.2,270.6,271.4,268.3,269.9,267.5z"/>
+ <circle fill="#40545A" cx="348.2" cy="272.1" r="10.6"/>
+ <path fill="#1C1C1C" d="M348.2,265.2c-2.3,0-3.8,0.8-5.3,2.3l0,0c-1.5,1.5-2.3,3-2.3,5.3c0,2.3,0.8,3.8,2.3,5.3l0,0
+ c1.5,1.5,3,2.3,5.3,2.3c2.3,0,3.8-0.8,5.3-2.3l0,0c1.5-1.5,2.3-3,2.3-5.3c0-2.3-0.8-3.8-2.3-5.3l0,0
+ C352,266,350.5,265.2,348.2,265.2L348.2,265.2z M338.3,262.2c2.3-2.3,6.1-3.8,9.9-3.8s7.6,1.5,9.9,3.8l0,0c2.3,2.3,3.8,6.1,3.8,9.9
+ s-1.5,7.6-3.8,9.9l0,0c-2.3,2.3-6.1,3.8-9.9,3.8s-7.6-1.5-9.9-3.8l0,0c-2.3-2.3-3.8-6.1-3.8-9.9
+ C333.7,268.3,335.3,264.5,338.3,262.2L338.3,262.2z"/>
+ <path fill="#1C1C1C" d="M246.3,245.5h39.5c3,0,6.1,1.5,8.4,3.8c2.3,2.3,3.8,5.3,3.8,8.4v21.3c0,3-1.5,6.1-3.8,8.4
+ c-2.3,2.3-5.3,3.8-8.4,3.8h-39.5c-3,0-6.1-1.5-8.4-3.8c-2.3-2.3-3.8-5.3-3.8-8.4v-21.3c0-3,1.5-6.1,3.8-8.4l0,0
+ C239.5,247,242.5,245.5,246.3,245.5L246.3,245.5z M285.9,253.1h-39.5c-1.5,0-2.3,0.8-3,1.5l0,0c-0.8,0.8-1.5,2.3-1.5,3v21.3
+ c0,1.5,0.8,2.3,1.5,3c0.8,0.8,2.3,1.5,3,1.5h39.5c1.5,0,2.3-0.8,3-1.5s1.5-2.3,1.5-3v-21.3c0-1.5-0.8-2.3-1.5-3
+ C288.1,253.8,286.6,253.1,285.9,253.1z"/>
+</g>
+</svg>
A public/img/c2.svg
+146 −0
--- /dev/null
+++ b/public/img/c2.svg
@@ -0,0 +1,146 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Generator: Adobe Illustrator 18.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
+<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
+ viewBox="76 115.5 361.9 491.9" enable-background="new 76 115.5 361.9 491.9" xml:space="preserve">
+<g id="Avatar_4">
+ <path fill="#40545A" d="M79.8,603.5h354.3V523c0-66.9-59.3-121.6-131.5-121.6h-91.2c-72.2,0-131.5,54.7-131.5,121.6V603.5z"/>
+ <path fill="#1C1C1C" d="M82.9,599.7h347.4V523c0-32.7-14.4-61.6-37.3-83.6c-23.6-21.3-55.5-35-90.5-35h-91.2
+ c-35,0-67.7,13.7-90.5,35S83.6,490.3,83.6,523v76.8H82.9z M434.1,607.3H79.8c-2.3,0-3.8-1.5-3.8-3.8V523
+ c0-34.2,15.2-66.1,39.5-88.2c24.3-22.8,58.5-36.5,95-36.5h91.2c37.3,0,70.7,13.7,95,36.5c24.3,22.8,39.5,54,39.5,88.2v80.6
+ C437.9,605.8,436.4,607.3,434.1,607.3z"/>
+ <path fill="#1C1C1C" d="M148.2,496.4c0.8-1.5,3-3,4.6-2.3c1.5,0.8,3,3,2.3,4.6c-2.3,6.1-3.8,12.2-4.6,19
+ c-0.8,6.1-1.5,12.9-1.5,19.8v63.9h215.9v-63.9c0-6.8-0.8-12.9-1.5-19.8c-0.8-6.8-3-12.9-4.6-19c-0.8-1.5,0-3.8,2.3-4.6
+ c1.5-0.8,3.8,0,4.6,2.3c2.3,6.1,3.8,12.9,5.3,19.8c0.8,6.8,1.5,13.7,1.5,20.5v66.9c0,2.3-1.5,3.8-3.8,3.8H145.2
+ c-2.3,0-3.8-1.5-3.8-3.8v-66.9c0-6.8,0.8-13.7,1.5-20.5C144.4,509.3,146,502.4,148.2,496.4z"/>
+ <path fill="#FDC27A" d="M218.2,364.1h74.5v46.4c0,17.5-16.7,31.9-37.3,31.9l0,0c-20.5,0-37.3-14.4-37.3-31.9L218.2,364.1
+ L218.2,364.1z"/>
+ <path fill="#1C1C1C" d="M218.2,360.3h78.3v50.2c0,9.9-4.6,19-12.2,25.1s-17.5,10.6-28.9,10.6c-11.4,0-21.3-3.8-28.9-10.6
+ c-7.6-6.8-12.2-15.2-12.2-25.1v-50.2H218.2L218.2,360.3z M289.7,367.9H222v42.6c0,7.6,3.8,14.4,9.9,19.8c6.1,5.3,14.4,8.4,24.3,8.4
+ c9.9,0,18.2-3,24.3-8.4c6.1-5.3,9.9-12.2,9.9-19.8v-42.6H289.7z"/>
+ <path fill="#1C1C1C" d="M160.4,576.2c-1.5-0.8-2.3-3-0.8-4.6c0.8-1.5,3-2.3,4.6-0.8c10.6,6.8,22,10.6,35,11.4s26.6-1.5,41.1-7.6
+ c1.5-0.8,3.8,0,4.6,2.3c0.8,1.5,0,3.8-2.3,4.6c-16,6.1-30.4,8.4-44.1,7.6C184.7,587.6,172.6,583.8,160.4,576.2z"/>
+ <path fill="#1C1C1C" d="M347.4,570.1c1.5-0.8,3.8-0.8,4.6,0.8c0.8,1.5,0.8,3.8-0.8,4.6c-11.4,7.6-24.3,11.4-38,12.2
+ c-13.7,0.8-28.1-1.5-44.1-7.6c-1.5-0.8-3-3-2.3-4.6c0.8-1.5,3-3,4.6-2.3c14.4,5.3,28.1,7.6,41.1,7.6
+ C324.6,580.7,336.8,576.9,347.4,570.1z"/>
+ <rect x="79.8" y="558.7" fill="#FDC27A" width="65.4" height="44.9"/>
+ <path fill="#1C1C1C" d="M79.8,554.9h65.4c2.3,0,3.8,1.5,3.8,3.8v44.9c0,2.3-1.5,3.8-3.8,3.8H79.8c-2.3,0-3.8-1.5-3.8-3.8v-44.9
+ C76,556.4,77.5,554.9,79.8,554.9L79.8,554.9z M141.4,562.5H82.9v38h58.5V562.5z"/>
+ <rect x="368.7" y="558.7" fill="#FDC27A" width="65.4" height="44.9"/>
+ <path fill="#1C1C1C" d="M368.7,554.9h65.4c2.3,0,3.8,1.5,3.8,3.8v44.9c0,2.3-1.5,3.8-3.8,3.8h-65.4c-2.3,0-3.8-1.5-3.8-3.8v-44.9
+ C364.9,556.4,366.4,554.9,368.7,554.9L368.7,554.9z M430.3,562.5h-57.8v38h58.5v-38H430.3z"/>
+ <path fill="#DC5940" d="M293.5,421.8c0-56.3,0.8-93.5,44.9-99.6c22.8,12.9,26.6,38.8,26.6,65.4v56.3c0,25.8-7.6,50.2-19.8,69.2
+ c-14.4,22-35.7,37.3-59.3,40.3c-3,0.8-6.1,0.8-9.1,0.8c-9.1,0-18.2-1.5-26.6-5.3c35-13.7,44.1-46.4,44.1-70.7v-56.3H293.5z"/>
+ <path fill="#1C1C1C" d="M289.7,421.8c0-28.9,0-52.5,6.1-69.9c6.1-18.2,18.2-29.6,41.8-33.5c0.8,0,1.5,0,2.3,0.8
+ c12.2,6.8,19,17.5,22.8,29.6c3.8,12.2,4.6,25.1,4.6,38.8v56.3c0,12.9-1.5,25.8-5.3,37.3c-3.8,12.2-8.4,23.6-15.2,33.5
+ c-7.6,11.4-16.7,21.3-27.4,28.9c-10.6,6.8-22,11.4-34.2,13.7c-1.5,0-3,0.8-5.3,0.8c-1.5,0-3,0-5.3,0c-4.6,0-9.9-0.8-14.4-1.5
+ c-4.6-0.8-9.1-2.3-13.7-3.8c-1.5-0.8-3-3-2.3-4.6c0.8-0.8,1.5-1.5,2.3-2.3c14.4-5.3,24.3-14.4,30.4-25.1
+ c8.4-13.7,11.4-29.6,11.4-42.6v-56.3H289.7z M302.6,354.9c-5.3,16.7-6.1,39.5-6.1,67.7v56.3c0,14.4-3,31.2-12.2,46.4
+ c-6.1,9.1-13.7,17.5-25.8,23.6c1.5,0,3,0.8,4.6,0.8c4.6,0.8,8.4,1.5,12.9,1.5c1.5,0,3,0,4.6,0c1.5,0,3,0,4.6-0.8
+ c11.4-1.5,22-6.1,31.2-12.2c9.9-6.8,18.2-16,25.8-26.6c6.1-9.1,10.6-19.8,14.4-31.2c3-11.4,4.6-22.8,4.6-35.7v-56.3
+ c0-12.9-0.8-25.1-4.6-36.5c-3-9.9-9.1-19-19-25.1C317.8,329.1,307.9,339,302.6,354.9z"/>
+ <path fill="#DC5940" d="M242.5,258.4c0-61.6-22.8-93.5-73-100.4c-25.8,0-39.5,27.4-39.5,56.3v61.6c0,28.1,8.4,54.7,22,75.3
+ c16.7,24.3,40.3,40.3,67.7,44.1c3.8,0.8,6.8,0.8,10.6,0.8c10.6,0,21.3-2.3,30.4-6.1c-12.2-19.8-19-44.1-19-69.9v-61.6H242.5z"/>
+ <path fill="#1C1C1C" d="M239.5,258.4c0-29.6-5.3-52.5-16.7-68.4c-11.4-16-28.9-25.1-52.5-28.1c-10.6,0-19,5.3-25.1,13.7
+ c-6.8,9.9-10.6,24.3-10.6,38.8v61.6c0,13.7,2.3,26.6,5.3,38.8c3.8,12.9,9.1,24.3,16,34.2c8.4,12.2,18.2,22,29.6,28.9
+ c10.6,6.8,22.8,11.4,35.7,13.7c1.5,0,3,0,5.3,0.8c1.5,0,3,0,5.3,0c5.3,0,9.9-0.8,15.2-1.5c3.8-0.8,6.8-1.5,10.6-3
+ c-5.3-9.1-9.1-19.8-12.2-30.4c-3-12.2-5.3-24.3-5.3-38v-60.8H239.5z M228.1,185.4c12.2,17.5,18.2,41.1,18.2,73V320
+ c0,12.2,1.5,24.3,4.6,35.7c3,11.4,7.6,22.8,13.7,32.7l2.3,3.8l-3.8,1.5c-5.3,2.3-10.6,3.8-16,4.6c-5.3,0.8-10.6,1.5-16,1.5
+ c-1.5,0-3.8,0-5.3,0c-1.5,0-3.8,0-5.3-0.8c-13.7-1.5-27.4-6.8-38.8-14.4c-12.2-7.6-22.8-18.2-31.2-31.2
+ c-7.6-10.6-12.9-22.8-17.5-36.5c-3.8-12.9-6.1-26.6-6.1-41.1v-61.6c0-16,3.8-31.2,12.2-42.6c6.8-9.9,17.5-16.7,31.2-16.7l0,0l0,0
+ C196.1,158,215.2,167.9,228.1,185.4z"/>
+ <path fill="#FDC27A" d="M218.2,364.1h74.5v46.4c0,17.5-16.7,31.9-37.3,31.9l0,0c-20.5,0-37.3-14.4-37.3-31.9L218.2,364.1
+ L218.2,364.1z"/>
+ <path fill="#1C1C1C" d="M218.2,360.3h78.3v50.2c0,9.9-4.6,19-12.2,25.1s-17.5,10.6-28.9,10.6c-11.4,0-21.3-3.8-28.9-10.6
+ c-7.6-6.8-12.2-15.2-12.2-25.1v-50.2H218.2L218.2,360.3z M289.7,367.9H222v42.6c0,7.6,3.8,14.4,9.9,19.8c6.1,5.3,14.4,8.4,24.3,8.4
+ c9.9,0,18.2-3,24.3-8.4c6.1-5.3,9.9-12.2,9.9-19.8v-42.6H289.7z"/>
+ <path fill="#FDC27A" d="M257.7,166.4L257.7,166.4c48.7,0,88.2,39.5,88.2,88.2v32.7c0,48.7-39.5,88.2-88.2,88.2l0,0
+ c-48.7,0-88.2-39.5-88.2-88.2v-32.7C168.8,205.9,209.1,166.4,257.7,166.4z"/>
+ <path fill="#1C1C1C" d="M257.7,162.6c25.1,0,48.7,10.6,64.6,27.4c16.7,16.7,27.4,39.5,27.4,64.6v32.7c0,25.1-10.6,48.7-27.4,64.6
+ c-16.7,16.7-39.5,27.4-64.6,27.4s-48.7-10.6-64.6-27.4c-16.7-16.7-27.4-39.5-27.4-64.6v-32.7c0-25.1,10.6-48.7,27.4-64.6
+ C209.1,173.2,231.9,162.6,257.7,162.6L257.7,162.6z M257.7,170.2c-23.6,0-44.9,9.9-60.1,25.1c-15.2,15.2-25.1,36.5-25.1,60.1V288
+ c0,23.6,9.9,44.9,25.1,60.1c15.2,15.2,36.5,25.1,60.1,25.1s44.9-9.9,60.1-25.1c15.2-15.2,25.1-36.5,25.1-60.1v-32.7
+ c0-23.6-9.9-44.9-25.1-60.1C301.8,179.3,280.5,170.2,257.7,170.2z"/>
+ <path fill="#FDC27A" d="M147.5,264.5v2.3l0,0c0,12.9,9.1,23.6,22,25.8v-25.8v-23.6C165.7,253.1,160.4,261.4,147.5,264.5z"/>
+ <path fill="#1C1C1C" d="M143.7,266.8v-5.3l3-0.8c6.1-1.5,9.9-3.8,12.9-6.8c3-3,4.6-7.6,6.1-11.4l6.8-22v76.8l-4.6-0.8
+ c-6.8-1.5-12.9-5.3-17.5-10.6S143.7,274.4,143.7,266.8L143.7,266.8z M150.5,267.5c0,5.3,2.3,9.9,5.3,13.7c2.3,3,5.3,5.3,9.1,6.8
+ v-29.6l-0.8,0.8C161.2,263,156.6,265.2,150.5,267.5z"/>
+ <path fill="#1C1C1C" d="M259.2,301c0,2.3-1.5,3.8-3.8,3.8c-2.3,0-3.8-1.5-3.8-3.8c0-6.1,0-9.1,1.5-11.4c2.3-3,4.6-3,9.9-3
+ c2.3,0,3-0.8,3.8-2.3c0-0.8,0-1.5,0-2.3c0-0.8,0-1.5,0-2.3c-0.8-1.5-1.5-2.3-2.3-2.3c-2.3,0-3.8-1.5-3.8-3.8v-27.4
+ c0-2.3,1.5-3.8,3.8-3.8s3.8,1.5,3.8,3.8v24.3c3,0.8,4.6,3.8,5.3,6.1l0,0c0.8,1.5,0.8,3,0.8,4.6c0,1.5,0,3-0.8,4.6
+ c-1.5,3.8-4.6,6.8-10.6,6.8c-3,0-3.8,0-3.8,0C259.2,294.1,259.2,296.4,259.2,301z"/>
+ <path fill="#FDC27A" d="M345.9,240.9L345.9,240.9c0.8-3.8,3.8-6.8,7.6-6.8h6.1c4.6,0,7.6,3.8,7.6,7.6v25.1l0,0
+ c0,12.9-9.1,23.6-22,25.8v-25.8v-25.1v-0.8H345.9z"/>
+ <path fill="#1C1C1C" d="M349.7,240.9L349.7,240.9v46.4c3.8-1.5,6.8-3.8,9.1-6.8c3-3.8,5.3-9.1,5.3-14.4v-25.1c0-1.5-0.8-2.3-1.5-3
+ c-0.8-0.8-1.5-1.5-3-1.5h-6.1c-0.8,0-2.3,0.8-3,0.8C349.7,239.4,349.7,240.1,349.7,240.9L349.7,240.9z M343.6,236.3
+ c0.8-1.5,1.5-2.3,3-3.8c2.3-1.5,4.6-3,7.6-3h6.1c3,0,6.1,1.5,8.4,3c2.3,2.3,3,4.6,3,8.4v25.8c0,7.6-2.3,13.7-6.8,19
+ s-10.6,9.1-17.5,10.6l-5.3,0.8v-60.8H343.6z"/>
+ <path fill="#DC5940" d="M253.9,217.3c-45.6,0-79.8-15.2-84.4-59.3c7.6-24.3,31.2-39.5,51.7-39.5h45.6c21.3,0,40.3,7.6,55.5,19.8
+ c17.5,14.4,29.6,35.7,32.7,59.3c0,3,0.8,6.1,0.8,9.1c0,9.1-1.5,18.2-4.6,26.6c-14.4-10.6-32.7-16.7-51.7-16.7h-45.6V217.3z"/>
+ <path fill="#1C1C1C" d="M253.9,221.1c-23.6,0-44.1-3.8-59.3-13.7c-16-9.9-25.8-25.8-28.9-48.7c0-0.8,0-0.8,0-1.5
+ c3.8-12.2,11.4-22,21.3-29.6c10.6-7.6,22.8-12.2,34.2-12.2h45.6c10.6,0,21.3,1.5,30.4,5.3c9.9,3.8,19,8.4,27.4,15.2
+ c9.1,7.6,17.5,16.7,22.8,27.4c5.3,10.6,9.1,22,10.6,34.2c0,1.5,0,3,0.8,4.6c0,1.5,0,3,0,4.6c0,4.6-0.8,9.9-0.8,14.4
+ c-0.8,4.6-1.5,9.1-3,13.7c-0.8,1.5-2.3,3-4.6,2.3c0,0-0.8,0-0.8-0.8c-6.8-5.3-15.2-9.1-23.6-12.2c-8.4-3-16.7-3.8-25.8-3.8h-46.4
+ V221.1z M198.4,201.4c14.4,9.1,33.5,12.2,55.5,12.2h45.6c9.9,0,19,1.5,28.1,4.6c7.6,2.3,14.4,6.1,21.3,9.9c0.8-2.3,1.5-5.3,1.5-8.4
+ c0.8-4.6,0.8-8.4,0.8-12.9c0-1.5,0-3,0-4.6c0-1.5,0-3,0-4.6c-1.5-11.4-4.6-22-9.9-31.2c-5.3-9.9-12.9-18.2-21.3-25.8
+ c-7.6-6.1-16-10.6-25.1-13.7c-9.1-3-18.2-4.6-28.1-4.6h-45.6c-9.9,0-21.3,3.8-29.6,10.6c-8.4,6.1-15.2,15.2-18.2,25.1
+ C175.6,178.6,184.7,192.3,198.4,201.4z"/>
+ <path fill="#FFFFFF" d="M286.6,313.9c-2.3,14.4-16,25.8-31.2,25.8l0,0c-15.2,0-28.1-11.4-31.2-25.8H286.6z"/>
+ <path fill="#1C1C1C" d="M290.4,315.4c-1.5,8.4-6.1,15.2-12.2,20.5c-6.1,5.3-13.7,8.4-22.8,8.4c-8.4,0-16.7-3-22.8-8.4
+ c-6.1-5.3-10.6-12.2-12.2-20.5c0-2.3,0.8-3.8,3-3.8h0.8h62.3C288.9,311.6,290.4,313.1,290.4,315.4
+ C290.4,314.7,290.4,314.7,290.4,315.4L290.4,315.4z M273.7,329.9c3.8-3,6.8-7.6,8.4-12.2h-53.2c1.5,4.6,4.6,9.1,8.4,12.2
+ c4.6,3.8,11.4,6.8,18.2,6.8S269.1,334.4,273.7,329.9z"/>
+ <path fill="#1C1C1C" d="M333,393.7c0,2.3-1.5,3.8-3.8,3.8c-2.3,0-3.8-1.5-3.8-3.8v-56.3c0-2.3,1.5-3.8,3.8-3.8
+ c2.3,0,3.8,1.5,3.8,3.8V393.7z"/>
+ <path fill="#1C1C1C" d="M321.6,376.2c0,2.3-1.5,3.8-3.8,3.8c-2.3,0-3.8-1.5-3.8-3.8v-24.3c0-2.3,1.5-3.8,3.8-3.8
+ c2.3,0,3.8,1.5,3.8,3.8V376.2z"/>
+ <path fill="#1C1C1C" d="M250.1,552.6c-2.3,0-3.8-1.5-3.8-3c0-2.3,1.5-3.8,3-3.8c25.1-3,39.5-10.6,47.9-22
+ c8.4-11.4,10.6-26.6,11.4-43.3c0-2.3,1.5-3.8,3.8-3.8c2.3,0,3.8,1.5,3.8,3.8c-0.8,19-3.8,35-12.9,47.9
+ C293.5,540.4,277.5,549.6,250.1,552.6z"/>
+ <path fill="#1C1C1C" d="M177.9,138.3c-0.8-2.3,0.8-3.8,3-4.6s3.8,0.8,4.6,3c5.3,23.6,13.7,37.3,24.3,45.6
+ c10.6,8.4,22.8,10.6,37.3,9.9c2.3,0,3.8,1.5,3.8,3.8s-1.5,3.8-3.8,3.8c-15.2,0-29.6-2.3-41.8-11.4
+ C193.1,178.6,184,163.4,177.9,138.3z"/>
+ <path fill="#1C1C1C" d="M354.3,233.3c0,2.3-0.8,3.8-3,3.8c-2.3,0-3.8-0.8-3.8-3c-1.5-6.1-3-11.4-6.1-15.2c-3-3.8-6.8-6.8-11.4-9.1
+ c-1.5-0.8-2.3-3-1.5-4.6c0.8-1.5,3-2.3,4.6-1.5c6.1,2.3,10.6,6.1,13.7,11.4C350.5,220.4,353.5,226.5,354.3,233.3z"/>
+ <path fill="#1C1C1C" d="M186.3,199.1c1.5-0.8,3.8-0.8,4.6,1.5c0.8,1.5,0.8,3.8-1.5,4.6c-9.9,6.1-12.2,16.7-14.4,28.1
+ c-4.6,19-8.4,38-44.9,35.7c-2.3,0-3.8-1.5-3-3.8c0-2.3,1.5-3.8,3.8-3c30.4,1.5,34.2-14.4,38-30.4
+ C171.1,218.9,174.1,206.7,186.3,199.1z"/>
+ <path fill="#1C1C1C" d="M171.1,167.9c1.5-0.8,3.8,0.8,4.6,2.3c0.8,1.5-0.8,3.8-2.3,4.6c-4.6,1.5-9.1,4.6-12.9,7.6
+ c-3.8,3.8-6.8,9.1-9.1,14.4c-0.8,1.5-3,3-4.6,2.3c-2.3-0.8-3-3-2.3-4.6c3-6.8,6.1-12.9,10.6-16.7
+ C159.7,172.5,165,169.4,171.1,167.9z"/>
+ <path fill="#1C1C1C" d="M257.7,170.2c-2.3,0-3.8-1.5-3.8-3c0-2.3,1.5-3.8,3-3.8c12.2-0.8,22.8-0.8,31.9,0c9.9,0.8,18.2,3,25.8,5.3
+ c1.5,0.8,3,3,2.3,4.6c-0.8,1.5-3,3-4.6,2.3c-6.8-2.3-14.4-3.8-23.6-5.3C279.8,169.4,269.1,169.4,257.7,170.2z"/>
+ <path fill="#1C1C1C" d="M274.4,154.2c-2.3,0-3.8-1.5-3.8-3.8c0-2.3,1.5-3.8,3.8-3.8c4.6,0,9.1,0.8,13.7,0.8
+ c4.6,0.8,8.4,1.5,12.2,2.3c2.3,0.8,3,2.3,3,4.6c-0.8,2.3-2.3,3-4.6,3c-3.8-0.8-7.6-1.5-11.4-2.3C282.8,155,279,154.2,274.4,154.2z"
+ />
+ <path fill="#F2B264" d="M215.9,225.7c16.7,0,31.2,13.7,31.2,31.2c0,16.7-13.7,31.2-31.2,31.2c-16.7,0-31.2-13.7-31.2-31.2
+ S198.4,225.7,215.9,225.7L215.9,225.7z M298.8,225.7c16.7,0,31.2,13.7,31.2,31.2c0,16.7-13.7,31.2-31.2,31.2
+ c-16.7,0-31.2-13.7-31.2-31.2C268.4,239.4,282.1,225.7,298.8,225.7z"/>
+ <path fill="#1C1C1C" d="M215.9,221.9c9.9,0,18.2,3.8,24.3,9.9c6.1,6.1,9.9,15.2,9.9,24.3c0,9.9-3.8,18.2-9.9,24.3
+ c-6.1,6.1-15.2,9.9-24.3,9.9s-18.2-3.8-24.3-9.9c-6.1-6.1-9.9-15.2-9.9-24.3c0-9.9,3.8-18.2,9.9-24.3
+ C197.7,225.7,206,221.9,215.9,221.9L215.9,221.9z M234.9,237.1c-5.3-5.3-12.2-8.4-19-8.4c-7.6,0-14.4,3-19,8.4
+ c-5.3,5.3-8.4,12.2-8.4,19c0,7.6,3,14.4,8.4,19c5.3,5.3,12.2,8.4,19,8.4c7.6,0,14.4-3,19-8.4c5.3-5.3,8.4-12.2,8.4-19
+ C243.3,249.3,240.2,242.4,234.9,237.1L234.9,237.1z M298.8,221.9c9.9,0,18.2,3.8,24.3,9.9c6.1,6.1,9.9,15.2,9.9,24.3
+ c0,9.9-3.8,18.2-9.9,24.3c-6.1,6.1-15.2,9.9-24.3,9.9c-9.9,0-18.2-3.8-24.3-9.9c-6.1-6.1-9.9-15.2-9.9-24.3
+ c0-9.9,3.8-18.2,9.9-24.3C280.5,225.7,289.7,221.9,298.8,221.9L298.8,221.9z M318.5,237.1c-5.3-5.3-12.2-8.4-19-8.4
+ c-7.6,0-14.4,3-19,8.4c-5.3,5.3-8.4,12.2-8.4,19c0,7.6,3,14.4,8.4,19c5.3,5.3,12.2,8.4,19,8.4c7.6,0,14.4-3,19-8.4
+ c5.3-5.3,8.4-12.2,8.4-19C326.1,249.3,323.1,242.4,318.5,237.1z"/>
+ <path fill="#1C1C1C" d="M259.2,301c0,2.3-1.5,3.8-3.8,3.8c-2.3,0-3.8-1.5-3.8-3.8c0-6.1,0-9.1,1.5-11.4c2.3-3,4.6-3,9.9-3
+ c2.3,0,3-0.8,3.8-2.3c0-0.8,0-1.5,0-2.3c0-0.8,0-1.5,0-2.3c-0.8-1.5-1.5-2.3-2.3-2.3c-2.3,0-3.8-1.5-3.8-3.8v-27.4
+ c0-2.3,1.5-3.8,3.8-3.8s3.8,1.5,3.8,3.8v24.3c3,0.8,4.6,3.8,5.3,6.1l0,0c0.8,1.5,0.8,3,0.8,4.6c0,1.5,0,3-0.8,4.6
+ c-1.5,3.8-4.6,6.8-10.6,6.8c-3,0-3.8,0-3.8,0C259.2,294.1,259.2,296.4,259.2,301z"/>
+ <circle fill="#40545A" cx="215.9" cy="256.9" r="10.6"/>
+ <path fill="#1C1C1C" d="M215.9,242.4c3.8,0,7.6,1.5,9.9,3.8l0,0c2.3,2.3,3.8,6.1,3.8,9.9s-1.5,7.6-3.8,9.9l0,0
+ c-2.3,2.3-6.1,3.8-9.9,3.8s-7.6-1.5-9.9-3.8l0,0c-2.3-2.3-3.8-6.1-3.8-9.9s1.5-7.6,3.8-9.9l0,0C208.3,244,212.1,242.4,215.9,242.4
+ L215.9,242.4z M220.5,251.6L220.5,251.6c-1.5-1.5-3-2.3-5.3-2.3s-3.8,0.8-5.3,2.3l0,0c-1.5,1.5-2.3,3-2.3,5.3
+ c0,2.3,0.8,3.8,2.3,5.3l0,0c1.5,1.5,3,2.3,5.3,2.3c2.3,0,3.8-0.8,5.3-2.3l0,0c1.5-1.5,2.3-3,2.3-5.3
+ C222.8,254.6,222,253.1,220.5,251.6z"/>
+ <circle fill="#40545A" cx="298.8" cy="256.9" r="10.6"/>
+ <path fill="#1C1C1C" d="M298.8,250c-2.3,0-3.8,0.8-5.3,2.3l0,0c-1.5,1.5-2.3,3-2.3,5.3c0,2.3,0.8,3.8,2.3,5.3l0,0
+ c1.5,1.5,3,2.3,5.3,2.3s3.8-0.8,5.3-2.3l0,0c1.5-1.5,2.3-3,2.3-5.3s-0.8-3.8-2.3-5.3l0,0C302.6,250.8,301.1,250,298.8,250
+ L298.8,250z M288.9,247c2.3-2.3,6.1-3.8,9.9-3.8s7.6,1.5,9.9,3.8l0,0c2.3,2.3,3.8,6.1,3.8,9.9s-1.5,7.6-3.8,9.9l0,0
+ c-2.3,2.3-6.1,3.8-9.9,3.8s-7.6-1.5-9.9-3.8l0,0c-2.3-2.3-3.8-6.1-3.8-9.9C285.1,253.1,286.6,249.3,288.9,247L288.9,247z"/>
+ <path fill="#1C1C1C" d="M246.3,247c4.6-3,9.1-4.6,13.7-4.6c4.6,0.8,8.4,3,11.4,6.8l-5.3,4.6c-2.3-3-4.6-3.8-6.8-4.6
+ c-2.3,0-5.3,0.8-9.1,3L246.3,247z"/>
+</g>
+</svg>
A public/img/c3.svg
+89 −0
--- /dev/null
+++ b/public/img/c3.svg
@@ -0,0 +1,89 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Generator: Adobe Illustrator 18.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
+<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
+ viewBox="0 0 47.6 62.7" enable-background="new 0 0 47.6 62.7" xml:space="preserve">
+<g id="Avatar_13">
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#FDC27A" d="M0.5,62.3h46.6V51.7c0-8.8-7.8-16-17.3-16h-12
+ c-9.5,0-17.3,7.2-17.3,16V62.3z"/>
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#1C1C1C" d="M0.9,61.8h45.7V51.7c0-4.3-1.9-8.1-4.9-11
+ c-3.1-2.8-7.3-4.6-11.9-4.6h-12c-4.6,0-8.9,1.8-11.9,4.6c-3,2.8-4.9,6.7-4.9,11V61.8L0.9,61.8z M47.1,62.7H0.5
+ c-0.3,0-0.5-0.2-0.5-0.5V51.7C0,47.1,2,43,5.2,40c3.2-3,7.7-4.8,12.5-4.8h12c4.9,0,9.3,1.8,12.5,4.8c3.2,3,5.2,7.1,5.2,11.6v10.6
+ C47.6,62.5,47.4,62.7,47.1,62.7z"/>
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#1C1C1C" d="M9.5,48.1c0.1-0.2,0.4-0.4,0.6-0.3c0.2,0.1,0.4,0.4,0.3,0.6
+ c-0.3,0.8-0.5,1.6-0.6,2.5c-0.1,0.8-0.2,1.7-0.2,2.6v8.4H38v-8.4c0-0.9-0.1-1.7-0.2-2.6c-0.1-0.9-0.4-1.7-0.6-2.5
+ c-0.1-0.2,0-0.5,0.3-0.6c0.2-0.1,0.5,0,0.6,0.3c0.3,0.8,0.5,1.7,0.7,2.6c0.1,0.9,0.2,1.8,0.2,2.7v8.8c0,0.3-0.2,0.5-0.5,0.5H9.1
+ c-0.3,0-0.5-0.2-0.5-0.5v-8.8c0-0.9,0.1-1.8,0.2-2.7C9,49.8,9.2,49,9.5,48.1z"/>
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#A76739" d="M18.7,30.8h9.8v6.1c0,2.3-2.2,4.2-4.9,4.2h0
+ c-2.7,0-4.9-1.9-4.9-4.2V30.8z"/>
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#1C1C1C" d="M18.7,30.3H29v6.6c0,1.3-0.6,2.5-1.6,3.3c-1,0.8-2.3,1.4-3.8,1.4
+ c-1.5,0-2.8-0.5-3.8-1.4c-1-0.9-1.6-2-1.6-3.3v-6.6H18.7L18.7,30.3z M28.1,31.2h-8.9v5.6c0,1,0.5,1.9,1.3,2.6
+ c0.8,0.7,1.9,1.1,3.2,1.1c1.2,0,2.4-0.4,3.2-1.1c0.8-0.7,1.3-1.6,1.3-2.6V31.2z"/>
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#A76739" d="M23.9,0.5L23.9,0.5c6.4,0,11.6,5.2,11.6,11.6v8.6
+ c0,6.4-5.2,11.6-11.6,11.6h0c-6.4,0-11.6-5.2-11.6-11.6v-8.6C12.2,5.7,17.5,0.5,23.9,0.5z"/>
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#1C1C1C" d="M23.9,0c3.3,0,6.4,1.4,8.5,3.6c2.2,2.2,3.6,5.2,3.6,8.5v8.6
+ c0,3.3-1.4,6.4-3.6,8.5c-2.2,2.2-5.2,3.6-8.5,3.6c-3.3,0-6.4-1.4-8.5-3.6c-2.2-2.2-3.6-5.2-3.6-8.5v-8.6c0-3.3,1.4-6.4,3.6-8.5
+ C17.5,1.4,20.5,0,23.9,0L23.9,0z M31.7,4.2c-2-2-4.8-3.3-7.9-3.3c-3.1,0-5.9,1.3-7.9,3.3c-2,2-3.3,4.8-3.3,7.9v8.6
+ c0,3.1,1.3,5.9,3.3,7.9c2,2,4.8,3.3,7.9,3.3c3.1,0,5.9-1.3,7.9-3.3s3.3-4.8,3.3-7.9v-8.6C35,9,33.8,6.2,31.7,4.2z"/>
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#40545A" d="M23.9,0.5L23.9,0.5c6.4,0,11.6,5.2,11.6,11.6v5.4h-2.1v-3.8
+ c0.1-6.4-3.3-9.3-9.5-6.2c-6.2-3.1-9.6-0.2-9.5,6.2v3.8h-2.2v-5.4C12.2,5.7,17.5,0.5,23.9,0.5z"/>
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#1C1C1C" d="M23.9,0c3.3,0,6.4,1.4,8.5,3.6c2.2,2.2,3.6,5.2,3.6,8.5V18h-3
+ v-4.3l0,0c0-1.9-0.3-3.5-0.8-4.6c-0.4-0.7-0.9-1.3-1.5-1.7c-0.6-0.4-1.3-0.6-2.2-0.6c-1.2,0-2.7,0.4-4.3,1.2L23.9,8l-0.2-0.1
+ c-1.7-0.8-3.1-1.2-4.3-1.2c-0.8,0-1.6,0.2-2.2,0.6c-0.6,0.4-1.1,1-1.5,1.7c-0.6,1.2-0.9,2.7-0.8,4.6l0,0V18h-3.1v-5.9
+ c0-3.3,1.4-6.4,3.6-8.5C17.5,1.4,20.5,0,23.9,0L23.9,0z M23.9,0.9c-3.1,0-5.9,1.3-7.9,3.3c-2,2-3.3,4.8-3.3,7.9V17h1.2v-3.4h0
+ c0-2.1,0.3-3.8,0.9-5.1C15.3,7.7,16,7,16.7,6.5c0.8-0.5,1.6-0.7,2.7-0.8c1.3,0,2.8,0.4,4.5,1.2c1.7-0.8,3.2-1.2,4.5-1.2
+ c1,0,1.9,0.3,2.7,0.8C31.9,7,32.5,7.7,33,8.6c0.7,1.3,1,3,0.9,5.1h0V17H35v-4.9c0-3.1-1.3-5.9-3.3-7.9C29.7,2.2,26.9,0.9,23.9,0.9z
+ "/>
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" d="M27.7,24.2c-0.3,1.9-2,3.4-4.1,3.4l0,0c-2,0-3.7-1.5-4.1-3.4H27.7
+ z"/>
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#1C1C1C" d="M28.2,24.3c-0.2,1.1-0.8,2-1.6,2.7c-0.8,0.7-1.8,1.1-3,1.1
+ c-1.1,0-2.2-0.4-3-1.1c-0.8-0.7-1.4-1.6-1.6-2.7c0-0.3,0.1-0.5,0.4-0.5c0,0,0.1,0,0.1,0l8.2,0c0.3,0,0.5,0.2,0.5,0.5
+ C28.2,24.2,28.2,24.3,28.2,24.3L28.2,24.3z M26,26.3c0.5-0.4,0.9-1,1.1-1.6h-7c0.2,0.6,0.6,1.2,1.1,1.6c0.6,0.5,1.5,0.9,2.4,0.9
+ C24.5,27.2,25.4,26.8,26,26.3z"/>
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#1C1C1C" d="M15.8,14.1c-0.2,0.2-0.5,0.2-0.7,0c-0.2-0.2-0.2-0.5,0-0.7
+ c0.4-0.4,0.9-0.8,1.5-1l0,0c0.5-0.2,1.1-0.3,1.7-0.3c0.6,0,1.2,0.1,1.7,0.3l0,0c0.6,0.2,1.1,0.6,1.5,1c0.2,0.2,0.2,0.5,0,0.7
+ c-0.2,0.2-0.5,0.2-0.7,0c-0.3-0.3-0.7-0.6-1.2-0.8c-0.4-0.2-0.9-0.3-1.4-0.3c-0.5,0-0.9,0.1-1.4,0.3l0,0
+ C16.6,13.5,16.2,13.8,15.8,14.1L15.8,14.1z M26.8,14.1c-0.2,0.2-0.5,0.2-0.7,0c-0.2-0.2-0.2-0.5,0-0.7c0.4-0.4,0.9-0.8,1.5-1l0,0
+ c0.5-0.2,1.1-0.3,1.7-0.3c0.6,0,1.2,0.1,1.7,0.3l0,0c0.6,0.2,1.1,0.6,1.5,1c0.2,0.2,0.2,0.5,0,0.7c-0.2,0.2-0.5,0.2-0.7,0
+ c-0.3-0.3-0.7-0.6-1.2-0.8c-0.4-0.2-0.9-0.3-1.4-0.3c-0.5,0-0.9,0.1-1.4,0.3l0,0C27.5,13.5,27.1,13.8,26.8,14.1z"/>
+ <circle fill-rule="evenodd" clip-rule="evenodd" fill="#40545A" cx="18.4" cy="16.6" r="1.4"/>
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#1C1C1C" d="M18.4,14.8c0.5,0,1,0.2,1.3,0.5l0,0c0.3,0.3,0.5,0.8,0.5,1.3
+ c0,0.5-0.2,1-0.5,1.3c-0.3,0.3-0.8,0.5-1.3,0.5c-0.5,0-1-0.2-1.3-0.5c-0.3-0.3-0.5-0.8-0.5-1.3c0-0.5,0.2-1,0.5-1.3h0
+ C17.4,15,17.9,14.8,18.4,14.8L18.4,14.8z M19.1,16c-0.2-0.2-0.4-0.3-0.7-0.3c-0.3,0-0.5,0.1-0.7,0.3l0,0c-0.2,0.2-0.3,0.4-0.3,0.7
+ c0,0.3,0.1,0.5,0.3,0.7c0.2,0.2,0.4,0.3,0.7,0.3c0.3,0,0.5-0.1,0.7-0.3c0.2-0.2,0.3-0.4,0.3-0.7C19.3,16.4,19.2,16.2,19.1,16z"/>
+ <circle fill-rule="evenodd" clip-rule="evenodd" fill="#40545A" cx="29.3" cy="16.6" r="1.4"/>
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#1C1C1C" d="M29.3,15.7c-0.3,0-0.5,0.1-0.7,0.3c-0.2,0.2-0.3,0.4-0.3,0.7
+ c0,0.3,0.1,0.5,0.3,0.7l0,0c0.2,0.2,0.4,0.3,0.7,0.3c0.3,0,0.5-0.1,0.7-0.3c0.2-0.2,0.3-0.4,0.3-0.7c0-0.3-0.1-0.5-0.3-0.7
+ C29.8,15.8,29.6,15.7,29.3,15.7L29.3,15.7z M28,15.3c0.3-0.3,0.8-0.5,1.3-0.5c0.5,0,1,0.2,1.3,0.5l0,0c0.3,0.3,0.5,0.8,0.5,1.3
+ c0,0.5-0.2,1-0.5,1.3c-0.3,0.3-0.8,0.5-1.3,0.5c-0.5,0-1-0.2-1.3-0.5l0,0c-0.3-0.3-0.5-0.8-0.5-1.3C27.5,16.1,27.7,15.7,28,15.3z"
+ />
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#A76739" d="M12.2,14.5L12.2,14.5c-0.1-0.5-0.5-0.9-1-0.9h-0.8
+ c-0.6,0-1,0.5-1,1V18l0,0c0,1.7,1.2,3.1,2.9,3.4V18v-3.3V14.5z"/>
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#1C1C1C" d="M11.8,14.6L11.8,14.6c0-0.2-0.1-0.3-0.2-0.4
+ c-0.1-0.1-0.2-0.1-0.4-0.1h-0.8c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.2-0.2,0.4V18c0,0.7,0.3,1.4,0.7,1.9
+ c0.3,0.4,0.7,0.7,1.2,0.9V14.6L11.8,14.6z M12.2,13.5c0.1,0.1,0.3,0.3,0.4,0.5l0.2,0v7.9l-0.6-0.1c-0.9-0.2-1.7-0.7-2.3-1.4
+ c-0.6-0.7-0.9-1.6-0.9-2.5v-3.3c0-0.4,0.2-0.8,0.4-1.1c0.3-0.3,0.6-0.4,1.1-0.4h0.8C11.6,13.2,11.9,13.3,12.2,13.5z"/>
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#1C1C1C" d="M24.1,22.5c0,0.3-0.2,0.5-0.5,0.5c-0.3,0-0.5-0.2-0.5-0.5
+ c0-0.8,0-1.2,0.2-1.5c0.3-0.4,0.6-0.4,1.3-0.4c0.3,0,0.4-0.1,0.5-0.3c0-0.1,0-0.2,0-0.3c0-0.1,0-0.2,0-0.3
+ c-0.1-0.2-0.2-0.3-0.3-0.3c-0.3,0-0.5-0.2-0.5-0.5v-3.6c0-0.3,0.2-0.5,0.5-0.5c0.3,0,0.5,0.2,0.5,0.5v3.2c0.4,0.1,0.6,0.5,0.7,0.8
+ c0.1,0.2,0.1,0.4,0.1,0.6c0,0.2,0,0.4-0.1,0.6c-0.2,0.5-0.6,0.9-1.4,0.9c-0.4,0-0.5,0-0.5,0C24.1,21.6,24.1,21.9,24.1,22.5z"/>
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#A76739" d="M35.5,14.5L35.5,14.5c0.1-0.5,0.5-0.9,1-0.9h0.8c0.6,0,1,0.5,1,1
+ V18l0,0c0,1.7-1.2,3.1-2.9,3.4V18v-3.3V14.5z"/>
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#1C1C1C" d="M36,14.6L36,14.6l0,6.1c0.5-0.2,0.9-0.5,1.2-0.9
+ c0.4-0.5,0.7-1.2,0.7-1.9v-3.3c0-0.2-0.1-0.3-0.2-0.4c-0.1-0.1-0.2-0.2-0.4-0.2h-0.8c-0.1,0-0.3,0.1-0.4,0.1
+ C36.1,14.3,36,14.5,36,14.6L36,14.6z M35.2,14c0.1-0.2,0.2-0.3,0.4-0.5c0.3-0.2,0.6-0.4,1-0.4h0.8c0.4,0,0.8,0.2,1.1,0.4
+ c0.3,0.3,0.4,0.6,0.4,1.1V18c0,1-0.3,1.8-0.9,2.5c-0.6,0.7-1.4,1.2-2.3,1.4L35,21.9V14L35.2,14z"/>
+ <polygon fill-rule="evenodd" clip-rule="evenodd" fill="#DC5940" points="17.2,32.9 23,41.1 18,46.2 14,35.8 "/>
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#1C1C1C" d="M17.6,32.7l5.8,8.2c0.1,0.2,0.1,0.4,0,0.6l-5,5.1
+ c-0.2,0.2-0.5,0.2-0.7,0c0,0-0.1-0.1-0.1-0.2l-4-10.3c-0.1-0.2,0-0.4,0.1-0.5l3.2-2.9C17.1,32.4,17.4,32.4,17.6,32.7
+ C17.6,32.6,17.6,32.6,17.6,32.7L17.6,32.7z M22.4,41l-5.3-7.4L14.5,36l3.7,9.4L22.4,41z"/>
+ <polygon fill-rule="evenodd" clip-rule="evenodd" fill="#DC5940" points="30,32.9 24.1,41.1 29.2,46.2 33.2,35.8 "/>
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#1C1C1C" d="M30,33.6L24.7,41l4.2,4.3l3.7-9.4L30,33.6L30,33.6z M23.7,40.8
+ l5.8-8.2c0,0,0,0,0-0.1c0.2-0.2,0.5-0.2,0.7,0l3.2,2.9c0.1,0.1,0.2,0.3,0.1,0.5l-4,10.3c0,0.1-0.1,0.1-0.1,0.2
+ c-0.2,0.2-0.5,0.2-0.7,0l-5-5.1C23.6,41.3,23.6,41,23.7,40.8z"/>
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#DC5940" d="M24.2,41.1l1.8,1.9c-1.5,1-3,1-4.7,0l1.8-1.8L24.2,41.1z"/>
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#1C1C1C" d="M24.5,40.8l2.2,2.3l-0.5,0.3c-0.8,0.5-1.7,0.8-2.5,0.8
+ c-0.9,0-1.8-0.3-2.7-0.8l-0.5-0.3l2.4-2.4l1.5,0L24.5,40.8L24.5,40.8z M25.3,42.8L24,41.6l-0.7,0l-1.2,1.3c0.6,0.3,1.1,0.4,1.7,0.4
+ C24.2,43.2,24.8,43.1,25.3,42.8z"/>
+</g>
+</svg>
A public/img/cop1.svg
+131 −0
--- /dev/null
+++ b/public/img/cop1.svg
@@ -0,0 +1,131 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Generator: Adobe Illustrator 18.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
+<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
+ viewBox="0 0 47.6 70.5" enable-background="new 0 0 47.6 70.5" xml:space="preserve">
+<g>
+ <g id="Avatar_10">
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#291E3E" d="M0.5,70h46.6V59.4c0-8.8-7.8-16-17.3-16h-1.2v-1.8v-3.1h-9.8v4.9
+ h-1c-9.5,0-17.3,7.2-17.3,16V70z"/>
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#1C1C1C" d="M0.9,69.5h45.7V59.4c0-4.3-1.9-8.1-4.9-11
+ c-3.1-2.8-7.3-4.6-11.9-4.6h-1.2c-0.3,0-0.5-0.2-0.5-0.5v-4.4h-8.9v4.4c0,0.3-0.2,0.5-0.5,0.5h-1c-4.6,0-8.8,1.8-11.9,4.6
+ c-3,2.8-4.9,6.7-4.9,11V69.5L0.9,69.5z M47.1,70.5H0.5C0.2,70.5,0,70.2,0,70V59.4c0-4.5,2-8.7,5.2-11.6c3.2-3,7.7-4.8,12.5-4.8
+ h0.5v-4.4c0-0.3,0.2-0.5,0.5-0.5h9.8c0.3,0,0.5,0.2,0.5,0.5v4.4h0.8c4.9,0,9.3,1.8,12.5,4.8c3.2,3,5.2,7.1,5.2,11.6V70
+ C47.6,70.2,47.4,70.5,47.1,70.5z"/>
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#1C1C1C" d="M9.5,55.8c0.1-0.2,0.4-0.4,0.6-0.3c0.2,0.1,0.4,0.4,0.3,0.6
+ c-0.3,0.8-0.5,1.6-0.6,2.5c-0.1,0.8-0.2,1.7-0.2,2.6v8.4H38v-8.4c0-0.9-0.1-1.7-0.2-2.6c-0.1-0.9-0.4-1.7-0.6-2.5
+ c-0.1-0.2,0-0.5,0.3-0.6c0.2-0.1,0.5,0,0.6,0.3c0.3,0.8,0.5,1.7,0.7,2.6c0.1,0.9,0.2,1.8,0.2,2.7V70c0,0.3-0.2,0.5-0.5,0.5H9.1
+ c-0.3,0-0.5-0.2-0.5-0.5v-8.8c0-0.9,0.1-1.8,0.2-2.7C9,57.5,9.2,56.7,9.5,55.8z"/>
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#FDC27A" d="M28.6,37.2c0,2,0.1,12.3,0.1,12.3c-3.2,2.3-6.4,2.3-9.8,0
+ c0-2.3-0.1-12.7-0.1-12.7C22.2,39.6,25.4,39.7,28.6,37.2z"/>
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#1C1C1C" d="M29,37.2c0,2.4,0.1,12.3,0.1,12.3c0,0.2-0.1,0.3-0.2,0.4l0,0
+ c-1.7,1.2-3.4,1.8-5.1,1.8c-1.7,0-3.5-0.6-5.3-1.8c-0.1-0.1-0.2-0.2-0.2-0.4c0-2.6-0.1-12.7-0.1-12.7c0-0.3,0.2-0.5,0.5-0.5
+ c0.1,0,0.2,0,0.3,0.1c1.6,1.3,3.2,2,4.7,2.1c1.5,0.1,3-0.5,4.5-1.7c0.2-0.2,0.5-0.1,0.7,0.1C29,36.9,29,37,29,37.2L29,37.2
+ L29,37.2z M28.2,49.2c0-1.4-0.1-8.4-0.1-11.2c-1.4,1-2.9,1.4-4.4,1.3c-1.5-0.1-3-0.6-4.5-1.7c0,2.6,0.1,9.5,0.1,11.5
+ c1.5,1,3.1,1.5,4.5,1.5C25.4,50.7,26.8,50.2,28.2,49.2z"/>
+
+ <rect x="12.1" y="56.2" transform="matrix(0.2088 -0.978 0.978 0.2088 -35.0614 70.0039)" fill-rule="evenodd" clip-rule="evenodd" fill="#1C1C1C" width="27.2" height="0.9"/>
+ <polygon fill-rule="evenodd" clip-rule="evenodd" fill="#1C1C1C" points="27.6,49.3 34.4,56.1 26.3,70.2 25.5,69.7 33.2,56.3
+ 26.9,50 "/>
+
+ <rect x="9.4" y="54.4" transform="matrix(-0.2088 -0.978 0.978 -0.2088 -28.0352 87.0586)" fill-rule="evenodd" clip-rule="evenodd" fill="#1C1C1C" width="23.5" height="0.9"/>
+ <polygon fill-rule="evenodd" clip-rule="evenodd" fill="#1C1C1C" points="20.4,50 14.1,56.3 21.8,69.7 21,70.2 12.9,56.1
+ 19.8,49.3 "/>
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#DCDBDB" d="M20.4,53.5l3.2,12.9l3.2-12.9l1.2-6.7c-2.9,1-5.8,1-8.9,0
+ L20.4,53.5z"/>
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#1C1C1C" d="M20.9,53.4l2.8,11.1l2.8-11.1l1.1-5.9C26.3,47.8,25,48,23.7,48
+ c-1.3,0-2.6-0.2-3.9-0.5L20.9,53.4L20.9,53.4z M23.2,66.5L20,53.6l-1.2-6.7c0-0.1,0-0.2,0-0.3c0.1-0.2,0.3-0.4,0.6-0.3
+ c1.5,0.5,3,0.7,4.4,0.7c1.4,0,2.8-0.2,4.2-0.7c0.1,0,0.2,0,0.2,0c0.3,0,0.4,0.3,0.4,0.5l-1.2,6.6c0,0,0,0,0,0.1l-3.2,12.9
+ c0,0.2-0.2,0.3-0.3,0.4C23.5,66.9,23.3,66.7,23.2,66.5z"/>
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#FDC27A" d="M23.9,8.2L23.9,8.2c6.4,0,11.6,5.2,11.6,11.6v8.6
+ c0,6.4-5.2,11.6-11.6,11.6h0c-6.4,0-11.6-5.2-11.6-11.6v-8.6C12.2,13.4,17.5,8.2,23.9,8.2z"/>
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#1C1C1C" d="M23.9,7.7c3.3,0,6.4,1.4,8.5,3.6c2.2,2.2,3.6,5.2,3.6,8.5v8.6
+ c0,3.3-1.4,6.4-3.6,8.5c-2.2,2.2-5.2,3.6-8.5,3.6c-3.3,0-6.4-1.4-8.5-3.6c-2.2-2.2-3.6-5.2-3.6-8.5v-8.6c0-3.3,1.4-6.4,3.6-8.5
+ C17.5,9.1,20.5,7.7,23.9,7.7L23.9,7.7z M31.7,11.9c-2-2-4.8-3.3-7.9-3.3c-3.1,0-5.9,1.3-7.9,3.3c-2,2-3.3,4.8-3.3,7.9v8.6
+ c0,3.1,1.3,5.9,3.3,7.9c2,2,4.8,3.3,7.9,3.3c3.1,0,5.9-1.3,7.9-3.3c2-2,3.3-4.8,3.3-7.9v-8.6C35,16.7,33.8,13.9,31.7,11.9z"/>
+ <circle fill-rule="evenodd" clip-rule="evenodd" fill="#40545A" cx="18.4" cy="24.3" r="1.4"/>
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#1C1C1C" d="M18.4,22.5c0.5,0,1,0.2,1.3,0.5v0c0.3,0.3,0.5,0.8,0.5,1.3
+ c0,0.5-0.2,1-0.5,1.3v0c-0.3,0.3-0.8,0.5-1.3,0.5c-0.5,0-1-0.2-1.3-0.5c-0.3-0.3-0.5-0.8-0.5-1.3c0-0.5,0.2-1,0.5-1.3h0
+ C17.4,22.7,17.9,22.5,18.4,22.5L18.4,22.5z M19.1,23.7L19.1,23.7c-0.2-0.2-0.4-0.3-0.7-0.3c-0.3,0-0.5,0.1-0.7,0.3l0,0
+ c-0.2,0.2-0.3,0.4-0.3,0.7c0,0.3,0.1,0.5,0.3,0.7c0.2,0.2,0.4,0.3,0.7,0.3c0.3,0,0.5-0.1,0.7-0.3l0,0c0.2-0.2,0.3-0.4,0.3-0.7
+ C19.3,24.1,19.2,23.9,19.1,23.7z"/>
+ <circle fill-rule="evenodd" clip-rule="evenodd" fill="#40545A" cx="29.3" cy="24.3" r="1.4"/>
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#1C1C1C" d="M29.3,23.4c-0.3,0-0.5,0.1-0.7,0.3l0,0c-0.2,0.2-0.3,0.4-0.3,0.7
+ c0,0.3,0.1,0.5,0.3,0.7c0.2,0.2,0.4,0.3,0.7,0.3c0.3,0,0.5-0.1,0.7-0.3l0,0c0.2-0.2,0.3-0.4,0.3-0.7c0-0.3-0.1-0.5-0.3-0.7l0,0
+ C29.8,23.5,29.6,23.4,29.3,23.4L29.3,23.4z M28,23c0.3-0.3,0.8-0.5,1.3-0.5c0.5,0,1,0.2,1.3,0.5v0c0.3,0.3,0.5,0.8,0.5,1.3
+ c0,0.5-0.2,1-0.5,1.3v0c-0.3,0.3-0.8,0.5-1.3,0.5c-0.5,0-1-0.2-1.3-0.5c-0.3-0.3-0.5-0.8-0.5-1.3C27.5,23.8,27.7,23.4,28,23L28,23
+ z"/>
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#1C1C1C" d="M24.1,30.2c0,0.3-0.2,0.5-0.5,0.5s-0.5-0.2-0.5-0.5
+ c0-0.8,0-1.2,0.2-1.5c0.3-0.4,0.6-0.4,1.3-0.4c0.3,0,0.4-0.1,0.5-0.3c0-0.1,0-0.2,0-0.3c0-0.1,0-0.2,0-0.3
+ c-0.1-0.2-0.2-0.3-0.3-0.3c-0.3,0-0.5-0.2-0.5-0.5v-3.6c0-0.3,0.2-0.5,0.5-0.5c0.3,0,0.5,0.2,0.5,0.5v3.2c0.4,0.1,0.6,0.5,0.7,0.8
+ v0c0.1,0.2,0.1,0.4,0.1,0.6c0,0.2,0,0.4-0.1,0.6c-0.2,0.5-0.6,0.9-1.4,0.9c-0.4,0-0.5,0-0.5,0C24.1,29.3,24.1,29.6,24.1,30.2z"/>
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" d="M27.7,31.9c-0.3,1.9-2.1,3.4-4.1,3.4l0,0c-2,0-3.7-1.5-4.1-3.4
+ H27.7z"/>
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#1C1C1C" d="M28.2,32c-0.2,1.1-0.8,2-1.6,2.7c-0.8,0.7-1.8,1.1-3,1.1
+ c-1.1,0-2.2-0.4-3-1.1c-0.8-0.7-1.4-1.6-1.6-2.7c0-0.3,0.1-0.5,0.4-0.5c0,0,0.1,0,0.1,0l8.2,0c0.3,0,0.5,0.2,0.5,0.5
+ C28.2,31.9,28.2,32,28.2,32L28.2,32z M26,34c0.5-0.4,0.9-1,1.1-1.6h-7c0.2,0.6,0.6,1.2,1.1,1.6c0.6,0.5,1.5,0.9,2.4,0.9
+ C24.5,34.9,25.4,34.5,26,34z"/>
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#FDC27A" d="M12.2,22.2L12.2,22.2c-0.1-0.5-0.5-0.9-1-0.9h-0.8
+ c-0.6,0-1,0.5-1,1v3.3l0,0c0,1.7,1.2,3.1,2.9,3.4v-3.4v-3.3V22.2z"/>
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#1C1C1C" d="M11.8,22.3L11.8,22.3c0-0.2-0.1-0.3-0.2-0.4
+ c-0.1-0.1-0.2-0.1-0.4-0.1h-0.8c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.2-0.2,0.4v3.3c0,0.7,0.3,1.4,0.7,1.9
+ c0.3,0.4,0.7,0.7,1.2,0.9V22.3L11.8,22.3z M12.2,21.2c0.1,0.1,0.3,0.3,0.4,0.5l0.2,0v7.9l-0.6-0.1c-0.9-0.2-1.7-0.7-2.3-1.4
+ c-0.6-0.7-0.9-1.6-0.9-2.5v-3.3c0-0.4,0.2-0.8,0.4-1.1c0.3-0.3,0.6-0.4,1.1-0.4h0.8C11.6,20.9,11.9,21,12.2,21.2z"/>
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#FDC27A" d="M35.5,22.2L35.5,22.2c0.1-0.5,0.5-0.9,1-0.9h0.8c0.6,0,1,0.5,1,1
+ v3.3l0,0c0,1.7-1.2,3.1-2.9,3.4v-3.4v-3.3V22.2z"/>
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#1C1C1C" d="M36,22.3L36,22.3l0,6.1c0.5-0.2,0.9-0.5,1.2-0.9
+ c0.4-0.5,0.7-1.2,0.7-1.9v-3.3c0-0.2-0.1-0.3-0.2-0.4c-0.1-0.1-0.2-0.2-0.4-0.2h-0.8c-0.1,0-0.3,0.1-0.4,0.1
+ C36.1,22,36,22.2,36,22.3L36,22.3z M35.2,21.7c0.1-0.2,0.2-0.3,0.4-0.5c0.3-0.2,0.6-0.4,1-0.4h0.8c0.4,0,0.8,0.2,1.1,0.4
+ c0.3,0.3,0.4,0.6,0.4,1.1v3.3c0,1-0.3,1.8-0.9,2.5c-0.6,0.7-1.4,1.2-2.3,1.4L35,29.6v-7.9L35.2,21.7z"/>
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#1C1C1C" d="M15.8,21.8c-0.2,0.2-0.5,0.2-0.7,0c-0.2-0.2-0.2-0.5,0-0.7
+ c0.4-0.4,0.9-0.8,1.5-1l0,0c0.5-0.2,1.1-0.3,1.7-0.3c0.6,0,1.2,0.1,1.7,0.3l0,0c0.6,0.2,1.1,0.6,1.5,1c0.2,0.2,0.2,0.5,0,0.7
+ c-0.2,0.2-0.5,0.2-0.7,0c-0.3-0.3-0.7-0.6-1.2-0.8c-0.4-0.2-0.9-0.3-1.4-0.3c-0.5,0-0.9,0.1-1.4,0.3l0,0
+ C16.6,21.2,16.2,21.5,15.8,21.8L15.8,21.8z M26.8,21.8c-0.2,0.2-0.5,0.2-0.7,0c-0.2-0.2-0.2-0.5,0-0.7c0.4-0.4,0.9-0.8,1.5-1l0,0
+ c0.5-0.2,1.1-0.3,1.7-0.3c0.6,0,1.2,0.1,1.7,0.3l0,0c0.6,0.2,1.1,0.6,1.5,1c0.2,0.2,0.2,0.5,0,0.7c-0.2,0.2-0.5,0.2-0.7,0
+ c-0.3-0.3-0.7-0.6-1.2-0.8c-0.4-0.2-0.9-0.3-1.4-0.3c-0.5,0-0.9,0.1-1.4,0.3l0,0C27.5,21.2,27.1,21.5,26.8,21.8z"/>
+ <polygon fill-rule="evenodd" clip-rule="evenodd" fill="#DCDBDB" points="18.8,40.9 23.3,46.8 19.4,50.4 16.2,43 "/>
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#1C1C1C" d="M19.1,40.6l4.6,5.9c0.2,0.2,0.1,0.5-0.1,0.6l-3.9,3.6
+ c-0.2,0.2-0.5,0.2-0.7,0c0,0-0.1-0.1-0.1-0.1l-3.2-7.4c-0.1-0.2,0-0.4,0.1-0.5l2.5-2.1C18.7,40.4,19,40.4,19.1,40.6L19.1,40.6
+ L19.1,40.6z M22.7,46.7l-4-5.2l-1.9,1.6l2.8,6.5L22.7,46.7z"/>
+ <polygon fill-rule="evenodd" clip-rule="evenodd" fill="#DCDBDB" points="28.8,40.9 24.2,46.8 28.1,50.4 31.3,43 "/>
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#1C1C1C" d="M28.9,41.6l-4,5.2l3.1,2.9l2.8-6.5L28.9,41.6L28.9,41.6z
+ M23.8,46.5l4.6-5.9c0.2-0.2,0.5-0.2,0.7-0.1l2.5,2.1c0.2,0.1,0.2,0.4,0.1,0.5l-3.2,7.4c0,0-0.1,0.1-0.1,0.1
+ c-0.2,0.2-0.5,0.2-0.7,0l-3.9-3.6C23.7,47,23.7,46.7,23.8,46.5z"/>
+ <polygon fill-rule="evenodd" clip-rule="evenodd" fill="#291E3E" points="27.2,49.7 30.2,52.6 35.7,51.2 32.2,43.5 28.6,41 "/>
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#1C1C1C" d="M27.7,49.5l2.6,2.6l4.7-1.3l-3.3-7l-2.9-2L27.7,49.5L27.7,49.5z
+ M29.9,53l-3.1-3.1c0.5-3.2,1-6.4,1.5-9.6l4.3,3l3.8,8.3l-6.3,1.7L29.9,53z"/>
+ <polygon fill-rule="evenodd" clip-rule="evenodd" fill="#291E3E" points="20.1,49.7 17.1,52.6 11.6,51.2 15.1,43.5 18.7,41 "/>
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#1C1C1C" d="M20.4,50l-3.2,3.2l-6.3-1.7c1.3-2.8,2.6-5.5,3.8-8.3l4.3-3
+ l1.5,9.6L20.4,50L20.4,50z M17,52.1l2.6-2.6l-1.2-7.7l-2.9,2l-3.3,7L17,52.1z"/>
+ <polygon fill-rule="evenodd" clip-rule="evenodd" fill="#DC5940" points="26.2,48.6 24.2,46.8 23.3,46.8 21.4,48.6 22.9,53
+ 24.3,53 "/>
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#1C1C1C" d="M25.6,48.7L24,47.2h-0.5l-1.6,1.5l1.4,3.8H24L25.6,48.7
+ L25.6,48.7z M24.5,46.4l2.2,2.1l-2.1,5h-2l-1.8-5l2.3-2.2h1.2L24.5,46.4z"/>
+ <polygon fill-rule="evenodd" clip-rule="evenodd" fill="#DC5940" points="24.3,53 22.9,53 21.1,56.3 23.7,66.4 26.1,56.8 "/>
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#1C1C1C" d="M24,53.5h-0.8l-1.6,2.9l2,8.1l1.9-7.6L24,53.5L24,53.5z
+ M22.9,52.5h1.7l1.9,4.2l-2.9,11.6c-1-4-2-8-3-12l2-3.7H22.9z"/>
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#1C1C1C" d="M38.5,64c0.3,0,0.5,0.2,0.5,0.5c0,0.3-0.2,0.5-0.5,0.5h-5.8
+ c-0.3,0-0.5-0.2-0.5-0.5c0-0.3,0.2-0.5,0.5-0.5H38.5z"/>
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#DCDBDB" d="M23.9,7L23.9,7c6.4,0,11.6,1.6,11.6,8v9.1h-2.1v-3.8
+ c0.1-6.4-3.3-9.3-9.5-6.2c-6.2-3.1-9.6-0.2-9.5,6.2v3.8h-2.2v-9.4C12.2,8.3,17.5,7,23.9,7z"/>
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#1C1C1C" d="M23.9,6.6c3.3,0,6.3,0.4,8.4,1.6C34.6,9.5,36,11.6,36,15v9.5h-3
+ v-4.3l0,0c0-1.9-0.3-3.5-0.8-4.6c-0.4-0.7-0.9-1.3-1.5-1.7c-0.6-0.4-1.3-0.6-2.2-0.6c-1.2,0-2.7,0.4-4.3,1.2l-0.2,0.1l-0.2-0.1
+ c-1.7-0.8-3.1-1.2-4.3-1.2c-0.8,0-1.6,0.2-2.2,0.6c-0.6,0.4-1.1,1-1.5,1.7c-0.6,1.2-0.9,2.7-0.9,4.6l0,0v4.3h-3.1v-9.9
+ c0-3.4,1.4-5.4,3.7-6.6C17.6,6.9,20.6,6.6,23.9,6.6L23.9,6.6z M23.9,7.5c-3.1,0-6,0.3-8,1.4c-2,1-3.2,2.8-3.2,5.8v8.9h1.2v-3.4h0
+ c0-2.1,0.3-3.8,0.9-5.1c0.4-0.9,1.1-1.6,1.8-2.1c0.8-0.5,1.6-0.7,2.7-0.8c1.3,0,2.8,0.4,4.5,1.2c1.7-0.8,3.2-1.2,4.5-1.2
+ c1,0,1.9,0.3,2.7,0.8c0.8,0.5,1.4,1.2,1.8,2.1c0.7,1.3,1,3,0.9,5.1h0v3.4H35V15c0-3-1.2-4.9-3.2-6C29.8,7.9,27,7.5,23.9,7.5z"/>
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#1C1C1C" d="M12,12.9c1.3-1.6,3-2.3,5.1-2.1c1.9,0.2,4.2,1.1,6.8,2.8
+ c0.2-0.1,0.4-0.3,0.6-0.4c2.3-1.7,4.4-2.6,6.3-2.6c1.9-0.1,3.5,0.7,4.8,2.4c0.1,0.1,0.1,0.2,0.2,0.3L35,13.7
+ c-0.1-0.1-0.1-0.2-0.2-0.3c-1.1-1.4-2.4-2.1-4-2c-1.6,0-3.5,0.9-5.7,2.4c-0.3,0.2-0.5,0.4-0.8,0.6L24,14.6l-0.3-0.2
+ c-2.6-1.7-4.8-2.7-6.7-2.8c-1.8-0.1-3.2,0.5-4.3,1.8L12,12.9z"/>
+ </g>
+ <path fill="#2A2436" d="M23.9,14.2c5,0,9.5,2,12.2,5.2l4.9-5.5c0,0-3.9-4-4.6-8.6c0,0-8.3,0-12.5-5.3c-5.4,5.7-12.5,5.3-12.5,5.3
+ c-0.6,4.6-4.6,8.6-4.6,8.6l4.9,5.5C14.4,16.1,18.9,14.2,23.9,14.2z"/>
+ <path fill="#3A334A" d="M35.7,18.1H12.1v-6.2c0,0,5.2-2.2,11.8-2.2c7.4,0,11.8,2.2,11.8,2.2V18.1z"/>
+ <g>
+ <path fill="#FBAC4E" d="M23.9,7.8c-1.1,0.6-2.3,1-3.6,1.1c0.1,2.8,1.5,5.3,3.6,6.8c2.1-1.5,3.5-4,3.6-6.8
+ C26.2,8.8,25,8.4,23.9,7.8z"/>
+ </g>
+ <path fill="#19161F" d="M35.6,18.2c0,0.5-5.2,1.9-11.7,1.9s-11.7-1.3-11.7-1.9c0-0.5,5.2-0.1,11.7-0.1S35.6,17.6,35.6,18.2z"/>
+</g>
+</svg>
A public/img/ia1.svg
+107 −0
--- /dev/null
+++ b/public/img/ia1.svg
@@ -0,0 +1,107 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Generator: Adobe Illustrator 18.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
+<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
+ viewBox="0 0 47.6 65.1" enable-background="new 0 0 47.6 65.1" xml:space="preserve">
+<g id="Avatar_9">
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#40545A" d="M25.8,21.5c0-8.1,3-12.3,9.6-13.2c3.4,0,5.2,3.6,5.2,7.4v8.1
+ c0,3.7-1.1,7.2-2.9,9.9c-2.2,3.2-5.3,5.3-8.9,5.8c-0.5,0.1-0.9,0.1-1.4,0.1c-1.4,0-2.8-0.3-4-0.8c1.6-2.6,2.5-5.8,2.5-9.2V21.5z"/>
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#1C1C1C" d="M25.3,21.5c0-4.1,0.8-7.3,2.4-9.6c1.7-2.3,4.2-3.6,7.6-4.1l0,0h0
+ c1.8,0,3.1,0.9,4.1,2.2c1,1.5,1.6,3.5,1.6,5.6v8.1c0,1.9-0.3,3.7-0.8,5.4c-0.5,1.7-1.3,3.4-2.3,4.8c-1.1,1.7-2.5,3.1-4.1,4.1
+ c-1.5,1-3.3,1.7-5.1,1.9c-0.3,0-0.5,0.1-0.7,0.1c-0.3,0-0.5,0-0.7,0c-0.7,0-1.4-0.1-2.1-0.2c-0.7-0.1-1.4-0.3-2.1-0.6l-0.5-0.2
+ l0.3-0.5c0.8-1.3,1.4-2.7,1.8-4.3c0.4-1.5,0.6-3.1,0.6-4.7V21.5L25.3,21.5z M28.5,12.5c-1.5,2.1-2.2,5.1-2.2,9v8.1
+ c0,1.7-0.2,3.4-0.7,5c-0.4,1.4-0.9,2.8-1.6,4c0.5,0.1,0.9,0.3,1.4,0.4c0.6,0.1,1.3,0.2,2,0.2c0.2,0,0.5,0,0.7,0
+ c0.2,0,0.5,0,0.7-0.1c1.7-0.2,3.3-0.8,4.7-1.8c1.5-1,2.8-2.3,3.9-3.8c0.9-1.3,1.6-2.9,2.1-4.5c0.5-1.6,0.7-3.3,0.7-5.1v-8.1
+ c0-1.9-0.5-3.8-1.4-5.1c-0.8-1.1-1.9-1.8-3.3-1.8C32.3,9.2,30,10.4,28.5,12.5z"/>
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#FDC27A" d="M38.4,22.4v0.3l0,0c0,1.7-1.2,3.1-2.9,3.4v-3.4v-3.1
+ C35.9,20.9,36.6,22,38.4,22.4z"/>
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#1C1C1C" d="M38.8,22.4v0.3c0,1-0.3,1.8-0.9,2.5c-0.6,0.7-1.4,1.2-2.3,1.4
+ L35,26.6V16.5l0.9,2.9c0.2,0.6,0.4,1.1,0.8,1.5c0.4,0.4,0.9,0.7,1.7,0.9l0.4,0.1V22.4L38.8,22.4z M37.2,24.6
+ c0.4-0.5,0.7-1.1,0.7-1.8c-0.8-0.2-1.4-0.6-1.8-1.1L36,21.5v3.9C36.4,25.3,36.9,25,37.2,24.6z"/>
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#DCDBDB" d="M0.5,67h46.6V56.4c0-8.8-7.8-16-17.3-16h-12
+ c-9.5,0-17.3,7.2-17.3,16V67z"/>
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#1C1C1C" d="M0.9,66.5h45.7V56.4c0-4.3-1.9-8.1-4.9-11
+ c-3.1-2.8-7.3-4.6-11.9-4.6h-12c-4.6,0-8.9,1.8-11.9,4.6c-3,2.8-4.9,6.7-4.9,11V66.5L0.9,66.5z M47.1,67.4H0.5
+ C0.2,67.4,0,67.2,0,67V56.4c0-4.5,2-8.7,5.2-11.6c3.2-3,7.7-4.8,12.5-4.8h12c4.9,0,9.3,1.8,12.5,4.8c3.2,3,5.2,7.1,5.2,11.6V67
+ C47.6,67.2,47.4,67.4,47.1,67.4z"/>
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#1C1C1C" d="M9.5,52.8c0.1-0.2,0.4-0.4,0.6-0.3c0.2,0.1,0.4,0.4,0.3,0.6
+ c-0.3,0.8-0.5,1.6-0.6,2.5c-0.1,0.8-0.2,1.7-0.2,2.6v8.4H38v-8.4c0-0.9-0.1-1.7-0.2-2.6c-0.1-0.9-0.4-1.7-0.6-2.5
+ c-0.1-0.2,0-0.5,0.3-0.6c0.2-0.1,0.5,0,0.6,0.3c0.3,0.8,0.5,1.7,0.7,2.6c0.1,0.9,0.2,1.8,0.2,2.7V67c0,0.3-0.2,0.5-0.5,0.5H9.1
+ c-0.3,0-0.5-0.2-0.5-0.5v-8.8c0-0.9,0.1-1.8,0.2-2.7C9,54.5,9.2,53.7,9.5,52.8z"/>
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#40545A" d="M21.9,21.5c0-8.1-3-12.3-9.6-13.2c-3.4,0-5.2,3.6-5.2,7.4v8.1
+ c0,3.7,1.1,7.2,2.9,9.9c2.2,3.2,5.3,5.3,8.9,5.8c0.5,0.1,0.9,0.1,1.4,0.1c1.4,0,2.8-0.3,4-0.8c-1.6-2.6-2.5-5.8-2.5-9.2V21.5z"/>
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#1C1C1C" d="M21.5,21.5c0-3.9-0.7-6.9-2.2-9c-1.5-2.1-3.8-3.3-6.9-3.7
+ c-1.4,0-2.5,0.7-3.3,1.8c-0.9,1.3-1.4,3.2-1.4,5.1v8.1c0,1.8,0.3,3.5,0.7,5.1c0.5,1.7,1.2,3.2,2.1,4.5c1.1,1.6,2.4,2.9,3.9,3.8
+ c1.4,0.9,3,1.5,4.7,1.8c0.2,0,0.4,0,0.7,0.1c0.2,0,0.4,0,0.7,0c0.7,0,1.3-0.1,2-0.2c0.5-0.1,0.9-0.2,1.4-0.4
+ c-0.7-1.2-1.2-2.6-1.6-4c-0.4-1.6-0.7-3.2-0.7-5V21.5L21.5,21.5z M20,11.9c1.6,2.3,2.4,5.4,2.4,9.6v8.1c0,1.6,0.2,3.2,0.6,4.7
+ c0.4,1.5,1,3,1.8,4.3l0.3,0.5l-0.5,0.2c-0.7,0.3-1.4,0.5-2.1,0.6C21.9,40,21.1,40,20.4,40c-0.2,0-0.5,0-0.7,0c-0.2,0-0.5,0-0.7-0.1
+ c-1.8-0.2-3.6-0.9-5.1-1.9c-1.6-1-3-2.4-4.1-4.1c-1-1.4-1.7-3-2.3-4.8c-0.5-1.7-0.8-3.5-0.8-5.4v-8.1c0-2.1,0.5-4.1,1.6-5.6
+ c0.9-1.3,2.3-2.2,4.1-2.2h0l0,0C15.8,8.3,18.4,9.6,20,11.9z"/>
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#FDC27A" d="M18.7,35.5h9.8v6.1c0,2.3-2.2,4.2-4.9,4.2l0,0
+ c-2.7,0-4.9-1.9-4.9-4.2V35.5z"/>
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#1C1C1C" d="M18.7,35H29v6.6c0,1.3-0.6,2.5-1.6,3.3c-1,0.8-2.3,1.4-3.8,1.4
+ c-1.5,0-2.8-0.5-3.8-1.4c-1-0.9-1.6-2-1.6-3.3V35H18.7L18.7,35z M28.1,35.9h-8.9v5.6c0,1,0.5,1.9,1.3,2.6c0.8,0.7,1.9,1.1,3.2,1.1
+ c1.2,0,2.4-0.4,3.2-1.1c0.8-0.7,1.3-1.6,1.3-2.6V35.9z"/>
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#FDC27A" d="M23.9,9.4L23.9,9.4c6.4,0,11.6,5.2,11.6,11.6v4.3
+ c0,6.4-5.2,11.6-11.6,11.6h0c-6.4,0-11.6-5.2-11.6-11.6v-4.3C12.2,14.7,17.5,9.4,23.9,9.4z"/>
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#1C1C1C" d="M23.9,9c3.3,0,6.4,1.4,8.5,3.6c2.2,2.2,3.6,5.2,3.6,8.5v4.3
+ c0,3.3-1.4,6.4-3.6,8.5c-2.2,2.2-5.2,3.6-8.5,3.6c-3.3,0-6.4-1.4-8.5-3.6c-2.2-2.2-3.6-5.2-3.6-8.5v-4.3c0-3.3,1.4-6.4,3.6-8.5
+ C17.5,10.3,20.5,9,23.9,9L23.9,9z M23.9,9.9c-3.1,0-5.9,1.3-7.9,3.3c-2,2-3.3,4.8-3.3,7.9v4.3c0,3.1,1.3,5.9,3.3,7.9
+ c2,2,4.8,3.3,7.9,3.3c3.1,0,5.9-1.3,7.9-3.3c2-2,3.3-4.8,3.3-7.9v-4.3c0-3.1-1.3-5.9-3.3-7.9C29.7,11.2,26.9,9.9,23.9,9.9z"/>
+ <circle fill-rule="evenodd" clip-rule="evenodd" fill="#40545A" cx="18.4" cy="21.3" r="1.4"/>
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#1C1C1C" d="M18.4,19.5c0.5,0,1,0.2,1.3,0.5v0c0.3,0.3,0.5,0.8,0.5,1.3
+ c0,0.5-0.2,1-0.5,1.3v0c-0.3,0.3-0.8,0.5-1.3,0.5c-0.5,0-1-0.2-1.3-0.5c-0.3-0.3-0.5-0.8-0.5-1.3c0-0.5,0.2-1,0.5-1.3h0
+ C17.4,19.7,17.9,19.5,18.4,19.5L18.4,19.5z M19.1,20.7L19.1,20.7c-0.2-0.2-0.4-0.3-0.7-0.3c-0.3,0-0.5,0.1-0.7,0.3l0,0
+ c-0.2,0.2-0.3,0.4-0.3,0.7c0,0.3,0.1,0.5,0.3,0.7c0.2,0.2,0.4,0.3,0.7,0.3c0.3,0,0.5-0.1,0.7-0.3l0,0c0.2-0.2,0.3-0.4,0.3-0.7
+ S19.2,20.9,19.1,20.7z"/>
+ <circle fill-rule="evenodd" clip-rule="evenodd" fill="#40545A" cx="29.3" cy="21.3" r="1.4"/>
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#1C1C1C" d="M29.3,20.4c-0.3,0-0.5,0.1-0.7,0.3l0,0c-0.2,0.2-0.3,0.4-0.3,0.7
+ c0,0.3,0.1,0.5,0.3,0.7c0.2,0.2,0.4,0.3,0.7,0.3c0.3,0,0.5-0.1,0.7-0.3l0,0c0.2-0.2,0.3-0.4,0.3-0.7s-0.1-0.5-0.3-0.7l0,0
+ C29.8,20.5,29.6,20.4,29.3,20.4L29.3,20.4z M28,20c0.3-0.3,0.8-0.5,1.3-0.5c0.5,0,1,0.2,1.3,0.5v0c0.3,0.3,0.5,0.8,0.5,1.3
+ c0,0.5-0.2,1-0.5,1.3v0c-0.3,0.3-0.8,0.5-1.3,0.5c-0.5,0-1-0.2-1.3-0.5c-0.3-0.3-0.5-0.8-0.5-1.3C27.5,20.8,27.7,20.4,28,20L28,20z
+ "/>
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#FDC27A" d="M9.4,22.4v0.3l0,0c0,1.7,1.2,3.1,2.9,3.4v-3.4v-3.1
+ C11.8,20.9,11.2,22,9.4,22.4z"/>
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#1C1C1C" d="M8.9,22.7V22l0.4-0.1c0.8-0.2,1.3-0.5,1.7-0.9
+ c0.4-0.4,0.6-1,0.8-1.5l0.9-2.9v10.1l-0.6-0.1c-0.9-0.2-1.7-0.7-2.3-1.4C9.3,24.5,8.9,23.6,8.9,22.7L8.9,22.7z M9.9,22.7
+ c0,0.7,0.3,1.3,0.7,1.8c0.3,0.4,0.7,0.7,1.2,0.9v-3.9l-0.1,0.1C11.2,22.1,10.6,22.5,9.9,22.7z"/>
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#1C1C1C" d="M24.1,27.2c0,0.3-0.2,0.5-0.5,0.5c-0.3,0-0.5-0.2-0.5-0.5
+ c0-0.8,0-1.2,0.2-1.5c0.3-0.4,0.6-0.4,1.3-0.4c0.3,0,0.4-0.1,0.5-0.3c0-0.1,0-0.2,0-0.3c0-0.1,0-0.2,0-0.3
+ c-0.1-0.2-0.2-0.3-0.3-0.3c-0.3,0-0.5-0.2-0.5-0.5v-3.6c0-0.3,0.2-0.5,0.5-0.5c0.3,0,0.5,0.2,0.5,0.5v3.2c0.4,0.1,0.6,0.5,0.7,0.8
+ v0c0.1,0.2,0.1,0.4,0.1,0.6c0,0.2,0,0.4-0.1,0.6c-0.2,0.5-0.6,0.9-1.4,0.9c-0.4,0-0.5,0-0.5,0C24.1,26.3,24.1,26.6,24.1,27.2z"/>
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#40545A" d="M25.7,20c-7.3-0.7-12.5-2.2-13.2-10.8c-1.6-7.1,4.7-9.1,8-8.7
+ l7.3,0.7c3.3,0.3,6.4,2.1,8.9,4.7c2.8,3.1,4.8,7.3,5.2,11.9c0.1,0.6,0.1,1.2,0.1,1.8c0,1.8-0.2,3.5-0.7,5.1
+ c-2.3-2.3-5.2-3.8-8.3-4.1L25.7,20z"/>
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#1C1C1C" d="M25.6,20.5c-3.7-0.4-6.9-0.9-9.3-2.5c-2.4-1.6-4-4.2-4.4-8.6
+ c-0.3-1.2-0.3-2.2-0.2-3.1c0.2-1.8,1-3.1,2.1-4.1c1.1-1,2.4-1.5,3.7-1.8C18.6,0,19.6,0,20.5,0l7.3,0.7c1.7,0.2,3.3,0.7,4.9,1.5
+ c1.6,0.8,3,2,4.3,3.3c1.5,1.6,2.7,3.5,3.6,5.6c0.9,2,1.5,4.3,1.7,6.6h0c0,0.3,0,0.6,0.1,0.9c0,0.3,0,0.6,0,0.9
+ c0,0.9-0.1,1.8-0.2,2.7c-0.1,0.9-0.3,1.7-0.5,2.6c-0.1,0.2-0.3,0.4-0.6,0.3c-0.1,0-0.1-0.1-0.2-0.1c-1.2-1.1-2.4-2-3.8-2.7
+ c-1.3-0.7-2.7-1.1-4.2-1.2L25.6,20.5L25.6,20.5z M16.9,17.1c2.2,1.5,5.3,2,8.8,2.4l7.3,0.7c1.6,0.2,3.1,0.6,4.5,1.3
+ c1.2,0.6,2.4,1.4,3.5,2.3c0.1-0.5,0.2-1.1,0.3-1.7c0.1-0.8,0.2-1.7,0.2-2.5c0-0.3,0-0.6,0-0.9c0-0.3,0-0.6-0.1-0.9l0,0
+ c-0.2-2.2-0.8-4.4-1.6-6.3c-0.9-2-2.1-3.8-3.5-5.3c-1.2-1.3-2.6-2.4-4-3.1c-1.4-0.7-2.9-1.2-4.5-1.4L20.4,1c-0.8-0.1-1.7,0-2.7,0.2
+ c-1.2,0.3-2.4,0.8-3.3,1.6c-0.9,0.8-1.6,2-1.7,3.5c-0.1,0.8,0,1.8,0.2,2.8c0,0,0,0,0,0.1C13.3,13.3,14.7,15.7,16.9,17.1z"/>
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" d="M27.7,28.9c-0.3,1.9-2.1,3.4-4.1,3.4l0,0c-2,0-3.7-1.5-4.1-3.4
+ H27.7z"/>
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#1C1C1C" d="M28.2,29c-0.2,1.1-0.8,2-1.6,2.7c-0.8,0.7-1.8,1.1-3,1.1
+ c-1.1,0-2.2-0.4-3-1.1c-0.8-0.7-1.4-1.6-1.6-2.7c0-0.3,0.1-0.5,0.4-0.5c0,0,0.1,0,0.1,0l8.2,0c0.3,0,0.5,0.2,0.5,0.5
+ C28.2,28.9,28.2,29,28.2,29L28.2,29z M26,31c0.5-0.4,0.9-1,1.1-1.6h-7c0.2,0.6,0.6,1.2,1.1,1.6c0.6,0.5,1.5,0.9,2.4,0.9
+ C24.5,31.9,25.4,31.5,26,31z"/>
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#1C1C1C" d="M11.1,63.4c-0.2-0.1-0.3-0.4-0.1-0.6c0.1-0.2,0.4-0.3,0.6-0.1
+ c1.4,0.9,2.9,1.4,4.6,1.5c1.7,0.1,3.5-0.2,5.4-1c0.2-0.1,0.5,0,0.6,0.3c0.1,0.2,0,0.5-0.3,0.6c-2.1,0.8-4,1.1-5.8,1
+ C14.4,64.9,12.7,64.4,11.1,63.4z"/>
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#1C1C1C" d="M35.7,62.6c0.2-0.1,0.5-0.1,0.6,0.1c0.1,0.2,0.1,0.5-0.1,0.6
+ c-1.5,1-3.2,1.5-5,1.6c-1.8,0.1-3.7-0.2-5.8-1c-0.2-0.1-0.4-0.4-0.3-0.6c0.1-0.2,0.4-0.4,0.6-0.3c1.9,0.7,3.7,1,5.4,1
+ C32.7,64,34.3,63.5,35.7,62.6z"/>
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#DC5940" d="M23.7,45.8c-2.7,0-4.9-1.9-4.9-4.2v-1.2h-1c-0.8,0-1.5,0-2.3,0.1
+ v1.7c0,3.8,3.7,7,8.2,7c4.5,0,8.2-3.1,8.2-7v-1.7c-0.7-0.1-1.3-0.1-2-0.1h-1.2v1.2C28.6,43.9,26.4,45.8,23.7,45.8z"/>
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#1C1C1C" d="M23.7,46.3c-1.5,0-2.8-0.5-3.8-1.4c-1-0.9-1.6-2-1.6-3.3v-0.8
+ h-0.5c-0.4,0-0.8,0-1.1,0c-0.2,0-0.5,0-0.7,0.1v1.3c0,1.8,0.9,3.4,2.2,4.6c1.4,1.2,3.3,1.9,5.5,1.9c2.1,0,4.1-0.7,5.5-1.9
+ c1.4-1.2,2.2-2.8,2.2-4.6v-1.3c-0.2,0-0.4,0-0.5,0c-0.3,0-0.6,0-1,0H29v0.8c0,1.3-0.6,2.5-1.6,3.3C26.5,45.7,25.1,46.3,23.7,46.3
+ L23.7,46.3z M20.5,44.2c0.8,0.7,1.9,1.1,3.2,1.1c1.2,0,2.4-0.4,3.2-1.1c0.8-0.7,1.3-1.6,1.3-2.6v-1.7h1.7c0.3,0,0.7,0,1,0
+ c0.3,0,0.7,0,1,0.1l0.4,0v2.2c0,2.1-1,3.9-2.6,5.3c-1.6,1.3-3.7,2.2-6.1,2.2c-2.4,0-4.5-0.8-6.1-2.2C16,46.1,15,44.3,15,42.2v-2.1
+ l0.4-0.1c0.4,0,0.8-0.1,1.2-0.1c0.4,0,0.8,0,1.2,0h1.4v1.7C19.2,42.6,19.7,43.5,20.5,44.2z"/>
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#1C1C1C" d="M41.7,24.7c0.1,0.2,0,0.5-0.3,0.6c-0.2,0.1-0.5,0-0.6-0.3
+ c-0.7-2.1-1.9-3.8-3.4-4.9c-1.6-1.2-3.5-1.9-5.9-2.1c-0.3,0-0.4-0.3-0.4-0.5c0-0.3,0.3-0.4,0.5-0.4c2.6,0.2,4.7,1,6.4,2.3
+ C39.6,20.6,40.9,22.4,41.7,24.7z"/>
+</g>
+</svg>
A public/img/ia2.svg
+111 −0
--- /dev/null
+++ b/public/img/ia2.svg
@@ -0,0 +1,111 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Generator: Adobe Illustrator 18.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
+<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
+ viewBox="0 0 47.6 66.5" enable-background="new 0 0 47.6 66.5" xml:space="preserve">
+<g id="Avatar_15">
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#DCDBDB" d="M0.5,66h46.6V55.4c0-8.8-7.8-16-17.3-16h-12
+ c-9.5,0-17.3,7.2-17.3,16V66z"/>
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#1C1C1C" d="M0.9,65.5h45.7V55.4c0-4.3-1.9-8.1-4.9-11
+ c-3.1-2.8-7.3-4.6-11.9-4.6h-12c-4.6,0-8.8,1.8-11.9,4.6c-3,2.8-4.9,6.7-4.9,11V65.5L0.9,65.5z M47.1,66.5H0.5
+ C0.2,66.5,0,66.3,0,66V55.4c0-4.5,2-8.7,5.2-11.6c3.2-3,7.7-4.8,12.5-4.8h12c4.9,0,9.3,1.8,12.5,4.8c3.2,3,5.2,7.1,5.2,11.6V66
+ C47.6,66.3,47.4,66.5,47.1,66.5z"/>
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#1C1C1C" d="M9.5,51.9c0.1-0.2,0.4-0.4,0.6-0.3c0.2,0.1,0.4,0.4,0.3,0.6
+ c-0.3,0.8-0.5,1.6-0.6,2.5c-0.1,0.8-0.2,1.7-0.2,2.6v8.4H38v-8.4c0-0.9-0.1-1.7-0.2-2.6c-0.1-0.9-0.4-1.7-0.6-2.5
+ c-0.1-0.2,0-0.5,0.3-0.6c0.2-0.1,0.5,0,0.6,0.3c0.3,0.8,0.5,1.7,0.7,2.6c0.1,0.9,0.2,1.8,0.2,2.7V66c0,0.3-0.2,0.5-0.5,0.5H9.1
+ c-0.3,0-0.5-0.2-0.5-0.5v-8.8c0-0.9,0.1-1.8,0.2-2.7C9,53.6,9.2,52.7,9.5,51.9z"/>
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#FDC27A" d="M18.7,34.5h9.8v6.1c0,0.4-0.1,0.7-0.2,1.1
+ c-0.8,3.5-3.7,5.1-4.8,5.9c-1.2-0.9-4.6-2.5-4.9-6.6c0-0.1,0-0.2,0-0.4V34.5z"/>
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#1C1C1C" d="M18.7,34H29v6.6c0,0.2,0,0.4,0,0.6c0,0.2-0.1,0.4-0.1,0.6
+ c-0.7,3.1-3,4.8-4.4,5.8c-0.2,0.2-0.4,0.3-0.6,0.4l-0.3,0.2L23.4,48c-0.2-0.1-0.4-0.3-0.7-0.5c-1.5-1-4.1-2.8-4.4-6.5
+ c0-0.1,0-0.1,0-0.2c0-0.1,0-0.1,0-0.2V34H18.7L18.7,34z M28.1,35h-8.9v5.6l0,0.2c0,0.1,0,0.1,0,0.2l0,0c0.2,3.2,2.6,4.8,4,5.8
+ c0.2,0.1,0.3,0.2,0.4,0.3l0.3-0.2c1.3-0.9,3.4-2.4,4-5.2l0,0c0-0.1,0.1-0.3,0.1-0.5c0-0.2,0-0.3,0-0.5V35z"/>
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#FDC27A" d="M23.9,4.2L23.9,4.2c6.4,0,11.6,5.2,11.6,11.6v8.6
+ c0,6.4-5.2,11.6-11.6,11.6h0c-6.4,0-11.6-5.2-11.6-11.6v-8.6C12.2,9.4,17.5,4.2,23.9,4.2z"/>
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#1C1C1C" d="M23.9,3.7c3.3,0,6.4,1.4,8.5,3.6c2.2,2.2,3.6,5.2,3.6,8.5v8.6
+ c0,3.3-1.4,6.4-3.6,8.5c-2.2,2.2-5.2,3.6-8.5,3.6c-3.3,0-6.4-1.4-8.5-3.6c-2.2-2.2-3.6-5.2-3.6-8.5v-8.6c0-3.3,1.4-6.4,3.6-8.5
+ C17.5,5.1,20.5,3.7,23.9,3.7L23.9,3.7z M31.7,7.9c-2-2-4.8-3.3-7.9-3.3c-3.1,0-5.9,1.3-7.9,3.3c-2,2-3.3,4.8-3.3,7.9v8.6
+ c0,3.1,1.3,5.9,3.3,7.9c2,2,4.8,3.3,7.9,3.3c3.1,0,5.9-1.3,7.9-3.3c2-2,3.3-4.8,3.3-7.9v-8.6C35,12.7,33.8,10,31.7,7.9z"/>
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#1C1C1C" d="M24.1,26.2c0,0.3-0.2,0.5-0.5,0.5c-0.3,0-0.5-0.2-0.5-0.5
+ c0-0.8,0-1.2,0.2-1.5c0.3-0.4,0.6-0.4,1.3-0.4c0.3,0,0.4-0.1,0.5-0.3c0-0.1,0-0.2,0-0.3c0-0.1,0-0.2,0-0.3
+ c-0.1-0.2-0.2-0.3-0.3-0.3c-0.3,0-0.5-0.2-0.5-0.5v-3.6c0-0.3,0.2-0.5,0.5-0.5c0.3,0,0.5,0.2,0.5,0.5v3.2c0.4,0.1,0.6,0.5,0.7,0.8
+ c0.1,0.2,0.1,0.4,0.1,0.6c0,0.2,0,0.4-0.1,0.6c-0.2,0.5-0.6,0.9-1.4,0.9c-0.4,0-0.5,0-0.5,0C24.1,25.3,24.1,25.6,24.1,26.2z"/>
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" d="M27.7,27.9c-0.3,1.9-2.1,3.4-4.1,3.4l0,0c-2,0-3.7-1.5-4.1-3.4
+ H27.7z"/>
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#1C1C1C" d="M28.2,28c-0.2,1.1-0.8,2-1.6,2.7c-0.8,0.7-1.8,1.1-3,1.1
+ c-1.1,0-2.2-0.4-3-1.1c-0.8-0.7-1.4-1.6-1.6-2.7c0-0.3,0.1-0.5,0.4-0.5c0,0,0.1,0,0.1,0l8.2,0c0.3,0,0.5,0.2,0.5,0.5
+ C28.2,28,28.2,28,28.2,28L28.2,28z M26,30c0.5-0.4,0.9-1,1.1-1.6h-7c0.2,0.6,0.6,1.2,1.1,1.6c0.6,0.5,1.5,0.9,2.4,0.9
+ C24.5,30.9,25.4,30.6,26,30z"/>
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#FDC27A" d="M12.2,18.3L12.2,18.3c-0.1-0.5-0.5-0.9-1-0.9h-0.8
+ c-0.6,0-1,0.5-1,1v3.3l0,0c0,1.7,1.2,3.1,2.9,3.4v-3.4v-3.3V18.3z"/>
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#1C1C1C" d="M11.8,18.4L11.8,18.4c0-0.2-0.1-0.3-0.2-0.4
+ c-0.1-0.1-0.2-0.1-0.4-0.1h-0.8c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.2-0.2,0.4v3.3c0,0.7,0.3,1.4,0.7,1.9
+ c0.3,0.4,0.7,0.7,1.2,0.9V18.4L11.8,18.4z M12.2,17.3c0.1,0.1,0.3,0.3,0.4,0.5l0.2,0v7.9l-0.6-0.1c-0.9-0.2-1.7-0.7-2.3-1.4
+ c-0.6-0.7-0.9-1.6-0.9-2.5v-3.3c0-0.4,0.2-0.8,0.4-1.1c0.3-0.3,0.6-0.4,1.1-0.4h0.8C11.6,16.9,11.9,17,12.2,17.3z"/>
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#FDC27A" d="M35.5,18.3L35.5,18.3c0.1-0.5,0.5-0.9,1-0.9h0.8c0.6,0,1,0.5,1,1
+ v3.3l0,0c0,1.7-1.2,3.1-2.9,3.4v-3.4v-3.3V18.3z"/>
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#1C1C1C" d="M36,18.3L36,18.3l0,6.1c0.5-0.2,0.9-0.5,1.2-0.9
+ c0.4-0.5,0.7-1.2,0.7-1.9v-3.3c0-0.2-0.1-0.3-0.2-0.4c-0.1-0.1-0.2-0.2-0.4-0.2h-0.8c-0.1,0-0.3,0.1-0.4,0.1
+ C36.1,18.1,36,18.2,36,18.3L36,18.3z M35.2,17.7c0.1-0.2,0.2-0.3,0.4-0.5c0.3-0.2,0.6-0.4,1-0.4h0.8c0.4,0,0.8,0.2,1.1,0.4
+ c0.3,0.3,0.4,0.6,0.4,1.1v3.3c0,1-0.3,1.8-0.9,2.5c-0.6,0.7-1.4,1.2-2.3,1.4L35,25.6v-7.9L35.2,17.7z"/>
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#DC5940" d="M12.4,8.7c1.9,0,1.8,0.9,1.8,2.5v2.7v2.2c0,1.9-0.7,5.2-2.9,5.8
+ v-5.5v-6C11.4,9.9,11.6,8.7,12.4,8.7z"/>
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#1C1C1C" d="M12.4,8.3c2.3,0,2.3,0.9,2.3,2.7l0,0.2h0v4.9
+ c0,1.1-0.3,2.8-0.9,4.1c-0.5,1-1.2,1.9-2.3,2.2c-0.2,0.1-0.5-0.1-0.6-0.3c0,0,0-0.1,0-0.1h0V10.5c0,0,0,0,0-0.1
+ c0-0.4,0.1-1,0.4-1.5C11.5,8.6,11.9,8.3,12.4,8.3L12.4,8.3z M13.7,11c0-1.2,0-1.8-1.4-1.8c-0.1,0-0.2,0.1-0.3,0.2
+ c-0.2,0.3-0.3,0.7-0.3,1c0.1,3.5,0,7.2,0,10.7c0.5-0.3,0.8-0.8,1.1-1.4c0.6-1.2,0.8-2.6,0.8-3.7v-4.9h0L13.7,11z"/>
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#DC5940" d="M36.2,9.4c-0.1-0.9-0.5-1.6-1-1.6h-0.8l0,0h0l0,0l0,0l0,0l0,0l0,0
+ c-0.9,0.1-1,1.6-1,3c0,1.5,0.1,2.9,0.1,4.4c0,1.9,0.7,5.2,2.9,5.8v-5.5v-6L36.2,9.4z"/>
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#1C1C1C" d="M35.8,9.4c0-0.4-0.1-0.7-0.3-0.9c-0.1-0.1-0.2-0.2-0.3-0.2
+ c-0.3,0-0.6,0-0.8,0c-0.2,0-0.3,0.3-0.4,0.7c-0.1,0.5-0.2,1.2-0.2,1.9c0,0.7,0,1.4,0,2.1c0,0.8,0,1.6,0,2.3c0,1,0.2,2.5,0.8,3.7
+ c0.3,0.6,0.7,1.1,1.1,1.4c0-3.6-0.1-7.2,0-10.7L35.8,9.4L35.8,9.4z M36.3,8c0.2,0.3,0.4,0.8,0.4,1.3l0,0.2c0,0,0,0,0,0.1V21h0
+ c0,0,0,0.1,0,0.1c-0.1,0.2-0.3,0.4-0.6,0.3c-1-0.3-1.8-1.2-2.3-2.2c-0.6-1.3-0.9-2.9-0.9-4.1c0-0.8,0-1.5,0-2.3c0-0.7,0-1.4,0-2.1
+ c0-0.7,0-1.5,0.2-2.1c0.2-0.7,0.6-1.3,1.2-1.4c0.1,0,0.1,0,0.2,0h0.8C35.6,7.3,36,7.6,36.3,8z"/>
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#DC5940" d="M24.4,2.4c-4.9,0-10.1,0.4-10.4,6.4c-0.2,3.1,3.7,3.6,6.4,3.6h8
+ c2.6,0,4.9-0.7,6.8-2c2.2-1.5,3.7-3.6,4-6c0-0.3,0.1-0.6,0.1-1c0-1-0.2-1.9-0.5-2.7c-1.8,1.1-4,1.7-6.4,1.7H24.4z"/>
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#1C1C1C" d="M24.4,2.9c-2.4,0-4.9,0.1-6.7,0.9c-1.8,0.8-3.1,2.2-3.2,5
+ c-0.1,1.3,0.7,2.1,1.8,2.5c1.2,0.5,2.8,0.6,4.1,0.6h8c1.2,0,2.4-0.2,3.5-0.5c1.1-0.3,2.2-0.8,3.1-1.4c1.1-0.7,1.9-1.6,2.6-2.6
+ c0.6-1,1-2,1.2-3.1c0-0.1,0-0.3,0-0.4c0-0.1,0-0.3,0-0.5c0-0.4,0-0.9-0.1-1.3c0-0.3-0.1-0.5-0.2-0.7c-0.8,0.4-1.7,0.8-2.6,1
+ c-1.1,0.3-2.3,0.5-3.5,0.5H24.4L24.4,2.9z M17.3,2.9c2-0.9,4.6-1,7.1-1h8c1.1,0,2.2-0.1,3.2-0.4c1.1-0.3,2-0.7,2.9-1.2L39,0
+ l0.2,0.5c0.2,0.5,0.3,0.9,0.4,1.4c0.1,0.5,0.1,1,0.1,1.5c0,0.2,0,0.3,0,0.5c0,0.2,0,0.3-0.1,0.5C39.5,5.7,39,6.9,38.3,8
+ c-0.7,1.1-1.7,2-2.9,2.8c-1,0.7-2.1,1.2-3.3,1.5c-1.2,0.3-2.4,0.5-3.7,0.5h-8c-1.4,0-3.1-0.1-4.5-0.7c-1.5-0.6-2.5-1.6-2.4-3.5
+ C13.6,5.5,15.1,3.8,17.3,2.9z"/>
+ <circle fill-rule="evenodd" clip-rule="evenodd" fill="#40545A" cx="18.4" cy="20.4" r="1.4"/>
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#1C1C1C" d="M18.4,18.5c0.5,0,1,0.2,1.3,0.5l0,0c0.3,0.3,0.5,0.8,0.5,1.3
+ c0,0.5-0.2,1-0.5,1.3c-0.3,0.3-0.8,0.5-1.3,0.5c-0.5,0-1-0.2-1.3-0.5l0,0c-0.3-0.3-0.5-0.8-0.5-1.3c0-0.5,0.2-1,0.5-1.3
+ C17.4,18.7,17.9,18.5,18.4,18.5L18.4,18.5z M19.1,19.7c-0.2-0.2-0.4-0.3-0.7-0.3c-0.3,0-0.5,0.1-0.7,0.3c-0.2,0.2-0.3,0.4-0.3,0.7
+ c0,0.3,0.1,0.5,0.3,0.7l0,0c0.2,0.2,0.4,0.3,0.7,0.3c0.3,0,0.5-0.1,0.7-0.3c0.2-0.2,0.3-0.4,0.3-0.7C19.3,20.1,19.2,19.9,19.1,19.7
+ z"/>
+ <circle fill-rule="evenodd" clip-rule="evenodd" fill="#40545A" cx="29.3" cy="20.4" r="1.4"/>
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#1C1C1C" d="M29.3,19.4c-0.3,0-0.5,0.1-0.7,0.3l0,0c-0.2,0.2-0.3,0.4-0.3,0.7
+ c0,0.3,0.1,0.5,0.3,0.7c0.2,0.2,0.4,0.3,0.7,0.3c0.3,0,0.5-0.1,0.7-0.3c0.2-0.2,0.3-0.4,0.3-0.7c0-0.3-0.1-0.5-0.3-0.7
+ C29.8,19.5,29.6,19.4,29.3,19.4L29.3,19.4z M28,19c0.3-0.3,0.8-0.5,1.3-0.5c0.5,0,1,0.2,1.3,0.5l0,0c0.3,0.3,0.5,0.8,0.5,1.3
+ c0,0.5-0.2,1-0.5,1.3c-0.3,0.3-0.8,0.5-1.3,0.5c-0.5,0-1-0.2-1.3-0.5c-0.3-0.3-0.5-0.8-0.5-1.3C27.5,19.9,27.7,19.4,28,19L28,19z"
+ />
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#DC5940" d="M23.7,47.6c-1.2-0.9-4.6-2.5-4.9-6.6c0-0.1,0-0.2,0-0.4v-1.2h-1
+ c-0.9,0-1.7,0.1-2.5,0.2c0.2,8.3,6.4,10.7,8.5,12.1c2.1-1.4,8.3-4,8.5-12.1c-0.8-0.1-1.7-0.2-2.5-0.2h-1.2v1.2
+ c0,0.4-0.1,0.7-0.2,1.1C27.6,45.1,24.7,46.7,23.7,47.6z"/>
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#1C1C1C" d="M23.4,48c-0.2-0.1-0.4-0.3-0.7-0.5c-1.5-1-4.1-2.8-4.4-6.5
+ c0-0.1,0-0.1,0-0.2c0-0.1,0-0.1,0-0.2v-0.8h-0.5c-0.4,0-0.8,0-1.2,0c-0.3,0-0.5,0-0.8,0.1c0.4,6.7,4.9,9.3,7.4,10.7
+ c0.3,0.1,0.5,0.3,0.7,0.4c0.2-0.1,0.4-0.2,0.7-0.4c2.5-1.4,7-4.1,7.4-10.8c-0.3,0-0.5-0.1-0.8-0.1c-0.4,0-0.8,0-1.2,0H29v0.8
+ c0,0.2,0,0.4,0,0.6c0,0.2-0.1,0.4-0.1,0.6c-0.7,3.1-3,4.8-4.4,5.8c-0.2,0.2-0.4,0.3-0.6,0.4l-0.3,0.2L23.4,48L23.4,48z M23.2,46.7
+ c0.2,0.1,0.3,0.2,0.4,0.3l0.3-0.2c1.3-0.9,3.4-2.4,4-5.2l0,0c0-0.1,0.1-0.3,0.1-0.5c0-0.2,0-0.3,0-0.5v-1.7h1.7c0.4,0,0.9,0,1.3,0
+ c0.4,0,0.9,0.1,1.3,0.1l0.4,0.1l0,0.4c-0.2,7.5-5.2,10.4-7.9,12c-0.3,0.2-0.6,0.4-0.9,0.5l-0.3,0.2l-0.3-0.2
+ c-0.2-0.2-0.6-0.3-0.9-0.5c-2.7-1.6-7.6-4.4-7.8-12l0-0.4l0.4-0.1C15.6,39,16,39,16.5,39c0.4,0,0.9,0,1.3,0h1.4v1.7l0,0.2
+ c0,0.1,0,0.1,0,0.2l0,0C19.5,44.2,21.8,45.7,23.2,46.7z"/>
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#1C1C1C" d="M12.1,40.4C12.9,49,19,52.9,22.5,55.1c0.5,0.3,0.9,0.6,1.3,0.8
+ c0.4-0.3,0.8-0.6,1.3-0.9c3.4-2.2,9.5-5.9,10.4-14.7l0.9,0.1c-1,9.2-7.3,13.2-10.8,15.4c-0.6,0.4-1.2,0.7-1.6,1l-0.3,0.2l-0.3-0.2
+ c-0.4-0.3-0.9-0.6-1.5-1c-3.6-2.3-10-6.4-10.8-15.5L12.1,40.4z"/>
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#1C1C1C" d="M15.8,17.8c-0.2,0.2-0.5,0.2-0.7,0c-0.2-0.2-0.2-0.5,0-0.7
+ c0.4-0.4,0.9-0.8,1.5-1l0,0c0.5-0.2,1.1-0.3,1.7-0.3c0.6,0,1.2,0.1,1.7,0.3l0,0c0.6,0.2,1.1,0.6,1.5,1c0.2,0.2,0.2,0.5,0,0.7
+ c-0.2,0.2-0.5,0.2-0.7,0c-0.3-0.3-0.7-0.6-1.2-0.8c-0.4-0.2-0.9-0.3-1.4-0.3c-0.5,0-0.9,0.1-1.4,0.3l0,0
+ C16.6,17.2,16.2,17.5,15.8,17.8L15.8,17.8z M26.8,17.8c-0.2,0.2-0.5,0.2-0.7,0c-0.2-0.2-0.2-0.5,0-0.7c0.4-0.4,0.9-0.8,1.5-1l0,0
+ c0.5-0.2,1.1-0.3,1.7-0.3c0.6,0,1.2,0.1,1.7,0.3l0,0c0.6,0.2,1.1,0.6,1.5,1c0.2,0.2,0.2,0.5,0,0.7c-0.2,0.2-0.5,0.2-0.7,0
+ c-0.3-0.3-0.7-0.6-1.2-0.8c-0.4-0.2-0.9-0.3-1.4-0.3c-0.5,0-0.9,0.1-1.4,0.3l0,0C27.5,17.2,27.1,17.5,26.8,17.8z"/>
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#1C1C1C" d="M14.1,7.9c-0.2-0.2-0.2-0.5,0-0.7c0.2-0.2,0.5-0.2,0.7,0
+ c0.7,0.7,1.8,1.2,3.1,1.5c1.4,0.3,3.2,0.4,5.1,0.4c0.3,0,0.5,0.2,0.5,0.5c0,0.3-0.2,0.5-0.5,0.5c-2,0-3.8-0.1-5.3-0.4
+ C16.1,9.4,14.9,8.9,14.1,7.9z"/>
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#1C1C1C" d="M13.2,3.7c0-0.3,0.2-0.5,0.5-0.5c0.3,0,0.5,0.2,0.5,0.5l0,5.3
+ c0,0.3-0.2,0.5-0.5,0.5c-0.1,0-0.2,0-0.3-0.1l0,0l-3.3-2.7C9.9,6.5,9.9,6.2,10,6c0.2-0.2,0.5-0.2,0.7-0.1L13.2,8L13.2,3.7z"/>
+</g>
+</svg>
A public/img/s1.svg
+116 −0
--- /dev/null
+++ b/public/img/s1.svg
@@ -0,0 +1,116 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Generator: Adobe Illustrator 18.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
+<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
+ viewBox="137.6 155 361.9 485" enable-background="new 137.6 155 361.9 485" xml:space="preserve">
+<g id="Avatar_5">
+ <path fill="#A76739" d="M141.4,637h354.3v-80.6c0-66.9-59.3-121.6-131.5-121.6H355v-13.7v-23.6h-74.5v37.3h-7.6
+ c-72.2,0-131.5,54.7-131.5,121.6L141.4,637L141.4,637z"/>
+ <path fill="#1C1C1C" d="M145.2,633.2h347.4v-76.8c0-32.7-14.4-61.6-37.3-83.6c-23.6-21.3-55.5-35-90.5-35h-9.1
+ c-2.3,0-3.8-1.5-3.8-3.8v-33.5h-67.7V434c0,2.3-1.5,3.8-3.8,3.8h-7.6c-35,0-67.7,13.7-90.5,35c-22.8,21.3-37.3,50.9-37.3,83.6
+ L145.2,633.2L145.2,633.2z M496.4,640h-355c-2.3,0-3.8-1.5-3.8-3.8v-79.8c0-34.2,15.2-66.1,39.5-88.2c24.3-22.8,58.5-36.5,95-36.5
+ h3.8v-33.5c0-2.3,1.5-3.8,3.8-3.8h74.5c2.3,0,3.8,1.5,3.8,3.8v33.5h6.8c37.3,0,70.7,13.7,95,36.5c24.3,22.8,39.5,54,39.5,88.2V637
+ C499.5,638.5,498,640,496.4,640z"/>
+ <path fill="#1C1C1C" d="M210.6,529c0.8-1.5,3-3,4.6-2.3s3,3,2.3,4.6c-2.3,6.1-3.8,12.2-4.6,19c-0.8,6.1-1.5,12.9-1.5,19.8V634H428
+ v-63.9c0-6.8-0.8-12.9-1.5-19.8c-0.8-6.8-3-12.9-4.6-19c-0.8-1.5,0-3.8,2.3-4.6c1.5-0.8,3.8,0,4.6,2.3c2.3,6.1,3.8,12.9,5.3,19.8
+ c0.8,6.8,1.5,13.7,1.5,20.5v66.9c0,2.3-1.5,3.8-3.8,3.8h-225c-2.3,0-3.8-1.5-3.8-3.8v-66.9c0-6.8,0.8-13.7,1.5-20.5
+ C206,542,208.3,535.9,210.6,529z"/>
+ <path fill="#FDC27A" d="M355,386.1c0,8.4,0.8,51.7,0.8,51.7c-24.3,9.1-48.7,9.1-74.5,0c0-9.1-0.8-53.2-0.8-53.2
+ C306.4,396,331.5,396.8,355,386.1z"/>
+ <path fill="#1C1C1C" d="M358.8,386.1c0,9.9,0.8,51.7,0.8,51.7c0,1.5-0.8,3-2.3,3l0,0c-12.2,4.6-25.1,7.6-38,7.6s-25.8-2.3-39.5-7.6
+ c-1.5-0.8-2.3-1.5-2.3-3c0-10.6-0.8-53.2-0.8-53.2c0-2.3,1.5-3.8,3.8-3.8c0.8,0,0.8,0,1.5,0c12.2,5.3,25.1,8.4,36.5,9.1
+ c12.2,0,23.6-2.3,35-7.6c1.5-0.8,3.8,0,4.6,1.5C358.8,385.4,358.8,385.4,358.8,386.1L358.8,386.1L358.8,386.1z M352.8,435.5
+ c0-7.6-0.8-32.7-0.8-44.1c-10.6,3.8-22,6.1-33.5,6.1s-22.8-2.3-34.2-7.6c0,11.4,0.8,35.7,0.8,45.6c11.4,3.8,23.6,6.1,34.2,6.1
+ C330.7,441.6,342.1,439.3,352.8,435.5z"/>
+
+ <rect x="230.2" y="532.1" transform="matrix(-0.2088 0.978 -0.978 -0.2088 926.9915 321.0898)" fill="#1C1C1C" width="206.8" height="6.8"/>
+ <polygon fill="#1C1C1C" points="347.4,479.6 399.1,531.3 338.3,638.5 332.2,634.7 390.8,532.8 342.9,484.9 "/>
+
+ <rect x="209.8" y="518.6" transform="matrix(0.2087 0.978 -0.978 0.2087 747.2781 120.5317)" fill="#1C1C1C" width="178.7" height="6.8"/>
+ <polygon fill="#1C1C1C" points="293.5,484.9 245.6,532.8 304.1,634.7 297.3,638.5 236.4,531.3 288.1,479.6 "/>
+ <path fill="#DCDBDB" d="M293.5,497.1l24.3,112.5l24.3-112.5l9.1-58.5c-22,8.4-44.1,8.4-67.7,0L293.5,497.1z"/>
+ <path fill="#1C1C1C" d="M296.5,496.4l21.3,96.6c11.4-51.7,21.3-97.3,29.6-149c-9.1,3-19,4.6-28.9,4.6c-9.9,0-19.8-1.5-30.4-4.6
+ L296.5,496.4L296.5,496.4z M314.7,610.4l-24.3-112.5l0,0l-9.1-58.5c0-0.8,0-1.5,0-2.3c0.8-1.5,3-3,4.6-2.3
+ c11.4,3.8,22.8,6.1,33.5,6.1s21.3-2.3,31.9-6.1c0.8,0,1.5,0,1.5,0c2.3,0,3,2.3,3,3.8l-9.1,57.8c0,0,0,0,0,0.8l-24.3,112.5
+ c0,1.5-1.5,2.3-3,3C317,613.4,314.7,611.9,314.7,610.4z"/>
+ <path fill="#FDC27A" d="M319.3,167.2L319.3,167.2c48.7,0,88.2,39.5,88.2,88.2V320c0,48.7-39.5,88.2-88.2,88.2l0,0
+ c-48.7,0-88.2-39.5-88.2-88.2v-65.4C231.1,206.7,270.6,167.2,319.3,167.2z"/>
+ <path fill="#1C1C1C" d="M319.3,163.4c25.1,0,48.7,10.6,64.6,27.4c16.7,16.7,27.4,39.5,27.4,64.6V320c0,25.1-10.6,48.7-27.4,64.6
+ c-16.7,16.7-39.5,27.4-64.6,27.4s-48.7-10.6-64.6-27.4c-16.7-16.7-27.4-39.5-27.4-64.6v-65.4c0-25.1,10.6-48.7,27.4-64.6
+ S294.2,163.4,319.3,163.4L319.3,163.4z M379.4,195.3c-15.2-15.2-36.5-25.1-60.1-25.1c-23.6,0-44.9,9.9-60.1,25.1
+ c-15.2,15.2-25.1,36.5-25.1,60.1V320c0,23.6,9.9,44.9,25.1,60.1c15.2,15.2,36.5,25.1,60.1,25.1c23.6,0,44.9-9.9,60.1-25.1
+ c15.2-15.2,25.1-36.5,25.1-60.1v-65.4C404.5,231.8,394.6,210.5,379.4,195.3z"/>
+ <circle fill="#40545A" cx="278.3" cy="289.6" r="10.6"/>
+ <path fill="#1C1C1C" d="M278.3,275.9c3.8,0,7.6,1.5,9.9,3.8l0,0c2.3,2.3,3.8,6.1,3.8,9.9s-1.5,7.6-3.8,9.9l0,0
+ c-2.3,2.3-6.1,3.8-9.9,3.8c-3.8,0-7.6-1.5-9.9-3.8s-3.8-6.1-3.8-9.9s1.5-7.6,3.8-9.9S273.7,275.9,278.3,275.9L278.3,275.9z
+ M282.8,285c-1.5-1.5-3-2.3-5.3-2.3s-3.8,0.8-5.3,2.3s-2.3,3-2.3,5.3s0.8,3.8,2.3,5.3s3,2.3,5.3,2.3s3.8-0.8,5.3-2.3s2.3-3,2.3-5.3
+ C285.1,288,284.3,286.5,282.8,285L282.8,285z"/>
+ <circle fill="#40545A" cx="361.1" cy="289.6" r="10.6"/>
+ <path fill="#1C1C1C" d="M361.1,282.7c-2.3,0-3.8,0.8-5.3,2.3c-1.5,1.5-2.3,3-2.3,5.3s0.8,3.8,2.3,5.3l0,0c1.5,1.5,3,2.3,5.3,2.3
+ c2.3,0,3.8-0.8,5.3-2.3c1.5-1.5,2.3-3,2.3-5.3s-0.8-3.8-2.3-5.3l0,0C364.9,283.5,363.4,282.7,361.1,282.7L361.1,282.7z
+ M351.2,279.7c2.3-2.3,6.1-3.8,9.9-3.8c3.8,0,7.6,1.5,9.9,3.8l0,0c2.3,2.3,3.8,6.1,3.8,9.9s-1.5,7.6-3.8,9.9l0,0
+ c-2.3,2.3-6.1,3.8-9.9,3.8c-3.8,0-7.6-1.5-9.9-3.8l0,0c-2.3-2.3-3.8-6.1-3.8-9.9C346.7,285.8,348.2,282.7,351.2,279.7z"/>
+ <path fill="#1C1C1C" d="M321.6,334.4c0,2.3-1.5,3.8-3.8,3.8c-2.3,0-3.8-1.5-3.8-3.8c0-6.1,0-9.1,1.5-11.4l0,0c2.3-3,4.6-3,9.9-3
+ c2.3,0,3-0.8,3.8-2.3c0-0.8,0-1.5,0-2.3s0-1.5,0-2.3c-0.8-1.5-1.5-2.3-2.3-2.3c-2.3,0-3.8-1.5-3.8-3.8v-27.4c0-2.3,1.5-3.8,3.8-3.8
+ c2.3,0,3.8,1.5,3.8,3.8v25.1c3,0.8,4.6,3.8,5.3,6.1c0.8,1.5,0.8,3,0.8,4.6c0,1.5,0,3-0.8,4.6c-1.5,3.8-4.6,6.8-10.6,6.8
+ c-3,0-3.8,0-3.8,0l0,0C321.6,327.6,321.6,329.9,321.6,334.4z"/>
+ <path fill="#FFFFFF" d="M349,347.3c-2.3,14.4-16,25.8-31.2,25.8l0,0c-15.2,0-28.1-11.4-31.2-25.8H349z"/>
+ <path fill="#1C1C1C" d="M352.8,348.1c-1.5,8.4-6.1,15.2-12.2,20.5c-6.1,5.3-13.7,8.4-22.8,8.4c-8.4,0-16.7-3-22.8-8.4
+ c-6.1-5.3-10.6-12.2-12.2-20.5c0-2.3,0.8-3.8,3-3.8h0.8H349C351.2,344.3,352.8,345.8,352.8,348.1
+ C352.8,347.3,352.8,348.1,352.8,348.1L352.8,348.1z M336,363.3c3.8-3,6.8-7.6,8.4-12.2h-53.2c1.5,4.6,4.6,9.1,8.4,12.2
+ c4.6,3.8,11.4,6.8,18.2,6.8C324.6,370.2,330.7,367.1,336,363.3z"/>
+ <path fill="#DCDBDB" d="M231.1,198.3c0.8-6.8,3.8-12.2,7.6-12.2h6.1c4.6,0,7.6,6.1,7.6,13.7v42.6l0,0c0,22-9.1,40.3-22,44.1v-44.1
+ v-42.6L231.1,198.3z"/>
+ <path fill="#1C1C1C" d="M227.3,198.3c0-3.8,1.5-7.6,3-9.9c2.3-3,4.6-5.3,8.4-5.3h6.1c3.8,0,6.8,2.3,8.4,6.1c1.5,3,3,6.8,3,11.4
+ v42.6c0,11.4-2.3,22-6.8,30.4c-4.6,9.1-10.6,15.2-17.5,17.5l-4.6,1.5v-92l0,0V198.3L227.3,198.3z M236.4,192.3
+ c-0.8,1.5-1.5,3.8-2.3,6.8v1.5l0,0V282c3-2.3,6.1-6.1,9.1-11.4c3.8-7.6,6.1-16.7,6.1-27.4v-42.6c0-3-0.8-6.1-1.5-7.6
+ c-0.8-1.5-1.5-2.3-2.3-2.3h-6.1C238,190.7,237.2,190.7,236.4,192.3z"/>
+ <path fill="#DCDBDB" d="M408.3,235.6L408.3,235.6c-0.8-3.8-3-6.8-6.8-6.8h-5.3c-3.8,0-6.8,3.8-6.8,7.6v25.1l0,0
+ c0,12.9,7.6,23.6,18.2,25.8v-25.8v-25.1v-0.8H408.3z"/>
+ <path fill="#1C1C1C" d="M404.5,236.3L404.5,236.3c0-1.5-0.8-2.3-1.5-3s-0.8-0.8-1.5-0.8h-5.3c-0.8,0-1.5,0.8-1.5,0.8
+ c-0.8,0.8-0.8,2.3-0.8,3v25.1c0,5.3,1.5,10.6,4.6,15.2c1.5,2.3,3.8,4.6,6.1,6.1L404.5,236.3L404.5,236.3z M408.3,228
+ c0.8,0.8,1.5,2.3,2.3,3h0.8v60.8l-4.6-0.8c-6.1-1.5-11.4-5.3-15.2-10.6c-3.8-5.3-6.1-11.4-6.1-19v-25.1c0-3,0.8-6.1,3-7.6l0,0
+ c1.5-2.3,4.6-3.8,7.6-3.8h5.3C404.5,224.9,406.7,226.5,408.3,228z"/>
+ <path fill="#40545A" d="M314.7,235.6c-30.4,0-57-20.5-65.4-48.7c-6.8-22,22.8-27.4,40.3-27.4h50.2c16,0,31.2,5.3,42.6,15.2
+ c13.7,11.4,22.8,27.4,25.1,45.6c0,2.3,0.8,4.6,0.8,7.6c0,7.6-1.5,14.4-3,20.5c-11.4-8.4-25.1-12.9-39.5-12.9H314.7z"/>
+ <path fill="#1C1C1C" d="M314.7,238.6c-16,0-30.4-5.3-42.6-14.4c-12.2-9.1-21.3-22-25.8-36.5c-0.8-2.3-1.5-5.3-1.5-7.6
+ c0-6.1,2.3-10.6,6.8-14.4c3.8-3,8.4-6.1,14.4-7.6c8.4-2.3,17.5-3,24.3-3h50.2c8.4,0,16,1.5,23.6,3.8c7.6,3,15.2,6.8,21.3,12.2
+ c7.6,6.1,13.7,12.9,18.2,21.3c4.6,8.4,7.6,16.7,8.4,26.6c0,1.5,0,2.3,0,3.8s0,3,0,3.8c0,3.8,0,7.6-0.8,11.4
+ c-0.8,3.8-1.5,7.6-2.3,10.6l-1.5,4.6l-4.6-2.3c-5.3-3.8-11.4-6.8-18.2-9.1c-6.1-2.3-12.9-3-19.8-3H314.7L314.7,238.6z M276.7,218.9
+ c10.6,7.6,24.3,12.9,38,12.9h50.2c7.6,0,15.2,1.5,22,3.8c5.3,1.5,10.6,4.6,16,7.6c0.8-1.5,0.8-3,0.8-5.3c0.8-3,0.8-6.8,0.8-9.9
+ c0-1.5,0-2.3,0-3.8c0-0.8,0-2.3,0-3.8c-0.8-8.4-3.8-16.7-7.6-23.6c-3.8-7.6-9.9-14.4-16-19.8c-5.3-4.6-12.2-8.4-19-10.6
+ c-6.8-2.3-13.7-3.8-21.3-3.8h-50.2c-6.1,0-14.4,0.8-22,3c-4.6,1.5-8.4,3-11.4,6.1c-2.3,2.3-3.8,5.3-3.8,9.1c0,1.5,0,3,0.8,5.3
+ C257,199.1,265.3,211.3,276.7,218.9z"/>
+ <path fill="#FDC27A" d="M231.1,273.6L231.1,273.6c-0.8-3.8-3.8-6.8-7.6-6.8h-6.1c-4.6,0-7.6,3.8-7.6,7.6v25.1l0,0
+ c0,12.9,9.1,23.6,22,25.8v-25.8v-25.1v-0.8H231.1z"/>
+ <path fill="#1C1C1C" d="M227.3,274.4L227.3,274.4c0-1.5-0.8-2.3-1.5-3s-1.5-0.8-3-0.8h-6.1c-1.5,0-2.3,0.8-3,1.5
+ c-0.8,0.8-1.5,1.5-1.5,3v25.1c0,5.3,2.3,10.6,5.3,14.4c2.3,3,5.3,5.3,9.1,6.8v-47.1H227.3z M231.1,266c0.8,0.8,2.3,2.3,3,3.8h1.5
+ v60.1l-4.6-0.8c-6.8-1.5-12.9-5.3-17.5-10.6c-4.6-5.3-6.8-12.2-6.8-19v-25.1c0-3,1.5-6.1,3-8.4c2.3-2.3,4.6-3,8.4-3h6.1
+ C226.6,263.7,228.8,264.5,231.1,266z"/>
+ <path fill="#FDC27A" d="M408.3,273.6L408.3,273.6c0.8-3.8,3.8-6.8,7.6-6.8h6.1c4.6,0,7.6,3.8,7.6,7.6v25.1l0,0
+ c0,12.9-9.1,23.6-22,25.8v-25.8v-25.1v-0.8H408.3z"/>
+ <path fill="#1C1C1C" d="M411.3,274.4L411.3,274.4v46.4c3.8-1.5,6.8-3.8,9.1-6.8c3-3.8,5.3-9.1,5.3-14.4v-25.1c0-1.5-0.8-2.3-1.5-3
+ s-1.5-1.5-3-1.5h-6.1c-0.8,0-2.3,0.8-3,0.8C412.1,272.1,411.3,273.6,411.3,274.4L411.3,274.4z M405.2,269.8c0.8-1.5,1.5-2.3,3-3.8
+ c2.3-1.5,4.6-3,7.6-3h6.1c3,0,6.1,1.5,8.4,3c2.3,2.3,3,4.6,3,8.4v25.1c0,7.6-2.3,13.7-6.8,19s-10.6,9.1-17.5,10.6l-4.6,0.8v-60.1
+ L405.2,269.8z"/>
+ <path fill="#40545A" d="M232.6,240.9c3-7.6,9.9-12.2,20.5-14.4v-25.8c0-0.8,0-1.5,0-2.3c-0.8-6.1-3.8-10.6-7.6-10.6h-6.1
+ c-3.8,0-7.6,5.3-7.6,12.2v1.5V244v3C231.1,244,231.9,242.4,232.6,240.9z"/>
+ <path fill="#1C1C1C" d="M234.9,231c0.8-0.8,1.5-1.5,3-2.3c3-2.3,6.8-3.8,11.4-5.3v-22.8c0-0.8,0-0.8,0-0.8v-0.8
+ c0-2.3-0.8-4.6-2.3-6.1c-0.8-2.3-1.5-2.3-2.3-2.3h-6.1c-0.8,0-1.5,0.8-2.3,1.5c-0.8,1.5-1.5,3.8-2.3,6.8v1.5l0,0V231H234.9z
+ M241.8,234.1c-3,2.3-4.6,4.6-6.1,7.6c-0.8,1.5-0.8,3-0.8,4.6l-6.8,60.1V200.6l0,0v-1.5c0-3.8,1.5-7.6,3-9.9c2.3-3,4.6-5.3,8.4-5.3
+ h6.1c3,0,6.1,1.5,7.6,4.6c1.5,2.3,3,5.3,3,9.1c0,0.8,0,0.8,0,1.5l0,0c0,0.8,0,0.8,0,1.5v28.9l-3,0.8
+ C248.6,231,244.8,231.8,241.8,234.1z"/>
+ <path fill="#1C1C1C" d="M258.5,270.6c-1.5,1.5-3.8,1.5-5.3,0c-1.5-1.5-1.5-3.8,0-5.3c3-3,6.8-6.1,11.4-7.6
+ c3.8-1.5,8.4-2.3,12.9-2.3s9.1,0.8,12.9,2.3c4.6,1.5,8.4,4.6,11.4,7.6c1.5,1.5,1.5,3.8,0,5.3c-1.5,1.5-3.8,1.5-5.3,0
+ c-2.3-2.3-5.3-4.6-9.1-6.1c-3-1.5-6.8-2.3-10.6-2.3s-7.6,0.8-10.6,2.3C263.8,266,260.8,268.3,258.5,270.6L258.5,270.6z
+ M341.4,270.6c-1.5,1.5-3.8,1.5-5.3,0c-1.5-1.5-1.5-3.8,0-5.3c3-3,6.8-6.1,11.4-7.6c3.8-1.5,8.4-2.3,12.9-2.3s9.1,0.8,12.9,2.3
+ c4.6,1.5,8.4,4.6,11.4,7.6c1.5,1.5,1.5,3.8,0,5.3c-1.5,1.5-3.8,1.5-5.3,0c-2.3-2.3-5.3-4.6-9.1-6.1c-3-1.5-6.8-2.3-10.6-2.3
+ s-7.6,0.8-10.6,2.3C347.4,266,344.4,268.3,341.4,270.6z"/>
+ <polygon fill="#A76739" points="345.2,482.7 368,504.7 409.8,494.1 382.4,435.5 355,416.5 "/>
+ <path fill="#1C1C1C" d="M349,481.1l19.8,19.8l35.7-9.9l-25.1-53.2l-22-15.2L349,481.1L349,481.1z M364.9,507.8l-23.6-23.6
+ c3.8-24.3,7.6-48.7,11.4-73l32.7,22.8l28.9,63.1L366.4,510L364.9,507.8z"/>
+ <polygon fill="#A76739" points="290.4,482.7 268.4,504.7 225.8,494.1 253.2,435.5 280.5,416.5 "/>
+ <path fill="#1C1C1C" d="M293.5,484.9l-24.3,24.3l-47.9-12.9c9.9-21.3,19.8-41.8,28.9-63.1l32.7-22.8l11.4,73L293.5,484.9
+ L293.5,484.9z M266.8,500.9l19.8-19.8l-9.1-58.5l-22,15.2L230.4,491L266.8,500.9z"/>
+</g>
+</svg>
A public/img/s2.svg
+132 −0
--- /dev/null
+++ b/public/img/s2.svg
@@ -0,0 +1,132 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Generator: Adobe Illustrator 18.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
+<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
+ viewBox="280.4 361.8 47.6 63.9" enable-background="new 280.4 361.8 47.6 63.9" xml:space="preserve">
+<g id="Avatar_10">
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#3F5359" d="M280.9,425.3h46.6v-10.6c0-8.8-7.8-16-17.3-16H309v-1.8v-3.1h-9.8
+ v4.9h-1c-9.5,0-17.3,7.2-17.3,16V425.3z"/>
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#1C1C1C" d="M281.4,424.8h45.7v-10.1c0-4.3-1.9-8.1-4.9-11
+ c-3.1-2.8-7.3-4.6-11.9-4.6H309c-0.3,0-0.5-0.2-0.5-0.5v-4.4h-8.9v4.4c0,0.3-0.2,0.5-0.5,0.5h-1c-4.6,0-8.8,1.8-11.9,4.6
+ c-3,2.8-4.9,6.7-4.9,11V424.8L281.4,424.8z M327.5,425.7h-46.6c-0.3,0-0.5-0.2-0.5-0.5v-10.6c0-4.5,2-8.7,5.2-11.6
+ c3.2-3,7.7-4.8,12.5-4.8h0.5v-4.4c0-0.3,0.2-0.5,0.5-0.5h9.8c0.3,0,0.5,0.2,0.5,0.5v4.4h0.8c4.9,0,9.3,1.8,12.5,4.8
+ c3.2,3,5.2,7.1,5.2,11.6v10.6C328,425.5,327.8,425.7,327.5,425.7z"/>
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#1C1C1C" d="M289.9,411.1c0.1-0.2,0.4-0.4,0.6-0.3c0.2,0.1,0.4,0.4,0.3,0.6
+ c-0.3,0.8-0.5,1.6-0.6,2.5c-0.1,0.8-0.2,1.7-0.2,2.6v8.4h28.5v-8.4c0-0.9-0.1-1.7-0.2-2.6c-0.1-0.9-0.4-1.7-0.6-2.5
+ c-0.1-0.2,0-0.5,0.3-0.6c0.2-0.1,0.5,0,0.6,0.3c0.3,0.8,0.5,1.7,0.7,2.6c0.1,0.9,0.2,1.8,0.2,2.7v8.8c0,0.3-0.2,0.5-0.5,0.5h-29.4
+ c-0.3,0-0.5-0.2-0.5-0.5v-8.8c0-0.9,0.1-1.8,0.2-2.7C289.4,412.8,289.6,411.9,289.9,411.1z"/>
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#FFC278" d="M309,392.4c0,2,0.1,12.3,0.1,12.3c-3.2,2.3-6.4,2.3-9.8,0
+ c0-2.3-0.1-12.7-0.1-12.7C302.6,394.8,305.8,395,309,392.4z"/>
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#1C1C1C" d="M309.5,392.4c0,2.4,0.1,12.3,0.1,12.3c0,0.2-0.1,0.3-0.2,0.4l0,0
+ c-1.7,1.2-3.4,1.8-5.1,1.8c-1.7,0-3.5-0.6-5.3-1.8c-0.1-0.1-0.2-0.2-0.2-0.4c0-2.6-0.1-12.7-0.1-12.7c0-0.3,0.2-0.5,0.5-0.5
+ c0.1,0,0.2,0,0.3,0.1c1.6,1.3,3.2,2,4.7,2.1c1.5,0.1,3-0.5,4.5-1.7c0.2-0.2,0.5-0.1,0.7,0.1C309.4,392.2,309.5,392.3,309.5,392.4
+ L309.5,392.4L309.5,392.4z M308.6,404.5c0-1.4-0.1-8.4-0.1-11.2c-1.4,1-2.9,1.4-4.4,1.3c-1.5-0.1-3-0.6-4.5-1.7
+ c0,2.6,0.1,9.5,0.1,11.5c1.5,1,3.1,1.5,4.5,1.5C305.8,406,307.2,405.5,308.6,404.5z"/>
+
+ <rect x="292.5" y="411.5" transform="matrix(0.2088 -0.978 0.978 0.2088 -160.6269 625.3491)" fill-rule="evenodd" clip-rule="evenodd" fill="#1C1C1C" width="27.2" height="0.9"/>
+ <polygon fill-rule="evenodd" clip-rule="evenodd" fill="#1C1C1C" points="308,404.6 314.8,411.4 306.7,425.5 305.9,425
+ 313.6,411.6 307.3,405.3 "/>
+
+ <rect x="289.8" y="409.7" transform="matrix(-0.2088 -0.978 0.978 -0.2088 -36.5262 790.7305)" fill-rule="evenodd" clip-rule="evenodd" fill="#1C1C1C" width="23.5" height="0.9"/>
+ <polygon fill-rule="evenodd" clip-rule="evenodd" fill="#1C1C1C" points="300.8,405.3 294.5,411.6 302.2,425 301.4,425.5
+ 293.4,411.4 300.2,404.6 "/>
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#DBDBDB" d="M300.8,408.8l3.2,12.9l3.2-12.9l1.2-6.7c-2.9,1-5.8,1-8.9,0
+ L300.8,408.8z"/>
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#1C1C1C" d="M301.3,408.6l2.8,11.1l2.8-11.1l1.1-5.9c-1.2,0.3-2.5,0.5-3.8,0.5
+ c-1.3,0-2.6-0.2-3.9-0.5L301.3,408.6L301.3,408.6z M303.6,421.8l-3.2-12.9l-1.2-6.7c0-0.1,0-0.2,0-0.3c0.1-0.2,0.3-0.4,0.6-0.3
+ c1.5,0.5,3,0.7,4.4,0.7c1.4,0,2.8-0.2,4.2-0.7c0.1,0,0.2,0,0.2,0c0.3,0,0.4,0.3,0.4,0.5l-1.2,6.6c0,0,0,0,0,0.1l-3.2,12.9
+ c0,0.2-0.2,0.3-0.3,0.4C303.9,422.2,303.7,422,303.6,421.8z"/>
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#FFC278" d="M304.3,363.4L304.3,363.4c6.4,0,11.6,5.2,11.6,11.6v8.6
+ c0,6.4-5.2,11.6-11.6,11.6h0c-6.4,0-11.6-5.2-11.6-11.6v-8.6C292.7,368.7,297.9,363.4,304.3,363.4z"/>
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#1C1C1C" d="M304.3,363c3.3,0,6.4,1.4,8.5,3.6c2.2,2.2,3.6,5.2,3.6,8.5v8.6
+ c0,3.3-1.4,6.4-3.6,8.5c-2.2,2.2-5.2,3.6-8.5,3.6c-3.3,0-6.4-1.4-8.5-3.6c-2.2-2.2-3.6-5.2-3.6-8.5v-8.6c0-3.3,1.4-6.4,3.6-8.5
+ C297.9,364.3,301,363,304.3,363L304.3,363z M312.2,367.2c-2-2-4.8-3.3-7.9-3.3c-3.1,0-5.9,1.3-7.9,3.3c-2,2-3.3,4.8-3.3,7.9v8.6
+ c0,3.1,1.3,5.9,3.3,7.9c2,2,4.8,3.3,7.9,3.3c3.1,0,5.9-1.3,7.9-3.3c2-2,3.3-4.8,3.3-7.9v-8.6C315.4,372,314.2,369.2,312.2,367.2z"
+ />
+ <circle fill-rule="evenodd" clip-rule="evenodd" fill="#3F5359" cx="298.8" cy="379.6" r="1.4"/>
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#1C1C1C" d="M298.8,377.8c0.5,0,1,0.2,1.3,0.5v0c0.3,0.3,0.5,0.8,0.5,1.3
+ c0,0.5-0.2,1-0.5,1.3v0c-0.3,0.3-0.8,0.5-1.3,0.5c-0.5,0-1-0.2-1.3-0.5c-0.3-0.3-0.5-0.8-0.5-1.3c0-0.5,0.2-1,0.5-1.3h0
+ C297.8,378,298.3,377.8,298.8,377.8L298.8,377.8z M299.5,379L299.5,379c-0.2-0.2-0.4-0.3-0.7-0.3c-0.3,0-0.5,0.1-0.7,0.3l0,0
+ c-0.2,0.2-0.3,0.4-0.3,0.7c0,0.3,0.1,0.5,0.3,0.7c0.2,0.2,0.4,0.3,0.7,0.3s0.5-0.1,0.7-0.3l0,0c0.2-0.2,0.3-0.4,0.3-0.7
+ S299.6,379.1,299.5,379z"/>
+ <circle fill-rule="evenodd" clip-rule="evenodd" fill="#3F5359" cx="309.8" cy="379.6" r="1.4"/>
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#1C1C1C" d="M309.8,378.7c-0.3,0-0.5,0.1-0.7,0.3l0,0
+ c-0.2,0.2-0.3,0.4-0.3,0.7c0,0.3,0.1,0.5,0.3,0.7c0.2,0.2,0.4,0.3,0.7,0.3c0.3,0,0.5-0.1,0.7-0.3l0,0c0.2-0.2,0.3-0.4,0.3-0.7
+ s-0.1-0.5-0.3-0.7l0,0C310.2,378.8,310,378.7,309.8,378.7L309.8,378.7z M308.4,378.3c0.3-0.3,0.8-0.5,1.3-0.5c0.5,0,1,0.2,1.3,0.5
+ v0c0.3,0.3,0.5,0.8,0.5,1.3c0,0.5-0.2,1-0.5,1.3v0c-0.3,0.3-0.8,0.5-1.3,0.5c-0.5,0-1-0.2-1.3-0.5c-0.3-0.3-0.5-0.8-0.5-1.3
+ C307.9,379.1,308.1,378.6,308.4,378.3L308.4,378.3z"/>
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#1C1C1C" d="M304.5,385.5c0,0.3-0.2,0.5-0.5,0.5c-0.3,0-0.5-0.2-0.5-0.5
+ c0-0.8,0-1.2,0.2-1.5c0.3-0.4,0.6-0.4,1.3-0.4c0.3,0,0.4-0.1,0.5-0.3c0-0.1,0-0.2,0-0.3c0-0.1,0-0.2,0-0.3
+ c-0.1-0.2-0.2-0.3-0.3-0.3c-0.3,0-0.5-0.2-0.5-0.5v-3.6c0-0.3,0.2-0.5,0.5-0.5c0.3,0,0.5,0.2,0.5,0.5v3.2c0.4,0.1,0.6,0.5,0.7,0.8
+ v0c0.1,0.2,0.1,0.4,0.1,0.6c0,0.2,0,0.4-0.1,0.6c-0.2,0.5-0.6,0.9-1.4,0.9c-0.4,0-0.5,0-0.5,0C304.5,384.6,304.5,384.9,304.5,385.5
+ z"/>
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" d="M308.2,387.2c-0.3,1.9-2.1,3.4-4.1,3.4l0,0c-2,0-3.7-1.5-4.1-3.4
+ H308.2z"/>
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#1C1C1C" d="M308.6,387.3c-0.2,1.1-0.8,2-1.6,2.7c-0.8,0.7-1.8,1.1-3,1.1
+ c-1.1,0-2.2-0.4-3-1.1c-0.8-0.7-1.4-1.6-1.6-2.7c0-0.3,0.1-0.5,0.4-0.5c0,0,0.1,0,0.1,0l8.2,0c0.3,0,0.5,0.2,0.5,0.5
+ C308.6,387.2,308.6,387.2,308.6,387.3L308.6,387.3z M306.4,389.3c0.5-0.4,0.9-1,1.1-1.6h-7c0.2,0.6,0.6,1.2,1.1,1.6
+ c0.6,0.5,1.5,0.9,2.4,0.9C305,390.1,305.8,389.8,306.4,389.3z"/>
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#FFC278" d="M292.7,377.5L292.7,377.5c-0.1-0.5-0.5-0.9-1-0.9h-0.8
+ c-0.6,0-1,0.5-1,1v3.3l0,0c0,1.7,1.2,3.1,2.9,3.4v-3.4v-3.3V377.5z"/>
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#1C1C1C" d="M292.2,377.6L292.2,377.6c0-0.2-0.1-0.3-0.2-0.4
+ c-0.1-0.1-0.2-0.1-0.4-0.1h-0.8c-0.2,0-0.3,0.1-0.4,0.2c-0.1,0.1-0.2,0.2-0.2,0.4v3.3c0,0.7,0.3,1.4,0.7,1.9
+ c0.3,0.4,0.7,0.7,1.2,0.9V377.6L292.2,377.6z M292.6,376.5c0.1,0.1,0.3,0.3,0.4,0.5l0.2,0v7.9l-0.6-0.1c-0.9-0.2-1.7-0.7-2.3-1.4
+ c-0.6-0.7-0.9-1.6-0.9-2.5v-3.3c0-0.4,0.2-0.8,0.4-1.1c0.3-0.3,0.6-0.4,1.1-0.4h0.8C292,376.1,292.4,376.3,292.6,376.5z"/>
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#FFC278" d="M315.9,377.5L315.9,377.5c0.1-0.5,0.5-0.9,1-0.9h0.8
+ c0.6,0,1,0.5,1,1v3.3l0,0c0,1.7-1.2,3.1-2.9,3.4v-3.4v-3.3V377.5z"/>
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#1C1C1C" d="M316.4,377.6L316.4,377.6l0,6.1c0.5-0.2,0.9-0.5,1.2-0.9
+ c0.4-0.5,0.7-1.2,0.7-1.9v-3.3c0-0.2-0.1-0.3-0.2-0.4c-0.1-0.1-0.2-0.2-0.4-0.2h-0.8c-0.1,0-0.3,0.1-0.4,0.1
+ C316.5,377.3,316.4,377.4,316.4,377.6L316.4,377.6z M315.6,377c0.1-0.2,0.2-0.3,0.4-0.5c0.3-0.2,0.6-0.4,1-0.4h0.8
+ c0.4,0,0.8,0.2,1.1,0.4c0.3,0.3,0.4,0.6,0.4,1.1v3.3c0,1-0.3,1.8-0.9,2.5c-0.6,0.7-1.4,1.2-2.3,1.4l-0.6,0.1V377L315.6,377z"/>
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#1C1C1C" d="M296.3,377.1c-0.2,0.2-0.5,0.2-0.7,0c-0.2-0.2-0.2-0.5,0-0.7
+ c0.4-0.4,0.9-0.8,1.5-1l0,0c0.5-0.2,1.1-0.3,1.7-0.3c0.6,0,1.2,0.1,1.7,0.3l0,0c0.6,0.2,1.1,0.6,1.5,1c0.2,0.2,0.2,0.5,0,0.7
+ c-0.2,0.2-0.5,0.2-0.7,0c-0.3-0.3-0.7-0.6-1.2-0.8c-0.4-0.2-0.9-0.3-1.4-0.3c-0.5,0-0.9,0.1-1.4,0.3l0,0
+ C297,376.5,296.6,376.7,296.3,377.1L296.3,377.1z M307.2,377.1c-0.2,0.2-0.5,0.2-0.7,0c-0.2-0.2-0.2-0.5,0-0.7
+ c0.4-0.4,0.9-0.8,1.5-1l0,0c0.5-0.2,1.1-0.3,1.7-0.3c0.6,0,1.2,0.1,1.7,0.3l0,0c0.6,0.2,1.1,0.6,1.5,1c0.2,0.2,0.2,0.5,0,0.7
+ c-0.2,0.2-0.5,0.2-0.7,0c-0.3-0.3-0.7-0.6-1.2-0.8c-0.4-0.2-0.9-0.3-1.4-0.3c-0.5,0-0.9,0.1-1.4,0.3l0,0
+ C307.9,376.5,307.5,376.7,307.2,377.1z"/>
+ <polygon fill-rule="evenodd" clip-rule="evenodd" fill="#DBDBDB" points="299.2,396.2 303.8,402 299.8,405.7 296.6,398.3 "/>
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#1C1C1C" d="M299.6,395.9l4.6,5.9c0.2,0.2,0.1,0.5-0.1,0.6l-3.9,3.6
+ c-0.2,0.2-0.5,0.2-0.7,0c0,0-0.1-0.1-0.1-0.1l-3.2-7.4c-0.1-0.2,0-0.4,0.1-0.5l2.5-2.1C299.1,395.6,299.4,395.7,299.6,395.9
+ L299.6,395.9L299.6,395.9z M303.1,402l-4-5.2l-1.9,1.6l2.8,6.5L303.1,402z"/>
+ <polygon fill-rule="evenodd" clip-rule="evenodd" fill="#DBDBDB" points="309.2,396.2 304.6,402 308.6,405.7 311.7,398.3 "/>
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#1C1C1C" d="M309.3,396.8l-4,5.2l3.1,2.9l2.8-6.5L309.3,396.8L309.3,396.8z
+ M304.2,401.7l4.6-5.9c0.2-0.2,0.5-0.2,0.7-0.1l2.5,2.1c0.2,0.1,0.2,0.4,0.1,0.5l-3.2,7.4c0,0-0.1,0.1-0.1,0.1
+ c-0.2,0.2-0.5,0.2-0.7,0l-3.9-3.6C304.1,402.2,304.1,401.9,304.2,401.7z"/>
+ <polygon fill-rule="evenodd" clip-rule="evenodd" fill="#3F5359" points="307.6,404.9 310.6,407.9 316.2,406.4 312.6,398.8
+ 309,396.3 "/>
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#1C1C1C" d="M308.1,404.8l2.6,2.6l4.7-1.3l-3.3-7l-2.9-2L308.1,404.8
+ L308.1,404.8z M310.3,408.2l-3.1-3.1c0.5-3.2,1-6.4,1.5-9.6l4.3,3l3.8,8.3l-6.3,1.7L310.3,408.2z"/>
+ <polygon fill-rule="evenodd" clip-rule="evenodd" fill="#3F5359" points="300.5,404.9 297.5,407.9 292,406.4 295.5,398.8
+ 299.2,396.3 "/>
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#1C1C1C" d="M300.8,405.3l-3.2,3.2l-6.3-1.7c1.3-2.8,2.6-5.5,3.8-8.3l4.3-3
+ l1.5,9.6L300.8,405.3L300.8,405.3z M297.4,407.4l2.6-2.6l-1.2-7.7l-2.9,2l-3.3,7L297.4,407.4z"/>
+ <polygon fill-rule="evenodd" clip-rule="evenodd" fill="#DB5940" points="306.6,403.9 304.6,402 303.8,402 301.8,403.9
+ 303.4,408.3 304.7,408.3 "/>
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#1C1C1C" d="M306,404l-1.6-1.5h-0.5l-1.6,1.5l1.4,3.8h0.7L306,404L306,404z
+ M304.9,401.7l2.2,2.1l-2.1,5h-2l-1.8-5l2.3-2.2h1.2L304.9,401.7z"/>
+ <polygon fill-rule="evenodd" clip-rule="evenodd" fill="#DB5940" points="304.7,408.3 303.4,408.3 301.6,411.6 304.1,421.7
+ 306.5,412 "/>
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#1C1C1C" d="M304.4,408.8h-0.8l-1.6,2.9l2,8.1l1.9-7.6L304.4,408.8
+ L304.4,408.8z M303.4,407.8h1.7l1.9,4.2l-2.9,11.6c-1-4-2-8-3-12l2-3.7H303.4z"/>
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#1C1C1C" d="M318.9,419.3c0.3,0,0.5,0.2,0.5,0.5c0,0.3-0.2,0.5-0.5,0.5h-5.8
+ c-0.3,0-0.5-0.2-0.5-0.5c0-0.3,0.2-0.5,0.5-0.5H318.9z"/>
+ <polygon fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" points="318.9,417.5 313.5,417.5 316,413.6 "/>
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#1C1C1C" d="M318.9,418h-5.4c-0.3,0-0.5-0.2-0.5-0.5c0-0.1,0-0.2,0.1-0.3
+ l2.5-3.9c0.1-0.2,0.4-0.3,0.6-0.1c0.1,0,0.1,0.1,0.1,0.1l2.9,3.9c0.2,0.2,0.1,0.5-0.1,0.7C319.1,418,319,418,318.9,418L318.9,418
+ L318.9,418z M314.4,417.1h3.6l-2-2.6L314.4,417.1z"/>
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#DBDBDB" d="M304.3,362.3L304.3,362.3c6.4,0,11.6,1.6,11.6,8v9.1h-2.1v-3.8
+ c0.1-6.4-3.3-9.3-9.5-6.2c-6.2-3.1-9.6-0.2-9.5,6.2v3.8h-2.2V370C292.7,363.6,297.9,362.3,304.3,362.3z"/>
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#1C1C1C" d="M304.3,361.8c3.3,0,6.3,0.4,8.4,1.6c2.3,1.3,3.7,3.4,3.7,6.8v9.5
+ h-3v-4.3l0,0c0-1.9-0.3-3.5-0.9-4.6c-0.4-0.7-0.9-1.3-1.5-1.7c-0.6-0.4-1.3-0.6-2.2-0.6c-1.2,0-2.7,0.4-4.3,1.2l-0.2,0.1l-0.2-0.1
+ c-1.7-0.8-3.1-1.2-4.3-1.2c-0.8,0-1.6,0.2-2.2,0.6c-0.6,0.4-1.1,1-1.5,1.7c-0.6,1.2-0.9,2.7-0.9,4.6l0,0v4.3h-3.1V370
+ c0-3.4,1.4-5.4,3.7-6.6C298,362.2,301,361.8,304.3,361.8L304.3,361.8z M304.3,362.8c-3.1,0-6,0.3-8,1.4c-2,1-3.2,2.8-3.2,5.8v8.9
+ h1.2v-3.4h0c0-2.1,0.3-3.8,0.9-5.1c0.4-0.9,1.1-1.6,1.8-2.1c0.8-0.5,1.6-0.7,2.7-0.8c1.3,0,2.8,0.4,4.5,1.2
+ c1.7-0.8,3.2-1.2,4.5-1.2c1,0,1.9,0.3,2.7,0.8c0.8,0.5,1.4,1.2,1.8,2.1c0.7,1.3,1,3,0.9,5.1h0v3.4h1.1v-8.6c0-3-1.2-4.9-3.2-6
+ C310.2,363.2,307.4,362.8,304.3,362.8z"/>
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#1C1C1C" d="M292.4,368.1c1.3-1.6,3-2.3,5.1-2.1c1.9,0.2,4.2,1.1,6.8,2.8
+ c0.2-0.1,0.4-0.3,0.6-0.4c2.3-1.7,4.4-2.6,6.3-2.6c1.9-0.1,3.5,0.7,4.8,2.4c0.1,0.1,0.1,0.2,0.2,0.3l-0.8,0.5
+ c-0.1-0.1-0.1-0.2-0.2-0.3c-1.1-1.4-2.4-2.1-4-2c-1.6,0-3.5,0.9-5.7,2.4c-0.3,0.2-0.5,0.4-0.8,0.6l-0.3,0.2l-0.3-0.2
+ c-2.6-1.7-4.8-2.7-6.7-2.8c-1.8-0.1-3.2,0.5-4.3,1.8L292.4,368.1z"/>
+</g>
+</svg>
A public/index.html
+32 −0
--- /dev/null
+++ b/public/index.html
@@ -0,0 +1,32 @@
+<!doctype html>
+<html lang="en">
+ <head>
+ <meta charset="utf-8">
+ <meta name="viewport" content="width=device-width, initial-scale=1">
+ <link rel="shortcut icon" href="%PUBLIC_URL%/favicon.ico">
+ <link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:200,400,700" rel="stylesheet">
+ <!--
+ Notice the use of %PUBLIC_URL% in the tag above.
+ It will be replaced with the URL of the `public` folder during the build.
+ Only files inside the `public` folder can be referenced from the HTML.
+
+ Unlike "/favicon.ico" or "favicon.ico", "%PUBLIC_URL%/favicon.ico" will
+ work correctly both with client-side routing and a non-root public URL.
+ Learn how to configure a non-root public URL by running `npm run build`.
+ -->
+ <title>Ekatra: Bringing Together</title>
+ </head>
+ <body>
+ <div id="root"></div>
+ <!--
+ This HTML file is a template.
+ If you open it directly in the browser, you will see an empty page.
+
+ You can add webfonts, meta tags, or analytics to this file.
+ The build step will place the bundled scripts into the <body> tag.
+
+ To begin the development, run `npm start`.
+ To create a production bundle, use `npm run build`.
+ -->
+ </body>
+</html>
A scripts/build.js
+224 −0
--- /dev/null
+++ b/scripts/build.js
@@ -0,0 +1,224 @@
+// Do this as the first thing so that any code reading it knows the right env.
+process.env.NODE_ENV = 'production';
+
+// Load environment variables from .env file. Suppress warnings using silent
+// if this file is missing. dotenv will never modify any environment variables
+// that have already been set.
+// https://github.com/motdotla/dotenv
+require('dotenv').config({silent: true});
+
+var chalk = require('chalk');
+var fs = require('fs-extra');
+var path = require('path');
+var pathExists = require('path-exists');
+var filesize = require('filesize');
+var gzipSize = require('gzip-size').sync;
+var webpack = require('webpack');
+var config = require('../config/webpack.config.prod');
+var paths = require('../config/paths');
+var checkRequiredFiles = require('react-dev-utils/checkRequiredFiles');
+var recursive = require('recursive-readdir');
+var stripAnsi = require('strip-ansi');
+
+var useYarn = pathExists.sync(paths.yarnLockFile);
+
+// Warn and crash if required files are missing
+if (!checkRequiredFiles([paths.appHtml, paths.appIndexJs])) {
+ process.exit(1);
+}
+
+// Input: /User/dan/app/build/static/js/main.82be8.js
+// Output: /static/js/main.js
+function removeFileNameHash(fileName) {
+ return fileName
+ .replace(paths.appBuild, '')
+ .replace(/\/?(.*)(\.\w+)(\.js|\.css)/, (match, p1, p2, p3) => p1 + p3);
+}
+
+// Input: 1024, 2048
+// Output: "(+1 KB)"
+function getDifferenceLabel(currentSize, previousSize) {
+ var FIFTY_KILOBYTES = 1024 * 50;
+ var difference = currentSize - previousSize;
+ var fileSize = !Number.isNaN(difference) ? filesize(difference) : 0;
+ if (difference >= FIFTY_KILOBYTES) {
+ return chalk.red('+' + fileSize);
+ } else if (difference < FIFTY_KILOBYTES && difference > 0) {
+ return chalk.yellow('+' + fileSize);
+ } else if (difference < 0) {
+ return chalk.green(fileSize);
+ } else {
+ return '';
+ }
+}
+
+// First, read the current file sizes in build directory.
+// This lets us display how much they changed later.
+recursive(paths.appBuild, (err, fileNames) => {
+ var previousSizeMap = (fileNames || [])
+ .filter(fileName => /\.(js|css)$/.test(fileName))
+ .reduce((memo, fileName) => {
+ var contents = fs.readFileSync(fileName);
+ var key = removeFileNameHash(fileName);
+ memo[key] = gzipSize(contents);
+ return memo;
+ }, {});
+
+ // Remove all content but keep the directory so that
+ // if you're in it, you don't end up in Trash
+ fs.emptyDirSync(paths.appBuild);
+
+ // Start the webpack build
+ build(previousSizeMap);
+
+ // Merge with the public folder
+ copyPublicFolder();
+});
+
+// Print a detailed summary of build files.
+function printFileSizes(stats, previousSizeMap) {
+ var assets = stats.toJson().assets
+ .filter(asset => /\.(js|css)$/.test(asset.name))
+ .map(asset => {
+ var fileContents = fs.readFileSync(paths.appBuild + '/' + asset.name);
+ var size = gzipSize(fileContents);
+ var previousSize = previousSizeMap[removeFileNameHash(asset.name)];
+ var difference = getDifferenceLabel(size, previousSize);
+ return {
+ folder: path.join('build_webpack', path.dirname(asset.name)),
+ name: path.basename(asset.name),
+ size: size,
+ sizeLabel: filesize(size) + (difference ? ' (' + difference + ')' : '')
+ };
+ });
+ assets.sort((a, b) => b.size - a.size);
+ var longestSizeLabelLength = Math.max.apply(null,
+ assets.map(a => stripAnsi(a.sizeLabel).length)
+ );
+ assets.forEach(asset => {
+ var sizeLabel = asset.sizeLabel;
+ var sizeLength = stripAnsi(sizeLabel).length;
+ if (sizeLength < longestSizeLabelLength) {
+ var rightPadding = ' '.repeat(longestSizeLabelLength - sizeLength);
+ sizeLabel += rightPadding;
+ }
+ console.log(
+ ' ' + sizeLabel +
+ ' ' + chalk.dim(asset.folder + path.sep) + chalk.cyan(asset.name)
+ );
+ });
+}
+
+// Print out errors
+function printErrors(summary, errors) {
+ console.log(chalk.red(summary));
+ console.log();
+ errors.forEach(err => {
+ console.log(err.message || err);
+ console.log();
+ });
+}
+
+// Create the production build and print the deployment instructions.
+function build(previousSizeMap) {
+ console.log('Creating an optimized production build...');
+ webpack(config).run((err, stats) => {
+ if (err) {
+ printErrors('Failed to compile.', [err]);
+ process.exit(1);
+ }
+
+ if (stats.compilation.errors.length) {
+ printErrors('Failed to compile.', stats.compilation.errors);
+ process.exit(1);
+ }
+
+ if (process.env.CI && stats.compilation.warnings.length) {
+ printErrors('Failed to compile.', stats.compilation.warnings);
+ process.exit(1);
+ }
+
+ console.log(chalk.green('Compiled successfully.'));
+ console.log();
+
+ console.log('File sizes after gzip:');
+ console.log();
+ printFileSizes(stats, previousSizeMap);
+ console.log();
+
+ var openCommand = process.platform === 'win32' ? 'start' : 'open';
+ var appPackage = require(paths.appPackageJson);
+ var homepagePath = appPackage.homepage;
+ var publicPath = config.output.publicPath;
+ if (homepagePath && homepagePath.indexOf('.github.io/') !== -1) {
+ // "homepage": "http://user.github.io/project"
+ console.log('The project was built assuming it is hosted at ' + chalk.green(publicPath) + '.');
+ console.log('You can control this with the ' + chalk.green('homepage') + ' field in your ' + chalk.cyan('package.json') + '.');
+ console.log();
+ console.log('The ' + chalk.cyan('build_webpack') + ' folder is ready to be deployed.');
+ console.log('To publish it at ' + chalk.green(homepagePath) + ', run:');
+ // If script deploy has been added to package.json, skip the instructions
+ if (typeof appPackage.scripts.deploy === 'undefined') {
+ console.log();
+ if (useYarn) {
+ console.log(' ' + chalk.cyan('yarn') + ' add --dev gh-pages');
+ } else {
+ console.log(' ' + chalk.cyan('npm') + ' install --save-dev gh-pages');
+ }
+ console.log();
+ console.log('Add the following script in your ' + chalk.cyan('package.json') + '.');
+ console.log();
+ console.log(' ' + chalk.dim('// ...'));
+ console.log(' ' + chalk.yellow('"scripts"') + ': {');
+ console.log(' ' + chalk.dim('// ...'));
+ console.log(' ' + chalk.yellow('"deploy"') + ': ' + chalk.yellow('"npm run build&&gh-pages -d build"'));
+ console.log(' }');
+ console.log();
+ console.log('Then run:');
+ }
+ console.log();
+ console.log(' ' + chalk.cyan(useYarn ? 'yarn' : 'npm') + ' run deploy');
+ console.log();
+ } else if (publicPath !== '/') {
+ // "homepage": "http://mywebsite.com/project"
+ console.log('The project was built assuming it is hosted at ' + chalk.green(publicPath) + '.');
+ console.log('You can control this with the ' + chalk.green('homepage') + ' field in your ' + chalk.cyan('package.json') + '.');
+ console.log();
+ console.log('The ' + chalk.cyan('build_webpack') + ' folder is ready to be deployed.');
+ console.log();
+ } else {
+ // no homepage or "homepage": "http://mywebsite.com"
+ console.log('The project was built assuming it is hosted at the server root.');
+ if (homepagePath) {
+ // "homepage": "http://mywebsite.com"
+ console.log('You can control this with the ' + chalk.green('homepage') + ' field in your ' + chalk.cyan('package.json') + '.');
+ console.log();
+ } else {
+ // no homepage
+ console.log('To override this, specify the ' + chalk.green('homepage') + ' in your ' + chalk.cyan('package.json') + '.');
+ console.log('For example, add this to build it for GitHub Pages:')
+ console.log();
+ console.log(' ' + chalk.green('"homepage"') + chalk.cyan(': ') + chalk.green('"http://myname.github.io/myapp"') + chalk.cyan(','));
+ console.log();
+ }
+ console.log('The ' + chalk.cyan('build_webpack') + ' folder is ready to be deployed.');
+ console.log('You may also serve it locally with a static server:')
+ console.log();
+ if (useYarn) {
+ console.log(' ' + chalk.cyan('yarn') + ' global add pushstate-server');
+ } else {
+ console.log(' ' + chalk.cyan('npm') + ' install -g pushstate-server');
+ }
+ console.log(' ' + chalk.cyan('pushstate-server') + ' build');
+ console.log(' ' + chalk.cyan(openCommand) + ' http://localhost:9000');
+ console.log();
+ }
+ });
+}
+
+function copyPublicFolder() {
+ fs.copySync(paths.appPublic, paths.appBuild, {
+ dereference: true,
+ filter: file => file !== paths.appHtml
+ });
+}
A scripts/start.js
+319 −0
--- /dev/null
+++ b/scripts/start.js
@@ -0,0 +1,319 @@
+process.env.NODE_ENV = 'development';
+
+// Load environment variables from .env file. Suppress warnings using silent
+// if this file is missing. dotenv will never modify any environment variables
+// that have already been set.
+// https://github.com/motdotla/dotenv
+require('dotenv').config({silent: true});
+
+var chalk = require('chalk');
+var webpack = require('webpack');
+var WebpackDevServer = require('webpack-dev-server');
+var historyApiFallback = require('connect-history-api-fallback');
+var httpProxyMiddleware = require('http-proxy-middleware');
+var detect = require('detect-port');
+var clearConsole = require('react-dev-utils/clearConsole');
+var checkRequiredFiles = require('react-dev-utils/checkRequiredFiles');
+var formatWebpackMessages = require('react-dev-utils/formatWebpackMessages');
+var getProcessForPort = require('react-dev-utils/getProcessForPort');
+var openBrowser = require('react-dev-utils/openBrowser');
+//var prompt = require('react-dev-utils/prompt');
+var pathExists = require('path-exists');
+var config = require('../config/webpack.config.dev');
+var paths = require('../config/paths');
+
+const errorOverlayMiddleware = require('react-dev-utils/errorOverlayMiddleware');
+
+var useYarn = pathExists.sync(paths.yarnLockFile);
+var cli = useYarn ? 'yarn' : 'npm';
+var isInteractive = process.stdout.isTTY;
+
+// Warn and crash if required files are missing
+if (!checkRequiredFiles([paths.appHtml, paths.appIndexJs])) {
+ process.exit(1);
+}
+
+// Tools like Cloud9 rely on this.
+var DEFAULT_PORT = process.env.PORT || 3000;
+var compiler;
+var handleCompile;
+
+// You can safely remove this after ejecting.
+// We only use this block for testing of Create React App itself:
+var isSmokeTest = process.argv.some(arg => arg.indexOf('--smoke-test') > -1);
+if (isSmokeTest) {
+ handleCompile = function (err, stats) {
+ if (err || stats.hasErrors() || stats.hasWarnings()) {
+ process.exit(1);
+ } else {
+ process.exit(0);
+ }
+ };
+}
+
+function setupCompiler(host, port, protocol) {
+ // "Compiler" is a low-level interface to Webpack.
+ // It lets us listen to some events and provide our own custom messages.
+ compiler = webpack(config, handleCompile);
+
+ // "invalid" event fires when you have changed a file, and Webpack is
+ // recompiling a bundle. WebpackDevServer takes care to pause serving the
+ // bundle, so if you refresh, it'll wait instead of serving the old one.
+ // "invalid" is short for "bundle invalidated", it doesn't imply any errors.
+ compiler.plugin('invalid', function() {
+ if (isInteractive) {
+ clearConsole();
+ }
+ console.log('Compiling...');
+ });
+
+ var isFirstCompile = true;
+
+ // "done" event fires when Webpack has finished recompiling the bundle.
+ // Whether or not you have warnings or errors, you will get this event.
+ compiler.plugin('done', function(stats) {
+ if (isInteractive) {
+ clearConsole();
+ }
+
+ // We have switched off the default Webpack output in WebpackDevServer
+ // options so we are going to "massage" the warnings and errors and present
+ // them in a readable focused way.
+ var messages = formatWebpackMessages(stats.toJson({}, true));
+ var isSuccessful = !messages.errors.length && !messages.warnings.length;
+ var showInstructions = isSuccessful && (isInteractive || isFirstCompile);
+
+ if (isSuccessful) {
+ console.log(chalk.green('Compiled successfully!'));
+ }
+
+ if (showInstructions) {
+ console.log();
+ console.log('The app is running at:');
+ console.log();
+ console.log(' ' + chalk.cyan(protocol + '://' + host + ':' + port + '/'));
+ console.log();
+ console.log('Note that the development build is not optimized.');
+ console.log('To create a production build, use ' + chalk.cyan(cli + ' run build') + '.');
+ console.log();
+ isFirstCompile = false;
+ }
+
+ // If errors exist, only show errors.
+ if (messages.errors.length) {
+ console.log(chalk.red('Failed to compile.'));
+ console.log();
+ messages.errors.forEach(message => {
+ console.log(message);
+ console.log();
+ });
+ return;
+ }
+
+ // Show warnings if no errors were found.
+ if (messages.warnings.length) {
+ console.log(chalk.yellow('Compiled with warnings.'));
+ console.log();
+ messages.warnings.forEach(message => {
+ console.log(message);
+ console.log();
+ });
+ // Teach some ESLint tricks.
+ console.log('You may use special comments to disable some warnings.');
+ console.log('Use ' + chalk.yellow('// eslint-disable-next-line') + ' to ignore the next line.');
+ console.log('Use ' + chalk.yellow('/* eslint-disable */') + ' to ignore all warnings in a file.');
+ }
+ });
+}
+
+// We need to provide a custom onError function for httpProxyMiddleware.
+// It allows us to log custom error messages on the console.
+function onProxyError(proxy) {
+ return function(err, req, res){
+ var host = req.headers && req.headers.host;
+ console.log(
+ chalk.red('Proxy error:') + ' Could not proxy request ' + chalk.cyan(req.url) +
+ ' from ' + chalk.cyan(host) + ' to ' + chalk.cyan(proxy) + '.'
+ );
+ console.log(
+ 'See https://nodejs.org/api/errors.html#errors_common_system_errors for more information (' +
+ chalk.cyan(err.code) + ').'
+ );
+ console.log();
+
+ // And immediately send the proper error response to the client.
+ // Otherwise, the request will eventually timeout with ERR_EMPTY_RESPONSE on the client side.
+ if (res.writeHead && !res.headersSent) {
+ res.writeHead(500);
+ }
+ res.end('Proxy error: Could not proxy request ' + req.url + ' from ' +
+ host + ' to ' + proxy + ' (' + err.code + ').'
+ );
+ }
+}
+
+function addMiddleware(devServer) {
+ // `proxy` lets you to specify a fallback server during development.
+ // Every unrecognized request will be forwarded to it.
+ var proxy = require(paths.appPackageJson).proxy;
+ devServer.use(historyApiFallback({
+ // Paths with dots should still use the history fallback.
+ // See https://github.com/facebookincubator/create-react-app/issues/387.
+ disableDotRule: true,
+ // For single page apps, we generally want to fallback to /index.html.
+ // However we also want to respect `proxy` for API calls.
+ // So if `proxy` is specified, we need to decide which fallback to use.
+ // We use a heuristic: if request `accept`s text/html, we pick /index.html.
+ // Modern browsers include text/html into `accept` header when navigating.
+ // However API calls like `fetch()` won’t generally accept text/html.
+ // If this heuristic doesn’t work well for you, don’t use `proxy`.
+ htmlAcceptHeaders: proxy ?
+ ['text/html'] :
+ ['text/html', '*/*']
+ }));
+ if (proxy) {
+ if (typeof proxy !== 'string') {
+ console.log(chalk.red('When specified, "proxy" in package.json must be a string.'));
+ console.log(chalk.red('Instead, the type of "proxy" was "' + typeof proxy + '".'));
+ console.log(chalk.red('Either remove "proxy" from package.json, or make it a string.'));
+ process.exit(1);
+ }
+
+ // Otherwise, if proxy is specified, we will let it handle any request.
+ // There are a few exceptions which we won't send to the proxy:
+ // - /index.html (served as HTML5 history API fallback)
+ // - /*.hot-update.json (WebpackDevServer uses this too for hot reloading)
+ // - /sockjs-node/* (WebpackDevServer uses this for hot reloading)
+ // Tip: use https://jex.im/regulex/ to visualize the regex
+ var mayProxy = /^(?!\/(index\.html$|.*\.hot-update\.json$|sockjs-node\/)).*$/;
+
+ // Pass the scope regex both to Express and to the middleware for proxying
+ // of both HTTP and WebSockets to work without false positives.
+ var hpm = httpProxyMiddleware(pathname => mayProxy.test(pathname), {
+ target: proxy,
+ logLevel: 'silent',
+ onProxyReq: function(proxyReq, req, res) {
+ // Browers may send Origin headers even with same-origin
+ // requests. To prevent CORS issues, we have to change
+ // the Origin to match the target URL.
+ if (proxyReq.getHeader('origin')) {
+ proxyReq.setHeader('origin', proxy);
+ }
+ },
+ onError: onProxyError(proxy),
+ secure: false,
+ changeOrigin: true,
+ ws: true
+ });
+ devServer.use(mayProxy, hpm);
+
+ // Listen for the websocket 'upgrade' event and upgrade the connection.
+ // If this is not done, httpProxyMiddleware will not try to upgrade until
+ // an initial plain HTTP request is made.
+ devServer.listeningApp.on('upgrade', hpm.upgrade);
+ }
+
+ // Finally, by now we have certainly resolved the URL.
+ // It may be /index.html, so let the dev server try serving it again.
+ devServer.use(devServer.middleware);
+}
+
+function runDevServer(host, port, protocol) {
+ var devServer = new WebpackDevServer(compiler, {
+ // Enable gzip compression of generated files.
+ compress: true,
+ // Silence WebpackDevServer's own logs since they're generally not useful.
+ // It will still show compile warnings and errors with this setting.
+ clientLogLevel: 'none',
+ // By default WebpackDevServer serves physical files from current directory
+ // in addition to all the virtual build products that it serves from memory.
+ // This is confusing because those files won’t automatically be available in
+ // production build folder unless we copy them. However, copying the whole
+ // project directory is dangerous because we may expose sensitive files.
+ // Instead, we establish a convention that only files in `public` directory
+ // get served. Our build script will copy `public` into the `build` folder.
+ // In `index.html`, you can get URL of `public` folder with %PUBLIC_PATH%:
+ // <link rel="shortcut icon" href="%PUBLIC_URL%/favicon.ico">
+ // In JavaScript code, you can access it with `process.env.PUBLIC_URL`.
+ // Note that we only recommend to use `public` folder as an escape hatch
+ // for files like `favicon.ico`, `manifest.json`, and libraries that are
+ // for some reason broken when imported through Webpack. If you just want to
+ // use an image, put it in `src` and `import` it from JavaScript instead.
+ contentBase: paths.appPublic,
+ // Enable hot reloading server. It will provide /sockjs-node/ endpoint
+ // for the WebpackDevServer client so it can learn when the files were
+ // updated. The WebpackDevServer client is included as an entry point
+ // in the Webpack development configuration. Note that only changes
+ // to CSS are currently hot reloaded. JS changes will refresh the browser.
+ hot: true,
+ // It is important to tell WebpackDevServer to use the same "root" path
+ // as we specified in the config. In development, we always serve from /.
+ publicPath: config.output.publicPath,
+ // WebpackDevServer is noisy by default so we emit custom message instead
+ // by listening to the compiler events with `compiler.plugin` calls above.
+ quiet: true,
+ // Reportedly, this avoids CPU overload on some systems.
+ // https://github.com/facebookincubator/create-react-app/issues/293
+ watchOptions: {
+ ignored: /node_modules/
+ },
+ // Enable HTTPS if the HTTPS environment variable is set to 'true'
+ https: protocol === "https",
+ host: host
+ });
+
+ // Our custom middleware proxies requests to /index.html or a remote API.
+ addMiddleware(devServer);
+ //addMiddleware(errorOverlayMiddleware);
+
+ // Launch WebpackDevServer.
+ devServer.listen(port, (err, result) => {
+ if (err) {
+ return console.log(err);
+ }
+
+ if (isInteractive) {
+ clearConsole();
+ }
+ console.log(chalk.cyan('Starting the development server...'));
+ console.log();
+
+ if (isInteractive) {
+ openBrowser(protocol + '://' + host + ':' + port + '/');
+ }
+ });
+}
+
+function run(port) {
+ var protocol = process.env.HTTPS === 'true' ? "https" : "http";
+ var host = process.env.HOST || 'localhost';
+ setupCompiler(host, port, protocol);
+ runDevServer(host, port, protocol);
+}
+
+// We attempt to use the default port but if it is busy, we offer the user to
+// run on a different port. `detect()` Promise resolves to the next free port.
+detect(DEFAULT_PORT).then(port => {
+ if (port === DEFAULT_PORT) {
+ run(port);
+ return;
+ }
+
+ if (isInteractive) {
+ clearConsole();
+ var existingProcess = getProcessForPort(DEFAULT_PORT);
+ var question =
+ chalk.yellow('Something is already running on port ' + DEFAULT_PORT + '.' +
+ ((existingProcess) ? ' Probably:\n ' + existingProcess : '')) +
+ '\n\nWould you like to run the app on another port instead?';
+
+ run(port);
+ /*prompt(question, true).then(shouldChangePort => {
+ if (shouldChangePort) {
+
+ }
+ });*/
+ } else {
+ console.log(chalk.red('Something is already running on port ' + DEFAULT_PORT + '.'));
+ }
+});
A scripts/test.js
+31 −0
--- /dev/null
+++ b/scripts/test.js
@@ -0,0 +1,31 @@
+process.env.NODE_ENV = 'test';
+process.env.PUBLIC_URL = '';
+
+// Load environment variables from .env file. Suppress warnings using silent
+// if this file is missing. dotenv will never modify any environment variables
+// that have already been set.
+// https://github.com/motdotla/dotenv
+require('dotenv').config({silent: true});
+
+const jest = require('jest');
+const argv = process.argv.slice(2);
+
+// Watch unless on CI or in coverage mode
+if (!process.env.CI && argv.indexOf('--coverage') < 0) {
+ argv.push('--watch');
+}
+
+// A temporary hack to clear terminal correctly.
+// You can remove this after updating to Jest 18 when it's out.
+// https://github.com/facebook/jest/pull/2230
+var realWrite = process.stdout.write;
+var CLEAR = process.platform === 'win32' ? '\x1Bc' : '\x1B[2J\x1B[3J\x1B[H';
+process.stdout.write = function(chunk, encoding, callback) {
+ if (chunk === '\x1B[2J\x1B[H') {
+ chunk = CLEAR;
+ }
+ return realWrite.call(this, chunk, encoding, callback);
+};
+
+
+jest.run(argv);
A src/App.css
+40 −0
--- /dev/null
+++ b/src/App.css
@@ -0,0 +1,40 @@
+html, body {
+ margin: 0px;
+ padding: 0px;
+ font-family: 'Source Sans Pro', sans-serif;
+}
+
+body {
+ margin-bottom: 30px;
+}
+
+h3 {
+ line-height: 30px;
+}
+
+footer {
+ position: fixed;
+ bottom: 8px;
+ text-align: center;
+ width: 100%;
+}
+
+a {
+ color: #000;
+}
+
+a:hover {
+ color: #000;
+}
+
+.home-link {
+ position: fixed;
+ right: 120px;
+ top: 40px;
+}
+
+.notification {
+ position: fixed;
+ bottom: 10px;
+ left: 10px;
+}
\ No newline at end of file
A src/App.js
+131 −0
--- /dev/null
+++ b/src/App.js
@@ -0,0 +1,131 @@
+import React, { Component } from 'react'
+import {
+BrowserRouter as Router,
+Route,
+Link
+} from 'react-router-dom'
+
+import getWeb3 from './utils/getWeb3'
+
+import './css/oswald.css'
+import './css/open-sans.css'
+import './css/pure-min.css'
+import './App.css'
+
+import Header from './components/header/Header'
+
+import Home from './components/pages/home/Home'
+import Register from './components/pages/register/Register'
+import ComplaintList from './components/pages/list/ComplaintList'
+import ComplaintDetails from './components/pages/details/ComplaintDetails'
+import GovtDept from './components/pages/dept/GovtDept'
+
+import TaskList from './components/pages/list/TaskList'
+
+
+class App extends Component {
+ constructor(props) {
+ super(props)
+
+ /*this.state = {
+ reqDataPromise: null,
+ 'web3': null,
+ 'utility': null,
+ 'notification': ''
+ }
+
+ this.utility = null;
+
+ this.updateNotify = this.updateNotify.bind(this);*/
+ }
+
+ /*updateNotify(val) {
+ this.setState({
+ 'notification': val
+ })
+ }
+
+ componentWillMount() {
+ // Get network provider and web3 instance.
+ // See utils/getWeb3 for more info.
+
+ console.log('mount')
+
+ this.state.reqDataPromise = new Promise((resolve, reject) => {
+ getWeb3.then(results => {
+
+ console.log('now')
+ this.state.web3 = results.web3
+ console.log(results.web3)
+ window.web3 = results.web3
+ // Instantiate contract once web3 provided.
+ this.instantiateContract().then(conIns => {
+ console.log('responsed')
+ console.log(conIns)
+ resolve({'web3':results.web3, 'contract':conIns})
+ })
+ .catch(() => {
+ console.log('err')
+ })
+ })
+ .catch(() => {
+ console.log('Error finding web3.')
+ })
+ })
+
+ this.state.utility = new Utility(this.state.reqDataPromise, this.updateNotify)
+ console.log(this.state)
+ }
+
+instantiateContract() {
+
+ * SMART CONTRACT EXAMPLE
+ *
+ * Normally these functions would be called in the context of a
+ * state management library, but for convenience I've placed them here.
+
+
+ const contract = require('truffle-contract')
+ const OCNContract = contract(OpenComplaintNetworkContract)
+ OCNContract.setProvider(this.state.web3.currentProvider)
+ OCNContract.setNetwork(5777)
+ console.log('ttt')
+ console.log(this.state.web3)
+ window.OCN = OCNContract
+
+ var self = this
+ return new Promise( (resolve, reject) => {
+ OCNContract.deployed().then((instance) => {
+ console.log("helllllo")
+ var cont = new self.state.web3.eth.Contract(instance.abi, instance.address);
+ resolve(cont)
+
+ })
+ })
+
+}*/
+
+render() {
+return (
+ <Router>
+ <div className="App">
+ <Header />
+ <Route exact path="/" component={Home} />
+ <Route path='/register/:id' component={Register}/>
+ <Route path='/list/:id' component={ComplaintList}/>
+ <Route path='/complaint-details/:id/:cid' component={ComplaintDetails}/>
+
+ <Route path='/task-list/:id' component={TaskList}/>
+ <Route path='/govt/:id' component={GovtDept}/>
+ {/*<Route extact path='/Manager' render={(props) => ( <Manager utilityObj={this.state.utility} /> )} />
+ <Route extact path='/Citizen/:id' render={(props) => ( <Citizen utilityObj={this.state.utility} /> )} />
+
+ <Route extact path='/Accounts' render={(props) => ( <Accounts contractObject={this.state.contractInstance} web3Obj={this.state.web3} /> )} />
+ <div className="notification alert alert-success" role="alert">{this.state.notification}</div>*/}
+ </div>
+ </Router>
+ );
+}
+}
+
+export default App
A src/App.test.js
+8 −0
--- /dev/null
+++ b/src/App.test.js
@@ -0,0 +1,8 @@
+import React from 'react'
+import ReactDOM from 'react-dom'
+import App from './App'
+
+it('renders without crashing', () => {
+ const div = document.createElement('div')
+ ReactDOM.render(<App />, div)
+})
--- /dev/null
+++ b/src/components/header/Header.js
@@ -0,0 +1,22 @@
+import React, { Component } from 'react';
+import {
+ Link
+} from 'react-router-dom'
+
+import './header.css'
+
+class Header extends Component {
+ render() {
+ return (
+ <div className="container">
+ <h1>Ekatra by <b>Merkle Labs</b></h1>
+ <p>For all civic complaints on the <b>Blockchain</b>.</p>
+ <br/>
+ <Link to={`/`} className="home-link">HOME</Link>
+ </div>
+ );
+ }
+}
+
+export default Header;
+
--- /dev/null
+++ b/src/components/pages/dept/GovtDept.js
@@ -0,0 +1,103 @@
+import React, { Component } from 'react';
+
+import GovtService from '../../../services/GovtService'
+
+import './govtDept.css'
+
+class GovtDept extends Component {
+
+ constructor(props) {
+ super(props)
+
+ this.state = {
+ name: '',
+ rewards: '',
+
+ currentName: ''
+ }
+
+ this.fetchDetails = this.fetchDetails.bind(this);
+ this.handleChange = this.handleChange.bind(this);
+ this.submitNameChange = this.submitNameChange.bind(this);
+ }
+
+ componentWillMount() {
+ this.govtService = new GovtService()
+ this.govtService.init(this.props.match.params.id).then(() => {
+ this.fetchDetails()
+ })
+ console.log(this.props.match.params.id)
+
+
+ }
+
+ handleChange(e) {
+ this.state[e.target.name] = e.target.value;
+
+ console.log(this.state)
+ }
+
+ fetchDetails() {
+ let self = this;
+ this.govtService.getDetails().then(res => {
+ if(res.name === '') {
+ res.name = 'No Name assigned'
+ }
+ self.setState({
+ name: res.name,
+ rewards: Number(res.reward)
+ })
+ })
+ }
+
+ submitNameChange(e) {
+ e.preventDefault()
+
+ this.govtService.registerName(this.state.name)
+ }
+
+ render() {
+ return(
+ <section className="container">
+ <ul className="nav nav-tabs" id="myTab" role="tablist">
+ <li className="nav-item">
+ <a className="nav-link active" id="home-tab" data-toggle="tab" href="#home" role="tab" aria-controls="home" aria-selected="true">Claim your Identity</a>
+ </li>
+ <li className="nav-item">
+ <a className="nav-link" id="profile-tab" data-toggle="tab" href="#profile" role="tab" aria-controls="profile" aria-selected="false">View Your reward points</a>
+ </li>
+ </ul>
+ <div className="tab-content" id="myTabContent">
+ <div className="tab-pane fade show active claim" id="home" role="tabpanel" aria-labelledby="home-tab">
+ <h3 className="current-name">Your current Name: {this.state.name}</h3>
+ <form onSubmit={this.submitNameChange}>
+ <div className="form-group row">
+ <label htmlFor="name" className="col-sm-2 col-form-label">Entity/Person Name</label>
+ <div className="col-sm-10">
+ <input type="text" className="form-control" id="name" name="name" placeholder="MCD" onChange={this.handleChange}/>
+ <small id="passwordHelpBlock" className="form-text text-muted">
+ This is the name of the organisation or any person.
+ </small>
+ </div>
+ </div>
+
+ <div className="form-group row">
+ <div className="col-sm-2"></div>
+ <div className="col-sm-10">
+ <button type="submit" className="btn btn-success btn-lg btn-block">Update</button>
+ </div>
+ </div>
+ </form>
+ </div>
+
+ <div className="tab-pane fade" id="profile" role="tabpanel" aria-labelledby="profile-tab">
+ <h4>Your current reward points are:</h4>
+ <h2>{this.state.rewards}</h2>
+ </div>
+ </div>
+ </section>
+ )
+ }
+}
+
+export default GovtDept;
--- /dev/null
+++ b/src/components/pages/dept/govtDept.css
@@ -0,0 +1 @@
+.claim{padding-top:30px}.current-name{margin-bottom:30px}
\ No newline at end of file
--- /dev/null
+++ b/src/components/pages/dept/govtDept.less
@@ -0,0 +1,7 @@
+.claim {
+ padding-top: 30px;
+}
+
+.current-name {
+ margin-bottom: 30px;
+}
--- /dev/null
+++ b/src/components/pages/details/ComplaintDetails.js
@@ -0,0 +1,191 @@
+import React, { Component } from 'react';
+
+import CitizenService from '../../../services/CitizenService'
+
+import './complaintDetails.css'
+
+class ComplaintDetails extends Component {
+
+ constructor(props) {
+ super(props)
+
+ this.state = {
+ complaintMetadata: {},
+ complaintTasks: [],
+ signerListSize: ''
+ }
+
+ this.renderTaskTable = this.renderTaskTable.bind(this);
+ this.onReviewChange = this.onReviewChange.bind(this);
+ this.addSigner = this.addSigner.bind(this);
+
+ console.log(this.props.match.params.id)
+ }
+
+ componentWillMount() {
+ let self = this;
+ this.citizenService = new CitizenService()
+ this.citizenService.init(this.props.match.params.id).then(() => {
+ this.citizenService.getComplaint(this.props.match.params.cid).then(res => {
+ self.setState({
+ complaintMetadata: {
+ hash: this.props.match.params.cid,
+ title: res.title,
+ description: res.description,
+ signerList: res.signerList,
+ taskListLength: res.taskListLength,
+ status: res.status
+ },
+ signerListSize: res.signerList.length
+ }, () => {console.log(self.state)})
+
+ let taskLength = res.taskListLength
+ let taskPromiseArray = []
+ for(let i = 0; i<taskLength; i++) {
+ taskPromiseArray.push(
+ this.citizenService.getTask(
+ this.props.match.params.cid,
+ i
+ )
+ )
+ }
+ console.log(taskPromiseArray)
+
+ Promise.all(taskPromiseArray).then(result => {
+ result.map(res => {
+ let actualStart = Date(res.timestamps[2]);
+ let actualEnd = Date(res.timestamps[3])
+ let expectedStart = ( res.timestamps[0] / 60 / 60 / 24 ) + ' days'
+ if(res.title === 'Assign POC') {
+ expectedStart = Date(res.timestamps[0])
+ }
+ self.setState({
+ complaintTasks: [...self.state.complaintTasks, {
+ title: res.title,
+ description: res.description,
+ govtEntityAddress: res.govtEntityAddress,
+ expectedStartTimestamp: expectedStart,
+ expectedDurationTimestamp: res.timestamps[1] + ' days',
+ actualStartTimestamp: actualStart,
+ actualEndTimestamp: actualEnd,
+ status: res.status
+ }]
+ }, () => {console.log(self.state)})
+ })
+ })
+
+ })
+ })
+ console.log(this.props.match.params.id)
+ }
+
+ addSigner(complaintHash) {
+ this.citizenService.addSigner(complaintHash)
+ }
+
+ renderTaskTable(item, index) {
+ let self = this;
+ console.log(item)
+
+ let statusInfo = this.citizenService.statusResolve(item.status)
+ console.log(statusInfo)
+
+ let actionComponent = ''
+ if(statusInfo.msg === 'UnderReview') {
+ actionComponent = <div className="form-group">
+ <select className="form-control form-control-sm" onChange={(e) => this.onReviewChange(e, index)}>
+ <option>1</option>
+ <option>2</option>
+ <option>3</option>
+ <option>4</option>
+ <option>5</option>
+ <option>6</option>
+ <option>7</option>
+ <option>8</option>
+ <option>9</option>
+ <option>10</option>
+ </select>
+ </div>
+ } else if(statusInfo.msg === 'Open') {
+ actionComponent = <button type="button" className="btn btn-primary btn-sm btn-block" onClick={() => this.addSigner(this.state.complaintMetadata.hash)}>Support</button>
+ }
+ return(
+ <tr key={index}>
+ <th scope="row">{index+1}</th>
+ <td>{item.title}</td>
+ <td>{item.expectedStartTimestamp}</td>
+ <td>{item.expectedDurationTimestamp}</td>
+ <td>{item.actualStartTimestamp}</td>
+ <td><span className={`badge badge-${statusInfo.theme}`}>{statusInfo.msg}</span></td>
+ <td>{actionComponent}</td>
+ </tr>
+ )
+ }
+
+ onReviewChange(e, index) {
+ console.log(e.target.value, index)
+ console.log(this.state.complaintMetadata.hash)
+
+ this.citizenService.reviewTask(
+ this.state.complaintMetadata.hash,
+ index,
+ e.target.value
+ )
+ }
+
+ render() {
+ return(
+ <section className="container">
+ <div className="card">
+ <div className="card-header">
+ Complaint Metadata
+ </div>
+ <div className="card-body">
+ <div className="card-item">
+ <h5 className="card-title">Complaint Hash</h5>
+ <p className="card-text">{this.state.complaintMetadata.hash}</p>
+ </div>
+ <div className="card-item">
+ <h5 className="card-title">Title</h5>
+ <p className="card-text">{this.state.complaintMetadata.title}</p>
+ </div>
+ <div className="card-item">
+ <h5 className="card-title">Description</h5>
+ <p className="card-text">{this.state.complaintMetadata.description}</p>
+ </div>
+ <div className="card-item">
+ <h5 className="card-title">Signers Count</h5>
+ <p className="card-text">{this.state.signerListSize}</p>
+ </div>
+ </div>
+ </div>
+ <div className="card">
+ <div className="card-header">
+ Tasks
+ </div>
+ <div className="card-body">
+ <table className="table table-hover">
+ <caption><span className={"badge badge-warning"}>UnderReview</span> tasks can be reviewed by the public where 1 being the lowest score and 10 being the highest. This task or the entire complaint will not be closed until it receives an acceptable review.</caption>
+ <thead>
+ <tr>
+ <th scope="col">#</th>
+ <th scope="col">Title</th>
+ <th scope="col">Expected Start Time</th>
+ <th scope="col">Expected Duration</th>
+ <th scope="col">Actual Start Time</th>
+ <th scope="col">Status</th>
+ <th scope="col">Action</th>
+ </tr>
+ </thead>
+ <tbody>
+ {this.state.complaintTasks.map(this.renderTaskTable)}
+ </tbody>
+ </table>
+ </div>
+ </div>
+ </section>
+ )
+ }
+}
+
+export default ComplaintDetails
--- /dev/null
+++ b/src/components/pages/details/complaintDetails.css
@@ -0,0 +1 @@
+.card-item{padding:20px 0;border-bottom:1px solid #eee}.card{margin-bottom:40px}
\ No newline at end of file
--- /dev/null
+++ b/src/components/pages/details/complaintDetails.less
@@ -0,0 +1,8 @@
+.card-item {
+ padding: 20px 0px;
+ border-bottom: 1px solid #eee;
+}
+
+.card {
+ margin-bottom: 40px;
+}
\ No newline at end of file
--- /dev/null
+++ b/src/components/pages/home/Home.js
@@ -0,0 +1,71 @@
+import React from "react";
+
+import {Link} from 'react-router-dom';
+
+import './home.css'
+
+export default class Home extends React.Component {
+
+ constructor() {
+ super()
+
+ }
+
+ imageClick(e,r) {
+ switch(e) {
+ case 1:
+
+ }
+ }
+
+
+ render() {
+ return (
+ <div className="container home-div">
+ <div className="row">
+ <div className="col-md-6 profile">
+ <a href="/register/0">
+ <img src="/img/s2.svg" onClick={this.imageClick.bind(this, 1)} />
+ <h4>Citizen 1</h4>
+ </a>
+ </div>
+ <div className="col-md-6 profile">
+ <a href="/register/1">
+ <img src="/img/cop1.svg" onClick={this.imageClick.bind(this, 2)}/>
+ <h4>Citizen 2</h4>
+ </a>
+ </div>
+ </div>
+ <br/>
+ <br/>
+ <div className="row">
+ <div className="col-md-3 profile">
+ <a href="/list/2">
+ <img src="/img/ia1.svg" onClick={this.imageClick.bind(this, 4)}/>
+ <h4>Citizen 3</h4>
+ </a>
+ </div>
+ <div className="col-md-3 profile">
+ <a href="/register/3">
+ <img src="/img/ia2.svg" onClick={this.imageClick.bind(this, 5)}/>
+ <h4>Citizen 4</h4>
+ </a>
+ </div>
+ <div className="col-md-3 profile">
+ <a href="task-list/5">
+ <img src="/img/c2.svg" onClick={this.imageClick.bind(this, 6)}/>
+ <h4>MCD</h4>
+ </a>
+ </div>
+ <div className="col-md-3 profile">
+ <a href="/govt/6">
+ <img src="/img/c1.svg" onClick={this.imageClick.bind(this, 7)}/>
+ <h4>DDA</h4>
+ </a>
+ </div>
+
+ </div>
+ </div>
+ );
+ }
+}
\ No newline at end of file
--- /dev/null
+++ b/src/components/pages/home/home.css
@@ -0,0 +1 @@
+img{width:150px;height:150px;background-color:#fff;border-radius:50%;border:.5px solid #000;cursor:pointer;filter:url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale");filter:gray;-webkit-filter:grayscale(0)}img:hover{filter:gray;-webkit-filter:grayscale(50%)}.profile{text-align:center}h4{font-size:1em;margin-top:15px}a{color:#000}a:hover{color:#000}.home-div{margin-top:40px}
\ No newline at end of file
--- /dev/null
+++ b/src/components/pages/home/home.less
@@ -0,0 +1,38 @@
+img {
+ width: 150px;
+ height: 150px;
+ background-color: white;
+ border-radius: 50%;
+ border: 0.5px solid #000;
+ cursor: pointer;
+
+ filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale"); /* Firefox 3.5+ */
+ filter: gray; /* IE6-9 */
+ -webkit-filter: grayscale(0%);
+}
+
+img:hover {
+ filter: gray;
+ -webkit-filter: grayscale(50%);
+}
+
+.profile {
+ text-align: center;
+}
+
+h4 {
+ font-size: 1em;
+ margin-top: 15px;
+}
+
+a {
+ color: #000;
+}
+
+a:hover {
+ color: #000;
+}
+
+.home-div {
+ margin-top: 40px;
+}
\ No newline at end of file
--- /dev/null
+++ b/src/components/pages/list/ComplaintList.js
@@ -0,0 +1,103 @@
+import React, { Component } from 'react';
+import {withRouter} from "react-router-dom";
+
+import CitizenService from '../../../services/CitizenService'
+
+class ComplaintList extends Component {
+
+ constructor() {
+ super();
+
+ this.state = {
+ newComplaintList: []
+ }
+
+ this.myLocation = {}
+
+ this.newComplaintListener = this.newComplaintListener.bind(this);
+ this.handleRowClick = this.handleRowClick.bind(this);
+ this.renderComplaintTable = this.renderComplaintTable.bind(this);
+
+ }
+
+ componentWillMount() {
+ this.citizenService = new CitizenService()
+ this.citizenService.init(this.props.match.params.id).then(() => {
+ this.citizenService.newComplaintEvent(this.newComplaintListener)
+ })
+ console.log(this.props.match.params.id)
+
+ this.myLocation = this.citizenService.getLocation()
+ }
+
+ newComplaintListener(err, event) {
+ console.log(event)
+
+ let self = this
+ this.myLocation.then(pos => {
+ if(self.citizenService.compareLocation({
+ latitude: Number(event.returnValues.lat),
+ longitude: Number(event.returnValues.long)
+ }, pos)) {
+ self.citizenService.getComplaint(event.returnValues.hash).then(res => {
+ console.log(res)
+ self.setState({
+ newComplaintList: [...self.state.newComplaintList, {
+ hash: event.returnValues.hash,
+ title: res.title,
+ description: res.description,
+ signerList: res.signerList,
+ taskListLength: res.taskListLength,
+ status: res.status
+ }]
+ }, () => {console.log(self.state)})
+ })
+ }
+ })
+
+ }
+
+ handleRowClick(hash) {
+ console.log(hash)
+ this.props.history.push(`/complaint-details/${this.props.match.params.id}/${hash}`);
+ }
+
+ renderComplaintTable(item, index) {
+ let self = this;
+ console.log(item)
+ return(
+ <tr key={index} onClick={() => this.handleRowClick(item.hash)}>
+ <th scope="row">{index+1}</th>
+ <td>{item.title}</td>
+ <td>{item.taskListLength}</td>
+ <td>{item.signerList.length}</td>
+ <td>{item.status}</td>
+ <td></td>
+ </tr>
+ )
+ }
+
+ render() {
+ return(
+ <section className="container">
+ <table className="table table-hover">
+ <thead>
+ <tr>
+ <th scope="col">#</th>
+ <th scope="col">Title</th>
+ <th scope="col"># of tasks</th>
+ <th scope="col"># of signers</th>
+ <th scope="col">Status</th>
+ <th>Sign</th>
+ </tr>
+ </thead>
+ <tbody>
+ {this.state.newComplaintList.map(this.renderComplaintTable)}
+ </tbody>
+ </table>
+ </section>
+ )
+ }
+}
+
+export default ComplaintList;
--- /dev/null
+++ b/src/components/pages/list/TaskList.js
@@ -0,0 +1,320 @@
+import React, { Component } from 'react';
+
+import CitizenService from '../../../services/CitizenService'
+
+import './taskList.css'
+
+class TaskList extends Component {
+
+ constructor(props) {
+ super(props)
+
+ this.state = {
+ taskList: [],
+
+ govtEntityAddress: '',
+ title: '',
+ description: '',
+
+ expectedStartTimestamp: '',
+ expectedDurationTimestamp: '',
+
+ complaintHash: '',
+ taskId: '',
+
+ reviews: {}
+ }
+
+ this.newTaskListener = this.newTaskListener.bind(this);
+ this.renderTaskTable = this.renderTaskTable.bind(this);
+ this.submitNewtask = this.submitNewtask.bind(this);
+ this.handleChange = this.handleChange.bind(this);
+ this.startTask = this.startTask.bind(this);
+ this.startTaskSetMetadata = this.startTaskSetMetadata.bind(this);
+ this.updateTask = this.updateTask.bind(this);
+ this.lastTask = this.lastTask.bind(this);
+ this.getReview = this.getReview.bind(this);
+ }
+
+ componentWillMount() {
+ this.citizenService = new CitizenService()
+ this.citizenService.init(this.props.match.params.id).then(() => {
+ this.citizenService.newTaskEvent(this.newTaskListener)
+ })
+ console.log(this.props.match.params.id)
+
+ this.myLocation = this.citizenService.getLocation()
+
+
+ }
+
+ newTaskListener(err, event) {
+ console.log(event)
+ let self = this
+ this.citizenService.getTask(
+ event.returnValues.complaintHash,
+ Number(event.returnValues.taskId)
+ ).then(res => {
+ let actualStart = Date(res.timestamps[2]);
+ let actualEnd = Date(res.timestamps[3])
+ let expectedStart = ( res.timestamps[0] / 60 / 60 / 24 ) + ' days'
+ if(res.title === 'Assign POC') {
+ expectedStart = Date(res.timestamps[0])
+ }
+ self.setState({
+ taskList: [...self.state.taskList, {
+ complaintHash: event.returnValues.complaintHash,
+ taskId: Number(event.returnValues.taskId),
+ title: res.title,
+ description: res.description,
+ govtEntityAddress: res.govtEntityAddress,
+ expectedStartTimestamp: expectedStart,
+ expectedDurationTimestamp: res.timestamps[1] + ' days',
+ actualStartTimestamp: actualStart,
+ actualEndTimestamp: actualEnd,
+ status: res.status,
+
+ }]
+ }, () => {console.log(self.state)})
+ })
+ }
+
+ startTaskSetMetadata(complaintHash, taskId) {
+ this.state.complaintHash = complaintHash
+ this.state.taskId = taskId
+ }
+
+ startTask(complaintHash, taskId) {
+ this.citizenService.startTask(complaintHash, taskId)
+ }
+
+ updateTask(e) {
+ e.preventDefault()
+
+ this.citizenService.updateTaskDetails(
+ this.state.complaintHash,
+ this.state.taskId,
+ {
+ expectedStartTimestamp: this.state.expectedStartTimestamp,
+ expectedDurationTimestamp: this.state.expectedDurationTimestamp
+ }
+ )
+ }
+
+ getReview(complaintHash, taskId, msg) {
+ if(msg === 'UnderReview') {
+ console.log(complaintHash, taskId)
+ let self = this;
+ this.citizenService.getReview(complaintHash, taskId).then((res) => {
+ console.log(res)
+ let newState = Object.assign({}, this.state);
+
+ let score = 0
+ if(Number(res.total) !== 0 && Number(res.sum) !== 0) {
+ score = Number(res.sum) / Number(res.total)
+ console.log(res.sum, res.total)
+ }
+ newState.reviews[complaintHash + taskId] = score + ' points';
+ console.log('fdsfdfd' + score)
+ console.log(newState)
+ self.setState(newState, console.log)
+ })
+ }
+ }
+
+ endTask(complaintHash, taskId) {
+ this.citizenService.endTask(
+ complaintHash,
+ taskId
+ )
+ }
+
+ renderTaskTable(item, index) {
+ let self = this;
+
+ let statusInfo = this.citizenService.statusResolve(item.status)
+ console.log(statusInfo)
+
+ let action = <button type="button" className="btn btn-primary btn-sm btn-block" data-toggle="modal" data-target="#exampleModalCenter" onClick={() => this.startTaskSetMetadata(item.complaintHash, item.taskId)}>Follow up</button>
+ if(statusInfo.msg === 'Open') {
+ action = <button type="button" className="btn btn-primary btn-sm btn-block" data-toggle="modal" data-target="#expectedDuration" onClick={() => this.startTaskSetMetadata(item.complaintHash, item.taskId)}>Update</button>
+ } else if(statusInfo.msg === 'Viewed') {
+ action = <button type="button" className="btn btn-primary btn-sm btn-block" onClick={() => this.startTask(item.complaintHash, item.taskId)}>Start</button>
+ } else if(statusInfo.msg === 'UnderReview') {
+ action = <button type="button" className="btn btn-primary btn-sm btn-block" onClick={() => this.endTask(item.complaintHash, item.taskId)}>Close</button>
+ } else if(statusInfo.msg === 'Closed') {
+ action = ''
+ }
+
+ let actionBox = <span className={`badge badge-${statusInfo.theme}`} onClick={() => this.getReview(item.complaintHash, item.taskId, statusInfo.msg)}>{statusInfo.msg}</span>
+
+ return(
+ <tr key={index}>
+ <th scope="row">{index+1}</th>
+ <td><a href={`/complaint-details/${self.props.match.params.id}/${item.complaintHash}`} target="_blank">{item.complaintHash.substring(0,14)}...</a></td>
+ <td data-toggle="tooltip" data-placement="top" title={item.description}>{item.title}</td>
+ <td>{item.expectedStartTimestamp}</td>
+ <td>{item.expectedDurationTimestamp}</td>
+ <td>{item.actualStartTimestamp}</td>
+ <td>{item.actualEndTimestamp}</td>
+ <td>{actionBox}<span className="badge badge-light">{this.state.reviews[item.complaintHash + item.taskId]}</span></td>
+ <td>{action}</td>
+ </tr>
+ )
+ }
+
+ handleChange(e) {
+ this.state[e.target.name] = e.target.value;
+
+ console.log(this.state)
+ }
+
+ submitNewtask(e) {
+ e.preventDefault();
+
+ this.setState({
+ complaintHash: 'Complaint on its way'
+ })
+
+ this.citizenService.addTask({
+ complaintHash: this.state.complaintHash,
+ title: this.state.title,
+ description: this.state.description,
+ govtEntityAddress: this.state.govtEntityAddress
+ })
+
+
+ }
+
+ lastTask() {
+ this.citizenService.lastTask(
+ this.state.complaintHash,
+ this.state.taskId,
+ )
+ }
+
+ render() {
+ return(
+ <section className="container">
+ <div className="card">
+ <div className="card-header">
+ Tasks
+ </div>
+ <div className="card-body">
+ <table className="table table-hover">
+ <thead>
+ <tr>
+ <th scope="col">#</th>
+ <th scope="col">Complaint Hash</th>
+ <th scope="col">Title</th>
+ <th scope="col">Expected Start Time</th>
+ <th scope="col">Expected Duration</th>
+ <th scope="col">Actual Start Time</th>
+ <th scope="col">Actual End Time</th>
+ <th scope="col">Status</th>
+ <th scope="col">Action</th>
+ </tr>
+ </thead>
+ <tbody>
+ {this.state.taskList.map(this.renderTaskTable)}
+ </tbody>
+ </table>
+ </div>
+ </div>
+
+ <div className="modal fade bd-example-modal-lg" id="exampleModalCenter" tabIndex="-1" role="dialog" aria-labelledby="exampleModalCenterTitle" aria-hidden="true">
+ <div className="modal-dialog modal-dialog-centered modal-lg" role="document">
+ <div className="modal-content">
+ <div className="modal-header">
+ <h5 className="modal-title" id="exampleModalLongTitle">Complaint Follow Up</h5>
+ <button type="button" className="close" data-dismiss="modal" aria-label="Close">
+ <span aria-hidden="true">&times;</span>
+ </button>
+ </div>
+ <div className="modal-body">
+ <div className="form-group row">
+ <div className="col-sm-12">
+ <button type="button" className="btn btn-danger btn-lg btn-block" onClick={this.lastTask}>End of Complaint</button>
+ </div>
+ </div>
+ <h3 className="or-big">or</h3>
+ <h3>Add a follow up</h3>
+ <form onSubmit={this.submitNewtask}>
+ <div className="form-group row">
+ <label htmlFor="govtEntityAddress" className="col-sm-2 col-form-label">Allocated to</label>
+ <div className="col-sm-10">
+ <input type="text" className="form-control" id="govtEntityAddress" name="govtEntityAddress" placeholder="0x04b2b54197e68642C6C7216dc7F693e144857A0D" onChange={this.handleChange}/>
+ </div>
+ </div>
+ <div className="form-group row">
+ <label htmlFor="title" className="col-sm-2 col-form-label">Title</label>
+ <div className="col-sm-10">
+ <input type="text" className="form-control" id="title" name="title" placeholder="brief about this task" onChange={this.handleChange}/>
+ </div>
+ </div>
+ <div className="form-group row">
+ <label htmlFor="description" className="col-sm-2 col-form-label">Description</label>
+ <div className="col-sm-10">
+ <textarea className="form-control" id="description" name="description" placeholder="add description to the follow up" onChange={this.handleChange}></textarea>
+ <small id="passwordHelpBlock" className="form-text text-muted">
+ Your password must be 8-20 characters long, contain letters and numbers, and must not contain spaces, special characters, or emoji.
+ </small>
+ </div>
+ </div>
+
+ <div className="form-group row">
+ <div className="col-sm-12">
+ <button type="submit" className="btn btn-success btn-lg btn-block">Open Task</button>
+ </div>
+ </div>
+ </form>
+ </div>
+ </div>
+ </div>
+ </div>
+
+
+ <div className="modal fade" id="expectedDuration" tabIndex="-1" role="dialog" aria-labelledby="exampleModalCenterTitle" aria-hidden="true">
+ <div className="modal-dialog modal-dialog-centered" role="document">
+ <div className="modal-content">
+ <div className="modal-header">
+ <h5 className="modal-title" id="exampleModalLongTitle">Add expected time to complete</h5>
+ <button type="button" className="close" data-dismiss="modal" aria-label="Close">
+ <span aria-hidden="true">&times;</span>
+ </button>
+ </div>
+ <div className="modal-body">
+ <form onSubmit={this.updateTask}>
+ <div className="form-group row">
+ <label htmlFor="expectedStartTimestamp" className="col-sm-3 col-form-label">Expected Start Time</label>
+ <div className="col-sm-9">
+ <input type="text" className="form-control" id="expectedStartTimestamp" name="expectedStartTimestamp" placeholder="25 July 2018" onChange={this.handleChange}/>
+ <small id="passwordHelpBlock" className="form-text text-muted">
+ This is an expected start date of this task.
+ </small>
+ </div>
+ </div>
+ <div className="form-group row">
+ <label htmlFor="expectedDurationTimestamp" className="col-sm-3 col-form-label">Duration</label>
+ <div className="col-sm-9">
+ <input type="text" className="form-control" id="expectedDurationTimestamp" name="expectedDurationTimestamp" placeholder="3" onChange={this.handleChange}/>
+ </div>
+ </div>
+
+ <div className="form-group row">
+ <div className="col-sm-12">
+ <button type="submit" className="btn btn-success btn-lg btn-block">Update</button>
+ </div>
+ </div>
+ </form>
+ </div>
+ </div>
+ </div>
+ </div>
+
+ </section>
+ )
+ }
+}
+
+export default TaskList;
--- /dev/null
+++ b/src/components/pages/list/taskList.css
@@ -0,0 +1 @@
+.modal-body .end-of-complaint{padding:10px}.modal-body h3{text-align:center;margin-bottom:30px}.modal-body .or-big{font-weight:200;margin:50px}
\ No newline at end of file
--- /dev/null
+++ b/src/components/pages/list/taskList.less
@@ -0,0 +1,16 @@
+.modal-body {
+ .end-of-complaint {
+ padding: 10px;
+ }
+
+ h3 {
+ text-align: center;
+ margin-bottom: 30px;
+ }
+
+ .or-big {
+ font-weight: 200;
+ margin: 50px;
+ }
+}
+
--- /dev/null
+++ b/src/components/pages/register/Register.js
@@ -0,0 +1,126 @@
+import React, { Component } from 'react';
+
+import CitizenService from '../../../services/CitizenService'
+
+class Register extends Component {
+
+ constructor(props) {
+ super(props);
+
+ this.state = {
+ email: '',
+ title: '',
+ description: '',
+
+ complaintHash: ''
+ }
+
+ this.submitComplaint = this.submitComplaint.bind(this);
+ this.lookForComplaintHash = this.lookForComplaintHash.bind(this);
+ this.handleChange = this.handleChange.bind(this);
+
+ console.log(props)
+ }
+
+ componentWillMount() {
+ this.citizenService = new CitizenService()
+ this.citizenService.init(this.props.match.params.id).then(() => {
+ this.citizenService.complaintHashEvent(this.lookForComplaintHash)
+ })
+
+
+
+ console.log(this.props.match.params.id)
+ }
+
+ lookForComplaintHash(err, event) {
+ console.log(event)
+ this.setState({
+ complaintHash: event.returnValues.hash
+ })
+ }
+
+ submitComplaint(e) {
+ e.preventDefault();
+
+ this.setState({
+ complaintHash: 'Complaint on its way'
+ })
+
+ this.citizenService.getLocation().then(pos => {
+ console.log(pos)
+ this.citizenService.registerComplaint({
+ title: this.state.title,
+ description: this.state.description,
+ lat: pos.latitude * this.citizenService.LOCATION_PRECISION,
+ long: pos.longitude * this.citizenService.LOCATION_PRECISION,
+ deptAddress: '0x04b2b54197e68642C6C7216dc7F693e144857A0D'
+ })
+ }).catch(err => {
+ console.log(err)
+ })
+
+
+ }
+
+ handleChange(e) {
+ this.state[e.target.name] = e.target.value;
+
+ console.log(this.state)
+ }
+
+ render() {
+ return(
+ <section className="container">
+ <h3>Register a complaint</h3>
+ <form onSubmit={this.submitComplaint}>
+ <div className="form-group row">
+ <label htmlFor="email" className="col-sm-2 col-form-label">Email</label>
+ <div className="col-sm-10">
+ <input type="email" className="form-control" id="email" name="email" placeholder="email@example.com" onChange={this.handleChange}/>
+ </div>
+ </div>
+ <div className="form-group row">
+ <label htmlFor="title" className="col-sm-2 col-form-label">Title</label>
+ <div className="col-sm-10">
+ <input type="text" className="form-control" id="title" name="title" placeholder="tell us briefly about your problem" onChange={this.handleChange}/>
+ <small id="passwordHelpBlock" className="form-text text-muted">
+ Your password must be 8-20 characters long, contain letters and numbers, and must not contain spaces, special characters, or emoji.
+ </small>
+ </div>
+ </div>
+ <div className="form-group row">
+ <label htmlFor="description" className="col-sm-2 col-form-label">Description</label>
+ <div className="col-sm-10">
+ <textarea className="form-control" id="description" name="description" placeholder="now you can tell us in detail about your problem. we are listening." onChange={this.handleChange}></textarea>
+ <small id="passwordHelpBlock" className="form-text text-muted">
+ Your password must be 8-20 characters long, contain letters and numbers, and must not contain spaces, special characters, or emoji.
+ </small>
+ </div>
+ </div>
+ <div className="form-group row">
+ <label htmlFor="description" className="col-sm-2 col-form-label">Location</label>
+ <div className="col-sm-10">
+ <input className="form-control" id="disabledInput" type="text" placeholder="Your GPS coordinate" disabled/>
+ <small id="passwordHelpBlock" className="form-text text-muted">
+ We take your current location as a tag to this complaint.
+ </small>
+ </div>
+ </div>
+
+ <div className="form-group row">
+ <div className="col-sm-2"></div>
+ <div className="col-sm-10">
+ <button type="submit" className="btn btn-primary btn-block">Resolve it ASAP</button>
+ </div>
+ </div>
+ </form>
+
+ <h4>Complaint Hash: {this.state.complaintHash}</h4>
+
+ </section>
+ );
+ }
+}
+
+export default Register;
--- /dev/null
+++ b/src/css/open-sans.css
@@ -0,0 +1,13 @@
+@font-face {
+ font-family: 'Open Sans';
+ font-weight: 400;
+ font-style: normal;
+ src: url('../fonts/Open-Sans-regular/Open-Sans-regular.eot');
+ src: url('../fonts/Open-Sans-regular/Open-Sans-regular.eot?#iefix') format('embedded-opentype'),
+ local('Open Sans'),
+ local('Open-Sans-regular'),
+ url('../fonts/Open-Sans-regular/Open-Sans-regular.woff2') format('woff2'),
+ url('../fonts/Open-Sans-regular/Open-Sans-regular.woff') format('woff'),
+ url('../fonts/Open-Sans-regular/Open-Sans-regular.ttf') format('truetype'),
+ url('../fonts/Open-Sans-regular/Open-Sans-regular.svg#OpenSans') format('svg');
+}
A src/css/oswald.css
+27 −0
--- /dev/null
+++ b/src/css/oswald.css
@@ -0,0 +1,27 @@
+@font-face {
+ font-family: 'Oswald';
+ font-weight: 300;
+ font-style: normal;
+ src: url('../fonts/Oswald-300/Oswald-300.eot');
+ src: url('../fonts/Oswald-300/Oswald-300.eot?#iefix') format('embedded-opentype'),
+ local('Oswald Light'),
+ local('Oswald-300'),
+ url('../fonts/Oswald-300/Oswald-300.woff2') format('woff2'),
+ url('../fonts/Oswald-300/Oswald-300.woff') format('woff'),
+ url('../fonts/Oswald-300/Oswald-300.ttf') format('truetype'),
+ url('../fonts/Oswald-300/Oswald-300.svg#Oswald') format('svg');
+}
+
+@font-face {
+ font-family: 'Oswald';
+ font-weight: 400;
+ font-style: normal;
+ src: url('../fonts/Oswald-regular/Oswald-regular.eot');
+ src: url('../fonts/Oswald-regular/Oswald-regular.eot?#iefix') format('embedded-opentype'),
+ local('Oswald Regular'),
+ local('Oswald-regular'),
+ url('../fonts/Oswald-regular/Oswald-regular.woff2') format('woff2'),
+ url('../fonts/Oswald-regular/Oswald-regular.woff') format('woff'),
+ url('../fonts/Oswald-regular/Oswald-regular.ttf') format('truetype'),
+ url('../fonts/Oswald-regular/Oswald-regular.svg#Oswald') format('svg');
+}
--- /dev/null
+++ b/src/css/pure-min.css
@@ -0,0 +1,11 @@
+/*!
+Pure v0.6.2
+Copyright 2013 Yahoo!
+Licensed under the BSD License.
+https://github.com/yahoo/pure/blob/master/LICENSE.md
+*/
+/*!
+normalize.css v^3.0 | MIT License | git.io/normalize
+Copyright (c) Nicolas Gallagher and Jonathan Neal
+*/
+/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */.pure-button:focus,a:active,a:hover{outline:0}.pure-table,table{border-collapse:collapse;border-spacing:0}html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}abbr[title]{border-bottom:1px dotted}b,optgroup,strong{font-weight:700}dfn{font-style:italic}h1{font-size:2em;margin:.67em 0}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{box-sizing:content-box;height:0}pre,textarea{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}.pure-button,input{line-height:normal}button{overflow:visible}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]{-webkit-appearance:textfield;box-sizing:content-box}.pure-button,.pure-form input:not([type]),.pure-menu{box-sizing:border-box}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend,td,th{padding:0}legend{border:0}.hidden,[hidden]{display:none!important}.pure-img{max-width:100%;height:auto;display:block}.pure-g{letter-spacing:-.31em;text-rendering:optimizespeed;font-family:FreeSans,Arimo,"Droid Sans",Helvetica,Arial,sans-serif;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-flow:row wrap;-ms-flex-flow:row wrap;flex-flow:row wrap;-webkit-align-content:flex-start;-ms-flex-line-pack:start;align-content:flex-start}@media all and (-ms-high-contrast:none),(-ms-high-contrast:active){table .pure-g{display:block}}.opera-only :-o-prefocus,.pure-g{word-spacing:-.43em}.pure-u,.pure-u-1,.pure-u-1-1,.pure-u-1-12,.pure-u-1-2,.pure-u-1-24,.pure-u-1-3,.pure-u-1-4,.pure-u-1-5,.pure-u-1-6,.pure-u-1-8,.pure-u-10-24,.pure-u-11-12,.pure-u-11-24,.pure-u-12-24,.pure-u-13-24,.pure-u-14-24,.pure-u-15-24,.pure-u-16-24,.pure-u-17-24,.pure-u-18-24,.pure-u-19-24,.pure-u-2-24,.pure-u-2-3,.pure-u-2-5,.pure-u-20-24,.pure-u-21-24,.pure-u-22-24,.pure-u-23-24,.pure-u-24-24,.pure-u-3-24,.pure-u-3-4,.pure-u-3-5,.pure-u-3-8,.pure-u-4-24,.pure-u-4-5,.pure-u-5-12,.pure-u-5-24,.pure-u-5-5,.pure-u-5-6,.pure-u-5-8,.pure-u-6-24,.pure-u-7-12,.pure-u-7-24,.pure-u-7-8,.pure-u-8-24,.pure-u-9-24{letter-spacing:normal;word-spacing:normal;vertical-align:top;text-rendering:auto;display:inline-block;zoom:1}.pure-g [class*=pure-u]{font-family:sans-serif}.pure-u-1-24{width:4.1667%}.pure-u-1-12,.pure-u-2-24{width:8.3333%}.pure-u-1-8,.pure-u-3-24{width:12.5%}.pure-u-1-6,.pure-u-4-24{width:16.6667%}.pure-u-1-5{width:20%}.pure-u-5-24{width:20.8333%}.pure-u-1-4,.pure-u-6-24{width:25%}.pure-u-7-24{width:29.1667%}.pure-u-1-3,.pure-u-8-24{width:33.3333%}.pure-u-3-8,.pure-u-9-24{width:37.5%}.pure-u-2-5{width:40%}.pure-u-10-24,.pure-u-5-12{width:41.6667%}.pure-u-11-24{width:45.8333%}.pure-u-1-2,.pure-u-12-24{width:50%}.pure-u-13-24{width:54.1667%}.pure-u-14-24,.pure-u-7-12{width:58.3333%}.pure-u-3-5{width:60%}.pure-u-15-24,.pure-u-5-8{width:62.5%}.pure-u-16-24,.pure-u-2-3{width:66.6667%}.pure-u-17-24{width:70.8333%}.pure-u-18-24,.pure-u-3-4{width:75%}.pure-u-19-24{width:79.1667%}.pure-u-4-5{width:80%}.pure-u-20-24,.pure-u-5-6{width:83.3333%}.pure-u-21-24,.pure-u-7-8{width:87.5%}.pure-u-11-12,.pure-u-22-24{width:91.6667%}.pure-u-23-24{width:95.8333%}.pure-u-1,.pure-u-1-1,.pure-u-24-24,.pure-u-5-5{width:100%}.pure-button{display:inline-block;zoom:1;white-space:nowrap;vertical-align:middle;text-align:center;cursor:pointer;-webkit-user-drag:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.pure-button::-moz-focus-inner{padding:0;border:0}.pure-button-group{letter-spacing:-.31em;text-rendering:optimizespeed}.opera-only :-o-prefocus,.pure-button-group{word-spacing:-.43em}.pure-button{font-family:inherit;font-size:100%;padding:.5em 1em;color:#444;color:rgba(0,0,0,.8);border:1px solid #999;border:transparent;background-color:#E6E6E6;text-decoration:none;border-radius:2px}.pure-button-hover,.pure-button:focus,.pure-button:hover{filter:alpha(opacity=90);background-image:-webkit-linear-gradient(transparent,rgba(0,0,0,.05) 40%,rgba(0,0,0,.1));background-image:linear-gradient(transparent,rgba(0,0,0,.05) 40%,rgba(0,0,0,.1))}.pure-button-active,.pure-button:active{box-shadow:0 0 0 1px rgba(0,0,0,.15) inset,0 0 6px rgba(0,0,0,.2) inset;border-color:#000\9}.pure-button-disabled,.pure-button-disabled:active,.pure-button-disabled:focus,.pure-button-disabled:hover,.pure-button[disabled]{border:none;background-image:none;filter:alpha(opacity=40);opacity:.4;cursor:not-allowed;box-shadow:none;pointer-events:none}.pure-button-hidden{display:none}.pure-button-primary,.pure-button-selected,a.pure-button-primary,a.pure-button-selected{background-color:#0078e7;color:#fff}.pure-button-group .pure-button{letter-spacing:normal;word-spacing:normal;vertical-align:top;text-rendering:auto;margin:0;border-radius:0;border-right:1px solid #111;border-right:1px solid rgba(0,0,0,.2)}.pure-button-group .pure-button:first-child{border-top-left-radius:2px;border-bottom-left-radius:2px}.pure-button-group .pure-button:last-child{border-top-right-radius:2px;border-bottom-right-radius:2px;border-right:none}.pure-form input[type=password],.pure-form input[type=email],.pure-form input[type=url],.pure-form input[type=date],.pure-form input[type=month],.pure-form input[type=time],.pure-form input[type=datetime],.pure-form input[type=datetime-local],.pure-form input[type=week],.pure-form input[type=tel],.pure-form input[type=color],.pure-form input[type=number],.pure-form input[type=search],.pure-form input[type=text],.pure-form select,.pure-form textarea{padding:.5em .6em;display:inline-block;border:1px solid #ccc;box-shadow:inset 0 1px 3px #ddd;border-radius:4px;vertical-align:middle;box-sizing:border-box}.pure-form input:not([type]){padding:.5em .6em;display:inline-block;border:1px solid #ccc;box-shadow:inset 0 1px 3px #ddd;border-radius:4px}.pure-form input[type=color]{padding:.2em .5em}.pure-form input:not([type]):focus,.pure-form input[type=password]:focus,.pure-form input[type=email]:focus,.pure-form input[type=url]:focus,.pure-form input[type=date]:focus,.pure-form input[type=month]:focus,.pure-form input[type=time]:focus,.pure-form input[type=datetime]:focus,.pure-form input[type=datetime-local]:focus,.pure-form input[type=week]:focus,.pure-form input[type=tel]:focus,.pure-form input[type=color]:focus,.pure-form input[type=number]:focus,.pure-form input[type=search]:focus,.pure-form input[type=text]:focus,.pure-form select:focus,.pure-form textarea:focus{outline:0;border-color:#129FEA}.pure-form input[type=file]:focus,.pure-form input[type=checkbox]:focus,.pure-form input[type=radio]:focus{outline:#129FEA auto 1px}.pure-form .pure-checkbox,.pure-form .pure-radio{margin:.5em 0;display:block}.pure-form input:not([type])[disabled],.pure-form input[type=password][disabled],.pure-form input[type=email][disabled],.pure-form input[type=url][disabled],.pure-form input[type=date][disabled],.pure-form input[type=month][disabled],.pure-form input[type=time][disabled],.pure-form input[type=datetime][disabled],.pure-form input[type=datetime-local][disabled],.pure-form input[type=week][disabled],.pure-form input[type=tel][disabled],.pure-form input[type=color][disabled],.pure-form input[type=number][disabled],.pure-form input[type=search][disabled],.pure-form input[type=text][disabled],.pure-form select[disabled],.pure-form textarea[disabled]{cursor:not-allowed;background-color:#eaeded;color:#cad2d3}.pure-form input[readonly],.pure-form select[readonly],.pure-form textarea[readonly]{background-color:#eee;color:#777;border-color:#ccc}.pure-form input:focus:invalid,.pure-form select:focus:invalid,.pure-form textarea:focus:invalid{color:#b94a48;border-color:#e9322d}.pure-form input[type=file]:focus:invalid:focus,.pure-form input[type=checkbox]:focus:invalid:focus,.pure-form input[type=radio]:focus:invalid:focus{outline-color:#e9322d}.pure-form select{height:2.25em;border:1px solid #ccc;background-color:#fff}.pure-form select[multiple]{height:auto}.pure-form label{margin:.5em 0 .2em}.pure-form fieldset{margin:0;padding:.35em 0 .75em;border:0}.pure-form legend{display:block;width:100%;padding:.3em 0;margin-bottom:.3em;color:#333;border-bottom:1px solid #e5e5e5}.pure-form-stacked input:not([type]),.pure-form-stacked input[type=password],.pure-form-stacked input[type=email],.pure-form-stacked input[type=url],.pure-form-stacked input[type=date],.pure-form-stacked input[type=month],.pure-form-stacked input[type=time],.pure-form-stacked input[type=datetime],.pure-form-stacked input[type=datetime-local],.pure-form-stacked input[type=week],.pure-form-stacked input[type=tel],.pure-form-stacked input[type=color],.pure-form-stacked input[type=file],.pure-form-stacked input[type=number],.pure-form-stacked input[type=search],.pure-form-stacked input[type=text],.pure-form-stacked label,.pure-form-stacked select,.pure-form-stacked textarea{display:block;margin:.25em 0}.pure-form-aligned .pure-help-inline,.pure-form-aligned input,.pure-form-aligned select,.pure-form-aligned textarea,.pure-form-message-inline{display:inline-block;vertical-align:middle}.pure-form-aligned textarea{vertical-align:top}.pure-form-aligned .pure-control-group{margin-bottom:.5em}.pure-form-aligned .pure-control-group label{text-align:right;display:inline-block;vertical-align:middle;width:10em;margin:0 1em 0 0}.pure-form-aligned .pure-controls{margin:1.5em 0 0 11em}.pure-form .pure-input-rounded,.pure-form input.pure-input-rounded{border-radius:2em;padding:.5em 1em}.pure-form .pure-group fieldset{margin-bottom:10px}.pure-form .pure-group input,.pure-form .pure-group textarea{display:block;padding:10px;margin:0 0 -1px;border-radius:0;position:relative;top:-1px}.pure-form .pure-group input:focus,.pure-form .pure-group textarea:focus{z-index:3}.pure-form .pure-group input:first-child,.pure-form .pure-group textarea:first-child{top:1px;border-radius:4px 4px 0 0;margin:0}.pure-form .pure-group input:first-child:last-child,.pure-form .pure-group textarea:first-child:last-child{top:1px;border-radius:4px;margin:0}.pure-form .pure-group input:last-child,.pure-form .pure-group textarea:last-child{top:-2px;border-radius:0 0 4px 4px;margin:0}.pure-form .pure-group button{margin:.35em 0}.pure-form .pure-input-1{width:100%}.pure-form .pure-input-3-4{width:75%}.pure-form .pure-input-2-3{width:66%}.pure-form .pure-input-1-2{width:50%}.pure-form .pure-input-1-3{width:33%}.pure-form .pure-input-1-4{width:25%}.pure-form .pure-help-inline,.pure-form-message-inline{display:inline-block;padding-left:.3em;color:#666;vertical-align:middle;font-size:.875em}.pure-form-message{display:block;color:#666;font-size:.875em}@media only screen and (max-width :480px){.pure-form button[type=submit]{margin:.7em 0 0}.pure-form input:not([type]),.pure-form input[type=password],.pure-form input[type=email],.pure-form input[type=url],.pure-form input[type=date],.pure-form input[type=month],.pure-form input[type=time],.pure-form input[type=datetime],.pure-form input[type=datetime-local],.pure-form input[type=week],.pure-form input[type=tel],.pure-form input[type=color],.pure-form input[type=number],.pure-form input[type=search],.pure-form input[type=text],.pure-form label{margin-bottom:.3em;display:block}.pure-group input:not([type]),.pure-group input[type=password],.pure-group input[type=email],.pure-group input[type=url],.pure-group input[type=date],.pure-group input[type=month],.pure-group input[type=time],.pure-group input[type=datetime],.pure-group input[type=datetime-local],.pure-group input[type=week],.pure-group input[type=tel],.pure-group input[type=color],.pure-group input[type=number],.pure-group input[type=search],.pure-group input[type=text]{margin-bottom:0}.pure-form-aligned .pure-control-group label{margin-bottom:.3em;text-align:left;display:block;width:100%}.pure-form-aligned .pure-controls{margin:1.5em 0 0}.pure-form .pure-help-inline,.pure-form-message,.pure-form-message-inline{display:block;font-size:.75em;padding:.2em 0 .8em}}.pure-menu-fixed{position:fixed;left:0;top:0;z-index:3}.pure-menu-item,.pure-menu-list{position:relative}.pure-menu-list{list-style:none;margin:0;padding:0}.pure-menu-item{padding:0;margin:0;height:100%}.pure-menu-heading,.pure-menu-link{display:block;text-decoration:none;white-space:nowrap}.pure-menu-horizontal{width:100%;white-space:nowrap}.pure-menu-horizontal .pure-menu-list{display:inline-block}.pure-menu-horizontal .pure-menu-heading,.pure-menu-horizontal .pure-menu-item,.pure-menu-horizontal .pure-menu-separator{display:inline-block;zoom:1;vertical-align:middle}.pure-menu-item .pure-menu-item{display:block}.pure-menu-children{display:none;position:absolute;left:100%;top:0;margin:0;padding:0;z-index:3}.pure-menu-horizontal .pure-menu-children{left:0;top:auto;width:inherit}.pure-menu-active>.pure-menu-children,.pure-menu-allow-hover:hover>.pure-menu-children{display:block;position:absolute}.pure-menu-has-children>.pure-menu-link:after{padding-left:.5em;content:"\25B8";font-size:small}.pure-menu-horizontal .pure-menu-has-children>.pure-menu-link:after{content:"\25BE"}.pure-menu-scrollable{overflow-y:scroll;overflow-x:hidden}.pure-menu-scrollable .pure-menu-list{display:block}.pure-menu-horizontal.pure-menu-scrollable .pure-menu-list{display:inline-block}.pure-menu-horizontal.pure-menu-scrollable{white-space:nowrap;overflow-y:hidden;overflow-x:auto;-ms-overflow-style:none;-webkit-overflow-scrolling:touch;padding:.5em 0}.pure-menu-horizontal.pure-menu-scrollable::-webkit-scrollbar{display:none}.pure-menu-horizontal .pure-menu-children .pure-menu-separator,.pure-menu-separator{background-color:#ccc;height:1px;margin:.3em 0}.pure-menu-horizontal .pure-menu-separator{width:1px;height:1.3em;margin:0 .3em}.pure-menu-horizontal .pure-menu-children .pure-menu-separator{display:block;width:auto}.pure-menu-heading{text-transform:uppercase;color:#565d64}.pure-menu-link{color:#777}.pure-menu-children{background-color:#fff}.pure-menu-disabled,.pure-menu-heading,.pure-menu-link{padding:.5em 1em}.pure-menu-disabled{opacity:.5}.pure-menu-disabled .pure-menu-link:hover{background-color:transparent}.pure-menu-active>.pure-menu-link,.pure-menu-link:focus,.pure-menu-link:hover{background-color:#eee}.pure-menu-selected .pure-menu-link,.pure-menu-selected .pure-menu-link:visited{color:#000}.pure-table{empty-cells:show;border:1px solid #cbcbcb}.pure-table caption{color:#000;font:italic 85%/1 arial,sans-serif;padding:1em 0;text-align:center}.pure-table td,.pure-table th{border-left:1px solid #cbcbcb;border-width:0 0 0 1px;font-size:inherit;margin:0;overflow:visible;padding:.5em 1em}.pure-table td:first-child,.pure-table th:first-child{border-left-width:0}.pure-table thead{background-color:#e0e0e0;color:#000;text-align:left;vertical-align:bottom}.pure-table td{background-color:transparent}.pure-table-odd td,.pure-table-striped tr:nth-child(2n-1) td{background-color:#f2f2f2}.pure-table-bordered td{border-bottom:1px solid #cbcbcb}.pure-table-bordered tbody>tr:last-child>td{border-bottom-width:0}.pure-table-horizontal td,.pure-table-horizontal th{border-width:0 0 1px;border-bottom:1px solid #cbcbcb}.pure-table-horizontal tbody>tr:last-child>td{border-bottom-width:0}
--- /dev/null
+++ b/src/fonts/Open-Sans-regular/LICENSE.txt
@@ -0,0 +1,202 @@
+
+ Apache License
+ Version 2.0, January 2004
+ http://www.apache.org/licenses/
+
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+ 1. Definitions.
+
+ "License" shall mean the terms and conditions for use, reproduction,
+ and distribution as defined by Sections 1 through 9 of this document.
+
+ "Licensor" shall mean the copyright owner or entity authorized by
+ the copyright owner that is granting the License.
+
+ "Legal Entity" shall mean the union of the acting entity and all
+ other entities that control, are controlled by, or are under common
+ control with that entity. For the purposes of this definition,
+ "control" means (i) the power, direct or indirect, to cause the
+ direction or management of such entity, whether by contract or
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
+ outstanding shares, or (iii) beneficial ownership of such entity.
+
+ "You" (or "Your") shall mean an individual or Legal Entity
+ exercising permissions granted by this License.
+
+ "Source" form shall mean the preferred form for making modifications,
+ including but not limited to software source code, documentation
+ source, and configuration files.
+
+ "Object" form shall mean any form resulting from mechanical
+ transformation or translation of a Source form, including but
+ not limited to compiled object code, generated documentation,
+ and conversions to other media types.
+
+ "Work" shall mean the work of authorship, whether in Source or
+ Object form, made available under the License, as indicated by a
+ copyright notice that is included in or attached to the work
+ (an example is provided in the Appendix below).
+
+ "Derivative Works" shall mean any work, whether in Source or Object
+ form, that is based on (or derived from) the Work and for which the
+ editorial revisions, annotations, elaborations, or other modifications
+ represent, as a whole, an original work of authorship. For the purposes
+ of this License, Derivative Works shall not include works that remain
+ separable from, or merely link (or bind by name) to the interfaces of,
+ the Work and Derivative Works thereof.
+
+ "Contribution" shall mean any work of authorship, including
+ the original version of the Work and any modifications or additions
+ to that Work or Derivative Works thereof, that is intentionally
+ submitted to Licensor for inclusion in the Work by the copyright owner
+ or by an individual or Legal Entity authorized to submit on behalf of
+ the copyright owner. For the purposes of this definition, "submitted"
+ means any form of electronic, verbal, or written communication sent
+ to the Licensor or its representatives, including but not limited to
+ communication on electronic mailing lists, source code control systems,
+ and issue tracking systems that are managed by, or on behalf of, the
+ Licensor for the purpose of discussing and improving the Work, but
+ excluding communication that is conspicuously marked or otherwise
+ designated in writing by the copyright owner as "Not a Contribution."
+
+ "Contributor" shall mean Licensor and any individual or Legal Entity
+ on behalf of whom a Contribution has been received by Licensor and
+ subsequently incorporated within the Work.
+
+ 2. Grant of Copyright License. Subject to the terms and conditions of
+ this License, each Contributor hereby grants to You a perpetual,
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+ copyright license to reproduce, prepare Derivative Works of,
+ publicly display, publicly perform, sublicense, and distribute the
+ Work and such Derivative Works in Source or Object form.
+
+ 3. Grant of Patent License. Subject to the terms and conditions of
+ this License, each Contributor hereby grants to You a perpetual,
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+ (except as stated in this section) patent license to make, have made,
+ use, offer to sell, sell, import, and otherwise transfer the Work,
+ where such license applies only to those patent claims licensable
+ by such Contributor that are necessarily infringed by their
+ Contribution(s) alone or by combination of their Contribution(s)
+ with the Work to which such Contribution(s) was submitted. If You
+ institute patent litigation against any entity (including a
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
+ or a Contribution incorporated within the Work constitutes direct
+ or contributory patent infringement, then any patent licenses
+ granted to You under this License for that Work shall terminate
+ as of the date such litigation is filed.
+
+ 4. Redistribution. You may reproduce and distribute copies of the
+ Work or Derivative Works thereof in any medium, with or without
+ modifications, and in Source or Object form, provided that You
+ meet the following conditions:
+
+ (a) You must give any other recipients of the Work or
+ Derivative Works a copy of this License; and
+
+ (b) You must cause any modified files to carry prominent notices
+ stating that You changed the files; and
+
+ (c) You must retain, in the Source form of any Derivative Works
+ that You distribute, all copyright, patent, trademark, and
+ attribution notices from the Source form of the Work,
+ excluding those notices that do not pertain to any part of
+ the Derivative Works; and
+
+ (d) If the Work includes a "NOTICE" text file as part of its
+ distribution, then any Derivative Works that You distribute must
+ include a readable copy of the attribution notices contained
+ within such NOTICE file, excluding those notices that do not
+ pertain to any part of the Derivative Works, in at least one
+ of the following places: within a NOTICE text file distributed
+ as part of the Derivative Works; within the Source form or
+ documentation, if provided along with the Derivative Works; or,
+ within a display generated by the Derivative Works, if and
+ wherever such third-party notices normally appear. The contents
+ of the NOTICE file are for informational purposes only and
+ do not modify the License. You may add Your own attribution
+ notices within Derivative Works that You distribute, alongside
+ or as an addendum to the NOTICE text from the Work, provided
+ that such additional attribution notices cannot be construed
+ as modifying the License.
+
+ You may add Your own copyright statement to Your modifications and
+ may provide additional or different license terms and conditions
+ for use, reproduction, or distribution of Your modifications, or
+ for any such Derivative Works as a whole, provided Your use,
+ reproduction, and distribution of the Work otherwise complies with
+ the conditions stated in this License.
+
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
+ any Contribution intentionally submitted for inclusion in the Work
+ by You to the Licensor shall be under the terms and conditions of
+ this License, without any additional terms or conditions.
+ Notwithstanding the above, nothing herein shall supersede or modify
+ the terms of any separate license agreement you may have executed
+ with Licensor regarding such Contributions.
+
+ 6. Trademarks. This License does not grant permission to use the trade
+ names, trademarks, service marks, or product names of the Licensor,
+ except as required for reasonable and customary use in describing the
+ origin of the Work and reproducing the content of the NOTICE file.
+
+ 7. Disclaimer of Warranty. Unless required by applicable law or
+ agreed to in writing, Licensor provides the Work (and each
+ Contributor provides its Contributions) on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+ implied, including, without limitation, any warranties or conditions
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+ PARTICULAR PURPOSE. You are solely responsible for determining the
+ appropriateness of using or redistributing the Work and assume any
+ risks associated with Your exercise of permissions under this License.
+
+ 8. Limitation of Liability. In no event and under no legal theory,
+ whether in tort (including negligence), contract, or otherwise,
+ unless required by applicable law (such as deliberate and grossly
+ negligent acts) or agreed to in writing, shall any Contributor be
+ liable to You for damages, including any direct, indirect, special,
+ incidental, or consequential damages of any character arising as a
+ result of this License or out of the use or inability to use the
+ Work (including but not limited to damages for loss of goodwill,
+ work stoppage, computer failure or malfunction, or any and all
+ other commercial damages or losses), even if such Contributor
+ has been advised of the possibility of such damages.
+
+ 9. Accepting Warranty or Additional Liability. While redistributing
+ the Work or Derivative Works thereof, You may choose to offer,
+ and charge a fee for, acceptance of support, warranty, indemnity,
+ or other liability obligations and/or rights consistent with this
+ License. However, in accepting such obligations, You may act only
+ on Your own behalf and on Your sole responsibility, not on behalf
+ of any other Contributor, and only if You agree to indemnify,
+ defend, and hold each Contributor harmless for any liability
+ incurred by, or claims asserted against, such Contributor by reason
+ of your accepting any such warranty or additional liability.
+
+ END OF TERMS AND CONDITIONS
+
+ APPENDIX: How to apply the Apache License to your work.
+
+ To apply the Apache License to your work, attach the following
+ boilerplate notice, with the fields enclosed by brackets "[]"
+ replaced with your own identifying information. (Don't include
+ the brackets!) The text should be enclosed in the appropriate
+ comment syntax for the file format. We also recommend that a
+ file or class name and description of purpose be included on the
+ same "printed page" as the copyright notice for easier
+ identification within third-party archives.
+
+ Copyright [yyyy] [name of copyright owner]
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
Binary files /dev/null and b/src/fonts/Open-Sans-regular/Open-Sans-regular.eot differ
--- /dev/null
+++ b/src/fonts/Open-Sans-regular/Open-Sans-regular.svg
@@ -0,0 +1,1637 @@
+<?xml version="1.0" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
+<svg xmlns="http://www.w3.org/2000/svg">
+<defs >
+<font id="OpenSans" horiz-adv-x="1206" ><font-face
+ font-family="Open Sans"
+ units-per-em="2048"
+ panose-1="2 11 6 6 3 5 4 2 2 4"
+ ascent="2189"
+ descent="-600"
+ alphabetic="0" />
+<glyph unicode=" " glyph-name="space" horiz-adv-x="532" />
+<glyph unicode="!" glyph-name="exclam" horiz-adv-x="547" d="M326 403H221L170 1462H377L326 403ZM152 106Q152 242 272 242Q330 242 361 207T393 106Q393 42 361 7T272 -29Q220 -29 186 2T152 106Z" />
+<glyph unicode="&quot;" glyph-name="quotedbl" horiz-adv-x="821" d="M319 1462L279 934H174L133 1462H319ZM688 1462L647 934H543L502 1462H688Z" />
+<glyph unicode="#" glyph-name="numbersign" horiz-adv-x="1323" d="M981 899L915 559H1198V430H891L807 0H670L754 430H451L369 0H233L313 430H51V559H338L406 899H129V1026H428L510 1462H649L567 1026H872L956 1462H1090L1006 1026H1270V899H981ZM475 559H778L844
+899H541L475 559Z" />
+<glyph unicode="$" glyph-name="dollar" horiz-adv-x="1171" d="M1036 449Q1036 313 934 225T649 113V-119H520V104Q408 104 303 121T131 170V326Q214 289 322 266T520 242V682Q315 747 233 833T150 1055Q150 1186 251 1270T520 1372V1554H649V1374Q833 1369 1004
+1300L952 1169Q803 1228 649 1239V805Q806 755 884 708T999 599T1036 449ZM866 436Q866 508 822 552T649 641V252Q866 282 866 436ZM319 1057Q319 981 364 935T520 848V1235Q421 1219 370 1173T319 1057Z" />
+<glyph unicode="%" glyph-name="percent" horiz-adv-x="1686" d="M242 1026Q242 856 279 771T399 686Q563 686 563 1026Q563 1364 399 1364Q316 1364 279 1280T242 1026ZM700 1026Q700 798 624 682T399 565Q259 565 182 684T104 1026Q104 1253 178 1368T399 1483Q544
+1483 622 1364T700 1026ZM1122 440Q1122 269 1159 185T1280 100Q1364 100 1404 183T1444 440Q1444 611 1404 693T1280 776Q1196 776 1159 694T1122 440ZM1581 440Q1581 213 1505 97T1280 -20Q1138 -20 1062 99T985 440Q985 667 1059 782T1280 897Q1422 897 1501
+780T1581 440ZM1323 1462L512 0H365L1176 1462H1323Z" />
+<glyph unicode="&amp;" glyph-name="ampersand" horiz-adv-x="1495" d="M414 1171Q414 1102 450 1040T573 889Q702 964 752 1027T803 1174Q803 1251 752 1299T614 1348Q525 1348 470 1300T414 1171ZM569 129Q810 129 969 283L532 707Q421 639 375 595T307 499T285
+383Q285 266 362 198T569 129ZM113 379Q113 509 182 609T432 811Q347 906 317 955T268 1057T250 1167Q250 1317 348 1401T621 1485Q783 1485 876 1402T969 1169Q969 1062 901 972T676 788L1083 397Q1139 459 1172 542T1229 725H1397Q1329 439 1192 291L1491 0H1262L1077
+178Q959 72 837 26T565 -20Q350 -20 232 86T113 379Z" />
+<glyph unicode="&apos;" glyph-name="quotesingle" horiz-adv-x="453" d="M319 1462L279 934H174L133 1462H319Z" />
+<glyph unicode="(" glyph-name="parenleft" horiz-adv-x="606" d="M82 561Q82 826 159 1057T383 1462H545Q401 1269 329 1038T256 563Q256 323 330 94T543 -324H383Q236 -154 159 73T82 561Z" />
+<glyph unicode=")" glyph-name="parenright" horiz-adv-x="606" d="M524 561Q524 298 447 71T223 -324H63Q202 -136 276 93T350 563Q350 807 278 1038T61 1462H223Q370 1287 447 1056T524 561Z" />
+<glyph unicode="*" glyph-name="asterisk" horiz-adv-x="1130" d="M657 1556L614 1161L1012 1272L1038 1090L657 1059L905 733L733 639L557 1001L397 639L221 733L463 1059L86 1090L115 1272L506 1161L463 1556H657Z" />
+<glyph unicode="+" glyph-name="plus" horiz-adv-x="1171" d="M653 791H1065V653H653V227H514V653H104V791H514V1219H653V791Z" />
+<glyph unicode="," glyph-name="comma" horiz-adv-x="502" d="M350 238L365 215Q339 115 290 -17T188 -264H63Q90 -160 122 -7T168 238H350Z" />
+<glyph unicode="-" glyph-name="hyphen" horiz-adv-x="659" d="M84 473V625H575V473H84Z" />
+<glyph unicode="." glyph-name="period" horiz-adv-x="545" d="M152 106Q152 173 182 207T270 242Q328 242 360 208T393 106Q393 41 360 6T270 -29Q219 -29 186 2T152 106Z" />
+<glyph unicode="/" glyph-name="slash" horiz-adv-x="752" d="M731 1462L186 0H20L565 1462H731Z" />
+<glyph unicode="0" glyph-name="zero" horiz-adv-x="1171" d="M1069 733Q1069 354 950 167T584 -20Q348 -20 225 171T102 733Q102 1115 221 1300T584 1485Q822 1485 945 1292T1069 733ZM270 733Q270 414 345 269T584 123Q750 123 824 270T899 733Q899 1048 825
+1194T584 1341Q420 1341 345 1197T270 733Z" />
+<glyph unicode="1" glyph-name="one" horiz-adv-x="1171" d="M715 0H553V1042Q553 1172 561 1288Q540 1267 514 1244T276 1049L188 1163L575 1462H715V0Z" />
+<glyph unicode="2" glyph-name="two" horiz-adv-x="1171" d="M1061 0H100V143L485 530Q661 708 717 784T801 932T829 1087Q829 1204 758 1272T561 1341Q470 1341 389 1311T207 1202L119 1315Q321 1483 559 1483Q765 1483 882 1378T999 1094Q999 955 921 819T629
+475L309 162V154H1061V0Z" />
+<glyph unicode="3" glyph-name="three" horiz-adv-x="1171" d="M1006 1118Q1006 978 928 889T705 770V762Q881 740 966 650T1051 414Q1051 205 906 93T494 -20Q378 -20 282 -3T94 59V217Q189 170 296 146T500 121Q879 121 879 418Q879 684 461 684H317V827H463Q634
+827 734 902T834 1112Q834 1219 761 1280T561 1341Q465 1341 380 1315T186 1219L102 1331Q192 1402 309 1442T557 1483Q770 1483 888 1386T1006 1118Z" />
+<glyph unicode="4" glyph-name="four" horiz-adv-x="1171" d="M1130 336H913V0H754V336H43V481L737 1470H913V487H1130V336ZM754 487V973Q754 1116 764 1296H756Q708 1200 666 1137L209 487H754Z" />
+<glyph unicode="5" glyph-name="five" horiz-adv-x="1171" d="M557 893Q788 893 920 779T1053 465Q1053 238 909 109T510 -20Q263 -20 133 59V219Q203 174 307 149T512 123Q688 123 785 206T883 446Q883 752 508 752Q413 752 254 723L168 778L223 1462H950V1309H365L328
+870Q443 893 557 893Z" />
+<glyph unicode="6" glyph-name="six" horiz-adv-x="1171" d="M117 625Q117 1056 284 1269T780 1483Q893 1483 958 1464V1321Q881 1346 782 1346Q547 1346 423 1200T287 739H299Q409 911 647 911Q844 911 957 792T1071 469Q1071 241 947 111T610 -20Q383 -20 250
+150T117 625ZM608 121Q750 121 828 210T907 469Q907 614 834 697T616 780Q526 780 451 743T332 641T287 506Q287 403 327 314T440 173T608 121Z" />
+<glyph unicode="7" glyph-name="seven" horiz-adv-x="1171" d="M285 0L891 1309H94V1462H1067V1329L469 0H285Z" />
+<glyph unicode="8" glyph-name="eight" horiz-adv-x="1171" d="M584 1483Q784 1483 901 1390T1018 1133Q1018 1025 951 936T737 774Q915 689 990 596T1065 379Q1065 197 938 89T590 -20Q356 -20 230 82T104 373Q104 624 410 764Q272 842 212 932T152 1135Q152
+1294 269 1388T584 1483ZM268 369Q268 249 351 182T586 115Q735 115 818 185T901 377Q901 474 823 549T551 696Q402 632 335 555T268 369ZM582 1348Q457 1348 386 1288T315 1128Q315 1036 374 970T592 838Q735 898 794 967T854 1128Q854 1229 782 1288T582 1348Z"
+/>
+<glyph unicode="9" glyph-name="nine" horiz-adv-x="1171" d="M1061 838Q1061 -20 397 -20Q281 -20 213 0V143Q293 117 395 117Q635 117 757 265T891 721H879Q824 638 733 595T528 551Q334 551 220 667T106 991Q106 1219 233 1351T569 1483Q718 1483 829 1407T1001
+1184T1061 838ZM569 1341Q426 1341 348 1249T270 993Q270 849 342 767T561 684Q652 684 728 721T849 822T893 956Q893 1061 852 1150T738 1290T569 1341Z" />
+<glyph unicode=":" glyph-name="colon" horiz-adv-x="545" d="M152 106Q152 173 182 207T270 242Q328 242 360 208T393 106Q393 41 360 6T270 -29Q219 -29 186 2T152 106ZM152 989Q152 1124 270 1124Q393 1124 393 989Q393 924 360 889T270 854Q219 854 186 885T152 989Z" />
+<glyph unicode=";" glyph-name="semicolon" horiz-adv-x="545" d="M350 238L365 215Q339 115 290 -17T188 -264H63Q90 -160 122 -7T168 238H350ZM147 989Q147 1124 266 1124Q389 1124 389 989Q389 924 356 889T266 854Q208 854 178 889T147 989Z" />
+<glyph unicode="&lt;" glyph-name="less" horiz-adv-x="1171" d="M1065 242L104 664V762L1065 1241V1092L283 721L1065 393V242Z" />
+<glyph unicode="=" glyph-name="equal" horiz-adv-x="1171" d="M119 858V995H1049V858H119ZM119 449V586H1049V449H119Z" />
+<glyph unicode="&gt;" glyph-name="greater" horiz-adv-x="1171" d="M104 393L887 719L104 1092V1241L1065 762V664L104 242V393Z" />
+<glyph unicode="?" glyph-name="question" horiz-adv-x="879" d="M289 403V457Q289 574 325 649T459 809Q595 924 630 982T666 1122Q666 1224 601 1279T412 1335Q333 1335 258 1317T86 1249L27 1384Q216 1483 422 1483Q613 1483 719 1389T825 1124Q825 1051 806
+996T748 891T584 731Q483 645 451 588T418 436V403H289ZM240 106Q240 242 360 242Q418 242 449 207T481 106Q481 42 449 7T360 -29Q308 -29 274 2T240 106Z" />
+<glyph unicode="@" glyph-name="at" horiz-adv-x="1841" d="M1720 729Q1720 587 1676 469T1552 286T1368 221Q1282 221 1223 273T1153 406H1145Q1105 319 1031 270T854 221Q704 221 620 323T535 602Q535 806 653 933T963 1061Q1031 1061 1117 1049T1272 1014L1247
+544V522Q1247 344 1380 344Q1471 344 1528 451T1585 731Q1585 912 1511 1048T1301 1257T987 1331Q764 1331 599 1239T347 975T260 578Q260 273 421 109T885 -55Q1095 -55 1321 31V-102Q1129 -186 885 -186Q522 -186 322 13T121 571Q121 831 228 1034T533 1348T987
+1460Q1202 1460 1369 1370T1628 1113T1720 729ZM686 598Q686 344 881 344Q1088 344 1106 657L1120 918Q1048 938 963 938Q833 938 760 848T686 598Z" />
+<glyph unicode="A" glyph-name="A" horiz-adv-x="1296" d="M1120 0L938 465H352L172 0H0L578 1468H721L1296 0H1120ZM885 618L715 1071Q682 1157 647 1282Q625 1186 584 1071L412 618H885Z" />
+<glyph unicode="B" glyph-name="B" horiz-adv-x="1327" d="M201 1462H614Q905 1462 1035 1375T1165 1100Q1165 970 1093 886T881 776V766Q1214 709 1214 416Q1214 220 1082 110T711 0H201V1462ZM371 836H651Q831 836 910 892T989 1083Q989 1206 901 1260T621 1315H371V836ZM371
+692V145H676Q853 145 942 213T1032 428Q1032 564 941 628T662 692H371Z" />
+<glyph unicode="C" glyph-name="C" horiz-adv-x="1292" d="M827 1331Q586 1331 447 1171T307 731Q307 444 441 288T825 131Q978 131 1174 186V37Q1022 -20 799 -20Q476 -20 301 176T125 733Q125 959 209 1129T453 1391T829 1483Q1059 1483 1231 1399L1159 1253Q993
+1331 827 1331Z" />
+<glyph unicode="D" glyph-name="D" horiz-adv-x="1493" d="M1368 745Q1368 383 1172 192T606 0H201V1462H649Q990 1462 1179 1273T1368 745ZM1188 739Q1188 1025 1045 1170T618 1315H371V147H578Q882 147 1035 296T1188 739Z" />
+<glyph unicode="E" glyph-name="E" horiz-adv-x="1139" d="M1016 0H201V1462H1016V1311H371V840H977V690H371V152H1016V0Z" />
+<glyph unicode="F" glyph-name="F" horiz-adv-x="1057" d="M371 0H201V1462H1016V1311H371V776H977V625H371V0Z" />
+<glyph unicode="G" glyph-name="G" horiz-adv-x="1491" d="M844 766H1341V55Q1225 18 1105 -1T827 -20Q495 -20 310 177T125 731Q125 959 216 1130T480 1392T883 1483Q1117 1483 1319 1397L1253 1247Q1055 1331 872 1331Q605 1331 455 1172T305 731Q305 435 449
+282T874 129Q1026 129 1171 164V614H844V766Z" />
+<glyph unicode="H" glyph-name="H" horiz-adv-x="1511" d="M1311 0H1141V688H371V0H201V1462H371V840H1141V1462H1311V0Z" />
+<glyph unicode="I" glyph-name="I" horiz-adv-x="571" d="M201 0V1462H371V0H201Z" />
+<glyph unicode="J" glyph-name="J" horiz-adv-x="547" d="M-12 -385Q-106 -385 -160 -358V-213Q-89 -233 -12 -233Q87 -233 138 -173T190 0V1462H360V14Q360 -176 264 -280T-12 -385Z" />
+<glyph unicode="K" glyph-name="K" horiz-adv-x="1257" d="M1257 0H1057L524 709L371 573V0H201V1462H371V737L1034 1462H1235L647 827L1257 0Z" />
+<glyph unicode="L" glyph-name="L" horiz-adv-x="1063" d="M201 0V1462H371V154H1016V0H201Z" />
+<glyph unicode="M" glyph-name="M" horiz-adv-x="1849" d="M848 0L352 1296H344Q358 1142 358 930V0H201V1462H457L920 256H928L1395 1462H1649V0H1479V942Q1479 1104 1493 1294H1485L985 0H848Z" />
+<glyph unicode="N" glyph-name="N" horiz-adv-x="1544" d="M1343 0H1149L350 1227H342Q358 1011 358 831V0H201V1462H393L1190 240H1198Q1196 267 1189 413T1184 623V1462H1343V0Z" />
+<glyph unicode="O" glyph-name="O" horiz-adv-x="1595" d="M1470 733Q1470 382 1293 181T799 -20Q476 -20 301 177T125 735Q125 1092 301 1288T801 1485Q1116 1485 1293 1285T1470 733ZM305 733Q305 436 431 283T799 129Q1042 129 1166 282T1290 733Q1290 1028
+1167 1180T801 1333Q558 1333 432 1180T305 733Z" />
+<glyph unicode="P" glyph-name="P" horiz-adv-x="1233" d="M1128 1036Q1128 814 977 695T543 575H371V0H201V1462H580Q1128 1462 1128 1036ZM371 721H524Q750 721 851 794T952 1028Q952 1173 857 1244T561 1315H371V721Z" />
+<glyph unicode="Q" glyph-name="Q" horiz-adv-x="1595" d="M1470 733Q1470 452 1357 266T1038 14L1386 -348H1139L854 -18L799 -20Q476 -20 301 177T125 735Q125 1092 301 1288T801 1485Q1116 1485 1293 1285T1470 733ZM305 733Q305 436 431 283T799 129Q1042
+129 1166 282T1290 733Q1290 1028 1167 1180T801 1333Q558 1333 432 1180T305 733Z" />
+<glyph unicode="R" glyph-name="R" horiz-adv-x="1266" d="M371 608V0H201V1462H602Q871 1462 999 1359T1128 1049Q1128 759 834 657L1231 0H1030L676 608H371ZM371 754H604Q784 754 868 825T952 1040Q952 1185 867 1249T592 1313H371V754Z" />
+<glyph unicode="S" glyph-name="S" horiz-adv-x="1124" d="M1026 389Q1026 196 886 88T506 -20Q246 -20 106 47V211Q196 173 302 151T512 129Q682 129 768 193T854 373Q854 449 824 497T722 587T504 680Q300 753 213 853T125 1114Q125 1283 252 1383T588 1483Q806
+1483 989 1403L936 1255Q755 1331 584 1331Q449 1331 373 1273T297 1112Q297 1036 325 988T419 899T623 809Q853 727 939 633T1026 389Z" />
+<glyph unicode="T" glyph-name="T" horiz-adv-x="1133" d="M651 0H481V1311H18V1462H1114V1311H651V0Z" />
+<glyph unicode="U" glyph-name="U" horiz-adv-x="1491" d="M1305 1462V516Q1305 266 1154 123T739 -20Q475 -20 331 124T186 520V1462H356V508Q356 325 456 227T750 129Q935 129 1035 227T1135 510V1462H1305Z" />
+<glyph unicode="V" glyph-name="V" horiz-adv-x="1219" d="M1036 1462H1219L692 0H524L0 1462H180L516 516Q574 353 608 199Q644 361 702 522L1036 1462Z" />
+<glyph unicode="W" glyph-name="W" horiz-adv-x="1896" d="M1477 0H1309L1014 979Q993 1044 967 1143T940 1262Q918 1130 870 973L584 0H416L27 1462H207L438 559Q486 369 508 215Q535 398 588 573L850 1462H1030L1305 565Q1353 410 1386 215Q1405 357 1458 561L1688
+1462H1868L1477 0Z" />
+<glyph unicode="X" glyph-name="X" horiz-adv-x="1182" d="M1174 0H981L588 643L188 0H8L494 764L41 1462H229L592 883L958 1462H1139L686 770L1174 0Z" />
+<glyph unicode="Y" glyph-name="Y" horiz-adv-x="1147" d="M573 731L963 1462H1147L659 567V0H487V559L0 1462H186L573 731Z" />
+<glyph unicode="Z" glyph-name="Z" horiz-adv-x="1169" d="M1087 0H82V133L858 1309H106V1462H1065V1329L289 154H1087V0Z" />
+<glyph unicode="[" glyph-name="bracketleft" horiz-adv-x="674" d="M623 -324H166V1462H623V1321H334V-182H623V-324Z" />
+<glyph unicode="\" glyph-name="backslash" horiz-adv-x="752" d="M186 1462L733 0H567L23 1462H186Z" />
+<glyph unicode="]" glyph-name="bracketright" horiz-adv-x="674" d="M51 -182H340V1321H51V1462H508V-324H51V-182Z" />
+<glyph unicode="^" glyph-name="asciicircum" horiz-adv-x="1110" d="M49 551L483 1473H582L1059 551H907L535 1296L201 551H49Z" />
+<glyph unicode="_" glyph-name="underscore" horiz-adv-x="918" d="M922 -315H-4V-184H922V-315Z" />
+<glyph unicode="`" glyph-name="grave" horiz-adv-x="1182" d="M786 1241H676Q611 1293 522 1389T393 1548V1569H596Q628 1500 685 1410T786 1266V1241Z" />
+<glyph unicode="a" glyph-name="a" horiz-adv-x="1139" d="M850 0L817 156H809Q727 53 646 17T442 -20Q279 -20 187 64T94 303Q94 635 625 651L811 657V725Q811 854 756 915T578 977Q441 977 268 893L217 1020Q298 1064 394 1089T588 1114Q784 1114 878 1027T973
+748V0H850ZM475 117Q630 117 718 202T807 440V539L641 532Q443 525 356 471T268 301Q268 211 322 164T475 117Z" />
+<glyph unicode="b" glyph-name="b" horiz-adv-x="1255" d="M686 1114Q902 1114 1021 967T1141 549Q1141 279 1021 130T686 -20Q579 -20 491 19T342 141H330L295 0H176V1556H342V1178Q342 1051 334 950H342Q458 1114 686 1114ZM662 975Q492 975 417 878T342 549Q342
+318 419 219T666 119Q819 119 894 230T969 551Q969 765 894 870T662 975Z" />
+<glyph unicode="c" glyph-name="c" horiz-adv-x="975" d="M614 -20Q376 -20 246 126T115 541Q115 816 247 966T625 1116Q704 1116 783 1099T907 1059L856 918Q801 940 736 954T621 969Q287 969 287 543Q287 341 368 233T610 125Q747 125 891 184V37Q781 -20 614 -20Z" />
+<glyph unicode="d" glyph-name="d" horiz-adv-x="1255" d="M922 147H913Q798 -20 569 -20Q354 -20 235 127T115 545Q115 816 235 966T569 1116Q792 1116 911 954H924L917 1033L913 1110V1556H1079V0H944L922 147ZM590 119Q760 119 836 211T913 510V545Q913 778
+836 877T588 977Q442 977 365 864T287 543Q287 333 364 226T590 119Z" />
+<glyph unicode="e" glyph-name="e" horiz-adv-x="1149" d="M639 -20Q396 -20 256 128T115 539Q115 804 245 960T596 1116Q802 1116 922 981T1042 623V518H287Q292 325 384 225T645 125Q822 125 995 199V51Q907 13 829 -3T639 -20ZM594 977Q462 977 384 891T291
+653H864Q864 810 794 893T594 977Z" />
+<glyph unicode="f" glyph-name="f" horiz-adv-x="694" d="M670 967H391V0H225V967H29V1042L225 1102V1163Q225 1567 578 1567Q665 1567 782 1532L739 1399Q643 1430 575 1430Q481 1430 436 1368T391 1167V1096H670V967Z" />
+<glyph unicode="g" glyph-name="g" horiz-adv-x="1122" d="M1073 1096V991L870 967Q898 932 920 876T942 748Q942 587 832 491T530 395Q481 395 438 403Q332 347 332 262Q332 217 369 196T496 174H690Q868 174 963 99T1059 -119Q1059 -301 913 -396T487 -492Q272
+-492 156 -412T39 -186Q39 -86 103 -13T283 86Q241 105 213 145T184 238Q184 298 216 343T317 430Q232 465 179 549T125 741Q125 921 233 1018T539 1116Q625 1116 694 1096H1073ZM199 -184Q199 -273 274 -319T489 -365Q698 -365 798 -303T899 -133Q899 -44 844
+-10T637 25H438Q325 25 262 -29T199 -184ZM289 745Q289 630 354 571T535 512Q778 512 778 748Q778 995 532 995Q415 995 352 932T289 745Z" />
+<glyph unicode="h" glyph-name="h" horiz-adv-x="1257" d="M926 0V709Q926 843 865 909T674 975Q501 975 422 881T342 573V0H176V1556H342V1085Q342 1000 334 944H344Q393 1023 483 1068T690 1114Q891 1114 991 1019T1092 715V0H926Z" />
+<glyph unicode="i" glyph-name="i" horiz-adv-x="518" d="M342 0H176V1096H342V0ZM162 1393Q162 1450 190 1476T260 1503Q300 1503 329 1476T358 1393Q358 1337 329 1310T260 1282Q218 1282 190 1309T162 1393Z" />
+<glyph unicode="j" glyph-name="j" horiz-adv-x="518" d="M43 -492Q-52 -492 -111 -467V-332Q-42 -352 25 -352Q103 -352 139 -310T176 -180V1096H342V-168Q342 -492 43 -492ZM162 1393Q162 1450 190 1476T260 1503Q300 1503 329 1476T358 1393Q358 1337 329 1310T260
+1282Q218 1282 190 1309T162 1393Z" />
+<glyph unicode="k" glyph-name="k" horiz-adv-x="1075" d="M340 561Q383 622 471 721L825 1096H1022L578 629L1053 0H852L465 518L340 410V0H176V1556H340V731Q340 676 332 561H340Z" />
+<glyph unicode="l" glyph-name="l" horiz-adv-x="518" d="M342 0H176V1556H342V0Z" />
+<glyph unicode="m" glyph-name="m" horiz-adv-x="1905" d="M1573 0V713Q1573 844 1517 909T1343 975Q1188 975 1114 886T1040 612V0H874V713Q874 844 818 909T643 975Q487 975 415 882T342 575V0H176V1096H311L338 946H346Q393 1026 478 1071T670 1116Q927 1116
+1006 930H1014Q1063 1016 1156 1066T1368 1116Q1554 1116 1646 1021T1739 715V0H1573Z" />
+<glyph unicode="n" glyph-name="n" horiz-adv-x="1257" d="M926 0V709Q926 843 865 909T674 975Q502 975 422 882T342 575V0H176V1096H311L338 946H346Q397 1027 489 1071T694 1116Q892 1116 992 1021T1092 715V0H926Z" />
+<glyph unicode="o" glyph-name="o" horiz-adv-x="1237" d="M1122 549Q1122 281 987 131T614 -20Q467 -20 353 49T177 247T115 549Q115 817 249 966T621 1116Q851 1116 986 963T1122 549ZM287 549Q287 339 371 229T618 119Q781 119 865 228T950 549Q950 758 866
+866T616 975Q453 975 370 868T287 549Z" />
+<glyph unicode="p" glyph-name="p" horiz-adv-x="1255" d="M686 -20Q579 -20 491 19T342 141H330Q342 45 342 -41V-492H176V1096H311L334 946H342Q406 1036 491 1076T686 1116Q904 1116 1022 967T1141 549Q1141 279 1021 130T686 -20ZM662 975Q494 975 419 882T342
+586V549Q342 318 419 219T666 119Q808 119 888 234T969 551Q969 756 889 865T662 975Z" />
+<glyph unicode="q" glyph-name="q" horiz-adv-x="1255" d="M590 119Q756 119 832 208T913 508V545Q913 775 835 876T588 977Q442 977 365 864T287 543Q287 336 363 228T590 119ZM565 -20Q353 -20 234 129T115 545Q115 814 235 965T569 1116Q794 1116 915 946H924L948
+1096H1079V-492H913V-23Q913 77 924 147H911Q796 -20 565 -20Z" />
+<glyph unicode="r" glyph-name="r" horiz-adv-x="836" d="M676 1116Q749 1116 807 1104L784 950Q716 965 664 965Q531 965 437 857T342 588V0H176V1096H313L332 893H340Q401 1000 487 1058T676 1116Z" />
+<glyph unicode="s" glyph-name="s" horiz-adv-x="977" d="M883 299Q883 146 769 63T449 -20Q231 -20 109 49V203Q188 163 278 140T453 117Q583 117 653 158T723 285Q723 349 668 394T451 502Q298 559 234 601T138 698T106 827Q106 961 215 1038T514 1116Q691 1116
+860 1044L801 909Q636 977 502 977Q384 977 324 940T264 838Q264 794 286 763T359 704T551 623Q746 552 814 480T883 299Z" />
+<glyph unicode="t" glyph-name="t" horiz-adv-x="723" d="M530 117Q574 117 615 123T680 137V10Q653 -3 601 -11T506 -20Q188 -20 188 315V967H31V1047L188 1116L258 1350H354V1096H672V967H354V322Q354 223 401 170T530 117Z" />
+<glyph unicode="u" glyph-name="u" horiz-adv-x="1257" d="M332 1096V385Q332 251 393 185T584 119Q756 119 835 213T915 520V1096H1081V0H944L920 147H911Q860 66 770 23T563 -20Q363 -20 264 75T164 379V1096H332Z" />
+<glyph unicode="v" glyph-name="v" horiz-adv-x="1026" d="M416 0L0 1096H178L414 446Q494 218 508 150H516Q527 203 585 369T848 1096H1026L610 0H416Z" />
+<glyph unicode="w" glyph-name="w" horiz-adv-x="1593" d="M1071 0L870 643Q851 702 799 911H791Q751 736 721 641L514 0H322L23 1096H197Q303 683 358 467T422 176H430Q441 233 465 323T508 467L709 1096H889L1085 467Q1141 295 1161 178H1169Q1173 214 1190
+289T1399 1096H1571L1268 0H1071Z" />
+<glyph unicode="x" glyph-name="x" horiz-adv-x="1073" d="M440 561L59 1096H248L537 676L825 1096H1012L631 561L1032 0H844L537 444L227 0H39L440 561Z" />
+<glyph unicode="y" glyph-name="y" horiz-adv-x="1032" d="M2 1096H180L420 471Q499 257 518 162H526Q539 213 580 336T852 1096H1030L559 -152Q489 -337 396 -414T166 -492Q90 -492 16 -475V-342Q71 -354 139 -354Q310 -354 383 -162L444 -6L2 1096Z" />
+<glyph unicode="z" glyph-name="z" horiz-adv-x="958" d="M877 0H82V113L680 967H119V1096H862V967L272 129H877V0Z" />
+<glyph unicode="{" glyph-name="braceleft" horiz-adv-x="776" d="M475 12Q475 -90 533 -136T705 -184V-324Q515 -322 411 -237T307 2V305Q307 409 244 453T61 498V639Q191 641 249 687T307 829V1135Q307 1290 415 1376T705 1462V1323Q475 1317 475 1124V829Q475
+614 252 575V563Q475 524 475 309V12Z" />
+<glyph unicode="|" glyph-name="bar" horiz-adv-x="1128" d="M494 1556H635V-496H494V1556Z" />
+<glyph unicode="}" glyph-name="braceright" horiz-adv-x="776" d="M522 575Q299 614 299 829V1124Q299 1317 72 1323V1462Q256 1462 361 1375T467 1135V829Q467 732 526 687T715 639V498Q593 498 530 454T467 305V2Q467 -151 365 -236T72 -324V-184Q183 -182
+241 -136T299 12V309Q299 423 354 483T522 563V575Z" />
+<glyph unicode="~" glyph-name="asciitilde" horiz-adv-x="1171" d="M338 713Q285 713 222 680T104 592V743Q204 852 348 852Q416 852 472 838T618 786Q684 758 733 745T829 731Q883 731 947 763T1065 852V702Q963 592 821 592Q749 592 686 608T551 657Q476 689
+431 701T338 713Z" />
+<glyph unicode="&#xa0;" glyph-name="nbspace" horiz-adv-x="532" />
+<glyph unicode="&#xa1;" glyph-name="exclamdown" horiz-adv-x="547" d="M219 684H324L375 -373H168L219 684ZM393 983Q393 848 272 848Q212 848 182 883T152 983Q152 1046 183 1082T272 1118Q323 1118 358 1086T393 983Z" />
+<glyph unicode="&#xa2;" glyph-name="cent" horiz-adv-x="1171" d="M971 240Q866 186 719 180V-20H586V186Q383 218 287 354T190 741Q190 1249 586 1311V1483H721V1319Q796 1316 867 1300T987 1260L938 1120Q805 1171 696 1171Q524 1171 443 1066T362 743Q362
+531 441 430T688 328Q829 328 971 387V240Z" />
+<glyph unicode="&#xa3;" glyph-name="sterling" horiz-adv-x="1171" d="M682 1481Q872 1481 1042 1397L981 1264Q827 1341 684 1341Q561 1341 499 1279T436 1077V782H858V655H436V434Q436 334 404 266T297 154H1092V0H63V141Q268 188 268 432V655H70V782H268V1098Q268
+1276 380 1378T682 1481Z" />
+<glyph unicode="&#xa4;" glyph-name="currency" horiz-adv-x="1171" d="M184 723Q184 845 258 952L123 1092L217 1184L352 1051Q456 1124 586 1124Q713 1124 815 1051L952 1184L1047 1092L913 954Q987 841 987 723Q987 592 913 489L1044 354L952 262L815 395Q713
+324 586 324Q452 324 352 397L217 264L125 356L258 492Q184 599 184 723ZM313 723Q313 611 391 531T586 451Q702 451 781 530T860 723Q860 837 780 918T586 999Q470 999 392 917T313 723Z" />
+<glyph unicode="&#xa5;" glyph-name="yen" horiz-adv-x="1171" d="M584 735L963 1462H1137L721 692H983V565H666V395H983V268H666V0H502V268H186V395H502V565H186V692H442L31 1462H209L584 735Z" />
+<glyph unicode="&#xa6;" glyph-name="brokenbar" horiz-adv-x="1128" d="M494 1556H635V780H494V1556ZM494 281H635V-496H494V281Z" />
+<glyph unicode="&#xa7;" glyph-name="section" horiz-adv-x="1057" d="M139 809Q139 895 182 963T303 1069Q229 1109 187 1164T145 1305Q145 1426 248 1495T549 1565Q643 1565 722 1551T899 1497L846 1366Q748 1405 681 1418T537 1432Q421 1432 363 1403T305 1309Q305
+1249 366 1207T582 1110Q768 1042 843 967T918 784Q918 694 877 624T762 512Q915 431 915 285Q915 145 798 69T469 -8Q251 -8 123 57V205Q201 168 298 146T477 123Q611 123 681 161T752 270Q752 316 728 345T650 403T481 475Q339 527 272 572T172 674T139 809ZM285
+829Q285 752 351 700T584 586L633 567Q770 647 770 758Q770 841 697 897T438 1010Q370 991 328 941T285 829Z" />
+<glyph unicode="&#xa8;" glyph-name="dieresis" horiz-adv-x="1182" d="M309 1393Q309 1445 335 1468T399 1491Q437 1491 464 1468T492 1393Q492 1343 465 1319T399 1294Q362 1294 336 1318T309 1393ZM690 1393Q690 1445 716 1468T780 1491Q817 1491 844 1468T872
+1393Q872 1343 845 1319T780 1294Q743 1294 717 1318T690 1393Z" />
+<glyph unicode="&#xa9;" glyph-name="copyright" horiz-adv-x="1704" d="M893 1059Q768 1059 701 972T633 731Q633 563 696 482T891 401Q977 401 1102 446V322Q1054 302 1004 288T883 274Q689 274 585 394T481 731Q481 940 591 1063T893 1186Q1021 1186 1139 1126L1081
+1008Q973 1059 893 1059ZM100 731Q100 931 200 1106T475 1382T852 1483Q1052 1483 1227 1383T1503 1108T1604 731Q1604 534 1507 361T1235 84T852 -20Q645 -20 470 83T198 360T100 731ZM205 731Q205 558 292 408T529 171T852 84Q1026 84 1175 171T1411 406T1499
+731Q1499 905 1412 1054T1177 1290T852 1378Q678 1378 529 1291T293 1056T205 731Z" />
+<glyph unicode="&#xaa;" glyph-name="ordfeminine" horiz-adv-x="725" d="M532 801L508 885Q416 788 276 788Q181 788 126 837T70 989Q70 1091 147 1143T389 1202L506 1206V1245Q506 1378 358 1378Q258 1378 154 1327L111 1423Q225 1479 358 1479Q488 1479 556
+1427T625 1253V801H532ZM193 989Q193 889 305 889Q506 889 506 1069V1118L408 1114Q296 1110 245 1082T193 989Z" />
+<glyph unicode="&#xab;" glyph-name="guillemotleft" horiz-adv-x="1018" d="M82 551L424 958L543 889L254 539L543 188L424 117L82 524V551ZM477 551L821 958L938 889L651 539L938 188L821 117L477 524V551Z" />
+<glyph unicode="&#xac;" glyph-name="logicalnot" horiz-adv-x="1171" d="M1065 791V264H928V653H104V791H1065Z" />
+<glyph unicode="&#xad;" glyph-name="uni00AD" horiz-adv-x="659" d="M84 473V625H575V473H84Z" />
+<glyph unicode="&#xae;" glyph-name="registered" horiz-adv-x="1704" d="M723 762H831Q911 762 959 803T1008 909Q1008 984 965 1016T829 1049H723V762ZM1157 913Q1157 833 1115 772T995 680L1233 285H1065L858 639H723V285H575V1176H836Q1002 1176 1079 1111T1157
+913ZM100 731Q100 931 200 1106T475 1382T852 1483Q1052 1483 1227 1383T1503 1108T1604 731Q1604 534 1507 361T1235 84T852 -20Q645 -20 470 83T198 360T100 731ZM205 731Q205 558 292 408T529 171T852 84Q1026 84 1175 171T1411 406T1499 731Q1499 905 1412
+1054T1177 1290T852 1378Q678 1378 529 1291T293 1056T205 731Z" />
+<glyph unicode="&#xaf;" glyph-name="overscore" horiz-adv-x="1024" d="M1030 1556H-6V1683H1030V1556Z" />
+<glyph unicode="&#xb0;" glyph-name="degree" horiz-adv-x="877" d="M127 1171Q127 1301 217 1392T438 1483Q568 1483 659 1393T750 1171Q750 1087 709 1016T595 902T438 860Q308 860 218 950T127 1171ZM242 1171Q242 1089 300 1032T440 975Q520 975 577 1031T635
+1171Q635 1255 579 1311T440 1368Q357 1368 300 1311T242 1171Z" />
+<glyph unicode="&#xb1;" glyph-name="plusminus" horiz-adv-x="1171" d="M653 791H1065V653H653V227H514V653H104V791H514V1219H653V791ZM104 1V139H1065V1H104Z" />
+<glyph unicode="&#xb2;" glyph-name="twosuperior" horiz-adv-x="711" d="M653 586H49V690L285 920Q374 1006 415 1054T472 1141T489 1233Q489 1301 449 1335T346 1370Q294 1370 245 1351T127 1282L61 1370Q192 1481 344 1481Q476 1481 549 1416T623 1239Q623
+1159 579 1084T387 870L213 705H653V586Z" />
+<glyph unicode="&#xb3;" glyph-name="threesuperior" horiz-adv-x="711" d="M627 1255Q627 1175 586 1124T477 1049Q653 1002 653 840Q653 712 561 641T301 569Q149 569 33 625V748Q180 680 303 680Q514 680 514 842Q514 987 283 987H166V1094H285Q388 1094 437
+1133T487 1241Q487 1302 447 1336T340 1370Q274 1370 218 1349T106 1292L37 1382Q100 1427 170 1454T334 1481Q470 1481 548 1422T627 1255Z" />
+<glyph unicode="&#xb4;" glyph-name="acute" horiz-adv-x="1182" d="M393 1266Q441 1328 496 1416T584 1569H786V1548Q742 1483 655 1388T504 1241H393V1266Z" />
+<glyph unicode="&#xb5;" glyph-name="mu" horiz-adv-x="1268" d="M342 381Q342 119 596 119Q767 119 846 213T926 520V1096H1092V0H956L930 147H920Q809 -20 580 -20Q430 -20 342 72H332Q342 -12 342 -172V-492H176V1096H342V381Z" />
+<glyph unicode="&#xb6;" glyph-name="paragraph" horiz-adv-x="1341" d="M1120 -260H1006V1452H793V-260H678V559Q616 541 532 541Q316 541 215 666T113 1042Q113 1302 222 1429T563 1556H1120V-260Z" />
+<glyph unicode="&#xb7;" glyph-name="middot" horiz-adv-x="545" d="M152 723Q152 789 183 823T270 858Q328 858 360 824T393 723Q393 658 360 623T270 588Q219 588 186 619T152 723Z" />
+<glyph unicode="&#xb8;" glyph-name="cedilla" horiz-adv-x="465" d="M436 -289Q436 -386 360 -439T133 -492Q82 -492 37 -483V-377Q82 -385 141 -385Q220 -385 260 -365T301 -291Q301 -248 262 -222T113 -178L201 0H311L256 -115Q436 -154 436 -289Z" />
+<glyph unicode="&#xb9;" glyph-name="onesuperior" horiz-adv-x="711" d="M338 1462H481V586H348V1165Q348 1256 354 1346Q332 1324 305 1302T143 1184L76 1280L338 1462Z" />
+<glyph unicode="&#xba;" glyph-name="ordmasculine" horiz-adv-x="768" d="M702 1135Q702 971 617 880T381 788Q235 788 151 881T66 1135Q66 1298 150 1388T385 1479Q537 1479 619 1388T702 1135ZM188 1135Q188 1013 233 952T383 891Q488 891 534 952T580 1135Q580
+1258 534 1317T383 1376Q280 1376 234 1317T188 1135Z" />
+<glyph unicode="&#xbb;" glyph-name="guillemotright" horiz-adv-x="1018" d="M936 524L592 117L475 188L762 539L475 889L592 958L936 551V524ZM541 524L197 117L80 188L367 539L80 889L197 958L541 551V524Z" />
+<glyph unicode="&#xbc;" glyph-name="onequarter" horiz-adv-x="1597" d="M1298 1462L395 0H252L1155 1462H1298ZM593 1462H736V586H603V1165Q603 1256 609 1346Q587 1324 560 1302T398 1184L331 1280L593 1462ZM1489 203H1364V1H1219V203H817V304L1225 883H1364V320H1489V203ZM1219
+320V515Q1219 649 1225 724Q1220 712 1208 693T1181 651T1151 606T1125 566L957 320H1219Z" />
+<glyph unicode="&#xbd;" glyph-name="onehalf" horiz-adv-x="1597" d="M1230 1462L327 0H184L1087 1462H1230ZM564 1462H707V586H574V1165Q574 1256 580 1346Q558 1324 531 1302T369 1184L302 1280L564 1462ZM1499 1H895V105L1131 335Q1220 421 1261 469T1318
+556T1335 648Q1335 716 1295 750T1192 785Q1140 785 1091 766T973 697L907 785Q1038 896 1190 896Q1322 896 1395 831T1469 654Q1469 574 1425 499T1233 285L1059 120H1499V1Z" />
+<glyph unicode="&#xbe;" glyph-name="threequarters" horiz-adv-x="1597" d="M876 1255Q876 1175 835 1124T726 1049Q902 1002 902 840Q902 712 810 641T550 569Q398 569 282 625V748Q429 680 552 680Q763 680 763 842Q763 987 532 987H415V1094H534Q637 1094
+686 1133T736 1241Q736 1302 696 1336T589 1370Q523 1370 467 1349T355 1292L286 1382Q349 1427 419 1454T583 1481Q719 1481 797 1422T876 1255ZM1390 1462L487 0H344L1247 1462H1390ZM1569 203H1444V1H1299V203H897V304L1305 883H1444V320H1569V203ZM1299 320V515Q1299
+649 1305 724Q1300 712 1288 693T1261 651T1231 606T1205 566L1037 320H1299Z" />
+<glyph unicode="&#xbf;" glyph-name="questiondown" horiz-adv-x="879" d="M590 684V633Q590 511 553 437T418 279Q297 173 267 136T224 60T211 -35Q211 -135 277 -191T465 -248Q545 -248 620 -229T793 -162L852 -297Q655 -393 457 -393Q267 -393 159 -300T51
+-37Q51 33 68 85T118 182T194 268T293 356Q394 444 426 502T459 653V684H590ZM639 983Q639 848 518 848Q459 848 428 882T397 983Q397 1047 430 1082T518 1118Q569 1118 604 1086T639 983Z" />
+<glyph unicode="&#xc0;" glyph-name="Agrave" horiz-adv-x="1296" d="M1120 0L938 465H352L172 0H0L578 1468H721L1296 0H1120ZM885 618L715 1071Q682 1157 647 1282Q625 1186 584 1071L412 618H885ZM724 1579H614Q549 1631 460 1727T331 1886V1907H534Q566 1838
+623 1748T724 1604V1579Z" />
+<glyph unicode="&#xc1;" glyph-name="Aacute" horiz-adv-x="1296" d="M1120 0L938 465H352L172 0H0L578 1468H721L1296 0H1120ZM885 618L715 1071Q682 1157 647 1282Q625 1186 584 1071L412 618H885ZM526 1604Q574 1666 629 1754T717 1907H919V1886Q875 1821 788
+1726T637 1579H526V1604Z" />
+<glyph unicode="&#xc2;" glyph-name="Acircumflex" horiz-adv-x="1296" d="M1120 0L938 465H352L172 0H0L578 1468H721L1296 0H1120ZM885 618L715 1071Q682 1157 647 1282Q625 1186 584 1071L412 618H885ZM303 1602Q430 1738 481 1802T555 1907H721Q743 1865 797
+1799T977 1602V1579H858Q770 1634 637 1765Q501 1631 418 1579H303V1602Z" />
+<glyph unicode="&#xc3;" glyph-name="Atilde" horiz-adv-x="1296" d="M1120 0L938 465H352L172 0H0L578 1468H721L1296 0H1120ZM885 618L715 1071Q682 1157 647 1282Q625 1186 584 1071L412 618H885ZM792 1581Q749 1581 708 1599T628 1640T552 1681T481 1700Q431
+1700 406 1670T366 1579H268Q281 1700 338 1768T487 1837Q533 1837 576 1819T658 1778T733 1737T801 1718Q850 1718 874 1747T913 1839H1012Q999 1718 943 1650T792 1581Z" />
+<glyph unicode="&#xc4;" glyph-name="Adieresis" horiz-adv-x="1296" d="M1120 0L938 465H352L172 0H0L578 1468H721L1296 0H1120ZM885 618L715 1071Q682 1157 647 1282Q625 1186 584 1071L412 618H885ZM364 1731Q364 1783 390 1806T454 1829Q492 1829 519 1806T547
+1731Q547 1681 520 1657T454 1632Q417 1632 391 1656T364 1731ZM745 1731Q745 1783 771 1806T835 1829Q872 1829 899 1806T927 1731Q927 1681 900 1657T835 1632Q798 1632 772 1656T745 1731Z" />
+<glyph unicode="&#xc5;" glyph-name="Aring" horiz-adv-x="1296" d="M1120 0L938 465H352L172 0H0L578 1468H721L1296 0H1120ZM885 618L715 1071Q682 1157 647 1282Q625 1186 584 1071L412 618H885ZM870 1587Q870 1489 809 1430T645 1370Q544 1370 484 1428T424
+1585Q424 1683 484 1740T645 1798Q746 1798 808 1739T870 1587ZM762 1585Q762 1641 729 1671T645 1702Q594 1702 561 1672T528 1585Q528 1529 558 1499T645 1468Q697 1468 729 1498T762 1585Z" />
+<glyph unicode="&#xc6;" glyph-name="AE" horiz-adv-x="1788" d="M1665 0H915V465H401L174 0H-2L696 1462H1665V1311H1085V840H1626V690H1085V152H1665V0ZM469 618H915V1311H797L469 618Z" />
+<glyph unicode="&#xc7;" glyph-name="Ccedilla" horiz-adv-x="1292" d="M827 1331Q586 1331 447 1171T307 731Q307 444 441 288T825 131Q978 131 1174 186V37Q1022 -20 799 -20Q476 -20 301 176T125 733Q125 959 209 1129T453 1391T829 1483Q1059 1483 1231 1399L1159
+1253Q993 1331 827 1331ZM950 -289Q950 -386 874 -439T647 -492Q596 -492 551 -483V-377Q596 -385 655 -385Q734 -385 774 -365T815 -291Q815 -248 776 -222T627 -178L715 0H825L770 -115Q950 -154 950 -289Z" />
+<glyph unicode="&#xc8;" glyph-name="Egrave" horiz-adv-x="1139" d="M1016 0H201V1462H1016V1311H371V840H977V690H371V152H1016V0ZM713 1579H603Q538 1631 449 1727T320 1886V1907H523Q555 1838 612 1748T713 1604V1579Z" />
+<glyph unicode="&#xc9;" glyph-name="Eacute" horiz-adv-x="1139" d="M1016 0H201V1462H1016V1311H371V840H977V690H371V152H1016V0ZM456 1604Q504 1666 559 1754T647 1907H849V1886Q805 1821 718 1726T567 1579H456V1604Z" />
+<glyph unicode="&#xca;" glyph-name="Ecircumflex" horiz-adv-x="1139" d="M1016 0H201V1462H1016V1311H371V840H977V690H371V152H1016V0ZM263 1602Q390 1738 441 1802T515 1907H681Q703 1865 757 1799T937 1602V1579H818Q730 1634 597 1765Q461 1631 378 1579H263V1602Z" />
+<glyph unicode="&#xcb;" glyph-name="Edieresis" horiz-adv-x="1139" d="M1016 0H201V1462H1016V1311H371V840H977V690H371V152H1016V0ZM327 1731Q327 1783 353 1806T417 1829Q455 1829 482 1806T510 1731Q510 1681 483 1657T417 1632Q380 1632 354 1656T327 1731ZM708
+1731Q708 1783 734 1806T798 1829Q835 1829 862 1806T890 1731Q890 1681 863 1657T798 1632Q761 1632 735 1656T708 1731Z" />
+<glyph unicode="&#xcc;" glyph-name="Igrave" horiz-adv-x="571" d="M201 0V1462H371V0H201ZM398 1579H288Q223 1631 134 1727T5 1886V1907H208Q240 1838 297 1748T398 1604V1579Z" />
+<glyph unicode="&#xcd;" glyph-name="Iacute" horiz-adv-x="571" d="M201 0V1462H371V0H201ZM179 1604Q227 1666 282 1754T370 1907H572V1886Q528 1821 441 1726T290 1579H179V1604Z" />
+<glyph unicode="&#xce;" glyph-name="Icircumflex" horiz-adv-x="571" d="M201 0V1462H371V0H201ZM-57 1602Q70 1738 121 1802T195 1907H361Q383 1865 437 1799T617 1602V1579H498Q410 1634 277 1765Q141 1631 58 1579H-57V1602Z" />
+<glyph unicode="&#xcf;" glyph-name="Idieresis" horiz-adv-x="571" d="M201 0V1462H371V0H201ZM5 1731Q5 1783 31 1806T95 1829Q133 1829 160 1806T188 1731Q188 1681 161 1657T95 1632Q58 1632 32 1656T5 1731ZM386 1731Q386 1783 412 1806T476 1829Q513 1829
+540 1806T568 1731Q568 1681 541 1657T476 1632Q439 1632 413 1656T386 1731Z" />
+<glyph unicode="&#xd0;" glyph-name="Eth" horiz-adv-x="1479" d="M1352 745Q1352 383 1156 192T590 0H201V649H47V799H201V1462H635Q972 1462 1162 1275T1352 745ZM1171 739Q1171 1315 602 1315H371V799H750V649H371V147H561Q1171 147 1171 739Z" />
+<glyph unicode="&#xd1;" glyph-name="Ntilde" horiz-adv-x="1544" d="M1343 0H1149L350 1227H342Q358 1011 358 831V0H201V1462H393L1190 240H1198Q1196 267 1189 413T1184 623V1462H1343V0ZM935 1581Q892 1581 851 1599T771 1640T695 1681T624 1700Q574 1700
+549 1670T509 1579H411Q424 1700 481 1768T630 1837Q676 1837 719 1819T801 1778T876 1737T944 1718Q993 1718 1017 1747T1056 1839H1155Q1142 1718 1086 1650T935 1581Z" />
+<glyph unicode="&#xd2;" glyph-name="Ograve" horiz-adv-x="1595" d="M1470 733Q1470 382 1293 181T799 -20Q476 -20 301 177T125 735Q125 1092 301 1288T801 1485Q1116 1485 1293 1285T1470 733ZM305 733Q305 436 431 283T799 129Q1042 129 1166 282T1290 733Q1290
+1028 1167 1180T801 1333Q558 1333 432 1180T305 733ZM907 1579H797Q732 1631 643 1727T514 1886V1907H717Q749 1838 806 1748T907 1604V1579Z" />
+<glyph unicode="&#xd3;" glyph-name="Oacute" horiz-adv-x="1595" d="M1470 733Q1470 382 1293 181T799 -20Q476 -20 301 177T125 735Q125 1092 301 1288T801 1485Q1116 1485 1293 1285T1470 733ZM305 733Q305 436 431 283T799 129Q1042 129 1166 282T1290 733Q1290
+1028 1167 1180T801 1333Q558 1333 432 1180T305 733ZM659 1604Q707 1666 762 1754T850 1907H1052V1886Q1008 1821 921 1726T770 1579H659V1604Z" />
+<glyph unicode="&#xd4;" glyph-name="Ocircumflex" horiz-adv-x="1595" d="M1470 733Q1470 382 1293 181T799 -20Q476 -20 301 177T125 735Q125 1092 301 1288T801 1485Q1116 1485 1293 1285T1470 733ZM305 733Q305 436 431 283T799 129Q1042 129 1166 282T1290
+733Q1290 1028 1167 1180T801 1333Q558 1333 432 1180T305 733ZM448 1602Q575 1738 626 1802T700 1907H866Q888 1865 942 1799T1122 1602V1579H1003Q915 1634 782 1765Q646 1631 563 1579H448V1602Z" />
+<glyph unicode="&#xd5;" glyph-name="Otilde" horiz-adv-x="1595" d="M1470 733Q1470 382 1293 181T799 -20Q476 -20 301 177T125 735Q125 1092 301 1288T801 1485Q1116 1485 1293 1285T1470 733ZM305 733Q305 436 431 283T799 129Q1042 129 1166 282T1290 733Q1290
+1028 1167 1180T801 1333Q558 1333 432 1180T305 733ZM942 1581Q899 1581 858 1599T778 1640T702 1681T631 1700Q581 1700 556 1670T516 1579H418Q431 1700 488 1768T637 1837Q683 1837 726 1819T808 1778T883 1737T951 1718Q1000 1718 1024 1747T1063 1839H1162Q1149
+1718 1093 1650T942 1581Z" />
+<glyph unicode="&#xd6;" glyph-name="Odieresis" horiz-adv-x="1595" d="M1470 733Q1470 382 1293 181T799 -20Q476 -20 301 177T125 735Q125 1092 301 1288T801 1485Q1116 1485 1293 1285T1470 733ZM305 733Q305 436 431 283T799 129Q1042 129 1166 282T1290
+733Q1290 1028 1167 1180T801 1333Q558 1333 432 1180T305 733ZM522 1731Q522 1783 548 1806T612 1829Q650 1829 677 1806T705 1731Q705 1681 678 1657T612 1632Q575 1632 549 1656T522 1731ZM903 1731Q903 1783 929 1806T993 1829Q1030 1829 1057 1806T1085 1731Q1085
+1681 1058 1657T993 1632Q956 1632 930 1656T903 1731Z" />
+<glyph unicode="&#xd7;" glyph-name="multiply" horiz-adv-x="1171" d="M940 1176L1036 1077L684 723L1034 371L938 272L584 623L236 272L135 371L485 723L133 1075L233 1176L586 821L940 1176Z" />
+<glyph unicode="&#xd8;" glyph-name="Oslash" horiz-adv-x="1595" d="M1470 733Q1470 382 1293 181T799 -20Q564 -20 416 80L315 -61L195 18L303 172Q125 370 125 735Q125 1092 301 1288T801 1485Q1010 1485 1167 1391L1264 1526L1384 1446L1278 1298Q1470 1096
+1470 733ZM1290 733Q1290 1005 1180 1159L508 211Q623 129 799 129Q1042 129 1166 282T1290 733ZM305 733Q305 471 406 317L1075 1260Q969 1333 801 1333Q558 1333 432 1180T305 733Z" />
+<glyph unicode="&#xd9;" glyph-name="Ugrave" horiz-adv-x="1491" d="M1305 1462V516Q1305 266 1154 123T739 -20Q475 -20 331 124T186 520V1462H356V508Q356 325 456 227T750 129Q935 129 1035 227T1135 510V1462H1305ZM856 1579H746Q681 1631 592 1727T463 1886V1907H666Q698
+1838 755 1748T856 1604V1579Z" />
+<glyph unicode="&#xda;" glyph-name="Uacute" horiz-adv-x="1491" d="M1305 1462V516Q1305 266 1154 123T739 -20Q475 -20 331 124T186 520V1462H356V508Q356 325 456 227T750 129Q935 129 1035 227T1135 510V1462H1305ZM600 1604Q648 1666 703 1754T791 1907H993V1886Q949
+1821 862 1726T711 1579H600V1604Z" />
+<glyph unicode="&#xdb;" glyph-name="Ucircumflex" horiz-adv-x="1491" d="M1305 1462V516Q1305 266 1154 123T739 -20Q475 -20 331 124T186 520V1462H356V508Q356 325 456 227T750 129Q935 129 1035 227T1135 510V1462H1305ZM393 1602Q520 1738 571 1802T645
+1907H811Q833 1865 887 1799T1067 1602V1579H948Q860 1634 727 1765Q591 1631 508 1579H393V1602Z" />
+<glyph unicode="&#xdc;" glyph-name="Udieresis" horiz-adv-x="1491" d="M1305 1462V516Q1305 266 1154 123T739 -20Q475 -20 331 124T186 520V1462H356V508Q356 325 456 227T750 129Q935 129 1035 227T1135 510V1462H1305ZM461 1731Q461 1783 487 1806T551 1829Q589
+1829 616 1806T644 1731Q644 1681 617 1657T551 1632Q514 1632 488 1656T461 1731ZM842 1731Q842 1783 868 1806T932 1829Q969 1829 996 1806T1024 1731Q1024 1681 997 1657T932 1632Q895 1632 869 1656T842 1731Z" />
+<glyph unicode="&#xdd;" glyph-name="Yacute" horiz-adv-x="1147" d="M573 731L963 1462H1147L659 567V0H487V559L0 1462H186L573 731ZM442 1604Q490 1666 545 1754T633 1907H835V1886Q791 1821 704 1726T553 1579H442V1604Z" />
+<glyph unicode="&#xde;" glyph-name="Thorn" horiz-adv-x="1251" d="M1145 784Q1145 557 994 438T555 319H371V0H201V1462H371V1206H586Q867 1206 1006 1103T1145 784ZM371 465H539Q765 465 866 536T967 772Q967 921 872 990T575 1059H371V465Z" />
+<glyph unicode="&#xdf;" glyph-name="germandbls" horiz-adv-x="1274" d="M1049 1266Q1049 1131 906 1016Q818 946 790 913T762 846Q762 814 775 793T824 744T938 664Q1078 569 1129 491T1180 311Q1180 151 1083 66T807 -20Q619 -20 512 49V203Q575 164 653 141T803
+117Q1018 117 1018 299Q1018 374 977 427T825 551Q698 633 650 694T602 840Q602 903 636 956T742 1062Q817 1119 849 1164T881 1262Q881 1342 813 1384T618 1427Q342 1427 342 1204V0H176V1202Q176 1380 286 1473T618 1567Q824 1567 936 1489T1049 1266Z" />
+<glyph unicode="&#xe0;" glyph-name="agrave" horiz-adv-x="1139" d="M850 0L817 156H809Q727 53 646 17T442 -20Q279 -20 187 64T94 303Q94 635 625 651L811 657V725Q811 854 756 915T578 977Q441 977 268 893L217 1020Q298 1064 394 1089T588 1114Q784 1114
+878 1027T973 748V0H850ZM475 117Q630 117 718 202T807 440V539L641 532Q443 525 356 471T268 301Q268 211 322 164T475 117ZM928 1241H818Q753 1293 664 1389T535 1548V1569H738Q770 1500 827 1410T928 1266V1241Z" />
+<glyph unicode="&#xe1;" glyph-name="aacute" horiz-adv-x="1139" d="M850 0L817 156H809Q727 53 646 17T442 -20Q279 -20 187 64T94 303Q94 635 625 651L811 657V725Q811 854 756 915T578 977Q441 977 268 893L217 1020Q298 1064 394 1089T588 1114Q784 1114
+878 1027T973 748V0H850ZM475 117Q630 117 718 202T807 440V539L641 532Q443 525 356 471T268 301Q268 211 322 164T475 117ZM436 1266Q484 1328 539 1416T627 1569H829V1548Q785 1483 698 1388T547 1241H436V1266Z" />
+<glyph unicode="&#xe2;" glyph-name="acircumflex" horiz-adv-x="1139" d="M850 0L817 156H809Q727 53 646 17T442 -20Q279 -20 187 64T94 303Q94 635 625 651L811 657V725Q811 854 756 915T578 977Q441 977 268 893L217 1020Q298 1064 394 1089T588 1114Q784
+1114 878 1027T973 748V0H850ZM475 117Q630 117 718 202T807 440V539L641 532Q443 525 356 471T268 301Q268 211 322 164T475 117ZM484 1264Q611 1400 662 1464T736 1569H902Q924 1527 978 1461T1158 1264V1241H1039Q951 1296 818 1427Q682 1293 599 1241H484V1264Z"
+/>
+<glyph unicode="&#xe3;" glyph-name="atilde" horiz-adv-x="1139" d="M850 0L817 156H809Q727 53 646 17T442 -20Q279 -20 187 64T94 303Q94 635 625 651L811 657V725Q811 854 756 915T578 977Q441 977 268 893L217 1020Q298 1064 394 1089T588 1114Q784 1114
+878 1027T973 748V0H850ZM475 117Q630 117 718 202T807 440V539L641 532Q443 525 356 471T268 301Q268 211 322 164T475 117ZM977 1243Q934 1243 893 1261T813 1302T737 1343T666 1362Q616 1362 591 1332T551 1241H453Q466 1362 523 1430T672 1499Q718 1499 761
+1481T843 1440T918 1399T986 1380Q1035 1380 1059 1409T1098 1501H1197Q1184 1380 1128 1312T977 1243Z" />
+<glyph unicode="&#xe4;" glyph-name="adieresis" horiz-adv-x="1139" d="M850 0L817 156H809Q727 53 646 17T442 -20Q279 -20 187 64T94 303Q94 635 625 651L811 657V725Q811 854 756 915T578 977Q441 977 268 893L217 1020Q298 1064 394 1089T588 1114Q784 1114
+878 1027T973 748V0H850ZM475 117Q630 117 718 202T807 440V539L641 532Q443 525 356 471T268 301Q268 211 322 164T475 117ZM535 1393Q535 1445 561 1468T625 1491Q663 1491 690 1468T718 1393Q718 1343 691 1319T625 1294Q588 1294 562 1318T535 1393ZM916 1393Q916
+1445 942 1468T1006 1491Q1043 1491 1070 1468T1098 1393Q1098 1343 1071 1319T1006 1294Q969 1294 943 1318T916 1393Z" />
+<glyph unicode="&#xe5;" glyph-name="aring" horiz-adv-x="1139" d="M850 0L817 156H809Q727 53 646 17T442 -20Q279 -20 187 64T94 303Q94 635 625 651L811 657V725Q811 854 756 915T578 977Q441 977 268 893L217 1020Q298 1064 394 1089T588 1114Q784 1114 878
+1027T973 748V0H850ZM475 117Q630 117 718 202T807 440V539L641 532Q443 525 356 471T268 301Q268 211 322 164T475 117ZM1060 1458Q1060 1360 999 1301T835 1241Q734 1241 674 1299T614 1456Q614 1554 674 1611T835 1669Q936 1669 998 1610T1060 1458ZM952 1456Q952
+1512 919 1542T835 1573Q784 1573 751 1543T718 1456Q718 1400 748 1370T835 1339Q887 1339 919 1369T952 1456Z" />
+<glyph unicode="&#xe6;" glyph-name="ae" horiz-adv-x="1757" d="M94 303Q94 464 218 553T596 651L780 657V725Q780 854 722 915T545 977Q401 977 238 893L186 1020Q260 1061 359 1087T557 1114Q687 1114 769 1071T893 932Q946 1020 1031 1068T1227 1116Q1419
+1116 1535 983T1651 627V520H950Q958 125 1272 125Q1363 125 1441 142T1604 199V51Q1518 13 1444 -3T1268 -20Q979 -20 854 213Q773 86 675 33T442 -20Q279 -20 187 65T94 303ZM268 301Q268 206 321 162T463 117Q608 117 692 201T776 440V539L618 532Q432 524 350
+470T268 301ZM1225 977Q1104 977 1035 894T954 653H1473Q1473 809 1409 893T1225 977Z" />
+<glyph unicode="&#xe7;" glyph-name="ccedilla" horiz-adv-x="975" d="M614 -20Q376 -20 246 126T115 541Q115 816 247 966T625 1116Q704 1116 783 1099T907 1059L856 918Q801 940 736 954T621 969Q287 969 287 543Q287 341 368 233T610 125Q747 125 891 184V37Q781
+-20 614 -20ZM762 -289Q762 -386 686 -439T459 -492Q408 -492 363 -483V-377Q408 -385 467 -385Q546 -385 586 -365T627 -291Q627 -248 588 -222T439 -178L527 0H637L582 -115Q762 -154 762 -289Z" />
+<glyph unicode="&#xe8;" glyph-name="egrave" horiz-adv-x="1149" d="M639 -20Q396 -20 256 128T115 539Q115 804 245 960T596 1116Q802 1116 922 981T1042 623V518H287Q292 325 384 225T645 125Q822 125 995 199V51Q907 13 829 -3T639 -20ZM594 977Q462 977 384
+891T291 653H864Q864 810 794 893T594 977ZM967 1241H857Q792 1293 703 1389T574 1548V1569H777Q809 1500 866 1410T967 1266V1241Z" />
+<glyph unicode="&#xe9;" glyph-name="eacute" horiz-adv-x="1149" d="M639 -20Q396 -20 256 128T115 539Q115 804 245 960T596 1116Q802 1116 922 981T1042 623V518H287Q292 325 384 225T645 125Q822 125 995 199V51Q907 13 829 -3T639 -20ZM594 977Q462 977 384
+891T291 653H864Q864 810 794 893T594 977ZM471 1266Q519 1328 574 1416T662 1569H864V1548Q820 1483 733 1388T582 1241H471V1266Z" />
+<glyph unicode="&#xea;" glyph-name="ecircumflex" horiz-adv-x="1149" d="M639 -20Q396 -20 256 128T115 539Q115 804 245 960T596 1116Q802 1116 922 981T1042 623V518H287Q292 325 384 225T645 125Q822 125 995 199V51Q907 13 829 -3T639 -20ZM594 977Q462
+977 384 891T291 653H864Q864 810 794 893T594 977ZM515 1264Q642 1400 693 1464T767 1569H933Q955 1527 1009 1461T1189 1264V1241H1070Q982 1296 849 1427Q713 1293 630 1241H515V1264Z" />
+<glyph unicode="&#xeb;" glyph-name="edieresis" horiz-adv-x="1149" d="M639 -20Q396 -20 256 128T115 539Q115 804 245 960T596 1116Q802 1116 922 981T1042 623V518H287Q292 325 384 225T645 125Q822 125 995 199V51Q907 13 829 -3T639 -20ZM594 977Q462 977
+384 891T291 653H864Q864 810 794 893T594 977ZM319 1393Q319 1445 345 1468T409 1491Q447 1491 474 1468T502 1393Q502 1343 475 1319T409 1294Q372 1294 346 1318T319 1393ZM700 1393Q700 1445 726 1468T790 1491Q827 1491 854 1468T882 1393Q882 1343 855 1319T790
+1294Q753 1294 727 1318T700 1393Z" />
+<glyph unicode="&#xec;" glyph-name="igrave" horiz-adv-x="518" d="M342 0H176V1096H342V0ZM355 1241H245Q180 1293 91 1389T-38 1548V1569H165Q197 1500 254 1410T355 1266V1241Z" />
+<glyph unicode="&#xed;" glyph-name="iacute" horiz-adv-x="518" d="M342 0H176V1096H342V0ZM169 1266Q217 1328 272 1416T360 1569H562V1548Q518 1483 431 1388T280 1241H169V1266Z" />
+<glyph unicode="&#xee;" glyph-name="icircumflex" horiz-adv-x="518" d="M342 0H176V1096H342V0ZM-77 1264Q50 1400 101 1464T175 1569H341Q363 1527 417 1461T597 1264V1241H478Q390 1296 257 1427Q121 1293 38 1241H-77V1264Z" />
+<glyph unicode="&#xef;" glyph-name="idieresis" horiz-adv-x="518" d="M342 0H176V1096H342V0ZM-20 1393Q-20 1445 6 1468T70 1491Q108 1491 135 1468T163 1393Q163 1343 136 1319T70 1294Q33 1294 7 1318T-20 1393ZM361 1393Q361 1445 387 1468T451 1491Q488
+1491 515 1468T543 1393Q543 1343 516 1319T451 1294Q414 1294 388 1318T361 1393Z" />
+<glyph unicode="&#xf0;" glyph-name="eth" horiz-adv-x="1221" d="M1122 563Q1122 282 992 131T614 -20Q392 -20 253 114T113 475Q113 705 244 836T596 967Q822 967 922 846L930 850Q873 1064 668 1255L397 1100L324 1208L557 1341Q465 1403 371 1452L440 1569Q596
+1496 698 1421L936 1559L1012 1452L805 1333Q957 1190 1039 991T1122 563ZM954 512Q954 659 864 744T618 829Q281 829 281 469Q281 302 368 211T618 119Q793 119 873 219T954 512Z" />
+<glyph unicode="&#xf1;" glyph-name="ntilde" horiz-adv-x="1257" d="M926 0V709Q926 843 865 909T674 975Q502 975 422 882T342 575V0H176V1096H311L338 946H346Q397 1027 489 1071T694 1116Q892 1116 992 1021T1092 715V0H926ZM802 1243Q759 1243 718 1261T638
+1302T562 1343T491 1362Q441 1362 416 1332T376 1241H278Q291 1362 348 1430T497 1499Q543 1499 586 1481T668 1440T743 1399T811 1380Q860 1380 884 1409T923 1501H1022Q1009 1380 953 1312T802 1243Z" />
+<glyph unicode="&#xf2;" glyph-name="ograve" horiz-adv-x="1237" d="M1122 549Q1122 281 987 131T614 -20Q467 -20 353 49T177 247T115 549Q115 817 249 966T621 1116Q851 1116 986 963T1122 549ZM287 549Q287 339 371 229T618 119Q781 119 865 228T950 549Q950
+758 866 866T616 975Q453 975 370 868T287 549ZM998 1241H888Q823 1293 734 1389T605 1548V1569H808Q840 1500 897 1410T998 1266V1241Z" />
+<glyph unicode="&#xf3;" glyph-name="oacute" horiz-adv-x="1237" d="M1122 549Q1122 281 987 131T614 -20Q467 -20 353 49T177 247T115 549Q115 817 249 966T621 1116Q851 1116 986 963T1122 549ZM287 549Q287 339 371 229T618 119Q781 119 865 228T950 549Q950
+758 866 866T616 975Q453 975 370 868T287 549ZM479 1266Q527 1328 582 1416T670 1569H872V1548Q828 1483 741 1388T590 1241H479V1266Z" />
+<glyph unicode="&#xf4;" glyph-name="ocircumflex" horiz-adv-x="1237" d="M1122 549Q1122 281 987 131T614 -20Q467 -20 353 49T177 247T115 549Q115 817 249 966T621 1116Q851 1116 986 963T1122 549ZM287 549Q287 339 371 229T618 119Q781 119 865 228T950
+549Q950 758 866 866T616 975Q453 975 370 868T287 549ZM282 1264Q409 1400 460 1464T534 1569H700Q722 1527 776 1461T956 1264V1241H837Q749 1296 616 1427Q480 1293 397 1241H282V1264Z" />
+<glyph unicode="&#xf5;" glyph-name="otilde" horiz-adv-x="1237" d="M1122 549Q1122 281 987 131T614 -20Q467 -20 353 49T177 247T115 549Q115 817 249 966T621 1116Q851 1116 986 963T1122 549ZM287 549Q287 339 371 229T618 119Q781 119 865 228T950 549Q950
+758 866 866T616 975Q453 975 370 868T287 549ZM1029 1243Q986 1243 945 1261T865 1302T789 1343T718 1362Q668 1362 643 1332T603 1241H505Q518 1362 575 1430T724 1499Q770 1499 813 1481T895 1440T970 1399T1038 1380Q1087 1380 1111 1409T1150 1501H1249Q1236
+1380 1180 1312T1029 1243Z" />
+<glyph unicode="&#xf6;" glyph-name="odieresis" horiz-adv-x="1237" d="M1122 549Q1122 281 987 131T614 -20Q467 -20 353 49T177 247T115 549Q115 817 249 966T621 1116Q851 1116 986 963T1122 549ZM287 549Q287 339 371 229T618 119Q781 119 865 228T950 549Q950
+758 866 866T616 975Q453 975 370 868T287 549ZM336 1393Q336 1445 362 1468T426 1491Q464 1491 491 1468T519 1393Q519 1343 492 1319T426 1294Q389 1294 363 1318T336 1393ZM717 1393Q717 1445 743 1468T807 1491Q844 1491 871 1468T899 1393Q899 1343 872 1319T807
+1294Q770 1294 744 1318T717 1393Z" />
+<glyph unicode="&#xf7;" glyph-name="divide" horiz-adv-x="1171" d="M104 653V791H1065V653H104ZM471 373Q471 433 500 463T584 494Q636 494 665 463T694 373Q694 316 665 284T584 252Q532 252 502 283T471 373ZM471 1071Q471 1131 500 1161T584 1192Q636 1192
+665 1161T694 1071Q694 1014 665 982T584 950Q532 950 502 981T471 1071Z" />
+<glyph unicode="&#xf8;" glyph-name="oslash" horiz-adv-x="1237" d="M1122 549Q1122 281 987 131T614 -20Q460 -20 348 49L264 -68L150 10L244 141Q115 293 115 549Q115 817 249 966T621 1116Q775 1116 891 1040L975 1159L1092 1083L995 950Q1122 798 1122 549ZM287
+549Q287 378 340 276L805 922Q730 975 616 975Q453 975 370 868T287 549ZM950 549Q950 713 899 813L434 170Q505 119 618 119Q781 119 865 228T950 549Z" />
+<glyph unicode="&#xf9;" glyph-name="ugrave" horiz-adv-x="1257" d="M332 1096V385Q332 251 393 185T584 119Q756 119 835 213T915 520V1096H1081V0H944L920 147H911Q860 66 770 23T563 -20Q363 -20 264 75T164 379V1096H332ZM982 1241H872Q807 1293 718 1389T589
+1548V1569H792Q824 1500 881 1410T982 1266V1241Z" />
+<glyph unicode="&#xfa;" glyph-name="uacute" horiz-adv-x="1257" d="M332 1096V385Q332 251 393 185T584 119Q756 119 835 213T915 520V1096H1081V0H944L920 147H911Q860 66 770 23T563 -20Q363 -20 264 75T164 379V1096H332ZM506 1266Q554 1328 609 1416T697
+1569H899V1548Q855 1483 768 1388T617 1241H506V1266Z" />
+<glyph unicode="&#xfb;" glyph-name="ucircumflex" horiz-adv-x="1257" d="M332 1096V385Q332 251 393 185T584 119Q756 119 835 213T915 520V1096H1081V0H944L920 147H911Q860 66 770 23T563 -20Q363 -20 264 75T164 379V1096H332ZM286 1264Q413 1400 464 1464T538
+1569H704Q726 1527 780 1461T960 1264V1241H841Q753 1296 620 1427Q484 1293 401 1241H286V1264Z" />
+<glyph unicode="&#xfc;" glyph-name="udieresis" horiz-adv-x="1257" d="M332 1096V385Q332 251 393 185T584 119Q756 119 835 213T915 520V1096H1081V0H944L920 147H911Q860 66 770 23T563 -20Q363 -20 264 75T164 379V1096H332ZM342 1393Q342 1445 368 1468T432
+1491Q470 1491 497 1468T525 1393Q525 1343 498 1319T432 1294Q395 1294 369 1318T342 1393ZM723 1393Q723 1445 749 1468T813 1491Q850 1491 877 1468T905 1393Q905 1343 878 1319T813 1294Q776 1294 750 1318T723 1393Z" />
+<glyph unicode="&#xfd;" glyph-name="yacute" horiz-adv-x="1032" d="M2 1096H180L420 471Q499 257 518 162H526Q539 213 580 336T852 1096H1030L559 -152Q489 -337 396 -414T166 -492Q90 -492 16 -475V-342Q71 -354 139 -354Q310 -354 383 -162L444 -6L2 1096ZM411
+1266Q459 1328 514 1416T602 1569H804V1548Q760 1483 673 1388T522 1241H411V1266Z" />
+<glyph unicode="&#xfe;" glyph-name="thorn" horiz-adv-x="1255" d="M344 948Q410 1037 495 1076T686 1116Q901 1116 1021 966T1141 549Q1141 281 1021 131T686 -20Q464 -20 342 141H330L334 107Q342 30 342 -33V-492H176V1556H342V1090Q342 1038 336 948H344ZM664
+975Q496 975 420 883T342 590V549Q342 318 419 219T666 119Q969 119 969 551Q969 766 895 870T664 975Z" />
+<glyph unicode="&#xff;" glyph-name="ydieresis" horiz-adv-x="1032" d="M2 1096H180L420 471Q499 257 518 162H526Q539 213 580 336T852 1096H1030L559 -152Q489 -337 396 -414T166 -492Q90 -492 16 -475V-342Q71 -354 139 -354Q310 -354 383 -162L444 -6L2 1096ZM490
+1393Q490 1445 516 1468T580 1491Q618 1491 645 1468T673 1393Q673 1343 646 1319T580 1294Q543 1294 517 1318T490 1393ZM871 1393Q871 1445 897 1468T961 1491Q998 1491 1025 1468T1053 1393Q1053 1343 1026 1319T961 1294Q924 1294 898 1318T871 1393Z" />
+<glyph unicode="&#x2013;" glyph-name="endash" horiz-adv-x="1024" d="M82 473V625H942V473H82Z" />
+<glyph unicode="&#x2014;" glyph-name="emdash" horiz-adv-x="2048" d="M82 473V625H1966V473H82Z" />
+<glyph unicode="&#x2018;" glyph-name="quoteleft" horiz-adv-x="348" d="M37 961L25 983Q47 1073 96 1207T201 1462H324Q258 1208 221 961H37Z" />
+<glyph unicode="&#x2019;" glyph-name="quoteright" horiz-adv-x="348" d="M309 1462L324 1440Q298 1340 249 1208T147 961H25Q95 1246 127 1462H309Z" />
+<glyph unicode="&#x201a;" glyph-name="quotesinglbase" horiz-adv-x="502" d="M350 238L365 215Q339 115 290 -17T188 -264H63Q90 -160 122 -7T168 238H350Z" />
+<glyph unicode="&#x201c;" glyph-name="quotedblleft" horiz-adv-x="717" d="M406 961L391 983Q447 1198 569 1462H692Q662 1347 633 1203T590 961H406ZM37 961L25 983Q47 1073 96 1207T201 1462H324Q258 1208 221 961H37Z" />
+<glyph unicode="&#x201d;" glyph-name="quotedblright" horiz-adv-x="717" d="M309 1462L324 1440Q298 1340 249 1208T147 961H25Q95 1246 127 1462H309ZM678 1462L692 1440Q668 1349 620 1216T516 961H391Q417 1061 450 1215T496 1462H678Z" />
+<glyph unicode="&#x201e;" glyph-name="quotedblbase" horiz-adv-x="829" d="M309 238L324 216Q298 116 249 -16T147 -263H25Q95 22 127 238H309ZM678 238L692 216Q668 125 620 -8T516 -263H391Q417 -163 450 -9T496 238H678Z" />
+<glyph unicode="&#x2022;" glyph-name="bullet" horiz-adv-x="770" d="M164 748Q164 869 220 932T385 995Q490 995 548 933T606 748Q606 629 549 565T385 500Q278 500 221 565T164 748Z" />
+<glyph unicode="&#x2039;" glyph-name="guilsinglleft" horiz-adv-x="623" d="M82 551L424 958L543 889L254 539L543 188L424 117L82 524V551Z" />
+<glyph unicode="&#x203a;" glyph-name="guilsinglright" horiz-adv-x="623" d="M541 524L197 117L80 188L367 539L80 889L197 958L541 551V524Z" />
+<hkern g1="quotedbl" g2="A" k="143" />
+<hkern g1="quotedbl" g2="T" k="-41" />
+<hkern g1="quotedbl" g2="V" k="-41" />
+<hkern g1="quotedbl" g2="W" k="-41" />
+<hkern g1="quotedbl" g2="Y" k="-20" />
+<hkern g1="quotedbl" g2="a" k="82" />
+<hkern g1="quotedbl" g2="c" k="123" />
+<hkern g1="quotedbl" g2="d" k="123" />
+<hkern g1="quotedbl" g2="e" k="123" />
+<hkern g1="quotedbl" g2="g" k="61" />
+<hkern g1="quotedbl" g2="m" k="61" />
+<hkern g1="quotedbl" g2="n" k="61" />
+<hkern g1="quotedbl" g2="o" k="123" />
+<hkern g1="quotedbl" g2="p" k="61" />
+<hkern g1="quotedbl" g2="q" k="123" />
+<hkern g1="quotedbl" g2="r" k="61" />
+<hkern g1="quotedbl" g2="s" k="61" />
+<hkern g1="quotedbl" g2="u" k="61" />
+<hkern g1="quotedbl" g2="Agrave" k="143" />
+<hkern g1="quotedbl" g2="Aacute" k="143" />
+<hkern g1="quotedbl" g2="Acircumflex" k="143" />
+<hkern g1="quotedbl" g2="Atilde" k="143" />
+<hkern g1="quotedbl" g2="Adieresis" k="143" />
+<hkern g1="quotedbl" g2="Aring" k="143" />
+<hkern g1="quotedbl" g2="Yacute" k="-20" />
+<hkern g1="quotedbl" g2="agrave" k="123" />
+<hkern g1="quotedbl" g2="aacute" k="82" />
+<hkern g1="quotedbl" g2="acircumflex" k="82" />
+<hkern g1="quotedbl" g2="atilde" k="82" />
+<hkern g1="quotedbl" g2="adieresis" k="82" />
+<hkern g1="quotedbl" g2="aring" k="82" />
+<hkern g1="quotedbl" g2="ae" k="82" />
+<hkern g1="quotedbl" g2="ccedilla" k="123" />
+<hkern g1="quotedbl" g2="egrave" k="123" />
+<hkern g1="quotedbl" g2="eacute" k="123" />
+<hkern g1="quotedbl" g2="ecircumflex" k="123" />
+<hkern g1="quotedbl" g2="edieresis" k="123" />
+<hkern g1="quotedbl" g2="ograve" k="123" />
+<hkern g1="quotedbl" g2="oacute" k="123" />
+<hkern g1="quotedbl" g2="ocircumflex" k="123" />
+<hkern g1="quotedbl" g2="otilde" k="123" />
+<hkern g1="quotedbl" g2="odieresis" k="123" />
+<hkern g1="quotedbl" g2="oslash" k="123" />
+<hkern g1="quotedbl" g2="ugrave" k="61" />
+<hkern g1="quotedbl" g2="uacute" k="61" />
+<hkern g1="quotedbl" g2="ucircumflex" k="61" />
+<hkern g1="quotedbl" g2="udieresis" k="61" />
+<hkern g1="quotedbl" g2="oe" k="123" />
+<hkern g1="quotesingle" g2="A" k="143" />
+<hkern g1="quotesingle" g2="T" k="-41" />
+<hkern g1="quotesingle" g2="V" k="-41" />
+<hkern g1="quotesingle" g2="W" k="-41" />
+<hkern g1="quotesingle" g2="Y" k="-20" />
+<hkern g1="quotesingle" g2="a" k="82" />
+<hkern g1="quotesingle" g2="c" k="123" />
+<hkern g1="quotesingle" g2="d" k="123" />
+<hkern g1="quotesingle" g2="e" k="123" />
+<hkern g1="quotesingle" g2="g" k="61" />
+<hkern g1="quotesingle" g2="m" k="61" />
+<hkern g1="quotesingle" g2="n" k="61" />
+<hkern g1="quotesingle" g2="o" k="123" />
+<hkern g1="quotesingle" g2="p" k="61" />
+<hkern g1="quotesingle" g2="q" k="123" />
+<hkern g1="quotesingle" g2="r" k="61" />
+<hkern g1="quotesingle" g2="s" k="61" />
+<hkern g1="quotesingle" g2="u" k="61" />
+<hkern g1="quotesingle" g2="Agrave" k="143" />
+<hkern g1="quotesingle" g2="Aacute" k="143" />
+<hkern g1="quotesingle" g2="Acircumflex" k="143" />
+<hkern g1="quotesingle" g2="Atilde" k="143" />
+<hkern g1="quotesingle" g2="Adieresis" k="143" />
+<hkern g1="quotesingle" g2="Aring" k="143" />
+<hkern g1="quotesingle" g2="Yacute" k="-20" />
+<hkern g1="quotesingle" g2="agrave" k="123" />
+<hkern g1="quotesingle" g2="aacute" k="82" />
+<hkern g1="quotesingle" g2="acircumflex" k="82" />
+<hkern g1="quotesingle" g2="atilde" k="82" />
+<hkern g1="quotesingle" g2="adieresis" k="82" />
+<hkern g1="quotesingle" g2="aring" k="82" />
+<hkern g1="quotesingle" g2="ae" k="82" />
+<hkern g1="quotesingle" g2="ccedilla" k="123" />
+<hkern g1="quotesingle" g2="egrave" k="123" />
+<hkern g1="quotesingle" g2="eacute" k="123" />
+<hkern g1="quotesingle" g2="ecircumflex" k="123" />
+<hkern g1="quotesingle" g2="edieresis" k="123" />
+<hkern g1="quotesingle" g2="ograve" k="123" />
+<hkern g1="quotesingle" g2="oacute" k="123" />
+<hkern g1="quotesingle" g2="ocircumflex" k="123" />
+<hkern g1="quotesingle" g2="otilde" k="123" />
+<hkern g1="quotesingle" g2="odieresis" k="123" />
+<hkern g1="quotesingle" g2="oslash" k="123" />
+<hkern g1="quotesingle" g2="ugrave" k="61" />
+<hkern g1="quotesingle" g2="uacute" k="61" />
+<hkern g1="quotesingle" g2="ucircumflex" k="61" />
+<hkern g1="quotesingle" g2="udieresis" k="61" />
+<hkern g1="quotesingle" g2="oe" k="123" />
+<hkern g1="parenleft" g2="J" k="-184" />
+<hkern g1="comma" g2="C" k="102" />
+<hkern g1="comma" g2="G" k="102" />
+<hkern g1="comma" g2="O" k="102" />
+<hkern g1="comma" g2="Q" k="102" />
+<hkern g1="comma" g2="T" k="143" />
+<hkern g1="comma" g2="U" k="41" />
+<hkern g1="comma" g2="V" k="123" />
+<hkern g1="comma" g2="W" k="123" />
+<hkern g1="comma" g2="Y" k="123" />
+<hkern g1="comma" g2="Ccedilla" k="102" />
+<hkern g1="comma" g2="Ograve" k="102" />
+<hkern g1="comma" g2="Oacute" k="102" />
+<hkern g1="comma" g2="Ocircumflex" k="102" />
+<hkern g1="comma" g2="Otilde" k="102" />
+<hkern g1="comma" g2="Odieresis" k="102" />
+<hkern g1="comma" g2="Oslash" k="102" />
+<hkern g1="comma" g2="Ugrave" k="41" />
+<hkern g1="comma" g2="Uacute" k="41" />
+<hkern g1="comma" g2="Ucircumflex" k="41" />
+<hkern g1="comma" g2="Udieresis" k="41" />
+<hkern g1="comma" g2="Yacute" k="123" />
+<hkern g1="comma" g2="OE" k="102" />
+<hkern g1="hyphen" g2="T" k="82" />
+<hkern g1="period" g2="C" k="102" />
+<hkern g1="period" g2="G" k="102" />
+<hkern g1="period" g2="O" k="102" />
+<hkern g1="period" g2="Q" k="102" />
+<hkern g1="period" g2="T" k="143" />
+<hkern g1="period" g2="U" k="41" />
+<hkern g1="period" g2="V" k="123" />
+<hkern g1="period" g2="W" k="123" />
+<hkern g1="period" g2="Y" k="123" />
+<hkern g1="period" g2="Ccedilla" k="102" />
+<hkern g1="period" g2="Ograve" k="102" />
+<hkern g1="period" g2="Oacute" k="102" />
+<hkern g1="period" g2="Ocircumflex" k="102" />
+<hkern g1="period" g2="Otilde" k="102" />
+<hkern g1="period" g2="Odieresis" k="102" />
+<hkern g1="period" g2="Oslash" k="102" />
+<hkern g1="period" g2="Ugrave" k="41" />
+<hkern g1="period" g2="Uacute" k="41" />
+<hkern g1="period" g2="Ucircumflex" k="41" />
+<hkern g1="period" g2="Udieresis" k="41" />
+<hkern g1="period" g2="Yacute" k="123" />
+<hkern g1="period" g2="OE" k="102" />
+<hkern g1="A" g2="quotedbl" k="143" />
+<hkern g1="A" g2="quotesingle" k="143" />
+<hkern g1="A" g2="C" k="41" />
+<hkern g1="A" g2="G" k="41" />
+<hkern g1="A" g2="J" k="-266" />
+<hkern g1="A" g2="O" k="41" />
+<hkern g1="A" g2="Q" k="41" />
+<hkern g1="A" g2="T" k="143" />
+<hkern g1="A" g2="V" k="82" />
+<hkern g1="A" g2="W" k="82" />
+<hkern g1="A" g2="Y" k="123" />
+<hkern g1="A" g2="Ccedilla" k="41" />
+<hkern g1="A" g2="Ograve" k="41" />
+<hkern g1="A" g2="Oacute" k="41" />
+<hkern g1="A" g2="Ocircumflex" k="41" />
+<hkern g1="A" g2="Otilde" k="41" />
+<hkern g1="A" g2="Odieresis" k="41" />
+<hkern g1="A" g2="Oslash" k="41" />
+<hkern g1="A" g2="Yacute" k="123" />
+<hkern g1="A" g2="OE" k="41" />
+<hkern g1="A" g2="quoteright" k="143" />
+<hkern g1="A" g2="quotedblright" k="143" />
+<hkern g1="B" g2="comma" k="82" />
+<hkern g1="B" g2="period" k="82" />
+<hkern g1="B" g2="A" k="41" />
+<hkern g1="B" g2="T" k="61" />
+<hkern g1="B" g2="V" k="20" />
+<hkern g1="B" g2="W" k="20" />
+<hkern g1="B" g2="X" k="41" />
+<hkern g1="B" g2="Y" k="20" />
+<hkern g1="B" g2="Z" k="20" />
+<hkern g1="B" g2="Agrave" k="41" />
+<hkern g1="B" g2="Aacute" k="41" />
+<hkern g1="B" g2="Acircumflex" k="41" />
+<hkern g1="B" g2="Atilde" k="41" />
+<hkern g1="B" g2="Adieresis" k="41" />
+<hkern g1="B" g2="Aring" k="41" />
+<hkern g1="B" g2="Yacute" k="20" />
+<hkern g1="B" g2="quotesinglbase" k="82" />
+<hkern g1="B" g2="quotedblbase" k="82" />
+<hkern g1="C" g2="C" k="41" />
+<hkern g1="C" g2="G" k="41" />
+<hkern g1="C" g2="O" k="41" />
+<hkern g1="C" g2="Q" k="41" />
+<hkern g1="C" g2="Ccedilla" k="41" />
+<hkern g1="C" g2="Ograve" k="41" />
+<hkern g1="C" g2="Oacute" k="41" />
+<hkern g1="C" g2="Ocircumflex" k="41" />
+<hkern g1="C" g2="Otilde" k="41" />
+<hkern g1="C" g2="Odieresis" k="41" />
+<hkern g1="C" g2="Oslash" k="41" />
+<hkern g1="C" g2="OE" k="41" />
+<hkern g1="D" g2="comma" k="82" />
+<hkern g1="D" g2="period" k="82" />
+<hkern g1="D" g2="A" k="41" />
+<hkern g1="D" g2="T" k="61" />
+<hkern g1="D" g2="V" k="20" />
+<hkern g1="D" g2="W" k="20" />
+<hkern g1="D" g2="X" k="41" />
+<hkern g1="D" g2="Y" k="20" />
+<hkern g1="D" g2="Z" k="20" />
+<hkern g1="D" g2="Agrave" k="41" />
+<hkern g1="D" g2="Aacute" k="41" />
+<hkern g1="D" g2="Acircumflex" k="41" />
+<hkern g1="D" g2="Atilde" k="41" />
+<hkern g1="D" g2="Adieresis" k="41" />
+<hkern g1="D" g2="Aring" k="41" />
+<hkern g1="D" g2="Yacute" k="20" />
+<hkern g1="D" g2="quotesinglbase" k="82" />
+<hkern g1="D" g2="quotedblbase" k="82" />
+<hkern g1="E" g2="J" k="-123" />
+<hkern g1="F" g2="comma" k="123" />
+<hkern g1="F" g2="period" k="123" />
+<hkern g1="F" g2="question" k="-41" />
+<hkern g1="F" g2="A" k="41" />
+<hkern g1="F" g2="Agrave" k="41" />
+<hkern g1="F" g2="Aacute" k="41" />
+<hkern g1="F" g2="Acircumflex" k="41" />
+<hkern g1="F" g2="Atilde" k="41" />
+<hkern g1="F" g2="Adieresis" k="41" />
+<hkern g1="F" g2="Aring" k="41" />
+<hkern g1="F" g2="quotesinglbase" k="123" />
+<hkern g1="F" g2="quotedblbase" k="123" />
+<hkern g1="K" g2="C" k="41" />
+<hkern g1="K" g2="G" k="41" />
+<hkern g1="K" g2="O" k="41" />
+<hkern g1="K" g2="Q" k="41" />
+<hkern g1="K" g2="Ccedilla" k="41" />
+<hkern g1="K" g2="Ograve" k="41" />
+<hkern g1="K" g2="Oacute" k="41" />
+<hkern g1="K" g2="Ocircumflex" k="41" />
+<hkern g1="K" g2="Otilde" k="41" />
+<hkern g1="K" g2="Odieresis" k="41" />
+<hkern g1="K" g2="Oslash" k="41" />
+<hkern g1="K" g2="OE" k="41" />
+<hkern g1="L" g2="quotedbl" k="164" />
+<hkern g1="L" g2="quotesingle" k="164" />
+<hkern g1="L" g2="C" k="41" />
+<hkern g1="L" g2="G" k="41" />
+<hkern g1="L" g2="O" k="41" />
+<hkern g1="L" g2="Q" k="41" />
+<hkern g1="L" g2="T" k="41" />
+<hkern g1="L" g2="U" k="20" />
+<hkern g1="L" g2="V" k="41" />
+<hkern g1="L" g2="W" k="41" />
+<hkern g1="L" g2="Y" k="61" />
+<hkern g1="L" g2="Ccedilla" k="41" />
+<hkern g1="L" g2="Ograve" k="41" />
+<hkern g1="L" g2="Oacute" k="41" />
+<hkern g1="L" g2="Ocircumflex" k="41" />
+<hkern g1="L" g2="Otilde" k="41" />
+<hkern g1="L" g2="Odieresis" k="41" />
+<hkern g1="L" g2="Oslash" k="41" />
+<hkern g1="L" g2="Ugrave" k="20" />
+<hkern g1="L" g2="Uacute" k="20" />
+<hkern g1="L" g2="Ucircumflex" k="20" />
+<hkern g1="L" g2="Udieresis" k="20" />
+<hkern g1="L" g2="Yacute" k="61" />
+<hkern g1="L" g2="OE" k="41" />
+<hkern g1="L" g2="quoteright" k="164" />
+<hkern g1="L" g2="quotedblright" k="164" />
+<hkern g1="O" g2="comma" k="82" />
+<hkern g1="O" g2="period" k="82" />
+<hkern g1="O" g2="A" k="41" />
+<hkern g1="O" g2="T" k="61" />
+<hkern g1="O" g2="V" k="20" />
+<hkern g1="O" g2="W" k="20" />
+<hkern g1="O" g2="X" k="41" />
+<hkern g1="O" g2="Y" k="20" />
+<hkern g1="O" g2="Z" k="20" />
+<hkern g1="O" g2="Agrave" k="41" />
+<hkern g1="O" g2="Aacute" k="41" />
+<hkern g1="O" g2="Acircumflex" k="41" />
+<hkern g1="O" g2="Atilde" k="41" />
+<hkern g1="O" g2="Adieresis" k="41" />
+<hkern g1="O" g2="Aring" k="41" />
+<hkern g1="O" g2="Yacute" k="20" />
+<hkern g1="O" g2="quotesinglbase" k="82" />
+<hkern g1="O" g2="quotedblbase" k="82" />
+<hkern g1="P" g2="comma" k="266" />
+<hkern g1="P" g2="period" k="266" />
+<hkern g1="P" g2="A" k="102" />
+<hkern g1="P" g2="X" k="41" />
+<hkern g1="P" g2="Z" k="20" />
+<hkern g1="P" g2="Agrave" k="102" />
+<hkern g1="P" g2="Aacute" k="102" />
+<hkern g1="P" g2="Acircumflex" k="102" />
+<hkern g1="P" g2="Atilde" k="102" />
+<hkern g1="P" g2="Adieresis" k="102" />
+<hkern g1="P" g2="Aring" k="102" />
+<hkern g1="P" g2="quotesinglbase" k="266" />
+<hkern g1="P" g2="quotedblbase" k="266" />
+<hkern g1="Q" g2="comma" k="82" />
+<hkern g1="Q" g2="period" k="82" />
+<hkern g1="Q" g2="A" k="41" />
+<hkern g1="Q" g2="T" k="61" />
+<hkern g1="Q" g2="V" k="20" />
+<hkern g1="Q" g2="W" k="20" />
+<hkern g1="Q" g2="X" k="41" />
+<hkern g1="Q" g2="Y" k="20" />
+<hkern g1="Q" g2="Z" k="20" />
+<hkern g1="Q" g2="Agrave" k="41" />
+<hkern g1="Q" g2="Aacute" k="41" />
+<hkern g1="Q" g2="Acircumflex" k="41" />
+<hkern g1="Q" g2="Atilde" k="41" />
+<hkern g1="Q" g2="Adieresis" k="41" />
+<hkern g1="Q" g2="Aring" k="41" />
+<hkern g1="Q" g2="Yacute" k="20" />
+<hkern g1="Q" g2="quotesinglbase" k="82" />
+<hkern g1="Q" g2="quotedblbase" k="82" />
+<hkern g1="T" g2="comma" k="123" />
+<hkern g1="T" g2="hyphen" k="82" />
+<hkern g1="T" g2="period" k="123" />
+<hkern g1="T" g2="question" k="-41" />
+<hkern g1="T" g2="A" k="143" />
+<hkern g1="T" g2="C" k="41" />
+<hkern g1="T" g2="G" k="41" />
+<hkern g1="T" g2="O" k="41" />
+<hkern g1="T" g2="Q" k="41" />
+<hkern g1="T" g2="T" k="-41" />
+<hkern g1="T" g2="a" k="164" />
+<hkern g1="T" g2="c" k="143" />
+<hkern g1="T" g2="d" k="143" />
+<hkern g1="T" g2="e" k="143" />
+<hkern g1="T" g2="g" k="143" />
+<hkern g1="T" g2="m" k="102" />
+<hkern g1="T" g2="n" k="102" />
+<hkern g1="T" g2="o" k="143" />
+<hkern g1="T" g2="p" k="102" />
+<hkern g1="T" g2="q" k="143" />
+<hkern g1="T" g2="r" k="102" />
+<hkern g1="T" g2="s" k="123" />
+<hkern g1="T" g2="u" k="102" />
+<hkern g1="T" g2="v" k="41" />
+<hkern g1="T" g2="w" k="41" />
+<hkern g1="T" g2="x" k="41" />
+<hkern g1="T" g2="y" k="41" />
+<hkern g1="T" g2="z" k="82" />
+<hkern g1="T" g2="Agrave" k="143" />
+<hkern g1="T" g2="Aacute" k="143" />
+<hkern g1="T" g2="Acircumflex" k="143" />
+<hkern g1="T" g2="Atilde" k="143" />
+<hkern g1="T" g2="Adieresis" k="143" />
+<hkern g1="T" g2="Aring" k="143" />
+<hkern g1="T" g2="Ccedilla" k="41" />
+<hkern g1="T" g2="Ograve" k="41" />
+<hkern g1="T" g2="Oacute" k="41" />
+<hkern g1="T" g2="Ocircumflex" k="41" />
+<hkern g1="T" g2="Otilde" k="41" />
+<hkern g1="T" g2="Odieresis" k="41" />
+<hkern g1="T" g2="Oslash" k="41" />
+<hkern g1="T" g2="agrave" k="143" />
+<hkern g1="T" g2="aacute" k="164" />
+<hkern g1="T" g2="acircumflex" k="164" />
+<hkern g1="T" g2="atilde" k="164" />
+<hkern g1="T" g2="adieresis" k="164" />
+<hkern g1="T" g2="aring" k="164" />
+<hkern g1="T" g2="ae" k="164" />
+<hkern g1="T" g2="ccedilla" k="143" />
+<hkern g1="T" g2="egrave" k="143" />
+<hkern g1="T" g2="eacute" k="143" />
+<hkern g1="T" g2="ecircumflex" k="143" />
+<hkern g1="T" g2="edieresis" k="143" />
+<hkern g1="T" g2="ograve" k="143" />
+<hkern g1="T" g2="oacute" k="143" />
+<hkern g1="T" g2="ocircumflex" k="143" />
+<hkern g1="T" g2="otilde" k="143" />
+<hkern g1="T" g2="odieresis" k="143" />
+<hkern g1="T" g2="oslash" k="143" />
+<hkern g1="T" g2="ugrave" k="102" />
+<hkern g1="T" g2="uacute" k="102" />
+<hkern g1="T" g2="ucircumflex" k="102" />
+<hkern g1="T" g2="udieresis" k="102" />
+<hkern g1="T" g2="yacute" k="41" />
+<hkern g1="T" g2="OE" k="41" />
+<hkern g1="T" g2="oe" k="143" />
+<hkern g1="T" g2="endash" k="82" />
+<hkern g1="T" g2="emdash" k="82" />
+<hkern g1="T" g2="quotesinglbase" k="123" />
+<hkern g1="T" g2="quotedblbase" k="123" />
+<hkern g1="U" g2="comma" k="41" />
+<hkern g1="U" g2="period" k="41" />
+<hkern g1="U" g2="A" k="20" />
+<hkern g1="U" g2="Agrave" k="20" />
+<hkern g1="U" g2="Aacute" k="20" />
+<hkern g1="U" g2="Acircumflex" k="20" />
+<hkern g1="U" g2="Atilde" k="20" />
+<hkern g1="U" g2="Adieresis" k="20" />
+<hkern g1="U" g2="Aring" k="20" />
+<hkern g1="U" g2="quotesinglbase" k="41" />
+<hkern g1="U" g2="quotedblbase" k="41" />
+<hkern g1="V" g2="comma" k="102" />
+<hkern g1="V" g2="period" k="102" />
+<hkern g1="V" g2="question" k="-41" />
+<hkern g1="V" g2="A" k="82" />
+<hkern g1="V" g2="C" k="20" />
+<hkern g1="V" g2="G" k="20" />
+<hkern g1="V" g2="O" k="20" />
+<hkern g1="V" g2="Q" k="20" />
+<hkern g1="V" g2="a" k="41" />
+<hkern g1="V" g2="c" k="41" />
+<hkern g1="V" g2="d" k="41" />
+<hkern g1="V" g2="e" k="41" />
+<hkern g1="V" g2="g" k="20" />
+<hkern g1="V" g2="m" k="20" />
+<hkern g1="V" g2="n" k="20" />
+<hkern g1="V" g2="o" k="41" />
+<hkern g1="V" g2="p" k="20" />
+<hkern g1="V" g2="q" k="41" />
+<hkern g1="V" g2="r" k="20" />
+<hkern g1="V" g2="s" k="20" />
+<hkern g1="V" g2="u" k="20" />
+<hkern g1="V" g2="Agrave" k="82" />
+<hkern g1="V" g2="Aacute" k="82" />
+<hkern g1="V" g2="Acircumflex" k="82" />
+<hkern g1="V" g2="Atilde" k="82" />
+<hkern g1="V" g2="Adieresis" k="82" />
+<hkern g1="V" g2="Aring" k="82" />
+<hkern g1="V" g2="Ccedilla" k="20" />
+<hkern g1="V" g2="Ograve" k="20" />
+<hkern g1="V" g2="Oacute" k="20" />
+<hkern g1="V" g2="Ocircumflex" k="20" />
+<hkern g1="V" g2="Otilde" k="20" />
+<hkern g1="V" g2="Odieresis" k="20" />
+<hkern g1="V" g2="Oslash" k="20" />
+<hkern g1="V" g2="agrave" k="41" />
+<hkern g1="V" g2="aacute" k="41" />
+<hkern g1="V" g2="acircumflex" k="41" />
+<hkern g1="V" g2="atilde" k="41" />
+<hkern g1="V" g2="adieresis" k="41" />
+<hkern g1="V" g2="aring" k="41" />
+<hkern g1="V" g2="ae" k="41" />
+<hkern g1="V" g2="ccedilla" k="41" />
+<hkern g1="V" g2="egrave" k="41" />
+<hkern g1="V" g2="eacute" k="41" />
+<hkern g1="V" g2="ecircumflex" k="41" />
+<hkern g1="V" g2="edieresis" k="41" />
+<hkern g1="V" g2="ograve" k="41" />
+<hkern g1="V" g2="oacute" k="41" />
+<hkern g1="V" g2="ocircumflex" k="41" />
+<hkern g1="V" g2="otilde" k="41" />
+<hkern g1="V" g2="odieresis" k="41" />
+<hkern g1="V" g2="oslash" k="41" />
+<hkern g1="V" g2="ugrave" k="20" />
+<hkern g1="V" g2="uacute" k="20" />
+<hkern g1="V" g2="ucircumflex" k="20" />
+<hkern g1="V" g2="udieresis" k="20" />
+<hkern g1="V" g2="OE" k="20" />
+<hkern g1="V" g2="oe" k="41" />
+<hkern g1="V" g2="quotesinglbase" k="102" />
+<hkern g1="V" g2="quotedblbase" k="102" />
+<hkern g1="W" g2="comma" k="102" />
+<hkern g1="W" g2="period" k="102" />
+<hkern g1="W" g2="question" k="-41" />
+<hkern g1="W" g2="A" k="82" />
+<hkern g1="W" g2="C" k="20" />
+<hkern g1="W" g2="G" k="20" />
+<hkern g1="W" g2="O" k="20" />
+<hkern g1="W" g2="Q" k="20" />
+<hkern g1="W" g2="a" k="41" />
+<hkern g1="W" g2="c" k="41" />
+<hkern g1="W" g2="d" k="41" />
+<hkern g1="W" g2="e" k="41" />
+<hkern g1="W" g2="g" k="20" />
+<hkern g1="W" g2="m" k="20" />
+<hkern g1="W" g2="n" k="20" />
+<hkern g1="W" g2="o" k="41" />
+<hkern g1="W" g2="p" k="20" />
+<hkern g1="W" g2="q" k="41" />
+<hkern g1="W" g2="r" k="20" />
+<hkern g1="W" g2="s" k="20" />
+<hkern g1="W" g2="u" k="20" />
+<hkern g1="W" g2="Agrave" k="82" />
+<hkern g1="W" g2="Aacute" k="82" />
+<hkern g1="W" g2="Acircumflex" k="82" />
+<hkern g1="W" g2="Atilde" k="82" />
+<hkern g1="W" g2="Adieresis" k="82" />
+<hkern g1="W" g2="Aring" k="82" />
+<hkern g1="W" g2="Ccedilla" k="20" />
+<hkern g1="W" g2="Ograve" k="20" />
+<hkern g1="W" g2="Oacute" k="20" />
+<hkern g1="W" g2="Ocircumflex" k="20" />
+<hkern g1="W" g2="Otilde" k="20" />
+<hkern g1="W" g2="Odieresis" k="20" />
+<hkern g1="W" g2="Oslash" k="20" />
+<hkern g1="W" g2="agrave" k="41" />
+<hkern g1="W" g2="aacute" k="41" />
+<hkern g1="W" g2="acircumflex" k="41" />
+<hkern g1="W" g2="atilde" k="41" />
+<hkern g1="W" g2="adieresis" k="41" />
+<hkern g1="W" g2="aring" k="41" />
+<hkern g1="W" g2="ae" k="41" />
+<hkern g1="W" g2="ccedilla" k="41" />
+<hkern g1="W" g2="egrave" k="41" />
+<hkern g1="W" g2="eacute" k="41" />
+<hkern g1="W" g2="ecircumflex" k="41" />
+<hkern g1="W" g2="edieresis" k="41" />
+<hkern g1="W" g2="ograve" k="41" />
+<hkern g1="W" g2="oacute" k="41" />
+<hkern g1="W" g2="ocircumflex" k="41" />
+<hkern g1="W" g2="otilde" k="41" />
+<hkern g1="W" g2="odieresis" k="41" />
+<hkern g1="W" g2="oslash" k="41" />
+<hkern g1="W" g2="ugrave" k="20" />
+<hkern g1="W" g2="uacute" k="20" />
+<hkern g1="W" g2="ucircumflex" k="20" />
+<hkern g1="W" g2="udieresis" k="20" />
+<hkern g1="W" g2="OE" k="20" />
+<hkern g1="W" g2="oe" k="41" />
+<hkern g1="W" g2="quotesinglbase" k="102" />
+<hkern g1="W" g2="quotedblbase" k="102" />
+<hkern g1="X" g2="C" k="41" />
+<hkern g1="X" g2="G" k="41" />
+<hkern g1="X" g2="O" k="41" />
+<hkern g1="X" g2="Q" k="41" />
+<hkern g1="X" g2="Ccedilla" k="41" />
+<hkern g1="X" g2="Ograve" k="41" />
+<hkern g1="X" g2="Oacute" k="41" />
+<hkern g1="X" g2="Ocircumflex" k="41" />
+<hkern g1="X" g2="Otilde" k="41" />
+<hkern g1="X" g2="Odieresis" k="41" />
+<hkern g1="X" g2="Oslash" k="41" />
+<hkern g1="X" g2="OE" k="41" />
+<hkern g1="Y" g2="comma" k="123" />
+<hkern g1="Y" g2="period" k="123" />
+<hkern g1="Y" g2="question" k="-41" />
+<hkern g1="Y" g2="A" k="123" />
+<hkern g1="Y" g2="C" k="41" />
+<hkern g1="Y" g2="G" k="41" />
+<hkern g1="Y" g2="O" k="41" />
+<hkern g1="Y" g2="Q" k="41" />
+<hkern g1="Y" g2="a" k="102" />
+<hkern g1="Y" g2="c" k="102" />
+<hkern g1="Y" g2="d" k="102" />
+<hkern g1="Y" g2="e" k="102" />
+<hkern g1="Y" g2="g" k="41" />
+<hkern g1="Y" g2="m" k="61" />
+<hkern g1="Y" g2="n" k="61" />
+<hkern g1="Y" g2="o" k="102" />
+<hkern g1="Y" g2="p" k="61" />
+<hkern g1="Y" g2="q" k="102" />
+<hkern g1="Y" g2="r" k="61" />
+<hkern g1="Y" g2="s" k="82" />
+<hkern g1="Y" g2="u" k="61" />
+<hkern g1="Y" g2="z" k="41" />
+<hkern g1="Y" g2="Agrave" k="123" />
+<hkern g1="Y" g2="Aacute" k="123" />
+<hkern g1="Y" g2="Acircumflex" k="123" />
+<hkern g1="Y" g2="Atilde" k="123" />
+<hkern g1="Y" g2="Adieresis" k="123" />
+<hkern g1="Y" g2="Aring" k="123" />
+<hkern g1="Y" g2="Ccedilla" k="41" />
+<hkern g1="Y" g2="Ograve" k="41" />
+<hkern g1="Y" g2="Oacute" k="41" />
+<hkern g1="Y" g2="Ocircumflex" k="41" />
+<hkern g1="Y" g2="Otilde" k="41" />
+<hkern g1="Y" g2="Odieresis" k="41" />
+<hkern g1="Y" g2="Oslash" k="41" />
+<hkern g1="Y" g2="agrave" k="102" />
+<hkern g1="Y" g2="aacute" k="102" />
+<hkern g1="Y" g2="acircumflex" k="102" />
+<hkern g1="Y" g2="atilde" k="102" />
+<hkern g1="Y" g2="adieresis" k="102" />
+<hkern g1="Y" g2="aring" k="102" />
+<hkern g1="Y" g2="ae" k="102" />
+<hkern g1="Y" g2="ccedilla" k="102" />
+<hkern g1="Y" g2="egrave" k="102" />
+<hkern g1="Y" g2="eacute" k="102" />
+<hkern g1="Y" g2="ecircumflex" k="102" />
+<hkern g1="Y" g2="edieresis" k="102" />
+<hkern g1="Y" g2="ograve" k="102" />
+<hkern g1="Y" g2="oacute" k="102" />
+<hkern g1="Y" g2="ocircumflex" k="102" />
+<hkern g1="Y" g2="otilde" k="102" />
+<hkern g1="Y" g2="odieresis" k="102" />
+<hkern g1="Y" g2="oslash" k="102" />
+<hkern g1="Y" g2="ugrave" k="61" />
+<hkern g1="Y" g2="uacute" k="61" />
+<hkern g1="Y" g2="ucircumflex" k="61" />
+<hkern g1="Y" g2="udieresis" k="61" />
+<hkern g1="Y" g2="OE" k="41" />
+<hkern g1="Y" g2="oe" k="102" />
+<hkern g1="Y" g2="quotesinglbase" k="123" />
+<hkern g1="Y" g2="quotedblbase" k="123" />
+<hkern g1="Z" g2="C" k="20" />
+<hkern g1="Z" g2="G" k="20" />
+<hkern g1="Z" g2="O" k="20" />
+<hkern g1="Z" g2="Q" k="20" />
+<hkern g1="Z" g2="Ccedilla" k="20" />
+<hkern g1="Z" g2="Ograve" k="20" />
+<hkern g1="Z" g2="Oacute" k="20" />
+<hkern g1="Z" g2="Ocircumflex" k="20" />
+<hkern g1="Z" g2="Otilde" k="20" />
+<hkern g1="Z" g2="Odieresis" k="20" />
+<hkern g1="Z" g2="Oslash" k="20" />
+<hkern g1="Z" g2="OE" k="20" />
+<hkern g1="bracketleft" g2="J" k="-184" />
+<hkern g1="a" g2="quotedbl" k="20" />
+<hkern g1="a" g2="quotesingle" k="20" />
+<hkern g1="a" g2="quoteright" k="20" />
+<hkern g1="a" g2="quotedblright" k="20" />
+<hkern g1="b" g2="quotedbl" k="20" />
+<hkern g1="b" g2="quotesingle" k="20" />
+<hkern g1="b" g2="v" k="41" />
+<hkern g1="b" g2="w" k="41" />
+<hkern g1="b" g2="x" k="41" />
+<hkern g1="b" g2="y" k="41" />
+<hkern g1="b" g2="z" k="20" />
+<hkern g1="b" g2="yacute" k="41" />
+<hkern g1="b" g2="quoteright" k="20" />
+<hkern g1="b" g2="quotedblright" k="20" />
+<hkern g1="c" g2="quotedbl" k="-41" />
+<hkern g1="c" g2="quotesingle" k="-41" />
+<hkern g1="c" g2="quoteright" k="-41" />
+<hkern g1="c" g2="quotedblright" k="-41" />
+<hkern g1="e" g2="quotedbl" k="20" />
+<hkern g1="e" g2="quotesingle" k="20" />
+<hkern g1="e" g2="v" k="41" />
+<hkern g1="e" g2="w" k="41" />
+<hkern g1="e" g2="x" k="41" />
+<hkern g1="e" g2="y" k="41" />
+<hkern g1="e" g2="z" k="20" />
+<hkern g1="e" g2="yacute" k="41" />
+<hkern g1="e" g2="quoteright" k="20" />
+<hkern g1="e" g2="quotedblright" k="20" />
+<hkern g1="f" g2="quotedbl" k="-123" />
+<hkern g1="f" g2="quotesingle" k="-123" />
+<hkern g1="f" g2="quoteright" k="-123" />
+<hkern g1="f" g2="quotedblright" k="-123" />
+<hkern g1="h" g2="quotedbl" k="20" />
+<hkern g1="h" g2="quotesingle" k="20" />
+<hkern g1="h" g2="quoteright" k="20" />
+<hkern g1="h" g2="quotedblright" k="20" />
+<hkern g1="k" g2="c" k="41" />
+<hkern g1="k" g2="d" k="41" />
+<hkern g1="k" g2="e" k="41" />
+<hkern g1="k" g2="o" k="41" />
+<hkern g1="k" g2="q" k="41" />
+<hkern g1="k" g2="agrave" k="41" />
+<hkern g1="k" g2="ccedilla" k="41" />
+<hkern g1="k" g2="egrave" k="41" />
+<hkern g1="k" g2="eacute" k="41" />
+<hkern g1="k" g2="ecircumflex" k="41" />
+<hkern g1="k" g2="edieresis" k="41" />
+<hkern g1="k" g2="ograve" k="41" />
+<hkern g1="k" g2="oacute" k="41" />
+<hkern g1="k" g2="ocircumflex" k="41" />
+<hkern g1="k" g2="otilde" k="41" />
+<hkern g1="k" g2="odieresis" k="41" />
+<hkern g1="k" g2="oslash" k="41" />
+<hkern g1="k" g2="oe" k="41" />
+<hkern g1="m" g2="quotedbl" k="20" />
+<hkern g1="m" g2="quotesingle" k="20" />
+<hkern g1="m" g2="quoteright" k="20" />
+<hkern g1="m" g2="quotedblright" k="20" />
+<hkern g1="n" g2="quotedbl" k="20" />
+<hkern g1="n" g2="quotesingle" k="20" />
+<hkern g1="n" g2="quoteright" k="20" />
+<hkern g1="n" g2="quotedblright" k="20" />
+<hkern g1="o" g2="quotedbl" k="20" />
+<hkern g1="o" g2="quotesingle" k="20" />
+<hkern g1="o" g2="v" k="41" />
+<hkern g1="o" g2="w" k="41" />
+<hkern g1="o" g2="x" k="41" />
+<hkern g1="o" g2="y" k="41" />
+<hkern g1="o" g2="z" k="20" />
+<hkern g1="o" g2="yacute" k="41" />
+<hkern g1="o" g2="quoteright" k="20" />
+<hkern g1="o" g2="quotedblright" k="20" />
+<hkern g1="p" g2="quotedbl" k="20" />
+<hkern g1="p" g2="quotesingle" k="20" />
+<hkern g1="p" g2="v" k="41" />
+<hkern g1="p" g2="w" k="41" />
+<hkern g1="p" g2="x" k="41" />
+<hkern g1="p" g2="y" k="41" />
+<hkern g1="p" g2="z" k="20" />
+<hkern g1="p" g2="yacute" k="41" />
+<hkern g1="p" g2="quoteright" k="20" />
+<hkern g1="p" g2="quotedblright" k="20" />
+<hkern g1="r" g2="quotedbl" k="-82" />
+<hkern g1="r" g2="quotesingle" k="-82" />
+<hkern g1="r" g2="a" k="41" />
+<hkern g1="r" g2="c" k="41" />
+<hkern g1="r" g2="d" k="41" />
+<hkern g1="r" g2="e" k="41" />
+<hkern g1="r" g2="g" k="20" />
+<hkern g1="r" g2="o" k="41" />
+<hkern g1="r" g2="q" k="41" />
+<hkern g1="r" g2="agrave" k="41" />
+<hkern g1="r" g2="aacute" k="41" />
+<hkern g1="r" g2="acircumflex" k="41" />
+<hkern g1="r" g2="atilde" k="41" />
+<hkern g1="r" g2="adieresis" k="41" />
+<hkern g1="r" g2="aring" k="41" />
+<hkern g1="r" g2="ae" k="41" />
+<hkern g1="r" g2="ccedilla" k="41" />
+<hkern g1="r" g2="egrave" k="41" />
+<hkern g1="r" g2="eacute" k="41" />
+<hkern g1="r" g2="ecircumflex" k="41" />
+<hkern g1="r" g2="edieresis" k="41" />
+<hkern g1="r" g2="ograve" k="41" />
+<hkern g1="r" g2="oacute" k="41" />
+<hkern g1="r" g2="ocircumflex" k="41" />
+<hkern g1="r" g2="otilde" k="41" />
+<hkern g1="r" g2="odieresis" k="41" />
+<hkern g1="r" g2="oslash" k="41" />
+<hkern g1="r" g2="oe" k="41" />
+<hkern g1="r" g2="quoteright" k="-82" />
+<hkern g1="r" g2="quotedblright" k="-82" />
+<hkern g1="t" g2="quotedbl" k="-41" />
+<hkern g1="t" g2="quotesingle" k="-41" />
+<hkern g1="t" g2="quoteright" k="-41" />
+<hkern g1="t" g2="quotedblright" k="-41" />
+<hkern g1="v" g2="quotedbl" k="-82" />
+<hkern g1="v" g2="quotesingle" k="-82" />
+<hkern g1="v" g2="comma" k="82" />
+<hkern g1="v" g2="period" k="82" />
+<hkern g1="v" g2="question" k="-41" />
+<hkern g1="v" g2="quoteright" k="-82" />
+<hkern g1="v" g2="quotesinglbase" k="82" />
+<hkern g1="v" g2="quotedblright" k="-82" />
+<hkern g1="v" g2="quotedblbase" k="82" />
+<hkern g1="w" g2="quotedbl" k="-82" />
+<hkern g1="w" g2="quotesingle" k="-82" />
+<hkern g1="w" g2="comma" k="82" />
+<hkern g1="w" g2="period" k="82" />
+<hkern g1="w" g2="question" k="-41" />
+<hkern g1="w" g2="quoteright" k="-82" />
+<hkern g1="w" g2="quotesinglbase" k="82" />
+<hkern g1="w" g2="quotedblright" k="-82" />
+<hkern g1="w" g2="quotedblbase" k="82" />
+<hkern g1="x" g2="c" k="41" />
+<hkern g1="x" g2="d" k="41" />
+<hkern g1="x" g2="e" k="41" />
+<hkern g1="x" g2="o" k="41" />
+<hkern g1="x" g2="q" k="41" />
+<hkern g1="x" g2="agrave" k="41" />
+<hkern g1="x" g2="ccedilla" k="41" />
+<hkern g1="x" g2="egrave" k="41" />
+<hkern g1="x" g2="eacute" k="41" />
+<hkern g1="x" g2="ecircumflex" k="41" />
+<hkern g1="x" g2="edieresis" k="41" />
+<hkern g1="x" g2="ograve" k="41" />
+<hkern g1="x" g2="oacute" k="41" />
+<hkern g1="x" g2="ocircumflex" k="41" />
+<hkern g1="x" g2="otilde" k="41" />
+<hkern g1="x" g2="odieresis" k="41" />
+<hkern g1="x" g2="oslash" k="41" />
+<hkern g1="x" g2="oe" k="41" />
+<hkern g1="y" g2="quotedbl" k="-82" />
+<hkern g1="y" g2="quotesingle" k="-82" />
+<hkern g1="y" g2="comma" k="82" />
+<hkern g1="y" g2="period" k="82" />
+<hkern g1="y" g2="question" k="-41" />
+<hkern g1="y" g2="quoteright" k="-82" />
+<hkern g1="y" g2="quotesinglbase" k="82" />
+<hkern g1="y" g2="quotedblright" k="-82" />
+<hkern g1="y" g2="quotedblbase" k="82" />
+<hkern g1="braceleft" g2="J" k="-184" />
+<hkern g1="Agrave" g2="quotedbl" k="143" />
+<hkern g1="Agrave" g2="quotesingle" k="143" />
+<hkern g1="Agrave" g2="C" k="41" />
+<hkern g1="Agrave" g2="G" k="41" />
+<hkern g1="Agrave" g2="J" k="-266" />
+<hkern g1="Agrave" g2="O" k="41" />
+<hkern g1="Agrave" g2="Q" k="41" />
+<hkern g1="Agrave" g2="T" k="143" />
+<hkern g1="Agrave" g2="V" k="82" />
+<hkern g1="Agrave" g2="W" k="82" />
+<hkern g1="Agrave" g2="Y" k="123" />
+<hkern g1="Agrave" g2="Ccedilla" k="41" />
+<hkern g1="Agrave" g2="Ograve" k="41" />
+<hkern g1="Agrave" g2="Oacute" k="41" />
+<hkern g1="Agrave" g2="Ocircumflex" k="41" />
+<hkern g1="Agrave" g2="Otilde" k="41" />
+<hkern g1="Agrave" g2="Odieresis" k="41" />
+<hkern g1="Agrave" g2="Oslash" k="41" />
+<hkern g1="Agrave" g2="Yacute" k="123" />
+<hkern g1="Agrave" g2="OE" k="41" />
+<hkern g1="Agrave" g2="quoteright" k="143" />
+<hkern g1="Agrave" g2="quotedblright" k="143" />
+<hkern g1="Aacute" g2="quotedbl" k="143" />
+<hkern g1="Aacute" g2="quotesingle" k="143" />
+<hkern g1="Aacute" g2="C" k="41" />
+<hkern g1="Aacute" g2="G" k="41" />
+<hkern g1="Aacute" g2="J" k="-266" />
+<hkern g1="Aacute" g2="O" k="41" />
+<hkern g1="Aacute" g2="Q" k="41" />
+<hkern g1="Aacute" g2="T" k="143" />
+<hkern g1="Aacute" g2="V" k="82" />
+<hkern g1="Aacute" g2="W" k="82" />
+<hkern g1="Aacute" g2="Y" k="123" />
+<hkern g1="Aacute" g2="Ccedilla" k="41" />
+<hkern g1="Aacute" g2="Ograve" k="41" />
+<hkern g1="Aacute" g2="Oacute" k="41" />
+<hkern g1="Aacute" g2="Ocircumflex" k="41" />
+<hkern g1="Aacute" g2="Otilde" k="41" />
+<hkern g1="Aacute" g2="Odieresis" k="41" />
+<hkern g1="Aacute" g2="Oslash" k="41" />
+<hkern g1="Aacute" g2="Yacute" k="123" />
+<hkern g1="Aacute" g2="OE" k="41" />
+<hkern g1="Aacute" g2="quoteright" k="143" />
+<hkern g1="Aacute" g2="quotedblright" k="143" />
+<hkern g1="Acircumflex" g2="quotedbl" k="143" />
+<hkern g1="Acircumflex" g2="quotesingle" k="143" />
+<hkern g1="Acircumflex" g2="C" k="41" />
+<hkern g1="Acircumflex" g2="G" k="41" />
+<hkern g1="Acircumflex" g2="J" k="-266" />
+<hkern g1="Acircumflex" g2="O" k="41" />
+<hkern g1="Acircumflex" g2="Q" k="41" />
+<hkern g1="Acircumflex" g2="T" k="143" />
+<hkern g1="Acircumflex" g2="V" k="82" />
+<hkern g1="Acircumflex" g2="W" k="82" />
+<hkern g1="Acircumflex" g2="Y" k="123" />
+<hkern g1="Acircumflex" g2="Ccedilla" k="41" />
+<hkern g1="Acircumflex" g2="Ograve" k="41" />
+<hkern g1="Acircumflex" g2="Oacute" k="41" />
+<hkern g1="Acircumflex" g2="Ocircumflex" k="41" />
+<hkern g1="Acircumflex" g2="Otilde" k="41" />
+<hkern g1="Acircumflex" g2="Odieresis" k="41" />
+<hkern g1="Acircumflex" g2="Oslash" k="41" />
+<hkern g1="Acircumflex" g2="Yacute" k="123" />
+<hkern g1="Acircumflex" g2="OE" k="41" />
+<hkern g1="Acircumflex" g2="quoteright" k="143" />
+<hkern g1="Acircumflex" g2="quotedblright" k="143" />
+<hkern g1="Atilde" g2="quotedbl" k="143" />
+<hkern g1="Atilde" g2="quotesingle" k="143" />
+<hkern g1="Atilde" g2="C" k="41" />
+<hkern g1="Atilde" g2="G" k="41" />
+<hkern g1="Atilde" g2="J" k="-266" />
+<hkern g1="Atilde" g2="O" k="41" />
+<hkern g1="Atilde" g2="Q" k="41" />
+<hkern g1="Atilde" g2="T" k="143" />
+<hkern g1="Atilde" g2="V" k="82" />
+<hkern g1="Atilde" g2="W" k="82" />
+<hkern g1="Atilde" g2="Y" k="123" />
+<hkern g1="Atilde" g2="Ccedilla" k="41" />
+<hkern g1="Atilde" g2="Ograve" k="41" />
+<hkern g1="Atilde" g2="Oacute" k="41" />
+<hkern g1="Atilde" g2="Ocircumflex" k="41" />
+<hkern g1="Atilde" g2="Otilde" k="41" />
+<hkern g1="Atilde" g2="Odieresis" k="41" />
+<hkern g1="Atilde" g2="Oslash" k="41" />
+<hkern g1="Atilde" g2="Yacute" k="123" />
+<hkern g1="Atilde" g2="OE" k="41" />
+<hkern g1="Atilde" g2="quoteright" k="143" />
+<hkern g1="Atilde" g2="quotedblright" k="143" />
+<hkern g1="Adieresis" g2="quotedbl" k="143" />
+<hkern g1="Adieresis" g2="quotesingle" k="143" />
+<hkern g1="Adieresis" g2="C" k="41" />
+<hkern g1="Adieresis" g2="G" k="41" />
+<hkern g1="Adieresis" g2="J" k="-266" />
+<hkern g1="Adieresis" g2="O" k="41" />
+<hkern g1="Adieresis" g2="Q" k="41" />
+<hkern g1="Adieresis" g2="T" k="143" />
+<hkern g1="Adieresis" g2="V" k="82" />
+<hkern g1="Adieresis" g2="W" k="82" />
+<hkern g1="Adieresis" g2="Y" k="123" />
+<hkern g1="Adieresis" g2="Ccedilla" k="41" />
+<hkern g1="Adieresis" g2="Ograve" k="41" />
+<hkern g1="Adieresis" g2="Oacute" k="41" />
+<hkern g1="Adieresis" g2="Ocircumflex" k="41" />
+<hkern g1="Adieresis" g2="Otilde" k="41" />
+<hkern g1="Adieresis" g2="Odieresis" k="41" />
+<hkern g1="Adieresis" g2="Oslash" k="41" />
+<hkern g1="Adieresis" g2="Yacute" k="123" />
+<hkern g1="Adieresis" g2="OE" k="41" />
+<hkern g1="Adieresis" g2="quoteright" k="143" />
+<hkern g1="Adieresis" g2="quotedblright" k="143" />
+<hkern g1="Aring" g2="quotedbl" k="143" />
+<hkern g1="Aring" g2="quotesingle" k="143" />
+<hkern g1="Aring" g2="C" k="41" />
+<hkern g1="Aring" g2="G" k="41" />
+<hkern g1="Aring" g2="J" k="-266" />
+<hkern g1="Aring" g2="O" k="41" />
+<hkern g1="Aring" g2="Q" k="41" />
+<hkern g1="Aring" g2="T" k="143" />
+<hkern g1="Aring" g2="V" k="82" />
+<hkern g1="Aring" g2="W" k="82" />
+<hkern g1="Aring" g2="Y" k="123" />
+<hkern g1="Aring" g2="Ccedilla" k="41" />
+<hkern g1="Aring" g2="Ograve" k="41" />
+<hkern g1="Aring" g2="Oacute" k="41" />
+<hkern g1="Aring" g2="Ocircumflex" k="41" />
+<hkern g1="Aring" g2="Otilde" k="41" />
+<hkern g1="Aring" g2="Odieresis" k="41" />
+<hkern g1="Aring" g2="Oslash" k="41" />
+<hkern g1="Aring" g2="Yacute" k="123" />
+<hkern g1="Aring" g2="OE" k="41" />
+<hkern g1="Aring" g2="quoteright" k="143" />
+<hkern g1="Aring" g2="quotedblright" k="143" />
+<hkern g1="AE" g2="J" k="-123" />
+<hkern g1="Ccedilla" g2="C" k="41" />
+<hkern g1="Ccedilla" g2="G" k="41" />
+<hkern g1="Ccedilla" g2="O" k="41" />
+<hkern g1="Ccedilla" g2="Q" k="41" />
+<hkern g1="Ccedilla" g2="Ccedilla" k="41" />
+<hkern g1="Ccedilla" g2="Ograve" k="41" />
+<hkern g1="Ccedilla" g2="Oacute" k="41" />
+<hkern g1="Ccedilla" g2="Ocircumflex" k="41" />
+<hkern g1="Ccedilla" g2="Otilde" k="41" />
+<hkern g1="Ccedilla" g2="Odieresis" k="41" />
+<hkern g1="Ccedilla" g2="Oslash" k="41" />
+<hkern g1="Ccedilla" g2="OE" k="41" />
+<hkern g1="Egrave" g2="J" k="-123" />
+<hkern g1="Eacute" g2="J" k="-123" />
+<hkern g1="Ecircumflex" g2="J" k="-123" />
+<hkern g1="Edieresis" g2="J" k="-123" />
+<hkern g1="Eth" g2="comma" k="82" />
+<hkern g1="Eth" g2="period" k="82" />
+<hkern g1="Eth" g2="A" k="41" />
+<hkern g1="Eth" g2="T" k="61" />
+<hkern g1="Eth" g2="V" k="20" />
+<hkern g1="Eth" g2="W" k="20" />
+<hkern g1="Eth" g2="X" k="41" />
+<hkern g1="Eth" g2="Y" k="20" />
+<hkern g1="Eth" g2="Z" k="20" />
+<hkern g1="Eth" g2="Agrave" k="41" />
+<hkern g1="Eth" g2="Aacute" k="41" />
+<hkern g1="Eth" g2="Acircumflex" k="41" />
+<hkern g1="Eth" g2="Atilde" k="41" />
+<hkern g1="Eth" g2="Adieresis" k="41" />
+<hkern g1="Eth" g2="Aring" k="41" />
+<hkern g1="Eth" g2="Yacute" k="20" />
+<hkern g1="Eth" g2="quotesinglbase" k="82" />
+<hkern g1="Eth" g2="quotedblbase" k="82" />
+<hkern g1="Ograve" g2="comma" k="82" />
+<hkern g1="Ograve" g2="period" k="82" />
+<hkern g1="Ograve" g2="A" k="41" />
+<hkern g1="Ograve" g2="T" k="61" />
+<hkern g1="Ograve" g2="V" k="20" />
+<hkern g1="Ograve" g2="W" k="20" />
+<hkern g1="Ograve" g2="X" k="41" />
+<hkern g1="Ograve" g2="Y" k="20" />
+<hkern g1="Ograve" g2="Z" k="20" />
+<hkern g1="Ograve" g2="Agrave" k="41" />
+<hkern g1="Ograve" g2="Aacute" k="41" />
+<hkern g1="Ograve" g2="Acircumflex" k="41" />
+<hkern g1="Ograve" g2="Atilde" k="41" />
+<hkern g1="Ograve" g2="Adieresis" k="41" />
+<hkern g1="Ograve" g2="Aring" k="41" />
+<hkern g1="Ograve" g2="Yacute" k="20" />
+<hkern g1="Ograve" g2="quotesinglbase" k="82" />
+<hkern g1="Ograve" g2="quotedblbase" k="82" />
+<hkern g1="Oacute" g2="comma" k="82" />
+<hkern g1="Oacute" g2="period" k="82" />
+<hkern g1="Oacute" g2="A" k="41" />
+<hkern g1="Oacute" g2="T" k="61" />
+<hkern g1="Oacute" g2="V" k="20" />
+<hkern g1="Oacute" g2="W" k="20" />
+<hkern g1="Oacute" g2="X" k="41" />
+<hkern g1="Oacute" g2="Y" k="20" />
+<hkern g1="Oacute" g2="Z" k="20" />
+<hkern g1="Oacute" g2="Agrave" k="41" />
+<hkern g1="Oacute" g2="Aacute" k="41" />
+<hkern g1="Oacute" g2="Acircumflex" k="41" />
+<hkern g1="Oacute" g2="Atilde" k="41" />
+<hkern g1="Oacute" g2="Adieresis" k="41" />
+<hkern g1="Oacute" g2="Aring" k="41" />
+<hkern g1="Oacute" g2="Yacute" k="20" />
+<hkern g1="Oacute" g2="quotesinglbase" k="82" />
+<hkern g1="Oacute" g2="quotedblbase" k="82" />
+<hkern g1="Ocircumflex" g2="comma" k="82" />
+<hkern g1="Ocircumflex" g2="period" k="82" />
+<hkern g1="Ocircumflex" g2="A" k="41" />
+<hkern g1="Ocircumflex" g2="T" k="61" />
+<hkern g1="Ocircumflex" g2="V" k="20" />
+<hkern g1="Ocircumflex" g2="W" k="20" />
+<hkern g1="Ocircumflex" g2="X" k="41" />
+<hkern g1="Ocircumflex" g2="Y" k="20" />
+<hkern g1="Ocircumflex" g2="Z" k="20" />
+<hkern g1="Ocircumflex" g2="Agrave" k="41" />
+<hkern g1="Ocircumflex" g2="Aacute" k="41" />
+<hkern g1="Ocircumflex" g2="Acircumflex" k="41" />
+<hkern g1="Ocircumflex" g2="Atilde" k="41" />
+<hkern g1="Ocircumflex" g2="Adieresis" k="41" />
+<hkern g1="Ocircumflex" g2="Aring" k="41" />
+<hkern g1="Ocircumflex" g2="Yacute" k="20" />
+<hkern g1="Ocircumflex" g2="quotesinglbase" k="82" />
+<hkern g1="Ocircumflex" g2="quotedblbase" k="82" />
+<hkern g1="Otilde" g2="comma" k="82" />
+<hkern g1="Otilde" g2="period" k="82" />
+<hkern g1="Otilde" g2="A" k="41" />
+<hkern g1="Otilde" g2="T" k="61" />
+<hkern g1="Otilde" g2="V" k="20" />
+<hkern g1="Otilde" g2="W" k="20" />
+<hkern g1="Otilde" g2="X" k="41" />
+<hkern g1="Otilde" g2="Y" k="20" />
+<hkern g1="Otilde" g2="Z" k="20" />
+<hkern g1="Otilde" g2="Agrave" k="41" />
+<hkern g1="Otilde" g2="Aacute" k="41" />
+<hkern g1="Otilde" g2="Acircumflex" k="41" />
+<hkern g1="Otilde" g2="Atilde" k="41" />
+<hkern g1="Otilde" g2="Adieresis" k="41" />
+<hkern g1="Otilde" g2="Aring" k="41" />
+<hkern g1="Otilde" g2="Yacute" k="20" />
+<hkern g1="Otilde" g2="quotesinglbase" k="82" />
+<hkern g1="Otilde" g2="quotedblbase" k="82" />
+<hkern g1="Odieresis" g2="comma" k="82" />
+<hkern g1="Odieresis" g2="period" k="82" />
+<hkern g1="Odieresis" g2="A" k="41" />
+<hkern g1="Odieresis" g2="T" k="61" />
+<hkern g1="Odieresis" g2="V" k="20" />
+<hkern g1="Odieresis" g2="W" k="20" />
+<hkern g1="Odieresis" g2="X" k="41" />
+<hkern g1="Odieresis" g2="Y" k="20" />
+<hkern g1="Odieresis" g2="Z" k="20" />
+<hkern g1="Odieresis" g2="Agrave" k="41" />
+<hkern g1="Odieresis" g2="Aacute" k="41" />
+<hkern g1="Odieresis" g2="Acircumflex" k="41" />
+<hkern g1="Odieresis" g2="Atilde" k="41" />
+<hkern g1="Odieresis" g2="Adieresis" k="41" />
+<hkern g1="Odieresis" g2="Aring" k="41" />
+<hkern g1="Odieresis" g2="Yacute" k="20" />
+<hkern g1="Odieresis" g2="quotesinglbase" k="82" />
+<hkern g1="Odieresis" g2="quotedblbase" k="82" />
+<hkern g1="Oslash" g2="comma" k="82" />
+<hkern g1="Oslash" g2="period" k="82" />
+<hkern g1="Oslash" g2="A" k="41" />
+<hkern g1="Oslash" g2="T" k="61" />
+<hkern g1="Oslash" g2="V" k="20" />
+<hkern g1="Oslash" g2="W" k="20" />
+<hkern g1="Oslash" g2="X" k="41" />
+<hkern g1="Oslash" g2="Y" k="20" />
+<hkern g1="Oslash" g2="Z" k="20" />
+<hkern g1="Oslash" g2="Agrave" k="41" />
+<hkern g1="Oslash" g2="Aacute" k="41" />
+<hkern g1="Oslash" g2="Acircumflex" k="41" />
+<hkern g1="Oslash" g2="Atilde" k="41" />
+<hkern g1="Oslash" g2="Adieresis" k="41" />
+<hkern g1="Oslash" g2="Aring" k="41" />
+<hkern g1="Oslash" g2="Yacute" k="20" />
+<hkern g1="Oslash" g2="quotesinglbase" k="82" />
+<hkern g1="Oslash" g2="quotedblbase" k="82" />
+<hkern g1="Ugrave" g2="comma" k="41" />
+<hkern g1="Ugrave" g2="period" k="41" />
+<hkern g1="Ugrave" g2="A" k="20" />
+<hkern g1="Ugrave" g2="Agrave" k="20" />
+<hkern g1="Ugrave" g2="Aacute" k="20" />
+<hkern g1="Ugrave" g2="Acircumflex" k="20" />
+<hkern g1="Ugrave" g2="Atilde" k="20" />
+<hkern g1="Ugrave" g2="Adieresis" k="20" />
+<hkern g1="Ugrave" g2="Aring" k="20" />
+<hkern g1="Ugrave" g2="quotesinglbase" k="41" />
+<hkern g1="Ugrave" g2="quotedblbase" k="41" />
+<hkern g1="Uacute" g2="comma" k="41" />
+<hkern g1="Uacute" g2="period" k="41" />
+<hkern g1="Uacute" g2="A" k="20" />
+<hkern g1="Uacute" g2="Agrave" k="20" />
+<hkern g1="Uacute" g2="Aacute" k="20" />
+<hkern g1="Uacute" g2="Acircumflex" k="20" />
+<hkern g1="Uacute" g2="Atilde" k="20" />
+<hkern g1="Uacute" g2="Adieresis" k="20" />
+<hkern g1="Uacute" g2="Aring" k="20" />
+<hkern g1="Uacute" g2="quotesinglbase" k="41" />
+<hkern g1="Uacute" g2="quotedblbase" k="41" />
+<hkern g1="Ucircumflex" g2="comma" k="41" />
+<hkern g1="Ucircumflex" g2="period" k="41" />
+<hkern g1="Ucircumflex" g2="A" k="20" />
+<hkern g1="Ucircumflex" g2="Agrave" k="20" />
+<hkern g1="Ucircumflex" g2="Aacute" k="20" />
+<hkern g1="Ucircumflex" g2="Acircumflex" k="20" />
+<hkern g1="Ucircumflex" g2="Atilde" k="20" />
+<hkern g1="Ucircumflex" g2="Adieresis" k="20" />
+<hkern g1="Ucircumflex" g2="Aring" k="20" />
+<hkern g1="Ucircumflex" g2="quotesinglbase" k="41" />
+<hkern g1="Ucircumflex" g2="quotedblbase" k="41" />
+<hkern g1="Udieresis" g2="comma" k="41" />
+<hkern g1="Udieresis" g2="period" k="41" />
+<hkern g1="Udieresis" g2="A" k="20" />
+<hkern g1="Udieresis" g2="Agrave" k="20" />
+<hkern g1="Udieresis" g2="Aacute" k="20" />
+<hkern g1="Udieresis" g2="Acircumflex" k="20" />
+<hkern g1="Udieresis" g2="Atilde" k="20" />
+<hkern g1="Udieresis" g2="Adieresis" k="20" />
+<hkern g1="Udieresis" g2="Aring" k="20" />
+<hkern g1="Udieresis" g2="quotesinglbase" k="41" />
+<hkern g1="Udieresis" g2="quotedblbase" k="41" />
+<hkern g1="Yacute" g2="comma" k="123" />
+<hkern g1="Yacute" g2="period" k="123" />
+<hkern g1="Yacute" g2="question" k="-41" />
+<hkern g1="Yacute" g2="A" k="123" />
+<hkern g1="Yacute" g2="C" k="41" />
+<hkern g1="Yacute" g2="G" k="41" />
+<hkern g1="Yacute" g2="O" k="41" />
+<hkern g1="Yacute" g2="Q" k="41" />
+<hkern g1="Yacute" g2="a" k="102" />
+<hkern g1="Yacute" g2="c" k="102" />
+<hkern g1="Yacute" g2="d" k="102" />
+<hkern g1="Yacute" g2="e" k="102" />
+<hkern g1="Yacute" g2="g" k="41" />
+<hkern g1="Yacute" g2="m" k="61" />
+<hkern g1="Yacute" g2="n" k="61" />
+<hkern g1="Yacute" g2="o" k="102" />
+<hkern g1="Yacute" g2="p" k="61" />
+<hkern g1="Yacute" g2="q" k="102" />
+<hkern g1="Yacute" g2="r" k="61" />
+<hkern g1="Yacute" g2="s" k="82" />
+<hkern g1="Yacute" g2="u" k="61" />
+<hkern g1="Yacute" g2="z" k="41" />
+<hkern g1="Yacute" g2="Agrave" k="123" />
+<hkern g1="Yacute" g2="Aacute" k="123" />
+<hkern g1="Yacute" g2="Acircumflex" k="123" />
+<hkern g1="Yacute" g2="Atilde" k="123" />
+<hkern g1="Yacute" g2="Adieresis" k="123" />
+<hkern g1="Yacute" g2="Aring" k="123" />
+<hkern g1="Yacute" g2="Ccedilla" k="41" />
+<hkern g1="Yacute" g2="Ograve" k="41" />
+<hkern g1="Yacute" g2="Oacute" k="41" />
+<hkern g1="Yacute" g2="Ocircumflex" k="41" />
+<hkern g1="Yacute" g2="Otilde" k="41" />
+<hkern g1="Yacute" g2="Odieresis" k="41" />
+<hkern g1="Yacute" g2="Oslash" k="41" />
+<hkern g1="Yacute" g2="agrave" k="102" />
+<hkern g1="Yacute" g2="aacute" k="102" />
+<hkern g1="Yacute" g2="acircumflex" k="102" />
+<hkern g1="Yacute" g2="atilde" k="102" />
+<hkern g1="Yacute" g2="adieresis" k="102" />
+<hkern g1="Yacute" g2="aring" k="102" />
+<hkern g1="Yacute" g2="ae" k="102" />
+<hkern g1="Yacute" g2="ccedilla" k="102" />
+<hkern g1="Yacute" g2="egrave" k="102" />
+<hkern g1="Yacute" g2="eacute" k="102" />
+<hkern g1="Yacute" g2="ecircumflex" k="102" />
+<hkern g1="Yacute" g2="edieresis" k="102" />
+<hkern g1="Yacute" g2="ograve" k="102" />
+<hkern g1="Yacute" g2="oacute" k="102" />
+<hkern g1="Yacute" g2="ocircumflex" k="102" />
+<hkern g1="Yacute" g2="otilde" k="102" />
+<hkern g1="Yacute" g2="odieresis" k="102" />
+<hkern g1="Yacute" g2="oslash" k="102" />
+<hkern g1="Yacute" g2="ugrave" k="61" />
+<hkern g1="Yacute" g2="uacute" k="61" />
+<hkern g1="Yacute" g2="ucircumflex" k="61" />
+<hkern g1="Yacute" g2="udieresis" k="61" />
+<hkern g1="Yacute" g2="OE" k="41" />
+<hkern g1="Yacute" g2="oe" k="102" />
+<hkern g1="Yacute" g2="quotesinglbase" k="123" />
+<hkern g1="Yacute" g2="quotedblbase" k="123" />
+<hkern g1="Thorn" g2="comma" k="266" />
+<hkern g1="Thorn" g2="period" k="266" />
+<hkern g1="Thorn" g2="A" k="102" />
+<hkern g1="Thorn" g2="X" k="41" />
+<hkern g1="Thorn" g2="Z" k="20" />
+<hkern g1="Thorn" g2="Agrave" k="102" />
+<hkern g1="Thorn" g2="Aacute" k="102" />
+<hkern g1="Thorn" g2="Acircumflex" k="102" />
+<hkern g1="Thorn" g2="Atilde" k="102" />
+<hkern g1="Thorn" g2="Adieresis" k="102" />
+<hkern g1="Thorn" g2="Aring" k="102" />
+<hkern g1="Thorn" g2="quotesinglbase" k="266" />
+<hkern g1="Thorn" g2="quotedblbase" k="266" />
+<hkern g1="agrave" g2="quotedbl" k="20" />
+<hkern g1="agrave" g2="quotesingle" k="20" />
+<hkern g1="agrave" g2="quoteright" k="20" />
+<hkern g1="agrave" g2="quotedblright" k="20" />
+<hkern g1="aacute" g2="quotedbl" k="20" />
+<hkern g1="aacute" g2="quotesingle" k="20" />
+<hkern g1="aacute" g2="quoteright" k="20" />
+<hkern g1="aacute" g2="quotedblright" k="20" />
+<hkern g1="acircumflex" g2="quotedbl" k="20" />
+<hkern g1="acircumflex" g2="quotesingle" k="20" />
+<hkern g1="acircumflex" g2="quoteright" k="20" />
+<hkern g1="acircumflex" g2="quotedblright" k="20" />
+<hkern g1="atilde" g2="quotedbl" k="20" />
+<hkern g1="atilde" g2="quotesingle" k="20" />
+<hkern g1="atilde" g2="quoteright" k="20" />
+<hkern g1="atilde" g2="quotedblright" k="20" />
+<hkern g1="adieresis" g2="quotedbl" k="20" />
+<hkern g1="adieresis" g2="quotesingle" k="20" />
+<hkern g1="adieresis" g2="quoteright" k="20" />
+<hkern g1="adieresis" g2="quotedblright" k="20" />
+<hkern g1="aring" g2="quotedbl" k="20" />
+<hkern g1="aring" g2="quotesingle" k="20" />
+<hkern g1="aring" g2="quoteright" k="20" />
+<hkern g1="aring" g2="quotedblright" k="20" />
+<hkern g1="egrave" g2="quotedbl" k="20" />
+<hkern g1="egrave" g2="quotesingle" k="20" />
+<hkern g1="egrave" g2="v" k="41" />
+<hkern g1="egrave" g2="w" k="41" />
+<hkern g1="egrave" g2="x" k="41" />
+<hkern g1="egrave" g2="y" k="41" />
+<hkern g1="egrave" g2="z" k="20" />
+<hkern g1="egrave" g2="yacute" k="41" />
+<hkern g1="egrave" g2="quoteright" k="20" />
+<hkern g1="egrave" g2="quotedblright" k="20" />
+<hkern g1="eacute" g2="quotedbl" k="20" />
+<hkern g1="eacute" g2="quotesingle" k="20" />
+<hkern g1="eacute" g2="v" k="41" />
+<hkern g1="eacute" g2="w" k="41" />
+<hkern g1="eacute" g2="x" k="41" />
+<hkern g1="eacute" g2="y" k="41" />
+<hkern g1="eacute" g2="z" k="20" />
+<hkern g1="eacute" g2="yacute" k="41" />
+<hkern g1="eacute" g2="quoteright" k="20" />
+<hkern g1="eacute" g2="quotedblright" k="20" />
+<hkern g1="ecircumflex" g2="quotedbl" k="20" />
+<hkern g1="ecircumflex" g2="quotesingle" k="20" />
+<hkern g1="ecircumflex" g2="v" k="41" />
+<hkern g1="ecircumflex" g2="w" k="41" />
+<hkern g1="ecircumflex" g2="x" k="41" />
+<hkern g1="ecircumflex" g2="y" k="41" />
+<hkern g1="ecircumflex" g2="z" k="20" />
+<hkern g1="ecircumflex" g2="yacute" k="41" />
+<hkern g1="ecircumflex" g2="quoteright" k="20" />
+<hkern g1="ecircumflex" g2="quotedblright" k="20" />
+<hkern g1="edieresis" g2="quotedbl" k="20" />
+<hkern g1="edieresis" g2="quotesingle" k="20" />
+<hkern g1="edieresis" g2="v" k="41" />
+<hkern g1="edieresis" g2="w" k="41" />
+<hkern g1="edieresis" g2="x" k="41" />
+<hkern g1="edieresis" g2="y" k="41" />
+<hkern g1="edieresis" g2="z" k="20" />
+<hkern g1="edieresis" g2="yacute" k="41" />
+<hkern g1="edieresis" g2="quoteright" k="20" />
+<hkern g1="edieresis" g2="quotedblright" k="20" />
+<hkern g1="eth" g2="quotedbl" k="20" />
+<hkern g1="eth" g2="quotesingle" k="20" />
+<hkern g1="eth" g2="v" k="41" />
+<hkern g1="eth" g2="w" k="41" />
+<hkern g1="eth" g2="x" k="41" />
+<hkern g1="eth" g2="y" k="41" />
+<hkern g1="eth" g2="z" k="20" />
+<hkern g1="eth" g2="yacute" k="41" />
+<hkern g1="eth" g2="quoteright" k="20" />
+<hkern g1="eth" g2="quotedblright" k="20" />
+<hkern g1="ograve" g2="quotedbl" k="20" />
+<hkern g1="ograve" g2="quotesingle" k="20" />
+<hkern g1="ograve" g2="v" k="41" />
+<hkern g1="ograve" g2="w" k="41" />
+<hkern g1="ograve" g2="x" k="41" />
+<hkern g1="ograve" g2="y" k="41" />
+<hkern g1="ograve" g2="z" k="20" />
+<hkern g1="ograve" g2="yacute" k="41" />
+<hkern g1="ograve" g2="quoteright" k="20" />
+<hkern g1="ograve" g2="quotedblright" k="20" />
+<hkern g1="oacute" g2="quotedbl" k="20" />
+<hkern g1="oacute" g2="quotesingle" k="20" />
+<hkern g1="oacute" g2="v" k="41" />
+<hkern g1="oacute" g2="w" k="41" />
+<hkern g1="oacute" g2="x" k="41" />
+<hkern g1="oacute" g2="y" k="41" />
+<hkern g1="oacute" g2="z" k="20" />
+<hkern g1="oacute" g2="yacute" k="41" />
+<hkern g1="oacute" g2="quoteright" k="20" />
+<hkern g1="oacute" g2="quotedblright" k="20" />
+<hkern g1="ocircumflex" g2="quotedbl" k="20" />
+<hkern g1="ocircumflex" g2="quotesingle" k="20" />
+<hkern g1="ocircumflex" g2="v" k="41" />
+<hkern g1="ocircumflex" g2="w" k="41" />
+<hkern g1="ocircumflex" g2="x" k="41" />
+<hkern g1="ocircumflex" g2="y" k="41" />
+<hkern g1="ocircumflex" g2="z" k="20" />
+<hkern g1="ocircumflex" g2="yacute" k="41" />
+<hkern g1="ocircumflex" g2="quoteright" k="20" />
+<hkern g1="ocircumflex" g2="quotedblright" k="20" />
+<hkern g1="odieresis" g2="quotedbl" k="41" />
+<hkern g1="odieresis" g2="quotesingle" k="41" />
+<hkern g1="odieresis" g2="quoteright" k="41" />
+<hkern g1="odieresis" g2="quotedblright" k="41" />
+<hkern g1="oslash" g2="quotedbl" k="20" />
+<hkern g1="oslash" g2="quotesingle" k="20" />
+<hkern g1="oslash" g2="v" k="41" />
+<hkern g1="oslash" g2="w" k="41" />
+<hkern g1="oslash" g2="x" k="41" />
+<hkern g1="oslash" g2="y" k="41" />
+<hkern g1="oslash" g2="z" k="20" />
+<hkern g1="oslash" g2="yacute" k="41" />
+<hkern g1="oslash" g2="quoteright" k="20" />
+<hkern g1="oslash" g2="quotedblright" k="20" />
+<hkern g1="yacute" g2="quotedbl" k="-82" />
+<hkern g1="yacute" g2="quotesingle" k="-82" />
+<hkern g1="yacute" g2="comma" k="82" />
+<hkern g1="yacute" g2="period" k="82" />
+<hkern g1="yacute" g2="question" k="-41" />
+<hkern g1="yacute" g2="quoteright" k="-82" />
+<hkern g1="yacute" g2="quotesinglbase" k="82" />
+<hkern g1="yacute" g2="quotedblright" k="-82" />
+<hkern g1="yacute" g2="quotedblbase" k="82" />
+<hkern g1="thorn" g2="quotedbl" k="20" />
+<hkern g1="thorn" g2="quotesingle" k="20" />
+<hkern g1="thorn" g2="v" k="41" />
+<hkern g1="thorn" g2="w" k="41" />
+<hkern g1="thorn" g2="x" k="41" />
+<hkern g1="thorn" g2="y" k="41" />
+<hkern g1="thorn" g2="z" k="20" />
+<hkern g1="thorn" g2="yacute" k="41" />
+<hkern g1="thorn" g2="quoteright" k="20" />
+<hkern g1="thorn" g2="quotedblright" k="20" />
+<hkern g1="ydieresis" g2="quotedbl" k="-82" />
+<hkern g1="ydieresis" g2="quotesingle" k="-82" />
+<hkern g1="ydieresis" g2="comma" k="82" />
+<hkern g1="ydieresis" g2="period" k="82" />
+<hkern g1="ydieresis" g2="question" k="-41" />
+<hkern g1="ydieresis" g2="quoteright" k="-82" />
+<hkern g1="ydieresis" g2="quotesinglbase" k="82" />
+<hkern g1="ydieresis" g2="quotedblright" k="-82" />
+<hkern g1="ydieresis" g2="quotedblbase" k="82" />
+<hkern g1="OE" g2="J" k="-123" />
+</font>
+</defs>
+</svg>
Binary files /dev/null and b/src/fonts/Open-Sans-regular/Open-Sans-regular.ttf differ
Binary files /dev/null and b/src/fonts/Open-Sans-regular/Open-Sans-regular.woff differ
Binary files /dev/null and b/src/fonts/Open-Sans-regular/Open-Sans-regular.woff2 differ
--- /dev/null
+++ b/src/fonts/Oswald-300/LICENSE.txt
@@ -0,0 +1,93 @@
+Copyright 2016 The Oswald Project Authors (contact@sansoxygen.com)
+
+This Font Software is licensed under the SIL Open Font License, Version 1.1.
+This license is copied below, and is also available with a FAQ at:
+http://scripts.sil.org/OFL
+
+
+-----------------------------------------------------------
+SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
+-----------------------------------------------------------
+
+PREAMBLE
+The goals of the Open Font License (OFL) are to stimulate worldwide
+development of collaborative font projects, to support the font creation
+efforts of academic and linguistic communities, and to provide a free and
+open framework in which fonts may be shared and improved in partnership
+with others.
+
+The OFL allows the licensed fonts to be used, studied, modified and
+redistributed freely as long as they are not sold by themselves. The
+fonts, including any derivative works, can be bundled, embedded,
+redistributed and/or sold with any software provided that any reserved
+names are not used by derivative works. The fonts and derivatives,
+however, cannot be released under any other type of license. The
+requirement for fonts to remain under this license does not apply
+to any document created using the fonts or their derivatives.
+
+DEFINITIONS
+"Font Software" refers to the set of files released by the Copyright
+Holder(s) under this license and clearly marked as such. This may
+include source files, build scripts and documentation.
+
+"Reserved Font Name" refers to any names specified as such after the
+copyright statement(s).
+
+"Original Version" refers to the collection of Font Software components as
+distributed by the Copyright Holder(s).
+
+"Modified Version" refers to any derivative made by adding to, deleting,
+or substituting -- in part or in whole -- any of the components of the
+Original Version, by changing formats or by porting the Font Software to a
+new environment.
+
+"Author" refers to any designer, engineer, programmer, technical
+writer or other person who contributed to the Font Software.
+
+PERMISSION & CONDITIONS
+Permission is hereby granted, free of charge, to any person obtaining
+a copy of the Font Software, to use, study, copy, merge, embed, modify,
+redistribute, and sell modified and unmodified copies of the Font
+Software, subject to the following conditions:
+
+1) Neither the Font Software nor any of its individual components,
+in Original or Modified Versions, may be sold by itself.
+
+2) Original or Modified Versions of the Font Software may be bundled,
+redistributed and/or sold with any software, provided that each copy
+contains the above copyright notice and this license. These can be
+included either as stand-alone text files, human-readable headers or
+in the appropriate machine-readable metadata fields within text or
+binary files as long as those fields can be easily viewed by the user.
+
+3) No Modified Version of the Font Software may use the Reserved Font
+Name(s) unless explicit written permission is granted by the corresponding
+Copyright Holder. This restriction only applies to the primary font name as
+presented to the users.
+
+4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
+Software shall not be used to promote, endorse or advertise any
+Modified Version, except to acknowledge the contribution(s) of the
+Copyright Holder(s) and the Author(s) or with their explicit written
+permission.
+
+5) The Font Software, modified or unmodified, in part or in whole,
+must be distributed entirely under this license, and must not be
+distributed under any other license. The requirement for fonts to
+remain under this license does not apply to any document created
+using the Font Software.
+
+TERMINATION
+This license becomes null and void if any of the above conditions are
+not met.
+
+DISCLAIMER
+THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
+MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
+OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
+COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
+INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
+DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
+OTHER DEALINGS IN THE FONT SOFTWARE.
Binary files /dev/null and b/src/fonts/Oswald-300/Oswald-300.eot differ
--- /dev/null
+++ b/src/fonts/Oswald-300/Oswald-300.svg
@@ -0,0 +1,335 @@
+<?xml version="1.0" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
+<svg xmlns="http://www.w3.org/2000/svg">
+<defs >
+<font id="Oswald" horiz-adv-x="694" ><font-face
+ font-family="Oswald"
+ units-per-em="2048"
+ panose-1="2 0 3 3 0 0 0 0 0 0"
+ ascent="2444"
+ descent="-591"
+ alphabetic="0" />
+<glyph unicode=" " horiz-adv-x="406" />
+<glyph unicode="!" horiz-adv-x="434" d="M138 0V179H323V0H138ZM197 388L117 1719H311L251 388H197Z" />
+<glyph unicode="&quot;" d="M475 1408L425 1715H593Q581 1644 569 1567T542 1408H475ZM152 1408L102 1715H270Q258 1644 246 1567T219 1408H152Z" />
+<glyph unicode="#" horiz-adv-x="1020" d="M382 785H559L626 1024H449L382 785ZM18 0L203 660H48V785H238L305 1024H98V1139H337L500 1721H645L482 1139H658L821 1721H966L803 1139H957V1024H770L703 785H907V660H668L483 0H339L524 660H347L162 0H18Z" />
+<glyph unicode="$" horiz-adv-x="948" d="M197 484Q212 330 289 230T500 125Q578 125 636 147T731 224T769 364Q769 517 534 700L239 930Q57 1078 57 1234Q57 1394 165 1491T446 1594V1747H534V1591Q681 1573 777 1472T895 1206L769 1167Q749 1292 671 1381T482
+1470Q204 1470 204 1254Q204 1137 345 1020L628 795Q693 742 735 702T823 608T891 496T914 377Q914 207 809 110T534 4V-138H446V6Q337 18 255 82T127 238T63 445L197 484Z" />
+<glyph unicode="%" horiz-adv-x="1257" d="M783 307V541Q783 865 1009 865T1235 541V307Q1235 -27 1009 -27T783 307ZM1118 310V538Q1118 764 1009 764T900 538V310Q900 74 1009 74T1118 310ZM57 1187V1421Q57 1745 283 1745T509 1421V1187Q509 853 283 853T57
+1187ZM392 1190V1418Q392 1644 283 1644T174 1418V1190Q174 954 283 954T392 1190ZM305 0L857 1721H981L428 0H305Z" />
+<glyph unicode="&amp;" horiz-adv-x="1116" d="M442 927Q556 1036 624 1168T692 1416Q692 1511 644 1567T497 1623Q441 1623 399 1598T335 1531T303 1448T292 1364Q292 1179 442 927ZM735 229L406 734Q321 656 265 537T208 313Q208 214 265 154T442 94Q590 94
+735 229ZM1094 122V-14Q1017 -9 938 30T804 134Q634 -26 434 -26Q251 -26 160 64T68 298Q68 435 142 587T346 844Q140 1185 140 1370Q140 1537 236 1641T493 1745T745 1656T836 1420Q836 1283 752 1126T498 817L819 324Q968 522 968 753H1096Q1096 642 1041 496T890
+228Q986 122 1094 122Z" />
+<glyph unicode="&apos;" horiz-adv-x="373" d="M153 1408L102 1715H271Q257 1633 245 1555T220 1408H153Z" />
+<glyph unicode="(" horiz-adv-x="535" d="M541 68V-64Q472 -64 415 -43T316 10T241 97T188 202T153 327T131 456T120 593T116 721T115 841Q115 845 115 846T115 851T115 856T115 861Q115 867 115 881Q115 981 116 1038T125 1204T148 1380T194 1533T270 1668T383
+1752T541 1787V1655Q486 1655 443 1631T372 1571T323 1471T292 1352T275 1209T268 1060T267 903Q267 891 267 866Q267 773 267 724T271 588T281 450T301 331T333 222T382 143T450 86T541 68Z" />
+<glyph unicode=")" horiz-adv-x="545" d="M18 -64V68Q68 68 108 85T177 142T225 221T258 330T277 450T288 587T291 724T292 866Q292 874 292 878T292 890T292 903Q292 997 291 1059T284 1208T268 1351T237 1471T188 1570T116 1631T18 1655V1787Q106 1787 175 1752T289
+1668T364 1533T411 1380T434 1205T443 1039T444 881Q444 877 444 876T444 871T444 866T444 861Q444 855 444 841Q444 764 444 721T440 594T429 457T407 328T372 202T318 98T244 11T145 -42T18 -64Z" />
+<glyph unicode="*" horiz-adv-x="760" d="M147 963L320 1210L55 1311L91 1400L343 1281L325 1583H444L424 1282L678 1402L713 1312L449 1210L623 960L534 911L384 1163L235 911L147 963Z" />
+<glyph unicode="+" horiz-adv-x="649" d="M274 384V576H82V691H274V883H395V691H587V576H395V384H274Z" />
+<glyph unicode="," horiz-adv-x="389" d="M160 -256L133 -201Q165 -189 188 -163T221 -105T235 -48T239 0H111V179H296Q296 171 296 156Q296 102 296 76T294 3T289 -67T279 -125T263 -178T239 -215T205 -244T160 -256Z" />
+<glyph unicode="-" horiz-adv-x="532" d="M117 448V563H430V448H117Z" />
+<glyph unicode="." horiz-adv-x="397" d="M115 0V179H299V0H115Z" />
+<glyph unicode="/" horiz-adv-x="651" d="M-29 0L523 1721H668L115 0H-29Z" />
+<glyph unicode="0" horiz-adv-x="1047" d="M117 499V1220Q117 1311 129 1387T172 1530T248 1644T364 1718T526 1745T687 1718T804 1645T880 1531T922 1387T935 1220V499Q935 -27 526 -27T117 499ZM783 465V1254Q783 1623 526 1623T269 1254V465Q269 95 526 95T783 465Z" />
+<glyph unicode="1" horiz-adv-x="532" d="M233 0V1478Q190 1449 133 1423T41 1389V1533Q101 1555 171 1603T282 1721H385V0H233Z" />
+<glyph unicode="2" horiz-adv-x="931" d="M63 0V128L525 825Q565 886 590 927T649 1033T700 1158T717 1272Q717 1434 663 1528T489 1623Q421 1623 371 1600T292 1541T246 1449T224 1340T218 1216H66V1239Q76 1745 487 1745Q677 1745 773 1620T869 1273Q869 1168
+811 1037T675 793L242 122H848V0H63Z" />
+<glyph unicode="3" horiz-adv-x="932" d="M74 395V421H216Q218 320 234 255T285 155T361 108T468 95Q526 95 566 111T638 166T685 278T700 459Q700 544 688 609T647 728T567 811T444 848V977Q588 983 644 1058T700 1317Q700 1484 643 1553T469 1623Q351 1623 288
+1545T216 1292H73V1317Q73 1403 94 1477T160 1612T284 1709T472 1745Q553 1745 618 1722T726 1658T798 1563T839 1446T852 1316Q852 1150 786 1045T617 910Q852 816 852 462Q852 -27 454 -27Q372 -27 307 -4T198 59T127 154T86 268T74 395Z" />
+<glyph unicode="4" horiz-adv-x="848" d="M186 622H505L504 1596L186 622ZM505 0V509H27V614L424 1723H657V622H828V509H657V0H505Z" />
+<glyph unicode="5" horiz-adv-x="948" d="M123 430L275 441Q275 335 288 267T332 161T401 109T501 95Q623 95 680 195T737 535Q737 764 684 859T510 954Q445 954 378 919T264 814H142V1721H801L787 1599H294L273 966Q320 1016 391 1046T540 1076Q634 1076 703
+1035T812 917T870 747T889 536Q889 415 867 316T801 138T680 17T501 -27Q303 -27 213 89T123 430Z" />
+<glyph unicode="6" horiz-adv-x="979" d="M266 811V501Q266 402 275 331T303 214T351 142T416 106T502 95Q636 95 697 181T758 481Q758 689 699 773T512 857Q442 857 370 845T266 811ZM114 490V1256Q114 1745 502 1745Q601 1745 675 1710T790 1614T852 1480T872
+1323V1297H730Q728 1398 712 1463T664 1563T591 1610T488 1623Q432 1623 394 1607T325 1552T281 1440T266 1259V934Q361 979 512 979Q617 979 695 942T819 835T887 678T910 482Q910 371 887 281T817 120T689 12T502 -27Q299 -27 207 105T114 490Z" />
+<glyph unicode="7" horiz-adv-x="691" d="M156 0L484 1585H1V1721H647V1645Q572 1260 479 814T314 0H156Z" />
+<glyph unicode="8" horiz-adv-x="954" d="M477 977Q615 985 669 1061T723 1317Q723 1485 664 1554T477 1623T290 1554T231 1317Q231 1137 285 1061T477 977ZM477 847Q343 832 287 732T231 459Q231 350 246 278T294 167T370 111T477 95T583 111T659 166T707 278T723
+459Q723 632 667 732T477 847ZM314 910Q211 940 145 1045T79 1316Q79 1409 101 1485T170 1620T294 1712T477 1745T660 1712T784 1620T852 1485T875 1316Q875 1150 809 1045T640 910Q875 816 875 462Q875 -27 477 -27T79 462Q79 816 314 910Z" />
+<glyph unicode="9" horiz-adv-x="990" d="M724 907V1217Q724 1316 715 1387T687 1504T639 1576T574 1612T488 1623Q354 1623 293 1537T232 1237Q232 1029 291 945T478 861Q548 861 620 873T724 907ZM118 395V421H260Q262 320 278 255T326 155T399 108T502 95Q558
+95 596 111T665 166T709 278T724 459V784Q629 739 478 739Q373 739 295 776T171 883T103 1040T80 1236Q80 1347 103 1437T173 1598T301 1706T488 1745Q691 1745 783 1613T876 1228V462Q876 -27 488 -27Q389 -27 315 8T200 104T138 238T118 395Z" />
+<glyph unicode=":" horiz-adv-x="426" d="M125 275V454H310V275H125ZM125 813V992H310V813H125Z" />
+<glyph unicode=";" horiz-adv-x="422" d="M173 0L147 55Q206 77 229 138T253 256H125V435H309Q309 415 308 376Q307 324 307 299T304 231T298 167T288 115T272 69T249 36T216 11T173 0ZM125 813V992H309V813H125Z" />
+<glyph unicode="&lt;" horiz-adv-x="727" d="M76 494V709L645 1107V942L168 603Q264 534 402 436T645 261V94Q219 392 76 494Z" />
+<glyph unicode="=" horiz-adv-x="750" d="M127 255V370H632V255H127ZM127 576V691H632V576H127Z" />
+<glyph unicode="&gt;" horiz-adv-x="727" d="M102 94V261L579 603Q474 677 102 942V1109Q526 809 671 709V494L102 94Z" />
+<glyph unicode="?" horiz-adv-x="868" d="M275 1V180H459V1H275ZM300 452V793Q401 851 476 916T591 1035T655 1146T685 1241T692 1317Q692 1398 671 1459T614 1555T533 1607T439 1624Q321 1624 245 1545T168 1321L167 1179H33V1325Q33 1424 68 1506T160 1639T290
+1718T439 1746Q514 1746 583 1720T707 1642T796 1508T829 1319Q829 1139 731 999T434 736V452H300Z" />
+<glyph unicode="@" horiz-adv-x="1434" d="M834 644V1121Q758 1174 702 1174Q655 1174 625 1127T584 1008T572 840Q572 694 600 628T687 561Q739 561 770 582T834 644ZM1091 198L1116 80Q930 40 785 40Q656 40 551 66T355 153T203 308T107 543T72 868Q72 1059
+124 1213T266 1465T474 1615T726 1667Q1032 1667 1201 1465T1371 888Q1371 794 1355 718T1313 592T1250 509T1175 461T1094 446Q1018 446 953 490T864 603Q852 547 818 511T743 461T651 447Q596 447 553 477T486 550T447 651T426 753T421 839Q421 1056 487 1168T653
+1280Q747 1280 834 1204V1274H986V714Q986 561 1090 561Q1219 561 1219 881Q1219 1037 1195 1154T1130 1346T1026 1465T892 1528T730 1546Q695 1546 662 1543T575 1523T477 1481T384 1403T302 1282T246 1105T224 864Q224 693 257 564T343 360T471 238T620 175T780
+159Q814 159 848 161T922 169T979 177T1043 189T1091 198Z" />
+<glyph unicode="A" horiz-adv-x="972" d="M306 549H666L485 1563L306 549ZM200 0H47L387 1721H585L925 0H771L685 448H288L200 0Z" />
+<glyph unicode="B" horiz-adv-x="1012" d="M298 982H542Q598 982 638 1006T700 1074T732 1169T742 1281Q742 1605 496 1605H298V982ZM298 116H570Q622 116 661 137T724 194T762 282T782 390T788 513Q788 574 783 622T764 717T726 795T663 846T570 865H298V116ZM146
+0V1721H516Q605 1721 674 1696T786 1630T856 1531T894 1413T905 1284Q905 1177 856 1075T719 933Q780 908 825 860T894 751T929 632T940 513Q940 423 932 354T898 216T830 101T716 28T546 0H146Z" />
+<glyph unicode="C" horiz-adv-x="1032" d="M114 499V1220Q114 1312 126 1387T168 1530T247 1644T369 1718T542 1745Q946 1745 946 1220V1150H801V1254Q801 1337 789 1401T747 1516T667 1595T542 1623Q476 1623 427 1605T348 1554T299 1474T273 1374T266 1254V465Q266
+380 278 318T319 203T405 123T542 95Q615 95 666 122T747 202T788 318T801 465V583H946V499Q946 408 935 333T896 190T822 75T706 1T542 -27Q442 -27 367 0T244 74T167 189T126 332T114 499Z" />
+<glyph unicode="D" horiz-adv-x="1086" d="M146 0V1721H533Q631 1721 707 1695T832 1623T913 1511T958 1371T972 1208V508Q972 0 533 0H146ZM298 122H533Q820 122 820 474V1242Q820 1599 533 1599H298V122Z" />
+<glyph unicode="E" horiz-adv-x="795" d="M146 0V1721H746V1599H298V947H618V832H298V122H746V0H146Z" />
+<glyph unicode="F" horiz-adv-x="736" d="M146 0V1721H751V1599H298V947H654V832H298V0H146Z" />
+<glyph unicode="G" horiz-adv-x="1088" d="M114 481V1211Q114 1745 567 1745Q639 1745 697 1729T796 1686T867 1615T916 1526T945 1419T960 1300T964 1171V1159H812V1172Q812 1176 812 1185Q812 1258 811 1295T803 1394T781 1488T739 1556T669 1607T565 1623Q481
+1623 421 1595T328 1515T281 1405T266 1275V415Q266 349 278 297T319 196T408 122T553 95Q632 95 688 123T772 199T811 300T823 415V706H612V821H975V0H908L863 168Q829 79 743 26T551 -27Q482 -27 425 -15T325 18T250 69T195 132T157 204T133 278T121 353T115
+421T114 481Z" />
+<glyph unicode="H" horiz-adv-x="1126" d="M146 0V1721H298V942H828V1721H980V0H828V836H298V0H146Z" />
+<glyph unicode="I" horiz-adv-x="444" d="M145 0V1721H297V0H145Z" />
+<glyph unicode="J" horiz-adv-x="566" d="M12 0V115Q63 115 91 115T150 121T196 132T227 156T249 191T260 244T267 315T268 410V1721H420V410Q420 332 417 281T402 179T368 99T310 45T219 10T91 0H12Z" />
+<glyph unicode="K" horiz-adv-x="981" d="M146 0V1721H298V816L757 1721H914L558 1011L995 0H834L466 909L298 607V0H146Z" />
+<glyph unicode="L" horiz-adv-x="772" d="M146 0V1721H298V122H779V0H146Z" />
+<glyph unicode="M" horiz-adv-x="1330" d="M146 0V1721H333L665 235Q726 527 827 949T997 1721H1184V0H1049V1377L731 0H599L281 1376V0H146Z" />
+<glyph unicode="N" horiz-adv-x="1083" d="M146 0V1721H263L808 358V1721H937V0H823L277 1334V0H146Z" />
+<glyph unicode="O" horiz-adv-x="1106" d="M114 499V1220Q114 1311 127 1387T173 1530T254 1644T379 1718T553 1745T727 1718T852 1645T933 1531T978 1387T992 1220V499Q992 -27 553 -27T114 499ZM840 465V1254Q840 1623 553 1623T266 1254V465Q266 95 553 95T840 465Z" />
+<glyph unicode="P" horiz-adv-x="1004" d="M298 887L584 886Q712 885 767 974T822 1255Q822 1433 763 1516T584 1599H298V887ZM146 0V1721H567Q657 1721 727 1697T843 1630T919 1528T961 1402T974 1258Q974 1179 964 1112T925 979T852 868T734 794T566 765H298V0H146Z" />
+<glyph unicode="Q" horiz-adv-x="1113" d="M840 465V1254Q840 1623 553 1623T266 1254V465Q266 95 553 95T840 465ZM114 499V1220Q114 1311 127 1387T173 1530T254 1644T379 1718T553 1745T727 1718T852 1645T933 1531T978 1387T992 1220V499Q992 139 787 25Q825
+-9 850 -29T916 -70T999 -98V-212Q916 -200 843 -149T691 -11Q625 -27 553 -27Q114 -27 114 499Z" />
+<glyph unicode="R" horiz-adv-x="1067" d="M298 962H604Q669 962 714 988T781 1062T813 1162T822 1281Q822 1336 817 1380T797 1466T758 1536T695 1582T604 1599H298V962ZM146 0V1721H605Q692 1721 758 1697T864 1634T930 1536T964 1415T974 1276Q974 947 734
+859L1000 0H838L587 840H298V0H146Z" />
+<glyph unicode="S" horiz-adv-x="948" d="M68 415L202 454Q210 382 230 321T286 208T378 125T509 95Q626 95 690 160T754 344Q754 443 696 535T523 747L254 1030Q166 1123 119 1204T72 1374Q72 1543 183 1644T468 1745Q637 1745 740 1650T877 1372L880 1356L752
+1316L750 1330Q730 1459 658 1541T468 1623Q354 1623 287 1565T219 1394Q219 1326 255 1260T360 1120L613 845Q623 834 663 791T715 733T761 679T807 619T843 561T874 495T891 430T899 357Q899 173 786 73T492 -27Q400 -27 325 8T199 106T115 246T68 415Z" />
+<glyph unicode="T" horiz-adv-x="753" d="M299 0V1599H-36V1721H789V1599H451V0H299Z" />
+<glyph unicode="U" horiz-adv-x="1132" d="M120 423V1721H272V388Q272 240 339 168T565 95Q715 95 779 168T843 388V1721H994V423Q994 -27 565 -27Q462 -27 384 -3T256 61T175 160T132 282T120 423Z" />
+<glyph unicode="V" horiz-adv-x="949" d="M382 0L12 1721H176L481 180L773 1721H937L581 0H382Z" />
+<glyph unicode="W" horiz-adv-x="1416" d="M311 0L23 1721H165L400 249L622 1721H815L1018 249L1252 1721H1393L1107 0H932L717 1520L485 0H311Z" />
+<glyph unicode="X" horiz-adv-x="951" d="M30 0L397 866L30 1722H173L475 998L768 1722H924L557 850L924 0H778L480 717L187 0H30Z" />
+<glyph unicode="Y" horiz-adv-x="888" d="M374 0V534L-2 1721H152Q172 1649 210 1518T288 1252T365 993T427 788L451 709Q515 944 599 1228T741 1721H890L526 534V0H374Z" />
+<glyph unicode="Z" horiz-adv-x="866" d="M60 0V141L665 1599H124V1721H821V1580L216 122H821V0H60Z" />
+<glyph unicode="[" horiz-adv-x="494" d="M150 -64V1779H481V1698H302V17H481V-64H150Z" />
+<glyph unicode="\" horiz-adv-x="639" d="M541 0L-12 1721H133L685 0H541Z" />
+<glyph unicode="]" horiz-adv-x="504" d="M25 -64V17H204V1698H25V1779H356V-64H25Z" />
+<glyph unicode="^" horiz-adv-x="739" d="M220 896H43Q43 896 270 1459H477L703 896H528L373 1436L220 896Z" />
+<glyph unicode="_" horiz-adv-x="913" d="M115 0V115H811V0H115Z" />
+<glyph unicode="`" horiz-adv-x="451" d="M299 1324L70 1722H232L355 1324H299Z" />
+<glyph unicode="a" horiz-adv-x="808" d="M554 244V666Q481 615 439 584T351 512T281 436T242 359T226 267Q226 181 262 140T347 98Q404 98 462 139T554 244ZM584 0L565 145Q517 61 447 17T312 -27Q219 -27 147 46T75 239Q75 271 76 290T81 341T94 393T119 444T160
+498T220 552T303 610T413 669T554 733V743Q554 845 545 917T523 1029T490 1091T451 1118T407 1124Q380 1124 359 1117T314 1088T274 1018T254 896V889H98Q110 1046 190 1135T402 1225Q475 1225 531 1202T619 1142T672 1054T699 955T706 852V276Q706 213 710 144T720
+38L724 0H584Z" />
+<glyph unicode="b" horiz-adv-x="871" d="M615 545V640Q615 750 610 832T594 964T571 1046T541 1092T508 1110T471 1114Q377 1114 270 995V205Q315 151 368 118T466 84Q486 84 498 86T528 97T557 124T580 175T599 257T610 378T615 545ZM120 0V1721H270V1085Q317
+1154 377 1189T501 1225Q544 1225 576 1217T646 1174T708 1079T748 908T765 641V546Q765 438 757 351T735 206T700 104T658 36T610 -3T561 -22T512 -27Q360 -27 270 113V0H120Z" />
+<glyph unicode="c" horiz-adv-x="816" d="M106 568V630Q106 710 107 752T114 868T131 983T167 1077T225 1157T312 1205T433 1225Q502 1225 554 1203T639 1144T693 1053T723 943T736 817Q736 815 736 812T737 806H587V815Q581 984 548 1054T433 1124Q394 1124 366
+1113T318 1074T286 1011T267 915T258 790T256 630V568Q256 287 291 181T433 74Q512 74 545 146T587 393V403H738V396Q735 320 727 263T698 148T645 55T559 -4T433 -27Q373 -27 325 -15T244 25T186 80T147 159T124 246T111 349T107 454T106 568Z" />
+<glyph unicode="d" horiz-adv-x="866" d="M596 205V995Q489 1114 395 1114Q373 1114 359 1110T326 1092T296 1047T273 965T256 832T251 640V545Q251 451 255 378T267 257T286 176T309 124T337 97T367 86T400 84Q445 84 498 117T596 205ZM596 0V113Q506 -27 354
+-27Q327 -27 305 -23T256 -4T208 35T166 103T132 205T110 351T101 546V641Q101 796 117 907T158 1079T220 1173T290 1216T365 1225Q428 1225 488 1190T596 1085V1721H746V0H596Z" />
+<glyph unicode="e" horiz-adv-x="829" d="M258 702H590Q589 742 590 783T589 865T584 945T570 1015T545 1072T504 1110T444 1124Q389 1124 354 1104T299 1057T270 966T260 854T258 702ZM106 552V719Q107 844 124 935T168 1082T239 1169T329 1213T437 1225Q598
+1225 668 1111T739 751Q739 676 737 628H257V445Q257 327 268 252T305 138T360 87T436 74Q503 74 548 141T595 367H735Q729 299 719 246T688 140T635 52T553 -5T438 -27Q311 -27 241 23T137 199T106 552Z" />
+<glyph unicode="f" horiz-adv-x="532" d="M177 0V1114H10V1198H177V1327Q177 1333 177 1345Q177 1377 177 1396T181 1451T192 1510T216 1563T254 1610T313 1640T394 1652Q463 1652 516 1639V1530Q492 1536 442 1536Q409 1536 386 1526T352 1504T334 1468T328 1429T327
+1386Q327 1381 327 1378V1198H519V1114H327V0H177Z" />
+<glyph unicode="g" horiz-adv-x="881" d="M378 468T428 468T515 491T572 547T604 625T619 705T623 776Q623 811 620 846T605 930T573 1015T516 1077T428 1103Q386 1103 353 1086T299 1038T264 975T244 902T235 833T232 776Q232 739 235 705T250 625T283 547T340
+491ZM524 3L310 49Q260 12 210 -63T159 -191Q159 -214 169 -231T202 -258T244 -274T299 -282T352 -285T405 -286Q414 -286 418 -286Q683 -286 683 -157Q683 -86 646 -50T524 3ZM214 210Q209 187 241 176T405 138Q446 130 469 125Q551 108 610 89T720 40T798 -32T824
+-130Q824 -180 808 -220T765 -288T702 -335T628 -366T550 -383T477 -391T416 -393Q17 -393 17 -236Q17 -135 82 -57T241 69Q226 72 193 81T118 111T76 150Q76 163 79 178T90 211T106 245T126 281T147 315T169 349T189 377T207 401T219 418Q148 482 114 583T79 793Q79
+851 90 909T127 1024T192 1126T290 1197T423 1224Q519 1224 582 1178T706 1038Q725 1071 739 1093T778 1145T830 1194T888 1221V1076Q850 1069 809 1043T737 981Q775 875 775 800Q775 728 763 664T725 544T658 446T559 382T427 358Q341 358 283 382Q228 278 214
+210Z" />
+<glyph unicode="h" horiz-adv-x="860" d="M120 0V1721H270V1085Q315 1155 383 1190T522 1225Q614 1225 681 1151T748 942V0H596V934Q596 1114 470 1114Q421 1114 365 1080T270 992V0H120Z" />
+<glyph unicode="i" horiz-adv-x="405" d="M132 1472V1651H282V1472H132ZM132 0V1198H282V0H132Z" />
+<glyph unicode="j" horiz-adv-x="428" d="M148 1473V1652H298V1473H148ZM-44 -312V-204Q2 -206 12 -206Q45 -206 69 -197T108 -171T131 -136T143 -94T147 -54T148 -18V1198H298V-46Q298 -320 37 -320Q-3 -320 -44 -312Z" />
+<glyph unicode="k" horiz-adv-x="830" d="M120 0V1721H270V630L644 1198H813L526 744L811 0H654L419 653L270 470V0H120Z" />
+<glyph unicode="l" horiz-adv-x="442" d="M146 0V1721H296V0H146Z" />
+<glyph unicode="m" horiz-adv-x="1335" d="M120 0V1198H271V1087Q388 1225 537 1225Q598 1225 655 1187T737 1089Q796 1156 866 1190T994 1225Q1086 1225 1154 1161T1223 1001V0H1073V970Q1073 1045 1040 1079T950 1114Q857 1114 760 1017V0H610V971Q610 1114
+483 1114Q432 1114 376 1082T270 995V0H120Z" />
+<glyph unicode="n" horiz-adv-x="860" d="M120 0V1198H270V1085Q318 1155 385 1190T524 1225Q613 1225 680 1151T748 941V0H596V944Q596 1033 561 1073T469 1114Q422 1114 369 1082T270 993V0H120Z" />
+<glyph unicode="o" horiz-adv-x="846" d="M106 568V630Q106 710 107 752T113 868T130 983T165 1077T221 1157T306 1205T423 1225T540 1205T624 1158T681 1077T715 983T732 869T739 753T740 630V568Q740 501 740 467T737 373T729 279T712 197T686 121T646 62T591
+13T518 -15T423 -27T329 -16T255 12T200 61T161 121T134 197T118 279T110 372T107 467T106 568ZM256 630V568Q256 286 289 180T423 74T557 180T590 568V630Q590 725 588 790T580 914T562 1010T532 1073T487 1112T423 1124T360 1113T314 1074T284 1011T267 915T258
+790T256 630Z" />
+<glyph unicode="p" horiz-adv-x="871" d="M615 558V653Q615 747 611 820T599 941T580 1022T557 1074T529 1101T499 1112T466 1114Q421 1114 368 1081T270 993V203Q377 84 471 84Q493 84 507 88T540 106T570 151T593 233T610 366T615 558ZM120 -385V1198H270V1085Q360
+1225 512 1225Q539 1225 561 1221T610 1202T658 1163T700 1095T734 993T756 847T765 652V557Q765 402 749 291T708 119T646 25T576 -18T501 -27Q438 -27 378 8T270 113V-385H120Z" />
+<glyph unicode="q" horiz-adv-x="871" d="M601 203V993Q556 1047 503 1080T405 1114Q385 1114 373 1112T343 1101T314 1074T291 1023T272 941T261 820T256 653V558Q256 448 261 366T277 234T300 152T330 106T363 88T400 84Q494 84 601 203ZM601 -385V113Q554 44
+494 9T370 -27Q327 -27 295 -19T225 24T163 119T123 290T106 557V652Q106 760 114 847T136 992T171 1094T213 1162T261 1201T310 1220T359 1225Q511 1225 601 1085V1198H751V-385H601Z" />
+<glyph unicode="r" horiz-adv-x="534" d="M120 0V1198H270V1029Q298 1122 371 1168T522 1217V1066Q511 1070 499 1070Q270 1070 270 894V0H120Z" />
+<glyph unicode="s" horiz-adv-x="749" d="M57 300L172 339Q186 295 206 254T256 172T324 106T407 81Q486 81 525 129T565 259Q565 374 360 554L273 630Q174 717 124 785T73 939Q73 1074 155 1148T374 1223Q439 1223 492 1198T581 1129T641 1033T681 919L548 878Q539
+934 520 984T460 1074T367 1115Q300 1115 261 1070T221 952Q221 892 259 838T371 722L466 640Q512 600 536 578T598 514T655 439T689 358T706 262Q706 128 622 51T401 -27Q269 -27 181 65T57 300Z" />
+<glyph unicode="t" horiz-adv-x="550" d="M167 283V1114H4V1198H167V1623H317V1198H509V1114H317V290Q317 247 318 223T324 170T340 127T370 104T419 94Q468 94 507 102V-1Q440 -18 377 -18Q321 -18 281 -1T220 43T186 112T170 192T167 283Z" />
+<glyph unicode="u" horiz-adv-x="892" d="M112 257V1198H264V254Q264 165 299 125T391 84Q438 84 491 116T590 205V1198H740V0H590V113Q542 43 475 8T336 -27Q247 -27 180 47T112 257Z" />
+<glyph unicode="v" horiz-adv-x="747" d="M297 0L25 1198H171L385 136L579 1198H722L472 0H297Z" />
+<glyph unicode="w" horiz-adv-x="1161" d="M240 0L42 1198H173L331 176L502 1198H662L846 176L990 1198H1119L923 0H778L585 988L399 0H240Z" />
+<glyph unicode="x" horiz-adv-x="783" d="M39 0L297 626L41 1198H196L392 699L588 1198H743L486 626L744 0H598L392 534L186 0H39Z" />
+<glyph unicode="y" horiz-adv-x="777" d="M77 -299V-176Q197 -168 252 -136T308 -46Q308 27 297 96L37 1198H189L397 197L601 1198H753L453 -83Q423 -199 334 -246T80 -299H77Z" />
+<glyph unicode="z" horiz-adv-x="695" d="M47 0V144L519 1084H111V1198H660V1055L199 115H654V0H47Z" />
+<glyph unicode="{" horiz-adv-x="520" d="M511 56V-57Q455 -57 409 -45T329 -16T269 37T226 102T197 185T179 276T170 382T167 491T166 609Q166 687 140 727T35 768V956Q114 956 140 996T166 1115Q166 1192 166 1233T170 1342T179 1447T197 1538T226 1622T269
+1687T329 1739T409 1769T511 1781V1668Q459 1668 423 1656T364 1609T328 1544T310 1442T303 1324T302 1174Q302 1117 297 1074T275 985T225 909T139 862Q190 847 224 816T275 739T296 651T302 550Q302 447 303 400T309 282T328 181T364 115T423 68T511 56Z" />
+<glyph unicode="|" horiz-adv-x="416" d="M150 -128V1746H268V-128H150Z" />
+<glyph unicode="}" horiz-adv-x="530" d="M25 -57V56Q77 56 113 68T172 115T208 180T226 282T233 400T234 550Q234 607 239 650T261 739T311 815T397 862Q346 877 312 908T261 985T240 1073T234 1174Q234 1277 233 1324T227 1442T208 1543T172 1609T113 1656T25
+1668V1781Q81 1781 127 1769T207 1740T267 1687T310 1622T339 1539T357 1448T366 1342T369 1233T370 1115Q370 1037 396 997T501 956V768Q422 768 396 728T370 609Q370 532 370 491T366 382T357 277T339 186T310 102T267 37T207 -15T127 -45T25 -57Z" />
+<glyph unicode="~" horiz-adv-x="815" d="M213 959H98Q99 978 101 996T115 1043T143 1093T195 1130T275 1146Q317 1146 414 1108T550 1070Q579 1070 595 1084T616 1137H732Q732 1136 731 1124T727 1095T717 1058T699 1019T669 984T623 957T558 947Q501 947 407
+986T275 1025Q247 1025 233 1011T213 959Z" />
+<glyph unicode="&#xa0;" horiz-adv-x="406" />
+<glyph unicode="&#xa1;" horiz-adv-x="434" d="M304 1377V1198H119V1377H304ZM245 989L325 -343H131L191 989H245Z" />
+<glyph unicode="&#xa2;" horiz-adv-x="760" d="M370 87V240Q309 244 262 264T183 309T131 382T99 466T83 570T77 677T76 794V856Q76 928 76 965T82 1069T98 1173T130 1260T182 1336T260 1384T369 1410V1543H434V1409Q510 1403 563 1370T645 1277T687 1155T706
+1006Q706 1004 706 999T707 992H557V1006Q556 1038 555 1051T552 1098T545 1151T533 1198T515 1243T488 1276T450 1301T401 1309Q366 1309 340 1300T296 1276T265 1229T245 1168T234 1083T229 982T226 856V794Q226 708 228 649T237 535T256 447T287 387T334 350T400
+339Q421 339 439 344T471 360T496 382T515 414T530 448T540 488T546 529T551 572T554 612T556 652Q556 655 556 661T557 669H708Q708 667 708 663T707 657Q704 585 696 530T670 421T622 330T546 270T435 240V87H370Z" />
+<glyph unicode="&#xa3;" horiz-adv-x="836" d="M55 0V65L183 115V768H55V877H183V1204Q183 1247 184 1284T193 1379T212 1483T249 1580T307 1666T392 1722T508 1745Q565 1745 610 1728T684 1685T732 1620T762 1548T777 1471T783 1405T784 1350Q784 1345 784 1343H664Q664
+1383 664 1403T660 1458T651 1512T634 1555T605 1591T562 1611T502 1617Q477 1616 457 1610T421 1590T393 1564T372 1526T357 1482T346 1429T340 1372T336 1307T335 1239T335 1164V883H624V768H335V115H783V0H55Z" />
+<glyph unicode="&#xa4;" horiz-adv-x="1028" d="M516 311Q613 313 684 361T788 480T821 635Q821 764 741 859T516 959Q371 955 291 860T211 635Q211 552 243 481T347 362T516 311ZM168 189L246 313Q178 372 142 457T106 635Q106 726 140 810T241 953L168 1070L222
+1108L294 992Q390 1051 516 1051Q653 1051 752 982L831 1108L885 1070L803 941Q863 882 894 802T926 635Q926 547 894 466T799 325L885 189L831 151L747 284Q648 219 516 219Q393 219 299 275L222 151L168 189Z" />
+<glyph unicode="&#xa5;" horiz-adv-x="909" d="M386 0V226H174V317H386V523H174V612H361L10 1721H179L461 689Q506 853 556 1037T647 1372T743 1721H902L562 612H743V523H538V317H743V226H538V0H386Z" />
+<glyph unicode="&#xa6;" horiz-adv-x="403" d="M137 889V1441H269V889H137ZM137 -14V537H269V-14H137Z" />
+<glyph unicode="&#xa7;" horiz-adv-x="834" d="M392 722L538 595Q622 633 622 758Q622 875 417 1053L348 1113Q292 1104 260 1060T228 952Q228 921 240 891T280 830T329 779T392 722ZM78 300L193 339Q207 295 227 254T277 172T345 106T428 81Q507 81 546 129T586
+259Q586 374 381 554L294 630Q253 666 240 678T193 723T146 774T113 822T87 880T80 939Q80 1037 124 1104T249 1201Q185 1261 151 1317T116 1438Q116 1573 198 1647T417 1722Q482 1722 535 1697T624 1628T684 1532T724 1418L591 1377Q582 1433 563 1483T503 1573T410
+1614Q343 1614 304 1569T264 1451Q264 1410 290 1367T345 1295T428 1221L523 1139Q576 1093 610 1058T683 974T742 872T763 761Q763 674 726 610T623 510Q724 393 727 262Q727 128 643 51T422 -27Q290 -27 202 65T78 300Z" />
+<glyph unicode="&#xa8;" horiz-adv-x="795" d="M497 1386V1565H681V1386H497ZM113 1386V1565H297V1386H113Z" />
+<glyph unicode="&#xa9;" horiz-adv-x="1378" d="M591 67T696 67T890 100T1041 189T1148 321T1214 482T1236 657T1215 832T1149 992T1042 1124T890 1214T696 1247T502 1214T351 1125T244 993T178 832T156 657T177 482T243 322T350 190T502 100ZM818 -2T696 -2T471
+35T294 135T168 282T91 462T66 657T91 852T168 1031T293 1179T470 1279T696 1316T921 1279T1098 1179T1224 1032T1301 852T1326 657T1301 462T1224 283T1099 135T922 35ZM830 505H917Q917 499 917 489T912 449T901 393T877 334T839 278T782 238T702 222Q663 222
+631 231T576 253T535 291T504 337T484 395T472 457T465 526T463 595T462 667T462 738T465 807T471 876T484 938T504 996T534 1043T576 1080T631 1103T702 1112Q748 1112 784 1096T843 1057T880 1001T903 943T913 886T917 847T917 829H830Q829 876 824 909T805 975T766
+1023T701 1040Q667 1040 644 1032T604 1003T578 957T563 884T557 790T555 667T556 544T563 450T577 378T603 331T643 302T701 294Q740 294 766 310T805 359T823 424T830 505Z" />
+<glyph unicode="&#xaa;" horiz-adv-x="745" d="M493 193V524Q417 475 376 445T294 376T237 298T220 212Q220 145 250 113T321 81Q368 81 416 112T493 193ZM518 0L502 120Q462 50 403 14T291 -23Q214 -23 154 35T94 189Q94 222 95 241T104 293T127 347T171 400T242
+457T347 516T493 580Q493 675 484 736T455 823T417 858T371 866Q348 866 331 860T293 835T259 774T243 670H113Q123 801 190 875T366 950Q427 950 473 931T547 881T591 808T614 725T620 639V220Q620 170 624 115T632 30L635 0H518Z" />
+<glyph unicode="&#xab;" horiz-adv-x="874" d="M778 124L390 576V704L778 1156V956L502 641L778 324V124ZM466 124L78 576V704L466 1156V956L190 641L466 324V124Z" />
+<glyph unicode="&#xac;" horiz-adv-x="657" d="M100 448V563H540V256H484V448H100Z" />
+<glyph unicode="&#xad;" horiz-adv-x="659" d="M117 448V563H558V448H117Z" />
+<glyph unicode="&#xae;" horiz-adv-x="1378" d="M591 67T696 67T890 100T1041 189T1148 321T1214 482T1236 657T1215 832T1149 992T1042 1124T890 1214T696 1247T502 1214T351 1125T244 993T178 832T156 657T177 482T243 322T350 190T502 100ZM818 -2T696 -2T471
+35T294 135T168 282T91 462T66 657T91 852T168 1031T293 1179T470 1279T696 1316T921 1279T1098 1179T1224 1032T1301 852T1326 657T1301 462T1224 283T1099 135T922 35ZM576 695H643Q678 695 690 695T731 697T772 705T802 721T830 747T844 787T851 843Q851 940
+810 986T682 1032H576V695ZM504 241V1083H695Q931 1083 931 843Q931 773 884 721T783 657Q797 628 937 244H851L718 646H576V241H504Z" />
+<glyph unicode="&#xaf;" horiz-adv-x="702" d="M131 1383V1498H572V1383H131Z" />
+<glyph unicode="&#xb0;" horiz-adv-x="637" d="M210 1722T317 1722T480 1657T536 1504T480 1351T317 1286T154 1351T98 1504T154 1657ZM176 1563T176 1504T210 1401T317 1357T424 1401T458 1504T424 1607T317 1651T210 1607Z" />
+<glyph unicode="&#xb1;" horiz-adv-x="702" d="M298 384V576H106V691H298V883H418V691H610V576H418V384H298ZM106 0V115H610V0H106Z" />
+<glyph unicode="&#xb2;" horiz-adv-x="764" d="M100 586V686L405 1145Q522 1333 522 1423Q522 1635 398 1635Q350 1635 318 1614T270 1553T250 1471T244 1371H102Q102 1549 174 1646T397 1743Q530 1743 597 1658T664 1424Q664 1308 534 1106L269 697H650V586H100Z" />
+<glyph unicode="&#xb3;" horiz-adv-x="770" d="M104 955H234Q234 898 239 856T260 774T306 714T383 693Q459 693 492 748T525 914Q525 980 479 1056T364 1146V1230Q442 1252 483 1307T525 1425Q525 1638 393 1638Q353 1638 324 1623T277 1585T250 1525T237 1454T234
+1374H104Q104 1551 175 1647T392 1744Q520 1744 587 1656T655 1436Q655 1362 610 1291T497 1188Q563 1149 609 1066T655 913Q655 764 586 676T382 587Q241 587 173 683T104 955Z" />
+<glyph unicode="&#xb4;" horiz-adv-x="444" d="M96 1324L219 1722H381L152 1324H96Z" />
+<glyph unicode="&#xb6;" horiz-adv-x="969" d="M389 0V876Q219 876 121 951T23 1165Q23 1304 116 1381T394 1459H831V0H725V876H514V0H389Z" />
+<glyph unicode="&#xb7;" horiz-adv-x="446" d="M131 704V883H316V704H131Z" />
+<glyph unicode="&#xb8;" horiz-adv-x="449" d="M111 -394V-335Q258 -335 258 -268Q258 -237 229 -201T155 -134V0H219V-115Q361 -198 361 -277Q361 -329 295 -361T111 -394Z" />
+<glyph unicode="&#xb9;" horiz-adv-x="522" d="M243 588V1497Q201 1468 144 1442T51 1408V1533Q111 1555 181 1603T292 1721H379V588H243Z" />
+<glyph unicode="&#xba;" horiz-adv-x="715" d="M111 1234V1283Q111 1332 111 1357T114 1428T120 1500T132 1565T153 1626T184 1674T227 1714T284 1737T358 1747T431 1738T489 1714T532 1674T563 1626T584 1565T597 1501T603 1429T605 1357T606 1283V1234Q606 1167
+606 1133T601 1041T587 951T560 880T516 820T450 785T358 770Q298 770 254 786T184 840T142 912T120 1011T113 1116T111 1234ZM228 1283V1234Q228 1014 253 932T358 849Q438 849 463 931T489 1234V1283Q489 1372 487 1429T476 1536T454 1612T416 1653T358 1668Q276
+1668 252 1586T228 1283Z" />
+<glyph unicode="&#xbb;" horiz-adv-x="872" d="M423 124V324L699 641L423 956V1156L811 704V576L423 124ZM111 124V324L387 641L111 956V1156L499 704V576L111 124Z" />
+<glyph unicode="&#xbc;" horiz-adv-x="1499" d="M192 588V1497Q150 1468 93 1442T0 1408V1533Q60 1555 130 1603T241 1721H328V588H192ZM348 0L900 1721H1045L492 0H348ZM1028 378H1258L1257 1016L1028 378ZM883 276V371L1184 1132H1394V378H1528V276H1394V-1H1258V276H883Z"
+/>
+<glyph unicode="&#xbd;" horiz-adv-x="1716" d="M1126 -1V99L1431 558Q1548 746 1548 836Q1548 1048 1424 1048Q1376 1048 1344 1027T1296 966T1276 884T1270 784H1128Q1128 962 1200 1059T1423 1156Q1556 1156 1623 1071T1690 837Q1690 721 1560 519L1295 110H1676V-1H1126ZM468
+0L1020 1721H1165L612 0H468ZM192 588V1497Q150 1468 93 1442T0 1408V1533Q60 1555 130 1603T241 1721H328V588H192Z" />
+<glyph unicode="&#xbe;" horiz-adv-x="1890" d="M1418 378H1648L1647 1016L1418 378ZM1273 276V371L1574 1132H1784V378H1918V276H1784V-1H1648V276H1273ZM645 0L1197 1721H1342L789 0H645ZM59 955H189Q189 898 194 856T215 774T261 714T338 693Q414 693 447 748T480
+914Q480 980 434 1056T319 1146V1230Q397 1252 438 1307T480 1425Q480 1638 348 1638Q308 1638 279 1623T232 1585T205 1525T192 1454T189 1374H59Q59 1551 130 1647T347 1744Q475 1744 542 1656T610 1436Q610 1362 565 1291T452 1188Q518 1149 564 1066T610 913Q610
+764 541 676T337 587Q196 587 128 683T59 955Z" />
+<glyph unicode="&#xbf;" horiz-adv-x="811" d="M566 1378V1198H382V1378H566ZM541 926V586Q468 543 409 498T309 411T239 327T192 249T165 176T152 114T149 62Q149 -19 170 -80T227 -176T308 -228T402 -246Q520 -246 596 -166T673 58L674 200H808V54Q808 -46 773
+-127T681 -260T551 -340T402 -368Q342 -368 286 -352T180 -301T93 -217T34 -96T12 60Q12 240 110 379T407 642V926H541Z" />
+<glyph unicode="&#xc0;" horiz-adv-x="972" d="M458 1908L229 2306H391L514 1908H458ZM306 549H666L485 1563L306 549ZM200 0H47L387 1721H585L925 0H771L685 448H288L200 0Z" />
+<glyph unicode="&#xc1;" horiz-adv-x="972" d="M458 1908L581 2306H743L514 1908H458ZM306 549H666L485 1563L306 549ZM200 0H47L387 1721H585L925 0H771L685 448H288L200 0Z" />
+<glyph unicode="&#xc2;" horiz-adv-x="972" d="M225 1908L381 2215H594L747 1908H637L487 2207L338 1908H225ZM306 549H666L485 1563L306 549ZM200 0H47L387 1721H585L925 0H771L685 448H288L200 0Z" />
+<glyph unicode="&#xc3;" horiz-adv-x="972" d="M324 1920H209Q210 1939 212 1957T227 2004T257 2054T312 2091T396 2107Q424 2107 490 2069T581 2031Q610 2031 626 2045T647 2098H763L762 2084Q761 2071 758 2056T748 2019T728 1980T696 1945T647 1918T579 1908T476
+1947T386 1986Q358 1986 344 1972T324 1920ZM306 549H666L485 1563L306 549ZM200 0H47L387 1721H585L925 0H771L685 448H288L200 0Z" />
+<glyph unicode="&#xc4;" horiz-adv-x="972" d="M586 1908V2087H770V1908H586ZM202 1908V2087H386V1908H202ZM306 549H666L485 1563L306 549ZM200 0H47L387 1721H585L925 0H771L685 448H288L200 0Z" />
+<glyph unicode="&#xc5;" horiz-adv-x="972" d="M379 2166T486 2166T649 2101T705 1948T649 1795T486 1730T323 1795T267 1948T323 2101ZM345 2007T345 1948T379 1845T486 1801T593 1845T627 1948T593 2051T486 2095T379 2051ZM306 549H666L485 1563L306 549ZM200
+0H47L387 1721H585L925 0H771L685 448H288L200 0Z" />
+<glyph unicode="&#xc6;" horiz-adv-x="1380" d="M365 549H719V1563L365 549ZM12 0L648 1721H1320V1599H872V947H1192V832H872V122H1320V0H720V448H329L164 0H12Z" />
+<glyph unicode="&#xc7;" horiz-adv-x="1032" d="M454 -408V-349Q601 -349 601 -282Q601 -251 572 -215T498 -148V-14H562V-129Q704 -212 704 -291Q704 -343 638 -375T454 -408ZM114 499V1220Q114 1312 126 1387T168 1530T247 1644T369 1718T542 1745Q946 1745
+946 1220V1150H801V1254Q801 1337 789 1401T747 1516T667 1595T542 1623Q476 1623 427 1605T348 1554T299 1474T273 1374T266 1254V465Q266 380 278 318T319 203T405 123T542 95Q615 95 666 122T747 202T788 318T801 465V583H946V499Q946 408 935 333T896 190T822
+75T706 1T542 -27Q442 -27 367 0T244 74T167 189T126 332T114 499Z" />
+<glyph unicode="&#xc8;" horiz-adv-x="795" d="M418 1908L189 2306H351L474 1908H418ZM146 0V1721H746V1599H298V947H618V832H298V122H746V0H146Z" />
+<glyph unicode="&#xc9;" horiz-adv-x="795" d="M418 1908L541 2306H703L474 1908H418ZM146 0V1721H746V1599H298V947H618V832H298V122H746V0H146Z" />
+<glyph unicode="&#xca;" horiz-adv-x="795" d="M185 1908L341 2215H554L707 1908H597L447 2207L298 1908H185ZM146 0V1721H746V1599H298V947H618V832H298V122H746V0H146Z" />
+<glyph unicode="&#xcb;" horiz-adv-x="795" d="M546 1908V2087H730V1908H546ZM162 1908V2087H346V1908H162ZM146 0V1721H746V1599H298V947H618V832H298V122H746V0H146Z" />
+<glyph unicode="&#xcc;" horiz-adv-x="444" d="M193 1908L-36 2306H126L249 1908H193ZM145 0V1721H297V0H145Z" />
+<glyph unicode="&#xcd;" horiz-adv-x="444" d="M193 1908L316 2306H478L249 1908H193ZM145 0V1721H297V0H145Z" />
+<glyph unicode="&#xce;" horiz-adv-x="444" d="M-40 1908L116 2215H329L482 1908H372L222 2207L73 1908H-40ZM145 0V1721H297V0H145Z" />
+<glyph unicode="&#xcf;" horiz-adv-x="444" d="M321 1908V2087H505V1908H321ZM-63 1908V2087H121V1908H-63ZM145 0V1721H297V0H145Z" />
+<glyph unicode="&#xd0;" horiz-adv-x="1128" d="M335 122H570Q857 122 857 474V1242Q857 1599 570 1599H335V924H535V830H335V122ZM183 0V830H43V924H183V1721H570Q668 1721 744 1695T869 1623T950 1511T995 1371T1009 1208V508Q1009 0 570 0H183Z" />
+<glyph unicode="&#xd1;" horiz-adv-x="1083" d="M379 1920H264Q265 1939 267 1957T282 2004T312 2054T367 2091T451 2107Q479 2107 545 2069T636 2031Q665 2031 681 2045T702 2098H818L817 2084Q816 2071 813 2056T803 2019T783 1980T751 1945T702 1918T634 1908T531
+1947T441 1986Q413 1986 399 1972T379 1920ZM146 0V1721H263L808 358V1721H937V0H823L277 1334V0H146Z" />
+<glyph unicode="&#xd2;" horiz-adv-x="1106" d="M525 1908L296 2306H458L581 1908H525ZM114 499V1220Q114 1311 127 1387T173 1530T254 1644T379 1718T553 1745T727 1718T852 1645T933 1531T978 1387T992 1220V499Q992 -27 553 -27T114 499ZM840 465V1254Q840
+1623 553 1623T266 1254V465Q266 95 553 95T840 465Z" />
+<glyph unicode="&#xd3;" horiz-adv-x="1106" d="M525 1908L648 2306H810L581 1908H525ZM114 499V1220Q114 1311 127 1387T173 1530T254 1644T379 1718T553 1745T727 1718T852 1645T933 1531T978 1387T992 1220V499Q992 -27 553 -27T114 499ZM840 465V1254Q840
+1623 553 1623T266 1254V465Q266 95 553 95T840 465Z" />
+<glyph unicode="&#xd4;" horiz-adv-x="1106" d="M292 1908L448 2215H661L814 1908H704L554 2207L405 1908H292ZM114 499V1220Q114 1311 127 1387T173 1530T254 1644T379 1718T553 1745T727 1718T852 1645T933 1531T978 1387T992 1220V499Q992 -27 553 -27T114
+499ZM840 465V1254Q840 1623 553 1623T266 1254V465Q266 95 553 95T840 465Z" />
+<glyph unicode="&#xd5;" horiz-adv-x="1106" d="M391 1920H276Q277 1939 279 1957T294 2004T324 2054T379 2091T463 2107Q491 2107 557 2069T648 2031Q677 2031 693 2045T714 2098H830L829 2084Q828 2071 825 2056T815 2019T795 1980T763 1945T714 1918T646 1908T543
+1947T453 1986Q425 1986 411 1972T391 1920ZM114 499V1220Q114 1311 127 1387T173 1530T254 1644T379 1718T553 1745T727 1718T852 1645T933 1531T978 1387T992 1220V499Q992 -27 553 -27T114 499ZM840 465V1254Q840 1623 553 1623T266 1254V465Q266 95 553 95T840
+465Z" />
+<glyph unicode="&#xd6;" horiz-adv-x="1106" d="M653 1908V2087H837V1908H653ZM269 1908V2087H453V1908H269ZM114 499V1220Q114 1311 127 1387T173 1530T254 1644T379 1718T553 1745T727 1718T852 1645T933 1531T978 1387T992 1220V499Q992 -27 553 -27T114 499ZM840
+465V1254Q840 1623 553 1623T266 1254V465Q266 95 553 95T840 465Z" />
+<glyph unicode="&#xd7;" horiz-adv-x="674" d="M51 410L243 602L51 794L127 869L319 677L511 869L587 794L395 602Q562 434 587 410L511 334L319 526L127 334L51 410Z" />
+<glyph unicode="&#xd8;" horiz-adv-x="1106" d="M992 499Q992 -27 553 -27Q416 -27 320 25L263 -152L199 -132L262 65Q114 193 114 499V1220Q114 1311 127 1387T173 1530T254 1644T379 1718T553 1745Q690 1745 785 1692L842 1870L907 1850L843 1652Q992 1522 992
+1220V499ZM553 95Q840 95 840 465V1254Q840 1405 793 1495L363 159Q433 95 553 95ZM266 1254V465Q266 314 313 224L742 1560Q674 1623 553 1623Q266 1623 266 1254Z" />
+<glyph unicode="&#xd9;" horiz-adv-x="1132" d="M529 1908L300 2306H462L585 1908H529ZM120 423V1721H272V388Q272 240 339 168T565 95Q715 95 779 168T843 388V1721H994V423Q994 -27 565 -27Q462 -27 384 -3T256 61T175 160T132 282T120 423Z" />
+<glyph unicode="&#xda;" horiz-adv-x="1132" d="M529 1908L652 2306H814L585 1908H529ZM120 423V1721H272V388Q272 240 339 168T565 95Q715 95 779 168T843 388V1721H994V423Q994 -27 565 -27Q462 -27 384 -3T256 61T175 160T132 282T120 423Z" />
+<glyph unicode="&#xdb;" horiz-adv-x="1132" d="M296 1908L452 2215H665L818 1908H708L558 2207L409 1908H296ZM120 423V1721H272V388Q272 240 339 168T565 95Q715 95 779 168T843 388V1721H994V423Q994 -27 565 -27Q462 -27 384 -3T256 61T175 160T132 282T120 423Z" />
+<glyph unicode="&#xdc;" horiz-adv-x="1132" d="M657 1908V2087H841V1908H657ZM273 1908V2087H457V1908H273ZM120 423V1721H272V388Q272 240 339 168T565 95Q715 95 779 168T843 388V1721H994V423Q994 -27 565 -27Q462 -27 384 -3T256 61T175 160T132 282T120 423Z" />
+<glyph unicode="&#xdd;" horiz-adv-x="888" d="M416 1908L539 2306H701L472 1908H416ZM374 0V534L-2 1721H152Q172 1649 210 1518T288 1252T365 993T427 788L451 709Q515 944 599 1228T741 1721H890L526 534V0H374Z" />
+<glyph unicode="&#xde;" horiz-adv-x="1058" d="M298 628L584 627Q712 626 767 715T822 996Q822 1174 763 1257T584 1340H298V628ZM146 0V1721H298V1462H567Q657 1462 727 1438T843 1371T919 1269T961 1143T974 999Q974 920 964 853T925 720T852 609T734 535T566
+506H298V0H146Z" />
+<glyph unicode="&#xdf;" horiz-adv-x="1053" d="M137 0V1338Q137 1436 168 1515T252 1644T370 1720T506 1746Q575 1746 638 1719T753 1642T835 1510T866 1328Q866 1258 843 1188T770 1056T650 967Q724 950 781 908T872 812T926 693T954 569T961 453Q961 -27 384
+-27V89Q491 89 569 110T693 164T765 247T800 344T809 453Q809 528 801 588T771 706T714 803T619 865T481 889H376V1006H483Q544 1006 588 1032T657 1104T692 1205T703 1325Q703 1473 643 1555T499 1638Q414 1638 352 1558T289 1335V0H137Z" />
+<glyph unicode="&#xe0;" horiz-adv-x="808" d="M371 1388L142 1786H304L427 1388H371ZM554 244V666Q481 615 439 584T351 512T281 436T242 359T226 267Q226 181 262 140T347 98Q404 98 462 139T554 244ZM584 0L565 145Q517 61 447 17T312 -27Q219 -27 147 46T75
+239Q75 271 76 290T81 341T94 393T119 444T160 498T220 552T303 610T413 669T554 733V743Q554 845 545 917T523 1029T490 1091T451 1118T407 1124Q380 1124 359 1117T314 1088T274 1018T254 896V889H98Q110 1046 190 1135T402 1225Q475 1225 531 1202T619 1142T672
+1054T699 955T706 852V276Q706 213 710 144T720 38L724 0H584Z" />
+<glyph unicode="&#xe1;" horiz-adv-x="808" d="M372 1388L495 1786H657L428 1388H372ZM554 244V666Q481 615 439 584T351 512T281 436T242 359T226 267Q226 181 262 140T347 98Q404 98 462 139T554 244ZM584 0L565 145Q517 61 447 17T312 -27Q219 -27 147 46T75
+239Q75 271 76 290T81 341T94 393T119 444T160 498T220 552T303 610T413 669T554 733V743Q554 845 545 917T523 1029T490 1091T451 1118T407 1124Q380 1124 359 1117T314 1088T274 1018T254 896V889H98Q110 1046 190 1135T402 1225Q475 1225 531 1202T619 1142T672
+1054T699 955T706 852V276Q706 213 710 144T720 38L724 0H584Z" />
+<glyph unicode="&#xe2;" horiz-adv-x="808" d="M138 1644L294 1951H507L660 1644H550L400 1943L251 1644H138ZM554 244V666Q481 615 439 584T351 512T281 436T242 359T226 267Q226 181 262 140T347 98Q404 98 462 139T554 244ZM584 0L565 145Q517 61 447 17T312
+-27Q219 -27 147 46T75 239Q75 271 76 290T81 341T94 393T119 444T160 498T220 552T303 610T413 669T554 733V743Q554 845 545 917T523 1029T490 1091T451 1118T407 1124Q380 1124 359 1117T314 1088T274 1018T254 896V889H98Q110 1046 190 1135T402 1225Q475 1225
+531 1202T619 1142T672 1054T699 955T706 852V276Q706 213 710 144T720 38L724 0H584Z" />
+<glyph unicode="&#xe3;" horiz-adv-x="808" d="M237 1400H122Q123 1419 125 1437T140 1484T170 1534T225 1571T309 1587Q337 1587 403 1549T494 1511Q523 1511 539 1525T560 1578H676L675 1564Q674 1551 671 1536T661 1499T641 1460T609 1425T560 1398T492 1388T389
+1427T299 1466Q271 1466 257 1452T237 1400ZM554 244V666Q481 615 439 584T351 512T281 436T242 359T226 267Q226 181 262 140T347 98Q404 98 462 139T554 244ZM584 0L565 145Q517 61 447 17T312 -27Q219 -27 147 46T75 239Q75 271 76 290T81 341T94 393T119 444T160
+498T220 552T303 610T413 669T554 733V743Q554 845 545 917T523 1029T490 1091T451 1118T407 1124Q380 1124 359 1117T314 1088T274 1018T254 896V889H98Q110 1046 190 1135T402 1225Q475 1225 531 1202T619 1142T672 1054T699 955T706 852V276Q706 213 710 144T720
+38L724 0H584Z" />
+<glyph unicode="&#xe4;" horiz-adv-x="808" d="M499 1388V1567H683V1388H499ZM115 1388V1567H299V1388H115ZM554 244V666Q481 615 439 584T351 512T281 436T242 359T226 267Q226 181 262 140T347 98Q404 98 462 139T554 244ZM584 0L565 145Q517 61 447 17T312
+-27Q219 -27 147 46T75 239Q75 271 76 290T81 341T94 393T119 444T160 498T220 552T303 610T413 669T554 733V743Q554 845 545 917T523 1029T490 1091T451 1118T407 1124Q380 1124 359 1117T314 1088T274 1018T254 896V889H98Q110 1046 190 1135T402 1225Q475 1225
+531 1202T619 1142T672 1054T699 955T706 852V276Q706 213 710 144T720 38L724 0H584Z" />
+<glyph unicode="&#xe5;" horiz-adv-x="808" d="M292 1824T399 1824T562 1759T618 1606T562 1453T399 1388T236 1453T180 1606T236 1759ZM258 1665T258 1606T292 1503T399 1459T506 1503T540 1606T506 1709T399 1753T292 1709ZM554 244V666Q481 615 439 584T351
+512T281 436T242 359T226 267Q226 181 262 140T347 98Q404 98 462 139T554 244ZM584 0L565 145Q517 61 447 17T312 -27Q219 -27 147 46T75 239Q75 271 76 290T81 341T94 393T119 444T160 498T220 552T303 610T413 669T554 733V743Q554 845 545 917T523 1029T490
+1091T451 1118T407 1124Q380 1124 359 1117T314 1088T274 1018T254 896V889H98Q110 1046 190 1135T402 1225Q475 1225 531 1202T619 1142T672 1054T699 955T706 852V276Q706 213 710 144T720 38L724 0H584Z" />
+<glyph unicode="&#xe6;" horiz-adv-x="1255" d="M707 708V704Q787 720 844 744T933 793T983 852T1005 911T1010 970Q1010 1035 979 1079T893 1124Q863 1124 838 1117T795 1100T763 1069T740 1031T724 980T714 923T710 857T708 786T707 708ZM553 489V586Q358 516
+292 453T225 267Q225 184 255 141T328 97Q386 97 432 142T503 254T540 382T553 489ZM253 889H97Q109 1046 189 1135T401 1225Q566 1225 633 1072Q715 1225 886 1225Q996 1225 1070 1152T1144 958Q1144 900 1120 851T1057 768T972 707T879 664T793 638T730 624L706
+620V445Q706 302 728 218T783 104T868 74Q900 74 924 85T970 124T1004 208T1018 346V367H1158L1156 345Q1150 278 1140 228T1109 127T1058 45T979 -7T865 -27Q759 -27 690 35T598 209Q579 142 543 93T463 19T382 -16T311 -27Q218 -27 146 46T74 239Q74 271 75 290T80
+339T93 389T118 437T159 485T219 532T302 580T412 626T553 675V751Q552 851 544 922T522 1031T488 1091T450 1118T406 1124T359 1117T315 1090T275 1023T254 908Q254 905 254 899T253 889Z" />
+<glyph unicode="&#xe7;" horiz-adv-x="816" d="M346 -408V-349Q493 -349 493 -282Q493 -251 464 -215T390 -148V-14H454V-129Q596 -212 596 -291Q596 -343 530 -375T346 -408ZM106 568V630Q106 710 107 752T114 868T131 983T167 1077T225 1157T312 1205T433 1225Q502
+1225 554 1203T639 1144T693 1053T723 943T736 817Q736 815 736 812T737 806H587V815Q581 984 548 1054T433 1124Q394 1124 366 1113T318 1074T286 1011T267 915T258 790T256 630V568Q256 287 291 181T433 74Q512 74 545 146T587 393V403H738V396Q735 320 727 263T698
+148T645 55T559 -4T433 -27Q373 -27 325 -15T244 25T186 80T147 159T124 246T111 349T107 454T106 568Z" />
+<glyph unicode="&#xe8;" horiz-adv-x="829" d="M394 1388L165 1786H327L450 1388H394ZM258 702H590Q589 742 590 783T589 865T584 945T570 1015T545 1072T504 1110T444 1124Q389 1124 354 1104T299 1057T270 966T260 854T258 702ZM106 552V719Q107 844 124 935T168
+1082T239 1169T329 1213T437 1225Q598 1225 668 1111T739 751Q739 676 737 628H257V445Q257 327 268 252T305 138T360 87T436 74Q503 74 548 141T595 367H735Q729 299 719 246T688 140T635 52T553 -5T438 -27Q311 -27 241 23T137 199T106 552Z" />
+<glyph unicode="&#xe9;" horiz-adv-x="829" d="M394 1388L517 1786H679L450 1388H394ZM258 702H590Q589 742 590 783T589 865T584 945T570 1015T545 1072T504 1110T444 1124Q389 1124 354 1104T299 1057T270 966T260 854T258 702ZM106 552V719Q107 844 124 935T168
+1082T239 1169T329 1213T437 1225Q598 1225 668 1111T739 751Q739 676 737 628H257V445Q257 327 268 252T305 138T360 87T436 74Q503 74 548 141T595 367H735Q729 299 719 246T688 140T635 52T553 -5T438 -27Q311 -27 241 23T137 199T106 552Z" />
+<glyph unicode="&#xea;" horiz-adv-x="829" d="M161 1644L317 1951H530L683 1644H573L423 1943L274 1644H161ZM258 702H590Q589 742 590 783T589 865T584 945T570 1015T545 1072T504 1110T444 1124Q389 1124 354 1104T299 1057T270 966T260 854T258 702ZM106 552V719Q107
+844 124 935T168 1082T239 1169T329 1213T437 1225Q598 1225 668 1111T739 751Q739 676 737 628H257V445Q257 327 268 252T305 138T360 87T436 74Q503 74 548 141T595 367H735Q729 299 719 246T688 140T635 52T553 -5T438 -27Q311 -27 241 23T137 199T106 552Z"
+/>
+<glyph unicode="&#xeb;" horiz-adv-x="829" d="M522 1388V1567H706V1388H522ZM138 1388V1567H322V1388H138ZM258 702H590Q589 742 590 783T589 865T584 945T570 1015T545 1072T504 1110T444 1124Q389 1124 354 1104T299 1057T270 966T260 854T258 702ZM106 552V719Q107
+844 124 935T168 1082T239 1169T329 1213T437 1225Q598 1225 668 1111T739 751Q739 676 737 628H257V445Q257 327 268 252T305 138T360 87T436 74Q503 74 548 141T595 367H735Q729 299 719 246T688 140T635 52T553 -5T438 -27Q311 -27 241 23T137 199T106 552Z"
+/>
+<glyph unicode="&#xec;" horiz-adv-x="405" d="M435 1388L206 1786H368L491 1388H435ZM132 0V1198H282V0H132Z" />
+<glyph unicode="&#xed;" horiz-adv-x="405" d="M179 1388L302 1786H464L235 1388H179ZM132 0V1198H282V0H132Z" />
+<glyph unicode="&#xee;" horiz-adv-x="405" d="M-54 1388L102 1695H315L468 1388H358L208 1687L59 1388H-54ZM132 0V1198H282V0H132Z" />
+<glyph unicode="&#xef;" horiz-adv-x="405" d="M307 1388V1567H491V1388H307ZM-77 1388V1567H107V1388H-77ZM132 0V1198H282V0H132Z" />
+<glyph unicode="&#xf0;" horiz-adv-x="877" d="M234 545V531Q234 367 255 270T314 134T412 95Q453 95 480 103T534 139T575 216T600 348T609 551Q609 702 594 931Q571 952 514 964T402 977Q346 977 311 939T255 804T234 545ZM84 532V537Q84 661 102 760T157 937T256
+1056T402 1099Q517 1099 585 1054Q559 1238 517 1358L352 1321V1416L480 1445Q430 1538 357 1575T166 1623L152 1745Q319 1733 431 1670T614 1475L793 1516V1421L653 1389Q757 1118 758 535V510Q758 246 676 110T412 -27Q325 -27 261 15T158 134T102 310T84 532Z"
+/>
+<glyph unicode="&#xf1;" horiz-adv-x="860" d="M272 1400H157Q158 1419 160 1437T175 1484T205 1534T260 1571T344 1587Q372 1587 438 1549T529 1511Q558 1511 574 1525T595 1578H711L710 1564Q709 1551 706 1536T696 1499T676 1460T644 1425T595 1398T527 1388T424
+1427T334 1466Q306 1466 292 1452T272 1400ZM120 0V1198H270V1085Q318 1155 385 1190T524 1225Q613 1225 680 1151T748 941V0H596V944Q596 1033 561 1073T469 1114Q422 1114 369 1082T270 993V0H120Z" />
+<glyph unicode="&#xf2;" horiz-adv-x="846" d="M395 1388L166 1786H328L451 1388H395ZM106 568V630Q106 710 107 752T113 868T130 983T165 1077T221 1157T306 1205T423 1225T540 1205T624 1158T681 1077T715 983T732 869T739 753T740 630V568Q740 501 740 467T737
+373T729 279T712 197T686 121T646 62T591 13T518 -15T423 -27T329 -16T255 12T200 61T161 121T134 197T118 279T110 372T107 467T106 568ZM256 630V568Q256 286 289 180T423 74T557 180T590 568V630Q590 725 588 790T580 914T562 1010T532 1073T487 1112T423 1124T360
+1113T314 1074T284 1011T267 915T258 790T256 630Z" />
+<glyph unicode="&#xf3;" horiz-adv-x="846" d="M395 1388L518 1786H680L451 1388H395ZM106 568V630Q106 710 107 752T113 868T130 983T165 1077T221 1157T306 1205T423 1225T540 1205T624 1158T681 1077T715 983T732 869T739 753T740 630V568Q740 501 740 467T737
+373T729 279T712 197T686 121T646 62T591 13T518 -15T423 -27T329 -16T255 12T200 61T161 121T134 197T118 279T110 372T107 467T106 568ZM256 630V568Q256 286 289 180T423 74T557 180T590 568V630Q590 725 588 790T580 914T562 1010T532 1073T487 1112T423 1124T360
+1113T314 1074T284 1011T267 915T258 790T256 630Z" />
+<glyph unicode="&#xf4;" horiz-adv-x="846" d="M162 1644L318 1951H531L684 1644H574L424 1943L275 1644H162ZM106 568V630Q106 710 107 752T113 868T130 983T165 1077T221 1157T306 1205T423 1225T540 1205T624 1158T681 1077T715 983T732 869T739 753T740 630V568Q740
+501 740 467T737 373T729 279T712 197T686 121T646 62T591 13T518 -15T423 -27T329 -16T255 12T200 61T161 121T134 197T118 279T110 372T107 467T106 568ZM256 630V568Q256 286 289 180T423 74T557 180T590 568V630Q590 725 588 790T580 914T562 1010T532 1073T487
+1112T423 1124T360 1113T314 1074T284 1011T267 915T258 790T256 630Z" />
+<glyph unicode="&#xf5;" horiz-adv-x="846" d="M261 1400H146Q147 1419 149 1437T164 1484T194 1534T249 1571T333 1587Q361 1587 427 1549T518 1511Q547 1511 563 1525T584 1578H700L699 1564Q698 1551 695 1536T685 1499T665 1460T633 1425T584 1398T516 1388T413
+1427T323 1466Q295 1466 281 1452T261 1400ZM106 568V630Q106 710 107 752T113 868T130 983T165 1077T221 1157T306 1205T423 1225T540 1205T624 1158T681 1077T715 983T732 869T739 753T740 630V568Q740 501 740 467T737 373T729 279T712 197T686 121T646 62T591
+13T518 -15T423 -27T329 -16T255 12T200 61T161 121T134 197T118 279T110 372T107 467T106 568ZM256 630V568Q256 286 289 180T423 74T557 180T590 568V630Q590 725 588 790T580 914T562 1010T532 1073T487 1112T423 1124T360 1113T314 1074T284 1011T267 915T258
+790T256 630Z" />
+<glyph unicode="&#xf6;" horiz-adv-x="846" d="M523 1388V1567H707V1388H523ZM139 1388V1567H323V1388H139ZM106 568V630Q106 710 107 752T113 868T130 983T165 1077T221 1157T306 1205T423 1225T540 1205T624 1158T681 1077T715 983T732 869T739 753T740 630V568Q740
+501 740 467T737 373T729 279T712 197T686 121T646 62T591 13T518 -15T423 -27T329 -16T255 12T200 61T161 121T134 197T118 279T110 372T107 467T106 568ZM256 630V568Q256 286 289 180T423 74T557 180T590 568V630Q590 725 588 790T580 914T562 1010T532 1073T487
+1112T423 1124T360 1113T314 1074T284 1011T267 915T258 790T256 630Z" />
+<glyph unicode="&#xf7;" horiz-adv-x="674" d="M227 233V412H411V233H227ZM227 879V1058H411V879H227ZM35 576V691H603V576H35Z" />
+<glyph unicode="&#xf8;" horiz-adv-x="850" d="M740 568Q740 501 740 467T737 373T729 279T712 197T686 121T646 62T591 13T518 -15T423 -27Q337 -27 274 3L191 -256L143 -240L230 31Q200 55 178 88T143 168T122 253T111 355T107 457T106 568V630Q106 710 107
+752T113 868T130 983T165 1077T221 1157T306 1205T423 1225Q529 1225 598 1178L695 1481L744 1465L640 1140Q676 1100 697 1044T727 910T738 779T740 630V568ZM423 74Q524 74 557 180T590 568V630Q590 844 576 941L314 127Q350 74 423 74ZM256 630V568Q256 299
+284 198L552 1036Q517 1124 423 1124Q386 1124 360 1113T314 1074T284 1011T267 915T258 790T256 630Z" />
+<glyph unicode="&#xf9;" horiz-adv-x="892" d="M398 1388L169 1786H331L454 1388H398ZM112 257V1198H264V254Q264 165 299 125T391 84Q438 84 491 116T590 205V1198H740V0H590V113Q542 43 475 8T336 -27Q247 -27 180 47T112 257Z" />
+<glyph unicode="&#xfa;" horiz-adv-x="892" d="M398 1388L521 1786H683L454 1388H398ZM112 257V1198H264V254Q264 165 299 125T391 84Q438 84 491 116T590 205V1198H740V0H590V113Q542 43 475 8T336 -27Q247 -27 180 47T112 257Z" />
+<glyph unicode="&#xfb;" horiz-adv-x="892" d="M165 1644L321 1951H534L687 1644H577L427 1943L278 1644H165ZM112 257V1198H264V254Q264 165 299 125T391 84Q438 84 491 116T590 205V1198H740V0H590V113Q542 43 475 8T336 -27Q247 -27 180 47T112 257Z" />
+<glyph unicode="&#xfc;" horiz-adv-x="892" d="M526 1388V1567H710V1388H526ZM142 1388V1567H326V1388H142ZM112 257V1198H264V254Q264 165 299 125T391 84Q438 84 491 116T590 205V1198H740V0H590V113Q542 43 475 8T336 -27Q247 -27 180 47T112 257Z" />
+<glyph unicode="&#xfd;" horiz-adv-x="777" d="M367 1388L490 1786H652L423 1388H367ZM77 -299V-176Q197 -168 252 -136T308 -46Q308 27 297 96L37 1198H189L397 197L601 1198H753L453 -83Q423 -199 334 -246T80 -299H77Z" />
+<glyph unicode="&#xfe;" horiz-adv-x="874" d="M615 545V640Q615 750 610 832T594 964T571 1046T541 1092T508 1110T471 1114Q377 1114 270 995V205Q315 151 368 118T466 84Q486 84 498 86T528 97T557 124T580 175T599 257T610 378T615 545ZM120 -385V1721H270V1085Q317
+1154 377 1189T501 1225Q544 1225 576 1217T646 1174T708 1079T748 908T765 641V546Q765 438 757 351T735 206T700 104T658 36T610 -3T561 -22T512 -27Q360 -27 270 113V-385H120Z" />
+<glyph unicode="&#xff;" horiz-adv-x="777" d="M751 1388V1567H935V1388H751ZM367 1388V1567H551V1388H367ZM77 -299V-176Q197 -168 252 -136T308 -46Q308 27 297 96L37 1198H189L397 197L601 1198H753L453 -83Q423 -199 334 -246T80 -299H77Z" />
+<glyph unicode="&#x2013;" horiz-adv-x="793" d="M117 448V563H691V448H117Z" />
+<glyph unicode="&#x2014;" horiz-adv-x="1194" d="M117 448V563H1091V448H117Z" />
+<glyph unicode="&#x2018;" horiz-adv-x="403" d="M296 1311H111Q111 1554 136 1644T247 1746L274 1691Q239 1680 216 1653T183 1591T171 1534T168 1490H296V1311Z" />
+<glyph unicode="&#x2019;" horiz-adv-x="393" d="M149 1286L122 1341Q157 1352 180 1379T213 1441T225 1498T228 1542H100V1721H285Q285 1478 260 1388T149 1286Z" />
+<glyph unicode="&#x201a;" horiz-adv-x="403" d="M173 -321L123 -14H291Q279 -88 267 -165T241 -321H173Z" />
+<glyph unicode="&#x201c;" horiz-adv-x="698" d="M590 1311H405Q405 1554 430 1644T541 1746L568 1691Q533 1680 510 1653T477 1591T465 1534T462 1490H590V1311ZM296 1311H111Q111 1554 136 1644T247 1746L274 1691Q239 1680 216 1653T183 1591T171 1534T168
+1490H296V1311Z" />
+<glyph unicode="&#x201d;" horiz-adv-x="686" d="M443 1286L416 1341Q451 1352 474 1379T507 1441T519 1498T522 1542H394V1721H579Q579 1478 554 1388T443 1286ZM149 1286L122 1341Q157 1352 180 1379T213 1441T225 1498T228 1542H100V1721H285Q285 1478 260
+1388T149 1286Z" />
+<glyph unicode="&#x201e;" horiz-adv-x="725" d="M497 -320L446 -13H614Q602 -87 590 -164T564 -320H497ZM174 -320L123 -13H291Q279 -87 267 -164T241 -320H174Z" />
+<glyph unicode="&#x2022;" horiz-adv-x="565" d="M104 767Q104 848 154 898T286 949Q371 949 420 901T469 767Q469 683 420 636T286 588Q203 588 154 635T104 767Z" />
+<glyph unicode="&#x2039;" horiz-adv-x="561" d="M466 124L78 576V704L466 1156V956L190 641L466 324V124Z" />
+<glyph unicode="&#x203a;" horiz-adv-x="561" d="M78 124V324L354 641L78 956V1156L466 704V576L78 124Z" />
+</font>
+</defs>
+</svg>
Binary files /dev/null and b/src/fonts/Oswald-300/Oswald-300.ttf differ
Binary files /dev/null and b/src/fonts/Oswald-300/Oswald-300.woff differ
Binary files /dev/null and b/src/fonts/Oswald-300/Oswald-300.woff2 differ
--- /dev/null
+++ b/src/fonts/Oswald-regular/LICENSE.txt
@@ -0,0 +1,93 @@
+Copyright 2016 The Oswald Project Authors (contact@sansoxygen.com)
+
+This Font Software is licensed under the SIL Open Font License, Version 1.1.
+This license is copied below, and is also available with a FAQ at:
+http://scripts.sil.org/OFL
+
+
+-----------------------------------------------------------
+SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
+-----------------------------------------------------------
+
+PREAMBLE
+The goals of the Open Font License (OFL) are to stimulate worldwide
+development of collaborative font projects, to support the font creation
+efforts of academic and linguistic communities, and to provide a free and
+open framework in which fonts may be shared and improved in partnership
+with others.
+
+The OFL allows the licensed fonts to be used, studied, modified and
+redistributed freely as long as they are not sold by themselves. The
+fonts, including any derivative works, can be bundled, embedded,
+redistributed and/or sold with any software provided that any reserved
+names are not used by derivative works. The fonts and derivatives,
+however, cannot be released under any other type of license. The
+requirement for fonts to remain under this license does not apply
+to any document created using the fonts or their derivatives.
+
+DEFINITIONS
+"Font Software" refers to the set of files released by the Copyright
+Holder(s) under this license and clearly marked as such. This may
+include source files, build scripts and documentation.
+
+"Reserved Font Name" refers to any names specified as such after the
+copyright statement(s).
+
+"Original Version" refers to the collection of Font Software components as
+distributed by the Copyright Holder(s).
+
+"Modified Version" refers to any derivative made by adding to, deleting,
+or substituting -- in part or in whole -- any of the components of the
+Original Version, by changing formats or by porting the Font Software to a
+new environment.
+
+"Author" refers to any designer, engineer, programmer, technical
+writer or other person who contributed to the Font Software.
+
+PERMISSION & CONDITIONS
+Permission is hereby granted, free of charge, to any person obtaining
+a copy of the Font Software, to use, study, copy, merge, embed, modify,
+redistribute, and sell modified and unmodified copies of the Font
+Software, subject to the following conditions:
+
+1) Neither the Font Software nor any of its individual components,
+in Original or Modified Versions, may be sold by itself.
+
+2) Original or Modified Versions of the Font Software may be bundled,
+redistributed and/or sold with any software, provided that each copy
+contains the above copyright notice and this license. These can be
+included either as stand-alone text files, human-readable headers or
+in the appropriate machine-readable metadata fields within text or
+binary files as long as those fields can be easily viewed by the user.
+
+3) No Modified Version of the Font Software may use the Reserved Font
+Name(s) unless explicit written permission is granted by the corresponding
+Copyright Holder. This restriction only applies to the primary font name as
+presented to the users.
+
+4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
+Software shall not be used to promote, endorse or advertise any
+Modified Version, except to acknowledge the contribution(s) of the
+Copyright Holder(s) and the Author(s) or with their explicit written
+permission.
+
+5) The Font Software, modified or unmodified, in part or in whole,
+must be distributed entirely under this license, and must not be
+distributed under any other license. The requirement for fonts to
+remain under this license does not apply to any document created
+using the Font Software.
+
+TERMINATION
+This license becomes null and void if any of the above conditions are
+not met.
+
+DISCLAIMER
+THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
+MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
+OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
+COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
+INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
+DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
+OTHER DEALINGS IN THE FONT SOFTWARE.
Binary files /dev/null and b/src/fonts/Oswald-regular/Oswald-regular.eot differ
--- /dev/null
+++ b/src/fonts/Oswald-regular/Oswald-regular.svg
@@ -0,0 +1,347 @@
+<?xml version="1.0" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
+<svg xmlns="http://www.w3.org/2000/svg">
+<defs >
+<font id="Oswald" horiz-adv-x="797" ><font-face
+ font-family="Oswald"
+ units-per-em="2048"
+ panose-1="2 0 5 3 0 0 0 0 0 0"
+ ascent="2444"
+ descent="-591"
+ alphabetic="0" />
+<glyph unicode=" " horiz-adv-x="416" />
+<glyph unicode="!" horiz-adv-x="375" d="M128 384L64 1792H320L274 384H128ZM64 0V256H320V0H64Z" />
+<glyph unicode="&quot;" horiz-adv-x="704" d="M449 1328L385 1792H641L577 1328H449ZM126 1328L62 1792H318L254 1328H126Z" />
+<glyph unicode="#" horiz-adv-x="1088" d="M437 832H630L657 1024H465L437 832ZM64 0L154 640H64V832H181L209 1024H64V1216H236L318 1792H574L492 1216H684L766 1792H1022L940 1216H1024V1024H913L885 832H1024V640H858L768 0H512L602 640H410L320 0H64Z" />
+<glyph unicode="$" horiz-adv-x="1216" d="M704 198Q832 227 832 384Q832 462 804 519T724 628L704 648V198ZM576 1101V1600Q484 1600 434 1548T384 1405Q384 1253 512 1152L576 1101ZM576 -128V-15Q368 0 255 142T128 512L384 576Q394 283 555 208L576 200V755L320
+960Q232 1031 180 1136T127 1378Q127 1576 250 1693T576 1810V1920H704V1799L745 1790Q1061 1704 1088 1344L832 1280Q823 1468 724 1549L704 1564V998L832 896Q945 808 1016 684T1088 401Q1088 220 984 112T704 -15V-128H576Z" />
+<glyph unicode="%" horiz-adv-x="1999" d="M1649 0T1554 0T1388 38T1273 145T1209 301T1188 492Q1188 598 1208 683T1271 835T1385 938T1554 975T1723 939T1837 836T1900 684T1921 492Q1921 387 1900 300T1836 145T1721 38ZM1554 195Q1688 195 1688 492Q1688 780
+1554 780Q1421 780 1421 492Q1421 440 1426 395T1444 301T1485 224T1554 195ZM751 0L1034 1518H1253L971 0H751ZM539 541T444 541T278 579T163 686T99 841T78 1032Q78 1138 98 1224T160 1376T275 1479T444 1516Q522 1516 584 1492T688 1424T758 1320T798 1188T811
+1032Q811 928 790 841T725 685T611 579ZM444 735Q578 735 578 1032Q578 1321 444 1321Q311 1321 311 1032Q311 980 316 935T334 841T375 764T444 735Z" />
+<glyph unicode="&amp;" horiz-adv-x="1344" d="M545 1024Q609 1104 656 1229T704 1472Q704 1530 669 1565T576 1600Q511 1600 480 1544T448 1408Q448 1343 465 1267T499 1143T545 1024ZM512 192Q634 192 736 320L613 503Q600 524 569 564T514 639T481 704Q437
+646 411 561T384 384Q384 300 414 246T512 192ZM512 -18Q334 -18 231 92T128 384Q128 670 384 896Q370 925 326 1005T259 1134T214 1260T192 1408Q192 1588 296 1699T576 1810Q741 1810 850 1719T960 1472Q960 1402 938 1330T886 1202T807 1084T724 983T640 896L896
+512Q914 552 927 612T944 705T960 832H1216Q1216 710 1169 579T1057 350Q1132 256 1216 256V-18Q1191 -18 1169 -16T1123 -5T1084 9T1046 30T1013 51T980 78T952 103T922 131T896 157Q833 77 736 30T512 -18Z" />
+<glyph unicode="&apos;" horiz-adv-x="384" d="M126 1328L62 1792H318L254 1328H126Z" />
+<glyph unicode="(" horiz-adv-x="640" d="M576 -64Q496 -64 431 -43T321 24T242 120T188 249T154 393T136 558T130 724T128 896Q128 1018 129 1092T140 1280T166 1464T215 1617T295 1746T413 1824T576 1856V1664Q526 1664 490 1633T433 1553T400 1432T385 1293T381
+1143Q381 1095 382 1012T384 896T383 779T381 645Q381 561 384 496T400 358T432 238T489 159T576 128V-64Z" />
+<glyph unicode=")" horiz-adv-x="640" d="M64 -64V128Q114 128 150 159T207 239T240 360T255 499T259 649Q259 697 258 780T256 896T257 1013T259 1147Q259 1231 256 1296T240 1434T208 1554T151 1633T64 1664V1856Q144 1856 209 1835T319 1768T398 1672T452 1543T486
+1399T504 1234T510 1068T512 896Q512 774 511 700T500 512T474 328T425 175T345 46T227 -32T64 -64Z" />
+<glyph unicode="*" horiz-adv-x="896" d="M343 904L191 994L363 1237L106 1335L167 1496L412 1364L384 1664H576L547 1364L793 1496L854 1335L597 1236L769 994L617 904L480 1181L343 904Z" />
+<glyph unicode="+" horiz-adv-x="704" d="M256 384V576H64V768H256V960H448V768H640V576H448V384H256Z" />
+<glyph unicode="," horiz-adv-x="408" d="M140 -256L76 -128Q145 -128 174 -98T204 0H76V256H332Q332 112 329 14Q327 -40 323 -77T307 -150T275 -208T222 -243T140 -256Z" />
+<glyph unicode="-" horiz-adv-x="384" d="M0 448V640H384V448H0Z" />
+<glyph unicode="." horiz-adv-x="384" d="M64 0V256H320V0H64Z" />
+<glyph unicode="/" horiz-adv-x="832" d="M0 0L575 1792H832L256 0H0Z" />
+<glyph unicode="0" horiz-adv-x="1088" d="M544 -18Q398 -18 296 51T145 237T96 512V1280Q96 1527 208 1668T544 1810Q767 1810 879 1668T992 1280V512Q992 271 878 127T544 -18ZM544 192Q736 192 736 512V1280Q736 1334 732 1376T716 1462T683 1535T627 1582T544
+1600T461 1582T406 1535T373 1463T356 1377T352 1280V512Q352 449 360 396T389 295T449 220T544 192Z" />
+<glyph unicode="1" horiz-adv-x="640" d="M256 0V1408H64V1600Q257 1669 320 1792H512V0H256Z" />
+<glyph unicode="2" horiz-adv-x="1020" d="M71 0V256L520 896Q528 907 555 944T591 995T622 1043T652 1096T675 1149T696 1209T707 1271T712 1344Q712 1451 663 1525T520 1600Q465 1600 426 1573T367 1498T337 1397T328 1280V1216H72V1280Q72 1532 180 1671T520
+1810Q738 1810 853 1688T968 1344Q968 1261 954 1189T908 1051T850 942T776 832L328 256H968V0H71Z" />
+<glyph unicode="3" horiz-adv-x="1027" d="M526 -18Q308 -18 193 104T78 448V512H334Q334 452 337 410T352 323T384 253T440 209T526 192T612 209T668 252T699 323T714 409T718 512Q718 666 659 749T462 832V1088Q602 1088 660 1145T718 1344Q718 1471 676 1535T526
+1600Q476 1600 440 1583T384 1540T353 1469T338 1383T334 1280H78V1344Q78 1564 193 1687T526 1810Q744 1810 859 1688T974 1344Q974 1192 906 1095T718 960Q843 918 908 803T974 512Q974 260 866 121T526 -18Z" />
+<glyph unicode="4" horiz-adv-x="1087" d="M339 702H595V1472L339 702ZM595 0V460H83V745L531 1793H851V702H1049V460H851V0H595Z" />
+<glyph unicode="5" horiz-adv-x="1050" d="M535 -18Q296 -18 194 116T92 512H348V472Q348 421 351 384T365 307T394 243T445 202T521 186Q556 186 584 194T633 215T670 252T696 296T714 353T724 413T730 482T732 551T732 625Q732 647 732 658Q732 701 731 731T726
+797T713 857T691 905T657 943T608 965T541 974Q473 974 423 930T350 826H132V1792H924V1536H364L348 1102Q456 1166 604 1166Q691 1166 757 1140T867 1067T937 953T976 809T988 640Q988 525 976 432T933 253T852 109T722 17T535 -18Z" />
+<glyph unicode="6" horiz-adv-x="1083" d="M505 192T560 192T654 219T713 294T743 395T752 512Q752 550 752 569T751 625T747 680T740 730T728 776T711 815T686 850T654 874T612 891T560 896Q436 896 368 768V512Q368 448 377 395T406 294T466 219ZM560 -18Q468
+-18 393 13T267 98T180 227T128 390T112 576V1152Q112 1262 125 1355T170 1534T252 1680T380 1775T560 1810Q776 1810 892 1688T1008 1344H752Q752 1472 711 1536T560 1600Q368 1600 368 1216V960Q442 1088 624 1088Q732 1088 808 1051T927 942T989 781T1008 576Q1008
+450 983 346T906 158T766 29T560 -18Z" />
+<glyph unicode="7" horiz-adv-x="826" d="M190 0L518 1579H45V1792H762V1669L436 0H190Z" />
+<glyph unicode="8" horiz-adv-x="1024" d="M513 1063Q563 1063 596 1086T646 1152T667 1240T673 1344Q673 1600 513 1600Q351 1600 351 1344Q351 1284 357 1240T379 1152T428 1086T513 1063ZM463 192T513 192T599 210T655 255T686 326T701 412T704 511Q704 575
+696 625T668 722T609 793T513 818T417 793T357 723T328 627T320 511Q320 453 323 412T338 326T370 254T427 210ZM513 -18Q277 -18 171 118T64 511Q64 678 110 779T258 946Q172 1011 131 1106T90 1344Q90 1566 196 1688T513 1810Q723 1810 828 1688T934 1344Q934
+1200 894 1106T767 946Q868 880 914 778T960 511Q960 255 854 119T513 -18Z" />
+<glyph unicode="9" horiz-adv-x="1083" d="M540 896Q662 896 732 1024V1280Q732 1344 723 1397T694 1498T634 1573T540 1600T446 1573T387 1498T357 1397T348 1280Q348 1242 348 1223T349 1167T353 1112T360 1062T372 1016T389 977T414 942T446 918T488 901T540
+896ZM540 -18Q324 -18 208 104T92 448H348Q348 320 389 256T540 192Q732 192 732 576V832Q656 704 476 704Q368 704 292 741T173 850T111 1011T92 1216Q92 1342 117 1446T194 1634T334 1763T540 1810Q632 1810 707 1779T833 1694T920 1565T972 1402T988 1216V640Q988
+530 975 437T930 258T848 112T720 17T540 -18Z" />
+<glyph unicode=":" horiz-adv-x="439" d="M128 832V1088H384V832H128ZM128 256V512H384V256H128Z" />
+<glyph unicode=";" horiz-adv-x="384" d="M64 832V1088H320V832H64ZM128 0L64 128Q133 128 162 158T192 256H64V512H320Q320 368 317 270Q315 216 311 179T295 106T263 48T210 13T128 0Z" />
+<glyph unicode="&lt;" horiz-adv-x="832" d="M704 64L64 512V768L704 1216V960L256 641L704 320V64Z" />
+<glyph unicode="=" horiz-adv-x="704" d="M64 576V768H640V576H64ZM64 255V447H640V255H64Z" />
+<glyph unicode="&gt;" horiz-adv-x="832" d="M128 64V320L576 641L128 960V1216L768 768V512L128 64Z" />
+<glyph unicode="?" horiz-adv-x="1152" d="M384 0V256H640V0H384ZM384 384V704Q447 742 493 774T595 855T685 955T744 1073T768 1216Q768 1408 576 1408Q468 1408 426 1344T384 1152H128V1216Q128 1435 243 1549T576 1664Q795 1664 910 1549T1025 1216Q1025 1004
+924 866T640 640V384H384Z" />
+<glyph unicode="@" horiz-adv-x="1782" d="M884 502Q953 502 958 542V945Q951 996 904 996Q884 996 867 992T837 978T814 958T797 929T784 898T776 860T772 821T769 778T768 736T768 693Q768 502 884 502ZM958 -128Q524 -128 326 93T128 768Q128 1140 331 1356T896
+1572Q1267 1572 1460 1361T1654 768Q1654 667 1632 582T1566 431T1451 329T1286 292Q1190 292 1119 326T1011 420Q954 292 840 292Q734 292 659 348T548 493T512 693Q512 770 521 839T552 975T609 1090T696 1167T816 1197Q882 1197 918 1161T958 1061V1188H1214V620Q1214
+582 1217 560T1236 520T1282 502Q1398 502 1398 768Q1398 916 1372 1025T1288 1216T1132 1339T896 1380Q767 1380 668 1335T508 1208T415 1015T384 768Q384 596 413 471T507 252T684 111T958 64Q1083 64 1254 119L1348 -77Q1125 -128 958 -128Z" />
+<glyph unicode="A" horiz-adv-x="1056" d="M400 640H656L528 1408L400 640ZM16 0L400 1792H656L1040 0H784L688 448H368L272 0H16Z" />
+<glyph unicode="B" horiz-adv-x="1146" d="M384 1024H512Q832 1024 832 1344Q832 1397 819 1437T788 1505T734 1550T667 1579T582 1593T489 1599T384 1600V1024ZM384 192H512Q678 192 755 268T832 512T755 755T512 832H384V192ZM128 0V1792H512Q636 1792 734 1766T905
+1687T1018 1547T1058 1344Q1058 1176 987 1089T768 960Q928 907 1008 805T1088 512Q1088 275 951 138T576 0H128Z" />
+<glyph unicode="C" horiz-adv-x="1107" d="M588 -18Q475 -18 389 14T248 102T159 243T110 424T96 641V1152Q96 1273 110 1369T158 1549T248 1690T389 1778T588 1810Q713 1810 804 1773T949 1664T1031 1497T1064 1275Q1065 1256 1065 1216H809V1273Q808 1326 805
+1363T794 1441T771 1507T732 1556T672 1589T588 1600Q526 1600 482 1580T412 1529T374 1444T356 1341T352 1216V576Q352 512 357 460T379 357T420 270T488 214T588 192T686 214T750 270T787 357T805 460T809 576V640H1065V576Q1065 437 1041 332T962 147T814 24T588
+-18Z" />
+<glyph unicode="D" horiz-adv-x="1133" d="M128 0V1792H525Q806 1792 921 1677T1037 1280V576Q1037 281 920 141T523 0H128ZM384 192H525Q588 192 633 203T706 245T750 303T772 389T780 484T781 601Q781 627 781 640V1216Q781 1265 781 1294T778 1362T770 1425T756
+1476T734 1521T701 1554T656 1580T596 1594T520 1600H384V192Z" />
+<glyph unicode="E" horiz-adv-x="861" d="M128 0V1792H832V1600H384V1024H704V832H384V192H832V0H128Z" />
+<glyph unicode="F" horiz-adv-x="821" d="M128 0V1792H832V1600H384V1024H704V832H384V0H128Z" />
+<glyph unicode="G" horiz-adv-x="1199" d="M608 -18Q485 -18 395 17T247 112T156 265T109 461T96 698V1152Q96 1810 618 1810Q743 1810 835 1773T984 1663T1070 1495T1104 1271Q1105 1253 1105 1216H849V1270Q848 1333 843 1378T823 1468T783 1539T717 1583T618
+1600Q540 1600 487 1572T405 1489T364 1369T352 1216V640Q352 576 356 525T369 420T397 327T443 257T512 209T608 192Q672 192 719 217T793 281T837 382T858 503T864 640V704H608V894H1120V0H928L864 192Q789 -18 608 -18Z" />
+<glyph unicode="H" horiz-adv-x="1216" d="M128 0V1792H384V1024H832V1792H1088V0H832V832H384V0H128Z" />
+<glyph unicode="I" horiz-adv-x="542" d="M140 0V1792H396V0H140Z" />
+<glyph unicode="J" horiz-adv-x="640" d="M0 0V192Q83 192 129 201T206 239T246 316T256 448V1792H512V448Q512 326 496 247T438 109T320 26T128 0H0Z" />
+<glyph unicode="K" horiz-adv-x="1118" d="M128 0V1792H384V1024L768 1792H1088L703 1088L1152 0H832L512 832L384 576V0H128Z" />
+<glyph unicode="L" horiz-adv-x="823" d="M128 0V1792H384V192H832V0H128Z" />
+<glyph unicode="M" horiz-adv-x="1472" d="M128 0V1792H482L736 420L990 1792H1344V0H1088V1414L832 0H640L384 1414V0H128Z" />
+<glyph unicode="N" horiz-adv-x="1152" d="M128 0V1792H320L768 684V1792H1024V0H842L384 1192V0H128Z" />
+<glyph unicode="O" horiz-adv-x="1180" d="M590 -18Q455 -18 359 23T205 143T122 328T96 576V1226Q96 1367 122 1472T205 1654T358 1771T590 1810Q852 1810 968 1660T1084 1226V576Q1084 437 1058 331T974 145T821 24T590 -18ZM455 192T590 192T776 273T828 512V1290Q828
+1446 777 1523T590 1600T403 1523T352 1290V512Q352 354 403 273Z" />
+<glyph unicode="P" horiz-adv-x="1041" d="M384 1024H448Q535 1024 590 1034T688 1071T749 1150T768 1280Q768 1376 754 1435T703 1533T606 1585T448 1600H384V1024ZM128 0V1792H576Q1024 1792 1024 1280Q1024 1061 909 947T576 832H384V0H128Z" />
+<glyph unicode="Q" horiz-adv-x="1180" d="M455 192T590 192T776 273T828 512V1290Q828 1446 777 1523T590 1600T403 1523T352 1290V512Q352 354 403 273ZM1063 -256Q954 -256 847 -180T690 -11Q647 -18 590 -18Q455 -18 359 23T205 143T122 328T96 576V1226Q96
+1367 122 1472T205 1654T358 1771T590 1810Q852 1810 968 1660T1084 1226V576Q1084 180 869 49Q898 7 956 -19T1063 -46V-256Z" />
+<glyph unicode="R" horiz-adv-x="1108" d="M384 1024H448Q608 1024 688 1091T768 1312T688 1532T448 1600H384V1024ZM128 0V1792H448Q734 1792 879 1681T1024 1312Q1024 1152 967 1044T800 896L1088 0H834L576 832H384V0H128Z" />
+<glyph unicode="S" horiz-adv-x="1102" d="M595 -18Q353 -18 226 124T83 512L339 576Q358 192 595 192Q787 192 787 384Q787 441 772 489T724 578T666 643T595 704L275 960Q187 1029 135 1135T82 1378Q82 1576 205 1693T531 1810Q749 1810 877 1704T1036 1402Q1039
+1381 1043 1344L787 1280Q786 1297 782 1331Q765 1453 706 1526T531 1600Q439 1600 389 1549T339 1405Q339 1254 467 1152L787 896Q1043 689 1043 401Q1043 204 922 93T595 -18Z" />
+<glyph unicode="T" horiz-adv-x="894" d="M319 0V1564H-1V1792H895V1564H575V0H319Z" />
+<glyph unicode="U" horiz-adv-x="1252" d="M743 -19T626 -19T420 12T274 98T180 238T129 419T114 640V1792H370V640Q370 557 373 501T392 382T433 280T508 217T626 192T743 217T818 280T860 381T878 501T882 640V1792H1138V640Q1138 517 1123 420T1072 238T979
+99T832 12Z" />
+<glyph unicode="V" horiz-adv-x="1048" d="M396 0L12 1792H268L457 832L523 384L591 832L780 1792H1036L652 0H396Z" />
+<glyph unicode="W" horiz-adv-x="1558" d="M331 0L11 1792H267L395 960L460 448L523 960L651 1792H907L1035 960L1098 448L1163 960L1291 1792H1547L1227 0H971L843 832L779 1344L715 832L587 0H331Z" />
+<glyph unicode="X" horiz-adv-x="1070" d="M25 0L343 929L23 1792H279L535 1088L791 1792H1047L727 933L1043 0H789L535 768L281 0H25Z" />
+<glyph unicode="Y" horiz-adv-x="1018" d="M381 0V576L-3 1792H253L509 896L765 1792H1021L637 576V0H381Z" />
+<glyph unicode="Z" horiz-adv-x="951" d="M62 0V192L638 1600H126V1792H894V1600L318 192H894V0H62Z" />
+<glyph unicode="[" horiz-adv-x="768" d="M128 -64V1856H640V1728H384V64H640V-64H128Z" />
+<glyph unicode="\" horiz-adv-x="576" d="M256 0L64 1792H320L512 0H256Z" />
+<glyph unicode="]" horiz-adv-x="768" d="M128 -64V64H384V1728H128V1856H640V-64H128Z" />
+<glyph unicode="^" horiz-adv-x="896" d="M64 896L320 1536H576L832 896H576L447 1344L320 896H64Z" />
+<glyph unicode="_" horiz-adv-x="768" d="M0 0V192H768V0H0Z" />
+<glyph unicode="`" horiz-adv-x="640" d="M384 1408L128 1792H384L512 1408H384Z" />
+<glyph unicode="a" horiz-adv-x="955" d="M468 192Q495 192 520 208T559 239T591 279Q594 284 596 286V640Q580 629 543 606T484 569T431 529T383 480T353 422T340 351Q340 192 468 192ZM340 -18Q233 -18 159 74T84 283Q84 376 115 452T182 573T299 667T423 734T569
+793Q587 800 596 804V896Q596 993 569 1046T468 1100Q402 1100 374 1055T341 929Q340 918 340 896H84Q86 1080 187 1189T468 1298Q647 1298 749 1188T852 896V320Q852 120 885 0H630L596 192Q576 152 564 130T527 76T479 26T419 -5T340 -18Z" />
+<glyph unicode="b" horiz-adv-x="1042" d="M565 192Q606 192 633 222T673 307T690 418T695 546Q695 600 695 689T694 823T692 901T682 972T661 1033T623 1072T565 1088Q459 1088 373 1037V232Q472 192 565 192ZM629 -18Q551 -18 491 19T373 116V0H117V1791H373V1153Q409
+1191 427 1208T479 1251T551 1287T633 1298Q698 1298 749 1275T833 1218T889 1123T923 1011T941 876T948 739T949 594V577Q949 493 941 415T910 256T853 116T761 20T629 -18Z" />
+<glyph unicode="c" horiz-adv-x="863" d="M434 -18Q341 -18 273 13T163 94T97 221T63 376T51 557Q48 640 51 724Q53 826 62 904T97 1059T163 1186T272 1267T434 1298Q636 1298 724 1189T818 866V832H562V868Q561 916 556 952T538 1024T499 1079T434 1099T370 1077T331
+1012T311 926T304 823Q300 699 304 449Q306 394 312 353T331 273T371 213T434 192Q468 192 492 205T530 237T550 288T560 347T562 417V448H818V415Q815 314 793 237T727 101T609 13T434 -18Z" />
+<glyph unicode="d" horiz-adv-x="1050" d="M478 192Q571 192 670 232V1037Q584 1088 478 1088Q440 1088 414 1070T375 1016T356 943T349 854Q345 630 349 499Q350 435 356 385T375 289T415 217T478 192ZM414 -18Q329 -18 266 30T168 160T116 330T95 521Q93 568
+95 751Q97 817 101 870T114 982T138 1084T177 1170T233 1239T310 1282T410 1298Q453 1298 490 1287T562 1251T616 1207T670 1153V1791H926V0H670V116Q612 56 552 19T414 -18Z" />
+<glyph unicode="e" horiz-adv-x="933" d="M476 -18Q383 -18 315 14T206 97T140 229T106 390T94 578Q91 662 94 746Q97 846 107 923T144 1074T211 1194T320 1269T478 1298Q560 1298 622 1277T726 1212T795 1115T837 987T856 838T862 670V640H350V576Q350 563 350
+535Q348 498 349 459T353 381T364 309T386 248T422 207T478 192Q518 192 544 207T582 254T600 316T606 394V448H860V397Q851 192 759 87T476 -18ZM350 768H604V845Q603 896 598 934T581 1010T542 1068T478 1088Q439 1088 413 1067T374 1007T356 929T350 838V768Z"
+/>
+<glyph unicode="f" horiz-adv-x="634" d="M184 0V1088H56V1280H184V1329Q184 1410 190 1466T214 1575T264 1659T348 1709T474 1728Q536 1728 632 1716V1526Q622 1527 591 1531T546 1536Q482 1536 461 1496T440 1376V1280H632V1088H440V0H184Z" />
+<glyph unicode="g" horiz-adv-x="925" d="M298 560T458 560T618 832Q618 887 611 933T587 1024T537 1094T458 1120Q411 1120 378 1095T329 1025T305 934T298 832Q298 560 458 560ZM522 -194Q549 -194 570 -193T620 -189T668 -180T707 -163T736 -137T746 -99Q746
+8 541 32L330 57Q291 29 264 -24T236 -135Q236 -151 247 -162T279 -180T323 -190T377 -195T430 -196T481 -195T522 -194ZM522 -383Q474 -383 444 -383T362 -380T275 -373T195 -359T121 -336T64 -303T24 -257T10 -195Q10 -95 63 -24T202 89Q150 103 112 131T74 201Q74
+218 78 237T87 271T103 307T120 338T142 370T162 398T184 425T202 448Q74 600 74 832Q74 965 116 1069T246 1235T458 1298Q529 1298 582 1278T668 1228T734 1147Q810 1288 950 1297Q953 1297 956 1297T963 1297T970 1297V1088Q965 1088 954 1088Q911 1088 889 1087T840
+1079T797 1055Q815 1016 828 952T842 832Q842 698 802 595T673 430T458 368L329 383Q327 378 319 366T307 345T298 325T294 301Q294 275 319 257T388 231T472 218T563 212T632 206Q689 198 733 188T824 157T901 109T950 37T970 -64Q970 -134 946 -189T880 -280T781
+-339T659 -373T522 -383Z" />
+<glyph unicode="h" horiz-adv-x="992" d="M117 0V1792H373V1142Q430 1194 466 1221T565 1273T701 1298Q783 1298 834 1238T885 1091V0H629V960Q629 1026 613 1057T541 1088Q463 1088 373 1013V0H117Z" />
+<glyph unicode="i" horiz-adv-x="512" d="M128 1472V1728H384V1472H128ZM128 0V1280H384V0H128Z" />
+<glyph unicode="j" horiz-adv-x="507" d="M150 1472V1728H406V1472H150ZM86 -320Q2 -320 -42 -303V-121Q-7 -128 22 -128Q150 -128 150 21V1280H406V-7Q406 -155 321 -237T86 -320Z" />
+<glyph unicode="k" horiz-adv-x="961" d="M117 0V1792H373V807L693 1280H949L662 833L949 0H693L501 619L373 448V0H117Z" />
+<glyph unicode="l" horiz-adv-x="485" d="M118 0V1792H374V0H118Z" />
+<glyph unicode="m" horiz-adv-x="1504" d="M117 0V1280H373V1135Q510 1298 692 1298Q784 1298 827 1258T885 1129Q948 1212 1021 1255T1205 1298Q1237 1298 1262 1292T1307 1276T1340 1249T1364 1215T1380 1170T1390 1122T1395 1066T1397 1008T1397 945Q1397 936
+1397 931V0H1141V934Q1141 939 1141 950Q1141 983 1140 1001T1134 1042T1114 1077T1077 1088Q1038 1088 999 1073T939 1043T885 1002V0H629V929Q629 935 629 947Q629 975 629 989T626 1025T616 1059T597 1079T565 1088Q471 1088 373 1007V0H117Z" />
+<glyph unicode="n" horiz-adv-x="992" d="M117 0V1280H373V1142Q430 1194 466 1221T565 1273T701 1298Q783 1298 834 1238T885 1091V0H629V960Q629 1027 610 1057T533 1088Q500 1088 468 1075T419 1050T373 1013V0H117Z" />
+<glyph unicode="o" horiz-adv-x="954" d="M683 -18T477 -18T182 102T93 448V832Q93 1058 182 1178T477 1298T772 1178T861 832V448Q861 222 772 102ZM450 192T477 192T524 200T558 219T581 253T595 293T602 342T604 392T605 448V832Q605 869 605 887T602 938T595
+987T581 1026T559 1060T525 1080T477 1088T430 1080T396 1061T373 1027T359 987T352 938T350 888T349 832V448Q349 411 349 393T352 342T359 293T373 254T395 220T429 200Z" />
+<glyph unicode="p" horiz-adv-x="1042" d="M565 192Q606 192 633 222T673 307T690 417T695 545L693 714Q693 759 693 786T689 859T681 934T664 998T638 1053T598 1087T542 1101Q527 1101 514 1099T486 1093T462 1085T437 1073T416 1062T393 1048T373 1036V244Q461
+192 565 192ZM117 -384V1280H373V1152Q404 1185 416 1197T457 1234T508 1269T563 1288T633 1298Q698 1298 749 1275T833 1218T889 1124T923 1012T941 877T948 740T949 595V576Q949 492 941 414T910 256T853 116T761 20T629 -18Q499 -18 373 115V-384H117Z" />
+<glyph unicode="q" horiz-adv-x="1012" d="M476 192Q577 192 668 244V1036Q664 1038 648 1048T626 1061T604 1073T580 1084T556 1092T528 1099T499 1101Q467 1101 443 1087T402 1052T375 995T358 930T350 854T347 780T346 707Q346 705 346 704Q346 687 346 649T346
+576T346 510Q347 443 352 393T371 294T411 219T476 192ZM668 -384V115Q611 56 551 19T412 -18Q338 -18 281 19T189 116T132 255T101 414T92 576V771Q92 858 100 930T129 1072T184 1190T276 1268T408 1298Q451 1298 488 1287T560 1250T614 1207T668 1152V1280H924V-384H668Z"
+/>
+<glyph unicode="r" horiz-adv-x="693" d="M117 0V1280H373V1109Q412 1185 486 1241T652 1298Q655 1298 693 1294V1011Q622 1039 551 1039Q471 1039 422 991T373 864V0H117Z" />
+<glyph unicode="s" horiz-adv-x="876" d="M453 -18Q295 -18 200 76T69 320L261 384Q330 192 453 192Q514 192 547 225T581 320Q581 409 517 468L261 660Q218 689 189 714T130 777T85 860T69 960Q69 1124 173 1211T453 1298Q536 1298 603 1272T715 1197T790 1091T837
+960L645 896Q631 934 617 961T580 1021T524 1070T453 1088Q392 1088 359 1055T325 960Q325 900 389 852L645 660Q688 626 718 595T778 522T822 429T837 320Q837 156 733 69T453 -18Z" />
+<glyph unicode="t" horiz-adv-x="700" d="M472 -18Q321 -18 253 59T182 292V1088H54V1280H182V1728H438V1280H630V1088H438V341Q438 264 459 228T544 192Q572 192 630 202V-6Q534 -18 472 -18Z" />
+<glyph unicode="u" horiz-adv-x="987" d="M300 -18Q216 -18 165 41T114 189V1280H370V267Q370 227 394 202T458 177Q479 177 499 182T538 199T569 219T600 245T626 267V1280H882V0H626V138Q588 105 571 90T517 50T454 13T385 -8T300 -18Z" />
+<glyph unicode="v" horiz-adv-x="872" d="M308 0L20 1280H266L444 319L606 1280H852L566 0H308Z" />
+<glyph unicode="w" horiz-adv-x="1281" d="M257 0L20 1280H247L389 308L523 1280H757L893 318L1033 1280H1261L1013 0H777L641 882L503 0H257Z" />
+<glyph unicode="x" horiz-adv-x="866" d="M17 0L273 640V666L17 1280H264L435 791L606 1280H849L593 666V640L849 0H593L441 493L273 0H17Z" />
+<glyph unicode="y" horiz-adv-x="872" d="M84 -320V-128Q160 -128 205 -118T274 -83T303 -27T310 58L20 1280H276Q425 457 437 384Q458 519 484 668T544 998T596 1280H852L532 -64Q500 -203 397 -261T110 -320H84Z" />
+<glyph unicode="z" horiz-adv-x="818" d="M71 0V192L519 1088H135V1280H775V1088L327 192H775V0H71Z" />
+<glyph unicode="{" horiz-adv-x="704" d="M640 -64Q508 -64 419 -27T281 87T212 265T192 512Q192 525 192 554T193 595T191 632T188 667T182 695T171 721T155 740T132 756T102 764T64 768V1024Q88 1024 107 1031T139 1054T162 1087T177 1132T186 1182T191 1238T192
+1294T193 1353T192 1408Q192 1539 213 1622T288 1759T425 1834T640 1856V1664Q601 1664 572 1659T523 1646T488 1621T466 1587T454 1540T449 1482T448 1408Q448 986 256 896Q351 855 399 757T448 512Q448 509 448 503Q448 447 448 419T452 344T463 272T484 215T518
+167T569 140T640 128V-64Z" />
+<glyph unicode="|" horiz-adv-x="384" d="M128 -128V1920H320V-128H128Z" />
+<glyph unicode="}" horiz-adv-x="704" d="M64 -64V128Q92 128 116 132T158 148T190 171T214 204T232 242T243 287T250 336T254 391T256 446T256 506Q256 510 256 512Q256 657 304 756T448 896Q256 982 256 1408Q256 1444 256 1466T253 1515T247 1557T237 1591T220
+1619T196 1639T163 1653T119 1661T64 1664V1856Q237 1856 332 1814T470 1677T512 1408Q512 1392 512 1354T511 1295T512 1239T517 1182T526 1133T541 1088T564 1055T597 1031T640 1024V768Q613 768 592 763T558 747T535 723T521 690T514 649T512 601T512 549Q512
+525 512 512Q512 395 500 309T458 150T378 32T249 -39T64 -64Z" />
+<glyph unicode="~" horiz-adv-x="960" d="M613 812Q565 812 515 834T417 877T329 899Q281 899 281 832H127Q127 948 184 1026T347 1105Q405 1105 492 1062T628 1019Q679 1019 679 1088H833Q833 969 777 891T613 812Z" />
+<glyph unicode="&#xa0;" horiz-adv-x="416" />
+<glyph unicode="&#xa1;" horiz-adv-x="384" d="M64 1280V1536H320V1280H64ZM64 0L128 1152H256V0H64Z" />
+<glyph unicode="&#xa2;" horiz-adv-x="1027" d="M479 206V1071Q456 1060 439 1041T411 991T395 934T386 863T384 793T384 714T385 640Q385 616 384 567T383 488T384 415T392 343T408 284T436 235T479 206ZM479 -128V-15Q391 -8 328 21T227 94T167 208T137 353T129
+532V733Q129 833 137 910T169 1057T231 1175T332 1254T479 1294V1408H557V1294Q735 1274 816 1157T897 831L641 832Q641 933 625 991T557 1073V207Q581 219 597 239T622 282T635 340T640 402T641 473H897Q897 468 897 453T898 430Q898 239 812 122T557 -14V-128H479Z"
+/>
+<glyph unicode="&#xa3;" horiz-adv-x="896" d="M0 0V128L128 191V768H0V960H128V1152Q128 1235 131 1298T143 1433T169 1557T215 1659T284 1740T381 1791T512 1810Q677 1810 753 1706T832 1422V1344H640Q640 1397 636 1435T620 1514T581 1578T512 1600Q479 1600
+455 1583T419 1540T398 1475T388 1404T384 1330V960H640V768H384V192H832V0H0Z" />
+<glyph unicode="&#xa4;" horiz-adv-x="1024" d="M421 682T512 682T653 741T704 896T654 1051T512 1110Q420 1110 370 1052T320 897T370 742ZM195 489L105 579L191 665Q128 761 128 897Q128 1030 191 1127L105 1213L195 1303L281 1217Q378 1280 512 1280T743 1217L829
+1303L919 1213L832 1126Q896 1028 896 897Q896 765 832 665L919 579L829 489L743 575Q646 512 512 512T281 575L195 489Z" />
+<glyph unicode="&#xa5;" horiz-adv-x="1024" d="M384 0V256H192V424H384V553H192V719H341L48 1792H308L512 848L714 1792H974L679 719H832V553H640V424H832V256H640V0H384Z" />
+<glyph unicode="&#xa6;" horiz-adv-x="395" d="M94 889V1518H297V889H94ZM94 -14V614H297V-14H94Z" />
+<glyph unicode="&#xa7;" horiz-adv-x="960" d="M512 754Q608 799 608 882Q608 906 598 929T565 976T528 1012T483 1048T448 1074Q352 1017 352 925Q352 891 371 862T416 817L512 754ZM480 -17Q398 -17 331 10T219 85T143 191T96 321L288 385Q357 193 480 193Q541
+193 574 226T608 321Q608 370 591 411T544 469L288 625Q228 661 190 696T124 790T96 925Q96 1035 145 1111T282 1226Q239 1251 213 1269T157 1318T111 1386T96 1472Q96 1636 200 1723T480 1810Q563 1810 629 1784T742 1709T817 1602T864 1472L672 1408Q658 1446
+644 1473T607 1533T551 1582T480 1600Q419 1600 386 1567T352 1472Q352 1412 416 1364Q577 1275 600 1261Q775 1153 831 1032Q864 963 864 882Q864 687 706 596Q779 537 821 473T864 321Q864 157 760 70T480 -17Z" />
+<glyph unicode="&#xa8;" horiz-adv-x="896" d="M512 1536V1792H768V1536H512ZM128 1536V1792H384V1536H128Z" />
+<glyph unicode="&#xa9;" horiz-adv-x="1528" d="M764 -14Q614 -14 485 41T265 191T122 418T70 700Q70 902 158 1065T405 1321T764 1415Q914 1415 1043 1360T1263 1210T1406 983T1458 700Q1458 499 1370 336T1122 80T764 -14ZM612 133T764 133T1036 208T1221 412T1286
+696Q1286 813 1248 917T1143 1096T977 1216T764 1260Q611 1260 491 1185T306 981T242 696Q242 541 307 413T492 209ZM768 217Q710 217 665 231T589 268T537 330T503 407T485 502T477 607T475 723Q475 810 481 872T505 995T555 1095T642 1156T774 1180Q1055 1180
+1055 840H872Q872 881 869 910T857 971T828 1019T776 1036Q753 1036 735 1031T703 1014T681 990T667 956T658 917T655 871T654 824T654 772T655 721T655 671T654 617T653 565T656 513T664 466T677 425T698 394T728 372T768 365Q803 365 826 383T858 435T871 501T874
+578H1053V562Q1053 406 983 312T768 217Z" />
+<glyph unicode="&#xaa;" horiz-adv-x="842" d="M374 144Q410 144 440 166T485 219V408Q390 357 361 332Q303 285 303 228Q303 189 321 167T374 144ZM301 -10Q218 -10 163 45T108 183Q108 251 134 300T224 385T325 434T450 475Q474 482 485 486V580Q485 719 409
+719Q319 719 319 568H141Q143 702 214 782T413 863Q492 863 545 841T626 772T666 666T678 521V0H501V111Q472 58 419 24T301 -10Z" />
+<glyph unicode="&#xab;" horiz-adv-x="1024" d="M960 64L512 576V704L960 1216V896L704 641L960 384V64ZM512 64L64 576V704L512 1216V896L256 641L512 384V64Z" />
+<glyph unicode="&#xac;" horiz-adv-x="768" d="M512 256V448H128V640H640V256H512Z" />
+<glyph unicode="&#xad;" horiz-adv-x="768" d="M128 448V640H640V448H128Z" />
+<glyph unicode="&#xae;" horiz-adv-x="1528" d="M764 -14Q614 -14 485 41T265 191T122 418T70 700Q70 902 158 1065T405 1321T764 1415Q914 1415 1043 1360T1263 1210T1406 983T1458 700Q1458 499 1370 336T1122 80T764 -14ZM612 133T764 133T1036 208T1221 412T1286
+696Q1286 813 1248 917T1143 1096T977 1216T764 1260Q611 1260 491 1185T306 981T242 696Q242 541 307 413T492 209ZM672 729H705Q798 729 832 764T866 897Q866 972 838 1010T743 1049H672V729ZM516 248V1167H756Q1026 1167 1026 893Q1026 738 901 670L1049 248H881L754
+633H672V248H516Z" />
+<glyph unicode="&#xaf;" horiz-adv-x="640" d="M123 1407V1559H557V1407H123Z" />
+<glyph unicode="&#xb0;" horiz-adv-x="1024" d="M692 1042T512 1042T230 1145T128 1427Q128 1605 230 1707T512 1810T794 1708T896 1427Q896 1248 794 1145ZM421 1212T512 1212T653 1271T704 1426T654 1581T512 1640Q420 1640 370 1582T320 1427T370 1272Z" />
+<glyph unicode="&#xb1;" horiz-adv-x="832" d="M128 0V192H704V0H128ZM320 384V576H128V768H320V960H512V768H704V576H512V384H320Z" />
+<glyph unicode="&#xb2;" horiz-adv-x="640" d="M64 576V704L256 960Q263 969 283 995T313 1034T339 1073T363 1118T377 1163T384 1216Q384 1237 384 1248T382 1277T376 1304T365 1324T347 1339T320 1344T293 1340T275 1325T264 1305T259 1277T257 1248T256 1216H64Q64
+1337 130 1404T320 1472T509 1405T576 1216Q576 1145 539 1068T457 937T348 812T256 704H576V576H64Z" />
+<glyph unicode="&#xb3;" horiz-adv-x="768" d="M507 640T384 640T195 707T128 896H320Q320 875 320 864T322 835T328 808T339 788T357 773T384 768T411 772T429 787T440 807T445 835T447 864T448 896Q448 967 420 995T320 1024V1152Q393 1152 420 1180T448 1280Q448
+1301 448 1312T446 1341T440 1368T429 1388T411 1403T384 1408T357 1404T339 1389T328 1369T323 1341T321 1312T320 1280H128Q128 1401 194 1468T384 1536T573 1469T640 1280Q640 1189 589 1140T448 1088Q538 1082 589 1035T640 896Q640 775 574 708Z" />
+<glyph unicode="&#xb4;" horiz-adv-x="640" d="M128 1408L256 1792H512L256 1408H128Z" />
+<glyph unicode="&#xb5;" horiz-adv-x="987" d="M370 267Q370 227 394 202T458 177Q479 177 499 182T538 199T569 219T600 245T626 267V1280H882V0H626V138Q590 75 530 38T370 0V-252L114 -253V1280H370V267Z" />
+<glyph unicode="&#xb6;" horiz-adv-x="952" d="M382 0V876Q218 876 117 962T16 1204Q16 1373 123 1454T423 1536H896V0H718V876H579V0H382Z" />
+<glyph unicode="&#xb7;" horiz-adv-x="384" d="M64 706V962H320V706H64Z" />
+<glyph unicode="&#xb8;" horiz-adv-x="576" d="M64 -512V-384Q79 -384 115 -385T172 -386Q240 -386 280 -373T320 -320Q320 -306 313 -293T291 -269T262 -248T225 -230T190 -215T155 -202T128 -192V0H256V-128Q303 -141 337 -154T417 -190T487 -246T512 -320Q512
+-358 501 -387T473 -437T427 -471T370 -493T301 -505T228 -511T149 -512H64Z" />
+<glyph unicode="&#xb9;" horiz-adv-x="512" d="M192 640V1216H64V1344Q232 1427 320 1536H384V640H192Z" />
+<glyph unicode="&#xba;" horiz-adv-x="899" d="M450 -14Q261 -14 180 94T99 410V729Q99 937 180 1045T450 1153Q630 1153 715 1040T800 729V410Q800 212 715 99T450 -14ZM445 186Q464 186 480 189T509 200T530 216T547 240T558 266T566 298T571 332T573 370T574
+409T574 451V688Q574 692 574 700Q574 730 574 744T573 785T570 825T563 860T552 892T536 916T514 936T484 947T445 952Q418 952 397 944T362 925T338 891T323 851T316 801T313 747T312 688V451Q312 408 313 383T317 322T330 266T353 225T390 195T445 186Z" />
+<glyph unicode="&#xbb;" horiz-adv-x="1024" d="M512 64V384L768 641L512 896V1216L960 704V576L512 64ZM64 64V384L320 641L64 896V1216L512 704V576L64 64Z" />
+<glyph unicode="&#xbc;" horiz-adv-x="1687" d="M1173 383H1301V639L1173 383ZM1301 -1V255H981V383L1321 959H1493V383H1621V255H1493V-1H1301ZM409 0L984 1792H1241L665 0H409ZM197 744V1320H69V1448Q237 1531 325 1640H389V744H197Z" />
+<glyph unicode="&#xbd;" horiz-adv-x="1713" d="M1130 3V131L1322 387Q1329 396 1349 422T1379 461T1405 500T1429 545T1443 590T1450 643Q1450 664 1450 675T1448 704T1442 731T1431 751T1413 766T1386 771T1359 767T1341 752T1330 732T1325 704T1323 675T1322
+643H1130Q1130 764 1196 831T1386 899T1575 832T1642 643Q1642 572 1605 495T1523 364T1414 239T1322 131H1642V3H1130ZM434 0L1009 1792H1266L690 0H434ZM194 744V1320H66V1448Q234 1531 322 1640H386V744H194Z" />
+<glyph unicode="&#xbe;" horiz-adv-x="1803" d="M1291 386H1419V642L1291 386ZM1419 2V258H1099V386L1439 962H1611V386H1739V258H1611V2H1419ZM519 0L1094 1792H1351L775 0H519ZM450 764T327 764T138 831T71 1020H263Q263 999 263 988T265 959T271 932T282 912T300
+897T327 892T354 896T372 911T383 931T388 959T390 988T391 1020Q391 1091 363 1119T263 1148V1276Q336 1276 363 1304T391 1404Q391 1425 391 1436T389 1465T383 1492T372 1512T354 1527T327 1532T300 1528T282 1513T271 1493T266 1465T264 1436T263 1404H71Q71
+1525 137 1592T327 1660T516 1593T583 1404Q583 1313 532 1264T391 1212Q481 1206 532 1159T583 1020Q583 899 517 832Z" />
+<glyph unicode="&#xbf;" horiz-adv-x="891" d="M343 1106V1329H564V1106H343ZM430 -5Q80 -5 80 346Q80 387 90 430T113 505T154 580T197 645T251 708T299 761T349 812V1029H565V760Q553 745 510 695T442 610T384 526T335 425T318 328Q318 202 430 202Q472 202
+501 219T544 269T565 337T571 421H790V396Q790 210 699 103T430 -5Z" />
+<glyph unicode="&#xc0;" horiz-adv-x="1056" d="M400 640H656L528 1408L400 640ZM16 0L400 1792H656L1040 0H784L688 448H368L272 0H16ZM464 1912L208 2296H464L592 1912H464Z" />
+<glyph unicode="&#xc1;" horiz-adv-x="1056" d="M400 640H656L528 1408L400 640ZM16 0L400 1792H656L1040 0H784L688 448H368L272 0H16ZM464 1912L592 2296H848L592 1912H464Z" />
+<glyph unicode="&#xc2;" horiz-adv-x="1056" d="M400 640H656L528 1408L400 640ZM16 0L400 1792H656L1040 0H784L688 448H368L272 0H16ZM208 1912L400 2296H656L848 1912H656L528 2168L400 1912H208Z" />
+<glyph unicode="&#xc3;" horiz-adv-x="1056" d="M400 640H656L528 1408L400 640ZM16 0L400 1792H656L1040 0H784L688 448H368L272 0H16ZM661 1912Q613 1912 563 1934T465 1977T377 1999Q329 1999 329 1932H175Q175 2048 232 2126T395 2205Q453 2205 540 2162T676
+2119Q727 2119 727 2188H881Q881 2071 824 1992T661 1912Z" />
+<glyph unicode="&#xc4;" horiz-adv-x="1056" d="M400 640H656L528 1408L400 640ZM16 0L400 1792H656L1040 0H784L688 448H368L272 0H16ZM592 1912V2168H848V1912H592ZM208 1912V2168H464V1912H208Z" />
+<glyph unicode="&#xc5;" horiz-adv-x="1056" d="M400 640H656L528 1408L400 640ZM16 0L400 1792H656L1040 0H784L688 448H368L272 0H16ZM645 1857T528 1857T342 1927T272 2113T341 2299T528 2369T714 2299T784 2113T715 1927ZM468 1985T528 1985T622 2019T656
+2113T622 2206T528 2241T434 2207T400 2113T434 2019Z" />
+<glyph unicode="&#xc6;" horiz-adv-x="1408" d="M393 640H640V1298L393 640ZM-126 0L638 1792H1344V1600H896V1024H1216V832H896V192H1344V0H640V448H320L129 0H-126Z" />
+<glyph unicode="&#xc7;" horiz-adv-x="1107" d="M588 -18Q475 -18 389 14T248 102T159 243T110 424T96 641V1152Q96 1273 110 1369T158 1549T248 1690T389 1778T588 1810Q713 1810 804 1773T949 1664T1031 1497T1064 1275Q1065 1256 1065 1216H809V1273Q808 1326
+805 1363T794 1441T771 1507T732 1556T672 1589T588 1600Q526 1600 482 1580T412 1529T374 1444T356 1341T352 1216V576Q352 512 357 460T379 357T420 270T488 214T588 192T686 214T750 270T787 357T805 460T809 576V640H1065V576Q1065 437 1041 332T962 147T814
+24T588 -18ZM452 -513V-385Q467 -385 503 -386T560 -387Q628 -387 668 -374T708 -321Q708 -307 701 -294T679 -270T650 -249T613 -231T578 -216T543 -203T516 -193V-1H644V-129Q691 -142 725 -155T805 -191T875 -247T900 -321Q900 -359 889 -388T861 -438T815 -472T758
+-494T689 -506T616 -512T537 -513H452Z" />
+<glyph unicode="&#xc8;" horiz-adv-x="861" d="M128 0V1792H832V1600H384V1024H704V832H384V192H832V0H128ZM416 1912L160 2296H416L544 1912H416Z" />
+<glyph unicode="&#xc9;" horiz-adv-x="861" d="M128 0V1792H832V1600H384V1024H704V832H384V192H832V0H128ZM416 1912L544 2296H800L544 1912H416Z" />
+<glyph unicode="&#xca;" horiz-adv-x="861" d="M128 0V1792H832V1600H384V1024H704V832H384V192H832V0H128ZM160 1912L352 2296H608L800 1912H608L480 2168L352 1912H160Z" />
+<glyph unicode="&#xcb;" horiz-adv-x="861" d="M128 0V1792H832V1600H384V1024H704V832H384V192H832V0H128ZM544 1912V2168H800V1912H544ZM160 1912V2168H416V1912H160Z" />
+<glyph unicode="&#xcc;" horiz-adv-x="542" d="M140 0V1792H396V0H140ZM204 1912L-52 2296H204L332 1912H204Z" />
+<glyph unicode="&#xcd;" horiz-adv-x="542" d="M140 0V1792H396V0H140ZM204 1912L332 2296H588L332 1912H204Z" />
+<glyph unicode="&#xce;" horiz-adv-x="542" d="M140 0V1792H396V0H140ZM-52 1912L140 2296H396L588 1912H396L268 2168L140 1912H-52Z" />
+<glyph unicode="&#xcf;" horiz-adv-x="542" d="M140 0V1792H396V0H140ZM332 1912V2168H588V1912H332ZM-52 1912V2168H204V1912H-52Z" />
+<glyph unicode="&#xd0;" horiz-adv-x="1152" d="M128 0V852H34V1004H128V1792H512Q793 1792 908 1677T1024 1280V576Q1024 281 907 141T510 0H128ZM384 192H512Q575 192 620 203T693 245T737 303T759 389T767 484T768 601Q768 627 768 640V1216Q768 1265 768 1294T765
+1362T757 1425T743 1476T721 1521T688 1554T643 1580T583 1594T507 1600H384V1004H528V852H384V192Z" />
+<glyph unicode="&#xd1;" horiz-adv-x="1152" d="M128 0V1792H320L768 684V1792H1024V0H842L384 1192V0H128ZM709 1912Q661 1912 611 1934T513 1977T425 1999Q377 1999 377 1932H223Q223 2048 280 2126T443 2205Q501 2205 588 2162T724 2119Q775 2119 775 2188H929Q929
+2071 872 1992T709 1912Z" />
+<glyph unicode="&#xd2;" horiz-adv-x="1180" d="M590 -18Q455 -18 359 23T205 143T122 328T96 576V1226Q96 1367 122 1472T205 1654T358 1771T590 1810Q852 1810 968 1660T1084 1226V576Q1084 437 1058 331T974 145T821 24T590 -18ZM455 192T590 192T776 273T828
+512V1290Q828 1446 777 1523T590 1600T403 1523T352 1290V512Q352 354 403 273ZM526 1912L270 2296H526L654 1912H526Z" />
+<glyph unicode="&#xd3;" horiz-adv-x="1180" d="M590 -18Q455 -18 359 23T205 143T122 328T96 576V1226Q96 1367 122 1472T205 1654T358 1771T590 1810Q852 1810 968 1660T1084 1226V576Q1084 437 1058 331T974 145T821 24T590 -18ZM455 192T590 192T776 273T828
+512V1290Q828 1446 777 1523T590 1600T403 1523T352 1290V512Q352 354 403 273ZM526 1912L654 2296H910L654 1912H526Z" />
+<glyph unicode="&#xd4;" horiz-adv-x="1180" d="M590 -18Q455 -18 359 23T205 143T122 328T96 576V1226Q96 1367 122 1472T205 1654T358 1771T590 1810Q852 1810 968 1660T1084 1226V576Q1084 437 1058 331T974 145T821 24T590 -18ZM455 192T590 192T776 273T828
+512V1290Q828 1446 777 1523T590 1600T403 1523T352 1290V512Q352 354 403 273ZM270 1912L462 2296H718L910 1912H718L590 2168L462 1912H270Z" />
+<glyph unicode="&#xd5;" horiz-adv-x="1180" d="M590 -18Q455 -18 359 23T205 143T122 328T96 576V1226Q96 1367 122 1472T205 1654T358 1771T590 1810Q852 1810 968 1660T1084 1226V576Q1084 437 1058 331T974 145T821 24T590 -18ZM455 192T590 192T776 273T828
+512V1290Q828 1446 777 1523T590 1600T403 1523T352 1290V512Q352 354 403 273ZM723 1912Q675 1912 625 1934T527 1977T439 1999Q391 1999 391 1932H237Q237 2048 294 2126T457 2205Q515 2205 602 2162T738 2119Q789 2119 789 2188H943Q943 2071 886 1992T723 1912Z"
+/>
+<glyph unicode="&#xd6;" horiz-adv-x="1180" d="M590 -18Q455 -18 359 23T205 143T122 328T96 576V1226Q96 1367 122 1472T205 1654T358 1771T590 1810Q852 1810 968 1660T1084 1226V576Q1084 437 1058 331T974 145T821 24T590 -18ZM455 192T590 192T776 273T828
+512V1290Q828 1446 777 1523T590 1600T403 1523T352 1290V512Q352 354 403 273ZM654 1912V2168H910V1912H654ZM270 1912V2168H526V1912H270Z" />
+<glyph unicode="&#xd7;" horiz-adv-x="768" d="M192 320L64 448L256 640L64 832L192 960L384 768L576 960L704 832L512 640L704 448L576 320L384 512L192 320Z" />
+<glyph unicode="&#xd8;" horiz-adv-x="1180" d="M590 192Q725 192 776 273T828 512V1290Q828 1417 799 1484L463 219Q512 192 590 192ZM387 301L723 1571Q671 1600 590 1600Q454 1600 403 1523T352 1290V512Q352 374 387 301ZM364 -156L274 -128L319 43Q96 169
+96 576V1226Q96 1367 122 1472T205 1654T358 1771T590 1810Q700 1810 779 1785L821 1944L914 1920L868 1746Q1084 1619 1084 1226V576Q1084 437 1058 331T974 145T821 24T590 -18Q486 -18 407 6L364 -156Z" />
+<glyph unicode="&#xd9;" horiz-adv-x="1252" d="M743 -19T626 -19T420 12T274 98T180 238T129 419T114 640V1792H370V640Q370 557 373 501T392 382T433 280T508 217T626 192T743 217T818 280T860 381T878 501T882 640V1792H1138V640Q1138 517 1123 420T1072 238T979
+99T832 12ZM562 1912L306 2296H562L690 1912H562Z" />
+<glyph unicode="&#xda;" horiz-adv-x="1252" d="M743 -19T626 -19T420 12T274 98T180 238T129 419T114 640V1792H370V640Q370 557 373 501T392 382T433 280T508 217T626 192T743 217T818 280T860 381T878 501T882 640V1792H1138V640Q1138 517 1123 420T1072 238T979
+99T832 12ZM562 1912L690 2296H946L690 1912H562Z" />
+<glyph unicode="&#xdb;" horiz-adv-x="1252" d="M743 -19T626 -19T420 12T274 98T180 238T129 419T114 640V1792H370V640Q370 557 373 501T392 382T433 280T508 217T626 192T743 217T818 280T860 381T878 501T882 640V1792H1138V640Q1138 517 1123 420T1072 238T979
+99T832 12ZM306 1912L498 2296H754L946 1912H754L626 2168L498 1912H306Z" />
+<glyph unicode="&#xdc;" horiz-adv-x="1252" d="M743 -19T626 -19T420 12T274 98T180 238T129 419T114 640V1792H370V640Q370 557 373 501T392 382T433 280T508 217T626 192T743 217T818 280T860 381T878 501T882 640V1792H1138V640Q1138 517 1123 420T1072 238T979
+99T832 12ZM690 1912V2168H946V1912H690ZM306 1912V2168H562V1912H306Z" />
+<glyph unicode="&#xdd;" horiz-adv-x="1018" d="M381 0V576L-3 1792H253L509 896L765 1792H1021L637 576V0H381ZM445 1912L573 2296H829L573 1912H445Z" />
+<glyph unicode="&#xde;" horiz-adv-x="952" d="M324 581H369Q524 581 596 646T669 888Q669 1052 606 1120T401 1188H324V581ZM72 0V1792H324V1411H504Q720 1411 825 1274T931 886Q931 622 813 493T457 364H326V0H72Z" />
+<glyph unicode="&#xdf;" horiz-adv-x="1152" d="M512 -18V192Q591 192 641 210T720 271T758 370T768 512Q768 653 704 732T512 812V1024Q568 1024 608 1051T670 1125T701 1226T711 1344Q711 1404 705 1446T681 1525T630 1581T544 1600Q495 1600 463 1583T414 1530T391
+1455T384 1359V0H128V1354Q128 1561 226 1685T512 1810Q735 1810 847 1690T960 1344Q960 1191 906 1096T741 939Q873 903 948 791T1024 512Q1024 247 899 115T512 -18Z" />
+<glyph unicode="&#xe0;" horiz-adv-x="955" d="M468 192Q495 192 520 208T559 239T591 279Q594 284 596 286V640Q580 629 543 606T484 569T431 529T383 480T353 422T340 351Q340 192 468 192ZM340 -18Q233 -18 159 74T84 283Q84 376 115 452T182 573T299 667T423
+734T569 793Q587 800 596 804V896Q596 993 569 1046T468 1100Q402 1100 374 1055T341 929Q340 918 340 896H84Q86 1080 187 1189T468 1298Q647 1298 749 1188T852 896V320Q852 120 885 0H630L596 192Q576 152 564 130T527 76T479 26T419 -5T340 -18ZM392 1656L136
+2040H392L520 1656H392Z" />
+<glyph unicode="&#xe1;" horiz-adv-x="955" d="M468 192Q495 192 520 208T559 239T591 279Q594 284 596 286V640Q580 629 543 606T484 569T431 529T383 480T353 422T340 351Q340 192 468 192ZM340 -18Q233 -18 159 74T84 283Q84 376 115 452T182 573T299 667T423
+734T569 793Q587 800 596 804V896Q596 993 569 1046T468 1100Q402 1100 374 1055T341 929Q340 918 340 896H84Q86 1080 187 1189T468 1298Q647 1298 749 1188T852 896V320Q852 120 885 0H630L596 192Q576 152 564 130T527 76T479 26T419 -5T340 -18ZM392 1400L520
+1784H776L520 1400H392Z" />
+<glyph unicode="&#xe2;" horiz-adv-x="955" d="M468 192Q495 192 520 208T559 239T591 279Q594 284 596 286V640Q580 629 543 606T484 569T431 529T383 480T353 422T340 351Q340 192 468 192ZM340 -18Q233 -18 159 74T84 283Q84 376 115 452T182 573T299 667T423
+734T569 793Q587 800 596 804V896Q596 993 569 1046T468 1100Q402 1100 374 1055T341 929Q340 918 340 896H84Q86 1080 187 1189T468 1298Q647 1298 749 1188T852 896V320Q852 120 885 0H630L596 192Q576 152 564 130T527 76T479 26T419 -5T340 -18ZM136 1656L328
+2040H584L776 1656H584L456 1912L328 1656H136Z" />
+<glyph unicode="&#xe3;" horiz-adv-x="955" d="M468 192Q495 192 520 208T559 239T591 279Q594 284 596 286V640Q580 629 543 606T484 569T431 529T383 480T353 422T340 351Q340 192 468 192ZM340 -18Q233 -18 159 74T84 283Q84 376 115 452T182 573T299 667T423
+734T569 793Q587 800 596 804V896Q596 993 569 1046T468 1100Q402 1100 374 1055T341 929Q340 918 340 896H84Q86 1080 187 1189T468 1298Q647 1298 749 1188T852 896V320Q852 120 885 0H630L596 192Q576 152 564 130T527 76T479 26T419 -5T340 -18ZM845 1656Q797
+1656 747 1678T649 1721T561 1743Q513 1743 513 1676H359Q359 1792 416 1870T579 1949Q637 1949 724 1906T860 1863Q911 1863 911 1932H1065Q1065 1815 1008 1736T845 1656Z" />
+<glyph unicode="&#xe4;" horiz-adv-x="955" d="M468 192Q495 192 520 208T559 239T591 279Q594 284 596 286V640Q580 629 543 606T484 569T431 529T383 480T353 422T340 351Q340 192 468 192ZM340 -18Q233 -18 159 74T84 283Q84 376 115 452T182 573T299 667T423
+734T569 793Q587 800 596 804V896Q596 993 569 1046T468 1100Q402 1100 374 1055T341 929Q340 918 340 896H84Q86 1080 187 1189T468 1298Q647 1298 749 1188T852 896V320Q852 120 885 0H630L596 192Q576 152 564 130T527 76T479 26T419 -5T340 -18ZM520 1400V1656H776V1400H520ZM136
+1400V1656H392V1400H136Z" />
+<glyph unicode="&#xe5;" horiz-adv-x="955" d="M468 192Q495 192 520 208T559 239T591 279Q594 284 596 286V640Q580 629 543 606T484 569T431 529T383 480T353 422T340 351Q340 192 468 192ZM340 -18Q233 -18 159 74T84 283Q84 376 115 452T182 573T299 667T423
+734T569 793Q587 800 596 804V896Q596 993 569 1046T468 1100Q402 1100 374 1055T341 929Q340 918 340 896H84Q86 1080 187 1189T468 1298Q647 1298 749 1188T852 896V320Q852 120 885 0H630L596 192Q576 152 564 130T527 76T479 26T419 -5T340 -18ZM573 1400T456
+1400T270 1470T200 1656T269 1842T456 1912T642 1842T712 1656T643 1470ZM396 1528T456 1528T550 1562T584 1656T550 1749T456 1784T362 1750T328 1656T362 1562Z" />
+<glyph unicode="&#xe6;" horiz-adv-x="1465" d="M864 764H981Q1021 770 1043 776T1084 797T1112 837T1120 904Q1120 983 1089 1035T992 1088Q965 1088 945 1077T911 1050T888 1006T874 955T867 894T865 835T864 775Q864 768 864 764ZM481 192Q565 192 652 291Q613
+433 609 580Q553 565 515 551T436 510T374 444T353 351Q353 192 481 192ZM353 -18Q246 -18 172 74T97 283Q97 348 112 403T152 497T217 570T296 625T393 667T497 698T609 725V896Q609 993 582 1046T481 1100Q431 1100 402 1071T363 1000T353 896H97Q99 1080 200
+1189T481 1298Q576 1298 644 1258T737 1146Q775 1213 839 1255T992 1298Q1169 1298 1261 1185T1354 880Q1354 841 1347 809T1327 754T1293 712T1251 681T1199 659T1141 644T1076 635T1008 629T936 625T864 619V576Q864 562 864 533Q862 496 863 456T867 377T878
+304T900 243T936 201T992 185Q1016 185 1035 193T1066 214T1086 248T1099 288T1105 337T1107 387T1108 439Q1108 442 1108 444T1108 448H1363Q1363 220 1276 101T991 -18Q767 -18 684 179Q652 133 625 103T559 42T468 -3T353 -18Z" />
+<glyph unicode="&#xe7;" horiz-adv-x="901" d="M434 -18Q341 -18 273 13T163 94T97 221T63 376T51 557Q48 640 51 724Q53 826 62 904T97 1059T163 1186T272 1267T434 1298Q636 1298 724 1189T818 866V832H562V868Q561 916 556 952T538 1024T499 1079T434 1099T370
+1077T331 1012T311 926T304 823Q300 699 304 449Q306 394 312 353T331 273T371 213T434 192Q468 192 492 205T530 237T550 288T560 347T562 417V448H818V415Q815 314 793 237T727 101T609 13T434 -18ZM349 -513V-385Q364 -385 400 -386T457 -387Q525 -387 565 -374T605
+-321Q605 -307 598 -294T576 -270T547 -249T510 -231T475 -216T440 -203T413 -193V-1H541V-129Q588 -142 622 -155T702 -191T772 -247T797 -321Q797 -359 786 -388T758 -438T712 -472T655 -494T586 -506T513 -512T434 -513H349Z" />
+<glyph unicode="&#xe8;" horiz-adv-x="910" d="M476 -18Q383 -18 315 14T206 97T140 229T106 390T94 578Q91 662 94 746Q97 846 107 923T144 1074T211 1194T320 1269T478 1298Q560 1298 622 1277T726 1212T795 1115T837 987T856 838T862 670V640H350V576Q350 563
+350 535Q348 498 349 459T353 381T364 309T386 248T422 207T478 192Q518 192 544 207T582 254T600 316T606 394V448H860V397Q851 192 759 87T476 -18ZM350 768H604V845Q603 896 598 934T581 1010T542 1068T478 1088Q439 1088 413 1067T374 1007T356 929T350 838V768ZM413
+1656L157 2040H413L541 1656H413Z" />
+<glyph unicode="&#xe9;" horiz-adv-x="910" d="M476 -18Q383 -18 315 14T206 97T140 229T106 390T94 578Q91 662 94 746Q97 846 107 923T144 1074T211 1194T320 1269T478 1298Q560 1298 622 1277T726 1212T795 1115T837 987T856 838T862 670V640H350V576Q350 563
+350 535Q348 498 349 459T353 381T364 309T386 248T422 207T478 192Q518 192 544 207T582 254T600 316T606 394V448H860V397Q851 192 759 87T476 -18ZM350 768H604V845Q603 896 598 934T581 1010T542 1068T478 1088Q439 1088 413 1067T374 1007T356 929T350 838V768ZM413
+1400L541 1784H797L541 1400H413Z" />
+<glyph unicode="&#xea;" horiz-adv-x="910" d="M476 -18Q383 -18 315 14T206 97T140 229T106 390T94 578Q91 662 94 746Q97 846 107 923T144 1074T211 1194T320 1269T478 1298Q560 1298 622 1277T726 1212T795 1115T837 987T856 838T862 670V640H350V576Q350 563
+350 535Q348 498 349 459T353 381T364 309T386 248T422 207T478 192Q518 192 544 207T582 254T600 316T606 394V448H860V397Q851 192 759 87T476 -18ZM350 768H604V845Q603 896 598 934T581 1010T542 1068T478 1088Q439 1088 413 1067T374 1007T356 929T350 838V768ZM157
+1656L349 2040H605L797 1656H605L477 1912L349 1656H157Z" />
+<glyph unicode="&#xeb;" horiz-adv-x="910" d="M476 -18Q383 -18 315 14T206 97T140 229T106 390T94 578Q91 662 94 746Q97 846 107 923T144 1074T211 1194T320 1269T478 1298Q560 1298 622 1277T726 1212T795 1115T837 987T856 838T862 670V640H350V576Q350 563
+350 535Q348 498 349 459T353 381T364 309T386 248T422 207T478 192Q518 192 544 207T582 254T600 316T606 394V448H860V397Q851 192 759 87T476 -18ZM350 768H604V845Q603 896 598 934T581 1010T542 1068T478 1088Q439 1088 413 1067T374 1007T356 929T350 838V768ZM541
+1400V1656H797V1400H541ZM157 1400V1656H413V1400H157Z" />
+<glyph unicode="&#xec;" horiz-adv-x="512" d="M128 0V1280H384V0H128ZM192 1400L-64 1784H192L320 1400H192Z" />
+<glyph unicode="&#xed;" horiz-adv-x="512" d="M128 0V1280H384V0H128ZM192 1656L320 2040H576L320 1656H192Z" />
+<glyph unicode="&#xee;" horiz-adv-x="512" d="M128 0V1280H384V0H128ZM192 1656L384 2040H640L832 1656H640L512 1912L384 1656H192Z" />
+<glyph unicode="&#xef;" horiz-adv-x="512" d="M128 0V1280H384V0H128ZM320 1400V1656H576V1400H320ZM-64 1400V1656H192V1400H-64Z" />
+<glyph unicode="&#xf0;" horiz-adv-x="1152" d="M576 192Q631 192 670 219T729 294T759 395T768 512V978Q693 1088 576 1088Q384 1088 384 704Q384 702 384 698Q384 625 385 585T391 475T408 364T441 279T495 213T576 192ZM576 -18Q470 -18 390 16T261 107T182
+251T141 430T129 640Q129 741 139 830T176 1007T245 1157T355 1259T512 1298Q602 1298 674 1257T768 1152Q768 1345 699 1446L256 1344V1472L576 1546Q504 1578 414 1589T192 1600V1810Q434 1810 599 1766T860 1611L1088 1664V1536L932 1500Q1024 1311 1024 960V576Q1024
+452 998 347T919 159T778 29T576 -18Z" />
+<glyph unicode="&#xf1;" horiz-adv-x="992" d="M117 0V1280H373V1142Q430 1194 466 1221T565 1273T701 1298Q783 1298 834 1238T885 1091V0H629V960Q629 1027 610 1057T533 1088Q500 1088 468 1075T419 1050T373 1013V0H117ZM634 1656Q586 1656 536 1678T438 1721T350
+1743Q302 1743 302 1676H148Q148 1792 205 1870T368 1949Q426 1949 513 1906T649 1863Q700 1863 700 1932H854Q854 1815 797 1736T634 1656Z" />
+<glyph unicode="&#xf2;" horiz-adv-x="954" d="M683 -18T477 -18T182 102T93 448V832Q93 1058 182 1178T477 1298T772 1178T861 832V448Q861 222 772 102ZM450 192T477 192T524 200T558 219T581 253T595 293T602 342T604 392T605 448V832Q605 869 605 887T602
+938T595 987T581 1026T559 1060T525 1080T477 1088T430 1080T396 1061T373 1027T359 987T352 938T350 888T349 832V448Q349 411 349 393T352 342T359 293T373 254T395 220T429 200ZM413 1656L157 2040H413L541 1656H413Z" />
+<glyph unicode="&#xf3;" horiz-adv-x="954" d="M683 -18T477 -18T182 102T93 448V832Q93 1058 182 1178T477 1298T772 1178T861 832V448Q861 222 772 102ZM450 192T477 192T524 200T558 219T581 253T595 293T602 342T604 392T605 448V832Q605 869 605 887T602
+938T595 987T581 1026T559 1060T525 1080T477 1088T430 1080T396 1061T373 1027T359 987T352 938T350 888T349 832V448Q349 411 349 393T352 342T359 293T373 254T395 220T429 200ZM413 1400L541 1784H797L541 1400H413Z" />
+<glyph unicode="&#xf4;" horiz-adv-x="954" d="M683 -18T477 -18T182 102T93 448V832Q93 1058 182 1178T477 1298T772 1178T861 832V448Q861 222 772 102ZM450 192T477 192T524 200T558 219T581 253T595 293T602 342T604 392T605 448V832Q605 869 605 887T602
+938T595 987T581 1026T559 1060T525 1080T477 1088T430 1080T396 1061T373 1027T359 987T352 938T350 888T349 832V448Q349 411 349 393T352 342T359 293T373 254T395 220T429 200ZM157 1656L349 2040H605L797 1656H605L477 1912L349 1656H157Z" />
+<glyph unicode="&#xf5;" horiz-adv-x="954" d="M683 -18T477 -18T182 102T93 448V832Q93 1058 182 1178T477 1298T772 1178T861 832V448Q861 222 772 102ZM450 192T477 192T524 200T558 219T581 253T595 293T602 342T604 392T605 448V832Q605 869 605 887T602
+938T595 987T581 1026T559 1060T525 1080T477 1088T430 1080T396 1061T373 1027T359 987T352 938T350 888T349 832V448Q349 411 349 393T352 342T359 293T373 254T395 220T429 200ZM866 1656Q818 1656 768 1678T670 1721T582 1743Q534 1743 534 1676H380Q380 1792
+437 1870T600 1949Q658 1949 745 1906T881 1863Q932 1863 932 1932H1086Q1086 1815 1029 1736T866 1656Z" />
+<glyph unicode="&#xf6;" horiz-adv-x="954" d="M683 -18T477 -18T182 102T93 448V832Q93 1058 182 1178T477 1298T772 1178T861 832V448Q861 222 772 102ZM450 192T477 192T524 200T558 219T581 253T595 293T602 342T604 392T605 448V832Q605 869 605 887T602
+938T595 987T581 1026T559 1060T525 1080T477 1088T430 1080T396 1061T373 1027T359 987T352 938T350 888T349 832V448Q349 411 349 393T352 342T359 293T373 254T395 220T429 200ZM541 1400V1656H797V1400H541ZM157 1400V1656H413V1400H157Z" />
+<glyph unicode="&#xf7;" horiz-adv-x="640" d="M192 879V1135H448V879H192ZM0 576V768H640V576H0ZM192 233V489H448V233H192Z" />
+<glyph unicode="&#xf8;" horiz-adv-x="1024" d="M384 346L622 1015Q594 1088 512 1088Q485 1088 465 1080T431 1061T408 1027T394 987T387 938T385 888T384 832V346ZM512 192Q539 192 559 200T593 219T616 253T630 293T637 342T639 392T640 448V803L431 220Q464
+192 512 192ZM272 -222L196 -196L280 43Q128 141 128 448V832Q128 942 148 1025T212 1170T331 1265T512 1298Q619 1298 707 1258L789 1491L876 1462L784 1205Q896 1093 896 832V448Q896 222 807 102T512 -18Q418 -18 354 6L272 -222Z" />
+<glyph unicode="&#xf9;" horiz-adv-x="987" d="M300 -18Q216 -18 165 41T114 189V1280H370V267Q370 227 394 202T458 177Q479 177 499 182T538 199T569 219T600 245T626 267V1280H882V0H626V138Q588 105 571 90T517 50T454 13T385 -8T300 -18ZM434 1656L178 2040H434L562
+1656H434Z" />
+<glyph unicode="&#xfa;" horiz-adv-x="987" d="M300 -18Q216 -18 165 41T114 189V1280H370V267Q370 227 394 202T458 177Q479 177 499 182T538 199T569 219T600 245T626 267V1280H882V0H626V138Q588 105 571 90T517 50T454 13T385 -8T300 -18ZM434 1400L562 1784H818L562
+1400H434Z" />
+<glyph unicode="&#xfb;" horiz-adv-x="987" d="M300 -18Q216 -18 165 41T114 189V1280H370V267Q370 227 394 202T458 177Q479 177 499 182T538 199T569 219T600 245T626 267V1280H882V0H626V138Q588 105 571 90T517 50T454 13T385 -8T300 -18ZM178 1656L370 2040H626L818
+1656H626L498 1912L370 1656H178Z" />
+<glyph unicode="&#xfc;" horiz-adv-x="987" d="M300 -18Q216 -18 165 41T114 189V1280H370V267Q370 227 394 202T458 177Q479 177 499 182T538 199T569 219T600 245T626 267V1280H882V0H626V138Q588 105 571 90T517 50T454 13T385 -8T300 -18ZM562 1400V1656H818V1400H562ZM178
+1400V1656H434V1400H178Z" />
+<glyph unicode="&#xfd;" horiz-adv-x="842" d="M84 -320V-128Q160 -128 205 -118T274 -83T303 -27T310 58L20 1280H276Q425 457 437 384Q458 519 484 668T544 998T596 1280H852L532 -64Q500 -203 397 -261T110 -320H84ZM362 1400L490 1784H746L490 1400H362Z" />
+<glyph unicode="&#xfe;" horiz-adv-x="1056" d="M576 192Q617 192 644 222T684 307T701 418T706 546V823Q706 868 704 901T694 972T672 1033T634 1072T576 1088Q470 1088 384 1037V232Q483 192 576 192ZM128 -410V1791H384V1153Q420 1191 438 1208T490 1251T562
+1287T644 1298Q709 1298 760 1275T844 1218T900 1124T934 1012T952 877T959 740T960 594Q960 507 952 428T923 264T867 120T774 21T640 -18Q562 -18 502 19T384 116V-410H128Z" />
+<glyph unicode="&#xff;" horiz-adv-x="842" d="M84 -320V-128Q160 -128 205 -118T274 -83T303 -27T310 58L20 1280H276Q425 457 437 384Q458 519 484 668T544 998T596 1280H852L532 -64Q500 -203 397 -261T110 -320H84ZM490 1400V1656H746V1400H490ZM106 1400V1656H362V1400H106Z"
+/>
+<glyph unicode="&#x2013;" horiz-adv-x="384" d="M0 448V640H384V448H0Z" />
+<glyph unicode="&#x2014;" horiz-adv-x="384" d="M0 448V640H384V448H0Z" />
+<glyph unicode="&#x2018;" horiz-adv-x="512" d="M128 1280Q128 1312 127 1375T125 1469Q125 1528 128 1570T144 1657T177 1729T234 1774T320 1792L384 1664Q315 1664 286 1634T256 1536H384V1280H128Z" />
+<glyph unicode="&#x2019;" horiz-adv-x="512" d="M192 1280L128 1408Q197 1408 226 1438T256 1536H128V1792H384Q384 1648 381 1550Q379 1496 375 1459T359 1386T327 1328T274 1293T192 1280Z" />
+<glyph unicode="&#x201a;" horiz-adv-x="384" d="M126 -321L62 63H318L254 -321H126Z" />
+<glyph unicode="&#x201c;" horiz-adv-x="896" d="M512 1280Q512 1312 511 1375T509 1469Q509 1528 512 1570T528 1657T561 1729T618 1774T704 1792L768 1664Q699 1664 670 1634T640 1536H768V1280H512ZM128 1280Q128 1312 127 1375T125 1469Q125 1528 128 1570T144
+1657T177 1729T234 1774T320 1792L384 1664Q315 1664 286 1634T256 1536H384V1280H128Z" />
+<glyph unicode="&#x201d;" horiz-adv-x="896" d="M576 1280L512 1408Q581 1408 610 1438T640 1536H512V1792H768Q768 1648 765 1550Q763 1496 759 1459T743 1386T711 1328T658 1293T576 1280ZM192 1280L128 1408Q197 1408 226 1438T256 1536H128V1792H384Q384
+1648 381 1550Q379 1496 375 1459T359 1386T327 1328T274 1293T192 1280Z" />
+<glyph unicode="&#x201e;" horiz-adv-x="704" d="M449 -320L385 64H641L577 -320H449ZM126 -320L62 64H318L254 -320H126Z" />
+<glyph unicode="&#x2022;" horiz-adv-x="960" d="M486 595Q363 595 292 678T221 891Q221 1021 291 1104T486 1187Q609 1187 680 1104T751 891Q751 761 681 678T486 595Z" />
+<glyph unicode="&#x2039;" horiz-adv-x="582" d="M512 64L64 576V704L512 1216V896L256 641L512 384V64Z" />
+<glyph unicode="&#x203a;" horiz-adv-x="577" d="M64 64V384L320 641L64 896V1216L512 704V576L64 64Z" />
+</font>
+</defs>
+</svg>
Binary files /dev/null and b/src/fonts/Oswald-regular/Oswald-regular.ttf differ
Binary files /dev/null and b/src/fonts/Oswald-regular/Oswald-regular.woff differ
Binary files /dev/null and b/src/fonts/Oswald-regular/Oswald-regular.woff2 differ
A src/index.css
+5 −0
--- /dev/null
+++ b/src/index.css
@@ -0,0 +1,5 @@
+body {
+ margin: 0;
+ padding: 0;
+ font-family: sans-serif;
+}
A src/index.js
+12 −0
--- /dev/null
+++ b/src/index.js
@@ -0,0 +1,12 @@
+import React from 'react'
+import ReactDOM from 'react-dom'
+
+import 'bootstrap/dist/css/bootstrap.css'
+import 'bootstrap/dist/js/bootstrap.js'
+
+import App from './App'
+
+ReactDOM.render(
+ <App />,
+ document.getElementById('root')
+);
A src/services/Base.js
+135 −0
--- /dev/null
+++ b/src/services/Base.js
@@ -0,0 +1,135 @@
+import getWeb3 from '../utils/getWeb3'
+
+export default class Base {
+
+ constructor() {
+ this.ACCOUNT_START = 0;
+ this.LOCATION_PRECISION = 1000000;
+ this.DISTANCE = 4000; // distance in m
+ }
+
+ async initBase(ContractJson, acc_idx) {
+ // wait for web3 to load
+ this.web3 = (await getWeb3).web3;
+
+ // Get your account address
+ this.accountAddress = ( await this.web3.eth.getAccounts() );
+
+ console.log(this.accountAddress.length)
+
+ if(this.accountAddress.length == 0) {
+ this.accountAddress = 'No account found'
+ return
+ } else {
+ this.accountAddress = this.accountAddress[acc_idx]
+ }
+
+ // Create a new issuer contract instance
+ let contract = new this.web3.eth.Contract(
+ ContractJson.abi,
+ ContractJson.networks['5777'].address,
+ {
+ gasPrice: '20000000000',
+ gas: '645554',
+ from: this.accountAddress
+ }
+ );
+
+ return contract;
+ }
+
+ addEventListener(contract, event, filters, eventCallback) {
+ contract.events[event]({
+ filters,
+ fromBlock: 0,
+ to:'latest'
+ }, (err, event) => {
+ if(eventCallback !== undefined) {
+ eventCallback(err, event)
+ }
+ })
+ }
+
+ getLocation() {
+ let locationPromise = new Promise((resolve, reject) => {
+ if (navigator.geolocation) {
+ navigator.geolocation.getCurrentPosition(pos => {
+ resolve({
+ latitude: pos.coords.latitude,
+ longitude: pos.coords.longitude
+ })
+ });
+ } else {
+ console.log("Geolocation is not supported by this browser.");
+ }
+ })
+
+ return locationPromise
+
+ }
+
+ compareLocation(remoteLocation, myLocation) {
+ console.log(myLocation)
+ console.log(remoteLocation)
+
+ remoteLocation = {
+ latitude: remoteLocation.latitude / this.LOCATION_PRECISION,
+ longitude: remoteLocation.longitude / this.LOCATION_PRECISION
+ }
+
+ console.log(myLocation)
+ console.log(remoteLocation)
+
+ var R = 6371e3; // metres
+ var aa = this.toRadians(remoteLocation.latitude);
+ var bb = this.toRadians(myLocation.latitude);
+ var cc = this.toRadians(myLocation.latitude-remoteLocation.latitude);
+ var dd = this.toRadians(myLocation.longitude-remoteLocation.longitude);
+
+ var a = Math.sin(cc/2) * Math.sin(cc/2) +
+ Math.cos(aa) * Math.cos(bb) *
+ Math.sin(dd/2) * Math.sin(dd/2);
+ var c = 2 * Math.atan2(Math.sqrt(a), Math.sqrt(1-a));
+
+ var d = R * c;
+
+ console.log(d)
+
+ return d <= this.DISTANCE;
+ }
+
+ toRadians(val) {
+ return val * Math.PI / 180;
+ }
+
+ statusResolve(statusCode) {
+ statusCode = Number(statusCode)
+ switch(statusCode) {
+ case 0:
+ return {
+ msg: 'Open',
+ theme: 'primary'
+ }
+ case 1:
+ return {
+ msg: 'Viewed',
+ theme: 'info'
+ }
+ case 2:
+ return {
+ msg: 'Ongoing',
+ theme: 'success'
+ }
+ case 3:
+ return {
+ msg: 'UnderReview',
+ theme: 'warning'
+ }
+ case 4:
+ return {
+ msg: 'Closed',
+ theme: 'danger'
+ }
+ }
+ }
+}
--- /dev/null
+++ b/src/services/CitizenService.js
@@ -0,0 +1,144 @@
+import Base from './Base'
+
+import EkatraContract from '../../build/contracts/Ekatra.json'
+import GovtEntityContract from '../../build/contracts/GovtEntity.json'
+
+export default class Citizen extends Base {
+
+ init = async (accIdx) => {
+ this.ACCOUNT_START = Number(0);
+
+ this.ekatraContract = await this.initBase(EkatraContract, Number(this.ACCOUNT_START) + Number(accIdx));
+
+ this.ekatraContract.methods.initGovtEntity(GovtEntityContract.networks['5777'].address).send().then(console.log)
+
+ console.log(Number(this.ACCOUNT_START) + Number(accIdx));
+ console.log(this.accountAddress)
+ }
+
+ complaintHashEvent = async (callback) => {
+ let self = this
+ this.addEventListener(
+ self.ekatraContract,
+ 'ComplaintHash',
+ {
+ complainant: self.accountAddress
+ },
+ callback
+ )
+ }
+
+ newComplaintEvent = async (callback) => {
+ let self = this
+ this.addEventListener(
+ self.ekatraContract,
+ 'NewComplaintEvent',
+ undefined,
+ callback
+ )
+ }
+
+ newTaskEvent = async (callback) => {
+ let self = this
+ this.addEventListener(
+ self.ekatraContract,
+ 'NewTaskEvent',
+ {
+ govtEntityAddress: self.accountAddress
+ },
+ callback
+ )
+ }
+
+ registerComplaint(registrationDetails) {
+ console.log('resgistering...')
+ console.log(registrationDetails)
+ this.ekatraContract.methods.registerComplaint(
+ registrationDetails.title,
+ registrationDetails.description,
+ registrationDetails.lat,
+ registrationDetails.long,
+ registrationDetails.deptAddress
+ ).send().then((trans) => {
+ console.log(trans)
+ })
+ }
+
+ // START: Task related functions
+ addTask(taskDetails) {
+ this.ekatraContract.methods.addTask(
+ taskDetails.complaintHash,
+ taskDetails.title,
+ taskDetails.description,
+ taskDetails.govtEntityAddress
+ ).send().then((trans) => {
+ console.log(trans)
+ })
+ }
+
+ getTask(complaintHash, taskId) {
+ return this.ekatraContract.methods.getTask(
+ complaintHash,
+ taskId
+ ).call()
+ }
+
+ startTask(complaintHash, taskId) {
+ this.ekatraContract.methods.startTask(
+ complaintHash,
+ taskId
+ ).send().then(console.log)
+ }
+
+ endTask(complaintHash, taskId) {
+ this.ekatraContract.methods.endTask(
+ complaintHash,
+ taskId
+ ).send().then(console.log)
+ }
+
+ updateTaskDetails(complaintHash, taskId, details) {
+ this.ekatraContract.methods.updateTaskDetails(
+ complaintHash,
+ taskId,
+ details.expectedStartTimestamp,
+ details.expectedDurationTimestamp
+ ).send().then(console.log)
+ }
+
+ lastTask(complaintHash, taskId) {
+ this.ekatraContract.methods.lastTask(
+ complaintHash,
+ taskId
+ ).send().then(console.log)
+ }
+ // END: Task related functions
+
+
+ getComplaint = (complaintHash) => {
+ return this.ekatraContract.methods.getComplaint(complaintHash).call()
+ }
+
+
+ reviewTask = (complaintHash, taskId, reward) => {
+ console.log(this.ekatraContract)
+ this.ekatraContract.methods.reviewTask(
+ complaintHash,
+ taskId,
+ reward
+ ).send().then(console.log)
+ }
+
+ getReview = (complaintHash, taskId) => {
+ return this.ekatraContract.methods.getReview(
+ complaintHash,
+ taskId
+ ).call()
+ }
+
+ addSigner = (complaintHash) => {
+ this.ekatraContract.methods.addSigner(complaintHash).send().then(console.log)
+ }
+ // get a complaint
+ // get all tasks associated with a complaint
+}
--- /dev/null
+++ b/src/services/GovtService.js
@@ -0,0 +1,30 @@
+import Base from './Base'
+
+/*import EkatraContract from '../../build/contracts/Ekatra.json'*/
+import GovtEntityContract from '../../build/contracts/GovtEntity.json'
+
+export default class GovtService extends Base {
+
+ init = async (accIdx) => {
+ this.ACCOUNT_START = Number(0);
+
+ this.govtContract = await this.initBase(GovtEntityContract, Number(this.ACCOUNT_START) + Number(accIdx));
+
+ console.log(this.govtContract)
+ console.log(Number(this.ACCOUNT_START) + Number(accIdx));
+ console.log(this.accountAddress)
+ }
+
+ registerName = async (name) => {
+ this.govtContract.methods.registerName(name).send().then(console.log)
+ }
+
+ getReward = async () => {
+ return this.govtContract.methods.getReward().call()
+ }
+
+ getDetails = async () => {
+ return this.govtContract.methods.getDetails().call()
+ }
+
+}
--- /dev/null
+++ b/src/utils/getWeb3.js
@@ -0,0 +1,39 @@
+import Web3 from 'web3'
+
+let getWeb3 = new Promise(function(resolve, reject) {
+ // Wait for loading completion to avoid race conditions with web3 injection timing.
+ window.addEventListener('load', function() {
+ var results
+ var web3 = window.web3
+
+ // Checking if Web3 has been injected by the browser (Mist/MetaMask)
+ if (typeof web3 !== 'undefined') {
+ // Use Mist/MetaMask's provider.
+ web3 = new Web3(web3.currentProvider)
+
+ results = {
+ web3: web3
+ }
+
+ console.log('Injected web3 detected.');
+
+ resolve(results)
+ } else {
+ // Fallback to localhost if no web3 injection. We've configured this to
+ // use the development console's port by default.
+ var provider = new Web3.providers.WebsocketProvider('ws://127.0.0.1:7545')
+
+ web3 = new Web3(provider)
+
+ results = {
+ web3: web3
+ }
+
+ console.log('No web3 instance injected, using Local web3.');
+
+ resolve(results)
+ }
+ })
+})
+
+export default getWeb3
--- /dev/null
+++ b/test/TestSimpleStorage.sol
@@ -0,0 +1,19 @@
+pragma solidity ^0.4.2;
+
+import "truffle/Assert.sol";
+import "truffle/DeployedAddresses.sol";
+import "../contracts/SimpleStorage.sol";
+
+contract TestSimpleStorage {
+
+ function testItStoresAValue() public {
+ SimpleStorage simpleStorage = SimpleStorage(DeployedAddresses.SimpleStorage());
+
+ simpleStorage.set(89);
+
+ uint expected = 89;
+
+ Assert.equal(simpleStorage.get(), expected, "It should store the value 89.");
+ }
+
+}
--- /dev/null
+++ b/test/simplestorage.js
@@ -0,0 +1,17 @@
+var SimpleStorage = artifacts.require("./SimpleStorage.sol");
+
+contract('SimpleStorage', function(accounts) {
+
+ it("...should store the value 89.", function() {
+ return SimpleStorage.deployed().then(function(instance) {
+ simpleStorageInstance = instance;
+
+ return simpleStorageInstance.set(89, {from: accounts[0]});
+ }).then(function() {
+ return simpleStorageInstance.get.call();
+ }).then(function(storedData) {
+ assert.equal(storedData, 89, "The value 89 was not stored.");
+ });
+ });
+
+});
A truffle-config.js
+4 −0
--- /dev/null
+++ b/truffle-config.js
@@ -0,0 +1,4 @@
+module.exports = {
+ // See <http://truffleframework.com/docs/advanced/configuration>
+ // to customize your Truffle configuration!
+};
A truffle.js
+10 −0
--- /dev/null
+++ b/truffle.js
@@ -0,0 +1,10 @@
+module.exports = {
+ // See <http://truffleframework.com/docs/advanced/configuration>
+ networks: {
+ development: {
+ host: "localhost",
+ port: 7545,
+ network_id: "5777" // Match any network id
+ }
+ }
+};