@griddo/cx 1.64.3 → 1.64.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/gatsby-node.js +1 -0
- package/package.json +3 -3
- package/src/services/distributors.js +12 -1
- package/src/utils/folders.js +20 -0
- package/src/utils/sites.js +8 -4
- package/static/logo.svg +0 -40
package/gatsby-node.js
CHANGED
|
@@ -66,6 +66,7 @@ exports.onCreateWebpackConfig = ({ actions, plugins, loaders, getConfig }) => {
|
|
|
66
66
|
// onPreInit (hook)
|
|
67
67
|
// -----------------------------------------------------------------------------
|
|
68
68
|
exports.onPreInit = async () => {
|
|
69
|
+
await folders.prepareStaticFolder();
|
|
69
70
|
await SettingsService.getAll();
|
|
70
71
|
updatedSites = await sites.checkSites();
|
|
71
72
|
helpers.log('info', 'RENDERING SITES ===>', updatedSites);
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@griddo/cx",
|
|
3
3
|
"description": "Griddo SSG based on Gatsby",
|
|
4
|
-
"version": "1.64.
|
|
4
|
+
"version": "1.64.6",
|
|
5
5
|
"authors": [
|
|
6
6
|
"Álvaro Sánchez' <alvaro.sanches@secuoyas.com>",
|
|
7
7
|
"Carlos Torres <carlos.torres@secuoyas.com>",
|
|
@@ -64,7 +64,7 @@
|
|
|
64
64
|
"react-helmet": "^6.0.0"
|
|
65
65
|
},
|
|
66
66
|
"devDependencies": {
|
|
67
|
-
"@griddo/eslint-config-back": "^1.64.
|
|
67
|
+
"@griddo/eslint-config-back": "^1.64.6",
|
|
68
68
|
"eslint": "^7.5.0",
|
|
69
69
|
"eslint-plugin-node": "^11.1.0",
|
|
70
70
|
"eslint-plugin-react": "7.14.3",
|
|
@@ -96,5 +96,5 @@
|
|
|
96
96
|
"publishConfig": {
|
|
97
97
|
"access": "public"
|
|
98
98
|
},
|
|
99
|
-
"gitHead": "
|
|
99
|
+
"gitHead": "6e6a7945bb41cab79796c90786ba62069f09a977"
|
|
100
100
|
}
|
|
@@ -3,7 +3,16 @@ const SitesService = require('./sites').default;
|
|
|
3
3
|
|
|
4
4
|
class DistributorService {
|
|
5
5
|
static getBody(data) {
|
|
6
|
-
const {
|
|
6
|
+
const {
|
|
7
|
+
order,
|
|
8
|
+
source,
|
|
9
|
+
quantity,
|
|
10
|
+
mode,
|
|
11
|
+
fixed,
|
|
12
|
+
filter,
|
|
13
|
+
fullRelations = false
|
|
14
|
+
} = data;
|
|
15
|
+
|
|
7
16
|
return mode === 'auto'
|
|
8
17
|
? {
|
|
9
18
|
mode,
|
|
@@ -11,10 +20,12 @@ class DistributorService {
|
|
|
11
20
|
source,
|
|
12
21
|
quantity,
|
|
13
22
|
filter,
|
|
23
|
+
fullRelations,
|
|
14
24
|
}
|
|
15
25
|
: {
|
|
16
26
|
mode,
|
|
17
27
|
fixed,
|
|
28
|
+
fullRelations,
|
|
18
29
|
};
|
|
19
30
|
}
|
|
20
31
|
|
package/src/utils/folders.js
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
const path = require('path');
|
|
2
2
|
const fs = require('fs-extra');
|
|
3
3
|
const helpers = require('./helpers');
|
|
4
|
+
const { resolveComponentsPath } = require('./component-lib-helpers');
|
|
4
5
|
|
|
5
6
|
const deleteSites = async updatedSites => {
|
|
6
7
|
for await (const site of updatedSites) {
|
|
@@ -78,6 +79,25 @@ const prepareServe = async () => {
|
|
|
78
79
|
}
|
|
79
80
|
};
|
|
80
81
|
|
|
82
|
+
const prepareStaticFolder = async () => {
|
|
83
|
+
const src = resolveComponentsPath('static');
|
|
84
|
+
const dest = './static';
|
|
85
|
+
|
|
86
|
+
const files = fs.readdirSync(src);
|
|
87
|
+
|
|
88
|
+
try {
|
|
89
|
+
files.map(async file => {
|
|
90
|
+
const fileSrc = `${src}/${file}`;
|
|
91
|
+
const fileDest = `${dest}/${file}`;
|
|
92
|
+
fs.copySync(fileSrc, fileDest);
|
|
93
|
+
});
|
|
94
|
+
helpers.log('success', 'Components static files copied!');
|
|
95
|
+
} catch (err) {
|
|
96
|
+
console.error(err);
|
|
97
|
+
}
|
|
98
|
+
};
|
|
99
|
+
|
|
81
100
|
exports.deleteSites = deleteSites;
|
|
82
101
|
exports.updateDist = updateDist;
|
|
83
102
|
exports.prepareServe = prepareServe;
|
|
103
|
+
exports.prepareStaticFolder = prepareStaticFolder;
|
package/src/utils/sites.js
CHANGED
|
@@ -10,6 +10,7 @@ const folders = require('./folders');
|
|
|
10
10
|
const baseUrl = process.env.API_URL;
|
|
11
11
|
const testSite = process.env.testSite && parseInt(process.env.testSite);
|
|
12
12
|
const BYPASSRENDER = JSON.parse(process.env.BYPASSRENDER);
|
|
13
|
+
const updateAllSitesAlways = process.env.updateAllSites === 'on';
|
|
13
14
|
|
|
14
15
|
const checkSites = async () => {
|
|
15
16
|
await AuthService.login();
|
|
@@ -18,10 +19,13 @@ const checkSites = async () => {
|
|
|
18
19
|
|
|
19
20
|
const sites = await SitesService.getAll();
|
|
20
21
|
|
|
21
|
-
const updatedSites =
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
22
|
+
const updatedSites = updateAllSitesAlways
|
|
23
|
+
?
|
|
24
|
+
sites.filter(site => !testSite || site.id === testSite)
|
|
25
|
+
:
|
|
26
|
+
sites.filter(site => testSite ? site.id === testSite : !!site.shouldBeUpdated);
|
|
27
|
+
|
|
28
|
+
if (updatedSites.length) {
|
|
25
29
|
for (const updatedSite of updatedSites) {
|
|
26
30
|
const langResponse = await SitesService.getLanguages(updatedSite.id);
|
|
27
31
|
const domains = langResponse.items.map(item => {
|
package/static/logo.svg
DELETED
|
@@ -1,40 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
-
<svg width="956px" height="347px" viewBox="0 0 956 347" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
3
|
-
<!-- Generator: Sketch 40.3 (33839) - http://www.bohemiancoding.com/sketch -->
|
|
4
|
-
<title>Page 1</title>
|
|
5
|
-
<desc>Created with Sketch.</desc>
|
|
6
|
-
<defs></defs>
|
|
7
|
-
<g id="Symbols" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
|
8
|
-
<g id="Page-1">
|
|
9
|
-
<path d="M379.977,236.533 C384.935,236.533 388.025,233.587 388.025,228.485 C388.025,223.599 385.941,220.582 378.684,220.582 L371.642,220.582 L371.642,236.533 L379.977,236.533 Z M362.373,212.606 L378.828,212.606 C384.36,212.606 386.875,213.037 389.102,214.043 C394.204,216.342 397.437,221.228 397.437,227.982 C397.437,234.09 394.204,239.766 388.815,241.922 L388.815,242.066 C388.815,242.066 389.534,242.784 390.54,244.581 L401.03,263.6224 L390.683,263.6224 L380.552,244.581 L371.642,244.581 L371.642,263.6224 L362.373,263.6224 L362.373,212.606 Z" id="Fill-1" fill="#000000"></path>
|
|
10
|
-
<path d="M431.997,240.773 C431.854,235.815 428.764,233.157 424.74,233.157 C420.069,233.157 416.836,236.031 415.974,240.773 L431.997,240.773 Z M424.955,226.115 C435.518,226.115 441.194,233.803 441.194,243.503 C441.194,244.582 440.979,247.0236 440.979,247.0236 L415.687,247.0236 C416.261,253.4186 421.219,256.7236 426.68,256.7236 C432.572,256.7236 437.242,252.7006 437.242,252.7006 L440.764,259.2396 C440.764,259.2396 435.158,264.4846 426.033,264.4846 C413.89,264.4846 406.346,255.7176 406.346,245.3 C406.346,234.019 414.034,226.115 424.955,226.115 L424.955,226.115 Z" id="Fill-2" fill="#000000"></path>
|
|
11
|
-
<path d="M449.813,226.977 L458.939,226.977 L458.939,263.622 L449.813,263.622 L449.813,226.977 Z M449.813,212.607 L458.867,212.607 L458.867,220.726 L449.813,220.726 L449.813,212.607 Z" id="Fill-3" fill="#000000"></path>
|
|
12
|
-
<path d="M470.074,226.977 L478.841,226.977 L478.841,231.216 C478.841,232.581 478.697,233.732 478.697,233.732 L478.841,233.732 C480.422,230.642 484.446,226.115 491.847,226.115 C499.966,226.115 504.565,230.354 504.565,240.054 L504.565,263.6217 L495.511,263.6217 L495.511,241.922 C495.511,237.468 494.362,234.45 489.691,234.45 C484.805,234.45 481.212,237.54 479.846,241.922 C479.344,243.432 479.2,245.084 479.2,246.8087 L479.2,263.6217 L470.074,263.6217 L470.074,226.977 Z" id="Fill-4" fill="#000000"></path>
|
|
13
|
-
<path d="M510.167,226.977 L519.795,226.977 L527.412,249.6827 C528.131,251.8377 528.634,255.2147 528.705,255.2147 L528.849,255.2147 C528.921,255.2147 529.424,251.8377 530.143,249.6827 L537.759,226.977 L547.387,226.977 L534.238,263.6217 L523.46,263.6217 L510.167,226.977 Z" id="Fill-5" fill="#000000"></path>
|
|
14
|
-
<path d="M576.63,240.773 C576.486,235.815 573.397,233.157 569.373,233.157 C564.702,233.157 561.469,236.031 560.606,240.773 L576.63,240.773 Z M569.587,226.115 C580.15,226.115 585.827,233.803 585.827,243.503 C585.827,244.582 585.611,247.0236 585.611,247.0236 L560.319,247.0236 C560.894,253.4186 565.851,256.7236 571.313,256.7236 C577.205,256.7236 581.875,252.7006 581.875,252.7006 L585.397,259.2396 C585.397,259.2396 579.79,264.4846 570.665,264.4846 C558.523,264.4846 550.979,255.7176 550.979,245.3 C550.979,234.019 558.667,226.115 569.587,226.115 L569.587,226.115 Z" id="Fill-6" fill="#000000"></path>
|
|
15
|
-
<path d="M594.446,226.977 L603.213,226.977 L603.213,231.216 C603.213,232.581 603.069,233.732 603.069,233.732 L603.213,233.732 C604.794,230.642 608.817,226.115 616.218,226.115 C624.338,226.115 628.936,230.354 628.936,240.054 L628.936,263.6217 L619.882,263.6217 L619.882,241.922 C619.882,237.468 618.733,234.45 614.062,234.45 C609.176,234.45 605.584,237.54 604.218,241.922 C603.715,243.432 603.572,245.084 603.572,246.8087 L603.572,263.6217 L594.446,263.6217 L594.446,226.977 Z" id="Fill-7" fill="#000000"></path>
|
|
16
|
-
<path d="M641.148,234.809 L636.406,234.809 L636.406,227.552 L641.364,227.552 L641.364,216.99 L650.274,216.99 L650.274,227.552 L658.609,227.552 L658.609,234.809 L650.274,234.809 L650.274,249.0367 C650.274,255.0717 655.016,255.9337 657.531,255.9337 C658.537,255.9337 659.183,255.7907 659.183,255.7907 L659.183,263.7657 C659.183,263.7657 658.106,263.9817 656.381,263.9817 C651.28,263.9817 641.148,262.4727 641.148,250.1857 L641.148,234.809 Z" id="Fill-8" fill="#000000"></path>
|
|
17
|
-
<path d="M667.732,226.977 L676.858,226.977 L676.858,263.622 L667.732,263.622 L667.732,226.977 Z M667.732,212.607 L676.786,212.607 L676.786,220.726 L667.732,220.726 L667.732,212.607 Z" id="Fill-9" fill="#000000"></path>
|
|
18
|
-
<path d="M687.994,226.977 L696.761,226.977 L696.761,231.216 C696.761,232.581 696.617,233.732 696.617,233.732 L696.761,233.732 C698.342,230.642 702.365,226.115 709.766,226.115 C717.886,226.115 722.484,230.354 722.484,240.054 L722.484,263.6217 L713.43,263.6217 L713.43,241.922 C713.43,237.468 712.281,234.45 707.61,234.45 C702.724,234.45 699.132,237.54 697.766,241.922 C697.263,243.432 697.12,245.084 697.12,246.8087 L697.12,263.6217 L687.994,263.6217 L687.994,226.977 Z" id="Fill-10" fill="#000000"></path>
|
|
19
|
-
<path d="M757.546,244.438 C757.546,236.103 753.45,233.875 748.492,233.875 C742.96,233.875 739.87,237.899 739.87,244.079 C739.87,250.4726 743.175,255.2146 749.067,255.2146 C753.45,255.2146 757.546,252.7006 757.546,244.438 M746.984,270.9516 C752.588,270.9516 757.33,268.5806 757.33,262.0416 L757.33,259.8856 C757.33,259.0236 757.474,257.9456 757.474,257.9456 L757.33,257.9456 C755.175,261.1786 752.014,262.9036 747.127,262.9036 C736.637,262.9036 730.673,254.4246 730.673,244.366 C730.673,234.306 736.349,226.115 746.911,226.115 C754.888,226.115 757.762,230.786 757.762,230.786 L757.978,230.786 C757.978,230.786 757.905,230.354 757.905,229.78 L757.905,226.977 L766.456,226.977 L766.456,261.3946 C766.456,273.9686 756.684,278.7106 747.127,278.7106 C742.528,278.7106 737.643,277.4176 734.122,275.5496 L736.853,268.5806 C736.853,268.5806 741.451,270.9516 746.984,270.9516" id="Fill-11" fill="#000000"></path>
|
|
20
|
-
<polygon id="Fill-12" fill="#000000" points="362.373 280.632 371.642 280.632 371.642 302.26 394.995 302.26 394.995 280.632 404.264 280.632 404.264 331.648 394.995 331.648 394.995 310.235 371.642 310.235 371.642 331.648 362.373 331.648"></polygon>
|
|
21
|
-
<path d="M416.834,295.002 L425.96,295.002 L425.96,331.648 L416.834,331.648 L416.834,295.002 Z M416.834,280.632 L425.888,280.632 L425.888,288.751 L416.834,288.751 L416.834,280.632 Z" id="Fill-13" fill="#000000"></path>
|
|
22
|
-
<path d="M461.527,312.463 C461.527,304.128 457.431,301.9 452.473,301.9 C446.941,301.9 443.851,305.924 443.851,312.104 C443.851,318.498 447.156,323.24 453.049,323.24 C457.431,323.24 461.527,320.726 461.527,312.463 M450.964,338.977 C456.569,338.977 461.311,336.606 461.311,330.067 L461.311,327.911 C461.311,327.049 461.455,325.971 461.455,325.971 L461.311,325.971 C459.156,329.204 455.995,330.929 451.108,330.929 C440.618,330.929 434.654,322.45 434.654,312.391 C434.654,302.331 440.33,294.14 450.892,294.14 C458.869,294.14 461.743,298.811 461.743,298.811 L461.958,298.811 C461.958,298.811 461.886,298.379 461.886,297.805 L461.886,295.002 L470.437,295.002 L470.437,329.42 C470.437,341.994 460.665,346.736 451.108,346.736 C446.509,346.736 441.624,345.443 438.103,343.575 L440.834,336.606 C440.834,336.606 445.432,338.977 450.964,338.977" id="Fill-14" fill="#000000"></path>
|
|
23
|
-
<path d="M481.57,280.632 L490.696,280.632 L490.696,298.308 C490.696,300.104 490.552,301.398 490.552,301.398 L490.696,301.398 C492.492,297.876 496.947,294.14 503.342,294.14 C511.462,294.14 516.06,298.379 516.06,308.079 L516.06,331.648 L507.007,331.648 L507.007,309.947 C507.007,305.493 505.857,302.475 501.186,302.475 C496.373,302.475 492.635,305.637 491.271,310.092 C490.84,311.528 490.696,313.109 490.696,314.834 L490.696,331.648 L481.57,331.648 L481.57,280.632 Z" id="Fill-15" fill="#000000"></path>
|
|
24
|
-
<path d="M549.757,308.798 C549.613,303.84 546.524,301.182 542.5,301.182 C537.829,301.182 534.596,304.056 533.734,308.798 L549.757,308.798 Z M542.715,294.14 C553.278,294.14 558.954,301.828 558.954,311.528 C558.954,312.607 558.738,315.049 558.738,315.049 L533.447,315.049 C534.021,321.445 538.979,324.749 544.44,324.749 C550.332,324.749 555.002,320.726 555.002,320.726 L558.524,327.265 C558.524,327.265 552.918,332.51 543.793,332.51 C531.65,332.51 524.106,323.743 524.106,313.325 C524.106,302.044 531.794,294.14 542.715,294.14 L542.715,294.14 Z" id="Fill-16" fill="#000000"></path>
|
|
25
|
-
<path d="M567.573,295.0021 L576.34,295.0021 L576.34,301.3251 C576.34,302.6911 576.196,303.9121 576.196,303.9121 L576.34,303.9121 C577.992,298.6671 582.376,294.4991 587.98,294.4991 C588.842,294.4991 589.633,294.6431 589.633,294.6431 L589.633,303.6251 C589.633,303.6251 588.698,303.4811 587.477,303.4811 C583.596,303.4811 579.214,305.7081 577.489,311.1691 C576.915,312.9661 576.699,314.9781 576.699,317.1331 L576.699,331.6481 L567.573,331.6481 L567.573,295.0021 Z" id="Fill-17" fill="#000000"></path>
|
|
26
|
-
<polygon id="Fill-18" fill="#000000" points="616.862 280.632 647.4 280.632 647.4 288.608 626.132 288.608 626.132 301.972 643.304 301.972 643.304 309.947 626.132 309.947 626.132 323.672 648.549 323.672 648.549 331.648 616.862 331.648"></polygon>
|
|
27
|
-
<path d="M673.624,324.8214 C678.366,324.8214 682.821,321.3724 682.821,313.2534 C682.821,307.5764 679.803,301.9714 673.695,301.9714 C668.666,301.9714 664.498,306.0674 664.498,313.3254 C664.498,320.2954 668.234,324.8214 673.624,324.8214 M671.899,294.1394 C679.947,294.1394 682.462,298.8104 682.462,298.8104 L682.605,298.8104 C682.605,298.8104 682.533,297.8764 682.533,296.7264 L682.533,280.6324 L691.659,280.6324 L691.659,331.6474 L683.036,331.6474 L683.036,328.6304 C683.036,327.2644 683.181,326.2584 683.181,326.2584 L683.036,326.2584 C683.036,326.2584 679.947,332.5104 671.54,332.5104 C661.624,332.5104 655.301,324.6784 655.301,313.3254 C655.301,301.6844 662.199,294.1394 671.899,294.1394" id="Fill-19" fill="#000000"></path>
|
|
28
|
-
<path d="M702.29,295.0021 L711.416,295.0021 L711.416,316.7021 C711.416,321.1571 712.565,324.1751 717.093,324.1751 C723.703,324.1751 727.367,318.3551 727.367,311.8161 L727.367,295.0021 L736.493,295.0021 L736.493,331.6481 L727.726,331.6481 L727.726,327.4801 C727.726,326.0431 727.87,324.8941 727.87,324.8941 L727.726,324.8941 C725.931,328.7011 721.26,332.5101 715.009,332.5101 C707.177,332.5101 702.29,328.5581 702.29,318.5701 L702.29,295.0021 Z" id="Fill-20" fill="#000000"></path>
|
|
29
|
-
<path d="M764.872,294.1398 C774.429,294.1398 778.956,299.6008 778.956,299.6008 L774.932,305.8518 C774.932,305.8518 771.124,301.9008 765.375,301.9008 C758.621,301.9008 754.238,307.0018 754.238,313.2528 C754.238,319.4328 758.692,324.7488 765.663,324.7488 C771.842,324.7488 776.44,320.0798 776.44,320.0798 L779.962,326.5458 C779.962,326.5458 774.716,332.5098 764.872,332.5098 C752.729,332.5098 744.969,323.9588 744.969,313.3258 C744.969,302.9068 752.729,294.1398 764.872,294.1398" id="Fill-21" fill="#000000"></path>
|
|
30
|
-
<path d="M799.504,325.3966 C804.318,325.3966 807.768,320.2226 807.768,315.7676 L807.768,314.9056 L806.187,314.9056 C801.516,314.9056 793.972,315.5516 793.972,320.6546 C793.972,323.0966 795.768,325.3966 799.504,325.3966 M806.474,308.6546 L807.695,308.6546 L807.695,308.1516 C807.695,303.3366 804.678,301.6846 800.653,301.6846 C795.408,301.6846 790.594,305.2056 790.594,305.2056 L787.146,298.6676 C787.146,298.6676 792.821,294.1396 801.516,294.1396 C811.145,294.1396 816.749,299.4576 816.749,308.7266 L816.749,331.6476 L808.342,331.6476 L808.342,328.6296 C808.342,327.1926 808.485,326.0436 808.485,326.0436 L808.342,326.0436 C808.414,326.0436 805.54,332.5096 797.205,332.5096 C790.666,332.5096 784.775,328.4146 784.775,321.0856 C784.775,309.4446 800.51,308.6546 806.474,308.6546" id="Fill-22" fill="#000000"></path>
|
|
31
|
-
<path d="M828.674,302.8341 L823.933,302.8341 L823.933,295.5771 L828.89,295.5771 L828.89,285.0151 L837.8,285.0151 L837.8,295.5771 L846.135,295.5771 L846.135,302.8341 L837.8,302.8341 L837.8,317.0621 C837.8,323.0971 842.543,323.9591 845.058,323.9591 C846.063,323.9591 846.709,323.8161 846.709,323.8161 L846.709,331.7911 C846.709,331.7911 845.632,332.0071 843.907,332.0071 C838.806,332.0071 828.674,330.4981 828.674,318.2111 L828.674,302.8341 Z" id="Fill-23" fill="#000000"></path>
|
|
32
|
-
<path d="M855.258,295.002 L864.384,295.002 L864.384,331.648 L855.258,331.648 L855.258,295.002 Z M855.258,280.632 L864.312,280.632 L864.312,288.751 L855.258,288.751 L855.258,280.632 Z" id="Fill-24" fill="#000000"></path>
|
|
33
|
-
<path d="M892.981,324.7492 C898.873,324.7492 903.831,320.1512 903.831,313.3252 C903.831,306.5702 898.873,301.9002 892.981,301.9002 C887.017,301.9002 882.059,306.5702 882.059,313.3252 C882.059,320.1512 887.017,324.7492 892.981,324.7492 M892.909,294.1402 C904.119,294.1402 913.1,302.1152 913.1,313.3252 C913.1,324.6052 904.119,332.5102 892.981,332.5102 C881.772,332.5102 872.79,324.6052 872.79,313.3252 C872.79,302.1152 881.772,294.1402 892.909,294.1402" id="Fill-25" fill="#000000"></path>
|
|
34
|
-
<path d="M921.504,295.0021 L930.271,295.0021 L930.271,299.2411 C930.271,300.6061 930.127,301.7571 930.127,301.7571 L930.271,301.7571 C931.852,298.6671 935.875,294.1401 943.276,294.1401 C951.396,294.1401 955.994,298.3791 955.994,308.0791 L955.994,331.6481 L946.941,331.6481 L946.941,309.9471 C946.941,305.4931 945.791,302.4751 941.12,302.4751 C936.234,302.4751 932.642,305.5651 931.276,309.9471 C930.774,311.4571 930.63,313.1091 930.63,314.8341 L930.63,331.6481 L921.504,331.6481 L921.504,295.0021 Z" id="Fill-26" fill="#000000"></path>
|
|
35
|
-
<path d="M42.52,0 C65.949,0 85.04,19.02 85.04,42.491 C85.04,65.962 65.949,85.039 42.52,85.039 C19.033,85.039 0,65.962 0,42.491 C0,19.02 19.033,0 42.52,0" id="Fill-27" fill="#0098E0"></path>
|
|
36
|
-
<polygon id="Fill-28" fill="#002F91" points="8.4851 331.653 76.5161 331.653 76.5161 110.551 8.4851 110.551"></polygon>
|
|
37
|
-
<path d="M208.36,192.04 L164.655,192.04 C168.834,174.805 182.857,159.191 208.36,159.191 C233.863,159.191 247.886,174.805 252.065,192.04 L208.36,192.04 Z M319.663,221.803 L319.662,220.595 C319.429,156.508 276.577,104.645 206.594,104.645 C136.61,104.645 93.7588,156.508 93.5258,220.595 L93.5238,221.803 C93.5238,292.1867 148.015,337.5947 216.13,337.5947 C251.549,337.5947 287.422,321.7027 309.219,294.0017 L262.866,260.0097 C250.637,274.3467 235.202,285.8297 212.951,285.8297 C186.614,285.8297 167.088,269.0277 161.639,243.145 L317.868,243.145 C319.026,236.317 319.663,229.207 319.663,221.803 L319.663,221.803 Z" id="Fill-29" fill="#002F91"></path>
|
|
38
|
-
</g>
|
|
39
|
-
</g>
|
|
40
|
-
</svg>
|