Alergenoen legenda sortzen du (#2)
* refactor: move to a new file * refactor: move to new file * refactor: extract custom hook * refactor: naming * refactor: naming * feat: produktu bakoitzaren alergenoak azaltzen ditu * feat: alergeno logoak margotzen ditu * feat: alergeno zerrenda margotzen du * fix: justifikazioa kentzen du * fix: maketazioa * fix: responsive * fix: maketazioa * fix: responsive * fix: nabigazio menuaren kokapena
@@ -97,7 +97,7 @@ module.exports = {
|
|||||||
{
|
{
|
||||||
resolve: `gatsby-plugin-google-fonts`,
|
resolve: `gatsby-plugin-google-fonts`,
|
||||||
options: {
|
options: {
|
||||||
fonts: [`almarai\:600`, `almarai\:300`],
|
fonts: [`almarai\:800`, `almarai\:300`],
|
||||||
display: 'swap',
|
display: 'swap',
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -133,7 +133,7 @@ const GainburuWrapper = styled.header`
|
|||||||
|
|
||||||
const Deskribapena = styled.p`
|
const Deskribapena = styled.p`
|
||||||
margin-bottom: ${rem(size.xlarge)};
|
margin-bottom: ${rem(size.xlarge)};
|
||||||
text-align: justify;
|
hyphens: auto;
|
||||||
|
|
||||||
${font.base()};
|
${font.base()};
|
||||||
|
|
||||||
|
|||||||
@@ -101,7 +101,7 @@ const NabigazioaWrapper = styled.div`
|
|||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
align-items: flex-end;
|
align-items: flex-end;
|
||||||
|
|
||||||
position: absolute;
|
position: fixed;
|
||||||
top: 0;
|
top: 0;
|
||||||
right: 0;
|
right: 0;
|
||||||
min-width: 300px;
|
min-width: 300px;
|
||||||
|
|||||||
12
front/src/domain/dtos/ProduktuaDTO.ts
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
import { AlergenoIdentifikadorea } from '../models/AlergenoIdentifikadorea';
|
||||||
|
|
||||||
|
export interface ProduktuaDTO {
|
||||||
|
id: string;
|
||||||
|
izena: string;
|
||||||
|
prezioa: number;
|
||||||
|
ekologikoa: boolean;
|
||||||
|
beganoa: boolean;
|
||||||
|
alergenoak: {
|
||||||
|
[alergenoa in AlergenoIdentifikadorea]: boolean;
|
||||||
|
};
|
||||||
|
}
|
||||||
29
front/src/domain/factories/produktuaFactory.ts
Normal file
@@ -0,0 +1,29 @@
|
|||||||
|
import { ProduktuaDTO } from '../dtos/ProduktuaDTO';
|
||||||
|
import { mapAlergenoIdentifikadoreaToIzena } from '../mappers/mapAlergenoIdentifikadoreaToIzena';
|
||||||
|
import { mapAlergenoIdentifikadoreaToZenbakia } from '../mappers/mapAlergenoIdentifikadoreaToZenbakia';
|
||||||
|
import { Alergenoa } from '../models/Alergenoa';
|
||||||
|
import { AlergenoIdentifikadorea } from '../models/AlergenoIdentifikadorea';
|
||||||
|
import { Produktua } from '../models/Produktua';
|
||||||
|
|
||||||
|
export function produktuaFactory(dto: ProduktuaDTO): Produktua {
|
||||||
|
return {
|
||||||
|
...dto,
|
||||||
|
alergenoak: mapAlergenoDTOToAlergenoZerrenda(dto.alergenoak),
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
function mapAlergenoDTOToAlergenoZerrenda(dto: {
|
||||||
|
[alergenoa in AlergenoIdentifikadorea]: boolean;
|
||||||
|
}): Alergenoa[] {
|
||||||
|
const alergenoIdentifikadoreak: AlergenoIdentifikadorea[] = Object.keys(
|
||||||
|
dto,
|
||||||
|
) as AlergenoIdentifikadorea[];
|
||||||
|
|
||||||
|
return alergenoIdentifikadoreak
|
||||||
|
.filter(identifikadorea => dto[identifikadorea])
|
||||||
|
.map<Alergenoa>(identifikadorea => ({
|
||||||
|
id: identifikadorea,
|
||||||
|
izena: mapAlergenoIdentifikadoreaToIzena(identifikadorea),
|
||||||
|
zenbakia: mapAlergenoIdentifikadoreaToZenbakia(identifikadorea),
|
||||||
|
}));
|
||||||
|
}
|
||||||
@@ -0,0 +1,24 @@
|
|||||||
|
import { AlergenoIdentifikadorea } from '../models/AlergenoIdentifikadorea';
|
||||||
|
|
||||||
|
export function mapAlergenoIdentifikadoreaToIzena(
|
||||||
|
identifikadorea: AlergenoIdentifikadorea,
|
||||||
|
): string {
|
||||||
|
const dictionary: { [key in AlergenoIdentifikadorea]: string } = {
|
||||||
|
apioa: 'Apioa',
|
||||||
|
arraina: 'Arraina',
|
||||||
|
arrautzak: 'Arrautzak',
|
||||||
|
esnekiak: 'Esnekiak',
|
||||||
|
fruituLehorrak: 'Fruitu Lehorrak',
|
||||||
|
glutena: 'Glutena',
|
||||||
|
kakahueteak: 'Kakahueteak',
|
||||||
|
krustazeoak: 'Krustazeoak',
|
||||||
|
lupinuak: 'Lupinuak',
|
||||||
|
moluskuak: 'Moluskuak',
|
||||||
|
sesamoa: 'Sesamoa',
|
||||||
|
soja: 'Soja',
|
||||||
|
ziapea: 'Ziapea',
|
||||||
|
sulfitoak: 'Sulfitoak',
|
||||||
|
};
|
||||||
|
|
||||||
|
return dictionary[identifikadorea];
|
||||||
|
}
|
||||||
@@ -0,0 +1,24 @@
|
|||||||
|
import { AlergenoIdentifikadorea } from '../models/AlergenoIdentifikadorea';
|
||||||
|
|
||||||
|
export function mapAlergenoIdentifikadoreaToZenbakia(
|
||||||
|
identifikadorea: AlergenoIdentifikadorea,
|
||||||
|
): string {
|
||||||
|
const dictionary: { [key in AlergenoIdentifikadorea]: string } = {
|
||||||
|
esnekiak: '1',
|
||||||
|
arrautzak: '2',
|
||||||
|
glutena: '3',
|
||||||
|
moluskuak: '4',
|
||||||
|
krustazeoak: '5',
|
||||||
|
arraina: '6',
|
||||||
|
lupinuak: '7',
|
||||||
|
fruituLehorrak: '8',
|
||||||
|
kakahueteak: '9',
|
||||||
|
sesamoa: '10',
|
||||||
|
soja: '11',
|
||||||
|
sulfitoak: '12',
|
||||||
|
apioa: '13',
|
||||||
|
ziapea: '14',
|
||||||
|
};
|
||||||
|
|
||||||
|
return dictionary[identifikadorea];
|
||||||
|
}
|
||||||
15
front/src/domain/models/AlergenoIdentifikadorea.ts
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
export type AlergenoIdentifikadorea =
|
||||||
|
| 'apioa'
|
||||||
|
| 'arraina'
|
||||||
|
| 'arrautzak'
|
||||||
|
| 'esnekiak'
|
||||||
|
| 'fruituLehorrak'
|
||||||
|
| 'glutena'
|
||||||
|
| 'kakahueteak'
|
||||||
|
| 'krustazeoak'
|
||||||
|
| 'lupinuak'
|
||||||
|
| 'moluskuak'
|
||||||
|
| 'sesamoa'
|
||||||
|
| 'soja'
|
||||||
|
| 'sulfitoak'
|
||||||
|
| 'ziapea';
|
||||||
7
front/src/domain/models/Alergenoa.ts
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
import { AlergenoIdentifikadorea } from './AlergenoIdentifikadorea';
|
||||||
|
|
||||||
|
export interface Alergenoa {
|
||||||
|
id: AlergenoIdentifikadorea;
|
||||||
|
izena: string;
|
||||||
|
zenbakia: string;
|
||||||
|
}
|
||||||
10
front/src/domain/models/Produktua.ts
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
import { Alergenoa } from './Alergenoa';
|
||||||
|
|
||||||
|
export interface Produktua {
|
||||||
|
id: string;
|
||||||
|
izena: string;
|
||||||
|
prezioa: number;
|
||||||
|
ekologikoa: boolean;
|
||||||
|
beganoa: boolean;
|
||||||
|
alergenoak: Alergenoa[];
|
||||||
|
}
|
||||||
@@ -1,431 +0,0 @@
|
|||||||
import { graphql, PageProps, useStaticQuery } from 'gatsby';
|
|
||||||
import React from 'react';
|
|
||||||
import { GlobalStyles } from '../ui/GlobalStyles';
|
|
||||||
|
|
||||||
import { Helmet } from 'react-helmet';
|
|
||||||
import { Gainburua } from '../components/Gainburua';
|
|
||||||
import { Container } from '../components/Container';
|
|
||||||
import styled from 'styled-components';
|
|
||||||
import { colors, font, fontWeight, size } from '../ui/theme';
|
|
||||||
|
|
||||||
import BeganoaLogo from '../assets/beganoa.svg';
|
|
||||||
import EkologikoaLogo from '../assets/ekologikoa.svg';
|
|
||||||
import { rem } from 'polished';
|
|
||||||
|
|
||||||
type Alergenoa =
|
|
||||||
| 'apioa'
|
|
||||||
| 'arraina'
|
|
||||||
| 'arrautzak'
|
|
||||||
| 'esnekiak'
|
|
||||||
| 'fruituLehorrak'
|
|
||||||
| 'glutena'
|
|
||||||
| 'kakahueteak'
|
|
||||||
| 'krustazeoak'
|
|
||||||
| 'lupinuak'
|
|
||||||
| 'moluskuak'
|
|
||||||
| 'sesamoa'
|
|
||||||
| 'soja'
|
|
||||||
| 'sulfitoak'
|
|
||||||
| 'ziapea';
|
|
||||||
|
|
||||||
interface Produktua {
|
|
||||||
id: string;
|
|
||||||
izena: string;
|
|
||||||
prezioa: number;
|
|
||||||
ekologikoa: boolean;
|
|
||||||
beganoa: boolean;
|
|
||||||
alergenoak: {
|
|
||||||
[alergenoa in Alergenoa]: boolean;
|
|
||||||
};
|
|
||||||
}
|
|
||||||
interface DataProps {
|
|
||||||
kafetegia: {
|
|
||||||
data: {
|
|
||||||
attributes: {
|
|
||||||
deskribapena: string;
|
|
||||||
izenburua: string;
|
|
||||||
edariBeroak: Produktua[];
|
|
||||||
infusioEkologikoak: Produktua[];
|
|
||||||
edariHotzak: Produktua[];
|
|
||||||
pikatzekoak: Produktua[];
|
|
||||||
gozoak: Produktua[];
|
|
||||||
anizkoJogurta: Produktua;
|
|
||||||
tostadak: Produktua[];
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
const Kafetegia: React.VFC<PageProps> = () => {
|
|
||||||
const {
|
|
||||||
kafetegia: {
|
|
||||||
data: {
|
|
||||||
attributes: {
|
|
||||||
izenburua,
|
|
||||||
deskribapena,
|
|
||||||
anizkoJogurta,
|
|
||||||
edariBeroak,
|
|
||||||
edariHotzak,
|
|
||||||
infusioEkologikoak,
|
|
||||||
pikatzekoak,
|
|
||||||
gozoak,
|
|
||||||
tostadak,
|
|
||||||
},
|
|
||||||
},
|
|
||||||
},
|
|
||||||
} = useStaticQuery<DataProps>(graphql`
|
|
||||||
{
|
|
||||||
kafetegia {
|
|
||||||
data {
|
|
||||||
attributes {
|
|
||||||
izenburua
|
|
||||||
deskribapena
|
|
||||||
anizkoJogurta {
|
|
||||||
alergenoak {
|
|
||||||
apioa
|
|
||||||
arraina
|
|
||||||
arrautzak
|
|
||||||
esnekiak
|
|
||||||
fruituLehorrak
|
|
||||||
glutena
|
|
||||||
kakahueteak
|
|
||||||
krustazeoak
|
|
||||||
lupinuak
|
|
||||||
moluskuak
|
|
||||||
sesamoa
|
|
||||||
soja
|
|
||||||
sulfitoak
|
|
||||||
ziapea
|
|
||||||
}
|
|
||||||
beganoa
|
|
||||||
ekologikoa
|
|
||||||
izena
|
|
||||||
prezioa
|
|
||||||
id__normalized
|
|
||||||
}
|
|
||||||
edariBeroak {
|
|
||||||
id
|
|
||||||
ekologikoa
|
|
||||||
beganoa
|
|
||||||
izena
|
|
||||||
prezioa
|
|
||||||
alergenoak {
|
|
||||||
apioa
|
|
||||||
arraina
|
|
||||||
arrautzak
|
|
||||||
esnekiak
|
|
||||||
fruituLehorrak
|
|
||||||
glutena
|
|
||||||
kakahueteak
|
|
||||||
krustazeoak
|
|
||||||
lupinuak
|
|
||||||
moluskuak
|
|
||||||
sesamoa
|
|
||||||
soja
|
|
||||||
sulfitoak
|
|
||||||
ziapea
|
|
||||||
}
|
|
||||||
}
|
|
||||||
edariHotzak {
|
|
||||||
id
|
|
||||||
ekologikoa
|
|
||||||
beganoa
|
|
||||||
izena
|
|
||||||
prezioa
|
|
||||||
alergenoak {
|
|
||||||
apioa
|
|
||||||
arraina
|
|
||||||
arrautzak
|
|
||||||
esnekiak
|
|
||||||
fruituLehorrak
|
|
||||||
glutena
|
|
||||||
kakahueteak
|
|
||||||
krustazeoak
|
|
||||||
lupinuak
|
|
||||||
moluskuak
|
|
||||||
sesamoa
|
|
||||||
soja
|
|
||||||
sulfitoak
|
|
||||||
ziapea
|
|
||||||
}
|
|
||||||
}
|
|
||||||
infusioEkologikoak {
|
|
||||||
id
|
|
||||||
ekologikoa
|
|
||||||
beganoa
|
|
||||||
izena
|
|
||||||
prezioa
|
|
||||||
alergenoak {
|
|
||||||
apioa
|
|
||||||
arraina
|
|
||||||
arrautzak
|
|
||||||
esnekiak
|
|
||||||
fruituLehorrak
|
|
||||||
glutena
|
|
||||||
kakahueteak
|
|
||||||
krustazeoak
|
|
||||||
lupinuak
|
|
||||||
moluskuak
|
|
||||||
sesamoa
|
|
||||||
soja
|
|
||||||
sulfitoak
|
|
||||||
ziapea
|
|
||||||
}
|
|
||||||
}
|
|
||||||
pikatzekoak {
|
|
||||||
id
|
|
||||||
ekologikoa
|
|
||||||
beganoa
|
|
||||||
izena
|
|
||||||
prezioa
|
|
||||||
alergenoak {
|
|
||||||
apioa
|
|
||||||
arraina
|
|
||||||
arrautzak
|
|
||||||
esnekiak
|
|
||||||
fruituLehorrak
|
|
||||||
glutena
|
|
||||||
kakahueteak
|
|
||||||
krustazeoak
|
|
||||||
lupinuak
|
|
||||||
moluskuak
|
|
||||||
sesamoa
|
|
||||||
soja
|
|
||||||
sulfitoak
|
|
||||||
ziapea
|
|
||||||
}
|
|
||||||
}
|
|
||||||
gozoak {
|
|
||||||
id
|
|
||||||
ekologikoa
|
|
||||||
beganoa
|
|
||||||
izena
|
|
||||||
prezioa
|
|
||||||
alergenoak {
|
|
||||||
apioa
|
|
||||||
arraina
|
|
||||||
arrautzak
|
|
||||||
esnekiak
|
|
||||||
fruituLehorrak
|
|
||||||
glutena
|
|
||||||
kakahueteak
|
|
||||||
krustazeoak
|
|
||||||
lupinuak
|
|
||||||
moluskuak
|
|
||||||
sesamoa
|
|
||||||
soja
|
|
||||||
sulfitoak
|
|
||||||
ziapea
|
|
||||||
}
|
|
||||||
}
|
|
||||||
tostadak {
|
|
||||||
id
|
|
||||||
ekologikoa
|
|
||||||
beganoa
|
|
||||||
izena
|
|
||||||
prezioa
|
|
||||||
alergenoak {
|
|
||||||
apioa
|
|
||||||
arraina
|
|
||||||
arrautzak
|
|
||||||
esnekiak
|
|
||||||
fruituLehorrak
|
|
||||||
glutena
|
|
||||||
kakahueteak
|
|
||||||
krustazeoak
|
|
||||||
lupinuak
|
|
||||||
moluskuak
|
|
||||||
sesamoa
|
|
||||||
soja
|
|
||||||
sulfitoak
|
|
||||||
ziapea
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
`);
|
|
||||||
|
|
||||||
return (
|
|
||||||
<>
|
|
||||||
<Helmet title={`${izenburua} | Laba`} htmlAttributes={{ lang: 'eu' }}>
|
|
||||||
<meta name="description" content={deskribapena} />
|
|
||||||
</Helmet>
|
|
||||||
|
|
||||||
<GlobalStyles />
|
|
||||||
|
|
||||||
<GainburuaWrapper>
|
|
||||||
<Gainburua
|
|
||||||
atala="kafetegia"
|
|
||||||
izenburua={izenburua}
|
|
||||||
deskribapena={deskribapena}
|
|
||||||
/>
|
|
||||||
</GainburuaWrapper>
|
|
||||||
|
|
||||||
<Container>
|
|
||||||
<TaldeWrapper>
|
|
||||||
<IzenburuWrapper>
|
|
||||||
<Marra />
|
|
||||||
<Izenburua>Edariak</Izenburua>
|
|
||||||
</IzenburuWrapper>
|
|
||||||
<ZerrendaWrapper>
|
|
||||||
<ProduktuZerrenda
|
|
||||||
izena="Edari beroak"
|
|
||||||
produktuZerrenda={edariBeroak}
|
|
||||||
/>
|
|
||||||
</ZerrendaWrapper>
|
|
||||||
<ZerrendaWrapper>
|
|
||||||
<ProduktuZerrenda
|
|
||||||
izena="Infusio ekologikoak"
|
|
||||||
produktuZerrenda={infusioEkologikoak}
|
|
||||||
/>
|
|
||||||
</ZerrendaWrapper>
|
|
||||||
<ZerrendaWrapper>
|
|
||||||
<ProduktuZerrenda
|
|
||||||
izena="Edari hotzak"
|
|
||||||
produktuZerrenda={edariHotzak}
|
|
||||||
/>
|
|
||||||
</ZerrendaWrapper>
|
|
||||||
</TaldeWrapper>
|
|
||||||
|
|
||||||
<TaldeWrapper>
|
|
||||||
<IzenburuWrapper>
|
|
||||||
<Marra />
|
|
||||||
<Izenburua>Jakiak</Izenburua>
|
|
||||||
</IzenburuWrapper>
|
|
||||||
<ZerrendaWrapper>
|
|
||||||
<ProduktuZerrenda
|
|
||||||
izena="Pikatzekoak"
|
|
||||||
produktuZerrenda={pikatzekoak}
|
|
||||||
/>
|
|
||||||
</ZerrendaWrapper>
|
|
||||||
<ZerrendaWrapper>
|
|
||||||
<ProduktuZerrenda izena="Tostadak" produktuZerrenda={tostadak} />
|
|
||||||
</ZerrendaWrapper>
|
|
||||||
<ZerrendaWrapper>
|
|
||||||
<ProduktuZerrenda izena="Gozoak" produktuZerrenda={gozoak} />
|
|
||||||
</ZerrendaWrapper>
|
|
||||||
<ZerrendaWrapper>
|
|
||||||
<ProduktuZerrenda
|
|
||||||
izena="Anizko Jogurta"
|
|
||||||
produktuZerrenda={[anizkoJogurta]}
|
|
||||||
/>
|
|
||||||
</ZerrendaWrapper>
|
|
||||||
</TaldeWrapper>
|
|
||||||
</Container>
|
|
||||||
</>
|
|
||||||
);
|
|
||||||
};
|
|
||||||
|
|
||||||
const GainburuaWrapper = styled.div`
|
|
||||||
margin-bottom: ${rem(size.huge)};
|
|
||||||
`;
|
|
||||||
|
|
||||||
const TaldeWrapper = styled.section`
|
|
||||||
&:not(:last-child) {
|
|
||||||
margin-bottom: ${size.large}px;
|
|
||||||
}
|
|
||||||
`;
|
|
||||||
|
|
||||||
const ZerrendaWrapper = styled.div`
|
|
||||||
&:not(:last-child) {
|
|
||||||
margin-bottom: ${size.base}px;
|
|
||||||
}
|
|
||||||
`;
|
|
||||||
|
|
||||||
const ProduktuZerrenda: React.FC<{
|
|
||||||
produktuZerrenda: Produktua[];
|
|
||||||
izena: React.ReactNode;
|
|
||||||
}> = ({ produktuZerrenda, izena }) => (
|
|
||||||
<ProduktuTaula>
|
|
||||||
<ProduktuMota>{izena}</ProduktuMota>
|
|
||||||
|
|
||||||
{produktuZerrenda.map(produktua => (
|
|
||||||
<tr key={produktua.id}>
|
|
||||||
<Ezaugarria>
|
|
||||||
{produktua.beganoa && <BeganoaLogo title="Produktu beganoa" />}
|
|
||||||
</Ezaugarria>
|
|
||||||
<Ezaugarria>
|
|
||||||
{produktua.ekologikoa && (
|
|
||||||
<EkologikoaLogo title="Produktu ekologikoa" />
|
|
||||||
)}
|
|
||||||
</Ezaugarria>
|
|
||||||
<Izena scope="row">{produktua.izena}</Izena>
|
|
||||||
<Prezioa>
|
|
||||||
{new Intl.NumberFormat('eu-ES', {
|
|
||||||
style: 'currency',
|
|
||||||
currency: 'EUR',
|
|
||||||
}).format(produktua.prezioa)}
|
|
||||||
</Prezioa>
|
|
||||||
</tr>
|
|
||||||
))}
|
|
||||||
</ProduktuTaula>
|
|
||||||
);
|
|
||||||
|
|
||||||
const ProduktuTaula = styled.table`
|
|
||||||
width: 100%;
|
|
||||||
table-layout: fixed;
|
|
||||||
overflow-wrap: break-word;
|
|
||||||
`;
|
|
||||||
|
|
||||||
const Ezaugarria = styled.td`
|
|
||||||
width: ${size.medium}px;
|
|
||||||
height: ${size.medium}px;
|
|
||||||
padding: 0 ${size.xtiny}px;
|
|
||||||
vertical-align: top;
|
|
||||||
`;
|
|
||||||
|
|
||||||
const Izena = styled.td`
|
|
||||||
text-align: left;
|
|
||||||
font-weight: ${fontWeight.regular};
|
|
||||||
padding: 0 ${size.xtiny}px;
|
|
||||||
vertical-align: top;
|
|
||||||
`;
|
|
||||||
|
|
||||||
const Prezioa = styled.td`
|
|
||||||
min-width: ${size.medium}px;
|
|
||||||
text-align: right;
|
|
||||||
font-weight: ${fontWeight.regular};
|
|
||||||
padding: 0 ${size.xtiny}px;
|
|
||||||
vertical-align: top;
|
|
||||||
`;
|
|
||||||
|
|
||||||
const ProduktuMota = styled.caption`
|
|
||||||
${font.large()};
|
|
||||||
text-align: left;
|
|
||||||
padding-left: 67px;
|
|
||||||
margin-bottom: ${rem(size.mini)};
|
|
||||||
|
|
||||||
&::after {
|
|
||||||
content: '.';
|
|
||||||
}
|
|
||||||
`;
|
|
||||||
|
|
||||||
const IzenburuWrapper = styled.div`
|
|
||||||
display: flex;
|
|
||||||
justify-content: flex-end;
|
|
||||||
align-items: center;
|
|
||||||
margin-bottom: ${rem(size.medium)};
|
|
||||||
`;
|
|
||||||
|
|
||||||
const Marra = styled.div`
|
|
||||||
/* altuera erabiliko den letraren berdina da */
|
|
||||||
height: ${rem(41.83)};
|
|
||||||
flex-grow: 1;
|
|
||||||
box-shadow: inset 0px -3px 0px 0px ${colors.beltza};
|
|
||||||
margin-right: ${rem(size.tiny)};
|
|
||||||
`;
|
|
||||||
|
|
||||||
const Izenburua = styled.h1`
|
|
||||||
text-align: right;
|
|
||||||
vertical-align: bottom;
|
|
||||||
|
|
||||||
&:after {
|
|
||||||
content: '.';
|
|
||||||
}
|
|
||||||
|
|
||||||
${font.gargantuan()};
|
|
||||||
`;
|
|
||||||
|
|
||||||
export default Kafetegia;
|
|
||||||
13
front/src/pages/kafetegia/KafetegiaData.ts
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
import { Produktua } from '../../domain/models/Produktua';
|
||||||
|
|
||||||
|
export interface KafetegiaData {
|
||||||
|
deskribapena: string;
|
||||||
|
izenburua: string;
|
||||||
|
edariBeroak: Produktua[];
|
||||||
|
infusioEkologikoak: Produktua[];
|
||||||
|
edariHotzak: Produktua[];
|
||||||
|
pikatzekoak: Produktua[];
|
||||||
|
gozoak: Produktua[];
|
||||||
|
anizkoJogurta: Produktua;
|
||||||
|
tostadak: Produktua[];
|
||||||
|
}
|
||||||
@@ -0,0 +1,126 @@
|
|||||||
|
import React from 'react';
|
||||||
|
|
||||||
|
import { AlergenoIdentifikadorea } from '../../../../domain/models/AlergenoIdentifikadorea';
|
||||||
|
import Esnekiak from './assets/alergenoak/esnekiak.svg';
|
||||||
|
import Arrautzak from './assets/alergenoak/arrautzak.svg';
|
||||||
|
import Glutena from './assets/alergenoak/glutena.svg';
|
||||||
|
import Moluskuak from './assets/alergenoak/moluskuak.svg';
|
||||||
|
import Krustazeoak from './assets/alergenoak/krustazeoak.svg';
|
||||||
|
import Arraina from './assets/alergenoak/arraina.svg';
|
||||||
|
import Lupinuak from './assets/alergenoak/lupinuak.svg';
|
||||||
|
import FruituLehorrak from './assets/alergenoak/fruituLehorrak.svg';
|
||||||
|
import Kakahueteak from './assets/alergenoak/kakahueteak.svg';
|
||||||
|
import Sesamoa from './assets/alergenoak/sesamoa.svg';
|
||||||
|
import Soja from './assets/alergenoak/soja.svg';
|
||||||
|
import Sulfitoak from './assets/alergenoak/sulfitoak.svg';
|
||||||
|
import Apioa from './assets/alergenoak/apioa.svg';
|
||||||
|
import Ziapea from './assets/alergenoak/ziapea.svg';
|
||||||
|
import styled from 'styled-components';
|
||||||
|
import { rem } from 'polished';
|
||||||
|
import {
|
||||||
|
breakpoints,
|
||||||
|
colors,
|
||||||
|
fontWeight,
|
||||||
|
media,
|
||||||
|
size,
|
||||||
|
} from '../../../../ui/theme';
|
||||||
|
import { mapAlergenoIdentifikadoreaToIzena } from '../../../../domain/mappers/mapAlergenoIdentifikadoreaToIzena';
|
||||||
|
import { mapAlergenoIdentifikadoreaToZenbakia } from '../../../../domain/mappers/mapAlergenoIdentifikadoreaToZenbakia';
|
||||||
|
import { useMediaQuery } from 'react-responsive';
|
||||||
|
|
||||||
|
const alergenoakOrdenaturik: AlergenoIdentifikadorea[] = [
|
||||||
|
'esnekiak',
|
||||||
|
'arrautzak',
|
||||||
|
'glutena',
|
||||||
|
'moluskuak',
|
||||||
|
'krustazeoak',
|
||||||
|
'arraina',
|
||||||
|
'lupinuak',
|
||||||
|
'fruituLehorrak',
|
||||||
|
'kakahueteak',
|
||||||
|
'sesamoa',
|
||||||
|
'soja',
|
||||||
|
'sulfitoak',
|
||||||
|
'apioa',
|
||||||
|
'ziapea',
|
||||||
|
];
|
||||||
|
|
||||||
|
export const AlergenoLegenda: React.VFC = () => {
|
||||||
|
return (
|
||||||
|
<Wrapper>
|
||||||
|
{alergenoakOrdenaturik.map(alergenoa => (
|
||||||
|
<AlergenoWrapper>
|
||||||
|
<LogoWrapper>
|
||||||
|
<AlergenoLogoa alergenoId={alergenoa} />
|
||||||
|
</LogoWrapper>
|
||||||
|
|
||||||
|
<Izena>{mapAlergenoIdentifikadoreaToIzena(alergenoa)}</Izena>
|
||||||
|
<Zenbakia>{mapAlergenoIdentifikadoreaToZenbakia(alergenoa)}</Zenbakia>
|
||||||
|
</AlergenoWrapper>
|
||||||
|
))}
|
||||||
|
</Wrapper>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
const Izena = styled.div`
|
||||||
|
margin-bottom: ${rem(size.tiny)};
|
||||||
|
font-weight: ${fontWeight.bold};
|
||||||
|
text-align: center;
|
||||||
|
`;
|
||||||
|
|
||||||
|
const Zenbakia = styled.div`
|
||||||
|
font-weight: ${fontWeight.bold};
|
||||||
|
text-align: center;
|
||||||
|
color: ${colors.morea};
|
||||||
|
`;
|
||||||
|
|
||||||
|
const AlergenoWrapper = styled.div`
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
justify-content: center;
|
||||||
|
`;
|
||||||
|
|
||||||
|
const Wrapper = styled.div`
|
||||||
|
width: 100%;
|
||||||
|
display: grid;
|
||||||
|
grid-column-gap: ${rem(size.tiny)};
|
||||||
|
grid-row-gap: ${rem(size.base)};
|
||||||
|
|
||||||
|
grid-template-columns: repeat(3, 1fr);
|
||||||
|
${media.tablet`
|
||||||
|
grid-template-columns: repeat(5, 1fr);
|
||||||
|
`};
|
||||||
|
`;
|
||||||
|
|
||||||
|
const LogoWrapper = styled.div`
|
||||||
|
margin-bottom: ${rem(size.mini)};
|
||||||
|
display: flex;
|
||||||
|
align-items: flex-end;
|
||||||
|
justify-content: center;
|
||||||
|
`;
|
||||||
|
|
||||||
|
const AlergenoLogoa: React.VFC<{ alergenoId: AlergenoIdentifikadorea }> = ({
|
||||||
|
alergenoId,
|
||||||
|
}) => {
|
||||||
|
const isAboveDesktop = useMediaQuery({ minWidth: breakpoints.desktop });
|
||||||
|
const height = rem(isAboveDesktop ? size.huge : size.medium);
|
||||||
|
|
||||||
|
const alergenoIdToLogo: { [id in AlergenoIdentifikadorea]: React.ReactNode } =
|
||||||
|
{
|
||||||
|
esnekiak: <Esnekiak height={height} />,
|
||||||
|
arrautzak: <Arrautzak height={height} />,
|
||||||
|
glutena: <Glutena height={height} />,
|
||||||
|
moluskuak: <Moluskuak height={height} />,
|
||||||
|
krustazeoak: <Krustazeoak height={height} />,
|
||||||
|
arraina: <Arraina height={height} />,
|
||||||
|
lupinuak: <Lupinuak height={height} />,
|
||||||
|
fruituLehorrak: <FruituLehorrak height={height} />,
|
||||||
|
kakahueteak: <Kakahueteak height={height} />,
|
||||||
|
sesamoa: <Sesamoa height={height} />,
|
||||||
|
soja: <Soja height={height} />,
|
||||||
|
sulfitoak: <Sulfitoak height={height} />,
|
||||||
|
apioa: <Apioa height={height} />,
|
||||||
|
ziapea: <Ziapea height={height} />,
|
||||||
|
};
|
||||||
|
return <>{alergenoIdToLogo[alergenoId]}</>;
|
||||||
|
};
|
||||||
|
After Width: | Height: | Size: 36 KiB |
@@ -0,0 +1,30 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<svg xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" id="Capa_1" data-name="Capa 1" viewBox="0 0 355.33915 221.08047" version="1.1" inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)">
|
||||||
|
<metadata id="metadata41">
|
||||||
|
<rdf:RDF>
|
||||||
|
<cc:Work rdf:about="">
|
||||||
|
<dc:format>image/svg+xml</dc:format>
|
||||||
|
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<sodipodi:namedview pagecolor="#ffffff" bordercolor="#666666" borderopacity="1" objecttolerance="10" gridtolerance="10" guidetolerance="10" inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:window-width="1920" inkscape:window-height="1016" id="namedview39" showgrid="false" inkscape:zoom="0.86739199" inkscape:cx="177.65038" inkscape:cy="85.050976" inkscape:window-x="0" inkscape:window-y="27" inkscape:window-maximized="1" inkscape:current-layer="Capa_1" />
|
||||||
|
<defs id="defs4">
|
||||||
|
<style id="style2">.cls-1{fill:#1d1d1b;}.cls-2{fill:#fff;}</style>
|
||||||
|
</defs>
|
||||||
|
<path class="cls-2" d="m 235.62038,44.169495 a 168.74,168.74 0 0 0 -87.54,-24.18 172,172 0 0 0 -39.67,4.58 80.14,80.14 0 0 1 16.3,-8.58 c 33.1,-13.23 75.9,-9.24 106.68,-3.34 1.61,4.83 5.71,18.79 4.23,31.52 z" id="path20" inkscape:connector-curvature="0" style="fill:#ffffff" />
|
||||||
|
<path class="cls-2" d="m 239.26038,179.5095 c -6.8,11.66 -19.15,24.7 -29.12,33.32 -21,3 -40.6,0.64 -58.59,-6.94 a 168,168 0 0 0 87.71,-26.38 z" id="path22" inkscape:connector-curvature="0" style="fill:#ffffff" />
|
||||||
|
<path class="cls-1" d="m 323.00038,112.9895 a 86.42,86.42 0 0 0 10.88,-9.24 c 15.52,-15.520005 23.73,-35.220005 20.91,-50.200005 a 3.52,3.52 0 0 0 -2.79,-2.8 c -15,-2.82 -34.68,5.39 -50.2,20.91 a 81.35,81.35 0 0 0 -15.71,21.69 152.88,152.88 0 0 0 -44,-45.06 c 3.45,-18.27 -4.35,-38.92 -4.76,-40 a 3.49,3.49 0 0 0 -2.59,-2.17 c -46.71,-9.24 -84.84,-8 -113.32,3.61 -16.78,6.84 -25.159995,15.45 -28.279995,19.26 q -5.76,2 -11.38,4.36 c -36.99,15.64 -65.91,43.41 -81.45000016,78.210005 a 3.47,3.47 0 0 0 0.11,3.09 3.51,3.51 0 0 0 2.57999996,1.79 c 0.18,0 10.4300002,1.63 27.1300002,3.27 -7.57,2.32 -14.29,5.86 -18.34,11.19 a 3.5,3.5 0 0 0 -0.19,4.09 c 16.74,25.39 41,45.33 70.17,57.66 a 168,168 0 0 0 53.389995,12.85 114,114 0 0 0 58,15.58 128.34,128.34 0 0 0 19,-1.43 3.51,3.51 0 0 0 1.75,-0.8 c 3.81,-3.24 30.85,-26.83 36.45,-47.13 a 152.11,152.11 0 0 0 35.68,-39.07 81.35,81.35 0 0 0 15.71,21.69 c 15.53,15.48 35.25,23.65 50.25,20.87 a 3.51,3.51 0 0 0 2.79,-2.79 c 2.82,-15 -5.39,-34.68 -20.91,-50.2 a 86.42,86.42 0 0 0 -10.88,-9.23 z m -198.29,-97.000005 c 33.1,-13.23 75.9,-9.24 106.68,-3.34 1.63,4.88 5.71,18.84 4.23,31.57 a 168.74,168.74 0 0 0 -87.54,-24.23 172,172 0 0 0 -39.67,4.58 80.14,80.14 0 0 1 16.3,-8.58 z m 85.43,196.890005 c -21,3 -40.6,0.64 -58.59,-6.94 a 168,168 0 0 0 87.71,-26.38 c -6.8,11.61 -19.15,24.65 -29.12,33.27 z m 138.06,-44.22 c -12.34,1 -28.65,-6.46 -41.49,-19.31 -7.79,-7.79 -13.61,-16.65 -16.82,-25.63 a 3.5,3.5 0 0 0 -6.34,-0.55 143.89,143.89 0 0 1 -32.37,38.82 c -1.08,0.92 -2.17,1.82 -3.28,2.7 -1.11,0.88 -2.51,2 -3.79,2.92 -26.7,19.94 -60.36,31.29 -96,31.29 q -5.42,0 -10.77,-0.34 c -2.47,-0.16 -4.94,-0.37 -7.39,-0.63 -2.45,-0.26 -4.83,-0.58 -7.23,-0.95 a 160.13,160.13 0 0 1 -38.199995,-10.85 c -27,-11.42 -49.64,-29.66 -65.55,-52.84 5.45,-5.28 16,-8.8 30.77,-10.22 a 159.92,159.92 0 0 1 18.54,-0.64 l 6.12,0.26 a 3.5057096,3.5057096 0 0 0 0.4,-7 c -0.43,0 -3,-0.21 -6.82,-0.29 -28.21,-1.34 -50.15,-4 -59.2800002,-5.25 C 23.920385,78.949495 50.700385,54.059495 84.520385,39.759495 q 4.58,-1.94 9.24,-3.58 c 2.26,-0.8 4.53,-1.55 6.829995,-2.24 v 0 c 2.53,-0.77 5.07,-1.47 7.64,-2.11 a 164.13,164.13 0 0 1 39.85,-4.84 161.51,161.51 0 0 1 86,24.4 c 1,0.63 2,1.28 3,1.94 1,0.66 2,1.33 3,2 a 145.21,145.21 0 0 1 43.5,47.400005 3.5,3.5 0 0 0 6.34,-0.55 70.73,70.73 0 0 1 16.82,-25.630005 c 12.85,-12.85 29.15,-20.36 41.49,-19.31 1,12.34 -6.46,28.65 -19.31,41.49 a 77.6,77.6 0 0 1 -14.12,11.260005 3.49,3.49 0 0 0 0,6 78,78 0 0 1 14.09,11.21 c 12.85,12.79 20.35,29.12 19.31,41.46 z" id="path24" inkscape:connector-curvature="0" style="fill:#1d1d1b" />
|
||||||
|
<path class="cls-2" d="m 210.34038,141.4995 c -8.73,2.65 -28.37,4.73 -54.41,-16 1.62,-4.22 5.73,-13.45 12.2,-18.39 z" id="path26" inkscape:connector-curvature="0" style="fill:#ffffff" />
|
||||||
|
<path class="cls-2" d="m 314.80038,115.9895 a 3.49,3.49 0 0 1 0,-6 77.6,77.6 0 0 0 14.09,-11.200005 c 12.85,-12.8 20.35,-29.15 19.31,-41.49 -12.34,-1.05 -28.64,6.46 -41.49,19.31 a 70.73,70.73 0 0 0 -16.82,25.630005 3.5,3.5 0 0 1 -6.34,0.55 145.21,145.21 0 0 0 -43.5,-47.400005 c -1,-0.69 -2,-1.36 -3,-2 -1,-0.64 -2,-1.31 -3,-1.94 a 161.51,161.51 0 0 0 -86,-24.4 164.13,164.13 0 0 0 -39.87,4.84 c -2.57,0.64 -5.11,1.34 -7.64,2.11 v 0 c -2.299995,0.69 -4.569995,1.44 -6.829995,2.24 q -4.67,1.65 -9.24,3.58 c -33.82,14.28 -60.58,39.17 -75.8000002,70.370005 9.1300002,1.24 31.0700002,3.91 59.2800002,5.25 3.85,0.08 6.39,0.26 6.82,0.29 a 3.5057096,3.5057096 0 0 1 -0.4,7 l -6.12,-0.26 a 159.92,159.92 0 0 0 -18.54,0.64 c -14.77,1.42 -25.32,4.94 -30.77,10.22 15.91,23.18 38.53,41.42 65.55,52.84 a 160.13,160.13 0 0 0 38.199995,10.82 c 2.4,0.37 4.81,0.68 7.23,0.95 2.42,0.27 4.92,0.47 7.39,0.63 q 5.35,0.35 10.77,0.34 c 35.67,0 69.33,-11.35 96,-31.29 1.28,-1 2.55,-1.93 3.79,-2.92 1.24,-0.99 2.2,-1.78 3.28,-2.7 a 143.89,143.89 0 0 0 32.37,-38.85 3.5,3.5 0 0 1 6.34,0.55 c 3.21,9 9,17.84 16.82,25.63 12.84,12.85 29.15,20.35 41.49,19.31 1,-12.34 -6.46,-28.64 -19.31,-41.49 a 78,78 0 0 0 -14.06,-11.16 z M 66.930385,89.989495 a 11.12,11.12 0 0 1 -1.93,-0.13 10.33,10.33 0 0 1 -6.82,-4.78 c -3.38,-5.24 -0.18,-11.42 0.24,-12.09 a 3.5,3.5 0 0 1 6.39,2.75 3,3 0 0 1 -0.26,0.62 c -0.43,0.81 -1.44,3.44 -0.48,4.93 a 3.22,3.22 0 0 0 2.21,1.7 c 2.55,0.47 6.65,-2 9.36,-3.83 0.89,-0.6 1.62,-1.14 2.11,-1.5 a 3.5011462,3.5011462 0 1 1 4.15,5.64 c -4.62,3.38 -9.9,6.69 -14.97,6.69 z m 18.62,78.890005 a 3.45,3.45 0 0 1 -1.3,0.25 3.5,3.5 0 0 1 -1.31,-6.75 28.48,28.48 0 0 0 4.34,-2.36 c 7.94,-5.08 24.249995,-19.31 28.059995,-52 q 0.45,-3.76 0.66,-7.87 a 3.5043723,3.5043723 0 0 1 7,0.35 c -2.7,53.91 -35.999995,67.85 -37.449995,68.42 z m 133.349995,-23.41 c -0.59,0.36 -8,4.66 -20.23,4.66 -12.23,0 -29.15,-4.23 -49.1,-20.75 a 3.51,3.51 0 0 1 -1.11,-3.74 c 0.24,-0.76 6,-18.84 18.12,-25.870005 a 3.49,3.49 0 0 1 4,0.310005 l 48.76,39.68 a 3.52,3.52 0 0 1 1.28,3 3.48,3.48 0 0 1 -1.72,2.71 z" id="path28" inkscape:connector-curvature="0" style="fill:#ffffff" />
|
||||||
|
<path class="cls-1" d="m 123.00038,100.5695 c -2.7,53.84 -35.999995,67.78 -37.449995,68.35 a 3.45,3.45 0 0 1 -1.3,0.25 3.5,3.5 0 0 1 -1.31,-6.75 28.48,28.48 0 0 0 4.34,-2.36 c 7.94,-5.08 24.249995,-19.31 28.059995,-52 q 0.45,-3.76 0.66,-7.87 a 3.5043723,3.5043723 0 0 1 7,0.35 z" id="path30" inkscape:connector-curvature="0" style="fill:#1d1d1b" />
|
||||||
|
<path class="cls-2" d="m 210.34038,141.4995 c -8.73,2.65 -28.37,4.73 -54.41,-16 1.62,-4.22 5.73,-13.45 12.2,-18.39 z" id="path32" inkscape:connector-curvature="0" style="fill:#ffffff" />
|
||||||
|
<path class="cls-1" d="m 219.30038,139.7595 -48.76,-39.68 a 3.49,3.49 0 0 0 -4,-0.310005 c -12.13,7.000005 -17.88,25.110005 -18.12,25.870005 a 3.51,3.51 0 0 0 1.11,3.74 c 20,16.52 36.93,20.75 49.1,20.75 12.17,0 19.64,-4.3 20.23,-4.66 a 3.48,3.48 0 0 0 1.68,-2.75 3.52,3.52 0 0 0 -1.24,-2.96 z m -63.37,-14.23 c 1.62,-4.22 5.73,-13.45 12.2,-18.39 l 42.21,34.36 c -8.73,2.65 -28.34,4.73 -54.41,-15.97 z" id="path34" inkscape:connector-curvature="0" style="fill:#1d1d1b" />
|
||||||
|
<path class="cls-1" d="m 81.900385,83.279495 c -4.62,3.4 -9.9,6.71 -14.97,6.71 a 11.12,11.12 0 0 1 -1.93,-0.13 10.33,10.33 0 0 1 -6.82,-4.78 c -3.38,-5.24 -0.18,-11.42 0.24,-12.09 a 3.5,3.5 0 0 1 6.39,2.75 3,3 0 0 1 -0.26,0.62 c -0.43,0.81 -1.44,3.44 -0.48,4.93 a 3.22,3.22 0 0 0 2.21,1.7 c 2.55,0.47 6.65,-2 9.36,-3.83 0.89,-0.6 1.62,-1.14 2.11,-1.5 a 3.5011462,3.5011462 0 1 1 4.15,5.64 z" id="path36" inkscape:connector-curvature="0" style="fill:#1d1d1b" />
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 8.1 KiB |
@@ -0,0 +1,27 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<svg xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" id="Capa_1" data-name="Capa 1" viewBox="0 0 196.82829 178.07001" version="1.1" inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)">
|
||||||
|
<metadata id="metadata39">
|
||||||
|
<rdf:RDF>
|
||||||
|
<cc:Work rdf:about="">
|
||||||
|
<dc:format>image/svg+xml</dc:format>
|
||||||
|
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<sodipodi:namedview pagecolor="#ffffff" bordercolor="#666666" borderopacity="1" objecttolerance="10" gridtolerance="10" guidetolerance="10" inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:window-width="855" inkscape:window-height="480" id="namedview37" showgrid="false" inkscape:zoom="1.0300729" inkscape:cx="98.415389" inkscape:cy="63.515" inkscape:window-x="0" inkscape:window-y="27" inkscape:window-maximized="0" inkscape:current-layer="Capa_1" />
|
||||||
|
<defs id="defs4">
|
||||||
|
<style id="style2">.cls-1{fill:#fff;}.cls-2{fill:#1d1d1b;}</style>
|
||||||
|
</defs>
|
||||||
|
<path class="cls-1" d="m 67.430389,152 a 3.54,3.54 0 0 1 -2,0.65 h -0.39 c -17.27,-1.94 -44.46,-20.07 -46.07,-43 a 3.5085645,3.5085645 0 1 1 7,-0.49 24.47,24.47 0 0 0 0.65,4.07 c 3.63,14.65 20.5,27.36 33.84,31.31 v 0 c 0.67,0.2 1.33,0.38 2,0.53 a 68.38,68.38 0 0 1 -8.79,-20.53 67.25,67.25 0 0 1 8.08,-51.68 C 70.830389,58 88.420389,42 107.34039,31.28 98.810389,19.75 85.720389,7 69.530389,7 c -20.74,0 -36.4,21 -43.9,33.44 -11.32,18.87 -18.6300004,42.48 -18.6300004,60.15 a 60.3,60.3 0 0 0 18.0900004,43.27 62.79,62.79 0 0 0 44.44,17.95 65.11,65.11 0 0 0 7.28,-0.4 70.53,70.53 0 0 1 -9.38,-9.41 z m -49.54,-52.77 v -1.4 a 3.500175,3.500175 0 1 1 7,0.07 v 1.4 a 3.5,3.5 0 0 1 -3.5,3.46 v 0 a 3.5,3.5 0 0 1 -3.5,-3.53 z" id="path6" inkscape:connector-curvature="0" style="fill:#ffffff" />
|
||||||
|
<path class="cls-2" d="m 173.60039,23.6 c -14.9,-9.16 -36.16,-7.6 -60,4.34 C 100.47039,9.83 85.080389,0 69.530389,0 c -17.92,0 -35.65,13.08 -49.9,36.84 C 7.7103886,56.72 3.8857879e-4,81.74 3.8857879e-4,100.59 A 67.25,67.25 0 0 0 20.180389,148.85 a 69.76,69.76 0 0 0 49.35,20 72.59,72.59 0 0 0 15.31,-1.62 l 0.35,0.22 a 70.5,70.5 0 0 0 37.000001,10.62 68.68,68.68 0 0 0 15.51,-1.78 67.26,67.26 0 0 0 42.46,-30.54 c 9.87,-16.06 16.41,-41.41 16.66,-64.59 0.3,-27.74 -7.95,-48.16 -23.22,-57.56 z M 69.530389,161.81 a 62.79,62.79 0 0 1 -44.44,-17.95 60.3,60.3 0 0 1 -18.0900004,-43.27 c 0,-17.67 7.3100004,-41.28 18.6300004,-60.15 7.5,-12.44 23.16,-33.44 43.9,-33.44 16.19,0 29.28,12.75 37.810001,24.28 C 88.420389,42 70.830389,58 61.680389,72.88 a 67.25,67.25 0 0 0 -8.08,51.68 68.38,68.38 0 0 0 8.79,20.53 c -0.65,-0.15 -1.31,-0.33 -2,-0.53 v 0 c -13.34,-3.95 -30.21,-16.66 -33.84,-31.31 a 24.47,24.47 0 0 1 -0.65,-4.07 3.5085645,3.5085645 0 1 0 -7,0.49 c 1.61,22.91 28.8,41 46.07,43 h 0.39 a 3.54,3.54 0 0 0 2,-0.65 70.53,70.53 0 0 0 9.38,9.39 65.11,65.11 0 0 1 -7.21,0.4 z M 189.82039,81 c -0.24,22 -6.37,45.95 -15.62,61 a 60.28,60.28 0 0 1 -38.08,27.39 62.34,62.34 0 0 1 -41.830001,-5 q -2.13,-1 -4.2,-2.26 c -0.41,-0.23 -0.82,-0.48 -1.23,-0.73 -0.93,-0.57 -1.83,-1.16 -2.72,-1.77 a 62.62,62.62 0 0 1 -25.74,-36.8 60.31,60.31 0 0 1 7.25,-46.34 c 8.67,-14.1 25.54,-29.28 43.680001,-39.49 1,-0.57 2.06,-1.13 3.09,-1.67 l 0.6,-0.32 c 0.85,-0.44 1.69,-0.87 2.52,-1.28 13.87,-6.82 24.88,-9.08 33.39,-9.08 a 40.36,40.36 0 0 1 11.46,1.56 30.76,30.76 0 0 1 7.54,3.31 c 17.67,10.91 20.07,36.96 19.89,51.48 z" id="path8" inkscape:connector-curvature="0" style="fill:#1d1d1b" />
|
||||||
|
<path class="cls-2" d="m 24.900389,97.9 v 1.4 a 3.5,3.5 0 0 1 -3.5,3.46 v 0 a 3.5,3.5 0 0 1 -3.46,-3.53 v -1.4 a 3.500175,3.500175 0 1 1 7,0.07 z" id="path10" inkscape:connector-curvature="0" style="fill:#1d1d1b" />
|
||||||
|
<path class="cls-1" d="m 169.93039,29.57 a 30.76,30.76 0 0 0 -7.54,-3.31 40.36,40.36 0 0 0 -11.46,-1.56 c -8.51,0 -19.52,2.26 -33.39,9.08 -0.83,0.41 -1.67,0.84 -2.52,1.28 l -0.6,0.32 c -1,0.54 -2.06,1.1 -3.09,1.67 C 93.190389,47.26 76.330389,62.44 67.650389,76.54 a 60.31,60.31 0 0 0 -7.25,46.34 62.62,62.62 0 0 0 25.74,36.8 c 0.89,0.61 1.79,1.2 2.72,1.77 0.41,0.25 0.82,0.5 1.23,0.73 q 2.07,1.23 4.2,2.26 a 62.34,62.34 0 0 0 41.830001,5 60.28,60.28 0 0 0 38.08,-27.44 c 9.25,-15 15.38,-39 15.62,-61 0.18,-14.52 -2.22,-40.57 -19.89,-51.43 z m -102.000001,70 a 3.5059984,3.5059984 0 1 1 7,0.41 l -0.08,1.4 a 3.5,3.5 0 0 1 -3.49,3.29 h -0.21 a 3.5,3.5 0 0 1 -3.29,-3.7 z m 44.670001,60.66 a 3.5,3.5 0 0 1 -3.34,2.45 3.79,3.79 0 0 1 -1,-0.15 41.1,41.1 0 0 1 -5.14,-2 v 0 q -1.89,-0.88 -3.840001,-2 c -1.18,-0.67 -2.37,-1.4 -3.56,-2.19 -13.22,-8.7 -26.62,-24.54 -27.24,-44.22 a 3.5017281,3.5017281 0 1 1 7,-0.22 37.4,37.4 0 0 0 0.54,5.2 c 2.75,15.86 15.3,29 26.910001,35.46 0.67,0.38 1.33,0.73 2,1.05 0.67,0.32 1.1,0.54 1.65,0.77 a 34.07,34.07 0 0 0 3.8,1.45 l 0.18,0.07 a 3.49,3.49 0 0 1 2.07,4.3 z" id="path12" inkscape:connector-curvature="0" style="fill:#ffffff" />
|
||||||
|
<path class="cls-2" d="m 112.63039,160.2 a 3.5,3.5 0 0 1 -3.34,2.45 3.79,3.79 0 0 1 -1,-0.15 41.1,41.1 0 0 1 -5.14,-2 v 0 q -1.89,-0.88 -3.840001,-2 c -1.18,-0.67 -2.37,-1.4 -3.56,-2.19 -13.22,-8.7 -26.62,-24.54 -27.24,-44.22 a 3.5017281,3.5017281 0 1 1 7,-0.22 37.4,37.4 0 0 0 0.54,5.2 c 2.75,15.86 15.3,29 26.910001,35.46 0.67,0.38 1.33,0.73 2,1.05 0.67,0.32 1.1,0.54 1.65,0.77 a 34.07,34.07 0 0 0 3.8,1.45 l 0.18,0.07 a 3.49,3.49 0 0 1 2.04,4.33 z" id="path14" inkscape:connector-curvature="0" style="fill:#1d1d1b" />
|
||||||
|
<path class="cls-2" d="m 74.940389,100 -0.08,1.4 a 3.5,3.5 0 0 1 -3.49,3.29 h -0.21 a 3.5,3.5 0 0 1 -3.29,-3.7 l 0.09,-1.4 a 3.5059984,3.5059984 0 1 1 7,0.41 z" id="path16" inkscape:connector-curvature="0" style="fill:#1d1d1b" />
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 5.9 KiB |
@@ -0,0 +1,50 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<svg xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" id="Capa_1" data-name="Capa 1" viewBox="0 0 124.79848 345.00373" version="1.1" inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)">
|
||||||
|
<metadata id="metadata83">
|
||||||
|
<rdf:RDF>
|
||||||
|
<cc:Work rdf:about="">
|
||||||
|
<dc:format>image/svg+xml</dc:format>
|
||||||
|
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<sodipodi:namedview pagecolor="#ffffff" bordercolor="#666666" borderopacity="1" objecttolerance="10" gridtolerance="10" guidetolerance="10" inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:window-width="855" inkscape:window-height="480" id="namedview81" showgrid="false" inkscape:zoom="0.59583924" inkscape:cx="67.026609" inkscape:cy="138.56848" inkscape:window-x="0" inkscape:window-y="27" inkscape:window-maximized="0" inkscape:current-layer="Capa_1" />
|
||||||
|
<defs id="defs4">
|
||||||
|
<style id="style2">.cls-1{fill:#1d1d1b;}.cls-2{fill:#fff;}</style>
|
||||||
|
</defs>
|
||||||
|
<path class="cls-2" d="m 105.36,97.253732 -0.7,0.8 c -2.78,2.999998 -8.39,8.059998 -15.59,8.779998 -5.72,0.58 -11.55,-1.69 -17.38,-6.73 q -0.81,-0.689998 -1.62,-1.469998 c -17.18,-16.4 -38,-9.88 -49.93,-3.7 l 1.24,-2.8 c 5,-11.39 9.78,-22.16 10.91,-31.26 1,-7.9 0.49,-30.42 0.2,-40.68 h 59 c -0.31,10.27 -0.83,32.79 0.19,40.7 1.1,9.11 6.02,19.69 11.19,30.91 0.82,1.79 1.66,3.61 2.49,5.45 z" id="path22" inkscape:connector-curvature="0" style="fill:#ffffff" />
|
||||||
|
<path class="cls-1" d="m 54.44,206.47373 c -0.11,0 -0.22,0.07 -0.33,0.12 l 0.19,-0.08 z" id="path24" inkscape:connector-curvature="0" style="fill:#1d1d1b" />
|
||||||
|
<path class="cls-1" d="m 63.96,204.80373 a 7.12,7.12 0 0 0 -0.8,0 2.83,2.83 0 0 1 0.41,0 2.56,2.56 0 0 1 0.39,0 z" id="path26" inkscape:connector-curvature="0" style="fill:#1d1d1b" />
|
||||||
|
<path class="cls-1" d="m 73.04,206.59373 -0.17,-0.06 v 0 a 0.47,0.47 0 0 1 0.17,0.06 z" id="path28" inkscape:connector-curvature="0" style="fill:#1d1d1b" />
|
||||||
|
<path class="cls-1" d="m 40.46,213.84373 a 15.89,15.89 0 0 0 -2.17,2.8 c -5.83,-2.48 -9.2,-5.76 -10,-9.77 -0.63,-3.06 0.2,-6.46 1.67,-9.68 0.05,4.94 1.26,8.94 3.63,11.93 a 14.11,14.11 0 0 0 6.87,4.72 z" id="path30" inkscape:connector-curvature="0" style="fill:#1d1d1b" />
|
||||||
|
<path class="cls-1" d="m 37.88,233.00373 a 9.86,9.86 0 0 1 -5.17,1 35.28,35.28 0 0 1 3.84,-4.3 15.51,15.51 0 0 0 1.33,3.3 z" id="path32" inkscape:connector-curvature="0" style="fill:#1d1d1b" />
|
||||||
|
<path class="cls-1" d="m 98.87,206.86373 c -0.82,4 -4.19,7.3 -10,9.78 a 15.89,15.89 0 0 0 -2.17,-2.8 14.11,14.11 0 0 0 6.89,-4.72 c 2.38,-3 3.59,-7 3.63,-12 1.45,3.26 2.28,6.66 1.65,9.74 z" id="path34" inkscape:connector-curvature="0" style="fill:#1d1d1b" />
|
||||||
|
<path class="cls-1" d="M 58.35,212.68373 Z" id="path36" inkscape:connector-curvature="0" style="fill:#1d1d1b" />
|
||||||
|
<path class="cls-1" d="m 79.08,256.93373 a 8.21,8.21 0 0 1 -0.33,2.13 c -0.86,3.17 -7,10.52 -15.11,10.37 H 63.5 c -8.44,0.17 -14.61,-8.24 -15.08,-10.24 a 7.83,7.83 0 0 1 -0.24,-3 c 4.18,2.48 10.83,2.95 14.35,3 h 1 c 3.69,0 11.05,-0.37 15.53,-3.08 a 4.68,4.68 0 0 1 0.02,0.82 z" id="path38" inkscape:connector-curvature="0" style="fill:#1d1d1b" />
|
||||||
|
<path class="cls-1" d="m 94.43,234.00373 a 9.81,9.81 0 0 1 -5.16,-1 16.48,16.48 0 0 0 1.32,-3.3 35.28,35.28 0 0 1 3.84,4.3 z" id="path40" inkscape:connector-curvature="0" style="fill:#1d1d1b" />
|
||||||
|
<path class="cls-1" d="m 124.78,139.80373 c -0.17,-17.61 -8.32,-35.3 -15.52,-50.929998 -4.98,-10.72 -9.64,-20.87 -10.68,-28.87 -1,-7.62 -0.4,-31.2 -0.12,-40.69 a 10.07,10.07 0 0 1 -3.51,0.87 h -0.63 -2.88 c -0.31,10.27 -0.83,32.79 0.19,40.7 1.15,9.12 6.07,19.7 11.24,30.92 0.82,1.79 1.66,3.61 2.49,5.45 l -0.7,0.8 c -2.78,2.999998 -8.39,8.059998 -15.59,8.779998 -5.72,0.58 -11.55,-1.69 -17.38,-6.73 q -0.81,-0.689998 -1.62,-1.469998 c -17.18,-16.4 -38,-9.88 -49.93,-3.7 l 1.24,-2.8 c 5,-11.39 9.78,-22.16 10.91,-31.26 1,-7.9 0.49,-30.42 0.2,-40.68 h -2.88 -0.64 a 9.86,9.86 0 0 1 -3.52,-0.88 c 0.28,9.5 0.85,33.08 -0.1,40.72 -1,8.08 -5.56,18.38 -10.38,29.3 -1.85,4.19 -3.77,8.54 -5.58,12.999998 -0.06,0.13 -0.11,0.26 -0.16,0.39 -4.91,12 -9,24.73 -9.16,37.14 a 3.71,3.71 0 0 0 -0.07,0.67 v 180.47 c 0,13.22 10.13,24 22.59,24 h 79.64 c 12.45,0 22.55,-10.77 22.55,-24 v -180.51 a 3.23,3.23 0 0 0 0,-0.69 z m -7,181.2 c 0,9.36 -7,17 -15.58,17 H 22.59 c -8.6,0 -15.59,-7.62 -15.59,-17 v -179.86 a 2.84,2.84 0 0 0 0.07,-0.66 c 0,-11.22 3.77,-23.12 8.38,-34.51 0.75,-0.55 2.1,-1.51 3.9,-2.62 a 60.86,60.86 0 0 1 13.11,-6.109998 c 11.24,-3.58 21,-2.41 29.2,3.479998 a 33.85,33.85 0 0 1 3.58,3 c 7.12,6.79 14.52,10.22 22.05,10.22 a 23.82,23.82 0 0 0 2.53,-0.13 c 8.37,-0.86 14.83,-5.79 18.63,-9.57 5,11.8 9.32,24.27 9.3,36.26 v 0 a 3.71,3.71 0 0 0 0.06,0.67 z" id="path42" inkscape:connector-curvature="0" style="fill:#1d1d1b" />
|
||||||
|
<path class="cls-1" d="M 94.32,0.00373187 H 29.61 a 10.09,10.09 0 0 0 -4.16,19.29000013 9.86,9.86 0 0 0 3.52,0.88 h 0.64 64.71 0.63 A 10.09,10.09 0 0 0 94.32,0.00373187 Z m 2.4,12.05000013 a 3.08,3.08 0 0 1 -2.4,1.14 H 29.61 a 3.1,3.1 0 1 1 0,-6.1900001 h 64.71 a 3.1,3.1 0 0 1 3.1,3.0900001 3,3 0 0 1 -0.7,1.96 z" id="path44" inkscape:connector-curvature="0" style="fill:#1d1d1b" />
|
||||||
|
<path class="cls-2" d="m 97.42,10.093732 a 3.1,3.1 0 0 1 -3.1,3.1 H 29.61 a 3.1,3.1 0 1 1 0,-6.1900001 h 64.71 a 3.1,3.1 0 0 1 3.1,3.0900001 z" id="path46" inkscape:connector-curvature="0" style="fill:#ffffff" />
|
||||||
|
<path class="cls-2" d="m 37.88,233.00373 a 9.86,9.86 0 0 1 -5.17,1 35.28,35.28 0 0 1 3.84,-4.3 15.51,15.51 0 0 0 1.33,3.3 z" id="path48" inkscape:connector-curvature="0" style="fill:#ffffff" />
|
||||||
|
<path class="cls-2" d="m 40.46,213.84373 a 15.89,15.89 0 0 0 -2.17,2.8 c -5.83,-2.48 -9.2,-5.76 -10,-9.77 -0.63,-3.06 0.2,-6.46 1.67,-9.68 0.05,4.94 1.26,8.94 3.63,11.93 a 14.11,14.11 0 0 0 6.87,4.72 z" id="path50" inkscape:connector-curvature="0" style="fill:#ffffff" />
|
||||||
|
<path class="cls-2" d="m 94.43,234.00373 a 9.81,9.81 0 0 1 -5.16,-1 16.48,16.48 0 0 0 1.32,-3.3 35.28,35.28 0 0 1 3.84,4.3 z" id="path52" inkscape:connector-curvature="0" style="fill:#ffffff" />
|
||||||
|
<path class="cls-2" d="m 98.87,206.86373 c -0.82,4 -4.19,7.3 -10,9.78 a 15.89,15.89 0 0 0 -2.17,-2.8 14.11,14.11 0 0 0 6.89,-4.72 c 2.38,-3 3.59,-7 3.63,-12 1.45,3.26 2.28,6.66 1.65,9.74 z" id="path54" inkscape:connector-curvature="0" style="fill:#ffffff" />
|
||||||
|
<path class="cls-1" d="m 54.44,206.47373 c -0.11,0 -0.22,0.07 -0.33,0.12 l 0.19,-0.08 z" id="path56" inkscape:connector-curvature="0" style="fill:#1d1d1b" />
|
||||||
|
<path class="cls-1" d="m 63.96,204.80373 a 7.12,7.12 0 0 0 -0.8,0 2.83,2.83 0 0 1 0.41,0 2.56,2.56 0 0 1 0.39,0 z" id="path58" inkscape:connector-curvature="0" style="fill:#1d1d1b" />
|
||||||
|
<path class="cls-1" d="M 58.35,212.68373 Z" id="path60" inkscape:connector-curvature="0" style="fill:#1d1d1b" />
|
||||||
|
<path class="cls-1" d="m 58.32,212.69373 z m -4,-6.18 -0.19,0.08 c 0.11,-0.05 0.22,-0.08 0.33,-0.12 z" id="path62" inkscape:connector-curvature="0" style="fill:#1d1d1b" />
|
||||||
|
<path class="cls-1" d="m 63.96,204.80373 a 7.12,7.12 0 0 0 -0.8,0 2.83,2.83 0 0 1 0.41,0 2.56,2.56 0 0 1 0.39,0 z" id="path64" inkscape:connector-curvature="0" style="fill:#1d1d1b" />
|
||||||
|
<path class="cls-1" d="m 73.04,206.59373 -0.17,-0.06 v 0 a 0.47,0.47 0 0 1 0.17,0.06 z" id="path66" inkscape:connector-curvature="0" style="fill:#1d1d1b" />
|
||||||
|
<path class="cls-1" d="m 72.89,206.53373 v 0 l 0.17,0.06 a 0.47,0.47 0 0 0 -0.17,-0.06 z" id="path68" inkscape:connector-curvature="0" style="fill:#1d1d1b" />
|
||||||
|
<path class="cls-2" d="M 58.35,212.68373 Z" id="path70" inkscape:connector-curvature="0" style="fill:#ffffff" />
|
||||||
|
<path class="cls-2" d="m 79.08,256.93373 a 8.21,8.21 0 0 1 -0.33,2.13 c -0.86,3.17 -7,10.52 -15.11,10.37 H 63.5 c -8.44,0.17 -14.61,-8.24 -15.08,-10.24 a 7.83,7.83 0 0 1 -0.24,-3 c 4.18,2.48 10.83,2.95 14.35,3 h 1 c 3.69,0 11.05,-0.37 15.53,-3.08 a 4.68,4.68 0 0 1 0.02,0.82 z" id="path72" inkscape:connector-curvature="0" style="fill:#ffffff" />
|
||||||
|
<path class="cls-2" d="m 117.78,140.49373 v 0 c 0,-12 -4.25,-24.46 -9.3,-36.26 -3.8,3.78 -10.26,8.71 -18.63,9.57 a 23.82,23.82 0 0 1 -2.53,0.13 c -7.53,0 -14.93,-3.43 -22.05,-10.22 a 33.85,33.85 0 0 0 -3.58,-3 c -8.16,-5.889998 -18,-7.059998 -29.2,-3.479998 a 60.86,60.86 0 0 0 -13.11,6.109998 c -1.8,1.11 -3.15,2.07 -3.9,2.62 -4.61,11.39 -8.41,23.29 -8.38,34.51 a 2.84,2.84 0 0 1 -0.07,0.66 v 179.87 c 0,9.36 7,17 15.59,17 h 79.64 c 8.52,0 15.52,-7.63 15.52,-17 v -179.84 a 3.71,3.71 0 0 1 0,-0.67 z m -12,67.77 c -1.23,6 -5.52,10.8 -12.76,14.21 a 41.23,41.23 0 0 1 10.3,12.53 3.48,3.48 0 0 1 -2.07,5 27.45,27.45 0 0 1 -7.37,1 h -0.55 a 16.12,16.12 0 0 1 -7.22,-1.73 71.62,71.62 0 0 0 -3.1,10 c 2.91,3.1 3.75,7 2.5,11.63 -0.77,2.82 -3.27,6.7 -7,9.88 a 22.71,22.71 0 0 1 -14.58,5.66 h -0.32 c -11.38,0.18 -20.66,-10 -22,-15.66 -1,-4.22 -0.42,-7.7 1.71,-10.52 a 91.59,91.59 0 0 0 -2.54,-10.85 16.54,16.54 0 0 1 -7,1.59 h -0.55 a 27.45,27.45 0 0 1 -7.34,-1 3.48,3.48 0 0 1 -2.11,-5 41.23,41.23 0 0 1 10.35,-12.49 28.21,28.21 0 0 1 -7.81,-5.25 17.31,17.31 0 0 1 -4.95,-9 c -2.72,-13.52 11.74,-27.69 12.41,-28.26 a 3.5,3.5 0 0 1 5.7,3.75 c -1.52,4.06 -4.57,15.76 -0.37,21.07 2,2.57 5.93,3.51 11.56,2.78 a 4,4 0 0 1 0.58,0 c 1,-0.37 2,-0.71 3.1,-1 a 25.56,25.56 0 0 1 18.59,0 c 1,0.3 2,0.63 3,1 0.19,0 0.39,0 0.61,0 5.63,0.73 9.52,-0.21 11.56,-2.78 4.2,-5.31 1.15,-17 -0.37,-21.07 a 3.5,3.5 0 0 1 5.7,-3.75 c 0.59,0.57 15.05,14.74 12.34,28.26 z" id="path74" inkscape:connector-curvature="0" style="fill:#ffffff" />
|
||||||
|
<path class="cls-1" d="m 105.78,208.26373 c 2.76,-13.52 -11.7,-27.69 -12.32,-28.29 a 3.5,3.5 0 0 0 -5.7,3.75 c 1.52,4.06 4.57,15.76 0.37,21.07 -2,2.57 -5.93,3.51 -11.56,2.78 -0.22,0 -0.42,0 -0.61,0 -1,-0.36 -2,-0.69 -3,-1 a 0.47,0.47 0 0 1 0.15,0.06 l -0.17,-0.06 v 0 a 24.74,24.74 0 0 0 -9.32,-1.76 2.56,2.56 0 0 1 0.39,0 7.12,7.12 0 0 0 -0.8,0 2.83,2.83 0 0 1 0.41,0 24.71,24.71 0 0 0 -9.27,1.74 h 0.14 c -0.11,0 -0.22,0.07 -0.33,0.12 l 0.19,-0.08 c -1.07,0.31 -2.1,0.65 -3.1,1 a 4,4 0 0 0 -0.58,0 c -5.63,0.73 -9.52,-0.21 -11.56,-2.78 -4.2,-5.31 -1.15,-17 0.37,-21.07 a 3.5,3.5 0 0 0 -5.7,-3.74 c -0.62,0.6 -15.08,14.77 -12.32,28.29 a 17.31,17.31 0 0 0 4.95,9 28.21,28.21 0 0 0 7.81,5.25 41.23,41.23 0 0 0 -10.44,12.46 3.48,3.48 0 0 0 2.07,5 27.45,27.45 0 0 0 7.41,1 h 0.52 a 16.54,16.54 0 0 0 7,-1.59 91.59,91.59 0 0 1 2.56,10.84 c -2.13,2.82 -2.68,6.3 -1.71,10.52 1.31,5.63 10.59,15.84 22,15.66 h 0.32 a 22.71,22.71 0 0 0 14.58,-5.66 c 3.77,-3.18 6.27,-7.06 7,-9.88 1.25,-4.63 0.41,-8.53 -2.5,-11.63 a 71.62,71.62 0 0 1 3.1,-10 16.12,16.12 0 0 0 7.22,1.73 h 0.55 a 27.45,27.45 0 0 0 7.37,-1.05 3.48,3.48 0 0 0 2.07,-5 41.23,41.23 0 0 0 -10.35,-12.49 c 7.22,-3.39 11.51,-8.16 12.79,-14.19 z m -73.07,25.74 a 35.28,35.28 0 0 1 3.84,-4.3 15.51,15.51 0 0 0 1.33,3.3 9.86,9.86 0 0 1 -5.17,1 z m 5.58,-17.36 c -5.83,-2.48 -9.2,-5.76 -10,-9.77 -0.63,-3.06 0.2,-6.46 1.67,-9.68 0.05,4.94 1.26,8.94 3.63,11.93 a 14.11,14.11 0 0 0 6.89,4.72 15.89,15.89 0 0 0 -2.19,2.8 z m 21.63,20.94 v 0 a 17.23,17.23 0 0 0 1.07,-5.67 v -0.46 c 0,-0.26 0,-0.56 0,-0.9 v -0.08 a 17.68,17.68 0 0 0 -0.71,-5.13 v 0 a 14.63,14.63 0 0 0 -2.39,-4.7 16.1,16.1 0 0 0 -2.32,-2.48 2.54,2.54 0 0 1 -0.43,-4 4.35,4.35 0 0 1 1.4,-1 v 0 c 0.6,-0.17 1.19,-0.32 1.74,-0.45 v 0 c 1,-0.24 1.93,-0.42 2.71,-0.55 l 0.61,-0.1 c 0.78,-0.12 1.38,-0.19 1.75,-0.23 h 0.3 0.45 l 0.38,0.05 a 40.83,40.83 0 0 1 4.24,0.78 v 0 c 0.56,0.13 1.15,0.28 1.76,0.45 v 0 0 a 4.05,4.05 0 0 1 1.38,1 2.54,2.54 0 0 1 -0.43,4 16.1,16.1 0 0 0 -2.32,2.48 14.63,14.63 0 0 0 -2.39,4.7 v 0 a 17.68,17.68 0 0 0 -0.71,5.13 v 0.08 c 0,0.34 0,0.64 0,0.9 v 0.46 a 18,18 0 0 0 1.33,6.38 47.42,47.42 0 0 0 5.61,9.8 l -1.7,0.32 a 39.45,39.45 0 0 1 -6.65,0.74 h -2.2 a 40.94,40.94 0 0 1 -7.19,-0.84 l -1.16,-0.22 a 45.23,45.23 0 0 0 5.87,-10.46 z m 18.86,21.48 c -0.86,3.17 -7,10.52 -15.11,10.37 h -0.14 c -8.44,0.17 -14.61,-8.24 -15.08,-10.24 a 7.83,7.83 0 0 1 -0.24,-3 c 4.18,2.48 10.83,2.95 14.35,3 h 1 c 3.69,0 11.05,-0.37 15.53,-3.08 a 4.68,4.68 0 0 1 0.06,0.76 8.21,8.21 0 0 1 -0.37,2.19 z m 15.65,-25.06 a 9.81,9.81 0 0 1 -5.16,-1 16.48,16.48 0 0 0 1.32,-3.3 35.28,35.28 0 0 1 3.84,4.3 z m 4.44,-27.14 c -0.82,4 -4.19,7.3 -10,9.78 a 15.89,15.89 0 0 0 -2.17,-2.8 14.11,14.11 0 0 0 6.89,-4.72 c 2.38,-3 3.59,-7 3.63,-12 1.45,3.26 2.28,6.66 1.65,9.74 z" id="path76" inkscape:connector-curvature="0" style="fill:#1d1d1b" />
|
||||||
|
<path class="cls-2" d="m 73.09,248.08373 -1.7,0.32 a 39.45,39.45 0 0 1 -6.65,0.74 H 62.4 a 40.94,40.94 0 0 1 -7.19,-0.84 l -1.16,-0.22 a 45.23,45.23 0 0 0 5.87,-10.5 v 0 a 17.23,17.23 0 0 0 1.07,-5.67 v -0.46 c 0,-0.26 0,-0.56 0,-0.9 v -0.08 a 17.68,17.68 0 0 0 -0.71,-5.13 v 0 a 14.63,14.63 0 0 0 -2.39,-4.7 16.1,16.1 0 0 0 -2.32,-2.48 2.54,2.54 0 0 1 -0.43,-4 4.35,4.35 0 0 1 1.4,-1 v 0 c 0.6,-0.17 1.19,-0.32 1.74,-0.45 v 0 c 1,-0.24 1.93,-0.42 2.71,-0.55 l 0.61,-0.1 c 0.78,-0.12 1.38,-0.19 1.75,-0.23 h 0.3 0.45 l 0.38,0.05 a 40.83,40.83 0 0 1 4.24,0.78 v 0 c 0.56,0.13 1.15,0.28 1.76,0.45 v 0 0 a 4.05,4.05 0 0 1 1.38,1 2.54,2.54 0 0 1 -0.43,4 16.1,16.1 0 0 0 -2.32,2.48 14.63,14.63 0 0 0 -2.39,4.7 v 0 a 17.68,17.68 0 0 0 -0.71,5.13 v 0.08 c 0,0.34 0,0.64 0,0.9 v 0.46 a 18,18 0 0 0 1.33,6.38 47.42,47.42 0 0 0 5.75,9.84 z" id="path78" inkscape:connector-curvature="0" style="fill:#ffffff" />
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 13 KiB |
@@ -0,0 +1,28 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<svg xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" id="Capa_1" data-name="Capa 1" viewBox="0 0 139.08067 168.85148" version="1.1" inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)">
|
||||||
|
<metadata id="metadata51">
|
||||||
|
<rdf:RDF>
|
||||||
|
<cc:Work rdf:about="">
|
||||||
|
<dc:format>image/svg+xml</dc:format>
|
||||||
|
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<sodipodi:namedview pagecolor="#ffffff" bordercolor="#666666" borderopacity="1" objecttolerance="10" gridtolerance="10" guidetolerance="10" inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:window-width="855" inkscape:window-height="480" id="namedview49" showgrid="false" inkscape:zoom="0.89699732" inkscape:cx="69.540334" inkscape:cy="37.301477" inkscape:window-x="0" inkscape:window-y="27" inkscape:window-maximized="0" inkscape:current-layer="Capa_1" />
|
||||||
|
<defs id="defs4">
|
||||||
|
<style id="style2">.cls-1{fill:#1d1d1b;}.cls-2{fill:#fff;}</style>
|
||||||
|
</defs>
|
||||||
|
<path class="cls-1" d="m 59.340334,149.48 h 0.25 -0.17 z" id="path6" inkscape:connector-curvature="0" style="fill:#1d1d1b" />
|
||||||
|
<path class="cls-2" d="M 113.44033,40.44 C 106.00033,28 90.280334,7 69.540334,7 c -20.74,0 -36.41,21 -43.9,33.44 -11.32,18.87 -18.6400005,42.48 -18.6400005,60.15 a 60.31,60.31 0 0 0 18.1000005,43.27 62.77,62.77 0 0 0 44.44,17.95 62.81,62.81 0 0 0 44.459996,-17.95 60.34,60.34 0 0 0 18.09,-43.27 c -0.01,-17.67 -7.33,-41.28 -18.65,-60.15 z m -63.999996,69.9 c 4.21,20.06 12.56,32.26 13.43,33.54 l 0.24,0.35 0.14,0.25 a 2.06,2.06 0 0 1 0.12,0.26 1.06,1.06 0 0 1 0.09,0.25 3.46,3.46 0 0 1 0.16,1.44 l -0.06,0.36 c 0,0.1 -0.05,0.19 -0.07,0.28 a 3,3 0 0 1 -0.24,0.59 1.92,1.92 0 0 1 -0.18,0.31 2.59,2.59 0 0 1 -0.32,0.42 l -0.21,0.22 -0.33,0.27 -0.21,0.12 a 1.37,1.37 0 0 1 -0.2,0.13 l -0.3,0.13 -0.26,0.1 a 3.47,3.47 0 0 1 -1.07,0.17 2.56,2.56 0 0 1 -0.55,0 h -0.25 c -2.17,-0.47 -32.06,-7.4 -42.22,-33.94 -8.8000005,-23 0.11,-52.88 26.5,-88.92 a 3.5022172,3.5022172 0 0 1 5.65,4.14 c -24.9,33.92 -33.53,61.58 -25.67,82.19 5.81,15.2 19.68,23.15 28.75,26.86 a 111.8,111.8 0 0 1 -9.7,-27.7 c -4.39,-20.64 -5.46,-53.55 14.32,-93.16 a 3.5039192,3.5039192 0 0 1 6.27,3.13 c -18.8,37.63 -17.89,68.74 -13.82,88.21 z m 23.56,35.73 a 3.5,3.5 0 0 1 -7,0 V 18.33 a 3.5,3.5 0 0 1 7,0 z m 6.7,3.41 h -0.25 a 2.56,2.56 0 0 1 -0.55,0 3.47,3.47 0 0 1 -1.07,-0.17 l -0.26,-0.1 a 3.27,3.27 0 0 1 -0.77,-0.44 l -0.31,-0.25 a 3.49,3.49 0 0 1 -0.7,-1 2.39,2.39 0 0 1 -0.13,-0.28 2.47,2.47 0 0 1 -0.1,-0.29 c 0,-0.1 -0.06,-0.2 -0.08,-0.3 a 3.46,3.46 0 0 1 0.1,-1.81 1.06,1.06 0 0 1 0.09,-0.25 1.42,1.42 0 0 1 0.12,-0.25 l 0.14,-0.25 c 0,-0.08 0.1,-0.16 0.16,-0.24 l 0.09,-0.12 c 0.93,-1.33 9.22,-13.52 13.41,-33.53 4.07,-19.47 5,-50.58 -13.82,-88.24 a 3.5,3.5 0 0 1 6.31,-2.96 c 19.779996,39.64 18.709996,72.55 14.32,93.18 a 111.8,111.8 0 0 1 -9.7,27.7 c 9.07,-3.71 22.939996,-11.66 28.749996,-26.86 7.86,-20.6 -0.77,-48.26 -25.639996,-82.23 a 3.5022172,3.5022172 0 0 1 5.65,-4.14 c 26.389996,36 35.309996,66 26.509996,88.92 -10.17,26.51 -40.049996,33.43 -42.229996,33.91 z" id="path8" inkscape:connector-curvature="0" style="fill:#ffffff" />
|
||||||
|
<path class="cls-1" d="M 119.44033,36.84 C 105.19033,13.08 87.470334,0 69.540334,0 c -17.93,0 -35.65,13.08 -49.9,36.84 C 7.7103335,56.72 3.3352829e-4,81.74 3.3352829e-4,100.59 A 67.29,67.29 0 0 0 20.180334,148.85 a 69.79,69.79 0 0 0 49.36,20 69.79,69.79 0 0 0 49.359996,-20 67.29,67.29 0 0 0 20.18,-48.26 c 0,-18.85 -7.71,-43.87 -19.64,-63.75 z m -5.45,107 a 62.81,62.81 0 0 1 -44.449996,17.95 62.77,62.77 0 0 1 -44.44,-17.93 60.31,60.31 0 0 1 -18.1000005,-43.27 c 0,-17.67 7.3200005,-41.28 18.6400005,-60.15 7.49,-12.44 23.16,-33.44 43.9,-33.44 20.74,0 36.459996,21 43.899996,33.44 11.32,18.87 18.64,42.48 18.64,60.15 a 60.34,60.34 0 0 1 -18.08,43.27 z" id="path10" inkscape:connector-curvature="0" style="fill:#1d1d1b" />
|
||||||
|
<path class="cls-1" d="m 73.000334,18.33 v 127.74 a 3.5,3.5 0 0 1 -7,0 V 18.33 a 3.5,3.5 0 0 1 7,0 z" id="path12" inkscape:connector-curvature="0" style="fill:#1d1d1b" />
|
||||||
|
<path class="cls-1" d="m 63.460334,145 a 3.46,3.46 0 0 1 0.16,1.44 l -0.06,0.36 c 0,0.1 -0.05,0.19 -0.07,0.28 a 3,3 0 0 1 -0.24,0.59 1.92,1.92 0 0 1 -0.18,0.31 2.59,2.59 0 0 1 -0.32,0.42 l -0.21,0.22 -0.33,0.27 -0.21,0.11 a 1.37,1.37 0 0 1 -0.2,0.13 l -0.3,0.13 -0.26,0.1 a 3.47,3.47 0 0 1 -1.07,0.17 2.56,2.56 0 0 1 -0.55,0 h -0.25 c -2.17,-0.47 -32.06,-7.4 -42.22,-33.94 -8.8000005,-23 0.11,-52.88 26.5,-88.92 a 3.5022172,3.5022172 0 0 1 5.65,4.14 c -24.9,33.92 -33.53,61.58 -25.67,82.19 5.81,15.2 19.68,23.15 28.75,26.86 a 111.8,111.8 0 0 1 -9.7,-27.7 c -4.39,-20.64 -5.46,-53.55 14.32,-93.16 a 3.5039192,3.5039192 0 0 1 6.27,3.13 c -18.8,37.66 -17.89,68.77 -13.82,88.24 4.2,20.03 12.55,32.23 13.42,33.51 l 0.24,0.35 0.14,0.25 a 2.06,2.06 0 0 1 0.12,0.26 1.06,1.06 0 0 1 0.09,0.26 z" id="path14" inkscape:connector-curvature="0" style="fill:#1d1d1b" />
|
||||||
|
<path class="cls-1" d="m 122.00033,115.54 c -10.17,26.54 -39.999996,33.47 -42.229996,33.94 h -0.25 a 2.56,2.56 0 0 1 -0.55,0 3.47,3.47 0 0 1 -1.07,-0.17 l -0.26,-0.1 a 3.27,3.27 0 0 1 -0.77,-0.44 l -0.31,-0.25 a 3.49,3.49 0 0 1 -0.7,-1 2.39,2.39 0 0 1 -0.13,-0.28 2.47,2.47 0 0 1 -0.1,-0.29 c 0,-0.1 -0.06,-0.2 -0.08,-0.3 a 3.46,3.46 0 0 1 0.1,-1.81 1.06,1.06 0 0 1 0.09,-0.25 1.42,1.42 0 0 1 0.12,-0.25 l 0.14,-0.25 c 0,-0.08 0.1,-0.16 0.16,-0.24 l 0.09,-0.12 c 0.93,-1.33 9.22,-13.52 13.41,-33.53 4.07,-19.47 5,-50.58 -13.82,-88.24 a 3.5,3.5 0 0 1 6.24,-2.96 c 19.779996,39.64 18.709996,72.55 14.32,93.18 a 111.8,111.8 0 0 1 -9.7,27.7 c 9.07,-3.71 22.939996,-11.66 28.749996,-26.86 7.86,-20.6 -0.77,-48.26 -25.639996,-82.23 a 3.5022172,3.5022172 0 0 1 5.65,-4.14 c 26.389996,36.01 35.309996,65.93 26.539996,88.89 z" id="path16" inkscape:connector-curvature="0" style="fill:#1d1d1b" />
|
||||||
|
<path class="cls-1" d="m 79.740334,149.48 h -0.08 -0.17 z" id="path18" inkscape:connector-curvature="0" style="fill:#1d1d1b" />
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 6.2 KiB |
|
After Width: | Height: | Size: 76 KiB |
@@ -0,0 +1,57 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<svg xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" id="Capa_1" data-name="Capa 1" viewBox="0 0 227.13892 141.70656" version="1.1" inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)">
|
||||||
|
<metadata id="metadata103">
|
||||||
|
<rdf:RDF>
|
||||||
|
<cc:Work rdf:about="">
|
||||||
|
<dc:format>image/svg+xml</dc:format>
|
||||||
|
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<sodipodi:namedview pagecolor="#ffffff" bordercolor="#666666" borderopacity="1" objecttolerance="10" gridtolerance="10" guidetolerance="10" inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:window-width="855" inkscape:window-height="480" id="namedview101" showgrid="false" inkscape:zoom="0.86572528" inkscape:cx="113.21801" inkscape:cy="61.245102" inkscape:window-x="0" inkscape:window-y="27" inkscape:window-maximized="0" inkscape:current-layer="Capa_1" />
|
||||||
|
<defs id="defs4">
|
||||||
|
<style id="style2">.cls-1{fill:#1d1d1b;}.cls-2{fill:#fff;}.cls-3{fill:none;}</style>
|
||||||
|
</defs>
|
||||||
|
<path class="cls-2" d="m 227.13892,105.01656 v 0.27 c -0.23,5.91 -2.07,20.6 -14.31,29.35 -10.54,7.53 -25.54,8.45 -44.57,2.73 l -2.67,-0.81 c -11.13,-3.38 -12.56,-3.82 -26.56,0.78 -8.84,2.91 -16.8,4.37 -23.83,4.37 -8.17,0 -15.1,-2 -20.710003,-5.89 -12.4,-8.66 -14.22,-24.25 -14.43,-30.55 v -0.25 c 0.21,-6.299996 2,-21.889996 14.43,-30.549996 10.440003,-7.3 25.430003,-7.81 44.540003,-1.53 14,4.61 15.43,4.17 26.56,0.78 l 2.66,-0.8 v 0 c 19,-5.72 34,-4.8 44.57,2.73 12.25,8.76 14.09,23.45 14.32,29.369996 z" id="path28" inkscape:connector-curvature="0" style="fill:#ffffff" />
|
||||||
|
<path class="cls-1" d="m 196.11892,81.696564 h -20 a 23.45,23.45 0 0 0 -22.48,16.84 23.49,23.49 0 0 0 -22.5,-16.84 h -20 a 23.45,23.45 0 0 0 0,46.889996 h 20 a 23.48,23.48 0 0 0 22.5,-16.85 23.44,23.44 0 0 0 22.48,16.85 h 20 a 23.45,23.45 0 0 0 0,-46.889996 z m -65,39.889996 h -20 a 16.45,16.45 0 0 1 0,-32.889996 h 20 a 16.45,16.45 0 1 1 0,32.889996 z m 65,0 h -20 a 16.45,16.45 0 0 1 0,-32.889996 h 20 a 16.45,16.45 0 0 1 0,32.889996 z" id="path30" inkscape:connector-curvature="0" style="fill:#1d1d1b" />
|
||||||
|
<path class="cls-1" d="m 212.82892,75.656564 c -10.54,-7.53 -25.53,-8.45 -44.57,-2.73 v 0 l -2.66,0.8 c -11.14,3.39 -12.6,3.83 -26.6,-0.78 -19.11,-6.28 -34.1,-5.77 -44.540003,1.53 -12.37,8.66 -14.19,24.25 -14.4,30.539996 v 0.23 c 0.21,6.3 2,21.89 14.43,30.55 5.610003,3.92 12.540003,5.89 20.710003,5.89 7,0 15,-1.46 23.83,-4.37 14,-4.6 15.43,-4.16 26.56,-0.78 l 2.67,0.81 c 19,5.72 34,4.8 44.57,-2.73 12.24,-8.75 14.08,-23.44 14.31,-29.35 v -0.25 c -0.23,-5.919996 -2.07,-20.609996 -14.31,-29.359996 z m -4.07,53.269996 c -8.69,6.21 -21.64,6.79 -38.49,1.73 l -2.64,-0.8 c -12.11,-3.69 -15.22,-4.29 -30.78,0.82 -16.91,5.57 -29.81,5.36 -38.350003,-0.61 -9.74,-6.8 -11.25,-19.61 -11.44,-24.93 0.19,-5.319996 1.7,-18.119996 11.44,-24.929996 8.540003,-6 21.440003,-6.17 38.350003,-0.61 15.56,5.12 18.67,4.52 30.78,0.83 l 2.64,-0.8 c 16.86,-5.06 29.8,-4.48 38.49,1.72 9.63,6.89 11.17,18.829996 11.38,23.789996 -0.21,4.96 -1.75,16.88 -11.38,23.79 z" id="path32" inkscape:connector-curvature="0" style="fill:#1d1d1b" />
|
||||||
|
<path class="cls-2" d="m 84.358917,10.016564 -2.19,3.89 a 78.63,78.63 0 0 0 -8.54,-3.89 c 1.17,-1.0999998 2.14,-1.9199998 2.79,-2.4399998 a 40.66,40.66 0 0 1 7.94,2.4399998 z" id="path34" inkscape:connector-curvature="0" style="fill:#ffffff" />
|
||||||
|
<path class="cls-2" d="m 96.668917,19.016564 c -0.12,0.88 -0.33,2.25 -0.71,4 a 93.73,93.73 0 0 0 -7.73,-5.53 l 2.24,-4 a 40.53,40.53 0 0 1 6.2,5.53 z" id="path36" inkscape:connector-curvature="0" style="fill:#ffffff" />
|
||||||
|
<path class="cls-2" d="m 48.548917,65.736564 c 0,0 0,0 0,0 a 0.47,0.47 0 0 0 -0.05,0.1 v 0 a 0.64,0.64 0 0 0 0.05,-0.1 z" id="path38" inkscape:connector-curvature="0" style="fill:#ffffff" />
|
||||||
|
<path class="cls-2" d="m 37.388917,55.636564 a 75.85,75.85 0 0 0 3.48,-13.25 q 0.38,-1.9 0.81,-3.72 c 2.78,2.35 5.57,4.57 8.32,6.58 a 20.65,20.65 0 0 1 -1.71,4.55 c -1.21,2.3 -2,4.06 -2.79,5.91 -0.47,1.07 -1,2.22 -1.62,3.59" id="path40" inkscape:connector-curvature="0" style="fill:#ffffff" />
|
||||||
|
<path class="cls-2" d="m 60.608917,52.256564 -7,12.49 -3.56,-2 c 0.78,-1.64 1.36,-3 1.9,-4.21 0.8,-1.82 1.5,-3.39 2.59,-5.49 a 25.65,25.65 0 0 0 1.56,-3.62 c 1.5,0.99 3.02,1.94 4.51,2.83 z" id="path42" inkscape:connector-curvature="0" style="fill:#ffffff" />
|
||||||
|
<path class="cls-2" d="m 71.458917,58.116564 a 27.7,27.7 0 0 0 -2.25,3.19 c -2,3.35 -3,5.09 -4.9,8.57 -0.12,0.22 -0.25,0.45 -0.37,0.69 l -4.25,-2.39 7,-12.48 c 1.65,0.88 3.24,1.68 4.77,2.42 z" id="path44" inkscape:connector-curvature="0" style="fill:#ffffff" />
|
||||||
|
<path class="cls-2" d="m 53.428917,28.086564 a 51,51 0 0 0 -2.33,9.2 q -3.68,-2.81 -7.32,-6.09 a 60,60 0 0 1 2.8,-7 z" id="path46" inkscape:connector-curvature="0" style="fill:#ffffff" />
|
||||||
|
<path class="cls-2" d="m 61.068917,13.676564 a 57.88,57.88 0 0 0 -4.87,7.94 l -6.1,-3.44 a 29.63,29.63 0 0 1 4.83,-5.41 55,55 0 0 1 6.14,0.91 z" id="path48" inkscape:connector-curvature="0" style="fill:#ffffff" />
|
||||||
|
<path class="cls-2" d="m 69.208917,37.016564 -5.15,9.1 c -2.12,-1.27 -4.29,-2.64 -6.48,-4.14 a 44.31,44.31 0 0 1 2.08,-10.38 z" id="path50" inkscape:connector-curvature="0" style="fill:#ffffff" />
|
||||||
|
<path class="cls-2" d="m 78.698917,20.096564 -6.06,10.77 -10.28,-5.79 a 52.31,52.31 0 0 1 5.64,-8.82 l 0.47,-0.59 a 68.18,68.18 0 0 1 10.23,4.43 z" id="path52" inkscape:connector-curvature="0" style="fill:#ffffff" />
|
||||||
|
<path class="cls-2" d="m 84.868917,45.776564 a 44.92,44.92 0 0 1 -7.82,7.24 c -2.17,-1 -4.48,-2.13 -6.89,-3.41 l 5.16,-9.15 z" id="path54" inkscape:connector-curvature="0" style="fill:#ffffff" />
|
||||||
|
<path class="cls-2" d="m 93.788917,30.366564 a 52.49,52.49 0 0 1 -4.79,9.73 l -10.25,-5.79 6,-10.66 a 85.34,85.34 0 0 1 9.04,6.72 z" id="path56" inkscape:connector-curvature="0" style="fill:#ffffff" />
|
||||||
|
<path class="cls-2" d="m 14.648917,95.466564 a 57.51,57.51 0 0 0 -4.15,7.999996 q -1.6799998,-1.92 -3.2099998,-4.069996 a 31.14,31.14 0 0 1 1.94,-7 z" id="path58" inkscape:connector-curvature="0" style="fill:#ffffff" />
|
||||||
|
<path class="cls-2" d="m 25.388917,82.956564 a 53.61,53.61 0 0 0 -6.65,6.78 l -6.35,-3.57 a 59.43,59.43 0 0 1 4.35,-6.15 c 3,0.87 5.88,1.87 8.65,2.94 z" id="path60" inkscape:connector-curvature="0" style="fill:#ffffff" />
|
||||||
|
<path class="cls-2" d="m 40.668917,65.516564 a 32.2,32.2 0 0 1 -3.11,4.5 34.1,34.1 0 0 0 -2.92,4.09 20.29,20.29 0 0 1 -3,3.83 q -4.68,-2 -9.84,-3.67 c 0.86,-0.9 1.77,-1.81 2.71,-2.72 l 2,-1.91 a 70,70 0 0 0 7.49,-7.9 z" id="path62" inkscape:connector-curvature="0" style="fill:#ffffff" />
|
||||||
|
<path class="cls-2" d="m 39.668917,89.466564 -5.15,9.15 -9.52,-5.37 a 44.42,44.42 0 0 1 7.81,-7.18 c 2.38,1.1 4.68,2.24 6.86,3.4 z" id="path64" inkscape:connector-curvature="0" style="fill:#ffffff" />
|
||||||
|
<path class="cls-2" d="m 50.148917,70.846564 -7,12.48 c -1.53,-0.81 -3.13,-1.61 -4.78,-2.4 a 27.17,27.17 0 0 0 2.29,-3.22 27.47,27.47 0 0 1 2.34,-3.33 40.13,40.13 0 0 0 3.78,-5.42 z" id="path66" inkscape:connector-curvature="0" style="fill:#ffffff" />
|
||||||
|
<path class="cls-2" d="m 52.258917,97.016564 a 44.14,44.14 0 0 1 -2.09,10.419996 l -9.55,-5.42 5.16,-9.149996 c 2.34,1.42 4.51,2.8 6.48,4.15 z" id="path68" inkscape:connector-curvature="0" style="fill:#ffffff" />
|
||||||
|
<path class="cls-2" d="m 65.798917,107.53656 a 61.84,61.84 0 0 1 -3,7 l -6.36,-3.58 a 50.78,50.78 0 0 0 2.35,-9.26 c 3.43,2.62 5.83,4.75 7.01,5.84 z" id="path70" inkscape:connector-curvature="0" style="fill:#ffffff" />
|
||||||
|
<path class="cls-2" d="m 21.558917,121.65656 -2.17,3.86 a 36.9,36.9 0 0 1 -6.17,-5.84 c 0.11,-0.82 0.3,-2 0.6,-3.37 a 71.59,71.59 0 0 0 7.74,5.35 z" id="path72" inkscape:connector-curvature="0" style="fill:#ffffff" />
|
||||||
|
<path class="cls-2" d="m 31.088917,104.71656 -6.09,10.79 a 63.54,63.54 0 0 1 -9.08,-6.58 53,53 0 0 1 4.86,-9.999996 z" id="path74" inkscape:connector-curvature="0" style="fill:#ffffff" />
|
||||||
|
<path class="cls-2" d="m 36.568917,128.62656 c -1.17,1.13 -2.17,2 -2.88,2.56 v 0 a 36.36,36.36 0 0 1 -8.19,-2.24 l 2.24,-4 a 84.15,84.15 0 0 0 8.83,3.68 z" id="path76" inkscape:connector-curvature="0" style="fill:#ffffff" />
|
||||||
|
<path class="cls-2" d="m 47.478917,113.93656 a 52.31,52.31 0 0 1 -5.6,8.82 l -0.11,0.14 a 81.09,81.09 0 0 1 -10.57,-4.1 l 6,-10.65 z" id="path78" inkscape:connector-curvature="0" style="fill:#ffffff" />
|
||||||
|
<path class="cls-2" d="m 59.048917,120.44656 a 30.67,30.67 0 0 1 -4.89,5.23 c -0.82,-0.1 -2.6,-0.35 -5,-0.86 a 57.87,57.87 0 0 0 4.5,-7.42 z" id="path80" inkscape:connector-curvature="0" style="fill:#ffffff" />
|
||||||
|
<path class="cls-2" d="m 60.518917,76.676564 c -1,1.75 -1.67,2.92 -2.19,3.83 -1.16,2 -1.59,2.76 -3,5.47 a 26.27,26.27 0 0 0 -1.54,3.58 v 0 c -1.43,-0.92 -3,-1.86 -4.54,-2.8 l 7,-12.48 z" id="path82" inkscape:connector-curvature="0" style="fill:#ffffff" />
|
||||||
|
<path class="cls-2" d="m 72.428917,83.376564 a 67.4,67.4 0 0 0 -2.86,10.48 c -0.18,0.85 -0.38,1.74 -0.59,2.69 -0.28,1.25 -0.58,2.46 -0.89,3.639996 -2,-1.699996 -4.74,-3.999996 -8.25,-6.489996 a 19.39,19.39 0 0 1 1.69,-4.48 c 1.35,-2.58 1.73,-3.2 2.87,-5.2 0.52,-0.92 1.21,-2.11 2.22,-3.89 z" id="path84" inkscape:connector-curvature="0" style="fill:#ffffff" />
|
||||||
|
<path class="cls-2" d="m 88.088917,64.876564 c -0.86,0.85 -1.76,1.7 -2.7,2.56 a 76.43,76.43 0 0 0 -9.51,9.85 l -5.88,-3.27 0.41,-0.75 c 1.93,-3.49 2.81,-5.09 4.76,-8.32 a 20.28,20.28 0 0 1 3,-3.77 c 4.02,1.69 7.43,2.9 9.92,3.7 z" id="path86" inkscape:connector-curvature="0" style="fill:#ffffff" />
|
||||||
|
<path class="cls-2" d="m 97.938917,53.136564 a 60.52,60.52 0 0 1 -4.51,6 c -1.4,-0.39 -4.62,-1.36 -9,-3.08 a 50.5,50.5 0 0 0 6.7,-6.81 z" id="path88" inkscape:connector-curvature="0" style="fill:#ffffff" />
|
||||||
|
<path class="cls-2" d="m 103.43892,39.886564 a 29.91,29.91 0 0 1 -2.15,7.1 l -6.110003,-3.44 a 56.47,56.47 0 0 0 4.17,-8.06 c 1.890003,1.89 3.270003,3.44 4.090003,4.4 z" id="path90" inkscape:connector-curvature="0" style="fill:#ffffff" />
|
||||||
|
<path class="cls-1" d="m 110.62892,33.016564 c -1.47,-15 -14.160003,-24.2699998 -19.550003,-27.5399998 l -0.08,-0.06 -0.1,-0.06 c -5.59,-2.9 -20.07,-9 -33.7,-2.4 -11.5,5.52 -19.3,18.3299998 -23.2,38.0599998 -2.85,14.47 -3.93,15.5 -12.34,23.54 l -2,1.93 q -9.9999998,9.61 -14.9199998,19 c -0.14,0.26 -0.28,0.52 -0.4,0.77 0,0 0,0 0,0 q -5.22,10.45 -4.16,20.409996 a 31.94,31.94 0 0 0 6.12,15.49 v 0 c 0.36,0.49 0.74,1 1.11,1.45 0,0 0,0 0,0 a 45.26,45.26 0 0 0 11.3099998,9.9 l 0.11,0.06 0.12,0.07 a 45,45 0 0 0 14.32,4.53 c 0.59,0.08 1.19,0.15 1.79,0.2 v 0 c 1,0.08 2,0.13 3,0.13 a 31.47,31.47 0 0 0 13.47,-2.94 c 11.73,-5.49 19.88,-18.11 24.24,-37.499996 v 0 l 0.6,-2.71 c 2.5,-11.36 2.83,-12.82 13.7,-22.76 12.500003,-11.36 19.360003,-22.57 20.520003,-33.35 a 29.89,29.89 0 0 0 0.04,-6.22 z m -20.160003,-19.54 a 40.53,40.53 0 0 1 6.2,5.54 c -0.12,0.88 -0.33,2.25 -0.71,4 a 93.73,93.73 0 0 0 -7.73,-5.53 z m 3.32,16.89 a 52.49,52.49 0 0 1 -4.79,9.73 l -10.25,-5.79 6,-10.66 a 85.34,85.34 0 0 1 9.04,6.72 z m -55.45,50.56 a 27.17,27.17 0 0 0 2.29,-3.22 27.47,27.47 0 0 1 2.37,-3.33 40.13,40.13 0 0 0 3.78,-5.42 l 3.36,1.89 -7,12.48 c -1.55,-0.81 -3.14,-1.61 -4.8,-2.4 z m 1.33,8.54 -5.15,9.15 -9.52,-5.37 a 44.42,44.42 0 0 1 7.81,-7.18 c 2.38,1.1 4.68,2.24 6.86,3.4 z m 20.94,-37.21 -7,12.49 -3.56,-2 c 0.78,-1.64 1.36,-3 1.9,-4.21 0.8,-1.82 1.5,-3.39 2.59,-5.49 a 25.65,25.65 0 0 0 1.56,-3.62 c 1.5,0.99 3.02,1.94 4.51,2.83 z m -3.03,-10.24 a 44.31,44.31 0 0 1 2.08,-10.38 l 9.55,5.38 -5.15,9.1 c -2.12,-1.27 -4.29,-2.64 -6.48,-4.1 z m -11.8,50.88 c 2.34,1.39 4.51,2.77 6.48,4.1 a 44.14,44.14 0 0 1 -2.09,10.419996 l -9.55,-5.4 z m 3.45,-6.14 7,-12.48 4.27,2.4 c -1,1.75 -1.67,2.92 -2.19,3.83 -1.16,2 -1.59,2.76 -3,5.47 a 26.27,26.27 0 0 0 -1.54,3.58 v 0 c -1.43,-0.92 -2.95,-1.86 -4.54,-2.8 z m 10.46,-18.58 7,-12.48 c 1.63,0.88 3.22,1.68 4.75,2.42 a 27.7,27.7 0 0 0 -2.25,3.19 c -2,3.35 -3,5.09 -4.9,8.57 -0.12,0.22 -0.25,0.45 -0.37,0.69 z m 10.47,-18.62 5.16,-9.15 9.55,5.37 a 44.92,44.92 0 0 1 -7.82,7.24 c -2.17,-1 -4.48,-2.18 -6.89,-3.46 z m 6.26,-41.9499998 a 40.66,40.66 0 0 1 7.94,2.4099998 l -2.19,3.89 a 78.63,78.63 0 0 0 -8.54,-3.89 c 1.17,-1.0699998 2.14,-1.8899998 2.79,-2.4099998 z m -8.42,8.6499998 0.47,-0.59 a 68.18,68.18 0 0 1 10.23,4.43 l -6.06,10.77 -10.28,-5.79 a 52.31,52.31 0 0 1 5.64,-8.82 z m -13,-3.49 a 55,55 0 0 1 6.14,0.91 57.88,57.88 0 0 0 -4.94,7.94 l -6.1,-3.44 a 29.63,29.63 0 0 1 4.83,-5.41 z m -8.42,11.47 6.85,3.85 a 51,51 0 0 0 -2.33,9.2 q -3.68,-2.81 -7.32,-6.09 a 60,60 0 0 1 2.8,-6.96 z m -5.71,18.15 q 0.38,-1.9 0.81,-3.72 c 2.78,2.35 5.57,4.57 8.32,6.58 a 20.65,20.65 0 0 1 -1.71,4.55 c -1.21,2.3 -2,4.06 -2.79,5.91 -0.47,1.07 -1,2.22 -1.62,3.59 l -6.51,-3.66 a 75.85,75.85 0 0 0 3.5,-13.25 z m -16.36,29.14 2,-1.91 a 70,70 0 0 0 7.49,-7.88 l 6.7,3.78 a 32.2,32.2 0 0 1 -3.14,4.5 34.1,34.1 0 0 0 -2.92,4.09 20.29,20.29 0 0 1 -3,3.83 q -4.68,-2 -9.84,-3.67 c 0.86,-0.92 1.77,-1.83 2.71,-2.74 z m -7.77,8.49 c 3,0.9 5.88,1.9 8.65,3 a 53.61,53.61 0 0 0 -6.65,6.78 l -6.35,-3.57 a 59.43,59.43 0 0 1 4.35,-6.21 z m -6.24,23.499996 q -1.6799998,-1.92 -3.2099998,-4.069996 a 31.14,31.14 0 0 1 1.94,-7 l 5.4199998,3 a 57.51,57.51 0 0 0 -4.15,8.039996 z m 8.89,22 a 36.9,36.9 0 0 1 -6.17,-5.84 c 0.11,-0.82 0.3,-2 0.6,-3.37 a 71.59,71.59 0 0 0 7.74,5.35 z m -3.45,-16.59 a 53,53 0 0 1 4.86,-9.999996 l 10.29,5.789996 -6.09,10.79 a 63.54,63.54 0 0 1 -9.06,-6.58 z m 17.75,22.26 v 0 a 36.36,36.36 0 0 1 -8.19,-2.24 l 2.24,-4 a 84.15,84.15 0 0 0 8.84,3.66 c -1.18,1.15 -2.18,2 -2.89,2.58 z m 8.19,-8.43 -0.11,0.14 a 81.09,81.09 0 0 1 -10.57,-4.1 l 6,-10.65 10.29,5.79 a 52.31,52.31 0 0 1 -5.61,8.82 z m 12.28,2.92 c -0.82,-0.1 -2.6,-0.35 -5,-0.86 a 57.87,57.87 0 0 0 4.5,-7.42 l 5.42,3.05 a 30.67,30.67 0 0 1 -4.92,5.23 z m 8.6,-11.17 -6.36,-3.58 a 50.78,50.78 0 0 0 2.35,-9.26 c 3.47,2.65 5.87,4.78 7,5.87 a 61.84,61.84 0 0 1 -2.99,6.97 z m 6.81,-20.649996 c -0.18,0.85 -0.38,1.74 -0.59,2.69 -0.28,1.25 -0.58,2.46 -0.89,3.639996 -2,-1.699996 -4.74,-3.999996 -8.25,-6.489996 a 19.39,19.39 0 0 1 1.69,-4.48 c 1.35,-2.58 1.73,-3.2 2.87,-5.2 0.52,-0.92 1.21,-2.11 2.22,-3.89 l 5.81,3.27 a 67.4,67.4 0 0 0 -2.86,10.46 z m 15.82,-26.42 a 76.43,76.43 0 0 0 -9.51,9.85 l -5.88,-3.27 0.41,-0.75 c 1.93,-3.49 2.81,-5.09 4.76,-8.32 a 20.28,20.28 0 0 1 3,-3.77 c 4,1.71 7.45,2.92 9.94,3.72 -0.88,0.83 -1.78,1.68 -2.72,2.54 z m 8,-8.27 c -1.4,-0.39 -4.62,-1.36 -9,-3.08 a 50.5,50.5 0 0 0 6.7,-6.81 l 6.85,3.86 a 60.52,60.52 0 0 1 -4.51,6.03 z m 7.900003,-12.15 -6.110003,-3.44 a 56.47,56.47 0 0 0 4.17,-8.06 c 1.890003,1.89 3.270003,3.44 4.090003,4.4 a 29.91,29.91 0 0 1 -2.15,7.1 z" id="path92" inkscape:connector-curvature="0" style="fill:#1d1d1b" />
|
||||||
|
<line class="cls-3" x1="7.6489172" y1="87.506561" x2="7.6089172" y2="87.486565" id="line94" style="fill:none" />
|
||||||
|
<line class="cls-3" x1="62.388916" y1="118.31657" x2="61.028915" y2="117.54656" id="line96" style="fill:none" />
|
||||||
|
<path class="cls-1" d="m 4.7289172,85.516564 c -0.14,0.26 -0.28,0.52 -0.4,0.77 a 2.87,2.87 0 0 1 0.23,-0.51 1.45,1.45 0 0 1 0.17,-0.26 z" id="path98" inkscape:connector-curvature="0" style="fill:#1d1d1b" />
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 15 KiB |
@@ -0,0 +1,25 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<svg xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" id="Capa_1" data-name="Capa 1" viewBox="0 0 291.02558 217.58545" version="1.1" inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)">
|
||||||
|
<metadata id="metadata39">
|
||||||
|
<rdf:RDF>
|
||||||
|
<cc:Work rdf:about="">
|
||||||
|
<dc:format>image/svg+xml</dc:format>
|
||||||
|
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<sodipodi:namedview pagecolor="#ffffff" bordercolor="#666666" borderopacity="1" objecttolerance="10" gridtolerance="10" guidetolerance="10" inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:window-width="855" inkscape:window-height="480" id="namedview37" showgrid="false" inkscape:zoom="0.8783029" inkscape:cx="145.53191" inkscape:cy="83.190002" inkscape:window-x="0" inkscape:window-y="27" inkscape:window-maximized="0" inkscape:current-layer="Capa_1" />
|
||||||
|
<defs id="defs4">
|
||||||
|
<style id="style2">.cls-1{fill:#1d1d1b;}.cls-2{fill:#fff;}</style>
|
||||||
|
</defs>
|
||||||
|
<path class="cls-1" d="m 261.55191,4.1054561 c -20.22,-8.69 -46.41,-3 -59.64,12.9999999 a 3.49,3.49 0 0 0 2.9,5.72 71.69,71.69 0 0 1 14,1 24.83,24.83 0 0 0 -0.41,14.08 c 1.43,5.83 6.07,16.65 21.1,23.58 a 19.3,19.3 0 0 1 11,14.48 c 1,6.57 -1.37,13 -6.79,18 -4.64,4.3 -11.4,7.100004 -18.19,8.920004 -6.49,-9.100004 -18.8,-19.330004 -42.06,-24.420004 l 8.19,-11.92 a 3.5104451,3.5104451 0 1 0 -5.77,-4 l -9.94,14.5 a 168.1,168.1 0 0 0 -25.75,-1.84 h -8.94 a 174.18,174.18 0 0 0 -26.13,1.84 l -9.94,-14.47 a 3.5104451,3.5104451 0 1 0 -5.769998,4 l 8.169998,11.9 c -23.579998,5.03 -35.909998,15.28 -42.319998,24.320004 -6.69,-1.83 -13.34,-4.610004 -17.92,-8.850004 -5.42,-5 -7.83,-11.41 -6.79,-18 a 19.32,19.32 0 0 1 11,-14.48 c 15,-6.93 19.67,-17.75 21.1,-23.58 a 24.84,24.84 0 0 0 -0.4,-14.08 72.57,72.57 0 0 1 14,-1 3.49,3.49 0 0 0 2.9,-5.76 c -13.23,-15.9999999 -39.42,-21.6599999 -59.63,-12.9999999 -22.18,9.5899999 -32.64,33.7799999 -28.70999999,66.4399999 2.18999999,18.56 11.71999999,35.210004 26.04999999,45.770004 a 65.77,65.77 0 0 0 30.7,12 46.67,46.67 0 0 0 2.18,12.67 h -22.74 a 3.5,3.5 0 0 0 -3.2,2.08 l -12.87,29.04 a 3.49,3.49 0 0 0 1.78,4.62 3.38,3.38 0 0 0 1.41,0.3 3.5,3.5 0 0 0 3.21,-2.08 l 12,-27 h 23.2 a 59.24,59.24 0 0 0 9.08,13.54 h -25.33 a 3.52,3.52 0 0 0 -3.2,2.08 l -12.89,29 a 3.51,3.51 0 0 0 1.81,4.74 3.55,3.55 0 0 0 1.42,0.3 3.51,3.51 0 0 0 3.2,-2.08 l 12,-27 h 29.47 l 12.23,13.12 h -34.89 a 3.48,3.48 0 0 0 -3.2,2.08 l -12.89,29 a 3.49,3.49 0 0 0 1.78,4.62 3.54,3.54 0 0 0 1.41,0.3 3.49,3.49 0 0 0 3.2,-2.08 l 12,-26.95 h 39.12 l 0.23,0.25 c 7.559998,8.11 30.079998,11 48.639998,11 18.56,0 41.07,-2.89 48.63,-11 l 0.23,-0.25 h 38.78 l 12,26.95 a 3.49,3.49 0 0 0 3.2,2.08 3.59,3.59 0 0 0 1.42,-0.3 3.51,3.51 0 0 0 1.78,-4.62 l -12.9,-29 a 3.48,3.48 0 0 0 -3.2,-2.08 h -34.55 l 12.23,-13.12 h 29.16 l 12,27 a 3.51,3.51 0 0 0 3.2,2.08 3.55,3.55 0 0 0 1.42,-0.3 3.51,3.51 0 0 0 1.78,-4.62 l -12.89,-29 a 3.51,3.51 0 0 0 -3.2,-2.08 h -24.98 a 58,58 0 0 0 9,-13.54 h 23 l 12,27 a 3.49,3.49 0 0 0 3.2,2.08 3.45,3.45 0 0 0 1.42,-0.3 3.5,3.5 0 0 0 1.77,-4.62 l -12.89,-29 a 3.48,3.48 0 0 0 -3.2,-2.08 h -22.64 a 46,46 0 0 0 2,-12.67 65.81,65.81 0 0 0 30.7,-12 c 14.32,-10.56 23.81,-27.240004 26,-45.770004 3.99,-32.82 -6.47,-57.01 -28.64,-66.5399999 z M 61.001912,110.36546 a 41,41 0 0 0 -3.05,10.94 c -1.33,-0.18 -2.64,-0.41 -3.93,-0.67 a 57.76,57.76 0 0 1 -23,-10 c -12.77,-9.41 -21.25,-24.350004 -23.25,-41.000004 -4.85,-40.17 13.28,-54.27 24.51,-59.1 a 44.28,44.28 0 0 1 17.48,-3.4399999 c 10.24,0 20.51,3.1599999 28.17,8.9499999 -11.69,1 -32.39,5.14 -45.45,22.06 a 3.5,3.5 0 1 0 5.52,4.25 c 7.41,-9.6 18,-14.52 27.33,-17 a 17.67,17.67 0 0 1 0.55,10.91 c -1.12,4.58 -4.88,13.16 -17.22,18.87 a 26.26,26.26 0 0 0 -15,19.73 c -1.4,8.82 1.86,17.64 9,24.21 5.06,4.700004 12,7.840004 19,9.940004 -0.3,0.46 -0.51,0.91 -0.66,1.35 z m 165.519998,18.56 a 39.93,39.93 0 0 1 -2.36,12 44.7,44.7 0 0 1 -3.2,7 51.68,51.68 0 0 1 -7.42,10.12 l -3.24,3.48 -6.53,7 -12.23,13.12 -2.31,2.48 a 9.55,9.55 0 0 1 -1.8,1.48 c -6.58,4.36 -23,7.29 -41.71,7.29 -19.08,0 -35.7,-3 -42,-7.53 a 8.91,8.91 0 0 1 -1.47,-1.25 l -2.299998,-2.47 -12.28,-13.14 -6.53,-7 -3.24,-3.46 a 54.41,54.41 0 0 1 -7.46,-10.06 48.16,48.16 0 0 1 -3.29,-7 41,41 0 0 1 -2.56,-12 c -0.06,-1.16 -0.06,-2.31 0,-3.46 0.06,-1.15 0.16,-2.35 0.32,-3.51 a 34,34 0 0 1 2.49,-8.79 c 0.35,-0.81 0.73,-1.6 1.15,-2.37 a 32.4,32.4 0 0 1 1.91,-3.19 36.37,36.37 0 0 1 2.35,-3.12 c 8,-9.550004 21.45,-16.290004 39.149998,-19.710004 q 3.44,-0.66 7.06,-1.15 a 165.29,165.29 0 0 1 22.27,-1.42 h 8.56 a 1.81,1.81 0 0 0 0.33,0 160.13,160.13 0 0 1 21.9,1.42 q 3.62,0.49 7,1.17 c 17.47,3.43 30.82,10.18 38.87,19.750004 a 36.84,36.84 0 0 1 4.32,6.3 c 0.48,0.9 0.93,1.81 1.34,2.75 a 34.94,34.94 0 0 1 2.82,11.87 33.26,33.26 0 0 1 0.05,3.4 z m 56.78,-59.280004 c -2,16.62 -10.47,31.560004 -23.25,41.000004 a 57.7,57.7 0 0 1 -23,10 q -2,0.41 -4,0.69 a 41.47,41.47 0 0 0 -3,-10.53 c -0.24,-0.55 -0.5,-1.12 -0.79,-1.71 7.08,-2.1 14.1,-5.26 19.22,-10.000004 7.08,-6.57 10.34,-15.39 8.94,-24.21 a 26.26,26.26 0 0 0 -15,-19.73 c -12.42,-5.73 -16.12,-14.31 -17.25,-18.92 a 17.6,17.6 0 0 1 0.55,-10.91 c 9.35,2.51 19.91,7.43 27.32,17 a 3.5043152,3.5043152 0 0 0 5.55,-4.28 c -13.06,-16.89 -33.77,-21.07 -45.46,-22 12.19,-9.1599999 31,-11.7599999 45.65,-5.48 11.22,4.8 29.36,18.9 24.52,59.08 z" id="path28" inkscape:connector-curvature="0" style="fill:#1d1d1b" />
|
||||||
|
<path class="cls-2" d="m 65.351912,25.325456 a 17.67,17.67 0 0 1 0.55,10.91 c -1.14,4.61 -4.9,13.19 -17.24,18.9 a 26.26,26.26 0 0 0 -15,19.73 c -1.4,8.82 1.86,17.64 9,24.21 5.06,4.700004 12,7.840004 19,9.940004 -0.21,0.46 -0.42,0.91 -0.61,1.35 a 41,41 0 0 0 -3.05,10.94 c -1.33,-0.18 -2.64,-0.41 -3.93,-0.67 a 57.76,57.76 0 0 1 -23,-10 c -12.77,-9.41 -21.25,-24.350004 -23.25,-41.000004 -4.9,-40.17 13.23,-54.27 24.46,-59.1 a 44.28,44.28 0 0 1 17.48,-3.4399999 c 10.24,0 20.51,3.1599999 28.17,8.9499999 -11.69,1 -32.39,5.14 -45.45,22.06 a 3.5,3.5 0 1 0 5.52,4.25 c 7.43,-9.6 18,-14.52 27.35,-17.03 z" id="path30" inkscape:connector-curvature="0" style="fill:#ffffff" />
|
||||||
|
<path class="cls-2" d="m 283.30191,69.645456 c -2,16.62 -10.47,31.560004 -23.25,41.000004 a 57.7,57.7 0 0 1 -23,10 q -2,0.41 -4,0.69 a 41.47,41.47 0 0 0 -3,-10.53 c -0.24,-0.55 -0.5,-1.12 -0.79,-1.71 7.08,-2.1 14.1,-5.26 19.22,-10.000004 7.08,-6.57 10.34,-15.39 8.94,-24.21 a 26.26,26.26 0 0 0 -15,-19.73 c -12.42,-5.73 -16.12,-14.31 -17.25,-18.92 a 17.6,17.6 0 0 1 0.55,-10.91 c 9.35,2.51 19.91,7.43 27.32,17 a 3.5043152,3.5043152 0 0 0 5.55,-4.28 c -13.06,-16.89 -33.77,-21.07 -45.46,-22 12.19,-9.1599999 31,-11.7599999 45.65,-5.48 11.22,4.8 29.36,18.9 24.52,59.08 z" id="path32" inkscape:connector-curvature="0" style="fill:#ffffff" />
|
||||||
|
<path class="cls-2" d="m 226.48191,128.92546 a 39.93,39.93 0 0 1 -2.36,12 44.7,44.7 0 0 1 -3.2,7 51.68,51.68 0 0 1 -7.38,10.12 l -3.24,3.48 -6.53,7 -12.23,13.12 -2.31,2.48 a 9.55,9.55 0 0 1 -1.8,1.48 c -6.58,4.36 -23,7.29 -41.71,7.29 -19.08,0 -35.7,-3 -42,-7.53 a 8.91,8.91 0 0 1 -1.47,-1.25 l -2.299998,-2.47 -12.28,-13.14 -6.53,-7 -3.24,-3.46 a 54.41,54.41 0 0 1 -7.46,-10.06 48.16,48.16 0 0 1 -3.29,-7 41,41 0 0 1 -2.56,-12 c -0.06,-1.16 -0.06,-2.31 0,-3.46 0.06,-1.15 0.16,-2.35 0.32,-3.51 a 34,34 0 0 1 2.49,-8.79 c 0.35,-0.81 0.73,-1.6 1.15,-2.37 a 32.4,32.4 0 0 1 1.91,-3.19 36.37,36.37 0 0 1 2.35,-3.12 c 8,-9.550004 21.45,-16.290004 39.149998,-19.710004 q 3.44,-0.66 7.06,-1.15 a 165.29,165.29 0 0 1 22.27,-1.42 h 8.56 a 1.81,1.81 0 0 0 0.33,0 160.13,160.13 0 0 1 21.9,1.42 q 3.62,0.49 7,1.17 c 17.47,3.43 30.82,10.18 38.87,19.750004 a 36.84,36.84 0 0 1 4.32,6.3 c 0.48,0.9 0.93,1.81 1.34,2.75 a 34.94,34.94 0 0 1 2.82,11.87 33.26,33.26 0 0 1 0.05,3.4 z" id="path34" inkscape:connector-curvature="0" style="fill:#ffffff" />
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 8.0 KiB |
@@ -0,0 +1,29 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<svg xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" id="Capa_1" data-name="Capa 1" viewBox="0 0 112.51273 128.90472" version="1.1" inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)">
|
||||||
|
<metadata id="metadata43">
|
||||||
|
<rdf:RDF>
|
||||||
|
<cc:Work rdf:about="">
|
||||||
|
<dc:format>image/svg+xml</dc:format>
|
||||||
|
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<sodipodi:namedview pagecolor="#ffffff" bordercolor="#666666" borderopacity="1" objecttolerance="10" gridtolerance="10" guidetolerance="10" inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:window-width="855" inkscape:window-height="480" id="namedview41" showgrid="false" inkscape:zoom="1.2629776" inkscape:cx="56.237384" inkscape:cy="35.51" inkscape:window-x="0" inkscape:window-y="27" inkscape:window-maximized="0" inkscape:current-layer="Capa_1" />
|
||||||
|
<defs id="defs4">
|
||||||
|
<style id="style2">.cls-1{fill:#fff;}.cls-2{fill:#1d1d1b;}</style>
|
||||||
|
</defs>
|
||||||
|
<path class="cls-1" d="m 90.957382,35.904722 -2.3,6.12 a 17,17 0 0 1 -21.84,9.94 l -16,-6 a 17,17 0 0 1 -9.89,-21.89 l 2.31,-6.11 a 16.94,16.94 0 0 1 21.84,-9.9 l 16,6 a 16.94,16.94 0 0 1 9.9,21.84 z" id="path6" inkscape:connector-curvature="0" style="fill:#ffffff" />
|
||||||
|
<path class="cls-2" d="m 112.06738,95.014722 a 23.78,23.78 0 0 0 -10.08,-15.32 l -14.129998,-9.58 a 24,24 0 0 0 -31.44,4 24,24 0 0 0 -26,-4.92 l -15.78,6.63 A 24,24 0 0 0 1.8673819,107.20472 l 2.53,6 a 23.92,23.92 0 0 0 31.3800001,12.78 l 15.74,-6.63 a 23.88,23.88 0 0 0 6.27,-3.86 l 13.64,9.27 a 23.79,23.79 0 0 0 13.39,4.14 24.29,24.29 0 0 0 4.56,-0.44 23.76,23.76 0 0 0 15.349998,-10.08 l 3.67,-5.41 a 23.8,23.8 0 0 0 3.67,-17.959998 z M 20.067382,119.63472 a 16.8,16.8 0 0 1 -9.24,-9.12 l -2.5300001,-6 A 17,17 0 0 1 17.297382,82.294722 l 15.74,-6.62 a 16.8,16.8 0 0 1 6.69,-1.36 17,17 0 0 1 12.54,5.65 l -1.35,2 a 24,24 0 0 0 1.53,28.919998 16.64,16.64 0 0 1 -3.65,2.08 l -15.73,6.6 a 16.84,16.84 0 0 1 -12.98,0.07 z m 82.489998,-10.59 -3.669998,5.41 a 16.93,16.93 0 0 1 -23.53,4.51 l -12.95,-8.78 -1.19,-0.81 a 17.42,17.42 0 0 1 -1.64,-1.27 16.59,16.59 0 0 1 -2.48,-2.7 17,17 0 0 1 -0.94,-18.709998 c 0.17,-0.29 0.36,-0.58 0.55,-0.87 l 1.77,-2.61 1.9,-2.8 a 6.55,6.55 0 0 1 0.39,-0.53 16.94,16.94 0 0 1 23.16,-4 l 14.13,9.59 a 17,17 0 0 1 4.519998,23.549998 z" id="path8" inkscape:connector-curvature="0" style="fill:#1d1d1b" />
|
||||||
|
<path class="cls-1" d="m 52.447382,110.82472 a 16.64,16.64 0 0 1 -3.65,2.14 l -15.73,6.6 a 17,17 0 0 1 -22.22,-9 l -2.5300001,-6 A 17,17 0 0 1 17.317382,82.344722 l 15.74,-6.62 a 16.8,16.8 0 0 1 6.67,-1.41 17,17 0 0 1 12.54,5.65 l -1.35,2 a 24,24 0 0 0 1.53,28.859998 z" id="path10" inkscape:connector-curvature="0" style="fill:#ffffff" />
|
||||||
|
<path class="cls-1" d="m 105.19738,96.334722 a 16.82,16.82 0 0 0 -7.139998,-10.84 l -14.13,-9.59 a 16.94,16.94 0 0 0 -23.16,4 6.55,6.55 0 0 0 -0.39,0.53 l -1.9,2.8 -1.75,2.6 c -0.19,0.29 -0.38,0.58 -0.55,0.87 a 17,17 0 0 0 0.94,18.709998 16.59,16.59 0 0 0 2.48,2.7 17.42,17.42 0 0 0 1.64,1.27 l 1.19,0.81 12.93,8.77 a 17,17 0 0 0 23.55,-4.52 l 3.669998,-5.41 a 16.87,16.87 0 0 0 2.62,-12.699998 z m -12.319998,-3.64 h -0.15 c -9.48,-0.4 -14.94,-11.69 -15.17,-12.18 a 3.5024598,3.5024598 0 0 1 6.33,-3 c 1.06,2.22 4.78,8 9.14,8.19 a 3.5008035,3.5008035 0 0 1 -0.15,7 z" id="path12" inkscape:connector-curvature="0" style="fill:#ffffff" />
|
||||||
|
<path class="cls-2" d="m 96.907382,20.044722 a 23.78,23.78 0 0 0 -13.39,-12.53 l -16,-6 a 23.95,23.95 0 0 0 -30.79,13.98 l -2.3,6.12 a 24,24 0 0 0 14,30.86 l 16,6 a 24,24 0 0 0 30.85,-14 l 2.31,-6.12 a 23.83,23.83 0 0 0 -0.68,-18.31 z m -8.25,22 a 17,17 0 0 1 -21.84,9.92 l -16,-6 a 17,17 0 0 1 -9.89,-21.89 l 2.31,-6.11 a 16.94,16.94 0 0 1 21.84,-9.9 l 16,6 a 16.94,16.94 0 0 1 9.9,21.84 z" id="path32" inkscape:connector-curvature="0" style="fill:#1d1d1b" />
|
||||||
|
<path class="cls-2" d="m 75.187382,22.534722 a 12.83,12.83 0 0 0 2.37,-0.22 3.5006928,3.5006928 0 0 0 -1.35,-6.87 c -4.28,0.84 -9.25,-3.92 -10.81,-5.82 a 3.5,3.5 0 0 0 -5.44,4.4 c 0.31,0.38 6.97,8.51 15.23,8.51 z" id="path34" inkscape:connector-curvature="0" style="fill:#1d1d1b" />
|
||||||
|
<path class="cls-2" d="m 35.397382,79.164722 a 3.5,3.5 0 0 0 -4.88,0.82 c -2.53,3.56 -9.41,3.52 -11.84,3.21 a 3.5,3.5 0 1 0 -0.95,6.93 23.74,23.74 0 0 0 3.19,0.18 c 4.18,0 11.43,-0.85 15.29,-6.26 a 3.5,3.5 0 0 0 -0.81,-4.88 z" id="path36" inkscape:connector-curvature="0" style="fill:#1d1d1b" />
|
||||||
|
<path class="cls-2" d="m 93.027382,85.694722 c -4.36,-0.19 -8.08,-6 -9.14,-8.19 a 3.5024598,3.5024598 0 0 0 -6.33,3 c 0.23,0.49 5.69,11.78 15.17,12.18 h 0.15 a 3.5008035,3.5008035 0 0 0 0.15,-7 z" id="path38" inkscape:connector-curvature="0" style="fill:#1d1d1b" />
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 5.0 KiB |
@@ -0,0 +1,32 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<svg xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" id="Capa_1" data-name="Capa 1" viewBox="0 0 227.72102 221.27192" version="1.1" inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)">
|
||||||
|
<metadata id="metadata49">
|
||||||
|
<rdf:RDF>
|
||||||
|
<cc:Work rdf:about="">
|
||||||
|
<dc:format>image/svg+xml</dc:format>
|
||||||
|
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<sodipodi:namedview pagecolor="#ffffff" bordercolor="#666666" borderopacity="1" objecttolerance="10" gridtolerance="10" guidetolerance="10" inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:window-width="855" inkscape:window-height="480" id="namedview47" showgrid="false" inkscape:zoom="0.86643658" inkscape:cx="113.86884" inkscape:cy="85.08192" inkscape:window-x="0" inkscape:window-y="27" inkscape:window-maximized="0" inkscape:current-layer="Capa_1" />
|
||||||
|
<defs id="defs4">
|
||||||
|
<style id="style2">.cls-1{fill:#1d1d1b;}.cls-2{fill:#fff;}</style>
|
||||||
|
</defs>
|
||||||
|
<path class="cls-2" d="m 80.453842,30.38 a 3,3 0 0 1 -0.74,0.06 q 0.25,-0.69 0.51,-1.35 z" id="path24" inkscape:connector-curvature="0" style="fill:#ffffff" />
|
||||||
|
<path class="cls-1" d="m 118.49384,219.18 q 5.64,-3.1 10.9,-6.12 l 12.33,6.31 a 17.09,17.09 0 0 0 24.85,-16.08 l -0.65,-12.83 c 48.82,-33 61.15,-55.86 61.77,-70.12 0.45,-10.27 -4.69,-19.08 -15.26,-26.18 a 2.46,2.46 0 0 0 -0.69,-0.34 v 0 c 0.24,-1.63 0.39,-3.21 0.47,-4.76 0.75,-15.36 -6.46,-26.53 -21.46,-33.25 a 39,39 0 0 0 -4.24,-16.35 c -5.85,-10.82 -17.27,-16.25 -34,-16.17 -7.19,-15.47 -20.07,-23.29 -38.34,-23.29 h -0.66 C 95.223842,0 82.323842,7.83 75.103842,23.28 c -16.66,-0.05 -28,5.37 -33.87,16.17 a 39,39 0 0 0 -4.21,16.34 c -15,6.73 -22.22,17.9 -21.46,33.26 0.08,1.55 0.23,3.13 0.47,4.76 a 2.8,2.8 0 0 0 -0.69,0.35 c -10.6100004,7.1 -15.74000037,15.91 -15.32000037,26.18 0.62,14.24 12.92000037,37 61.61000037,70 l -0.61,12.95 a 17.05,17.05 0 0 0 24.85,16.08 l 12.4,-6.37 q 5.299998,3 10.999998,6.16 c 0,0 3,1.82 4.63,1.79 1.79,-0.01 4.59,-1.77 4.59,-1.77 z" id="path26" inkscape:connector-curvature="0" style="fill:#1d1d1b" />
|
||||||
|
<path class="cls-2" d="m 94.613842,195.33 c -8.73,-8.53 -19.18,-19.31 -29.5,-31.22 -17.21,-19.87 -29.37,-37.54 -36.18,-52.46 -5.21,-11.39 -7.3,-21.18 -6.15,-29.11 1.24,-8.24 5.87,-14.48 14.24,-18.97 1.16,19.82 10.48,46.73 27.88,80.43 8.25,16 17.19,31.22 25,43.84 v 0 q 2.44,3.93 4.71,7.49 z" id="path28" inkscape:connector-curvature="0" style="fill:#ffffff" />
|
||||||
|
<path class="cls-2" d="m 95.483842,183.56 c -7.63,-12.34 -16.31,-27.2 -24.36,-42.78 -17.47,-33.78 -26.65,-60.78 -27.24,-79.45 v 0 c 0,-0.27 0,-0.53 0,-0.8 v 0 a 48.06,48.06 0 0 1 0.21,-6 30.74,30.74 0 0 1 3.31,-11.77 c 4.28,-7.91 12.47,-12 25,-12.46 -9.78,30.73 0.27,79.21 10.53,114.74 q 1.55,5.35 3.2,10.66 v 0 c 3.01,9.79 6.23,19.3 9.35,27.86 z" id="path30" inkscape:connector-curvature="0" style="fill:#ffffff" />
|
||||||
|
<path class="cls-2" d="m 220.69384,120 c -0.86,19.77 -30.19,48.05 -81.46,79.11 7,-6.92 15.48,-15.59 24.1,-25.24 25.77,-28.85 41.47,-53.25 46.84,-72.77 7.39,5.48 10.85,11.68 10.52,18.9 z" id="path32" inkscape:connector-curvature="0" style="fill:#ffffff" />
|
||||||
|
<path class="cls-2" d="m 6.5038416,120 c 0.86,19.77 30.1900004,48.05 81.4600004,79.11 -7,-6.92 -15.48,-15.59 -24.1,-25.24 -25.77,-28.82 -41.47,-53.22 -46.84,-72.74 C 9.6338416,106.58 6.1838416,112.78 6.5038416,120 Z" id="path34" inkscape:connector-curvature="0" style="fill:#ffffff" />
|
||||||
|
<path class="cls-2" d="m 198.81384,111.65 c -6.82,14.91 -19,32.59 -36.19,52.46 -10.32,11.91 -20.79,22.71 -29.52,31.25 q 2.25,-3.54 4.67,-7.44 v 0 c 7.82,-12.62 16.78,-27.9 25,-43.9 17.41,-33.69 26.73,-60.6 27.9,-80.42 8.36,4.49 13,10.74 14.22,19 1.21,7.87 -0.87,17.66 -6.08,29.05 z" id="path36" inkscape:connector-curvature="0" style="fill:#ffffff" />
|
||||||
|
<path class="cls-2" d="m 183.87384,60.53 c 0,0.26 0,0.53 0,0.8 -0.59,18.71 -9.78,45.64 -27.25,79.45 -8.24,16 -17.17,31.18 -24.94,43.71 3.24,-9 6.47,-18.49 9.21,-27.09 1.39,-4.35 2.65,-8.48 3.72,-12.18 10.29,-35.59 20.39,-84.17 10.65,-114.9 12.57,0.41 20.81,4.51 25.1,12.45 a 30.74,30.74 0 0 1 3.31,11.77 48.46,48.46 0 0 1 0.2,5.99 z" id="path38" inkscape:connector-curvature="0" style="fill:#ffffff" />
|
||||||
|
<path class="cls-2" d="m 139.89384,136.13 a 580,580 0 0 1 -23.75,69 c -0.87,2 -1.65,3.79 -2.32,5.26 -0.63,-1.36 -1.35,-2.95 -2.14,-4.79 v 0 A 566.76,566.76 0 0 1 87.683842,136.35 c -16.07,-58.58 -13.84,-89.6 -8,-105.89 a 3,3 0 0 0 0.74,-0.06 l -0.23,-1.29 v 0 c 0.54,-1.39 1.11,-2.66 1.7,-3.83 0.13,-0.26 0.26,-0.52 0.4,-0.77 6.23,-11.79 16.45,-17.51 31.219998,-17.51 h 0.66 c 14.79,0 25,5.74 31.16,17.55 0.08,0.13 0.14,0.26 0.21,0.39 a 45.1,45.1 0 0 1 1.93,4.35 l -0.19,1.09 a 3.21,3.21 0 0 0 0.63,0.06 c 9.76,27.06 1.26,71.8 -8.02,105.69 z" id="path40" inkscape:connector-curvature="0" style="fill:#ffffff" />
|
||||||
|
<path class="cls-2" d="m 91.023842,208.84 -8.39,4.3 a 10.09,10.09 0 0 1 -14.61,-9.5 l 0.44,-8.77 q 10.29,6.71 22.56,13.97 z" id="path42" inkscape:connector-curvature="0" style="fill:#ffffff" />
|
||||||
|
<path class="cls-2" d="m 159.58384,203.64 a 10.09,10.09 0 0 1 -14.67,9.5 l -8.31,-4.25 c 8.2,-4.83 15.69,-9.47 22.54,-13.93 z" id="path44" inkscape:connector-curvature="0" style="fill:#ffffff" />
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 5.5 KiB |
@@ -0,0 +1,27 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<svg xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" id="Capa_1" data-name="Capa 1" viewBox="0 0 128.16824 105.88025" version="1.1" inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)">
|
||||||
|
<metadata id="metadata35">
|
||||||
|
<rdf:RDF>
|
||||||
|
<cc:Work rdf:about="">
|
||||||
|
<dc:format>image/svg+xml</dc:format>
|
||||||
|
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<sodipodi:namedview pagecolor="#ffffff" bordercolor="#666666" borderopacity="1" objecttolerance="10" gridtolerance="10" guidetolerance="10" inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:window-width="855" inkscape:window-height="480" id="namedview33" showgrid="false" inkscape:zoom="1.503472" inkscape:cx="63.568291" inkscape:cy="27.395248" inkscape:window-x="0" inkscape:window-y="27" inkscape:window-maximized="0" inkscape:current-layer="Capa_1" />
|
||||||
|
<defs id="defs4">
|
||||||
|
<style id="style2">.cls-1{fill:#1d1d1b;}.cls-2{fill:#fff;}</style>
|
||||||
|
</defs>
|
||||||
|
<path class="cls-1" d="m 67.793289,8.88 -1.52,-0.69 -1.5,0.81 c -8.71,4.37 -14.44,15.2 -17.2,24.59 a 25,25 0 0 0 -8,-7.58 c -4.53,-10.01 -17.22,-24.39 -27.17,-25.78 L 10.743289,0 9.5732886,1.15 c -10.35999999,9.72 -10.86,30.7 -8.23,39.7 A 20,20 0 0 0 11.083289,53 a 20.34,20.34 0 0 0 6.49,2.13 34.24,34.24 0 0 0 -0.7,6.39 20.63,20.63 0 0 0 41.1,1.76 20.93,20.93 0 0 0 8.39,1.72 20.47,20.47 0 0 0 20.61,-20.24 c 0,-10.27 -8.96,-31.28 -19.18,-35.88 z m -53.39,37.91 a 13.12,13.12 0 0 1 -6.3900004,-7.9 c -2.31,-7.93 -1.08,-23.78 5.0000004,-31.29 5.95,2.21 15.56,11.64 19.72,20.06 -6.4,4.74 -10.87,13 -13.4,20.65 a 13.29,13.29 0 0 1 -4.93,-1.52 z m 23.05,28 a 13.31,13.31 0 0 1 -13.62,-13.27 29.63,29.63 0 0 1 0.84,-6.52 c 0.29,-1.25 0.64,-2.54 1.06,-3.84 0.47,-1.46 1,-2.94 1.64,-4.4 a 38.14,38.14 0 0 1 7.31,-11.53 19.39,19.39 0 0 1 2.77,-2.36 7.75,7.75 0 0 1 0.67,0.55 23.91,23.91 0 0 1 3.45,3.83 51,51 0 0 1 4.19,6.75 48.39,48.39 0 0 1 5,14 22.42,22.42 0 0 1 0.31,3.54 13.31,13.31 0 0 1 -13.62,13.26 z m 28.91,-16.79 a 13.84,13.84 0 0 1 -9.24,-3.43 13.11,13.11 0 0 1 -4.38,-9.84 20.12,20.12 0 0 1 0.12,-2.13 c 0.81,-8.49 6.16,-21.45 13.5,-26.49 5.77,4.35 13.61,19.15 13.61,28.65 a 13.3,13.3 0 0 1 -13.61,13.24 z" id="path6" inkscape:connector-curvature="0" style="fill:#1d1d1b" />
|
||||||
|
<path class="cls-2" d="m 79.973289,44.76 a 13.3,13.3 0 0 1 -13.61,13.24 13.84,13.84 0 0 1 -9.24,-3.43 13.11,13.11 0 0 1 -4.38,-9.84 20.12,20.12 0 0 1 0.12,-2.13 c 0.81,-8.49 6.16,-21.45 13.5,-26.49 5.77,4.35 13.61,19.15 13.61,28.65 z" id="path8" inkscape:connector-curvature="0" style="fill:#ffffff" />
|
||||||
|
<path class="cls-2" d="m 32.733289,27.66 c -6.4,4.74 -10.87,13 -13.4,20.65 a 13.29,13.29 0 0 1 -4.93,-1.52 13.12,13.12 0 0 1 -6.3900004,-7.9 c -2.31,-7.93 -1.08,-23.78 5.0000004,-31.29 5.95,2.21 15.56,11.64 19.72,20.06 z" id="path10" inkscape:connector-curvature="0" style="fill:#ffffff" />
|
||||||
|
<path class="cls-2" d="M 120.28329,89.47 A 13.62,13.62 0 0 1 94.203289,81.64 c 2.37,-7.91 12.000001,-20.54 21.270001,-23.5 4.29,5.86 7.54,22.23 4.81,31.33 z" id="path12" inkscape:connector-curvature="0" style="fill:#ffffff" />
|
||||||
|
<path class="cls-1" d="m 118.93329,51.61 -1.27,-1.1 -1.65,0.29 c -14,2.52 -25.820001,19.84 -28.520001,28.83 a 20.48,20.48 0 0 0 13.920001,25.37 20.87,20.87 0 0 0 6,0.88 20.37,20.37 0 0 0 19.57,-14.38 c 2.96,-9.85 0.41,-32.5 -8.05,-39.89 z m 1.35,37.86 A 13.62,13.62 0 0 1 94.203289,81.64 c 2.37,-7.91 12.000001,-20.54 21.270001,-23.5 4.29,5.86 7.54,22.23 4.81,31.33 z" id="path14" inkscape:connector-curvature="0" style="fill:#1d1d1b" />
|
||||||
|
<path class="cls-2" d="m 51.063289,61.52 a 13.31,13.31 0 0 1 -13.61,13.28 13.31,13.31 0 0 1 -13.62,-13.28 29.63,29.63 0 0 1 0.84,-6.52 c 0.29,-1.25 0.64,-2.54 1.06,-3.84 0.47,-1.46 1,-2.94 1.64,-4.4 a 38.14,38.14 0 0 1 7.31,-11.53 19.39,19.39 0 0 1 2.77,-2.36 7.75,7.75 0 0 1 0.67,0.55 23.91,23.91 0 0 1 3.45,3.83 51,51 0 0 1 4.19,6.75 48.39,48.39 0 0 1 5,14 22.42,22.42 0 0 1 0.3,3.52 z" id="path16" inkscape:connector-curvature="0" style="fill:#ffffff" />
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 4.3 KiB |
@@ -0,0 +1,36 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<svg xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" id="Capa_1" data-name="Capa 1" viewBox="0 0 253.32047 174.01173" version="1.1" inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)">
|
||||||
|
<metadata id="metadata47">
|
||||||
|
<rdf:RDF>
|
||||||
|
<cc:Work rdf:about="">
|
||||||
|
<dc:format>image/svg+xml</dc:format>
|
||||||
|
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<sodipodi:namedview pagecolor="#ffffff" bordercolor="#666666" borderopacity="1" objecttolerance="10" gridtolerance="10" guidetolerance="10" inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:window-width="855" inkscape:window-height="480" id="namedview45" showgrid="false" inkscape:zoom="1.0171537" inkscape:cx="126.65216" inkscape:cy="58.001725" inkscape:window-x="0" inkscape:window-y="27" inkscape:window-maximized="0" inkscape:current-layer="Capa_1" />
|
||||||
|
<defs id="defs4">
|
||||||
|
<style id="style2">.cls-1{fill:#1d1d1b;}.cls-2{fill:#fff;}</style>
|
||||||
|
</defs>
|
||||||
|
<path class="cls-1" d="m 64.937157,91.88 a 6.49,6.49 0 0 1 -0.14,1.39 c -0.54,2.55 -2.54,4.71 -5.66,6.08 a 20.33,20.33 0 0 1 -12.28,1 c -8.55,-1.79 -14.77,-8 -13.59,-13.66 0.95,-4.56 6.55,-7.54 13.19,-7.54 a 23,23 0 0 1 4.75,0.5 c 7.84,1.6 13.73,7.01 13.73,12.23 z" id="path14" inkscape:connector-curvature="0" style="fill:#1d1d1b" />
|
||||||
|
<path class="cls-2" d="m 113.32716,80.76 c -8.74,0 -16.110003,4.85 -16.110003,10.58 0,5.73 7.370003,10.58 16.110003,10.58 8.74,0 16.11,-4.84 16.11,-10.58 0,-5.74 -7.38,-10.58 -16.11,-10.58 z m 0,0 c -8.74,0 -16.110003,4.85 -16.110003,10.58 0,5.73 7.370003,10.58 16.110003,10.58 8.74,0 16.11,-4.84 16.11,-10.58 0,-5.74 -7.38,-10.58 -16.11,-10.58 z m 120.88,-12.33 c -12.74,2.47 -21.5,1.45 -26,-3 -11,-10.82 -22.72,-13.7 -36.93,-9.06 -10.46,3.4 -19.29,9.53 -24.86,17.24 a 3.5,3.5 0 0 1 -5.21,0.52 c -7.71,-7.11 -19.42,-11.19 -32.11,-11.19 -10.540003,0 -20.510003,2.85 -28.100003,8 a 3.49,3.49 0 0 1 -3.88,0 54,54 0 0 0 -18.61,-7.5 c -18.25,-3.68 -42.85,14.19 -50.4099998,20.15 4.9999998,7.73 20.9999998,30.77 39.2299998,34.48 12.55,2.57 25.35,0.75 34.24,-4.86 a 3.49,3.49 0 0 1 3.48,-0.15 52.08,52.08 0 0 0 24.000003,5.58 c 14.12,0 27,-5 34.37,-13.5 a 3.5,3.5 0 0 1 4.87,-0.39 c 9.3,7.73 25.11,9.52 40.29,4.54 13.26,-4.34 20.51,-10.88 27.7,-25 2.3,-4.53 6.9,-5.78 11.35,-7 5.5,-1.5 11.6,-3.17 16,-11.14 -2.63,0.78 -5.95,1.61 -9.42,2.28 z M 71.647157,94.71 c -1,4.82 -4.45,8.74 -9.68,11.05 a 25.71,25.71 0 0 1 -10.3,2.06 30.39,30.39 0 0 1 -6.25,-0.66 c -12.47,-2.62 -21,-12.47 -19,-22 2,-9.53 13.76,-15.03 26.23,-12.4 12.47,2.63 20.99,12.47 19,21.95 z m 41.680003,14.21 c -12.75,0 -23.110003,-7.89 -23.110003,-17.58 0,-9.69 10.360003,-17.58 23.110003,-17.58 12.75,0 23.11,7.89 23.11,17.58 0,9.69 -10.37,17.58 -23.11,17.58 z m 74,-9.38 a 29.42,29.42 0 0 1 -9,1.45 c -8.7,0 -16.17,-4.16 -18.4,-11.07 -3,-9.23 4.46,-19.92 16.59,-23.83 12.13,-3.91 24.41,0.4 27.39,9.62 a 13.7,13.7 0 0 1 0.66,4.2 c 0.01,8.09 -6.92,16.29 -17.23,19.63 z m 5.74,-26.27 a 16.42,16.42 0 0 0 -7.47,-1.64 22.64,22.64 0 0 0 -6.93,1.12 c -8.31,2.68 -13.84,9.56 -12.08,15 1.76,5.44 10.27,7.79 18.58,5.11 8.31,-2.68 13.84,-9.56 12.08,-15 a 8.09,8.09 0 0 0 -4.17,-4.59 z m -79.75,7.49 c -8.74,0 -16.110003,4.85 -16.110003,10.58 0,5.73 7.370003,10.58 16.110003,10.58 8.74,0 16.11,-4.84 16.11,-10.58 0,-5.74 -7.37,-10.58 -16.1,-10.58 z" id="path16" inkscape:connector-curvature="0" style="fill:#ffffff" />
|
||||||
|
<path class="cls-1" d="m 252.23716,58 a 3.5,3.5 0 0 0 -3.62,-0.75 c -11.74,4.28 -30.53,8.09 -35.54,3.16 -12.69,-12.51 -27.5,-16.12 -44,-10.74 a 57.79,57.79 0 0 0 -26,16.85 c -8.86,-6.79 -21,-10.62 -34,-10.62 -11.060003,0 -21.660003,2.82 -30.100003,8 a 62.28,62.28 0 0 0 -19.09,-7.28 C 34.837157,51.5 2.5771572,79 1.2171572,80.16 a 3.5,3.5 0 0 0 -0.75000003,4.4 C 1.2971572,86 20.997157,119.85 45.927157,124.93 a 63.52,63.52 0 0 0 12.75,1.31 50.8,50.8 0 0 0 24.91,-6.09 59.81,59.81 0 0 0 25.470003,5.49 c 14.79,0 28.5,-5 37.39,-13.54 11.24,7.57 28.21,9.12 44.32,3.84 15.1,-4.94 23.7,-12.66 31.76,-28.47 0.85,-1.68 3.08,-2.36 6.95,-3.42 7.23,-2 18.16,-5 23.68,-22.45 a 3.52,3.52 0 0 0 -0.92,-3.6 z m -24.6,19.3 c -4.45,1.22 -9,2.47 -11.35,7 -7.19,14.11 -14.44,20.65 -27.7,25 -15.18,5 -31,3.19 -40.29,-4.54 a 3.5,3.5 0 0 0 -4.87,0.39 c -7.41,8.45 -20.25,13.5 -34.37,13.5 a 52.08,52.08 0 0 1 -24.000003,-5.58 3.49,3.49 0 0 0 -3.48,0.15 c -8.89,5.61 -21.69,7.43 -34.24,4.86 -18.19,-3.72 -34.29,-26.76 -39.2399998,-34.49 7.5599998,-6 32.1599998,-23.83 50.3699998,-20.12 a 54,54 0 0 1 18.61,7.53 3.49,3.49 0 0 0 3.88,0 c 7.59,-5.16 17.56,-8 28.100003,-8 12.69,0 24.4,4.08 32.11,11.19 a 3.5,3.5 0 0 0 5.21,-0.52 c 5.57,-7.71 14.4,-13.84 24.86,-17.24 14.21,-4.64 25.95,-1.76 36.93,9.06 4.54,4.48 13.3,5.5 26,3 3.47,-0.67 6.74,-1.5 9.47,-2.27 -4.4,7.91 -10.5,9.58 -16,11.08 z" id="path18" inkscape:connector-curvature="0" style="fill:#1d1d1b" />
|
||||||
|
<path class="cls-2" d="m 64.937157,91.88 a 6.49,6.49 0 0 1 -0.14,1.39 c -0.54,2.55 -2.54,4.71 -5.66,6.08 a 20.33,20.33 0 0 1 -12.28,1 c -8.55,-1.79 -14.77,-8 -13.59,-13.66 0.95,-4.56 6.55,-7.54 13.19,-7.54 a 23,23 0 0 1 4.75,0.5 c 7.84,1.6 13.73,7.01 13.73,12.23 z" id="path20" inkscape:connector-curvature="0" style="fill:#ffffff" />
|
||||||
|
<path class="cls-1" d="m 52.647157,72.76 c -12.47,-2.63 -24.24,3 -26.23,12.45 -1.99,9.45 6.53,19.33 19,22 a 30.39,30.39 0 0 0 6.25,0.66 25.71,25.71 0 0 0 10.33,-2.11 c 5.23,-2.31 8.67,-6.23 9.68,-11.05 1.96,-9.48 -6.56,-19.33 -19.03,-21.95 z m 12.15,20.51 c -0.54,2.55 -2.54,4.71 -5.66,6.08 a 20.33,20.33 0 0 1 -12.28,1 c -8.55,-1.79 -14.77,-8 -13.59,-13.66 0.95,-4.56 6.55,-7.54 13.19,-7.54 a 23,23 0 0 1 4.75,0.5 c 7.84,1.64 13.73,7 13.73,12.27 a 6.49,6.49 0 0 1 -0.14,1.35 z" id="path22" inkscape:connector-curvature="0" style="fill:#1d1d1b" />
|
||||||
|
<path class="cls-2" d="m 91.107157,33 a 20.44,20.44 0 0 1 -9.4,8 c -3.17,1.22 -6.12,1.1 -8.29,-0.33 -4.79,-3.15 -4.79,-12 0,-19.27 3.6,-5.47 9,-8.81 13.57,-8.81 a 7.39,7.39 0 0 1 4.12,1.16 c 4.8,3.1 4.79,11.92 0,19.25 z" id="path24" inkscape:connector-curvature="0" style="fill:#ffffff" />
|
||||||
|
<path class="cls-1" d="m 94.997157,7.85 c -8.1,-5.33 -20.38,-1 -27.38,9.65 -7,10.65 -6.11,23.64 2,29 a 14.33,14.33 0 0 0 8,2.32 18.62,18.62 0 0 0 6.7,-1.31 27.39,27.39 0 0 0 12.68,-10.69 27.61,27.61 0 0 0 4.710003,-15 C 101.66716,16 99.397157,10.76 94.997157,7.85 Z m -13.29,33.15 c -3.17,1.22 -6.12,1.1 -8.29,-0.33 -4.79,-3.15 -4.79,-12 0,-19.27 3.6,-5.47 9,-8.81 13.57,-8.81 a 7.39,7.39 0 0 1 4.12,1.16 c 4.79,3.15 4.78,12 0,19.27 a 20.44,20.44 0 0 1 -9.4,7.98 z" id="path26" inkscape:connector-curvature="0" style="fill:#1d1d1b" />
|
||||||
|
<path class="cls-2" d="m 126.25716,39.13 c -5.72,0.47 -11.14,-6.49 -11.85,-15.19 -0.71,-8.7 3.52,-16.45 9.23,-16.94 5.71,-0.49 11.15,6.49 11.85,15.2 0.7,8.71 -3.49,16.47 -9.23,16.93 z" id="path28" inkscape:connector-curvature="0" style="fill:#ffffff" />
|
||||||
|
<path class="cls-1" d="m 142.46716,21.65 c -0.99,-12.22 -9.09,-21.65 -18.29,-21.65 -0.36,0 -0.73,0 -1.1,0.05 -9.67,0.78 -16.68,11.75 -15.65,24.45 1,12.22 9.08,21.66 18.3,21.66 0.36,0 0.73,0 1.1,0 9.66,-0.84 16.68,-11.81 15.64,-24.51 z m -28.06,2.29 c -0.71,-8.71 3.52,-16.45 9.23,-16.92 5.71,-0.47 11.15,6.49 11.85,15.2 0.7,8.71 -3.49,16.45 -9.23,16.91 -5.74,0.46 -11.14,-6.49 -11.85,-15.19 z" id="path30" inkscape:connector-curvature="0" style="fill:#1d1d1b" />
|
||||||
|
<path class="cls-2" d="m 162.74716,164.56 c -3.82,4.28 -12.55,3 -19.06,-2.85 a 20.37,20.37 0 0 1 -6.5,-10.47 c -0.74,-3.32 -0.19,-6.21 1.54,-8.15 a 8.42,8.42 0 0 1 6.45,-2.52 c 4,0 8.7,1.87 12.61,5.37 6.51,5.82 8.78,14.35 4.96,18.62 z" id="path32" inkscape:connector-curvature="0" style="fill:#ffffff" />
|
||||||
|
<path class="cls-1" d="m 162.45716,140.72 c -9.5,-8.49 -22.48,-9.52 -28.94,-2.3 -3.28,3.67 -4.41,8.76 -3.17,14.34 a 27.45,27.45 0 0 0 8.65,14.17 26.49,26.49 0 0 0 17.29,7.07 15.3,15.3 0 0 0 11.71,-4.77 c 6.43,-7.23 4,-20.01 -5.54,-28.51 z m 0.29,23.84 c -3.82,4.28 -12.55,3 -19.06,-2.85 a 20.37,20.37 0 0 1 -6.5,-10.47 c -0.74,-3.32 -0.19,-6.21 1.54,-8.15 a 8.42,8.42 0 0 1 6.45,-2.52 c 4,0 8.7,1.87 12.61,5.37 6.51,5.82 8.78,14.35 4.96,18.62 z" id="path34" inkscape:connector-curvature="0" style="fill:#1d1d1b" />
|
||||||
|
<path class="cls-2" d="m 129.43716,91.34 c 0,5.74 -7.38,10.58 -16.11,10.58 -8.73,0 -16.110003,-4.84 -16.110003,-10.58 0,-5.74 7.370003,-10.58 16.110003,-10.58 8.74,0 16.11,4.85 16.11,10.58 z" id="path36" inkscape:connector-curvature="0" style="fill:#ffffff" />
|
||||||
|
<path class="cls-1" d="m 113.32716,73.76 c -12.75,0 -23.110003,7.89 -23.110003,17.58 0,9.69 10.360003,17.58 23.110003,17.58 12.75,0 23.11,-7.89 23.11,-17.58 0,-9.69 -10.37,-17.58 -23.11,-17.58 z m 0,28.16 c -8.74,0 -16.110003,-4.84 -16.110003,-10.58 0,-5.74 7.370003,-10.58 16.110003,-10.58 8.74,0 16.11,4.85 16.11,10.58 0,5.73 -7.38,10.58 -16.11,10.58 z" id="path38" inkscape:connector-curvature="0" style="fill:#1d1d1b" />
|
||||||
|
<path class="cls-2" d="m 185.17716,92.88 c -8.31,2.68 -16.81,0.34 -18.58,-5.11 -1.77,-5.45 3.77,-12.34 12.08,-15 a 22.64,22.64 0 0 1 6.93,-1.12 16.42,16.42 0 0 1 7.47,1.64 8.09,8.09 0 0 1 4.18,4.59 c 1.74,5.44 -3.77,12.32 -12.08,15 z" id="path40" inkscape:connector-curvature="0" style="fill:#ffffff" />
|
||||||
|
<path class="cls-1" d="m 203.91716,75.71 c -3,-9.22 -15.27,-13.54 -27.39,-9.62 -12.12,3.92 -19.53,14.6 -16.59,23.83 2.23,6.91 9.7,11.07 18.4,11.07 a 29.42,29.42 0 0 0 9,-1.45 c 10.31,-3.34 17.24,-11.54 17.24,-19.63 a 13.7,13.7 0 0 0 -0.66,-4.2 z m -37.32,12.06 c -1.76,-5.46 3.77,-12.34 12.08,-15 a 22.64,22.64 0 0 1 6.93,-1.12 16.42,16.42 0 0 1 7.47,1.64 8.09,8.09 0 0 1 4.18,4.59 c 1.76,5.46 -3.77,12.34 -12.08,15 -8.31,2.66 -16.81,0.34 -18.58,-5.11 z" id="path42" inkscape:connector-curvature="0" style="fill:#1d1d1b" />
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 9.8 KiB |
@@ -0,0 +1,31 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<svg xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" id="Capa_1" data-name="Capa 1" viewBox="0 0 219.16499 279.92001" version="1.1" inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)">
|
||||||
|
<metadata id="metadata47">
|
||||||
|
<rdf:RDF>
|
||||||
|
<cc:Work rdf:about="">
|
||||||
|
<dc:format>image/svg+xml</dc:format>
|
||||||
|
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<sodipodi:namedview pagecolor="#ffffff" bordercolor="#666666" borderopacity="1" objecttolerance="10" gridtolerance="10" guidetolerance="10" inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:window-width="855" inkscape:window-height="480" id="namedview45" showgrid="false" inkscape:zoom="0.7131202" inkscape:cx="109.5825" inkscape:cy="114.45" inkscape:window-x="0" inkscape:window-y="27" inkscape:window-maximized="0" inkscape:current-layer="Capa_1" />
|
||||||
|
<defs id="defs4">
|
||||||
|
<style id="style2">.cls-1{fill:#fff;}.cls-2{fill:#1d1d1b;}</style>
|
||||||
|
</defs>
|
||||||
|
<path class="cls-1" d="m 208.6375,233.78 -69.76,-120.06 h -58.59 l -69.77,120.06 a 26,26 0 0 0 22.49,39.07 h 153.15 a 26,26 0 0 0 22.48,-39.07 z M 83.3175,201 a 3.43,3.43 0 0 1 -6.17,-1.31 3.41,3.41 0 0 1 0.51,-2.58 l 0.06,-0.08 a 3.37,3.37 0 0 1 2.12,-1.38 3.21,3.21 0 0 1 0.68,-0.07 3.42,3.42 0 0 1 1.9,0.58 l 0.09,0.06 a 3.39,3.39 0 0 1 1.38,2.12 3.44,3.44 0 0 1 -0.57,2.66 z m 58.69,-1 a 3.43,3.43 0 1 1 -3.36,-4.14 3.33,3.33 0 0 1 0.7,0.07 3.42,3.42 0 0 1 2.11,1.4 l 0.07,0.09 a 3.39,3.39 0 0 1 0.48,2.52 z" id="path6" inkscape:connector-curvature="0" style="fill:#ffffff" />
|
||||||
|
<path class="cls-1" d="m 142.0075,199.94 a 3.43,3.43 0 1 1 -3.36,-4.14 3.33,3.33 0 0 1 0.7,0.07 3.42,3.42 0 0 1 2.11,1.4 l 0.07,0.09 a 3.39,3.39 0 0 1 0.48,2.58 z" id="path26" inkscape:connector-curvature="0" style="fill:#ffffff" />
|
||||||
|
<path class="cls-1" d="m 83.3175,201 a 3.43,3.43 0 0 1 -6.17,-1.31 3.41,3.41 0 0 1 0.51,-2.58 l 0.06,-0.08 a 3.37,3.37 0 0 1 2.12,-1.38 3.21,3.21 0 0 1 0.68,-0.07 3.42,3.42 0 0 1 1.9,0.58 l 0.09,0.06 a 3.39,3.39 0 0 1 1.38,2.12 3.44,3.44 0 0 1 -0.57,2.66 z" id="path28" inkscape:connector-curvature="0" style="fill:#ffffff" />
|
||||||
|
<path class="cls-2" d="m 140.7875,189 a 10.46,10.46 0 0 0 -4.89,0.15 l -11.17,-16 a 21.42,21.42 0 1 0 -32.25,-2.66 19.89,19.89 0 0 0 2.19,2.51 l -11.31,15.93 a 10.44,10.44 0 1 0 -0.8,20.28 10.46,10.46 0 0 0 8.39,-10.21 10.36,10.36 0 0 0 -1.89,-6 l 11.31,-15.91 a 21.67,21.67 0 0 0 6.13,1.91 20.32,20.32 0 0 0 3.28,0.26 21.3,21.3 0 0 0 9.21,-2.1 l 11.17,16 a 10.21,10.21 0 0 0 -1.72,3.92 10.44,10.44 0 0 0 20.43,4.27 10.46,10.46 0 0 0 -8.08,-12.35 z m -57.47,12 a 3.43,3.43 0 0 1 -6.17,-1.31 3.41,3.41 0 0 1 0.51,-2.58 l 0.06,-0.08 a 3.37,3.37 0 0 1 2.12,-1.38 3.21,3.21 0 0 1 0.68,-0.07 3.42,3.42 0 0 1 1.9,0.58 l 0.09,0.06 a 3.39,3.39 0 0 1 1.38,2.12 3.44,3.44 0 0 1 -0.57,2.66 z m 40.71,-41 a 14.53,14.53 0 0 1 -6,9.63 14.93,14.93 0 0 1 -3.08,1.67 14.39,14.39 0 0 1 -7.34,0.78 14.48,14.48 0 0 1 -6.16,-2.51 13.33,13.33 0 0 1 -2.59,-2.38 14.42,14.42 0 0 1 10.92,-23.81 14,14 0 0 1 2.23,0.17 14.44,14.44 0 0 1 12.02,16.45 z m 18,39.92 a 3.43,3.43 0 1 1 -3.36,-4.14 3.33,3.33 0 0 1 0.7,0.07 3.42,3.42 0 0 1 2.11,1.4 l 0.07,0.09 a 3.39,3.39 0 0 1 0.46,2.6 z" id="path30" inkscape:connector-curvature="0" style="fill:#1d1d1b" />
|
||||||
|
<path class="cls-2" d="m 99.3575,227.55 c -2.61,-0.54 -3.93,-0.75 -3.93,-2 0,-1.25 1.08,-1.7 2.67,-1.7 a 7.21,7.21 0 0 1 5.43,2.45 l 3.18,-3.95 a 11.43,11.43 0 0 0 -8.46,-3.35 c -4.77,0 -8.58,2.72 -8.58,7.14 0,4.42 3.45,5.54 6.6,6.17 3.3,0.66 4.83,0.84 4.83,2.22 0,1.38 -1.2,1.89 -3,1.89 a 8.71,8.71 0 0 1 -6.45,-3 l -3.21,4.26 c 1.8,2.22 5.91,3.6 9.42,3.6 5,0 9.06,-2.67 9.06,-7.32 0,-4.65 -4.2,-5.72 -7.56,-6.41 z" id="path32" inkscape:connector-curvature="0" style="fill:#1d1d1b" />
|
||||||
|
<path class="cls-2" d="m 118.4375,219 c -6.21,0 -10.53,4.64 -10.53,11.12 0,6.48 4.32,11.13 10.53,11.13 6.21,0 10.56,-4.65 10.56,-11.13 0,-6.48 -4.32,-11.12 -10.56,-11.12 z m 0,17.15 c -2.73,0 -4.62,-2.28 -4.62,-6 0,-3.72 1.89,-6 4.62,-6 2.73,0 4.65,2.27 4.65,6 0,3.73 -1.89,6.04 -4.65,6.04 z" id="path34" inkscape:connector-curvature="0" style="fill:#1d1d1b" />
|
||||||
|
<path class="cls-2" d="m 136.4375,236.85 c 1.33,-1.09 2.29,-2.24 2.29,-3.82 0,-2.23 -1.68,-3.78 -4.31,-3.78 -2.4,0 -4.45,1.54 -4.45,3.92 a 3.42,3.42 0 0 0 0.21,1.23 h 3 a 2.91,2.91 0 0 1 -0.17,-1 1.35,1.35 0 0 1 1.32,-1.48 1.25,1.25 0 0 1 1.29,1.33 c 0,0.93 -0.84,1.67 -2.28,2.85 l -3.22,2.66 v 2.17 h 8.6 v -2.65 h -4 z" id="path36" inkscape:connector-curvature="0" style="fill:#1d1d1b" />
|
||||||
|
<path class="cls-1" d="m 146.0775,9.54 v 14.37 a 2.54,2.54 0 0 1 -2.53,2.54 h -67.93 a 2.54,2.54 0 0 1 -2.53,-2.54 V 9.54 A 2.54,2.54 0 0 1 75.6175,7 h 67.93 a 2.54,2.54 0 0 1 2.53,2.54 z" id="path38" inkscape:connector-curvature="0" style="fill:#ffffff" />
|
||||||
|
<rect class="cls-1" x="81.747505" y="33.450001" width="55.669998" height="73.269997" id="rect40" style="fill:#ffffff" />
|
||||||
|
<path class="cls-2" d="m 214.6975,230.27 -70.28,-121 V 33.41 a 9.54,9.54 0 0 0 8.66,-9.5 V 9.54 A 9.55,9.55 0 0 0 143.5475,0 h -67.93 a 9.54,9.54 0 0 0 -9.4,8 v 17.5 a 9.55,9.55 0 0 0 8.53,7.94 v 75.9 l -70.2800003,121 A 33,33 0 0 0 33.0075,279.92 h 153.15 a 33,33 0 0 0 28.54,-49.58 z M 73.0875,23.91 V 9.54 A 2.54,2.54 0 0 1 75.6175,7 h 67.93 a 2.54,2.54 0 0 1 2.53,2.54 v 14.37 a 2.54,2.54 0 0 1 -2.53,2.54 h -67.93 a 2.54,2.54 0 0 1 -2.53,-2.54 z m 64.33,9.54 v 73.27 h -55.67 V 33.45 Z m 71.28,226.37 a 25.74,25.74 0 0 1 -22.54,13 h -153.15 a 26,26 0 0 1 -22.49,-39.07 l 69.77,-120.03 h 58.59 l 69.76,120.06 a 25.71,25.71 0 0 1 0.06,26.04 z" id="path42" inkscape:connector-curvature="0" style="fill:#1d1d1b" />
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 5.9 KiB |
@@ -0,0 +1,27 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<svg xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" id="Capa_1" data-name="Capa 1" viewBox="0 0 106.38 312.39002" version="1.1" inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)">
|
||||||
|
<metadata id="metadata33">
|
||||||
|
<rdf:RDF>
|
||||||
|
<cc:Work rdf:about="">
|
||||||
|
<dc:format>image/svg+xml</dc:format>
|
||||||
|
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<sodipodi:namedview pagecolor="#ffffff" bordercolor="#666666" borderopacity="1" objecttolerance="10" gridtolerance="10" guidetolerance="10" inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:window-width="855" inkscape:window-height="480" id="namedview31" showgrid="false" inkscape:zoom="0.63859726" inkscape:cx="53.46" inkscape:cy="127.61" inkscape:window-x="0" inkscape:window-y="27" inkscape:window-maximized="0" inkscape:current-layer="Capa_1" />
|
||||||
|
<defs id="defs4">
|
||||||
|
<style id="style2">.cls-1{fill:#fff;}.cls-2{fill:#1d1d1b;}</style>
|
||||||
|
</defs>
|
||||||
|
<path class="cls-1" d="M 92.11,75.62 H 14.28 A 7.28,7.28 0 0 0 7,82.89 v 215.22 a 7.28,7.28 0 0 0 7.28,7.28 h 77.83 a 7.28,7.28 0 0 0 7.27,-7.28 V 82.89 A 7.28,7.28 0 0 0 92.11,75.62 Z M 16.5,223 a 3.5,3.5 0 0 1 -7,0 v -85.72 a 3.5,3.5 0 0 1 7,0 z m 0,-99.3 a 3.5,3.5 0 0 1 -7,0 v -11.9 a 3.5,3.5 0 0 1 7,0 z" id="path6" inkscape:connector-curvature="0" style="fill:#ffffff" />
|
||||||
|
<rect class="cls-1" x="26.01" y="55.939999" width="54.360001" height="12.68" id="rect8" style="fill:#ffffff" />
|
||||||
|
<polygon class="cls-1" points="49.4,7 58.52,7 66.56,48.94 41.36,48.94 " id="polygon10" style="fill:#ffffff" transform="translate(-0.77)" />
|
||||||
|
<path class="cls-2" d="M 92.11,68.62 H 87.37 V 52.44 a 3.5,3.5 0 0 0 -3.5,-3.5 h -11 L 64.08,2.84 A 3.51,3.51 0 0 0 60.64,0 H 45.74 A 3.51,3.51 0 0 0 42.3,2.84 l -8.84,46.1 H 22.51 a 3.5,3.5 0 0 0 -3.5,3.5 V 68.62 H 14.28 A 14.29,14.29 0 0 0 0,82.89 v 215.22 a 14.29,14.29 0 0 0 14.28,14.28 h 77.83 a 14.29,14.29 0 0 0 14.27,-14.28 V 82.89 A 14.28,14.28 0 0 0 92.11,68.62 Z M 48.63,7 h 9.12 l 8,41.94 H 40.59 Z M 26.01,55.94 H 80.37 V 68.62 H 26.01 Z m 73.37,242.17 a 7.28,7.28 0 0 1 -7.27,7.28 H 14.28 A 7.28,7.28 0 0 1 7,298.11 V 82.89 a 7.28,7.28 0 0 1 7.28,-7.27 h 77.83 a 7.28,7.28 0 0 1 7.27,7.27 z" id="path12" inkscape:connector-curvature="0" style="fill:#1d1d1b" />
|
||||||
|
<path class="cls-2" d="m 16.5,111.8 v 11.91 a 3.5,3.5 0 0 1 -7,0 V 111.8 a 3.5,3.5 0 0 1 7,0 z" id="path14" inkscape:connector-curvature="0" style="fill:#1d1d1b" />
|
||||||
|
<path class="cls-2" d="M 16.5,137.28 V 223 a 3.5,3.5 0 0 1 -7,0 v -85.72 a 3.5,3.5 0 0 1 7,0 z" id="path16" inkscape:connector-curvature="0" style="fill:#1d1d1b" />
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 3.0 KiB |
@@ -0,0 +1 @@
|
|||||||
|
export { AlergenoLegenda } from './AlergenoLegenda';
|
||||||
235
front/src/pages/kafetegia/index.tsx
Normal file
@@ -0,0 +1,235 @@
|
|||||||
|
import { PageProps } from 'gatsby';
|
||||||
|
import React from 'react';
|
||||||
|
import { GlobalStyles } from '../../ui/GlobalStyles';
|
||||||
|
|
||||||
|
import { Helmet } from 'react-helmet';
|
||||||
|
import { Gainburua } from '../../components/Gainburua';
|
||||||
|
import { Container } from '../../components/Container';
|
||||||
|
import styled from 'styled-components';
|
||||||
|
import { colors, font, fontWeight, size } from '../../ui/theme';
|
||||||
|
|
||||||
|
import BeganoaLogo from '../../assets/beganoa.svg';
|
||||||
|
import EkologikoaLogo from '../../assets/ekologikoa.svg';
|
||||||
|
import { rem } from 'polished';
|
||||||
|
import { Produktua } from '../../domain/models/Produktua';
|
||||||
|
import { useKafetegiaData } from './useKafetegiaData';
|
||||||
|
import { AlergenoLegenda } from './components/AlergenoLegenda';
|
||||||
|
|
||||||
|
const Kafetegia: React.VFC<PageProps> = () => {
|
||||||
|
const {
|
||||||
|
izenburua,
|
||||||
|
deskribapena,
|
||||||
|
anizkoJogurta,
|
||||||
|
edariBeroak,
|
||||||
|
edariHotzak,
|
||||||
|
infusioEkologikoak,
|
||||||
|
pikatzekoak,
|
||||||
|
gozoak,
|
||||||
|
tostadak,
|
||||||
|
} = useKafetegiaData();
|
||||||
|
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
<Helmet title={`${izenburua} | Laba`} htmlAttributes={{ lang: 'eu' }}>
|
||||||
|
<meta name="description" content={deskribapena} />
|
||||||
|
</Helmet>
|
||||||
|
|
||||||
|
<GlobalStyles />
|
||||||
|
|
||||||
|
<Gainburua
|
||||||
|
atala="kafetegia"
|
||||||
|
izenburua={izenburua}
|
||||||
|
deskribapena={deskribapena}
|
||||||
|
/>
|
||||||
|
|
||||||
|
<Container>
|
||||||
|
<ContentWrapper>
|
||||||
|
<TaldeWrapper>
|
||||||
|
<IzenburuWrapper>
|
||||||
|
<Marra />
|
||||||
|
<Izenburua>Edariak</Izenburua>
|
||||||
|
</IzenburuWrapper>
|
||||||
|
<ZerrendaWrapper>
|
||||||
|
<ProduktuZerrenda
|
||||||
|
izena="Edari beroak"
|
||||||
|
produktuZerrenda={edariBeroak}
|
||||||
|
/>
|
||||||
|
</ZerrendaWrapper>
|
||||||
|
<ZerrendaWrapper>
|
||||||
|
<ProduktuZerrenda
|
||||||
|
izena="Infusio ekologikoak"
|
||||||
|
produktuZerrenda={infusioEkologikoak}
|
||||||
|
/>
|
||||||
|
</ZerrendaWrapper>
|
||||||
|
<ZerrendaWrapper>
|
||||||
|
<ProduktuZerrenda
|
||||||
|
izena="Edari hotzak"
|
||||||
|
produktuZerrenda={edariHotzak}
|
||||||
|
/>
|
||||||
|
</ZerrendaWrapper>
|
||||||
|
</TaldeWrapper>
|
||||||
|
|
||||||
|
<TaldeWrapper>
|
||||||
|
<IzenburuWrapper>
|
||||||
|
<Marra />
|
||||||
|
<Izenburua>Jakiak</Izenburua>
|
||||||
|
</IzenburuWrapper>
|
||||||
|
<ZerrendaWrapper>
|
||||||
|
<ProduktuZerrenda
|
||||||
|
izena="Pikatzekoak"
|
||||||
|
produktuZerrenda={pikatzekoak}
|
||||||
|
/>
|
||||||
|
</ZerrendaWrapper>
|
||||||
|
<ZerrendaWrapper>
|
||||||
|
<ProduktuZerrenda izena="Tostadak" produktuZerrenda={tostadak} />
|
||||||
|
</ZerrendaWrapper>
|
||||||
|
<ZerrendaWrapper>
|
||||||
|
<ProduktuZerrenda izena="Gozoak" produktuZerrenda={gozoak} />
|
||||||
|
</ZerrendaWrapper>
|
||||||
|
<ZerrendaWrapper>
|
||||||
|
<ProduktuZerrenda
|
||||||
|
izena="Anizko Jogurta"
|
||||||
|
produktuZerrenda={[anizkoJogurta]}
|
||||||
|
/>
|
||||||
|
</ZerrendaWrapper>
|
||||||
|
</TaldeWrapper>
|
||||||
|
|
||||||
|
<TaldeWrapper>
|
||||||
|
<IzenburuWrapper>
|
||||||
|
<Marra />
|
||||||
|
<Izenburua>Alergenoak</Izenburua>
|
||||||
|
</IzenburuWrapper>
|
||||||
|
|
||||||
|
<AlergenoLegenda />
|
||||||
|
</TaldeWrapper>
|
||||||
|
</ContentWrapper>
|
||||||
|
</Container>
|
||||||
|
</>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
const ContentWrapper = styled.div`
|
||||||
|
padding: ${size.huge}px 0;
|
||||||
|
`;
|
||||||
|
|
||||||
|
const TaldeWrapper = styled.section`
|
||||||
|
&:not(:last-child) {
|
||||||
|
margin-bottom: ${size.large}px;
|
||||||
|
}
|
||||||
|
`;
|
||||||
|
|
||||||
|
const ZerrendaWrapper = styled.div`
|
||||||
|
&:not(:last-child) {
|
||||||
|
margin-bottom: ${size.base}px;
|
||||||
|
}
|
||||||
|
`;
|
||||||
|
|
||||||
|
const ProduktuZerrenda: React.FC<{
|
||||||
|
produktuZerrenda: Produktua[];
|
||||||
|
izena: React.ReactNode;
|
||||||
|
}> = ({ produktuZerrenda, izena }) => (
|
||||||
|
<ProduktuTaula>
|
||||||
|
<ProduktuMota>{izena}</ProduktuMota>
|
||||||
|
|
||||||
|
{produktuZerrenda.map(produktua => (
|
||||||
|
<tr key={produktua.id}>
|
||||||
|
<Ezaugarria>
|
||||||
|
{produktua.beganoa && <BeganoaLogo title="Produktu beganoa" />}
|
||||||
|
</Ezaugarria>
|
||||||
|
<Ezaugarria>
|
||||||
|
{produktua.ekologikoa && (
|
||||||
|
<EkologikoaLogo title="Produktu ekologikoa" />
|
||||||
|
)}
|
||||||
|
</Ezaugarria>
|
||||||
|
<Izena scope="row">
|
||||||
|
{produktua.izena}{' '}
|
||||||
|
{produktua.alergenoak.map(alergenoa => (
|
||||||
|
<Alergenoa>{alergenoa.zenbakia}</Alergenoa>
|
||||||
|
))}
|
||||||
|
</Izena>
|
||||||
|
<Prezioa>
|
||||||
|
{new Intl.NumberFormat('eu-ES', {
|
||||||
|
style: 'currency',
|
||||||
|
currency: 'EUR',
|
||||||
|
}).format(produktua.prezioa)}
|
||||||
|
</Prezioa>
|
||||||
|
</tr>
|
||||||
|
))}
|
||||||
|
</ProduktuTaula>
|
||||||
|
);
|
||||||
|
|
||||||
|
const Alergenoa = styled.span`
|
||||||
|
color: ${colors.morea};
|
||||||
|
font-weight: ${fontWeight.bold};
|
||||||
|
|
||||||
|
&:not(:last-child)::after {
|
||||||
|
content: ', ';
|
||||||
|
}
|
||||||
|
`;
|
||||||
|
|
||||||
|
const ProduktuTaula = styled.table`
|
||||||
|
width: 100%;
|
||||||
|
table-layout: fixed;
|
||||||
|
overflow-wrap: break-word;
|
||||||
|
`;
|
||||||
|
|
||||||
|
const Ezaugarria = styled.td`
|
||||||
|
width: ${size.medium}px;
|
||||||
|
height: ${size.medium}px;
|
||||||
|
padding: 0 ${size.xtiny}px;
|
||||||
|
vertical-align: top;
|
||||||
|
`;
|
||||||
|
|
||||||
|
const Izena = styled.td`
|
||||||
|
text-align: left;
|
||||||
|
font-weight: ${fontWeight.regular};
|
||||||
|
padding: 0 ${size.xtiny}px;
|
||||||
|
vertical-align: top;
|
||||||
|
`;
|
||||||
|
|
||||||
|
const Prezioa = styled.td`
|
||||||
|
width: ${size.huge}px;
|
||||||
|
text-align: right;
|
||||||
|
font-weight: ${fontWeight.regular};
|
||||||
|
padding: 0 ${size.xtiny}px;
|
||||||
|
vertical-align: top;
|
||||||
|
`;
|
||||||
|
|
||||||
|
const ProduktuMota = styled.caption`
|
||||||
|
${font.large()};
|
||||||
|
text-align: left;
|
||||||
|
padding-left: 67px;
|
||||||
|
margin-bottom: ${rem(size.mini)};
|
||||||
|
|
||||||
|
&::after {
|
||||||
|
content: '.';
|
||||||
|
}
|
||||||
|
`;
|
||||||
|
|
||||||
|
const IzenburuWrapper = styled.div`
|
||||||
|
display: flex;
|
||||||
|
justify-content: flex-end;
|
||||||
|
align-items: center;
|
||||||
|
margin-bottom: ${rem(size.medium)};
|
||||||
|
`;
|
||||||
|
|
||||||
|
const Marra = styled.div`
|
||||||
|
/* altuera erabiliko den letraren berdina da */
|
||||||
|
height: ${rem(41.83)};
|
||||||
|
flex-grow: 1;
|
||||||
|
box-shadow: inset 0px -3px 0px 0px ${colors.beltza};
|
||||||
|
margin-right: ${rem(size.tiny)};
|
||||||
|
`;
|
||||||
|
|
||||||
|
const Izenburua = styled.h1`
|
||||||
|
text-align: right;
|
||||||
|
vertical-align: bottom;
|
||||||
|
|
||||||
|
&:after {
|
||||||
|
content: '.';
|
||||||
|
}
|
||||||
|
|
||||||
|
${font.gargantuan()};
|
||||||
|
`;
|
||||||
|
|
||||||
|
export default Kafetegia;
|
||||||
226
front/src/pages/kafetegia/useKafetegiaData.ts
Normal file
@@ -0,0 +1,226 @@
|
|||||||
|
import { graphql, useStaticQuery } from 'gatsby';
|
||||||
|
import { ProduktuaDTO } from '../../domain/dtos/ProduktuaDTO';
|
||||||
|
import { produktuaFactory } from '../../domain/factories/produktuaFactory';
|
||||||
|
import { KafetegiaData } from './KafetegiaData';
|
||||||
|
|
||||||
|
interface DataProps {
|
||||||
|
kafetegia: {
|
||||||
|
data: {
|
||||||
|
attributes: {
|
||||||
|
deskribapena: string;
|
||||||
|
izenburua: string;
|
||||||
|
edariBeroak: ProduktuaDTO[];
|
||||||
|
infusioEkologikoak: ProduktuaDTO[];
|
||||||
|
edariHotzak: ProduktuaDTO[];
|
||||||
|
pikatzekoak: ProduktuaDTO[];
|
||||||
|
gozoak: ProduktuaDTO[];
|
||||||
|
anizkoJogurta: ProduktuaDTO;
|
||||||
|
tostadak: ProduktuaDTO[];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
export function useKafetegiaData(): KafetegiaData {
|
||||||
|
const {
|
||||||
|
kafetegia: {
|
||||||
|
data: {
|
||||||
|
attributes: {
|
||||||
|
izenburua,
|
||||||
|
deskribapena,
|
||||||
|
anizkoJogurta,
|
||||||
|
edariBeroak,
|
||||||
|
edariHotzak,
|
||||||
|
infusioEkologikoak,
|
||||||
|
pikatzekoak,
|
||||||
|
gozoak,
|
||||||
|
tostadak,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
} = useStaticQuery<DataProps>(graphql`
|
||||||
|
{
|
||||||
|
kafetegia {
|
||||||
|
data {
|
||||||
|
attributes {
|
||||||
|
izenburua
|
||||||
|
deskribapena
|
||||||
|
anizkoJogurta {
|
||||||
|
alergenoak {
|
||||||
|
apioa
|
||||||
|
arraina
|
||||||
|
arrautzak
|
||||||
|
esnekiak
|
||||||
|
fruituLehorrak
|
||||||
|
glutena
|
||||||
|
kakahueteak
|
||||||
|
krustazeoak
|
||||||
|
lupinuak
|
||||||
|
moluskuak
|
||||||
|
sesamoa
|
||||||
|
soja
|
||||||
|
sulfitoak
|
||||||
|
ziapea
|
||||||
|
}
|
||||||
|
beganoa
|
||||||
|
ekologikoa
|
||||||
|
izena
|
||||||
|
prezioa
|
||||||
|
id__normalized
|
||||||
|
}
|
||||||
|
edariBeroak {
|
||||||
|
id
|
||||||
|
ekologikoa
|
||||||
|
beganoa
|
||||||
|
izena
|
||||||
|
prezioa
|
||||||
|
alergenoak {
|
||||||
|
apioa
|
||||||
|
arraina
|
||||||
|
arrautzak
|
||||||
|
esnekiak
|
||||||
|
fruituLehorrak
|
||||||
|
glutena
|
||||||
|
kakahueteak
|
||||||
|
krustazeoak
|
||||||
|
lupinuak
|
||||||
|
moluskuak
|
||||||
|
sesamoa
|
||||||
|
soja
|
||||||
|
sulfitoak
|
||||||
|
ziapea
|
||||||
|
}
|
||||||
|
}
|
||||||
|
edariHotzak {
|
||||||
|
id
|
||||||
|
ekologikoa
|
||||||
|
beganoa
|
||||||
|
izena
|
||||||
|
prezioa
|
||||||
|
alergenoak {
|
||||||
|
apioa
|
||||||
|
arraina
|
||||||
|
arrautzak
|
||||||
|
esnekiak
|
||||||
|
fruituLehorrak
|
||||||
|
glutena
|
||||||
|
kakahueteak
|
||||||
|
krustazeoak
|
||||||
|
lupinuak
|
||||||
|
moluskuak
|
||||||
|
sesamoa
|
||||||
|
soja
|
||||||
|
sulfitoak
|
||||||
|
ziapea
|
||||||
|
}
|
||||||
|
}
|
||||||
|
infusioEkologikoak {
|
||||||
|
id
|
||||||
|
ekologikoa
|
||||||
|
beganoa
|
||||||
|
izena
|
||||||
|
prezioa
|
||||||
|
alergenoak {
|
||||||
|
apioa
|
||||||
|
arraina
|
||||||
|
arrautzak
|
||||||
|
esnekiak
|
||||||
|
fruituLehorrak
|
||||||
|
glutena
|
||||||
|
kakahueteak
|
||||||
|
krustazeoak
|
||||||
|
lupinuak
|
||||||
|
moluskuak
|
||||||
|
sesamoa
|
||||||
|
soja
|
||||||
|
sulfitoak
|
||||||
|
ziapea
|
||||||
|
}
|
||||||
|
}
|
||||||
|
pikatzekoak {
|
||||||
|
id
|
||||||
|
ekologikoa
|
||||||
|
beganoa
|
||||||
|
izena
|
||||||
|
prezioa
|
||||||
|
alergenoak {
|
||||||
|
apioa
|
||||||
|
arraina
|
||||||
|
arrautzak
|
||||||
|
esnekiak
|
||||||
|
fruituLehorrak
|
||||||
|
glutena
|
||||||
|
kakahueteak
|
||||||
|
krustazeoak
|
||||||
|
lupinuak
|
||||||
|
moluskuak
|
||||||
|
sesamoa
|
||||||
|
soja
|
||||||
|
sulfitoak
|
||||||
|
ziapea
|
||||||
|
}
|
||||||
|
}
|
||||||
|
gozoak {
|
||||||
|
id
|
||||||
|
ekologikoa
|
||||||
|
beganoa
|
||||||
|
izena
|
||||||
|
prezioa
|
||||||
|
alergenoak {
|
||||||
|
apioa
|
||||||
|
arraina
|
||||||
|
arrautzak
|
||||||
|
esnekiak
|
||||||
|
fruituLehorrak
|
||||||
|
glutena
|
||||||
|
kakahueteak
|
||||||
|
krustazeoak
|
||||||
|
lupinuak
|
||||||
|
moluskuak
|
||||||
|
sesamoa
|
||||||
|
soja
|
||||||
|
sulfitoak
|
||||||
|
ziapea
|
||||||
|
}
|
||||||
|
}
|
||||||
|
tostadak {
|
||||||
|
id
|
||||||
|
ekologikoa
|
||||||
|
beganoa
|
||||||
|
izena
|
||||||
|
prezioa
|
||||||
|
alergenoak {
|
||||||
|
apioa
|
||||||
|
arraina
|
||||||
|
arrautzak
|
||||||
|
esnekiak
|
||||||
|
fruituLehorrak
|
||||||
|
glutena
|
||||||
|
kakahueteak
|
||||||
|
krustazeoak
|
||||||
|
lupinuak
|
||||||
|
moluskuak
|
||||||
|
sesamoa
|
||||||
|
soja
|
||||||
|
sulfitoak
|
||||||
|
ziapea
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
`);
|
||||||
|
|
||||||
|
return {
|
||||||
|
izenburua,
|
||||||
|
deskribapena,
|
||||||
|
anizkoJogurta: produktuaFactory(anizkoJogurta),
|
||||||
|
edariBeroak: edariBeroak.map(produktuaFactory),
|
||||||
|
edariHotzak: edariHotzak.map(produktuaFactory),
|
||||||
|
infusioEkologikoak: infusioEkologikoak.map(produktuaFactory),
|
||||||
|
pikatzekoak: pikatzekoak.map(produktuaFactory),
|
||||||
|
gozoak: gozoak.map(produktuaFactory),
|
||||||
|
tostadak: tostadak.map(produktuaFactory),
|
||||||
|
};
|
||||||
|
}
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
export const fontWeight = {
|
export const fontWeight = {
|
||||||
regular: 300,
|
regular: 300,
|
||||||
bold: 600,
|
bold: 800,
|
||||||
};
|
};
|
||||||
|
|||||||