@eeacms/volto-cca-policy 0.2.34 → 0.2.36

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/CHANGELOG.md CHANGED
@@ -4,11 +4,25 @@ All notable changes to this project will be documented in this file. Dates are d
4
4
 
5
5
  Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
6
6
 
7
- ### [0.2.34](https://github.com/eea/volto-cca-policy/compare/0.2.33...0.2.34) - 24 May 2024
7
+ ### [0.2.36](https://github.com/eea/volto-cca-policy/compare/0.2.35...0.2.36) - 28 May 2024
8
+
9
+ #### :nail_care: Enhancements
10
+
11
+ - change: replace Climate-ADAPT logo [kreafox - [`36d1000`](https://github.com/eea/volto-cca-policy/commit/36d10007c840ed4ba4de782704a6485c3784741c)]
12
+
13
+ ### [0.2.35](https://github.com/eea/volto-cca-policy/compare/0.2.34...0.2.35) - 24 May 2024
14
+
15
+ #### :bug: Bug Fixes
16
+
17
+ - fix: don't break view without blocks [kreafox - [`0a63710`](https://github.com/eea/volto-cca-policy/commit/0a63710bb682f033b4a9f0f8df51720c10dc7644)]
8
18
 
9
19
  #### :hammer_and_wrench: Others
10
20
 
11
- - Fix type in event listing [Tiberiu Ichim - [`09b2456`](https://github.com/eea/volto-cca-policy/commit/09b24565c456fc622d46b4d32029bc74c62e619b)]
21
+ - test: increase coverage [kreafox - [`5a349cf`](https://github.com/eea/volto-cca-policy/commit/5a349cf8f2d04f4e491537c3c6d0ed442ac6481f)]
22
+ - test: fix issues reported by sonarqube [kreafox - [`a84e309`](https://github.com/eea/volto-cca-policy/commit/a84e309de1d8da69832a28c0a9bc037a57cd4ddb)]
23
+ - update snapshot [kreafox - [`0e1b2cc`](https://github.com/eea/volto-cca-policy/commit/0e1b2ccf6d3088d5c3867287050d99adcd93f655)]
24
+ ### [0.2.34](https://github.com/eea/volto-cca-policy/compare/0.2.33...0.2.34) - 24 May 2024
25
+
12
26
  ### [0.2.33](https://github.com/eea/volto-cca-policy/compare/0.2.32...0.2.33) - 23 May 2024
13
27
 
14
28
  #### :bug: Bug Fixes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eeacms/volto-cca-policy",
3
- "version": "0.2.34",
3
+ "version": "0.2.36",
4
4
  "description": "@eeacms/volto-cca-policy: Volto add-on",
5
5
  "main": "src/index.js",
6
6
  "author": "European Environment Agency: IDM2 A-Team",
@@ -1,4 +1,4 @@
1
- import React from 'react';
1
+ import React, { useRef, useState, useEffect } from 'react';
2
2
  import { Button, Icon } from 'semantic-ui-react';
3
3
  import { BodyClass } from '@plone/volto/helpers';
4
4
  import cx from 'classnames';
@@ -10,64 +10,76 @@ const ReadMoreView = (props) => {
10
10
  const isEditMode = mode === 'edit';
11
11
  const { label_opened, label_closed, label_position, height } = data;
12
12
 
13
- const [isReadMore, setIsReadMore] = React.useState(true);
14
- const [wrapperHeight, setWrapperHeight] = React.useState(height);
15
- const [mounted, setMounted] = React.useState(false);
16
- const readMoreRef = React.createRef();
13
+ const [isReadMore, setIsReadMore] = useState(true);
14
+ const [wrapperHeight, setWrapperHeight] = useState(height);
15
+ const [mounted, setMounted] = useState(false);
16
+ const readMoreRef = useRef(null);
17
17
 
18
- React.useEffect(() => {
18
+ useEffect(() => {
19
19
  setMounted(true);
20
20
  }, []);
21
21
 
22
- React.useEffect(() => {
22
+ // Wrap previous siblings (before "Read more" button) in a div
23
+ useEffect(() => {
23
24
  if (isEditMode || !mounted) return;
24
25
 
25
26
  const button = readMoreRef.current;
26
27
  const wrapper = document.createElement('div');
27
28
  wrapper.className = 'panel-wrapper';
28
-
29
29
  const nodes = [];
30
- let prev_elem = button.previousSibling;
31
- while (prev_elem) {
32
- nodes.push(prev_elem);
33
- prev_elem = prev_elem.previousSibling;
30
+ let prevElem = button.previousSibling;
31
+
32
+ while (prevElem) {
33
+ nodes.push(prevElem);
34
+ prevElem = prevElem.previousSibling;
34
35
  }
36
+
35
37
  const section = document.getElementsByClassName('panel-wrapper');
36
38
  if (section.length > 0) return;
37
39
 
38
- Array.from(nodes).forEach((e) => {
40
+ nodes.reverse().forEach((e) => {
39
41
  wrapper.appendChild(e);
40
42
  });
41
43
 
42
44
  button.parentNode.insertBefore(wrapper, button);
43
- wrapper.append(...Array.from(wrapper.childNodes).reverse());
44
45
  }, [mounted, readMoreRef, isEditMode]);
45
46
 
46
- React.useEffect(() => {
47
+ // Set the wrapper height
48
+ useEffect(() => {
47
49
  if (isEditMode || !mounted) return;
48
-
49
- const wrapper = document.getElementsByClassName('panel-wrapper')[0];
50
-
50
+ const wrapper = document.querySelector('.panel-wrapper');
51
51
  if (wrapper) {
52
52
  wrapper.style.height = wrapperHeight;
53
53
  }
54
54
  }, [mounted, wrapperHeight, isEditMode]);
55
55
 
56
- React.useEffect(() => {
56
+ useEffect(() => {
57
57
  isReadMore ? setWrapperHeight(height) : setWrapperHeight('auto');
58
58
  }, [height, isReadMore]);
59
59
 
60
+ const toggleReadMore = () => {
61
+ if (!isReadMore) {
62
+ setTimeout(() => {
63
+ const wrapper = document.querySelector('.panel-wrapper');
64
+ if (wrapper) {
65
+ wrapper.scrollIntoView({ behavior: 'smooth' });
66
+ }
67
+ }, 100);
68
+ }
69
+ setIsReadMore(!isReadMore);
70
+ };
71
+
60
72
  return (
61
73
  <div
62
74
  ref={readMoreRef}
63
75
  id="read-more-button"
64
- className={cx('styled-readMoreBlock', {
76
+ className={cx('read-more-block', {
65
77
  left: label_position === 'left',
66
78
  right: label_position === 'right',
67
79
  })}
68
80
  >
69
81
  <BodyClass className={`${isReadMore ? 'closed' : 'opened'}`} />
70
- <Button basic icon primary onClick={() => setIsReadMore(!isReadMore)}>
82
+ <Button basic icon primary onClick={toggleReadMore}>
71
83
  {isReadMore ? (
72
84
  <>
73
85
  <strong>{label_closed || 'Read more'}</strong>
@@ -83,4 +95,5 @@ const ReadMoreView = (props) => {
83
95
  </div>
84
96
  );
85
97
  };
98
+
86
99
  export default ReadMoreView;
@@ -1,4 +1,4 @@
1
- .styled-readMoreBlock {
1
+ .read-more-block {
2
2
  display: flex;
3
3
  margin: 1.5em 0;
4
4
 
@@ -1,13 +1,15 @@
1
1
  import React from 'react';
2
- import {
3
- BannerTitle,
4
- PortalMessage,
5
- } from '@eeacms/volto-cca-policy/components';
6
- import RenderBlocks from '@plone/volto/components/theme/View/RenderBlocks';
7
- import { Grid, Container, Segment, Button, Icon } from 'semantic-ui-react';
8
- import { useIntl, defineMessages, FormattedMessage } from 'react-intl';
9
- import { SubjectTags, EventDetails } from '@eeacms/volto-cca-policy/helpers';
10
2
  import { expandToBackendURL } from '@plone/volto/helpers';
3
+ import { useIntl, defineMessages, FormattedMessage } from 'react-intl';
4
+ import { Grid, Container, Segment, Button, Icon } from 'semantic-ui-react';
5
+ import RenderBlocks from '@plone/volto/components/theme/View/RenderBlocks';
6
+ import {
7
+ SubjectTags,
8
+ EventDetails,
9
+ HTMLField,
10
+ } from '@eeacms/volto-cca-policy/helpers';
11
+ import { filterBlocks } from '@eeacms/volto-cca-policy/utils';
12
+ import { PortalMessage } from '@eeacms/volto-cca-policy/components';
11
13
 
12
14
  const messages = defineMessages({
13
15
  downloadEvent: {
@@ -16,20 +18,39 @@ const messages = defineMessages({
16
18
  },
17
19
  });
18
20
 
19
- function CcaEventView(props) {
20
- const { content } = props;
21
+ function EventView(props) {
21
22
  const intl = useIntl();
23
+ const { content } = props;
24
+ const {
25
+ blocks: filtered_blocks,
26
+ blocks_layout: filtered_blocks_layout,
27
+ hasBlockType,
28
+ } = filterBlocks(content, 'tabs_block');
22
29
 
23
30
  return (
24
31
  <div className="cca-event-view">
25
- <BannerTitle content={content} />
32
+ <PortalMessage content={content} />
26
33
 
27
34
  <Container>
28
- <PortalMessage content={content} />
29
35
  <Grid columns="12">
30
36
  <Grid.Row>
31
37
  <Grid.Column mobile={12} tablet={12} computer={8}>
32
- <RenderBlocks {...props} />
38
+ {hasBlockType && (
39
+ <>
40
+ <p className="documentDescription">{content.description}</p>
41
+ <HTMLField value={content.text} className="content-text" />
42
+ </>
43
+ )}
44
+
45
+ <RenderBlocks
46
+ {...props}
47
+ content={{
48
+ ...content,
49
+ blocks: filtered_blocks,
50
+ blocks_layout: filtered_blocks_layout,
51
+ }}
52
+ />
53
+
33
54
  <SubjectTags {...props} />
34
55
  </Grid.Column>
35
56
  <Grid.Column mobile={12} tablet={12} computer={4}>
@@ -37,9 +58,9 @@ function CcaEventView(props) {
37
58
  <EventDetails {...props} />
38
59
  {content?.event_url && (
39
60
  <>
40
- <h3>
61
+ <h4>
41
62
  <FormattedMessage id="Web" defaultMessage="Web" />
42
- </h3>
63
+ </h4>
43
64
  <p>
44
65
  <a href={content.event_url} target="_blank">
45
66
  <FormattedMessage
@@ -79,4 +100,4 @@ function CcaEventView(props) {
79
100
  );
80
101
  }
81
102
 
82
- export default CcaEventView;
103
+ export default EventView;
@@ -0,0 +1,143 @@
1
+ import React from 'react';
2
+ import renderer from 'react-test-renderer';
3
+ import { Provider } from 'react-intl-redux';
4
+ import configureStore from 'redux-mock-store';
5
+ import EventView from './EventView';
6
+ import config from '@plone/volto/registry';
7
+
8
+ config.blocks = {
9
+ blocksConfig: {
10
+ title: {
11
+ view: () => <div>Title Block Component</div>,
12
+ },
13
+ },
14
+ };
15
+
16
+ const mockStore = configureStore();
17
+
18
+ const store = mockStore({
19
+ intl: {
20
+ locale: 'en',
21
+ messages: {},
22
+ },
23
+ });
24
+
25
+ jest.mock('react-router-dom', () => ({
26
+ ...jest.requireActual('react-router-dom'),
27
+ useLocation: () => ({
28
+ pathname: '/',
29
+ hash: '',
30
+ search: '',
31
+ state: undefined,
32
+ }),
33
+ }));
34
+
35
+ jest.mock('@plone/volto/helpers/Loadable/Loadable');
36
+ beforeAll(
37
+ async () =>
38
+ await require('@plone/volto/helpers/Loadable/Loadable').__setLoadables(),
39
+ );
40
+
41
+ const { settings } = config;
42
+
43
+ test('renders an event view component with all props', () => {
44
+ const component = renderer.create(
45
+ <Provider store={store}>
46
+ <EventView
47
+ content={{
48
+ '@id': 'http://localhost:8080/Plone/my-page',
49
+ title: 'Hello World!',
50
+ description: 'Hi',
51
+ text: {
52
+ data: '<p>Hello World!</p>',
53
+ },
54
+ attendees: ['John Doe', 'Mario Rossi'],
55
+ contact_email: 'test@example.com',
56
+ contact_name: 'John Doe',
57
+ contact_phone: '0123456789',
58
+ end: '2019-06-24T15:20:00+00:00',
59
+ event_url: 'https://www.example.com',
60
+ location: 'Volto, Plone',
61
+ open_end: false,
62
+ recurrence: 'RRULE:FREQ=DAILY;INTERVAL=7;COUNT=7',
63
+ start: '2019-06-23T15:20:00+00:00',
64
+ subjects: ['Volto'],
65
+ whole_day: false,
66
+ blocks: {
67
+ '6cc87646-cbd3-40ea-8b18-8a737b4ec803': {
68
+ '@type': 'title',
69
+ copyrightIcon: 'ri-copyright-line',
70
+ styles: {},
71
+ },
72
+ },
73
+ blocks_layout: {
74
+ items: ['6cc87646-cbd3-40ea-8b18-8a737b4ec803'],
75
+ },
76
+ }}
77
+ />
78
+ </Provider>,
79
+ );
80
+ const json = component.toJSON();
81
+ expect(json).toMatchSnapshot();
82
+ });
83
+
84
+ test('renders an event view component with only required props', () => {
85
+ const component = renderer.create(
86
+ <Provider store={store}>
87
+ <EventView
88
+ content={{
89
+ '@id': 'http://localhost:8080/Plone/my-page',
90
+ title: 'Hello World!',
91
+ attendees: [],
92
+ end: '2019-06-23T16:20:00+00:00',
93
+ start: '2019-06-23T15:20:00+00:00',
94
+ subjects: ['Volto'],
95
+ blocks: {
96
+ '6cc87646-cbd3-40ea-8b18-8a737b4ec803': {
97
+ '@type': 'title',
98
+ copyrightIcon: 'ri-copyright-line',
99
+ styles: {},
100
+ },
101
+ },
102
+ blocks_layout: {
103
+ items: ['6cc87646-cbd3-40ea-8b18-8a737b4ec803'],
104
+ },
105
+ }}
106
+ />
107
+ </Provider>,
108
+ );
109
+ const json = component.toJSON();
110
+ expect(json).toMatchSnapshot();
111
+ });
112
+
113
+ test('renders an event view component without links to api in the text', () => {
114
+ const component = renderer.create(
115
+ <Provider store={store}>
116
+ <EventView
117
+ content={{
118
+ '@id': 'http://localhost:8080/Plone/my-page',
119
+ title: 'Hello World!',
120
+ attendees: [],
121
+ end: '2019-06-23T16:20:00+00:00',
122
+ start: '2019-06-23T15:20:00+00:00',
123
+ subjects: ['Volto'],
124
+ text: {
125
+ data: `<p>Hello World!</p><p>This is an <a href="${settings.apiPath}/foo/bar">internal link</a> and a <a href="${settings.apiPath}/foo/baz">second link</a></p>`,
126
+ },
127
+ blocks: {
128
+ '6cc87646-cbd3-40ea-8b18-8a737b4ec803': {
129
+ '@type': 'title',
130
+ copyrightIcon: 'ri-copyright-line',
131
+ styles: {},
132
+ },
133
+ },
134
+ blocks_layout: {
135
+ items: ['6cc87646-cbd3-40ea-8b18-8a737b4ec803'],
136
+ },
137
+ }}
138
+ />
139
+ </Provider>,
140
+ );
141
+ const json = component.toJSON();
142
+ expect(json).toMatchSnapshot();
143
+ });
@@ -1,33 +1,51 @@
1
1
  import React from 'react';
2
- import {
3
- BannerTitle,
4
- PortalMessage,
5
- } from '@eeacms/volto-cca-policy/components';
6
2
  import { Container } from 'semantic-ui-react';
7
- import { SubjectTags } from '@eeacms/volto-cca-policy/helpers';
3
+ import { filterBlocks } from '@eeacms/volto-cca-policy/utils';
4
+ import { PortalMessage } from '@eeacms/volto-cca-policy/components';
5
+ import { HTMLField, SubjectTags } from '@eeacms/volto-cca-policy/helpers';
8
6
  import RenderBlocks from '@plone/volto/components/theme/View/RenderBlocks';
9
- // import { When } from '@plone/volto/components/theme/View/EventDatesInfo';
7
+ import { When } from '@plone/volto/components/theme/View/EventDatesInfo';
10
8
 
11
- // const Date = (props) => {
12
- // const date = props.content?.effective;
13
- // return date ? (
14
- // <>
15
- // <When start={date} end={date} whole_day={true} open_end={false} />
16
- // </>
17
- // ) : null;
18
- // };
9
+ const PublicationDate = (props) => {
10
+ const date = props.content?.effective;
11
+ return date ? (
12
+ <div className="news-date-info">
13
+ Date:
14
+ <When start={date} end={date} whole_day={true} open_end={false} />
15
+ </div>
16
+ ) : null;
17
+ };
19
18
 
20
19
  function NewsItemView(props) {
21
20
  const { content } = props;
21
+ const {
22
+ blocks: filtered_blocks,
23
+ blocks_layout: filtered_blocks_layout,
24
+ hasBlockType,
25
+ } = filterBlocks(content, 'tabs_block');
22
26
 
23
27
  return (
24
28
  <div className="cca-newsitem-view">
25
- <BannerTitle content={content} />
29
+ <PortalMessage content={content} />
26
30
 
27
31
  <Container>
28
- <PortalMessage content={content} />
29
- <RenderBlocks {...props} />
30
- {/* <Date {...props} /> */}
32
+ {hasBlockType && (
33
+ <>
34
+ <p className="documentDescription">{content.description}</p>
35
+ <HTMLField value={content.text} className="content-text" />
36
+ </>
37
+ )}
38
+
39
+ <RenderBlocks
40
+ {...props}
41
+ content={{
42
+ ...content,
43
+ blocks: filtered_blocks,
44
+ blocks_layout: filtered_blocks_layout,
45
+ }}
46
+ />
47
+
48
+ <PublicationDate {...props} />
31
49
  <SubjectTags {...props} />
32
50
  </Container>
33
51
  </div>
@@ -454,9 +454,9 @@ export const EventDetails = (props) => {
454
454
 
455
455
  return (
456
456
  <>
457
- <h3>
457
+ <h4>
458
458
  <FormattedMessage id="When" defaultMessage="When" />
459
- </h3>
459
+ </h4>
460
460
  <When
461
461
  start={content.start}
462
462
  end={content.end}
@@ -465,17 +465,17 @@ export const EventDetails = (props) => {
465
465
  />
466
466
  {content?.location !== null && (
467
467
  <>
468
- <h3>
468
+ <h4>
469
469
  <FormattedMessage id="Where" defaultMessage="Where" />
470
- </h3>
470
+ </h4>
471
471
  <p>{content.location}</p>
472
472
  </>
473
473
  )}
474
474
  {!!content.contact_email && (
475
475
  <>
476
- <h3>
476
+ <h4>
477
477
  <FormattedMessage id="Info" defaultMessage="Info" />
478
- </h3>
478
+ </h4>
479
479
  <p>{content.contact_email}</p>
480
480
  </>
481
481
  )}
package/src/utils.js CHANGED
@@ -50,3 +50,23 @@ export const hasTypeOfBlock = (obj, type, name) => {
50
50
 
51
51
  return false;
52
52
  };
53
+
54
+ export const filterBlocks = (content, block_type) => {
55
+ const filteredBlocks = { ...content.blocks };
56
+ const filteredBlocksLayout = { ...content.blocks_layout };
57
+
58
+ const filteredBlockUID = Object.keys(filteredBlocks)?.filter(
59
+ (key) => filteredBlocks[key]['@type'] === block_type,
60
+ );
61
+ filteredBlockUID.forEach((key) => delete filteredBlocks[key]);
62
+ filteredBlocksLayout.items = filteredBlocksLayout?.items?.filter(
63
+ (item) => !filteredBlockUID.includes(item),
64
+ );
65
+ const hasBlockType = filteredBlockUID.length > 0;
66
+
67
+ return {
68
+ blocks: filteredBlocks,
69
+ blocks_layout: filteredBlocksLayout,
70
+ hasBlockType,
71
+ };
72
+ };
@@ -1,231 +1,162 @@
1
- <?xml version="1.0" encoding="utf-8"?>
2
- <!-- Generator: Adobe Illustrator 27.9.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
- <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"
4
- viewBox="0 0 205.7 34.2" style="enable-background:new 0 0 205.7 34.2;" xml:space="preserve">
5
- <style type="text/css">
6
- .st0{fill:#50B0A4;}
7
- .st1{fill-rule:evenodd;clip-rule:evenodd;fill:url(#SVGID_1_);}
8
- .st2{fill-rule:evenodd;clip-rule:evenodd;fill:#084C7E;}
9
- .st3{fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;}
10
- .st4{fill-rule:evenodd;clip-rule:evenodd;fill:url(#SVGID_00000021120138511172510570000012852311285464948919_);}
11
- .st5{fill-rule:evenodd;clip-rule:evenodd;fill:url(#SVGID_00000142169894763135083750000003498552886317596830_);}
12
- .st6{fill-rule:evenodd;clip-rule:evenodd;fill:url(#SVGID_00000158721215509456588790000013950791660126031801_);}
13
- .st7{fill-rule:evenodd;clip-rule:evenodd;fill:url(#SVGID_00000099637223913024369620000014286749596560137652_);}
14
- </style>
15
- <g>
16
- <g>
17
- <g>
18
- <path class="st0" d="M53.2,10.5c0,0.9-0.3,1.8-0.8,2.5c-0.5,0.7-1.1,1.3-2,1.7c-0.8,0.4-1.8,0.6-2.9,0.6c-1.8,0-3.2-0.6-4.2-1.7
19
- c-1-1.2-1.5-2.8-1.5-4.9V7.9c0-1.3,0.2-2.5,0.7-3.5c0.5-1,1.1-1.8,2-2.3c0.9-0.5,1.9-0.8,3-0.8c1.6,0,3,0.4,4,1.3
20
- c1,0.9,1.6,2.1,1.7,3.6H50c0-0.8-0.2-1.4-0.6-1.8c-0.4-0.4-1-0.5-1.8-0.5c-0.8,0-1.4,0.3-1.8,0.9c-0.4,0.6-0.6,1.6-0.6,2.9v1
21
- c0,1.4,0.2,2.5,0.5,3.1c0.4,0.6,1,0.9,1.9,0.9c0.7,0,1.3-0.2,1.7-0.5c0.4-0.4,0.6-0.9,0.6-1.7H53.2z"/>
22
- <path class="st0" d="M58.4,15h-3.1V0.8h3.1V15z"/>
23
- <path class="st0" d="M60.8,2.4c0-0.4,0.2-0.8,0.5-1.1C61.6,1,62,0.9,62.5,0.9c0.5,0,0.9,0.1,1.3,0.4c0.3,0.3,0.5,0.7,0.5,1.1
24
- s-0.2,0.8-0.5,1.1c-0.3,0.3-0.7,0.4-1.3,0.4c-0.5,0-0.9-0.1-1.3-0.4C60.9,3.2,60.8,2.8,60.8,2.4z M64.1,15h-3.1V5h3.1V15z"/>
25
- <path class="st0" d="M69.5,5l0.1,1.2c0.7-0.9,1.7-1.4,2.9-1.4c1.3,0,2.1,0.5,2.6,1.5c0.7-1,1.7-1.5,3-1.5c2,0,3.1,1.2,3.1,3.7V15
26
- H78V8.7c0-0.5-0.1-0.9-0.3-1.1c-0.2-0.2-0.5-0.4-0.9-0.4c-0.6,0-1.1,0.3-1.4,0.8l0,0.1V15h-3.1V8.7c0-0.5-0.1-0.9-0.3-1.1
27
- c-0.2-0.2-0.5-0.4-1-0.4c-0.6,0-1.1,0.3-1.4,0.8v7h-3.1V5H69.5z"/>
28
- <path class="st0" d="M89,15c-0.1-0.2-0.2-0.5-0.3-0.9c-0.6,0.7-1.4,1.1-2.4,1.1c-0.9,0-1.8-0.3-2.4-0.9c-0.7-0.6-1-1.3-1-2.2
29
- c0-1.1,0.4-1.9,1.2-2.5c0.8-0.6,2-0.8,3.5-0.8h1V8.4c0-0.9-0.4-1.4-1.2-1.4c-0.7,0-1.1,0.4-1.1,1.1h-3.1c0-1,0.4-1.8,1.2-2.4
30
- s1.9-0.9,3.2-0.9s2.3,0.3,3,0.9c0.7,0.6,1.1,1.5,1.1,2.6v4.5c0,0.9,0.2,1.6,0.4,2.1V15H89z M87.1,13c0.4,0,0.7-0.1,1-0.3
31
- c0.3-0.2,0.4-0.4,0.6-0.6v-1.6h-0.9c-1.1,0-1.6,0.5-1.6,1.5c0,0.3,0.1,0.5,0.3,0.7C86.5,12.9,86.8,13,87.1,13z"/>
32
- <path class="st0" d="M97.6,2.5V5h1.7v2.2h-1.7v4.6c0,0.4,0.1,0.6,0.2,0.8c0.1,0.1,0.4,0.2,0.8,0.2c0.3,0,0.6,0,0.8-0.1v2.2
33
- c-0.6,0.2-1.2,0.3-1.8,0.3c-1.1,0-1.9-0.3-2.4-0.8c-0.5-0.5-0.8-1.3-0.8-2.3v-5h-1.3V5h1.3V2.5H97.6z"/>
34
- <path class="st0" d="M105.8,15.2c-1.5,0-2.8-0.5-3.7-1.4c-1-0.9-1.4-2.1-1.4-3.6V10c0-1,0.2-1.9,0.6-2.7c0.4-0.8,0.9-1.4,1.7-1.8
35
- c0.7-0.4,1.6-0.6,2.6-0.6c1.4,0,2.5,0.4,3.3,1.3c0.8,0.9,1.2,2.1,1.2,3.7V11h-6.2c0.1,0.6,0.4,1,0.7,1.3c0.4,0.3,0.9,0.5,1.5,0.5
36
- c1,0,1.8-0.3,2.3-1l1.4,1.7c-0.4,0.5-0.9,1-1.7,1.3C107.4,15.1,106.6,15.2,105.8,15.2z M105.5,7.2c-0.9,0-1.5,0.6-1.6,1.8h3.2
37
- V8.8c0-0.5-0.1-0.9-0.4-1.2C106.3,7.3,106,7.2,105.5,7.2z"/>
38
- <path class="st0" d="M56.4,31.5H52l-0.8,2.5h-3.5l5-13.5h3.1l5,13.5h-3.5L56.4,31.5z M52.7,29h2.9l-1.5-4.7L52.7,29z"/>
39
- <path class="st0" d="M61.8,34.1V20.5h4.4c1.2,0,2.3,0.3,3.2,0.8c1,0.5,1.7,1.3,2.2,2.3c0.5,1,0.8,2.1,0.8,3.3v0.6
40
- c0,1.2-0.3,2.4-0.8,3.3c-0.5,1-1.3,1.8-2.2,2.3c-1,0.6-2,0.8-3.2,0.8H61.8z M65,23v8.5h1.1c0.9,0,1.7-0.3,2.2-1
41
- c0.5-0.7,0.8-1.7,0.8-3V27c0-1.3-0.3-2.3-0.8-3c-0.5-0.7-1.2-1-2.2-1H65z"/>
42
- <path class="st0" d="M81.8,31.5h-4.5l-0.8,2.5h-3.5l5-13.5h3.1l5,13.5h-3.5L81.8,31.5z M78.1,29H81l-1.5-4.7L78.1,29z"/>
43
- <path class="st0" d="M90.4,29.5v4.6h-3.3V20.5h5.4c1,0,2,0.2,2.7,0.6c0.8,0.4,1.4,0.9,1.8,1.6c0.4,0.7,0.7,1.5,0.7,2.4
44
- c0,1.3-0.5,2.4-1.4,3.2c-0.9,0.8-2.2,1.2-3.9,1.2H90.4z M90.4,26.9h2.1c0.6,0,1.1-0.2,1.4-0.5c0.3-0.3,0.5-0.8,0.5-1.3
45
- c0-0.6-0.2-1.1-0.5-1.5c-0.3-0.4-0.8-0.6-1.4-0.6h-2.2V26.9z"/>
46
- <path class="st0" d="M110.2,23h-4.1v11h-3.3V23h-4v-2.5h11.3V23z"/>
47
- </g>
48
- </g>
49
- <g>
50
- <path class="st0" d="M124.6,5.2c0-0.2-0.1-0.4-0.2-0.5c-0.2-0.1-0.4-0.2-0.8-0.4s-0.7-0.3-1-0.4c-0.6-0.3-1-0.8-1-1.4
51
- c0-0.3,0.1-0.6,0.3-0.8c0.2-0.2,0.4-0.4,0.7-0.6c0.3-0.1,0.7-0.2,1.1-0.2c0.4,0,0.8,0.1,1.1,0.2c0.3,0.1,0.6,0.4,0.7,0.6
52
- s0.3,0.6,0.3,0.9h-1.2c0-0.3-0.1-0.5-0.2-0.6c-0.2-0.1-0.4-0.2-0.7-0.2c-0.3,0-0.5,0.1-0.7,0.2s-0.2,0.3-0.2,0.5
53
- c0,0.2,0.1,0.3,0.3,0.5s0.5,0.2,0.8,0.3c0.7,0.2,1.1,0.4,1.4,0.7c0.3,0.3,0.5,0.7,0.5,1.1c0,0.5-0.2,0.9-0.6,1.2
54
- c-0.4,0.3-0.9,0.4-1.5,0.4c-0.4,0-0.8-0.1-1.2-0.2c-0.4-0.2-0.6-0.4-0.8-0.7c-0.2-0.3-0.3-0.6-0.3-1h1.2c0,0.6,0.4,0.9,1.1,0.9
55
- c0.3,0,0.5-0.1,0.6-0.2C124.6,5.6,124.6,5.4,124.6,5.2z"/>
56
- <path class="st0" d="M131.2,6.7H130V4.3h-2.3v2.4h-1.2V1.1h1.2v2.3h2.3V1.1h1.2V6.7z"/>
57
- <path class="st0" d="M135.5,5.6h-2L133,6.7h-1.2l2.1-5.7h1.1l2.1,5.7h-1.2L135.5,5.6z M133.7,4.6h1.4l-0.7-2.1L133.7,4.6z"/>
58
- <path class="st0" d="M139.7,4.6h-0.9v2.1h-1.2V1.1h2.1c0.7,0,1.2,0.1,1.5,0.4c0.4,0.3,0.5,0.7,0.5,1.3c0,0.4-0.1,0.7-0.3,1
59
- c-0.2,0.3-0.4,0.5-0.8,0.6l1.2,2.3v0.1h-1.3L139.7,4.6z M138.8,3.7h0.9c0.3,0,0.5-0.1,0.7-0.2c0.2-0.1,0.2-0.4,0.2-0.6
60
- c0-0.3-0.1-0.5-0.2-0.6C140.3,2.1,140,2,139.7,2h-0.9V3.7z"/>
61
- <path class="st0" d="M143.9,6.7h-1.2V1.1h1.2V6.7z"/>
62
- <path class="st0" d="M149.6,6.7h-1.2L146.2,3v3.7H145V1.1h1.2l2.3,3.7V1.1h1.2V6.7z"/>
63
- <path class="st0" d="M155.1,6c-0.2,0.3-0.5,0.4-0.9,0.6c-0.4,0.1-0.8,0.2-1.3,0.2c-0.5,0-0.9-0.1-1.3-0.3
64
- c-0.4-0.2-0.7-0.5-0.9-0.9s-0.3-0.9-0.3-1.4V3.7c0-0.6,0.1-1.1,0.3-1.5c0.2-0.4,0.5-0.7,0.8-0.9c0.4-0.2,0.8-0.3,1.3-0.3
65
- c0.7,0,1.2,0.2,1.6,0.5c0.4,0.3,0.6,0.8,0.7,1.4H154c-0.1-0.3-0.2-0.6-0.3-0.7c-0.2-0.2-0.4-0.2-0.7-0.2c-0.4,0-0.7,0.1-0.9,0.4
66
- c-0.2,0.3-0.3,0.7-0.3,1.3v0.4c0,0.6,0.1,1,0.3,1.3c0.2,0.3,0.6,0.5,1,0.5c0.4,0,0.7-0.1,0.9-0.3v-1h-1.1V3.7h2.2V6z"/>
67
- <path class="st0" d="M161.2,5.6h-2l-0.4,1.2h-1.2l2.1-5.7h1.1l2.1,5.7h-1.2L161.2,5.6z M159.5,4.6h1.4l-0.7-2.1L159.5,4.6z"/>
68
- <path class="st0" d="M163.4,6.7V1.1h1.7c0.5,0,0.9,0.1,1.3,0.3c0.4,0.2,0.7,0.5,0.9,1c0.2,0.4,0.3,0.9,0.3,1.4V4
69
- c0,0.5-0.1,1-0.3,1.4c-0.2,0.4-0.5,0.7-0.9,1c-0.4,0.2-0.8,0.3-1.3,0.3H163.4z M164.5,2v3.8h0.6c0.5,0,0.8-0.1,1-0.4
70
- c0.2-0.3,0.4-0.7,0.4-1.3V3.8c0-0.6-0.1-1-0.4-1.3c-0.2-0.3-0.6-0.4-1-0.4H164.5z"/>
71
- <path class="st0" d="M171.7,5.6h-2l-0.4,1.2h-1.2l2.1-5.7h1.1l2.1,5.7h-1.2L171.7,5.6z M170,4.6h1.4l-0.7-2.1L170,4.6z"/>
72
- <path class="st0" d="M175.1,4.7v2h-1.2V1.1h2.2c0.4,0,0.8,0.1,1.1,0.2s0.6,0.4,0.7,0.7c0.2,0.3,0.3,0.6,0.3,1c0,0.6-0.2,1-0.6,1.3
73
- c-0.4,0.3-0.9,0.5-1.6,0.5H175.1z M175.1,3.8h1c0.3,0,0.5-0.1,0.7-0.2c0.2-0.1,0.2-0.4,0.2-0.6c0-0.3-0.1-0.5-0.2-0.7
74
- c-0.2-0.2-0.4-0.3-0.7-0.3h-1.1V3.8z"/>
75
- <path class="st0" d="M183.3,2h-1.7v4.7h-1.2V2h-1.7V1.1h4.6V2z"/>
76
- <path class="st0" d="M186.7,5.6h-2l-0.4,1.2H183l2.1-5.7h1.1l2.1,5.7h-1.2L186.7,5.6z M184.9,4.6h1.4l-0.7-2.1L184.9,4.6z"/>
77
- <path class="st0" d="M192.6,2h-1.7v4.7h-1.2V2H188V1.1h4.6V2z"/>
78
- <path class="st0" d="M194.5,6.7h-1.2V1.1h1.2V6.7z"/>
79
- <path class="st0" d="M200.3,4c0,0.6-0.1,1-0.3,1.5s-0.5,0.7-0.8,1c-0.4,0.2-0.8,0.3-1.3,0.3c-0.5,0-0.9-0.1-1.3-0.3
80
- c-0.4-0.2-0.7-0.5-0.9-1c-0.2-0.4-0.3-0.9-0.3-1.4V3.8c0-0.6,0.1-1,0.3-1.5c0.2-0.4,0.5-0.7,0.9-1c0.4-0.2,0.8-0.3,1.3-0.3
81
- c0.5,0,0.9,0.1,1.3,0.3c0.4,0.2,0.6,0.6,0.9,1c0.2,0.4,0.3,0.9,0.3,1.5V4z M199.1,3.8c0-0.6-0.1-1-0.3-1.4
82
- c-0.2-0.3-0.5-0.5-0.9-0.5c-0.4,0-0.7,0.2-0.9,0.5c-0.2,0.3-0.3,0.7-0.3,1.3V4c0,0.6,0.1,1,0.3,1.3c0.2,0.3,0.5,0.5,0.9,0.5
83
- c0.4,0,0.7-0.2,0.9-0.5c0.2-0.3,0.3-0.8,0.3-1.3V3.8z"/>
84
- <path class="st0" d="M205.7,6.7h-1.2L202.3,3v3.7h-1.2V1.1h1.2l2.3,3.7V1.1h1.2V6.7z"/>
85
- <path class="st0" d="M123.5,13.6l-0.6,0.7v1.6h-1.2v-5.7h1.2v2.6l0.5-0.7l1.4-1.9h1.4l-2,2.5l2.1,3.1h-1.4L123.5,13.6z"/>
86
- <path class="st0" d="M131.3,15.8h-1.2l-2.3-3.7v3.7h-1.2v-5.7h1.2l2.3,3.7v-3.7h1.2V15.8z"/>
87
- <path class="st0" d="M137,13.1c0,0.6-0.1,1-0.3,1.5c-0.2,0.4-0.5,0.7-0.8,1c-0.4,0.2-0.8,0.3-1.3,0.3c-0.5,0-0.9-0.1-1.3-0.3
88
- c-0.4-0.2-0.7-0.5-0.9-1c-0.2-0.4-0.3-0.9-0.3-1.4v-0.3c0-0.6,0.1-1,0.3-1.5c0.2-0.4,0.5-0.7,0.9-1c0.4-0.2,0.8-0.3,1.3-0.3
89
- c0.5,0,0.9,0.1,1.3,0.3c0.4,0.2,0.6,0.6,0.9,1c0.2,0.4,0.3,0.9,0.3,1.5V13.1z M135.8,12.9c0-0.6-0.1-1-0.3-1.4
90
- c-0.2-0.3-0.5-0.5-0.9-0.5c-0.4,0-0.7,0.2-0.9,0.5c-0.2,0.3-0.3,0.7-0.3,1.3v0.3c0,0.6,0.1,1,0.3,1.3c0.2,0.3,0.5,0.5,0.9,0.5
91
- c0.4,0,0.7-0.2,0.9-0.5c0.2-0.3,0.3-0.8,0.3-1.3V12.9z"/>
92
- <path class="st0" d="M142.3,14.2l0.8-4h1.2l-1.3,5.7h-1.2l-0.9-3.8l-0.9,3.8h-1.2l-1.3-5.7h1.2l0.8,4l0.9-4h1L142.3,14.2z"/>
93
- <path class="st0" d="M146,14.9h2.5v0.9h-3.6v-5.7h1.2V14.9z"/>
94
- <path class="st0" d="M152.5,13.4h-2.2v1.5h2.6v0.9h-3.8v-5.7h3.8v0.9h-2.6v1.3h2.2V13.4z"/>
95
- <path class="st0" d="M153.6,15.8v-5.7h1.7c0.5,0,0.9,0.1,1.3,0.3c0.4,0.2,0.7,0.5,0.9,1c0.2,0.4,0.3,0.9,0.3,1.4v0.3
96
- c0,0.5-0.1,1-0.3,1.4c-0.2,0.4-0.5,0.7-0.9,1c-0.4,0.2-0.8,0.3-1.3,0.3H153.6z M154.8,11.1v3.8h0.6c0.5,0,0.8-0.1,1-0.4
97
- c0.2-0.3,0.4-0.7,0.4-1.3v-0.3c0-0.6-0.1-1-0.4-1.3c-0.2-0.3-0.6-0.4-1-0.4H154.8z"/>
98
- <path class="st0" d="M163.2,15.1c-0.2,0.3-0.5,0.4-0.9,0.6c-0.4,0.1-0.8,0.2-1.3,0.2c-0.5,0-0.9-0.1-1.3-0.3
99
- c-0.4-0.2-0.7-0.5-0.9-0.9c-0.2-0.4-0.3-0.9-0.3-1.4v-0.4c0-0.6,0.1-1.1,0.3-1.5c0.2-0.4,0.5-0.7,0.8-0.9c0.4-0.2,0.8-0.3,1.3-0.3
100
- c0.7,0,1.2,0.2,1.6,0.5c0.4,0.3,0.6,0.8,0.7,1.4h-1.1c-0.1-0.3-0.2-0.6-0.3-0.7c-0.2-0.2-0.4-0.2-0.7-0.2c-0.4,0-0.7,0.1-0.9,0.4
101
- c-0.2,0.3-0.3,0.7-0.3,1.3v0.4c0,0.6,0.1,1,0.3,1.3c0.2,0.3,0.6,0.5,1,0.5c0.4,0,0.7-0.1,0.9-0.3v-1H161v-0.9h2.2V15.1z"/>
102
- <path class="st0" d="M167.6,13.4h-2.2v1.5h2.6v0.9h-3.8v-5.7h3.8v0.9h-2.6v1.3h2.2V13.4z"/>
103
- <path class="st0" d="M174,13.5h-2.2v2.3h-1.2v-5.7h3.7v0.9h-2.5v1.5h2.2V13.5z"/>
104
- <path class="st0" d="M179.6,13.1c0,0.6-0.1,1-0.3,1.5c-0.2,0.4-0.5,0.7-0.8,1c-0.4,0.2-0.8,0.3-1.3,0.3c-0.5,0-0.9-0.1-1.3-0.3
105
- c-0.4-0.2-0.7-0.5-0.9-1c-0.2-0.4-0.3-0.9-0.3-1.4v-0.3c0-0.6,0.1-1,0.3-1.5c0.2-0.4,0.5-0.7,0.9-1c0.4-0.2,0.8-0.3,1.3-0.3
106
- c0.5,0,0.9,0.1,1.3,0.3c0.4,0.2,0.6,0.6,0.9,1c0.2,0.4,0.3,0.9,0.3,1.5V13.1z M178.4,12.9c0-0.6-0.1-1-0.3-1.4
107
- c-0.2-0.3-0.5-0.5-0.9-0.5c-0.4,0-0.7,0.2-0.9,0.5c-0.2,0.3-0.3,0.7-0.3,1.3v0.3c0,0.6,0.1,1,0.3,1.3c0.2,0.3,0.5,0.5,0.9,0.5
108
- c0.4,0,0.7-0.2,0.9-0.5s0.3-0.8,0.3-1.3V12.9z"/>
109
- <path class="st0" d="M182.6,13.8h-0.9v2.1h-1.2v-5.7h2.1c0.7,0,1.2,0.1,1.5,0.4c0.4,0.3,0.5,0.7,0.5,1.3c0,0.4-0.1,0.7-0.3,1
110
- c-0.2,0.3-0.4,0.5-0.8,0.6l1.2,2.3v0.1h-1.3L182.6,13.8z M181.6,12.8h0.9c0.3,0,0.5-0.1,0.7-0.2c0.2-0.1,0.2-0.4,0.2-0.6
111
- c0-0.3-0.1-0.5-0.2-0.6c-0.2-0.2-0.4-0.2-0.7-0.2h-0.9V12.8z"/>
112
- <path class="st0" d="M124.9,23.8h-2l-0.4,1.2h-1.2l2.1-5.7h1.1l2.1,5.7h-1.2L124.9,23.8z M123.2,22.9h1.4l-0.7-2.1L123.2,22.9z"/>
113
- <path class="st0" d="M133.5,23.1c0,0.6-0.3,1.1-0.7,1.4c-0.4,0.3-0.9,0.5-1.6,0.5c-0.7,0-1.3-0.2-1.7-0.7c-0.4-0.5-0.6-1.2-0.6-2
114
- v-0.3c0-0.5,0.1-1,0.3-1.4c0.2-0.4,0.5-0.7,0.8-1c0.4-0.2,0.8-0.3,1.2-0.3c0.7,0,1.2,0.2,1.6,0.5c0.4,0.3,0.6,0.8,0.7,1.5h-1.2
115
- c0-0.4-0.1-0.6-0.3-0.8c-0.2-0.2-0.4-0.2-0.8-0.2c-0.4,0-0.7,0.1-0.9,0.4c-0.2,0.3-0.3,0.7-0.3,1.3v0.4c0,0.6,0.1,1.1,0.3,1.3
116
- c0.2,0.3,0.5,0.4,0.9,0.4c0.4,0,0.6-0.1,0.8-0.2c0.2-0.2,0.3-0.4,0.3-0.8H133.5z"/>
117
- <path class="st0" d="M135.4,24h2.5V25h-3.6v-5.7h1.2V24z"/>
118
- <path class="st0" d="M139.8,25h-1.2v-5.7h1.2V25z"/>
119
- <path class="st0" d="M142.4,19.3l1.5,4.1l1.4-4.1h1.5V25h-1.2v-1.5l0.1-2.7l-1.5,4.2h-0.8l-1.5-4.2l0.1,2.7V25h-1.2v-5.7H142.4z"
120
- />
121
- <path class="st0" d="M151,23.8h-2l-0.4,1.2h-1.2l2.1-5.7h1.1l2.1,5.7h-1.2L151,23.8z M149.3,22.9h1.4l-0.7-2.1L149.3,22.9z"/>
122
- <path class="st0" d="M157,20.2h-1.7V25h-1.2v-4.7h-1.7v-0.9h4.6V20.2z"/>
123
- <path class="st0" d="M161,22.5h-2.2V24h2.6V25h-3.8v-5.7h3.8v0.9h-2.6v1.3h2.2V22.5z"/>
124
- <path class="st0" d="M164.2,23H162v-0.9h2.2V23z"/>
125
- <path class="st0" d="M167.3,22.9h-0.9V25h-1.2v-5.7h2.1c0.7,0,1.2,0.1,1.5,0.4c0.4,0.3,0.5,0.7,0.5,1.3c0,0.4-0.1,0.7-0.3,1
126
- c-0.2,0.3-0.4,0.5-0.8,0.6l1.2,2.3V25h-1.3L167.3,22.9z M166.3,21.9h0.9c0.3,0,0.5-0.1,0.7-0.2c0.2-0.1,0.2-0.4,0.2-0.6
127
- c0-0.3-0.1-0.5-0.2-0.6c-0.2-0.2-0.4-0.2-0.7-0.2h-0.9V21.9z"/>
128
- <path class="st0" d="M173.7,22.5h-2.2V24h2.6V25h-3.8v-5.7h3.8v0.9h-2.6v1.3h2.2V22.5z"/>
129
- <path class="st0" d="M177.7,23.5c0-0.2-0.1-0.4-0.2-0.5c-0.2-0.1-0.4-0.2-0.8-0.4c-0.4-0.1-0.7-0.3-1-0.4c-0.6-0.3-1-0.8-1-1.4
130
- c0-0.3,0.1-0.6,0.3-0.8c0.2-0.2,0.4-0.4,0.7-0.6c0.3-0.1,0.7-0.2,1.1-0.2c0.4,0,0.8,0.1,1.1,0.2c0.3,0.1,0.6,0.4,0.7,0.6
131
- c0.2,0.3,0.3,0.6,0.3,0.9h-1.2c0-0.3-0.1-0.5-0.2-0.6c-0.2-0.1-0.4-0.2-0.7-0.2c-0.3,0-0.5,0.1-0.7,0.2c-0.2,0.1-0.2,0.3-0.2,0.5
132
- c0,0.2,0.1,0.3,0.3,0.5c0.2,0.1,0.5,0.2,0.8,0.3c0.7,0.2,1.1,0.4,1.4,0.7c0.3,0.3,0.5,0.7,0.5,1.1c0,0.5-0.2,0.9-0.6,1.2
133
- c-0.4,0.3-0.9,0.4-1.5,0.4c-0.4,0-0.8-0.1-1.2-0.2c-0.4-0.2-0.6-0.4-0.8-0.7c-0.2-0.3-0.3-0.6-0.3-1h1.2c0,0.6,0.4,0.9,1.1,0.9
134
- c0.3,0,0.5-0.1,0.6-0.2C177.6,23.8,177.7,23.7,177.7,23.5z"/>
135
- <path class="st0" d="M180.9,25h-1.2v-5.7h1.2V25z"/>
136
- <path class="st0" d="M183.1,24h2.5V25h-3.6v-5.7h1.2V24z"/>
137
- <path class="st0" d="M187.5,25h-1.2v-5.7h1.2V25z"/>
138
- <path class="st0" d="M192,22.5h-2.2V24h2.6V25h-3.8v-5.7h3.8v0.9h-2.6v1.3h2.2V22.5z"/>
139
- <path class="st0" d="M197.6,25h-1.2l-2.3-3.7V25H193v-5.7h1.2l2.3,3.7v-3.7h1.2V25z"/>
140
- <path class="st0" d="M202.9,20.2h-1.7V25H200v-4.7h-1.7v-0.9h4.6V20.2z"/>
141
- <path class="st0" d="M125.1,31.6h-2.2v1.5h2.6v0.9h-3.8v-5.7h3.8v0.9h-2.6v1.3h2.2V31.6z"/>
142
- <path class="st0" d="M130.5,28.4v3.7c0,0.6-0.2,1.1-0.6,1.5c-0.4,0.4-0.9,0.5-1.6,0.5c-0.7,0-1.2-0.2-1.6-0.5
143
- c-0.4-0.3-0.6-0.8-0.6-1.4v-3.8h1.2v3.7c0,0.4,0.1,0.6,0.3,0.8c0.2,0.2,0.4,0.3,0.7,0.3c0.7,0,1-0.3,1-1v-3.8H130.5z"/>
144
- <path class="st0" d="M133.5,32h-0.9v2.1h-1.2v-5.7h2.1c0.7,0,1.2,0.1,1.5,0.4c0.4,0.3,0.5,0.7,0.5,1.3c0,0.4-0.1,0.7-0.3,1
145
- c-0.2,0.3-0.4,0.5-0.8,0.6l1.2,2.3v0.1h-1.3L133.5,32z M132.6,31.1h0.9c0.3,0,0.5-0.1,0.7-0.2c0.2-0.1,0.2-0.4,0.2-0.6
146
- c0-0.3-0.1-0.5-0.2-0.6s-0.4-0.2-0.7-0.2h-0.9V31.1z"/>
147
- <path class="st0" d="M141.1,31.4c0,0.6-0.1,1-0.3,1.5c-0.2,0.4-0.5,0.7-0.8,1c-0.4,0.2-0.8,0.3-1.3,0.3c-0.5,0-0.9-0.1-1.3-0.3
148
- c-0.4-0.2-0.7-0.5-0.9-1c-0.2-0.4-0.3-0.9-0.3-1.4v-0.3c0-0.6,0.1-1,0.3-1.5c0.2-0.4,0.5-0.7,0.9-1c0.4-0.2,0.8-0.3,1.3-0.3
149
- c0.5,0,0.9,0.1,1.3,0.3c0.4,0.2,0.6,0.6,0.9,1c0.2,0.4,0.3,0.9,0.3,1.5V31.4z M139.9,31.1c0-0.6-0.1-1-0.3-1.4
150
- c-0.2-0.3-0.5-0.5-0.9-0.5c-0.4,0-0.7,0.2-0.9,0.5c-0.2,0.3-0.3,0.7-0.3,1.3v0.3c0,0.6,0.1,1,0.3,1.3c0.2,0.3,0.5,0.5,0.9,0.5
151
- c0.4,0,0.7-0.2,0.9-0.5c0.2-0.3,0.3-0.8,0.3-1.3V31.1z"/>
152
- <path class="st0" d="M143.1,32.1v2H142v-5.7h2.2c0.4,0,0.8,0.1,1.1,0.2s0.6,0.4,0.7,0.7c0.2,0.3,0.3,0.6,0.3,1
153
- c0,0.6-0.2,1-0.6,1.3c-0.4,0.3-0.9,0.5-1.6,0.5H143.1z M143.1,31.1h1c0.3,0,0.5-0.1,0.7-0.2c0.2-0.1,0.2-0.4,0.2-0.6
154
- c0-0.3-0.1-0.5-0.2-0.7c-0.2-0.2-0.4-0.3-0.7-0.3h-1.1V31.1z"/>
155
- <path class="st0" d="M150.5,31.6h-2.2v1.5h2.6v0.9h-3.8v-5.7h3.8v0.9h-2.6v1.3h2.2V31.6z"/>
156
- </g>
157
- <g>
158
-
159
- <linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="-9.3347" y1="114.2806" x2="7.9797" y2="114.2806" gradientTransform="matrix(0.9998 -2.141162e-02 2.141162e-02 0.9998 12.5711 -105.5454)">
160
- <stop offset="0" style="stop-color:#68ACA2"/>
161
- <stop offset="1" style="stop-color:#4A9287"/>
162
- </linearGradient>
163
- <path class="st1" d="M15.8,8.2L15.8,8.2L15.8,8.2c-0.2-0.2-0.4-0.4-0.5-0.7c-1.4-2.6-4.5-5-9.7-3.9c3,1.1,1.3,5.3,5.9,7
164
- c0.8,0.3,1.5,0.8,2.1,1.3l1.2,1.1c2.1,2,4.5,1.1,5.8-0.3l2.3-2.5C19.6,12.6,15.8,8.2,15.8,8.2z"/>
165
- <path class="st2" d="M15.8,8.2c1.7,1.6,1.9,1.6,3.6-0.1l4.3-4.6c2,1.8,3.2,2.7,1.1,4.9L23,10.3C19.6,12.6,15.8,8.2,15.8,8.2z"/>
166
- <path class="st2" d="M19.4,4.5c1-1.1,1-2.8-0.1-3.8c-1.1-1-2.8-1-3.8,0.1c-1,1.1-1,2.8,0.1,3.8C16.7,5.6,18.4,5.6,19.4,4.5z"/>
167
- <g>
168
- <path class="st3" d="M14.6,10.7c-0.6-1.3-1.5-2.5-2.5-3.5c-1.3-1.4-2.7-2.4-4.9-3.1l0,0c3,1.3,4.4,2.7,6.2,5.1L14.6,10.7
169
- L14.6,10.7z"/>
170
- <line class="st3" x1="13.3" y1="6.7" x2="13.3" y2="6.7"/>
171
- </g>
172
- </g>
173
- <g>
174
-
175
- <linearGradient id="SVGID_00000099651853801439593270000009162195687036646301_" gradientUnits="userSpaceOnUse" x1="-4.1983" y1="131.1247" x2="13.1161" y2="131.1247" gradientTransform="matrix(0.9998 -2.141162e-02 2.141162e-02 0.9998 12.5711 -105.5454)">
176
- <stop offset="0" style="stop-color:#68ACA2"/>
177
- <stop offset="1" style="stop-color:#4A9287"/>
178
- </linearGradient>
179
- <path style="fill-rule:evenodd;clip-rule:evenodd;fill:url(#SVGID_00000099651853801439593270000009162195687036646301_);" d="
180
- M18.4,26L18.4,26L18.4,26c0.2,0.2,0.4,0.4,0.5,0.7c1.4,2.6,4.5,5,9.7,3.9c-3-1.1-1.3-5.3-5.9-7c-0.8-0.3-1.5-0.8-2.1-1.3l-1.2-1.1
181
- c-2.1-2-4.5-1.1-5.8,0.3l-2.3,2.5C14.6,21.6,18.4,26,18.4,26z"/>
182
-
183
- <linearGradient id="SVGID_00000085248305237230361540000011166907915524265600_" gradientUnits="userSpaceOnUse" x1="-9856.4629" y1="-1230.1086" x2="-9849.3242" y2="-1237.2477" gradientTransform="matrix(-0.9998 2.141162e-02 -2.141162e-02 -0.9998 -9864.999 -994.6747)">
184
- <stop offset="5.154640e-03" style="stop-color:#18304F"/>
185
- <stop offset="1" style="stop-color:#2F6BAF"/>
186
- </linearGradient>
187
- <path style="fill-rule:evenodd;clip-rule:evenodd;fill:url(#SVGID_00000085248305237230361540000011166907915524265600_);" d="
188
- M18.4,26c-1.7-1.6-1.9-1.6-3.6,0.1l-4.3,4.6c-2-1.8-3.2-2.7-1.1-4.9l1.8-1.9C14.6,21.6,18.4,26,18.4,26z"/>
189
- <path class="st2" d="M14.8,29.7c-1,1.1-1,2.8,0.1,3.8c1.1,1,2.8,1,3.8-0.1c1-1.1,1-2.8-0.1-3.8C17.5,28.5,15.8,28.6,14.8,29.7z"/>
190
- <g>
191
- <path class="st3" d="M19.5,23.4c0.6,1.3,1.5,2.5,2.5,3.5c1.3,1.4,2.7,2.4,4.9,3.1l0,0c-3-1.3-4.4-2.7-6.2-5.1L19.5,23.4
192
- L19.5,23.4z"/>
193
- <line class="st3" x1="20.9" y1="27.5" x2="20.9" y2="27.5"/>
194
- </g>
195
- </g>
196
- <g>
197
-
198
- <linearGradient id="SVGID_00000039843924412303729850000001200730030714720392_" gradientUnits="userSpaceOnUse" x1="-4171.2041" y1="-5572.6338" x2="-4153.8901" y2="-5572.6338" gradientTransform="matrix(2.141162e-02 0.9998 -0.9998 2.141162e-02 -5456.7754 4295.2524)">
199
- <stop offset="0" style="stop-color:#68ACA2"/>
200
- <stop offset="1" style="stop-color:#4A9287"/>
201
- </linearGradient>
202
- <path style="fill-rule:evenodd;clip-rule:evenodd;fill:url(#SVGID_00000039843924412303729850000001200730030714720392_);" d="
203
- M26,15.8L26,15.8L26,15.8c0.2-0.2,0.4-0.4,0.7-0.5c2.6-1.4,5-4.5,3.9-9.7c-1.1,3-5.3,1.3-7,5.9c-0.3,0.8-0.8,1.5-1.3,2.1l-1.1,1.2
204
- c-2,2.1-1.1,4.5,0.3,5.8l2.5,2.3C21.6,19.6,26,15.8,26,15.8z"/>
205
- <path class="st2" d="M26,15.8c-1.6,1.7-1.6,1.9,0.1,3.6l4.6,4.3c-1.8,2-2.7,3.2-4.9,1.1L23.9,23C21.6,19.6,26,15.8,26,15.8z"/>
206
- <path class="st2" d="M29.7,19.4c1.1,1,2.8,1,3.8-0.1c1-1.1,1-2.8-0.1-3.8c-1.1-1-2.8-1-3.8,0.1C28.5,16.7,28.6,18.4,29.7,19.4z"/>
207
- <g>
208
- <path class="st3" d="M23.4,14.6c1.3-0.6,2.5-1.5,3.5-2.5c1.4-1.3,2.4-2.7,3.1-4.9l0,0c-1.3,3-2.7,4.4-5.1,6.2L23.4,14.6
209
- L23.4,14.6z"/>
210
- <line class="st3" x1="27.5" y1="13.3" x2="27.5" y2="13.3"/>
211
- </g>
212
- </g>
213
- <g>
214
-
215
- <linearGradient id="SVGID_00000156547888875951700950000014469192736794511514_" gradientUnits="userSpaceOnUse" x1="-4166.0679" y1="-5555.7896" x2="-4148.7534" y2="-5555.7896" gradientTransform="matrix(2.141162e-02 0.9998 -0.9998 2.141162e-02 -5456.7754 4295.2524)">
216
- <stop offset="0" style="stop-color:#68ACA2"/>
217
- <stop offset="1" style="stop-color:#4A9287"/>
218
- </linearGradient>
219
- <path style="fill-rule:evenodd;clip-rule:evenodd;fill:url(#SVGID_00000156547888875951700950000014469192736794511514_);" d="
220
- M8.2,18.4L8.2,18.4L8.2,18.4c-0.2,0.2-0.4,0.4-0.7,0.5c-2.6,1.4-5,4.5-3.9,9.7c1.1-3,5.3-1.3,7-5.9c0.3-0.8,0.8-1.5,1.3-2.1
221
- l1.1-1.2c2-2.1,1.1-4.5-0.3-5.8l-2.5-2.3C12.6,14.6,8.2,18.4,8.2,18.4z"/>
222
- <path class="st2" d="M8.2,18.4c1.6-1.7,1.6-1.9-0.1-3.6l-4.6-4.3c1.8-2,2.7-3.2,4.9-1.1l1.9,1.8C12.6,14.6,8.2,18.4,8.2,18.4z"/>
223
- <path class="st2" d="M4.5,14.8c-1.1-1-2.8-1-3.8,0.1c-1,1.1-1,2.8,0.1,3.8c1.1,1,2.8,1,3.8-0.1C5.6,17.5,5.6,15.8,4.5,14.8z"/>
224
- <g>
225
- <path class="st3" d="M10.7,19.5C9.4,20.2,8.2,21,7.2,22c-1.4,1.3-2.4,2.7-3.1,4.9l0,0c1.3-3,2.7-4.4,5.1-6.2L10.7,19.5L10.7,19.5
226
- z"/>
227
- <line class="st3" x1="6.7" y1="20.9" x2="6.7" y2="20.9"/>
228
- </g>
229
- </g>
230
- </g>
231
- </svg>
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" version="1.1" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 205.7 34.2">
3
+ <defs>
4
+ <style>
5
+ .cls-1, .cls-2, .cls-3, .cls-4, .cls-5, .cls-6, .cls-7, .cls-8, .cls-9 {
6
+ stroke-width: 0px;
7
+ }
8
+
9
+ .cls-1, .cls-2, .cls-4, .cls-5, .cls-6, .cls-7, .cls-9 {
10
+ fill-rule: evenodd;
11
+ }
12
+
13
+ .cls-1, .cls-8 {
14
+ fill: #fff;
15
+ }
16
+
17
+ .cls-2 {
18
+ fill: url(#linear-gradient-3);
19
+ }
20
+
21
+ .cls-3 {
22
+ fill: #289588;
23
+ }
24
+
25
+ .cls-4 {
26
+ fill: url(#linear-gradient);
27
+ }
28
+
29
+ .cls-5 {
30
+ fill: url(#linear-gradient-2);
31
+ }
32
+
33
+ .cls-6 {
34
+ fill: url(#linear-gradient-5);
35
+ }
36
+
37
+ .cls-7 {
38
+ fill: #084c7e;
39
+ }
40
+
41
+ .cls-9 {
42
+ fill: url(#linear-gradient-4);
43
+ }
44
+ </style>
45
+ <linearGradient id="linear-gradient" x1="-9.3" y1="114.3" x2="8" y2="114.3" gradientTransform="translate(12.6 -105.5) rotate(-1.2)" gradientUnits="userSpaceOnUse">
46
+ <stop offset="0" stop-color="#68aca2"/>
47
+ <stop offset="1" stop-color="#4a9287"/>
48
+ </linearGradient>
49
+ <linearGradient id="linear-gradient-2" x1="-4.2" y1="131.1" x2="13.1" y2="131.1" xlink:href="#linear-gradient"/>
50
+ <linearGradient id="linear-gradient-3" x1="-9856.5" y1="-1230.1" x2="-9849.3" y2="-1237.2" gradientTransform="translate(-9865 -994.7) rotate(178.8)" gradientUnits="userSpaceOnUse">
51
+ <stop offset="0" stop-color="#18304f"/>
52
+ <stop offset="1" stop-color="#2f6baf"/>
53
+ </linearGradient>
54
+ <linearGradient id="linear-gradient-4" x1="-4171.2" y1="-5572.6" x2="-4153.9" y2="-5572.6" gradientTransform="translate(-5456.8 4295.3) rotate(88.8)" xlink:href="#linear-gradient"/>
55
+ <linearGradient id="linear-gradient-5" x1="-4166.1" y1="-5555.8" x2="-4148.8" y2="-5555.8" gradientTransform="translate(-5456.8 4295.3) rotate(88.8)" xlink:href="#linear-gradient"/>
56
+ </defs>
57
+ <g>
58
+ <path class="cls-3" d="M53.2,10.5c0,.9-.3,1.8-.8,2.5-.5.7-1.1,1.3-2,1.7-.8.4-1.8.6-2.9.6-1.8,0-3.2-.6-4.2-1.7-1-1.2-1.5-2.8-1.5-4.9v-.7c0-1.3.2-2.5.7-3.5.5-1,1.1-1.8,2-2.3.9-.5,1.9-.8,3-.8,1.6,0,3,.4,4,1.3,1,.9,1.6,2.1,1.7,3.6h-3.3c0-.8-.2-1.4-.6-1.8-.4-.4-1-.5-1.8-.5s-1.4.3-1.8.9c-.4.6-.6,1.6-.6,2.9v1c0,1.4.2,2.5.5,3.1.4.6,1,.9,1.9.9s1.3-.2,1.7-.5c.4-.4.6-.9.6-1.7h3.2Z"/>
59
+ <path class="cls-3" d="M58.4,15h-3.1V.8h3.1v14.3Z"/>
60
+ <path class="cls-3" d="M60.8,2.4c0-.4.2-.8.5-1.1.3-.3.7-.4,1.3-.4s.9.1,1.3.4c.3.3.5.7.5,1.1s-.2.8-.5,1.1c-.3.3-.7.4-1.3.4s-.9-.1-1.3-.4c-.3-.3-.5-.7-.5-1.1ZM64.1,15h-3.1V5h3.1v10.1Z"/>
61
+ <path class="cls-3" d="M69.5,5v1.2c.8-.9,1.8-1.4,3-1.4s2.1.5,2.6,1.5c.7-1,1.7-1.5,3-1.5,2,0,3.1,1.2,3.1,3.7v6.5h-3.1v-6.3c0-.5,0-.9-.3-1.1-.2-.2-.5-.4-.9-.4s-1.1.3-1.4.8h0v7h-3.1v-6.3c0-.5,0-.9-.3-1.1-.2-.2-.5-.4-1-.4s-1.1.3-1.4.8v7h-3.1V5h2.9Z"/>
62
+ <path class="cls-3" d="M89,15c-.1-.2-.2-.5-.3-.9-.6.7-1.4,1.1-2.4,1.1s-1.8-.3-2.4-.9c-.7-.6-1-1.3-1-2.2s.4-1.9,1.2-2.5c.8-.6,2-.8,3.5-.8h1v-.5c0-.9-.4-1.4-1.2-1.4s-1.1.4-1.1,1.1h-3.1c0-1,.4-1.8,1.2-2.4s1.9-.9,3.2-.9,2.3.3,3,.9c.7.6,1.1,1.5,1.1,2.6v4.5c0,.9.2,1.6.4,2.1v.2h-3.1ZM87.1,13c.4,0,.7,0,1-.3.3-.2.4-.4.6-.6v-1.6h-.9c-1.1,0-1.6.5-1.6,1.5s0,.5.3.7c.2.2.4.3.7.3Z"/>
63
+ <path class="cls-3" d="M97.6,2.5v2.5h1.7v2.2h-1.7v4.6c0,.4,0,.6.2.8.1.1.4.2.8.2s.6,0,.8,0v2.2c-.6.2-1.2.3-1.8.3-1.1,0-1.9-.3-2.4-.8-.5-.5-.8-1.3-.8-2.3v-5h-1.3v-2.2h1.3v-2.5h3.1Z"/>
64
+ <path class="cls-3" d="M105.8,15.2c-1.5,0-2.8-.5-3.7-1.4-1-.9-1.4-2.1-1.4-3.6v-.3c0-1,.2-1.9.6-2.7.4-.8.9-1.4,1.7-1.8.7-.4,1.6-.6,2.6-.6s2.5.4,3.3,1.3c.8.9,1.2,2.1,1.2,3.7v1.2h-6.2c.1.6.4,1,.7,1.3.4.3.9.5,1.5.5,1,0,1.8-.3,2.3-1l1.4,1.7c-.4.5-.9,1-1.7,1.3s-1.5.5-2.3.5ZM105.5,7.2c-.9,0-1.5.6-1.6,1.8h3.2v-.2c0-.5-.1-.9-.4-1.2-.3-.3-.6-.4-1.1-.4Z"/>
65
+ <path class="cls-3" d="M56.4,31.5h-4.5l-.8,2.5h-3.5l5-13.5h3.1l5,13.5h-3.5l-.8-2.5ZM52.7,29h2.9l-1.5-4.7-1.5,4.7Z"/>
66
+ <path class="cls-3" d="M61.8,34.1v-13.5h4.4c1.2,0,2.3.3,3.2.8,1,.5,1.7,1.3,2.2,2.3.5,1,.8,2.1.8,3.3v.6c0,1.2-.3,2.4-.8,3.3-.5,1-1.3,1.8-2.2,2.3-1,.6-2,.8-3.2.8h-4.5ZM65,23v8.5h1.1c.9,0,1.7-.3,2.2-1,.5-.7.8-1.7.8-3v-.6c0-1.3-.3-2.3-.8-3-.5-.7-1.2-1-2.2-1h-1.1Z"/>
67
+ <path class="cls-3" d="M81.8,31.5h-4.5l-.8,2.5h-3.5l5-13.5h3.1l5,13.5h-3.5l-.8-2.5ZM78.1,29h2.9l-1.5-4.7-1.5,4.7Z"/>
68
+ <path class="cls-3" d="M90.4,29.5v4.6h-3.3v-13.5h5.4c1,0,2,.2,2.7.6.8.4,1.4.9,1.8,1.6.4.7.7,1.5.7,2.4,0,1.3-.5,2.4-1.4,3.2-.9.8-2.2,1.2-3.9,1.2h-2.1ZM90.4,26.9h2.1c.6,0,1.1-.2,1.4-.5.3-.3.5-.8.5-1.3s-.2-1.1-.5-1.5c-.3-.4-.8-.6-1.4-.6h-2.2v3.9Z"/>
69
+ <path class="cls-3" d="M110.2,23h-4.1v11h-3.3v-11h-4v-2.5h11.3v2.5Z"/>
70
+ </g>
71
+ <g>
72
+ <path class="cls-3" d="M124.6,5.2c0-.2,0-.4-.2-.5-.2-.1-.4-.2-.8-.4s-.7-.3-1-.4c-.6-.3-1-.8-1-1.4s0-.6.3-.8c.2-.2.4-.4.7-.6.3-.1.7-.2,1.1-.2s.8,0,1.1.2c.3.1.6.4.7.6s.3.6.3.9h-1.2c0-.3,0-.5-.2-.6-.2-.1-.4-.2-.7-.2s-.5,0-.7.2-.2.3-.2.5,0,.3.3.5.5.2.8.3c.7.2,1.1.4,1.4.7.3.3.5.7.5,1.1s-.2.9-.6,1.2c-.4.3-.9.4-1.5.4s-.8,0-1.2-.2c-.4-.2-.6-.4-.8-.7-.2-.3-.3-.6-.3-1h1.2c0,.6.4.9,1.1.9s.5,0,.6-.2c.2-.1.2-.3.2-.5Z"/>
73
+ <path class="cls-3" d="M131.2,6.7h-1.2v-2.4h-2.3v2.4h-1.2V1.1h1.2v2.3h2.3V1.1h1.2v5.7Z"/>
74
+ <path class="cls-3" d="M135.5,5.6h-2l-.4,1.2h-1.2l2.1-5.7h1.1l2.1,5.7h-1.2l-.4-1.2ZM133.7,4.6h1.4l-.7-2.1-.7,2.1Z"/>
75
+ <path class="cls-3" d="M139.7,4.6h-.9v2.1h-1.2V1.1h2.1c.7,0,1.2.1,1.5.4.4.3.5.7.5,1.3s0,.7-.3,1c-.2.3-.4.5-.8.6l1.2,2.3h0c0,0-1.3,0-1.3,0l-1.1-2.1ZM138.8,3.7h.9c.3,0,.5,0,.7-.2.2-.1.2-.4.2-.6s0-.5-.2-.6-.4-.2-.7-.2h-.9v1.7Z"/>
76
+ <path class="cls-3" d="M143.9,6.7h-1.2V1.1h1.2v5.7Z"/>
77
+ <path class="cls-3" d="M149.6,6.7h-1.2l-2.3-3.7v3.7h-1.2V1.1h1.2l2.3,3.7V1.1h1.2v5.7Z"/>
78
+ <path class="cls-3" d="M155.1,6c-.2.3-.5.4-.9.6-.4.1-.8.2-1.3.2s-.9-.1-1.3-.3c-.4-.2-.7-.5-.9-.9s-.3-.9-.3-1.4v-.4c0-.6,0-1.1.3-1.5.2-.4.5-.7.8-.9.4-.2.8-.3,1.3-.3s1.2.2,1.6.5c.4.3.6.8.7,1.4h-1.1c0-.3-.2-.6-.3-.7-.2-.2-.4-.2-.7-.2s-.7.1-.9.4c-.2.3-.3.7-.3,1.3v.4c0,.6.1,1,.3,1.3.2.3.6.5,1,.5s.7,0,.9-.3v-1h-1.1v-.9h2.2v2.3Z"/>
79
+ <path class="cls-3" d="M161.2,5.6h-2l-.4,1.2h-1.2l2.1-5.7h1.1l2.1,5.7h-1.2l-.4-1.2ZM159.5,4.6h1.4l-.7-2.1-.7,2.1Z"/>
80
+ <path class="cls-3" d="M163.4,6.7V1.1h1.7c.5,0,.9.1,1.3.3.4.2.7.5.9,1,.2.4.3.9.3,1.4v.3c0,.5-.1,1-.3,1.4-.2.4-.5.7-.9,1-.4.2-.8.3-1.3.3h-1.8ZM164.5,2v3.8h.6c.5,0,.8-.1,1-.4.2-.3.4-.7.4-1.3v-.3c0-.6-.1-1-.4-1.3-.2-.3-.6-.4-1-.4h-.6Z"/>
81
+ <path class="cls-3" d="M171.7,5.6h-2l-.4,1.2h-1.2l2.1-5.7h1.1l2.1,5.7h-1.2l-.4-1.2ZM170,4.6h1.4l-.7-2.1-.7,2.1Z"/>
82
+ <path class="cls-3" d="M175.1,4.7v2h-1.2V1.1h2.2c.4,0,.8,0,1.1.2s.6.4.7.7c.2.3.3.6.3,1,0,.6-.2,1-.6,1.3-.4.3-.9.5-1.6.5h-1ZM175.1,3.8h1c.3,0,.5,0,.7-.2s.2-.4.2-.6,0-.5-.2-.7c-.2-.2-.4-.3-.7-.3h-1.1v1.8Z"/>
83
+ <path class="cls-3" d="M183.3,2h-1.7v4.7h-1.2V2h-1.7v-.9h4.6v.9Z"/>
84
+ <path class="cls-3" d="M186.7,5.6h-2l-.4,1.2h-1.2l2.1-5.7h1.1l2.1,5.7h-1.2l-.4-1.2ZM184.9,4.6h1.4l-.7-2.1-.7,2.1Z"/>
85
+ <path class="cls-3" d="M192.6,2h-1.7v4.7h-1.2V2h-1.7v-.9h4.6v.9Z"/>
86
+ <path class="cls-3" d="M194.5,6.7h-1.2V1.1h1.2v5.7Z"/>
87
+ <path class="cls-3" d="M200.3,4c0,.6,0,1-.3,1.5s-.5.7-.8,1c-.4.2-.8.3-1.3.3s-.9-.1-1.3-.3c-.4-.2-.7-.5-.9-1s-.3-.9-.3-1.4v-.3c0-.6.1-1,.3-1.5.2-.4.5-.7.9-1,.4-.2.8-.3,1.3-.3s.9.1,1.3.3c.4.2.6.6.9,1,.2.4.3.9.3,1.5v.3ZM199.1,3.8c0-.6-.1-1-.3-1.4-.2-.3-.5-.5-.9-.5s-.7.2-.9.5c-.2.3-.3.7-.3,1.3v.3c0,.6.1,1,.3,1.3.2.3.5.5.9.5s.7-.2.9-.5c.2-.3.3-.8.3-1.3v-.3Z"/>
88
+ <path class="cls-3" d="M205.7,6.7h-1.2l-2.3-3.7v3.7h-1.2V1.1h1.2l2.3,3.7V1.1h1.2v5.7Z"/>
89
+ <path class="cls-3" d="M123.5,13.6l-.6.7v1.6h-1.2v-5.7h1.2v2.6l.5-.7,1.4-1.9h1.4l-2,2.5,2.1,3.1h-1.4l-1.5-2.3Z"/>
90
+ <path class="cls-3" d="M131.3,15.8h-1.2l-2.3-3.7v3.7h-1.2v-5.7h1.2l2.3,3.7v-3.7h1.2v5.7Z"/>
91
+ <path class="cls-3" d="M137,13.1c0,.6,0,1-.3,1.5s-.5.7-.8,1-.8.3-1.3.3-.9-.1-1.3-.3c-.4-.2-.7-.5-.9-1-.2-.4-.3-.9-.3-1.4v-.3c0-.6.1-1,.3-1.5.2-.4.5-.7.9-1,.4-.2.8-.3,1.3-.3s.9.1,1.3.3c.4.2.6.6.9,1,.2.4.3.9.3,1.5v.3ZM135.8,12.9c0-.6-.1-1-.3-1.4-.2-.3-.5-.5-.9-.5s-.7.2-.9.5c-.2.3-.3.7-.3,1.3v.3c0,.6.1,1,.3,1.3.2.3.5.5.9.5s.7-.2.9-.5c.2-.3.3-.8.3-1.3v-.3Z"/>
92
+ <path class="cls-3" d="M142.3,14.2l.8-4h1.2l-1.3,5.7h-1.2l-.9-3.8-.9,3.8h-1.2l-1.3-5.7h1.2l.8,4,.9-4h1l.9,4Z"/>
93
+ <path class="cls-3" d="M146,14.9h2.5v.9h-3.6v-5.7h1.2v4.7Z"/>
94
+ <path class="cls-3" d="M152.5,13.4h-2.2v1.5h2.6v.9h-3.8v-5.7h3.8v.9h-2.6v1.3h2.2v.9Z"/>
95
+ <path class="cls-3" d="M153.6,15.8v-5.7h1.7c.5,0,.9.1,1.3.3.4.2.7.5.9,1,.2.4.3.9.3,1.4v.3c0,.5-.1,1-.3,1.4-.2.4-.5.7-.9,1-.4.2-.8.3-1.3.3h-1.8ZM154.8,11.1v3.8h.6c.5,0,.8-.1,1-.4.2-.3.4-.7.4-1.3v-.3c0-.6-.1-1-.4-1.3-.2-.3-.6-.4-1-.4h-.6Z"/>
96
+ <path class="cls-3" d="M163.2,15.1c-.2.3-.5.4-.9.6-.4.1-.8.2-1.3.2s-.9-.1-1.3-.3c-.4-.2-.7-.5-.9-.9-.2-.4-.3-.9-.3-1.4v-.4c0-.6,0-1.1.3-1.5.2-.4.5-.7.8-.9.4-.2.8-.3,1.3-.3s1.2.2,1.6.5c.4.3.6.8.7,1.4h-1.1c0-.3-.2-.6-.3-.7-.2-.2-.4-.2-.7-.2s-.7.1-.9.4c-.2.3-.3.7-.3,1.3v.4c0,.6.1,1,.3,1.3.2.3.6.5,1,.5s.7,0,.9-.3v-1h-1.1v-.9h2.2v2.3Z"/>
97
+ <path class="cls-3" d="M167.6,13.4h-2.2v1.5h2.6v.9h-3.8v-5.7h3.8v.9h-2.6v1.3h2.2v.9Z"/>
98
+ <path class="cls-3" d="M174,13.5h-2.2v2.3h-1.2v-5.7h3.7v.9h-2.5v1.5h2.2v.9Z"/>
99
+ <path class="cls-3" d="M179.6,13.1c0,.6,0,1-.3,1.5-.2.4-.5.7-.8,1-.4.2-.8.3-1.3.3s-.9-.1-1.3-.3c-.4-.2-.7-.5-.9-1-.2-.4-.3-.9-.3-1.4v-.3c0-.6.1-1,.3-1.5.2-.4.5-.7.9-1,.4-.2.8-.3,1.3-.3s.9.1,1.3.3c.4.2.6.6.9,1,.2.4.3.9.3,1.5v.3ZM178.4,12.9c0-.6-.1-1-.3-1.4-.2-.3-.5-.5-.9-.5s-.7.2-.9.5c-.2.3-.3.7-.3,1.3v.3c0,.6.1,1,.3,1.3.2.3.5.5.9.5s.7-.2.9-.5.3-.8.3-1.3v-.3Z"/>
100
+ <path class="cls-3" d="M182.6,13.8h-.9v2.1h-1.2v-5.7h2.1c.7,0,1.2.1,1.5.4.4.3.5.7.5,1.3s0,.7-.3,1c-.2.3-.4.5-.8.6l1.2,2.3h0c0,0-1.3,0-1.3,0l-1.1-2.1ZM181.6,12.8h.9c.3,0,.5,0,.7-.2.2-.1.2-.4.2-.6s0-.5-.2-.6-.4-.2-.7-.2h-.9v1.7Z"/>
101
+ <path class="cls-3" d="M124.9,23.8h-2l-.4,1.2h-1.2l2.1-5.7h1.1l2.1,5.7h-1.2l-.4-1.2ZM123.2,22.9h1.4l-.7-2.1-.7,2.1Z"/>
102
+ <path class="cls-3" d="M133.5,23.1c0,.6-.3,1.1-.7,1.4-.4.3-.9.5-1.6.5s-1.3-.2-1.7-.7c-.4-.5-.6-1.2-.6-2v-.3c0-.5,0-1,.3-1.4.2-.4.5-.7.8-1,.4-.2.8-.3,1.2-.3s1.2.2,1.6.5c.4.3.6.8.7,1.5h-1.2c0-.4-.1-.6-.3-.8-.2-.2-.4-.2-.8-.2s-.7.1-.9.4c-.2.3-.3.7-.3,1.3v.4c0,.6,0,1.1.3,1.3.2.3.5.4.9.4s.6,0,.8-.2c.2-.2.3-.4.3-.8h1.2Z"/>
103
+ <path class="cls-3" d="M135.4,24h2.5v.9h-3.6v-5.7h1.2v4.7Z"/>
104
+ <path class="cls-3" d="M139.8,25h-1.2v-5.7h1.2v5.7Z"/>
105
+ <path class="cls-3" d="M142.4,19.3l1.5,4.1,1.4-4.1h1.5v5.7h-1.2v-4.2c.1,0-1.4,4.2-1.4,4.2h-.8l-1.5-4.2v2.7c.1,0,.1,1.5.1,1.5h-1.2v-5.7h1.5Z"/>
106
+ <path class="cls-3" d="M151,23.8h-2l-.4,1.2h-1.2l2.1-5.7h1.1l2.1,5.7h-1.2l-.4-1.2ZM149.3,22.9h1.4l-.7-2.1-.7,2.1Z"/>
107
+ <path class="cls-3" d="M157,20.2h-1.7v4.7h-1.2v-4.7h-1.7v-.9h4.6v.9Z"/>
108
+ <path class="cls-3" d="M161,22.5h-2.2v1.5h2.6v.9h-3.8v-5.7h3.8v.9h-2.6v1.3h2.2v.9Z"/>
109
+ <path class="cls-3" d="M164.2,23h-2.2v-.9h2.2v.9Z"/>
110
+ <path class="cls-3" d="M167.3,22.9h-.9v2.1h-1.2v-5.7h2.1c.7,0,1.2.1,1.5.4.4.3.5.7.5,1.3s0,.7-.3,1c-.2.3-.4.5-.8.6l1.2,2.3h0c0,0-1.3,0-1.3,0l-1.1-2.1ZM166.3,21.9h.9c.3,0,.5,0,.7-.2.2-.1.2-.4.2-.6s0-.5-.2-.6-.4-.2-.7-.2h-.9v1.7Z"/>
111
+ <path class="cls-3" d="M173.7,22.5h-2.2v1.5h2.6v.9h-3.8v-5.7h3.8v.9h-2.6v1.3h2.2v.9Z"/>
112
+ <path class="cls-3" d="M177.7,23.5c0-.2,0-.4-.2-.5-.2-.1-.4-.2-.8-.4-.4-.1-.7-.3-1-.4-.6-.3-1-.8-1-1.4s0-.6.3-.8c.2-.2.4-.4.7-.6.3-.1.7-.2,1.1-.2s.8,0,1.1.2c.3.1.6.4.7.6.2.3.3.6.3.9h-1.2c0-.3,0-.5-.2-.6-.2-.1-.4-.2-.7-.2s-.5,0-.7.2c-.2.1-.2.3-.2.5s0,.3.3.5c.2.1.5.2.8.3.7.2,1.1.4,1.4.7.3.3.5.7.5,1.1s-.2.9-.6,1.2c-.4.3-.9.4-1.5.4s-.8,0-1.2-.2-.6-.4-.8-.7c-.2-.3-.3-.6-.3-1h1.2c0,.6.4.9,1.1.9s.5,0,.6-.2c.2-.1.2-.3.2-.5Z"/>
113
+ <path class="cls-3" d="M180.9,25h-1.2v-5.7h1.2v5.7Z"/>
114
+ <path class="cls-3" d="M183.1,24h2.5v.9h-3.6v-5.7h1.2v4.7Z"/>
115
+ <path class="cls-3" d="M187.5,25h-1.2v-5.7h1.2v5.7Z"/>
116
+ <path class="cls-3" d="M192,22.5h-2.2v1.5h2.6v.9h-3.8v-5.7h3.8v.9h-2.6v1.3h2.2v.9Z"/>
117
+ <path class="cls-3" d="M197.6,25h-1.2l-2.3-3.7v3.7h-1.2v-5.7h1.2l2.3,3.7v-3.7h1.2v5.7Z"/>
118
+ <path class="cls-3" d="M202.9,20.2h-1.7v4.7h-1.2v-4.7h-1.7v-.9h4.6v.9Z"/>
119
+ <path class="cls-3" d="M125.1,31.6h-2.2v1.5h2.6v.9h-3.8v-5.7h3.8v.9h-2.6v1.3h2.2v.9Z"/>
120
+ <path class="cls-3" d="M130.5,28.4v3.7c0,.6-.2,1.1-.6,1.5s-.9.5-1.6.5-1.2-.2-1.6-.5c-.4-.3-.6-.8-.6-1.4v-3.8h1.2v3.7c0,.4,0,.6.3.8.2.2.4.3.7.3.7,0,1-.3,1-1v-3.8h1.2Z"/>
121
+ <path class="cls-3" d="M133.5,32h-.9v2.1h-1.2v-5.7h2.1c.7,0,1.2.1,1.5.4.4.3.5.7.5,1.3s0,.7-.3,1c-.2.3-.4.5-.8.6l1.2,2.3h0c0,0-1.3,0-1.3,0l-1.1-2.1ZM132.6,31.1h.9c.3,0,.5,0,.7-.2.2-.1.2-.4.2-.6s0-.5-.2-.6-.4-.2-.7-.2h-.9v1.7Z"/>
122
+ <path class="cls-3" d="M141.1,31.4c0,.6,0,1-.3,1.5-.2.4-.5.7-.8,1-.4.2-.8.3-1.3.3s-.9-.1-1.3-.3c-.4-.2-.7-.5-.9-1-.2-.4-.3-.9-.3-1.4v-.3c0-.6.1-1,.3-1.5.2-.4.5-.7.9-1,.4-.2.8-.3,1.3-.3s.9.1,1.3.3c.4.2.6.6.9,1,.2.4.3.9.3,1.5v.3ZM139.9,31.1c0-.6-.1-1-.3-1.4-.2-.3-.5-.5-.9-.5s-.7.2-.9.5c-.2.3-.3.7-.3,1.3v.3c0,.6.1,1,.3,1.3.2.3.5.5.9.5s.7-.2.9-.5.3-.8.3-1.3v-.3Z"/>
123
+ <path class="cls-3" d="M143.1,32.1v2h-1.2v-5.7h2.2c.4,0,.8,0,1.1.2s.6.4.7.7c.2.3.3.6.3,1,0,.6-.2,1-.6,1.3-.4.3-.9.5-1.6.5h-1ZM143.1,31.1h1c.3,0,.5,0,.7-.2s.2-.4.2-.6,0-.5-.2-.7c-.2-.2-.4-.3-.7-.3h-1.1v1.8Z"/>
124
+ <path class="cls-3" d="M150.5,31.6h-2.2v1.5h2.6v.9h-3.8v-5.7h3.8v.9h-2.6v1.3h2.2v.9Z"/>
125
+ </g>
126
+ <g>
127
+ <path class="cls-4" d="M15.8,8.2h0s0,0,0,0c-.2-.2-.4-.4-.5-.7-1.4-2.6-4.5-5-9.7-3.9,3,1.1,1.3,5.3,5.9,7s1.5.8,2.1,1.3l1.2,1.1c2.1,2,4.5,1.1,5.8-.3l2.3-2.5c-3.5,2.3-7.2-2.1-7.2-2.1Z"/>
128
+ <path class="cls-7" d="M15.8,8.2c1.7,1.6,1.9,1.6,3.6-.1l4.3-4.6c2,1.8,3.2,2.7,1.1,4.9l-1.8,1.9c-3.5,2.3-7.2-2.1-7.2-2.1Z"/>
129
+ <path class="cls-7" d="M19.4,4.5c1-1.1,1-2.8-.1-3.8-1.1-1-2.8-1-3.8.1-1,1.1-1,2.8.1,3.8,1.1,1,2.8,1,3.8-.1Z"/>
130
+ <g>
131
+ <path class="cls-1" d="M14.6,10.7c-.6-1.3-1.5-2.5-2.5-3.5s-2.7-2.4-4.9-3.1h0c3,1.4,4.4,2.7,6.2,5.1l1.2,1.5h0Z"/>
132
+ <line class="cls-8" x1="13.3" y1="6.7" x2="13.3" y2="6.7"/>
133
+ </g>
134
+ </g>
135
+ <g>
136
+ <path class="cls-5" d="M18.4,26h0s0,0,0,0c.2.2.4.4.5.7,1.4,2.6,4.5,5,9.7,3.9-3-1.1-1.3-5.3-5.9-7-.8-.3-1.5-.8-2.1-1.3l-1.2-1.1c-2.1-2-4.5-1.1-5.8.3l-2.3,2.5c3.5-2.3,7.2,2.1,7.2,2.1Z"/>
137
+ <path class="cls-2" d="M18.4,26c-1.7-1.6-1.9-1.6-3.6.1l-4.3,4.6c-2-1.8-3.2-2.7-1.1-4.9l1.8-1.9c3.5-2.3,7.2,2.1,7.2,2.1Z"/>
138
+ <path class="cls-7" d="M14.8,29.7c-1,1.1-1,2.8.1,3.8,1.1,1,2.8,1,3.8-.1,1-1.1,1-2.8-.1-3.8-1.1-1-2.8-1-3.8.1Z"/>
139
+ <g>
140
+ <path class="cls-1" d="M19.5,23.4c.6,1.3,1.5,2.5,2.5,3.5s2.7,2.4,4.9,3.1h0c-3-1.4-4.4-2.7-6.2-5.1l-1.2-1.5h0Z"/>
141
+ <line class="cls-8" x1="20.9" y1="27.5" x2="20.9" y2="27.5"/>
142
+ </g>
143
+ </g>
144
+ <g>
145
+ <path class="cls-9" d="M26,15.8h0s0,0,0,0c.2-.2.4-.4.7-.5,2.6-1.4,5-4.5,3.9-9.7-1.1,3-5.3,1.3-7,5.9s-.8,1.5-1.3,2.1l-1.1,1.2c-2,2.1-1.1,4.5.3,5.8l2.5,2.3c-2.3-3.5,2.1-7.2,2.1-7.2Z"/>
146
+ <path class="cls-7" d="M26,15.8c-1.6,1.7-1.6,1.9.1,3.6l4.6,4.3c-1.8,2-2.7,3.2-4.9,1.1l-1.9-1.8c-2.3-3.5,2.1-7.2,2.1-7.2Z"/>
147
+ <path class="cls-7" d="M29.7,19.4c1.1,1,2.8,1,3.8-.1,1-1.1,1-2.8-.1-3.8-1.1-1-2.8-1-3.8.1-1,1.1-1,2.8.1,3.8Z"/>
148
+ <g>
149
+ <path class="cls-1" d="M23.4,14.6c1.3-.6,2.5-1.5,3.5-2.5s2.4-2.7,3.1-4.9h0c-1.3,3-2.7,4.4-5.1,6.2l-1.5,1.2h0Z"/>
150
+ <line class="cls-8" x1="27.5" y1="13.3" x2="27.5" y2="13.3"/>
151
+ </g>
152
+ </g>
153
+ <g>
154
+ <path class="cls-6" d="M8.2,18.4h0s0,0,0,0c-.2.2-.4.4-.7.5-2.6,1.4-5,4.5-3.9,9.7,1.1-3,5.3-1.3,7-5.9s.8-1.5,1.3-2.1l1.1-1.2c2-2.1,1.1-4.5-.3-5.8l-2.5-2.3c2.3,3.5-2.1,7.2-2.1,7.2Z"/>
155
+ <path class="cls-7" d="M8.2,18.4c1.6-1.7,1.6-1.9-.1-3.6l-4.6-4.3c1.8-2,2.7-3.2,4.9-1.1l1.9,1.8c2.3,3.5-2.1,7.2-2.1,7.2Z"/>
156
+ <path class="cls-7" d="M4.5,14.8c-1.1-1-2.8-1-3.8.1-1,1.1-1,2.8.1,3.8,1.1,1,2.8,1,3.8-.1,1-1.1,1-2.8-.1-3.8Z"/>
157
+ <g>
158
+ <path class="cls-1" d="M10.7,19.5c-1.3.6-2.5,1.5-3.5,2.5s-2.4,2.7-3.1,4.9h0c1.3-3,2.7-4.4,5.1-6.2l1.5-1.2h0Z"/>
159
+ <line class="cls-8" x1="6.7" y1="20.9" x2="6.7" y2="20.9"/>
160
+ </g>
161
+ </g>
162
+ </svg>
@@ -302,3 +302,17 @@ hr {
302
302
  }
303
303
  }
304
304
  }
305
+
306
+ .cca-newsitem-view,
307
+ .cca-event-view {
308
+ .news-date-info {
309
+ display: flex;
310
+ gap: 3px;
311
+ justify-content: flex-end;
312
+ }
313
+
314
+ .content-text p {
315
+ margin: 0em 0em 1em;
316
+ line-height: 1.5;
317
+ }
318
+ }