├── docs ├── .nojekyll ├── _app │ ├── version.json │ ├── chunks │ │ ├── paths-396f020f.js │ │ ├── vendor-b3ebdad0.js │ │ └── api-d72c80f5.js │ ├── assets │ │ ├── bootstrap-icons-92f8082b.woff │ │ ├── bootstrap-icons-c874e14c.woff2 │ │ └── pages │ │ │ ├── glossary │ │ │ └── _name_.svelte-b44ebfdc.css │ │ │ ├── index.svelte-5f37a13e.css │ │ │ └── __layout.svelte-79627a3f.css │ ├── pages │ │ ├── __error.svelte-fca2f500.js │ │ ├── index.svelte-fe714f65.js │ │ ├── glossary │ │ │ ├── _name_.svelte-e0df2a2a.js │ │ │ └── index.svelte-690b5130.js │ │ └── __layout.svelte-4cba5834.js │ ├── manifest.json │ └── start-8dff9ddc.js ├── favicon.png ├── 404.html └── index.html ├── static ├── .nojekyll └── favicon.png ├── .npmrc ├── tsconfig.json ├── .gitignore ├── postcss.config.cjs ├── src ├── lib │ ├── models │ │ ├── source.ts │ │ └── figure-of-speech.ts │ ├── components │ │ ├── quote.svelte │ │ ├── glossary │ │ │ ├── glossary-entry.svelte │ │ │ └── glossary-section.svelte │ │ ├── search-bar.svelte │ │ ├── footer.svelte │ │ └── navbar │ │ │ ├── navbar.svelte │ │ │ └── mobile-navbar.svelte │ └── functions │ │ ├── theme.ts │ │ └── api.ts ├── app.d.ts ├── app.css ├── routes │ ├── __layout.svelte │ ├── __error.svelte │ ├── glossary │ │ ├── index.svelte │ │ └── [name].svelte │ └── index.svelte └── app.html ├── tailwind.config.cjs ├── .prettierrc ├── .github ├── ISSUE_TEMPLATE │ ├── feature_request.md │ ├── bug_report.md │ ├── new-figure-of-speech.md │ └── nouvelle-figure-de-style.md └── workflows │ └── publish-sveltekit-bundle.yml ├── svelte.config.js ├── .eslintrc.cjs ├── package.json ├── README.md ├── tools └── deploy.py └── LICENSE /docs/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | engine-strict=true 2 | -------------------------------------------------------------------------------- /docs/_app/version.json: -------------------------------------------------------------------------------- 1 | {"version":"1648818117897"} -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "./.svelte-kit/tsconfig.json" 3 | } 4 | -------------------------------------------------------------------------------- /docs/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/locutionis/main/docs/favicon.png -------------------------------------------------------------------------------- /static/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/locutionis/main/static/favicon.png -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | /build 4 | /.svelte-kit 5 | /package 6 | .env 7 | .env.* 8 | !.env.example 9 | -------------------------------------------------------------------------------- /docs/_app/chunks/paths-396f020f.js: -------------------------------------------------------------------------------- 1 | let a="",e="";function t(s){a=s.base,e=s.assets||a}export{e as a,a as b,t as s}; 2 | -------------------------------------------------------------------------------- /postcss.config.cjs: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | plugins: { 3 | tailwindcss: {}, 4 | autoprefixer: {}, 5 | }, 6 | } 7 | -------------------------------------------------------------------------------- /docs/_app/assets/bootstrap-icons-92f8082b.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/locutionis/main/docs/_app/assets/bootstrap-icons-92f8082b.woff -------------------------------------------------------------------------------- /docs/_app/assets/bootstrap-icons-c874e14c.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/locutionis/main/docs/_app/assets/bootstrap-icons-c874e14c.woff2 -------------------------------------------------------------------------------- /src/lib/models/source.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Quotable external source such as a website 3 | * @example 4 | * { name: "Wikipedia", "href": "https://fr.wikipedia.org" } 5 | */ 6 | export interface Source { 7 | name: string; 8 | href: string; 9 | } 10 | -------------------------------------------------------------------------------- /tailwind.config.cjs: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | content: ['./src/**/*.{html,js,svelte,ts}'], 3 | darkMode: 'class', 4 | theme: { 5 | extend: { 6 | colors: { 7 | 'primary': '#0EA5E9', 8 | 'secondary': '#0284C7' 9 | } 10 | } 11 | }, 12 | plugins: [], 13 | }; 14 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "useTabs": false, 3 | "singleQuote": true, 4 | "trailingComma": "es5", 5 | "printWidth": 100, 6 | "bracketSpacing": true, 7 | "endOfLine": "crlf", 8 | "svelteSortOrder": "scripts-markup-styles", 9 | "svelteAllowShorthand": true, 10 | "svelteIndentScriptAndStyle": true 11 | } 12 | -------------------------------------------------------------------------------- /src/app.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | 3 | // See https://kit.svelte.dev/docs/types#the-app-namespace 4 | // for information about these interfaces 5 | declare namespace App { 6 | // interface Locals {} 7 | // interface Platform {} 8 | // interface Session {} 9 | // interface Stuff {} 10 | } 11 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Feature request 3 | about: Suggest an idea for this project 4 | title: '' 5 | labels: enhancement 6 | assignees: pBouillon 7 | 8 | --- 9 | 10 | ## Description 11 | 12 | > Describe what is the feature you would like to see 13 | 14 | ## Use case 15 | 16 | > Why and when would this feature would be useful to others ? 17 | -------------------------------------------------------------------------------- /docs/_app/assets/pages/glossary/_name_.svelte-b44ebfdc.css: -------------------------------------------------------------------------------- 1 | .title.svelte-15py9es{margin-bottom:1.25rem;font-size:1.5rem;line-height:2rem;font-weight:600;--tw-text-opacity:1;color:rgb(14 165 233 / var(--tw-text-opacity))}.subtitle.svelte-15py9es{margin-bottom:.5rem;font-size:1.125rem;line-height:1.75rem;font-weight:600;--tw-text-opacity:1;color:rgb(2 132 199 / var(--tw-text-opacity))} 2 | -------------------------------------------------------------------------------- /src/lib/components/quote.svelte: -------------------------------------------------------------------------------- 1 | 4 | 5 |
6 | 7 |

8 | {text} 9 |

10 |
11 | -------------------------------------------------------------------------------- /src/app.css: -------------------------------------------------------------------------------- 1 | @tailwind base; 2 | @tailwind components; 3 | @tailwind utilities; 4 | 5 | html { 6 | font-family: 'Helvetica', sans-serif; 7 | } 8 | 9 | em { 10 | @apply not-italic font-semibold text-primary; 11 | } 12 | 13 | .container { 14 | @apply sm:mx-auto sm:w-2/3 md:w-1/3; 15 | } 16 | 17 | .link { 18 | @apply underline decoration-2 decoration-primary hover:text-primary dark:text-gray-200; 19 | } 20 | -------------------------------------------------------------------------------- /src/routes/__layout.svelte: -------------------------------------------------------------------------------- 1 | 7 | 8 |
9 | 10 | 11 |
12 | 13 |
14 | 15 |
16 |
17 | -------------------------------------------------------------------------------- /src/app.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Locutionis | Petit référentiel des figures de style 8 | 9 | %svelte.head% 10 | 11 | 12 |
%svelte.body%
13 | 14 | 15 | -------------------------------------------------------------------------------- /src/lib/components/glossary/glossary-entry.svelte: -------------------------------------------------------------------------------- 1 | 7 | 8 |
9 | 10 | {definition.name} 11 | 12 |

13 | {definition.description} 14 |

15 |
16 | -------------------------------------------------------------------------------- /src/routes/__error.svelte: -------------------------------------------------------------------------------- 1 | 4 | 5 |
6 |

Page introuvable

7 | 8 |

9 | Aucune figure de style n'est référencée pour cette page. 10 |

11 | 12 | 15 |
16 | -------------------------------------------------------------------------------- /src/lib/components/search-bar.svelte: -------------------------------------------------------------------------------- 1 | 8 | 9 | dispatch('searchText', { searchText })} 15 | /> 16 | -------------------------------------------------------------------------------- /svelte.config.js: -------------------------------------------------------------------------------- 1 | import adapter from '@sveltejs/adapter-static'; 2 | import preprocess from 'svelte-preprocess'; 3 | 4 | const dev = process.env.NODE_ENV === 'development'; 5 | 6 | /** @type {import('@sveltejs/kit').Config} */ 7 | const config = { 8 | preprocess: preprocess({ 9 | postcss: true, 10 | }), 11 | 12 | kit: { 13 | adapter: adapter({ 14 | pages: 'docs', 15 | assets: 'docs', 16 | fallback: 'index.html', 17 | }), 18 | paths: { 19 | base: dev ? '' : '/locutionis', 20 | }, 21 | } 22 | }; 23 | 24 | export default config; 25 | -------------------------------------------------------------------------------- /.eslintrc.cjs: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | parser: '@typescript-eslint/parser', 4 | extends: ['eslint:recommended', 'plugin:@typescript-eslint/recommended', 'prettier'], 5 | plugins: ['svelte3', '@typescript-eslint'], 6 | ignorePatterns: ['*.cjs'], 7 | overrides: [{ files: ['*.svelte'], processor: 'svelte3/svelte3' }], 8 | settings: { 9 | 'svelte3/typescript': () => require('typescript') 10 | }, 11 | parserOptions: { 12 | sourceType: 'module', 13 | ecmaVersion: 2020 14 | }, 15 | env: { 16 | browser: true, 17 | es2017: true, 18 | node: true 19 | } 20 | }; 21 | -------------------------------------------------------------------------------- /src/lib/models/figure-of-speech.ts: -------------------------------------------------------------------------------- 1 | import type { Source } from "./source"; 2 | 3 | /** 4 | * The information about a specific figure of speech 5 | */ 6 | export interface FigureOfSpeech { 7 | /** The name of the figure of speech */ 8 | name: string; 9 | 10 | /** Its overall description */ 11 | description: string; 12 | 13 | /** Explanation about why one would use it */ 14 | goal: string; 15 | 16 | /** Sentences using this figure of speech */ 17 | examples: string[]; 18 | 19 | /** External sources from which the previous information where gathered */ 20 | sources: Source[]; 21 | } -------------------------------------------------------------------------------- /src/lib/components/glossary/glossary-section.svelte: -------------------------------------------------------------------------------- 1 | 8 | 9 |
10 |

11 | {key.toUpperCase()} 12 |

13 | 14 |
15 | {#each definitions as definition} 16 | 17 | {/each} 18 |
19 |
20 | -------------------------------------------------------------------------------- /src/lib/components/footer.svelte: -------------------------------------------------------------------------------- 1 | 19 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Bug report 3 | about: Create a report to help us improve 4 | title: '' 5 | labels: bug 6 | assignees: pBouillon 7 | 8 | --- 9 | 10 | ## Description 11 | 12 | > Write a clear and concise description of what the bug is. 13 | 14 | ## Steps to reproduce the behavior 15 | 16 | > Steps to reproduce the behavior: 17 | > 1. Go to '...' 18 | > 2. Click on '....' 19 | > 3. Scroll down to '....' 20 | > 4. See error 21 | 22 | ## Expected behavior 23 | 24 | > A clear and concise description of what you expected to happen. 25 | 26 | ## Screenshots 27 | 28 | If applicable, add screenshots to help explain your problem. 29 | 30 | ## Additional context 31 | 32 | > Add any other context about the problem here. 33 | 34 | - Browser (e.g. Firefox): ___ 35 | - Screen dimensions (e.g. 1920x1080): ___ 36 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/new-figure-of-speech.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: New figure of speech 3 | about: Propose a new figure of speech 4 | title: '' 5 | labels: enhancement 6 | assignees: pBouillon 7 | 8 | --- 9 | 10 | ## Details 11 | 12 | ### Name 13 | 14 | > The name of the figure of speech 15 | 16 | ### Description 17 | 18 | > Its overall description 19 | 20 | ### Goal 21 | 22 | > Explanation about why one would use it 23 | 24 | ### Examples 25 | 26 | > Sentences using this figure of speech 27 | 28 | ### Sources 29 | 30 | > External sources from which the previous information where gathered (provide a name and a URL) 31 | 32 | --- 33 | 34 | - [ ] This figure of speech is not yet referenced in Locutionis 35 | - [ ] My information are complete 36 | - [ ] All sections are filled 37 | - [ ] There is at least one example 38 | - [ ] The sources are specified 39 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/nouvelle-figure-de-style.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Nouvelle figure de style 3 | about: Proposer l'ajout d'une nouvelle figure de style 4 | title: '' 5 | labels: enhancement 6 | assignees: pBouillon 7 | 8 | --- 9 | 10 | ## Détails 11 | 12 | ### Nom 13 | 14 | > Le nom de la figure de style 15 | 16 | ### Description 17 | 18 | > Sa description globale 19 | 20 | ### But 21 | 22 | > Expliquer dans quel cas l'utiliser 23 | 24 | ### Exemples 25 | 26 | > Phrases utilisant cette figure de style 27 | 28 | ### Sources 29 | 30 | > Sources à partir desquelles les informations précédentes ont été trouvées (nom de la source et URL) 31 | 32 | --- 33 | 34 | - [ ] Cette figure de style n'est pas référencée dans Locutionis 35 | - [ ] Ces informations sont complètes 36 | - [ ] Toutes les sections sont remplies 37 | - [ ] Au moins un exemple est ajouté 38 | - [ ] Les sources sont citées 39 | -------------------------------------------------------------------------------- /docs/_app/assets/pages/index.svelte-5f37a13e.css: -------------------------------------------------------------------------------- 1 | section.svelte-1847qsj.svelte-1847qsj.svelte-1847qsj{margin-top:3rem;margin-bottom:3rem;margin-left:auto;margin-right:auto;max-width:80rem}@media (min-width: 640px){section.svelte-1847qsj.svelte-1847qsj.svelte-1847qsj{padding-left:1.5rem;padding-right:1.5rem}}@media (min-width: 768px){section.svelte-1847qsj.svelte-1847qsj.svelte-1847qsj{padding-left:2rem;padding-right:2rem}}.description.svelte-1847qsj.svelte-1847qsj.svelte-1847qsj{margin-top:.75rem;max-width:48rem}.description.svelte-1847qsj>.svelte-1847qsj:not([hidden])~.svelte-1847qsj:not([hidden]){--tw-space-y-reverse:0;margin-top:calc(1.5rem * calc(1 - var(--tw-space-y-reverse)));margin-bottom:calc(1.5rem * var(--tw-space-y-reverse))}.description.svelte-1847qsj.svelte-1847qsj.svelte-1847qsj{letter-spacing:.025em}.subtitle.svelte-1847qsj.svelte-1847qsj.svelte-1847qsj{font-size:1.5rem;line-height:2rem;font-weight:800;letter-spacing:-.025em} 2 | -------------------------------------------------------------------------------- /src/lib/functions/theme.ts: -------------------------------------------------------------------------------- 1 | import { writable } from 'svelte/store'; 2 | import { browser } from "$app/env" 3 | 4 | export type Theme = 'dark' | 'light'; 5 | 6 | function createThemeStore() { 7 | const initialTheme = (browser && localStorage.theme) ?? 'light'; 8 | 9 | setTheme(initialTheme); 10 | const { subscribe, update } = writable(initialTheme); 11 | 12 | return { 13 | subscribe, 14 | set: (theme: Theme) => update(() => setTheme(theme)), 15 | toggle: () => update((current) => setTheme(current === 'light' ? 'dark' : 'light')), 16 | update, 17 | }; 18 | } 19 | 20 | /** 21 | * Set the theme as a CSS class of the root element 22 | * @param theme The theme to use 23 | * @returns The theme that has been set 24 | */ 25 | function setTheme(theme: Theme): Theme { 26 | if (!browser) { 27 | return; 28 | } 29 | 30 | localStorage.theme = theme; 31 | 32 | if (theme === 'dark') { 33 | document.documentElement.classList.add('dark') 34 | } else { 35 | document.documentElement.classList.remove('dark') 36 | } 37 | 38 | return theme; 39 | } 40 | 41 | export const theme = createThemeStore(); 42 | -------------------------------------------------------------------------------- /docs/404.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Locutionis | Petit référentiel des figures de style 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 |
28 | 29 | 30 | -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Locutionis | Petit référentiel des figures de style 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 |
28 | 29 | 30 | -------------------------------------------------------------------------------- /.github/workflows/publish-sveltekit-bundle.yml: -------------------------------------------------------------------------------- 1 | name: Publish SvelteKit bundle 2 | 3 | on: 4 | workflow_dispatch: 5 | push: 6 | branches: 7 | - main 8 | 9 | jobs: 10 | publish-sveltekit-bundle: 11 | runs-on: ubuntu-latest 12 | 13 | steps: 14 | - name: Checkout 15 | uses: actions/checkout@v3.0.0 16 | 17 | - name: Setup Node.js environment 18 | uses: actions/setup-node@v3.0.0 19 | with: 20 | node-version: 16.x 21 | 22 | - name: Install the dependencies 23 | run: | 24 | npm install 25 | 26 | - name: Remove the precedent bundle 27 | if: contains(github.ref, 'main') 28 | run: | 29 | rm -rf docs/* 30 | 31 | - name: Rebuild the bundle 32 | if: contains(github.ref, 'main') 33 | run: | 34 | npm run build 35 | cp docs/index.html docs/404.html 36 | 37 | - name: Publish the new bundle 38 | if: contains(github.ref, 'main') 39 | run: | 40 | git config user.name github-actions 41 | git config user.email github-actions@github.com 42 | git add docs/ 43 | git commit -m "[GitHub Actions] Regenerate the application's bundle" 44 | git push 45 | -------------------------------------------------------------------------------- /docs/_app/pages/__error.svelte-fca2f500.js: -------------------------------------------------------------------------------- 1 | import{S as I,i as R,s as q,e as u,t as g,k as P,c as d,a as f,h as v,d as n,m as S,b as o,g as D,F as t,G as b}from"../chunks/vendor-b3ebdad0.js";import{b as F}from"../chunks/paths-396f020f.js";function G(C){let e,r,h,p,l,m,x,c,s,_;return{c(){e=u("section"),r=u("h1"),h=g("Page introuvable"),p=P(),l=u("p"),m=g("Aucune figure de style n'est r\xE9f\xE9renc\xE9e pour cette page."),x=P(),c=u("div"),s=u("a"),_=g("Retourner \xE0 l'accueil"),this.h()},l(i){e=d(i,"SECTION",{class:!0});var a=f(e);r=d(a,"H1",{class:!0});var y=f(r);h=v(y,"Page introuvable"),y.forEach(n),p=S(a),l=d(a,"P",{class:!0});var E=f(l);m=v(E,"Aucune figure de style n'est r\xE9f\xE9renc\xE9e pour cette page."),E.forEach(n),x=S(a),c=d(a,"DIV",{class:!0});var k=f(c);s=d(k,"A",{href:!0,class:!0});var A=f(s);_=v(A,"Retourner \xE0 l'accueil"),A.forEach(n),k.forEach(n),a.forEach(n),this.h()},h(){o(r,"class","text-4xl font-bold text-center text-primary"),o(l,"class","text-lg text-center dark:text-gray-200"),o(s,"href",F+"/"),o(s,"class","font-semibold link"),o(c,"class","text-lg text-center"),o(e,"class","flex flex-col gap-8 mt-8")},m(i,a){D(i,e,a),t(e,r),t(r,h),t(e,p),t(e,l),t(l,m),t(e,x),t(e,c),t(c,s),t(s,_)},p:b,i:b,o:b,d(i){i&&n(e)}}}class O extends I{constructor(e){super();R(this,e,null,G,q,{})}}export{O as default}; 2 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "locutionis", 3 | "version": "0.0.1", 4 | "scripts": { 5 | "dev": "svelte-kit dev", 6 | "build": "svelte-kit build", 7 | "package": "svelte-kit package", 8 | "preview": "svelte-kit preview", 9 | "prepare": "svelte-kit sync", 10 | "check": "svelte-check --tsconfig ./tsconfig.json", 11 | "check:watch": "svelte-check --tsconfig ./tsconfig.json --watch", 12 | "lint": "prettier --ignore-path .gitignore --check --plugin-search-dir=. . && eslint --ignore-path .gitignore .", 13 | "format": "prettier --ignore-path .gitignore --write --plugin-search-dir=. ." 14 | }, 15 | "devDependencies": { 16 | "@sveltejs/adapter-static": "^1.0.0-next.29", 17 | "@sveltejs/kit": "next", 18 | "@typescript-eslint/eslint-plugin": "^5.10.1", 19 | "@typescript-eslint/parser": "^5.10.1", 20 | "autoprefixer": "^10.4.2", 21 | "eslint": "^7.32.0", 22 | "eslint-config-prettier": "^8.3.0", 23 | "eslint-plugin-svelte3": "^3.2.1", 24 | "postcss": "^8.4.7", 25 | "prettier": "^2.5.1", 26 | "prettier-plugin-svelte": "^2.5.0", 27 | "svelte": "^3.44.0", 28 | "svelte-check": "^2.2.6", 29 | "svelte-preprocess": "^4.10.1", 30 | "tailwindcss": "^3.0.23", 31 | "tslib": "^2.3.1", 32 | "typescript": "~4.6.2" 33 | }, 34 | "type": "module", 35 | "dependencies": { 36 | "bootstrap-icons": "^1.8.1" 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |

2 | Locutionis 3 |

4 | 5 |

6 | Small, online reference of figures of speech 7 |

8 | 9 |
10 | Locutionis homepage screenshot 14 |
15 | 16 |
17 | 18 | [Locutionis](https://pbouillon.github.io/locutionis) is a simple website on which french speakers can learn more about some figures of speech, their usages and where to find more about it. 19 | 20 | ## Contributing 21 | 22 | Pull requests are welcome either to add more content or to improve the actual code quality. 23 | 24 | For major changes, please [open an issue](https://github.com/pBouillon/locutionis/issues/new) first to discuss what you would like to change. 25 | 26 | ## Development 27 | 28 | ### Requirements 29 | 30 | - [Node.js](https://nodejs.org/en/) 31 | - [Git](https://git-scm.com/) 32 | 33 | #### Clone the repository 34 | 35 | ``` 36 | git clone https://github.com/pbouillon/locutionis.git 37 | ``` 38 | 39 | #### Install the dependencies 40 | 41 | ``` 42 | npm install 43 | ``` 44 | 45 | #### Start the dev server 46 | 47 | ``` 48 | npm run dev 49 | ``` 50 | 51 | You can now navigate to [localhost:3000](http://localhost:3000/) and start coding in your favorite code editor. 52 | 53 | ## Architecture 54 | 55 | - **Hosting** - [GitHub Pages](https://pages.github.com/) 56 | - **Styling** 57 | - [Tailwind CSS](https://tailwindcss.com/) 58 | - [Bootstrap Icons](https://icons.getbootstrap.com/) 59 | - **Framework** - [Svelte](svelte.dev/) with [SvelteKit](https://kit.svelte.dev/) using [TypeScript](https://www.typescriptlang.org/) 60 | - **Tools** - Deployment script made in Python 61 | -------------------------------------------------------------------------------- /src/lib/components/navbar/navbar.svelte: -------------------------------------------------------------------------------- 1 | 14 | 15 | 54 | -------------------------------------------------------------------------------- /tools/deploy.py: -------------------------------------------------------------------------------- 1 | import logging 2 | import pathlib 3 | import shutil 4 | import subprocess 5 | 6 | from typing import NoReturn 7 | 8 | 9 | logging.basicConfig( 10 | format='[%(levelname)s] %(message)s', 11 | level=logging.INFO) 12 | 13 | 14 | def get_project_root() -> pathlib.Path: 15 | tools_directory = pathlib.Path(__file__).parent 16 | return tools_directory.parent 17 | 18 | 19 | def cleanup_previous_bundle() -> NoReturn: 20 | target = get_project_root().joinpath('docs') 21 | 22 | if not target.exists(): 23 | logging.debug('No previous build found') 24 | return 25 | 26 | shutil.rmtree(target) 27 | 28 | 29 | def generate_bundle() -> NoReturn: 30 | root = get_project_root() 31 | 32 | subprocess.call( 33 | ['npm', 'run', 'build'], 34 | shell=True, 35 | stdout=subprocess.DEVNULL, 36 | cwd=root) 37 | 38 | shutil.copy( 39 | root.joinpath('docs/index.html'), 40 | root.joinpath('docs/404.html')) 41 | 42 | 43 | def push_bundle() -> NoReturn: 44 | target = get_project_root().joinpath('docs') 45 | 46 | subprocess.call( 47 | ['git', 'add', target], 48 | shell=True, 49 | stderr=subprocess.DEVNULL, 50 | stdout=subprocess.DEVNULL, 51 | cwd=target) 52 | 53 | subprocess.call( 54 | ['git', 'commit', '-m', 'Regenerate the application\'s bundle'], 55 | shell=True, 56 | stdout=subprocess.DEVNULL, 57 | cwd=target) 58 | 59 | logging.debug('Bundle committed') 60 | 61 | subprocess.call( 62 | ['git', 'push'], 63 | shell=True, 64 | stdout=subprocess.DEVNULL, 65 | cwd=target) 66 | 67 | logging.debug('Bundle pushed') 68 | 69 | 70 | if __name__ == '__main__': 71 | cleanup_previous_bundle() 72 | logging.info('Previous bundle removed') 73 | 74 | logging.info('Bundling the app ...') 75 | generate_bundle() 76 | logging.info('App bundle created') 77 | 78 | push_bundle() 79 | logging.info('Bundle pushed to git') 80 | -------------------------------------------------------------------------------- /src/routes/glossary/index.svelte: -------------------------------------------------------------------------------- 1 | 9 | 10 | 40 | 41 | 42 | Glossaire | Locutionis - Petit référentiel des figures de style 43 | 44 | 45 |

46 | Glossaire 47 |

48 | 49 |
50 | 51 |
52 | 53 | {#if filtered.length > 0} 54 |
55 | {#each filtered as [key, definitions]} 56 | 57 | {/each} 58 |
59 | {:else} 60 |

61 | Aucun résultat pour votre recherche 62 |

63 | {/if} 64 | -------------------------------------------------------------------------------- /src/routes/glossary/[name].svelte: -------------------------------------------------------------------------------- 1 | 10 | 11 | 19 | 20 | 21 | 22 | {definition.name} | Locutionis - Petit référentiel des figures de style 23 | 24 | 25 | 26 | {#if firstExample} 27 |
28 | 29 |
30 | {/if} 31 | 32 |
33 |

34 | {definition.name} 35 |

36 | 37 |
38 |
39 |

Description

40 |

{definition.description}

41 |
42 | 43 |
44 |

Dans quel but ?

45 |

{definition.goal}

46 |
47 | 48 |
49 |

Quelques exemples

50 | 51 |
52 | {#each definition.examples as example} 53 |

- {example}

54 | {/each} 55 |
56 |
57 | 58 |
59 |

Sources

60 | 61 |
62 | {#each definition.sources as { name, href }} 63 |

64 | - {name} 65 |

66 | {/each} 67 |
68 |
69 |
70 |
71 | 72 | 81 | -------------------------------------------------------------------------------- /src/lib/components/navbar/mobile-navbar.svelte: -------------------------------------------------------------------------------- 1 | 14 | 15 |
16 | 17 | 18 |
22 | 23 | 24 |
27 | 28 | 29 |
30 | 33 |
34 | 35 | 36 |
    37 | {#each links as { href, label }} 38 |
  • 39 | {label} 40 |
  • 41 | {/each} 42 |
43 | 44 | 45 |
46 |
47 | 51 |
54 | 55 | {#if $theme === 'light'} 56 | 57 | Clair 58 | {:else} 59 | 60 | Sombre 61 | {/if} 62 | 63 | 64 | 65 | 73 |
74 |
75 |
76 | 77 |
78 |
79 | -------------------------------------------------------------------------------- /docs/_app/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | ".svelte-kit/runtime/client/start.js": { 3 | "file": "start-8dff9ddc.js", 4 | "src": ".svelte-kit/runtime/client/start.js", 5 | "isEntry": true, 6 | "imports": [ 7 | "_vendor-b3ebdad0.js", 8 | "_paths-396f020f.js" 9 | ], 10 | "dynamicImports": [ 11 | "src/routes/__layout.svelte", 12 | "src/routes/__error.svelte", 13 | "src/routes/index.svelte", 14 | "src/routes/glossary/index.svelte", 15 | "src/routes/glossary/[name].svelte" 16 | ] 17 | }, 18 | "src/routes/__layout.svelte": { 19 | "file": "pages/__layout.svelte-4cba5834.js", 20 | "src": "src/routes/__layout.svelte", 21 | "isEntry": true, 22 | "isDynamicEntry": true, 23 | "imports": [ 24 | "_vendor-b3ebdad0.js", 25 | "_paths-396f020f.js" 26 | ], 27 | "css": [ 28 | "assets/pages/__layout.svelte-79627a3f.css" 29 | ], 30 | "assets": [ 31 | "assets/bootstrap-icons-c874e14c.woff2", 32 | "assets/bootstrap-icons-92f8082b.woff" 33 | ] 34 | }, 35 | "src/routes/__error.svelte": { 36 | "file": "pages/__error.svelte-fca2f500.js", 37 | "src": "src/routes/__error.svelte", 38 | "isEntry": true, 39 | "isDynamicEntry": true, 40 | "imports": [ 41 | "_vendor-b3ebdad0.js", 42 | "_paths-396f020f.js" 43 | ] 44 | }, 45 | "src/routes/index.svelte": { 46 | "file": "pages/index.svelte-fe714f65.js", 47 | "src": "src/routes/index.svelte", 48 | "isEntry": true, 49 | "isDynamicEntry": true, 50 | "imports": [ 51 | "_vendor-b3ebdad0.js", 52 | "_paths-396f020f.js" 53 | ], 54 | "css": [ 55 | "assets/pages/index.svelte-5f37a13e.css" 56 | ] 57 | }, 58 | "src/routes/glossary/index.svelte": { 59 | "file": "pages/glossary/index.svelte-690b5130.js", 60 | "src": "src/routes/glossary/index.svelte", 61 | "isEntry": true, 62 | "isDynamicEntry": true, 63 | "imports": [ 64 | "_vendor-b3ebdad0.js", 65 | "_api-d72c80f5.js", 66 | "_paths-396f020f.js" 67 | ] 68 | }, 69 | "src/routes/glossary/[name].svelte": { 70 | "file": "pages/glossary/_name_.svelte-e0df2a2a.js", 71 | "src": "src/routes/glossary/[name].svelte", 72 | "isEntry": true, 73 | "isDynamicEntry": true, 74 | "imports": [ 75 | "_vendor-b3ebdad0.js", 76 | "_api-d72c80f5.js" 77 | ], 78 | "css": [ 79 | "assets/pages/glossary/_name_.svelte-b44ebfdc.css" 80 | ] 81 | }, 82 | "_vendor-b3ebdad0.js": { 83 | "file": "chunks/vendor-b3ebdad0.js" 84 | }, 85 | "_paths-396f020f.js": { 86 | "file": "chunks/paths-396f020f.js" 87 | }, 88 | "_api-d72c80f5.js": { 89 | "file": "chunks/api-d72c80f5.js" 90 | } 91 | } -------------------------------------------------------------------------------- /src/routes/index.svelte: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | Locutionis - Petit référentiel des figures de style 7 | 8 | 9 |
10 |

11 | Petit référentiel des figures de style. 12 |

13 | 14 |

15 | Locutionis est un petit référentiel amateur de figures de style françaises visant à vulgariser 16 | leurs définitions et usages. 17 |

18 | 19 | 27 |
28 | 29 |
30 |

Objectif

31 | 32 |

33 | Le but de Locutionis est de permettre à n'importe quel curieux·euse de parcourir et/ou découvrir 34 | des figures de style de la langue française. 35 |

36 | 37 |

38 | Épanorthoses, antanaclases et autres antonomases 39 | n'auront plus de secrets pour vous ! 40 |

41 | 42 |

43 | N'étant qu'hobyiste, les informations ici sont majoritairement agrégées depuis diverses 44 | ressources, pensez-donc à les vérifier ! 45 |

46 |
47 | 48 |
49 |

Pourquoi Locutionis

50 | 51 |

52 | Amateur des figures de style que j'ai pu découvrir au cours des années, je me suis toujours 53 | amusé tant de leur phonétique que de leurs capacités à qualifier la structure de nos phrases. 54 |

55 | 56 |

57 | Ayant des difficultés à les garder en mémoire, c'est en mêlant ma passion pour ces dernières et 58 | pour l'informatique que j'ai choisi de créer 59 | Locutionis, en espérant qu'un jour cela puisse aider quelqu'un ! 60 |

61 |
62 | 63 | 76 | -------------------------------------------------------------------------------- /docs/_app/pages/index.svelte-fe714f65.js: -------------------------------------------------------------------------------- 1 | import{S as Ne,i as Oe,s as Se,k as p,e as r,t as a,U as Ce,d as s,m,c as l,a as i,h as o,b as u,g as C,F as e,G as he}from"../chunks/vendor-b3ebdad0.js";import{b as Ie}from"../chunks/paths-396f020f.js";function ze(Ae){let j,c,y,G,R,q,I,U,B,J,b,_,K,T,n,k,Q,W,v,X,z,Y,Z,$,d,L,ee,se,P,te,re,M,ae,le,ie,w,oe,V,f,A,ue,ne,N,ce,de,h,fe,H,pe,me;return{c(){j=p(),c=r("section"),y=r("h1"),G=a("Petit r\xE9f\xE9rentiel des figures de style."),R=p(),q=r("p"),I=r("em"),U=a("Locutionis"),B=a(` est un petit r\xE9f\xE9rentiel amateur de figures de style fran\xE7aises visant \xE0 vulgariser\r 2 | leurs d\xE9finitions et usages.`),J=p(),b=r("div"),_=r("a"),K=a("Voir le glossaire"),T=p(),n=r("section"),k=r("h2"),Q=a("Objectif"),W=p(),v=r("p"),X=a("Le but de "),z=r("em"),Y=a("Locutionis"),Z=a(` est de permettre \xE0 n'importe quel curieux\xB7euse de parcourir et/ou d\xE9couvrir\r 3 | des figures de style de la langue fran\xE7aise.`),$=p(),d=r("p"),L=r("em"),ee=a("\xC9panorthoses"),se=a(", "),P=r("em"),te=a("antanaclases"),re=a(" et autres "),M=r("em"),ae=a("antonomases"),le=a(`\r 4 | n'auront plus de secrets pour vous !`),ie=p(),w=r("p"),oe=a(`N'\xE9tant qu'hobyiste, les informations ici sont majoritairement agr\xE9g\xE9es depuis diverses\r 5 | ressources, pensez-donc \xE0 les v\xE9rifier !`),V=p(),f=r("section"),A=r("h2"),ue=a("Pourquoi Locutionis"),ne=p(),N=r("p"),ce=a(`Amateur des figures de style que j'ai pu d\xE9couvrir au cours des ann\xE9es, je me suis toujours\r 6 | amus\xE9 tant de leur phon\xE9tique que de leurs capacit\xE9s \xE0 qualifier la structure de nos phrases.`),de=p(),h=r("p"),fe=a(`Ayant des difficult\xE9s \xE0 les garder en m\xE9moire, c'est en m\xEAlant ma passion pour ces derni\xE8res et\r 7 | pour l'informatique que j'ai choisi de cr\xE9er\r 8 | `),H=r("em"),pe=a("Locutionis"),me=a(", en esp\xE9rant qu'un jour cela puisse aider quelqu'un !"),this.h()},l(t){Ce('[data-svelte="svelte-1qzsfr5"]',document.head).forEach(s),j=m(t),c=l(t,"SECTION",{class:!0});var O=i(c);y=l(O,"H1",{class:!0});var xe=i(y);G=o(xe,"Petit r\xE9f\xE9rentiel des figures de style."),xe.forEach(s),R=m(O),q=l(O,"P",{class:!0});var ve=i(q);I=l(ve,"EM",{});var qe=i(I);U=o(qe,"Locutionis"),qe.forEach(s),B=o(ve,` est un petit r\xE9f\xE9rentiel amateur de figures de style fran\xE7aises visant \xE0 vulgariser\r 9 | leurs d\xE9finitions et usages.`),ve.forEach(s),J=m(O),b=l(O,"DIV",{class:!0});var _e=i(b);_=l(_e,"A",{href:!0,class:!0});var Ee=i(_);K=o(Ee,"Voir le glossaire"),Ee.forEach(s),_e.forEach(s),O.forEach(s),T=m(t),n=l(t,"SECTION",{class:!0});var x=i(n);k=l(x,"H2",{class:!0});var ge=i(k);Q=o(ge,"Objectif"),ge.forEach(s),W=m(x),v=l(x,"P",{class:!0});var D=i(v);X=o(D,"Le but de "),z=l(D,"EM",{});var je=i(z);Y=o(je,"Locutionis"),je.forEach(s),Z=o(D,` est de permettre \xE0 n'importe quel curieux\xB7euse de parcourir et/ou d\xE9couvrir\r 10 | des figures de style de la langue fran\xE7aise.`),D.forEach(s),$=m(x),d=l(x,"P",{class:!0});var g=i(d);L=l(g,"EM",{class:!0});var ye=i(L);ee=o(ye,"\xC9panorthoses"),ye.forEach(s),se=o(g,", "),P=l(g,"EM",{class:!0});var be=i(P);te=o(be,"antanaclases"),be.forEach(s),re=o(g," et autres "),M=l(g,"EM",{class:!0});var ke=i(M);ae=o(ke,"antonomases"),ke.forEach(s),le=o(g,`\r 11 | n'auront plus de secrets pour vous !`),g.forEach(s),ie=m(x),w=l(x,"P",{class:!0});var Le=i(w);oe=o(Le,`N'\xE9tant qu'hobyiste, les informations ici sont majoritairement agr\xE9g\xE9es depuis diverses\r 12 | ressources, pensez-donc \xE0 les v\xE9rifier !`),Le.forEach(s),x.forEach(s),V=m(t),f=l(t,"SECTION",{class:!0});var S=i(f);A=l(S,"H2",{class:!0});var Pe=i(A);ue=o(Pe,"Pourquoi Locutionis"),Pe.forEach(s),ne=m(S),N=l(S,"P",{class:!0});var Me=i(N);ce=o(Me,`Amateur des figures de style que j'ai pu d\xE9couvrir au cours des ann\xE9es, je me suis toujours\r 13 | amus\xE9 tant de leur phon\xE9tique que de leurs capacit\xE9s \xE0 qualifier la structure de nos phrases.`),Me.forEach(s),de=m(S),h=l(S,"P",{class:!0});var F=i(h);fe=o(F,`Ayant des difficult\xE9s \xE0 les garder en m\xE9moire, c'est en m\xEAlant ma passion pour ces derni\xE8res et\r 14 | pour l'informatique que j'ai choisi de cr\xE9er\r 15 | `),H=l(F,"EM",{});var we=i(H);pe=o(we,"Locutionis"),we.forEach(s),me=o(F,", en esp\xE9rant qu'un jour cela puisse aider quelqu'un !"),F.forEach(s),S.forEach(s),this.h()},h(){document.title="Locutionis - Petit r\xE9f\xE9rentiel des figures de style",u(y,"class","text-4xl font-bold tracking-tight text-center sm:text-5xl lg:text-6xl dark:text-white"),u(q,"class","max-w-3xl mx-auto text-lg text-center text-slate-600 dark:text-slate-400"),u(_,"href",Ie+"/glossary"),u(_,"class","flex items-center justify-center w-full h-12 px-6 font-semibold text-white rounded-lg bg-primary hover:bg-primary/90 focus:outline-none focus:ring-2 focus:ring-slate-400 focus:ring-offset-2 focus:ring-offset-slate-50 sm:w-1/4"),u(b,"class","flex justify-center"),u(c,"class","flex flex-col gap-10 svelte-1847qsj"),u(k,"class","subtitle dark:text-slate-200 svelte-1847qsj"),u(v,"class","description text-slate-600 dark:text-slate-400 svelte-1847qsj"),u(L,"class","svelte-1847qsj"),u(P,"class","svelte-1847qsj"),u(M,"class","svelte-1847qsj"),u(d,"class","description text-slate-600 dark:text-slate-400 svelte-1847qsj"),u(w,"class","description text-slate-600 dark:text-slate-400 svelte-1847qsj"),u(n,"class","svelte-1847qsj"),u(A,"class","subtitle dark:text-slate-200 svelte-1847qsj"),u(N,"class","description text-slate-600 dark:text-slate-400 svelte-1847qsj"),u(h,"class","description text-slate-600 dark:text-slate-400 svelte-1847qsj"),u(f,"class","svelte-1847qsj")},m(t,E){C(t,j,E),C(t,c,E),e(c,y),e(y,G),e(c,R),e(c,q),e(q,I),e(I,U),e(q,B),e(c,J),e(c,b),e(b,_),e(_,K),C(t,T,E),C(t,n,E),e(n,k),e(k,Q),e(n,W),e(n,v),e(v,X),e(v,z),e(z,Y),e(v,Z),e(n,$),e(n,d),e(d,L),e(L,ee),e(d,se),e(d,P),e(P,te),e(d,re),e(d,M),e(M,ae),e(d,le),e(n,ie),e(n,w),e(w,oe),C(t,V,E),C(t,f,E),e(f,A),e(A,ue),e(f,ne),e(f,N),e(N,ce),e(f,de),e(f,h),e(h,fe),e(h,H),e(H,pe),e(h,me)},p:he,i:he,o:he,d(t){t&&s(j),t&&s(c),t&&s(T),t&&s(n),t&&s(V),t&&s(f)}}}class Ve extends Ne{constructor(j){super();Oe(this,j,null,ze,Se,{})}}export{Ve as default}; 16 | -------------------------------------------------------------------------------- /docs/_app/pages/glossary/_name_.svelte-e0df2a2a.js: -------------------------------------------------------------------------------- 1 | import{S as Se,i as Pe,s as Ce,e as h,k,t as y,c as _,a as d,d as c,m as q,h as D,b as m,g as Q,F as a,j as G,G as be,w as Oe,x as He,y as Ne,q as ee,o as he,B as Te,U as Ve,p as Qe,K as ke,n as we}from"../../chunks/vendor-b3ebdad0.js";import{g as Be}from"../../chunks/api-d72c80f5.js";function Le(r){let e,o,s,l,i;return{c(){e=h("blockquote"),o=h("i"),s=k(),l=h("p"),i=y(r[0]),this.h()},l(f){e=_(f,"BLOCKQUOTE",{class:!0});var v=d(e);o=_(v,"I",{class:!0}),d(o).forEach(c),s=q(v),l=_(v,"P",{class:!0});var b=d(l);i=D(b,r[0]),b.forEach(c),v.forEach(c),this.h()},h(){m(o,"class","text-3xl font-extrabold text-gray-400 dark:text-slate-400 bi bi-quote"),m(l,"class","text-lg italic text-center text-gray-600 dark:text-slate-400 md:max-w-3xl md:text-2xl"),m(e,"class","flex flex-col items-center")},m(f,v){Q(f,e,v),a(e,o),a(e,s),a(e,l),a(l,i)},p(f,[v]){v&1&&G(i,f[0])},i:be,o:be,d(f){f&&c(e)}}}function Ue(r,e,o){let{text:s}=e;return r.$$set=l=>{"text"in l&&o(0,s=l.text)},[s]}class Ke extends Se{constructor(e){super();Pe(this,e,Ue,Le,Ce,{text:0})}}function qe(r,e,o){const s=r.slice();return s[2]=e[o].name,s[3]=e[o].href,s}function ye(r,e,o){const s=r.slice();return s[6]=e[o],s}function De(r){let e,o,s;return o=new Ke({props:{text:r[1]}}),{c(){e=h("div"),Oe(o.$$.fragment),this.h()},l(l){e=_(l,"DIV",{class:!0});var i=d(e);He(o.$$.fragment,i),i.forEach(c),this.h()},h(){m(e,"class","mb-8 md:mb-12 md:mt-5")},m(l,i){Q(l,e,i),Ne(o,e,null),s=!0},p(l,i){const f={};i&2&&(f.text=l[1]),o.$set(f)},i(l){s||(ee(o.$$.fragment,l),s=!0)},o(l){he(o.$$.fragment,l),s=!1},d(l){l&&c(e),Te(o)}}}function Ie(r){let e,o,s=r[6]+"",l;return{c(){e=h("p"),o=y("- "),l=y(s),this.h()},l(i){e=_(i,"P",{class:!0});var f=d(e);o=D(f,"- "),l=D(f,s),f.forEach(c),this.h()},h(){m(e,"class","dark:text-slate-300")},m(i,f){Q(i,e,f),a(e,o),a(e,l)},p(i,f){f&1&&s!==(s=i[6]+"")&&G(l,s)},d(i){i&&c(e)}}}function $e(r){let e,o,s,l=r[2]+"",i,f,v;return{c(){e=h("p"),o=y("- "),s=h("a"),i=y(l),v=k(),this.h()},l(b){e=_(b,"P",{class:!0});var u=d(e);o=D(u,"- "),s=_(u,"A",{href:!0,target:!0,class:!0});var I=d(s);i=D(I,l),I.forEach(c),v=q(u),u.forEach(c),this.h()},h(){m(s,"href",f=r[3]),m(s,"target","_blank"),m(s,"class","link"),m(e,"class","dark:text-slate-300")},m(b,u){Q(b,e,u),a(e,o),a(e,s),a(s,i),a(e,v)},p(b,u){u&1&&l!==(l=b[2]+"")&&G(i,l),u&1&&f!==(f=b[3])&&m(s,"href",f)},d(b){b&&c(e)}}}function je(r){let e,o,s,l,i,f=r[0].name+"",v,b,u,I,w,te,le,B,z=r[0].description+"",M,se,C,L,ae,ne,U,J=r[0].goal+"",R,oe,O,K,re,ie,H,ce,N,j,fe,ue,T,$;document.title=e=`\r 2 | `+r[0].name+` | Locutionis - Petit r\xE9f\xE9rentiel des figures de style\r 3 | `;let p=r[1]&&De(r),A=r[0].examples,g=[];for(let t=0;t{p=null}),Qe()),(!$||E&1)&&f!==(f=t[0].name+"")&&G(v,f),(!$||E&1)&&z!==(z=t[0].description+"")&&G(M,z),(!$||E&1)&&J!==(J=t[0].goal+"")&&G(R,J),E&1){A=t[0].examples;let n;for(n=0;n{"definition"in i&&o(0,l=i.definition)},r.$$.update=()=>{r.$$.dirty&1&&o(1,[s]=l.examples,s)},[l,s]}class Je extends Se{constructor(e){super();Pe(this,e,Ae,je,Ce,{definition:0})}}export{Je as default,ze as load}; 6 | -------------------------------------------------------------------------------- /docs/_app/pages/glossary/index.svelte-690b5130.js: -------------------------------------------------------------------------------- 1 | import{S as N,i as P,s as U,e as v,t as q,k as I,c as x,a as T,h as A,d as m,m as V,b as p,g as y,F as b,j as B,G as D,w as S,x as z,y as F,q as k,o as w,B as H,n as j,p as J,K as ee,V as M,J as W,L as te,N as re,W as ne,X as se,l as X,U as le,Y as ae}from"../../chunks/vendor-b3ebdad0.js";import{g as ie}from"../../chunks/api-d72c80f5.js";import{b as Y}from"../../chunks/paths-396f020f.js";function oe(o){let e,n,t=o[0].name+"",r,c,l,f,s=o[0].description+"",a;return{c(){e=v("div"),n=v("a"),r=q(t),l=I(),f=v("p"),a=q(s),this.h()},l(h){e=x(h,"DIV",{class:!0});var i=T(e);n=x(i,"A",{href:!0,class:!0});var d=T(n);r=A(d,t),d.forEach(m),l=V(i),f=x(i,"P",{class:!0});var _=T(f);a=A(_,s),_.forEach(m),i.forEach(m),this.h()},h(){p(n,"href",c=Y+"/glossary/"+o[0].name),p(n,"class","tracking-wide link"),p(f,"class","text-sm text-gray-600 truncate dark:text-slate-400"),p(e,"class","max-w-lg")},m(h,i){y(h,e,i),b(e,n),b(n,r),b(e,l),b(e,f),b(f,a)},p(h,[i]){i&1&&t!==(t=h[0].name+"")&&B(r,t),i&1&&c!==(c=Y+"/glossary/"+h[0].name)&&p(n,"href",c),i&1&&s!==(s=h[0].description+"")&&B(a,s)},i:D,o:D,d(h){h&&m(e)}}}function ce(o,e,n){let{definition:t}=e;return o.$$set=r=>{"definition"in r&&n(0,t=r.definition)},[t]}class fe extends N{constructor(e){super();P(this,e,ce,oe,U,{definition:0})}}function O(o,e,n){const t=o.slice();return t[2]=e[n],t}function Q(o){let e,n;return e=new fe({props:{definition:o[2]}}),{c(){S(e.$$.fragment)},l(t){z(e.$$.fragment,t)},m(t,r){F(e,t,r),n=!0},p(t,r){const c={};r&2&&(c.definition=t[2]),e.$set(c)},i(t){n||(k(e.$$.fragment,t),n=!0)},o(t){w(e.$$.fragment,t),n=!1},d(t){H(e,t)}}}function ue(o){let e,n,t=o[0].toUpperCase()+"",r,c,l,f,s=o[1],a=[];for(let i=0;iw(a[i],1,1,()=>{a[i]=null});return{c(){e=v("div"),n=v("h2"),r=q(t),c=I(),l=v("div");for(let i=0;i{"key"in c&&n(0,t=c.key),"definitions"in c&&n(1,r=c.definitions)},[t,r]}class de extends N{constructor(e){super();P(this,e,he,ue,U,{key:0,definitions:1})}}function _e(o){let e,n,t;return{c(){e=v("input"),this.h()},l(r){e=x(r,"INPUT",{type:!0,class:!0,placeholder:!0}),this.h()},h(){p(e,"type","text"),p(e,"class","w-full px-2 py-1 border-2 rounded-lg border-primary/50 focus:outline-none focus:border-primary dark:text-slate-100 dark:bg-gray-800"),p(e,"placeholder","Chercher une figure de style ...")},m(r,c){y(r,e,c),M(e,o[0]),n||(t=[W(e,"input",o[2]),W(e,"keyup",o[3])],n=!0)},p(r,[c]){c&1&&e.value!==r[0]&&M(e,r[0])},i:D,o:D,d(r){r&&m(e),n=!1,te(t)}}}function me(o,e,n){const t=re();let{searchText:r=""}=e;function c(){r=this.value,n(0,r)}const l=()=>t("searchText",{searchText:r});return o.$$set=f=>{"searchText"in f&&n(0,r=f.searchText)},[r,t,c,l]}class pe extends N{constructor(e){super();P(this,e,me,_e,U,{searchText:0})}}function R(o,e,n){const t=o.slice();return t[5]=e[n][0],t[1]=e[n][1],t}function ge(o){let e,n;return{c(){e=v("p"),n=q("Aucun r\xE9sultat pour votre recherche"),this.h()},l(t){e=x(t,"P",{class:!0});var r=T(e);n=A(r,"Aucun r\xE9sultat pour votre recherche"),r.forEach(m),this.h()},h(){p(e,"class","text-xl font-semibold tracking-wide text-center text-gray-400")},m(t,r){y(t,e,r),b(e,n)},p:D,i:D,o:D,d(t){t&&m(e)}}}function ye(o){let e,n,t=o[2],r=[];for(let l=0;lw(r[l],1,1,()=>{r[l]=null});return{c(){e=v("div");for(let l=0;lse(l,"searchText",_));const L=[ye,ge],$=[];function K(u,g){return u[2].length>0?0:1}return a=K(o),h=$[a]=L[a](o),{c(){e=I(),n=v("h1"),t=q("Glossaire"),r=I(),c=v("div"),S(l.$$.fragment),s=I(),h.c(),i=X(),this.h()},l(u){le('[data-svelte="svelte-6g3xz8"]',document.head).forEach(m),e=V(u),n=x(u,"H1",{class:!0});var G=T(n);t=A(G,"Glossaire"),G.forEach(m),r=V(u),c=x(u,"DIV",{class:!0});var C=T(c);z(l.$$.fragment,C),C.forEach(m),s=V(u),h.l(u),i=X(),this.h()},h(){document.title="Glossaire | Locutionis - Petit r\xE9f\xE9rentiel des figures de style",p(n,"class","mb-3 text-2xl font-extrabold tracking-tight md:text-4xl sm:text-center text-primary"),p(c,"class","container my-5 md:my-8")},m(u,g){y(u,e,g),y(u,n,g),b(n,t),y(u,r,g),y(u,c,g),F(l,c,null),y(u,s,g),$[a].m(u,g),y(u,i,g),d=!0},p(u,[g]){const G={};!f&&g&1&&(f=!0,G.searchText=u[0],ae(()=>f=!1)),l.$set(G);let C=a;a=K(u),a===C?$[a].p(u,g):(j(),w($[C],1,1,()=>{$[C]=null}),J(),h=$[a],h?h.p(u,g):(h=$[a]=L[a](u),h.c()),k(h,1),h.m(i.parentNode,i))},i(u){d||(k(l.$$.fragment,u),k(h),d=!0)},o(u){w(l.$$.fragment,u),w(h),d=!1},d(u){u&&m(e),u&&m(n),u&&m(r),u&&m(c),H(l),u&&m(s),$[a].d(u),u&&m(i)}}}async function we(){return{props:{definitions:ie()}}}function ve(o,e,n){let t,r,{definitions:c=[]}=e,{searchText:l=""}=e;function f(s){l=s,n(0,l)}return o.$$set=s=>{"definitions"in s&&n(1,c=s.definitions),"searchText"in s&&n(0,l=s.searchText)},o.$$.update=()=>{o.$$.dirty&2&&n(3,t=c.reduce((s,a)=>{var i;const h=a.name[0].toLocaleLowerCase().normalize("NFD").replace(/[\u0300-\u036f]/g,"");return s.set(h,[...(i=s.get(h))!=null?i:[],a])},new Map)),o.$$.dirty&9&&n(2,r=Array.from(t.entries()).map(([s,a])=>{const h=a.filter(i=>{const d=l.toLocaleLowerCase();return i.name.toLocaleLowerCase().includes(d)});return[s,h]}).filter(([s,a])=>a.length>0))},[l,c,r,t,f]}class Ee extends N{constructor(e){super();P(this,e,ve,be,U,{definitions:1,searchText:0})}}export{Ee as default,we as load}; 2 | -------------------------------------------------------------------------------- /docs/_app/chunks/vendor-b3ebdad0.js: -------------------------------------------------------------------------------- 1 | function h(){}function I(t,n){for(const e in n)t[e]=n[e];return t}function z(t){return t()}function M(){return Object.create(null)}function b(t){t.forEach(z)}function F(t){return typeof t=="function"}function H(t,n){return t!=t?n==n:t!==n||t&&typeof t=="object"||typeof t=="function"}function W(t){return Object.keys(t).length===0}function G(t,...n){if(t==null)return h;const e=t.subscribe(...n);return e.unsubscribe?()=>e.unsubscribe():e}function st(t,n,e){t.$$.on_destroy.push(G(n,e))}function lt(t,n,e,i){if(t){const r=B(t,n,e,i);return t[0](r)}}function B(t,n,e,i){return t[1]&&i?I(e.ctx.slice(),t[1](i(n))):e.ctx}function ft(t,n,e,i){if(t[2]&&i){const r=t[2](i(e));if(n.dirty===void 0)return r;if(typeof r=="object"){const l=[],o=Math.max(n.dirty.length,r.length);for(let u=0;u32){const n=[],e=t.ctx.length/32;for(let i=0;i>1);e(r)<=i?t=r+1:n=r}return t}function R(t){if(t.hydrate_init)return;t.hydrate_init=!0;let n=t.childNodes;if(t.nodeName==="HEAD"){const c=[];for(let s=0;s0&&n[e[r]].claim_order<=s?r+1:Q(1,r,g=>n[e[g]].claim_order,s))-1;i[c]=e[a]+1;const f=a+1;e[f]=c,r=Math.max(f,r)}const l=[],o=[];let u=n.length-1;for(let c=e[r]+1;c!=0;c=i[c-1]){for(l.push(n[c-1]);u>=c;u--)o.push(n[u]);u--}for(;u>=0;u--)o.push(n[u]);l.reverse(),o.sort((c,s)=>c.claim_order-s.claim_order);for(let c=0,s=0;c=l[s].claim_order;)s++;const a=st.removeEventListener(n,e,i)}function bt(t,n,e){e==null?t.removeAttribute(n):t.getAttribute(n)!==e&&t.setAttribute(n,e)}function Y(t){return Array.from(t.childNodes)}function Z(t){t.claim_info===void 0&&(t.claim_info={last_index:0,total_claimed:0})}function L(t,n,e,i,r=!1){Z(t);const l=(()=>{for(let o=t.claim_info.last_index;o=0;o--){const u=t[o];if(n(u)){const c=e(u);return c===void 0?t.splice(o,1):t[o]=c,r?c===void 0&&t.claim_info.last_index--:t.claim_info.last_index=o,u}}return i()})();return l.claim_order=t.claim_info.total_claimed,t.claim_info.total_claimed+=1,l}function tt(t,n,e,i){return L(t,r=>r.nodeName===n,r=>{const l=[];for(let o=0;or.removeAttribute(o))},()=>i(n))}function gt(t,n,e){return tt(t,n,e,X)}function nt(t,n){return L(t,e=>e.nodeType===3,e=>{const i=""+n;if(e.data.startsWith(i)){if(e.data.length!==i.length)return e.splitText(i.length)}else e.data=i},()=>N(n),!0)}function xt(t){return nt(t," ")}function $t(t,n){n=""+n,t.wholeText!==n&&(t.data=n)}function Et(t,n){t.value=n==null?"":n}function wt(t,n,e,i){e===null?t.style.removeProperty(n):t.style.setProperty(n,e,i?"important":"")}function vt(t,n){for(let e=0;e{const i=t.$$.callbacks[n];if(i){const r=et(n,e);i.slice().forEach(l=>{l.call(t,r)})}}}function Ct(t,n){v().$$.context.set(t,n)}const m=[],T=[],$=[],S=[],O=Promise.resolve();let A=!1;function P(){A||(A=!0,O.then(D))}function qt(){return P(),O}function j(t){$.push(t)}function Mt(t){S.push(t)}const k=new Set;let x=0;function D(){const t=y;do{for(;x{E.delete(t),i&&(e&&t.d(1),i())}),t.o(n)}}function Lt(t,n){const e={},i={},r={$$scope:1};let l=t.length;for(;l--;){const o=t[l],u=n[l];if(u){for(const c in o)c in u||(i[c]=1);for(const c in u)r[c]||(e[c]=u[c],r[c]=1);t[l]=u}else for(const c in o)r[c]=1}for(const o in i)o in e||(e[o]=void 0);return e}function Ot(t){return typeof t=="object"&&t!==null?t:{}}function Pt(t,n,e){const i=t.$$.props[n];i!==void 0&&(t.$$.bound[i]=e,e(t.$$.ctx[i]))}function Dt(t){t&&t.c()}function It(t,n){t&&t.l(n)}function ct(t,n,e,i){const{fragment:r,on_mount:l,on_destroy:o,after_update:u}=t.$$;r&&r.m(n,e),i||j(()=>{const c=l.map(z).filter(F);o?o.push(...c):b(c),t.$$.on_mount=[]}),u.forEach(j)}function ot(t,n){const e=t.$$;e.fragment!==null&&(b(e.on_destroy),e.fragment&&e.fragment.d(n),e.on_destroy=e.fragment=null,e.ctx=[])}function ut(t,n){t.$$.dirty[0]===-1&&(m.push(t),P(),t.$$.dirty.fill(0)),t.$$.dirty[n/31|0]|=1<{const q=C.length?C[0]:g;return s.ctx&&r(s.ctx[f],s.ctx[f]=q)&&(!s.skip_bound&&s.bound[f]&&s.bound[f](q),a&&ut(t,f)),g}):[],s.update(),a=!0,b(s.before_update),s.fragment=i?i(s.ctx):!1,n.target){if(n.hydrate){J();const f=Y(n.target);s.fragment&&s.fragment.l(f),f.forEach(V)}else s.fragment&&s.fragment.c();n.intro&&rt(t.$$.fragment),ct(t,n.target,n.anchor,n.customElement),K(),D()}p(c)}class Ht{$destroy(){ot(this,1),this.$destroy=h}$on(n,e){const i=this.$$.callbacks[n]||(this.$$.callbacks[n]=[]);return i.push(e),()=>{const r=i.indexOf(e);r!==-1&&i.splice(r,1)}}$set(n){this.$$set&&!W(n)&&(this.$$.skip_bound=!0,this.$$set(n),this.$$.skip_bound=!1)}}const _=[];function Wt(t,n=h){let e;const i=new Set;function r(u){if(H(t,u)&&(t=u,e)){const c=!_.length;for(const s of i)s[1](),_.push(s,t);if(c){for(let s=0;s<_.length;s+=2)_[s][0](_[s+1]);_.length=0}}}function l(u){r(u(t))}function o(u,c=h){const s=[u,c];return i.add(s),i.size===1&&(e=n(r)||h),u(t),()=>{i.delete(s),i.size===0&&(e(),e=null)}}return{set:r,update:l,subscribe:o}}export{Ot as A,ot as B,I as C,Wt as D,qt as E,U as F,h as G,j as H,vt as I,yt as J,ht as K,b as L,st as M,Nt as N,kt as O,lt as P,at as Q,dt as R,Ht as S,ft as T,St as U,Et as V,T as W,Pt as X,Mt as Y,Y as a,bt as b,gt as c,V as d,X as e,wt as f,_t as g,nt as h,Ft as i,$t as j,mt as k,pt as l,xt as m,Tt as n,Bt as o,zt as p,rt as q,Ct as r,H as s,N as t,jt as u,At as v,Dt as w,It as x,ct as y,Lt as z}; 2 | -------------------------------------------------------------------------------- /docs/_app/pages/__layout.svelte-4cba5834.js: -------------------------------------------------------------------------------- 1 | import{S as le,i as se,s as ae,e as c,t as C,k as P,c as u,a as f,d as o,h as M,m as L,b as n,g as q,F as a,G as z,D as Ve,j as De,H as Se,I as ve,J as K,K as Ie,L as we,M as Te,N as Ae,O as Pe,w as ie,x as ce,y as ue,q as J,o as Q,B as fe,n as Le,p as Ne,P as Oe,Q as Be,R as Ce,T as Me}from"../chunks/vendor-b3ebdad0.js";import{b as he}from"../chunks/paths-396f020f.js";function je(r){let e,l,t,s,d,_,h,p,m,i,b,y,w;return{c(){e=c("footer"),l=c("p"),t=c("a"),s=c("i"),d=C(` 2 | Voir sur GitHub`),_=C(` 3 | 4 | - 5 | 6 | `),h=c("a"),p=C("Signaler une erreur"),m=P(),i=c("p"),b=C("Cr\xE9\xE9 par "),y=c("a"),w=C("Pierre Bouillon"),this.h()},l(N){e=u(N,"FOOTER",{class:!0});var S=f(e);l=u(S,"P",{class:!0});var T=f(l);t=u(T,"A",{href:!0,class:!0});var V=f(t);s=u(V,"I",{class:!0}),f(s).forEach(o),d=M(V,` 7 | Voir sur GitHub`),V.forEach(o),_=M(T,` 8 | 9 | - 10 | 11 | `),h=u(T,"A",{href:!0,class:!0});var G=f(h);p=M(G,"Signaler une erreur"),G.forEach(o),T.forEach(o),m=L(S),i=u(S,"P",{class:!0});var j=f(i);b=M(j,"Cr\xE9\xE9 par "),y=u(j,"A",{href:!0,class:!0});var H=f(y);w=M(H,"Pierre Bouillon"),H.forEach(o),j.forEach(o),S.forEach(o),this.h()},h(){n(s,"class","bi bi-github"),n(t,"href","https://github.com/pbouillon/locutionis"),n(t,"class","text-primary"),n(h,"href","https://github.com/pBouillon/locutionis/issues/new/choose"),n(h,"class","text-primary"),n(l,"class","flex gap-1 text-xs text-slate-600 dark:text-slate-300"),n(y,"href","pbouillon.github.io"),n(y,"class","text-primary"),n(i,"class","text-xs text-slate-600 dark:text-slate-300"),n(e,"class","flex flex-col items-center gap-2 py-3 border-t md:mx-80 dark:border-slate-600")},m(N,S){q(N,e,S),a(e,l),a(l,t),a(t,s),a(t,d),a(l,_),a(l,h),a(h,p),a(e,m),a(e,i),a(i,b),a(i,y),a(y,w)},p:z,i:z,o:z,d(N){N&&o(e)}}}class Ge extends le{constructor(e){super();se(this,e,null,je,ae,{})}}function He(){var t;const r=(t=localStorage.theme)!=null?t:"light";ne(r);const{subscribe:e,update:l}=Ve(r);return{subscribe:e,set:s=>l(()=>ne(s)),toggle:()=>l(s=>ne(s==="light"?"dark":"light")),update:l}}function ne(r){return localStorage.theme=r,r==="dark"?document.documentElement.classList.add("dark"):document.documentElement.classList.remove("dark"),r}const te=He();function ke(r,e,l){const t=r.slice();return t[7]=e[l].href,t[8]=e[l].label,t}function xe(r){let e,l,t=r[8]+"",s,d,_;return{c(){e=c("li"),l=c("a"),s=C(t),_=P(),this.h()},l(h){e=u(h,"LI",{});var p=f(e);l=u(p,"A",{href:!0,class:!0});var m=f(l);s=M(m,t),m.forEach(o),_=L(p),p.forEach(o),this.h()},h(){n(l,"href",d=r[7]),n(l,"class","text-lg tracking-wide decoration-2 decoration-primary dark:text-slate-300")},m(h,p){q(h,e,p),a(e,l),a(l,s),a(e,_)},p(h,p){p&1&&t!==(t=h[8]+"")&&De(s,t),p&1&&d!==(d=h[7])&&n(l,"href",d)},d(h){h&&o(e)}}}function Ue(r){let e,l;return{c(){e=c("i"),l=C(` 12 | Sombre`),this.h()},l(t){e=u(t,"I",{class:!0}),f(e).forEach(o),l=M(t,` 13 | Sombre`),this.h()},h(){n(e,"class","bi bi-moon-stars")},m(t,s){q(t,e,s),q(t,l,s)},d(t){t&&o(e),t&&o(l)}}}function Fe(r){let e,l;return{c(){e=c("i"),l=C(` 14 | Clair`),this.h()},l(t){e=u(t,"I",{class:!0}),f(e).forEach(o),l=M(t,` 15 | Clair`),this.h()},h(){n(e,"class","bi bi-sun")},m(t,s){q(t,e,s),q(t,l,s)},d(t){t&&o(e),t&&o(l)}}}function qe(r){let e,l,t,s,d,_,h,p,m,i,b,y,w,N,S,T,V,G,j,H,A,U,F,E,$,g,D,v=r[0],I=[];for(let x=0;xr[4].call(A)),n(T,"class","relative flex items-center p-2 font-semibold rounded-lg shadow-sm ring-1 ring-gray-400"),n(y,"class","flex items-center justify-between"),n(b,"class","pt-6 mt-6 border-t border-gray-400"),n(s,"class","fixed w-full max-w-xs p-6 text-base font-semibold bg-white rounded-lg shadow-lg top-4 right-4 dark:border dark:border-gray-400 dark:bg-gray-800 text-slate-900"),n(e,"class","fixed inset-0 z-50 md:hidden")},m(x,B){q(x,e,B),a(e,l),a(e,t),a(e,s),a(s,d),a(d,_),a(_,h),a(s,p),a(s,m);for(let k=0;kl(2,t=i));let s=t;const d=Ae();let{links:_}=e;function h(){d("close")}function p(){s=Pe(this),l(1,s)}const m=()=>te.set(s);return r.$$set=i=>{"links"in i&&l(0,_=i.links)},[_,s,t,h,p,m]}class ze extends le{constructor(e){super();se(this,e,Re,qe,ae,{links:0})}}function Ee(r,e,l){const t=r.slice();return t[5]=e[l].href,t[6]=e[l].label,t}function $e(r){let e,l=r[6]+"",t,s;return{c(){e=c("a"),t=C(l),this.h()},l(d){e=u(d,"A",{href:!0,class:!0});var _=f(e);t=M(_,l),_.forEach(o),this.h()},h(){n(e,"href",s=r[5]),n(e,"class","text-lg tracking-wide decoration-2 decoration-primary hover:underline dark:text-slate-300")},m(d,_){q(d,e,_),a(e,t)},p:z,d(d){d&&o(e)}}}function ye(r){let e,l;return e=new ze({props:{links:r[2]}}),e.$on("close",r[4]),{c(){ie(e.$$.fragment)},l(t){ce(e.$$.fragment,t)},m(t,s){ue(e,t,s),l=!0},p:z,i(t){l||(J(e.$$.fragment,t),l=!0)},o(t){Q(e.$$.fragment,t),l=!1},d(t){fe(e,t)}}}function Je(r){let e,l,t,s,d,_,h,p,m,i,b,y,w,N,S,T,V,G,j,H,A,U,F=r[2],E=[];for(let g=0;g{$=null}),Ne())},i(g){H||(J($),H=!0)},o(g){Q($),H=!1},d(g){g&&o(e),Ie(E,g),$&&$.d(),A=!1,we(U)}}}function Ke(r,e,l){let t;Te(r,te,p=>l(1,t=p));let s=!1;const d=[{href:`${he}/`,label:"Accueil"},{href:`${he}/glossary`,label:"Glossaire"},{href:"https://github.com/pbouillon/locutionis",label:"GitHub"}];return[s,t,d,()=>l(0,s=!0),()=>l(0,s=!1)]}class Qe extends le{constructor(e){super();se(this,e,Ke,Je,ae,{})}}function We(r){let e,l,t,s,d,_,h;l=new Qe({});const p=r[1].default,m=Oe(p,r,r[0],null);return _=new Ge({}),{c(){e=c("div"),ie(l.$$.fragment),t=P(),s=c("main"),m&&m.c(),d=P(),ie(_.$$.fragment),this.h()},l(i){e=u(i,"DIV",{class:!0});var b=f(e);ce(l.$$.fragment,b),t=L(b),s=u(b,"MAIN",{class:!0});var y=f(s);m&&m.l(y),y.forEach(o),d=L(b),ce(_.$$.fragment,b),b.forEach(o),this.h()},h(){n(s,"class","flex-grow px-5 pt-2 my-5"),n(e,"class","flex flex-col min-h-screen dark:bg-gray-900")},m(i,b){q(i,e,b),ue(l,e,null),a(e,t),a(e,s),m&&m.m(s,null),a(e,d),ue(_,e,null),h=!0},p(i,[b]){m&&m.p&&(!h||b&1)&&Be(m,p,i,i[0],h?Me(p,i[0],b,null):Ce(i[0]),null)},i(i){h||(J(l.$$.fragment,i),J(m,i),J(_.$$.fragment,i),h=!0)},o(i){Q(l.$$.fragment,i),Q(m,i),Q(_.$$.fragment,i),h=!1},d(i){i&&o(e),fe(l),m&&m.d(i),fe(_)}}}function Xe(r,e,l){let{$$slots:t={},$$scope:s}=e;return r.$$set=d=>{"$$scope"in d&&l(0,s=d.$$scope)},[s,t]}class et extends le{constructor(e){super();se(this,e,Xe,We,ae,{})}}export{et as default}; 18 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Apache License 2 | Version 2.0, January 2004 3 | http://www.apache.org/licenses/ 4 | 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 6 | 7 | 1. Definitions. 8 | 9 | "License" shall mean the terms and conditions for use, reproduction, 10 | and distribution as defined by Sections 1 through 9 of this document. 11 | 12 | "Licensor" shall mean the copyright owner or entity authorized by 13 | the copyright owner that is granting the License. 14 | 15 | "Legal Entity" shall mean the union of the acting entity and all 16 | other entities that control, are controlled by, or are under common 17 | control with that entity. For the purposes of this definition, 18 | "control" means (i) the power, direct or indirect, to cause the 19 | direction or management of such entity, whether by contract or 20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 21 | outstanding shares, or (iii) beneficial ownership of such entity. 22 | 23 | "You" (or "Your") shall mean an individual or Legal Entity 24 | exercising permissions granted by this License. 25 | 26 | "Source" form shall mean the preferred form for making modifications, 27 | including but not limited to software source code, documentation 28 | source, and configuration files. 29 | 30 | "Object" form shall mean any form resulting from mechanical 31 | transformation or translation of a Source form, including but 32 | not limited to compiled object code, generated documentation, 33 | and conversions to other media types. 34 | 35 | "Work" shall mean the work of authorship, whether in Source or 36 | Object form, made available under the License, as indicated by a 37 | copyright notice that is included in or attached to the work 38 | (an example is provided in the Appendix below). 39 | 40 | "Derivative Works" shall mean any work, whether in Source or Object 41 | form, that is based on (or derived from) the Work and for which the 42 | editorial revisions, annotations, elaborations, or other modifications 43 | represent, as a whole, an original work of authorship. For the purposes 44 | of this License, Derivative Works shall not include works that remain 45 | separable from, or merely link (or bind by name) to the interfaces of, 46 | the Work and Derivative Works thereof. 47 | 48 | "Contribution" shall mean any work of authorship, including 49 | the original version of the Work and any modifications or additions 50 | to that Work or Derivative Works thereof, that is intentionally 51 | submitted to Licensor for inclusion in the Work by the copyright owner 52 | or by an individual or Legal Entity authorized to submit on behalf of 53 | the copyright owner. For the purposes of this definition, "submitted" 54 | means any form of electronic, verbal, or written communication sent 55 | to the Licensor or its representatives, including but not limited to 56 | communication on electronic mailing lists, source code control systems, 57 | and issue tracking systems that are managed by, or on behalf of, the 58 | Licensor for the purpose of discussing and improving the Work, but 59 | excluding communication that is conspicuously marked or otherwise 60 | designated in writing by the copyright owner as "Not a Contribution." 61 | 62 | "Contributor" shall mean Licensor and any individual or Legal Entity 63 | on behalf of whom a Contribution has been received by Licensor and 64 | subsequently incorporated within the Work. 65 | 66 | 2. Grant of Copyright License. Subject to the terms and conditions of 67 | this License, each Contributor hereby grants to You a perpetual, 68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 69 | copyright license to reproduce, prepare Derivative Works of, 70 | publicly display, publicly perform, sublicense, and distribute the 71 | Work and such Derivative Works in Source or Object form. 72 | 73 | 3. Grant of Patent License. Subject to the terms and conditions of 74 | this License, each Contributor hereby grants to You a perpetual, 75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 76 | (except as stated in this section) patent license to make, have made, 77 | use, offer to sell, sell, import, and otherwise transfer the Work, 78 | where such license applies only to those patent claims licensable 79 | by such Contributor that are necessarily infringed by their 80 | Contribution(s) alone or by combination of their Contribution(s) 81 | with the Work to which such Contribution(s) was submitted. If You 82 | institute patent litigation against any entity (including a 83 | cross-claim or counterclaim in a lawsuit) alleging that the Work 84 | or a Contribution incorporated within the Work constitutes direct 85 | or contributory patent infringement, then any patent licenses 86 | granted to You under this License for that Work shall terminate 87 | as of the date such litigation is filed. 88 | 89 | 4. Redistribution. You may reproduce and distribute copies of the 90 | Work or Derivative Works thereof in any medium, with or without 91 | modifications, and in Source or Object form, provided that You 92 | meet the following conditions: 93 | 94 | (a) You must give any other recipients of the Work or 95 | Derivative Works a copy of this License; and 96 | 97 | (b) You must cause any modified files to carry prominent notices 98 | stating that You changed the files; and 99 | 100 | (c) You must retain, in the Source form of any Derivative Works 101 | that You distribute, all copyright, patent, trademark, and 102 | attribution notices from the Source form of the Work, 103 | excluding those notices that do not pertain to any part of 104 | the Derivative Works; and 105 | 106 | (d) If the Work includes a "NOTICE" text file as part of its 107 | distribution, then any Derivative Works that You distribute must 108 | include a readable copy of the attribution notices contained 109 | within such NOTICE file, excluding those notices that do not 110 | pertain to any part of the Derivative Works, in at least one 111 | of the following places: within a NOTICE text file distributed 112 | as part of the Derivative Works; within the Source form or 113 | documentation, if provided along with the Derivative Works; or, 114 | within a display generated by the Derivative Works, if and 115 | wherever such third-party notices normally appear. The contents 116 | of the NOTICE file are for informational purposes only and 117 | do not modify the License. You may add Your own attribution 118 | notices within Derivative Works that You distribute, alongside 119 | or as an addendum to the NOTICE text from the Work, provided 120 | that such additional attribution notices cannot be construed 121 | as modifying the License. 122 | 123 | You may add Your own copyright statement to Your modifications and 124 | may provide additional or different license terms and conditions 125 | for use, reproduction, or distribution of Your modifications, or 126 | for any such Derivative Works as a whole, provided Your use, 127 | reproduction, and distribution of the Work otherwise complies with 128 | the conditions stated in this License. 129 | 130 | 5. Submission of Contributions. Unless You explicitly state otherwise, 131 | any Contribution intentionally submitted for inclusion in the Work 132 | by You to the Licensor shall be under the terms and conditions of 133 | this License, without any additional terms or conditions. 134 | Notwithstanding the above, nothing herein shall supersede or modify 135 | the terms of any separate license agreement you may have executed 136 | with Licensor regarding such Contributions. 137 | 138 | 6. Trademarks. This License does not grant permission to use the trade 139 | names, trademarks, service marks, or product names of the Licensor, 140 | except as required for reasonable and customary use in describing the 141 | origin of the Work and reproducing the content of the NOTICE file. 142 | 143 | 7. Disclaimer of Warranty. Unless required by applicable law or 144 | agreed to in writing, Licensor provides the Work (and each 145 | Contributor provides its Contributions) on an "AS IS" BASIS, 146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 147 | implied, including, without limitation, any warranties or conditions 148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 149 | PARTICULAR PURPOSE. You are solely responsible for determining the 150 | appropriateness of using or redistributing the Work and assume any 151 | risks associated with Your exercise of permissions under this License. 152 | 153 | 8. Limitation of Liability. In no event and under no legal theory, 154 | whether in tort (including negligence), contract, or otherwise, 155 | unless required by applicable law (such as deliberate and grossly 156 | negligent acts) or agreed to in writing, shall any Contributor be 157 | liable to You for damages, including any direct, indirect, special, 158 | incidental, or consequential damages of any character arising as a 159 | result of this License or out of the use or inability to use the 160 | Work (including but not limited to damages for loss of goodwill, 161 | work stoppage, computer failure or malfunction, or any and all 162 | other commercial damages or losses), even if such Contributor 163 | has been advised of the possibility of such damages. 164 | 165 | 9. Accepting Warranty or Additional Liability. While redistributing 166 | the Work or Derivative Works thereof, You may choose to offer, 167 | and charge a fee for, acceptance of support, warranty, indemnity, 168 | or other liability obligations and/or rights consistent with this 169 | License. However, in accepting such obligations, You may act only 170 | on Your own behalf and on Your sole responsibility, not on behalf 171 | of any other Contributor, and only if You agree to indemnify, 172 | defend, and hold each Contributor harmless for any liability 173 | incurred by, or claims asserted against, such Contributor by reason 174 | of your accepting any such warranty or additional liability. 175 | 176 | END OF TERMS AND CONDITIONS 177 | 178 | APPENDIX: How to apply the Apache License to your work. 179 | 180 | To apply the Apache License to your work, attach the following 181 | boilerplate notice, with the fields enclosed by brackets "[]" 182 | replaced with your own identifying information. (Don't include 183 | the brackets!) The text should be enclosed in the appropriate 184 | comment syntax for the file format. We also recommend that a 185 | file or class name and description of purpose be included on the 186 | same "printed page" as the copyright notice for easier 187 | identification within third-party archives. 188 | 189 | Copyright [yyyy] [name of copyright owner] 190 | 191 | Licensed under the Apache License, Version 2.0 (the "License"); 192 | you may not use this file except in compliance with the License. 193 | You may obtain a copy of the License at 194 | 195 | http://www.apache.org/licenses/LICENSE-2.0 196 | 197 | Unless required by applicable law or agreed to in writing, software 198 | distributed under the License is distributed on an "AS IS" BASIS, 199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 200 | See the License for the specific language governing permissions and 201 | limitations under the License. 202 | -------------------------------------------------------------------------------- /docs/_app/chunks/api-d72c80f5.js: -------------------------------------------------------------------------------- 1 | const s=[{name:"Antanaclase",description:` 2 | On parle d'antanaclase lorsque l'on emploie deux fois un m\xEAme mot mais avec 3 | un sens diff\xE9rent: on parle alors de polys\xE9mie (plusieurs sens). Si le mot 4 | n'est pas r\xE9p\xE9t\xE9 il est alors question d'antanaclase elliptique. 5 | `,goal:` 6 | Il s'agit d'une figure de style qui se pr\xEAte tr\xE8s bien aux jeux de mots, 7 | elle est donc fr\xE9quemment utilis\xE9e pour faire de l'humour. 8 | 9 | En dehors du c\xF4t\xE9 comique, elle permet de souligner le second sens du mot en 10 | surprenant le lecteur qui doit s'arr\xEAter un instant pour le saisir apr\xE8s 11 | avoir compris le premier. 12 | `,examples:["Le c\u0153ur a ses raisons que la raison ne conna\xEEt point.","Adieu, monsieur l'homme d'affaires, qui n'avez fait celles de personne.","Les \xE9tudiants, c'est comme le linge, quand il fait beau, \xE7a s\xE8che."],sources:[{name:"Wikip\xE9dia",href:"https://fr.wikipedia.org/wiki/Antanaclase"},{name:"Larousse",href:"https://www.larousse.fr/dictionnaires/francais/antanaclase/10911044"},{name:"La Culture G\xE9n\xE9rale",href:"https://www.laculturegenerale.com/antanaclase-diaphore-definition-exemples/"}]},{name:"Comparaison",description:` 13 | Une comparaison est la mise en relation de deux \xE9l\xE9ments diff\xE9rents 14 | partageant un point commun. Elle est constitu\xE9e d'un compar\xE9 (l'objet de 15 | la comparaison), d'un comparant (le 'th\xE8me' utilis\xE9 pour imager le compar\xE9) 16 | et d'un outil de comparaison (c'est ce qui met en liaison le compar\xE9 et le 17 | comparant). 18 | `,goal:` 19 | En mettant deux termes sur le m\xEAme plan litt\xE9raire, la comparaison permet de 20 | souligner leurs points communs pour imager ses propos. 21 | `,examples:["Et cette terre \xE9tait proche, et elle lui apparaissait comme un bouclier sur la mer sombre.","Tu es fait comme un rat!","Sa barbe \xE9tait d'argent comme un ruisseau d'avril."],sources:[{name:"Wikip\xE9dia",href:"https://fr.wikipedia.org/wiki/Comparaison_(rh\xE9torique)"},{name:"La langue fran\xE7aise",href:"https://www.lalanguefrancaise.com/linguistique/la-comparaison-figure-de-style"},{name:"alloprof",href:"https://www.alloprof.qc.ca/fr/eleves/bv/francais/la-comparaison-f1369"},{name:"Youtube - Point Culture",href:"https://youtu.be/ByDNEsBNf24?t=478"}]},{name:"\xC9panorthose",description:` 22 | L'\xE9panorthose est une figure de style qui consiste \xE0 corriger ses propres 23 | propos afin d'accentuer ce qu'il vient d'\xEAtre affirm\xE9, renfor\xE7ant ainsi le 24 | sentiment exprim\xE9. 25 | `,goal:` 26 | Il s'agit d'une figure de style souvent utilis\xE9e pour donner un sentiment de 27 | sinc\xE9rit\xE9 dans son discours. En se corrigeant, le locuteur donne l'impression 28 | de rechercher la pr\xE9cision. 29 | `,examples:["J'esp\xE8re, que dis-je ? Je suis s\xFBr qu'on vous rendra justice.","Votre prudence ou plut\xF4t votre l\xE2chet\xE9 nous ont perdu."],sources:[{name:"Wikip\xE9dia",href:"https://fr.wikipedia.org/wiki/\xC9panorthose"},{name:"Wiktionnaire",href:"https://fr.wiktionary.org/wiki/\xE9panorthose"}]},{name:"M\xE9taphore",description:` 30 | Une m\xE9taphore est similaire \xE0 une comparaison \xE0 la diff\xE9rence pr\xE8s qu'elle 31 | n'utilise pas d'outil de comparaison pour souligner le rapprochement de deux 32 | termes. C'est alors au lecteur d'essayer de deviner pourquoi l'auteur les a 33 | rapproch\xE9s pour cr\xE9er cette image. 34 | `,goal:` 35 | Le but de la m\xE9taphore est d'imager ses propos pour souligner l'intensit\xE9 36 | ou la connotation de ce qui est imag\xE9 en lui donnant le sens d'un autre mot 37 | ou expression. 38 | `,examples:["Il n'est plus que l'ombre de lui-m\xEAme.","Il me casse les pieds.","Il est mort dans la fleur de l'\xE2ge."],sources:[{name:"linternaute",href:"https://www.linternaute.fr/dictionnaire/fr/definition/metaphore/"},{name:"Wikip\xE9dia",href:"https://fr.wikipedia.org/wiki/M%C3%A9taphore"},{name:"Youtube - Point Culture",href:"https://youtu.be/ByDNEsBNf24?t=478"}]},{name:"M\xE9tonymie",description:` 39 | La m\xE9tonymie consiste en le remplacement d'un terme d\xE9signant un tout par un 40 | autre en d\xE9signant une partie. Le rapport entre les deux est implicite et, 41 | s'il n'est pris qu'au premier degr\xE9, la phrase devient alors incoh\xE9rente. 42 | `,goal:` 43 | Utiliser une m\xE9tonymie permet d'all\xE9ger la structure de la phrase comme par 44 | exemple dire "Je n'ai plus de batterie" au lieu de "Je n'ai plus d'\xE9nergie 45 | dans mon t\xE9l\xE9phone portable". 46 | 47 | Elle a aussi l'avantage d'englober toute la population d\xE9sign\xE9e et donc peut 48 | renforcer un argumentaire. Lors d'un d\xE9bat, si l'on d\xE9signe "les fran\xE7ais" 49 | au lieu de cibler la tranche de population, on donne alors l'impression que 50 | notre discours concerne l'enti\xE8ret\xE9 des habitants de France. 51 | `,examples:["Tu veux boire un verre ?","Je n'ai plus de batterie.","La France a obtenu une m\xE9daille d'or aux Jeux Olympiques."],sources:[{name:"linternaute",href:"https://www.linternaute.fr/dictionnaire/fr/definition/metonymie/"},{name:"Wikip\xE9dia",href:"https://fr.wikipedia.org/wiki/M%C3%A9tonymie"},{name:"Youtube - Point Culture",href:"https://youtu.be/ByDNEsBNf24?t=521"}]},{name:"Catachr\xE8se",description:` 52 | Une catachr\xE8se est l'utilisation d'un mot pour d\xE9signer autre chose que ce 53 | qu'il d\xE9fini initialement. Dans certains cas il s'agit d'une m\xE9taphore qui 54 | est pass\xE9 dans la langue courante (ex: les pieds d'une table). 55 | `,goal:` 56 | Une catachr\xE8se est utilis\xE9e la plupart du temps pour d\xE9signer quelque chose 57 | pour lequel la langue n'a pas de mot d\xE9finissant ce dont on veut parler. 58 | C'est par exemple le cas pour le "verre" lorsque l'on propose de "boire un 59 | verre": le fran\xE7ais n'a pas de mot pour d\xE9signer simplement le contenu d'un 60 | verre. 61 | `,examples:["J'ai ab\xEEm\xE9 la plume de mon stylo en appuyant trop fort.","Les ailes de cet avion sont sales !","Le pied de la table a \xE9t\xE9 rong\xE9 par les thermites."],sources:[{name:"Wikip\xE9dia",href:"https://fr.wikipedia.org/wiki/Catachr\xE8se"},{name:"Larousse",href:"https://www.larousse.fr/dictionnaires/francais/catachr%C3%A8se/13695"},{name:"Wiktionnaire",href:"https://fr.wiktionary.org/wiki/catachr%C3%A8see"}]},{name:"Chleuasme",description:` 62 | Le chleuasme est le fait de se d\xE9valoriser en faisant preuve de fausse 63 | modestie. 64 | `,goal:` 65 | En se critiquant, le locuteur cherche \xE0 s'attirer la sympathie de la 66 | personne qui l'\xE9coute. 67 | `,examples:["Je ne suis vraiment pas beau ce matin ...","Je ne ma\xEEtrise pas tr\xE8s bien le sujet mais je peux quand m\xEAme regarder."],sources:[{name:"Wikip\xE9dia",href:"https://fr.wikipedia.org/wiki/Chleuasme"}]},{name:"Hyperhypotaxe",description:` 68 | On parle d'hyperhypotaxe lorsqu'une phrase est construite avec un nombre 69 | excessif de pr\xE9positions. 70 | `,goal:` 71 | L'hyperhypotaxe permet souvent de mettre d\xE9mesur\xE9ment en avant les d\xE9tails 72 | d'un argumentaire, perdant ainsi la personne qui l'\xE9coute ou l'emp\xEAchant de 73 | formuler facilement un contre-argument, ces derniers n'en finissant pas. 74 | `,examples:[`Martial est fils de noble, puisque son p\xE8re est quasi-baron, \xE9tant donn\xE9 75 | que sa m\xE8re \xE9tait une fille Angenaux, qui \xE9taient reconnus comme ma\xEEtres 76 | des terres, et que sa belle-m\xE8re avait des accointances avec les De 77 | Bellot, \xE0 qui appartient le ch\xE2teau...`],sources:[{name:"Wikip\xE9dia",href:"https://fr.wikipedia.org/wiki/Hyperhypotaxe"},{name:"Wiktionnaire",href:"https://fr.wiktionary.org/wiki/hyperhypotaxe"},{name:"WebLettres",href:"https://www.weblettres.net/spip/article.php3?id_article=122"}]},{name:"Parataxe",description:` 78 | La parataxe consiste en la juxtaposition de deux mots ou phrases sans mots 79 | de liaison. Dans une phrase, cette derni\xE8re semblera alors coup\xE9 alors que 80 | dans le cadre de mots, ces derniers donneront une impression t\xE9l\xE9graphique. 81 | `,goal:` 82 | Puisque la relation entre les termes n'est pas d\xE9finie, l'utilisation de la 83 | parataxe fait sonner la seconde partie comme la cons\xE9quence de la premi\xE8re. 84 | `,examples:["Vous n'\xEAtes point gentilhomme, vous n'aurez pas ma fille.",`Il faisait beau. Le Soleil illuminait la pi\xE8ce. Au dehors, le chant des 85 | oiseaux r\xE9sonnait dans la clairi\xE8re.`],sources:[{name:"Wikip\xE9dia",href:"https://fr.wikipedia.org/wiki/Parataxe"},{name:"La Culture G\xE9n\xE9rale",href:"https://www.laculturegenerale.com/parataxe-definition-simple-exemples/"}]},{name:"Antonomase",description:` 86 | L'antonomase est lorsque l'on utilise un nom commun comme nom propre ou bien 87 | l'inverse. 88 | `,goal:` 89 | L'antonomase permet de souligner une aspect de ce que l'on d\xE9signe 90 | en l'assimilant \xE0 autre chose souvent connue pour une caract\xE9ristique 91 | sp\xE9cifique. 92 | `,examples:["J'irais acheter des sandwichs pour notre pique-nique de demain midi.","L'Arc de Triomphe a \xE9t\xE9 r\xE9nov\xE9.","Peux-tu me passer le Sopalin ?","Encore un rendez-vous amoureux ? Quel Don Juan !"],sources:[{name:"Wikip\xE9dia",href:"https://fr.wikipedia.org/wiki/Antonomase"},{name:"Larousse",href:"https://www.larousse.fr/dictionnaires/francais/antonomase/4354"},{name:"Youtube - Point Culture",href:"https://youtu.be/ByDNEsBNf24?t=1278"}]},{name:"Pr\xE9t\xE9rition",description:` 93 | La pr\xE9t\xE9rition consiste \xE0 parler de quelque chose juste apr\xE8s avoir annonc\xE9 94 | que nous n'allions pas le faire. 95 | `,goal:` 96 | L'emploi de la pr\xE9t\xE9rition permet d'aborder des sujets sensibles en 97 | d\xE9responsabilisant l'orateur. 98 | Elle est \xE9galement employ\xE9e lorsque l'auteur souhaite aborder un sujet qu'il 99 | se refuse \xE0 d\xE9crire. 100 | `,examples:["Je n'ai pas besoin de te rappeler que je dois envoyer ce document ce soir.","Je ne vous dirais pas que le co\xFBt de la vie est trop \xE9lev\xE9 (...)","Madame Y, pour ne pas la citer, (...)"],sources:[{name:"Wikip\xE9dia",href:"https://fr.wikipedia.org/wiki/Pr\xE9t\xE9rition"},{name:"La Culture G\xE9n\xE9rale",href:"https://www.laculturegenerale.com/preterition-definition-exemples/"}]},{name:"Litote",description:` 101 | La litote est une figure de style par laquelle on exprime l'inverse de ce 102 | que l'on souhaite faire comprendre. Elle peut \xE9galement \xEAtre exprim\xE9e par 103 | une double n\xE9gation. 104 | `,goal:` 105 | En en laissant entendre moins que ce que l'on veut, on renforce l'id\xE9e que 106 | l'on souhaite faire passer. Par exemple, dire qu'un repas n'\xE9tait "pas 107 | mauvais" signifie bien g\xE9n\xE9ralement qu'il \xE9tait tr\xE8s bon. 108 | `,examples:["Pas mauvais ce repas !","Vous n'\xEAtes pas sans savoir (...)","\xC7a n'\xE9tait pas le match du si\xE8cle."],sources:[{name:"Wikip\xE9dia",href:"https://fr.wikipedia.org/wiki/Litote"},{name:"Youtube - Point Culture",href:"https://youtu.be/ByDNEsBNf24?t=207"}]},{name:"Euph\xE9misme",description:` 109 | L'euph\xE9misme est le fait d'exprimer une id\xE9e en att\xE9nuant la r\xE9alit\xE9 en 110 | employant un mot moins fort. 111 | `,goal:` 112 | Le but de l'euph\xE9misme est d'adoucir des propos qui pourraient \xEAtre 113 | blessants ou choquant. Elle peut \xE9galement avoir un effet comique en \xE9tant 114 | utilis\xE9e de mani\xE8re sarcastique. 115 | `,examples:["La Russie a engag\xE9 une op\xE9ration militaire sp\xE9ciale en Ukraine.","Je ne roule pas sur l'or.","Il a pass\xE9 l'arme \xE0 gauche il y a trois ans."],sources:[{name:"Wikip\xE9dia",href:"https://fr.wikipedia.org/wiki/Euph\xE9misme"},{name:"Youtube - Point Culture",href:"https://youtu.be/ByDNEsBNf24?t=207"},{name:"Office qu\xE9b\xE9cois de la langue fran\xE7aise",href:"http://bdl.oqlf.gouv.qc.ca/bdl/gabarit_bdl.asp?id=3202"}]},{name:"M\xE9talepse",description:` 116 | Une m\xE9talepse est une figure de style dans laquelle on remplace la cause 117 | par la cons\xE9quence et inversement. 118 | `,goal:` 119 | La m\xE9talepse permet de passer sous silence une id\xE9e et de laisser 120 | le lecteur se repr\xE9senter ce qui est r\xE9ellement entendu. 121 | `,examples:["Ce soir, nous d\xEEnons en Enfer !","Il ne sera pas l\xE0 ce matin, il a trop bu hier.","Comme tu as grandi !"],sources:[{name:"Wikip\xE9dia",href:"https://fr.wikipedia.org/wiki/M\xE9talepse"},{name:"Larousse",href:"https://www.larousse.fr/dictionnaires/francais/m%C3%A9talepse/50831"},{name:"Youtube - Point Culture",href:"https://youtu.be/ByDNEsBNf24?t=1344"}]}],t=(i=void 0)=>{let e=s;return i&&(e=e.filter(a=>a.name===i)),e.sort((a,r)=>a.name.localeCompare(r.name))};export{t as g}; 122 | -------------------------------------------------------------------------------- /src/lib/functions/api.ts: -------------------------------------------------------------------------------- 1 | import type { FigureOfSpeech } from '$lib/models/figure-of-speech'; 2 | 3 | const figuresOfSpeech: FigureOfSpeech[] = [ 4 | { 5 | name: 'Antanaclase', 6 | description: ` 7 | On parle d'antanaclase lorsque l'on emploie deux fois un même mot mais avec 8 | un sens différent: on parle alors de polysémie (plusieurs sens). Si le mot 9 | n'est pas répété il est alors question d'antanaclase elliptique. 10 | `, 11 | goal: ` 12 | Il s'agit d'une figure de style qui se prête très bien aux jeux de mots, 13 | elle est donc fréquemment utilisée pour faire de l'humour. 14 | 15 | En dehors du côté comique, elle permet de souligner le second sens du mot en 16 | surprenant le lecteur qui doit s'arrêter un instant pour le saisir après 17 | avoir compris le premier. 18 | `, 19 | examples: [ 20 | `Le cœur a ses raisons que la raison ne connaît point.`, 21 | `Adieu, monsieur l'homme d'affaires, qui n'avez fait celles de personne.`, 22 | `Les étudiants, c'est comme le linge, quand il fait beau, ça sèche.`, 23 | ], 24 | sources: [ 25 | { 26 | name: 'Wikipédia', 27 | href: 'https://fr.wikipedia.org/wiki/Antanaclase', 28 | }, 29 | { 30 | name: 'Larousse', 31 | href: 'https://www.larousse.fr/dictionnaires/francais/antanaclase/10911044', 32 | }, 33 | { 34 | name: 'La Culture Générale', 35 | href: 'https://www.laculturegenerale.com/antanaclase-diaphore-definition-exemples/', 36 | }, 37 | ], 38 | }, 39 | { 40 | name: 'Comparaison', 41 | description: ` 42 | Une comparaison est la mise en relation de deux éléments différents 43 | partageant un point commun. Elle est constituée d'un comparé (l'objet de 44 | la comparaison), d'un comparant (le 'thème' utilisé pour imager le comparé) 45 | et d'un outil de comparaison (c'est ce qui met en liaison le comparé et le 46 | comparant). 47 | `, 48 | goal: ` 49 | En mettant deux termes sur le même plan littéraire, la comparaison permet de 50 | souligner leurs points communs pour imager ses propos. 51 | `, 52 | examples: [ 53 | `Et cette terre était proche, et elle lui apparaissait comme un bouclier sur la mer sombre.`, 54 | `Tu es fait comme un rat!`, 55 | `Sa barbe était d'argent comme un ruisseau d'avril.`, 56 | ], 57 | sources: [ 58 | { 59 | name: 'Wikipédia', 60 | href: 'https://fr.wikipedia.org/wiki/Comparaison_(rhétorique)', 61 | }, 62 | { 63 | name: 'La langue française', 64 | href: 'https://www.lalanguefrancaise.com/linguistique/la-comparaison-figure-de-style', 65 | }, 66 | { 67 | name: 'alloprof', 68 | href: 'https://www.alloprof.qc.ca/fr/eleves/bv/francais/la-comparaison-f1369', 69 | }, 70 | { 71 | name: 'Youtube - Point Culture', 72 | href: 'https://youtu.be/ByDNEsBNf24?t=478', 73 | }, 74 | ], 75 | }, 76 | { 77 | name: 'Épanorthose', 78 | description: ` 79 | L'épanorthose est une figure de style qui consiste à corriger ses propres 80 | propos afin d'accentuer ce qu'il vient d'être affirmé, renforçant ainsi le 81 | sentiment exprimé. 82 | `, 83 | goal: ` 84 | Il s'agit d'une figure de style souvent utilisée pour donner un sentiment de 85 | sincérité dans son discours. En se corrigeant, le locuteur donne l'impression 86 | de rechercher la précision. 87 | `, 88 | examples: [ 89 | `J'espère, que dis-je ? Je suis sûr qu'on vous rendra justice.`, 90 | `Votre prudence ou plutôt votre lâcheté nous ont perdu.`, 91 | ], 92 | sources: [ 93 | { 94 | name: 'Wikipédia', 95 | href: 'https://fr.wikipedia.org/wiki/Épanorthose', 96 | }, 97 | { 98 | name: 'Wiktionnaire', 99 | href: 'https://fr.wiktionary.org/wiki/épanorthose', 100 | }, 101 | ], 102 | }, 103 | { 104 | name: 'Métaphore', 105 | description: ` 106 | Une métaphore est similaire à une comparaison à la différence près qu'elle 107 | n'utilise pas d'outil de comparaison pour souligner le rapprochement de deux 108 | termes. C'est alors au lecteur d'essayer de deviner pourquoi l'auteur les a 109 | rapprochés pour créer cette image. 110 | `, 111 | goal: ` 112 | Le but de la métaphore est d'imager ses propos pour souligner l'intensité 113 | ou la connotation de ce qui est imagé en lui donnant le sens d'un autre mot 114 | ou expression. 115 | `, 116 | examples: [ 117 | `Il n'est plus que l'ombre de lui-même.`, 118 | `Il me casse les pieds.`, 119 | `Il est mort dans la fleur de l'âge.`, 120 | ], 121 | sources: [ 122 | { 123 | name: 'linternaute', 124 | href: 'https://www.linternaute.fr/dictionnaire/fr/definition/metaphore/', 125 | }, 126 | { 127 | name: 'Wikipédia', 128 | href: 'https://fr.wikipedia.org/wiki/M%C3%A9taphore', 129 | }, 130 | { 131 | name: 'Youtube - Point Culture', 132 | href: 'https://youtu.be/ByDNEsBNf24?t=478', 133 | }, 134 | ], 135 | }, 136 | { 137 | name: 'Métonymie', 138 | description: ` 139 | La métonymie consiste en le remplacement d'un terme désignant un tout par un 140 | autre en désignant une partie. Le rapport entre les deux est implicite et, 141 | s'il n'est pris qu'au premier degré, la phrase devient alors incohérente. 142 | `, 143 | goal: ` 144 | Utiliser une métonymie permet d'alléger la structure de la phrase comme par 145 | exemple dire "Je n'ai plus de batterie" au lieu de "Je n'ai plus d'énergie 146 | dans mon téléphone portable". 147 | 148 | Elle a aussi l'avantage d'englober toute la population désignée et donc peut 149 | renforcer un argumentaire. Lors d'un débat, si l'on désigne "les français" 150 | au lieu de cibler la tranche de population, on donne alors l'impression que 151 | notre discours concerne l'entièreté des habitants de France. 152 | `, 153 | examples: [ 154 | `Tu veux boire un verre ?`, 155 | `Je n'ai plus de batterie.`, 156 | `La France a obtenu une médaille d'or aux Jeux Olympiques.`, 157 | ], 158 | sources: [ 159 | { 160 | name: 'linternaute', 161 | href: 'https://www.linternaute.fr/dictionnaire/fr/definition/metonymie/' 162 | }, 163 | { 164 | name: 'Wikipédia', 165 | href: 'https://fr.wikipedia.org/wiki/M%C3%A9tonymie', 166 | }, 167 | { 168 | name: 'Youtube - Point Culture', 169 | href: 'https://youtu.be/ByDNEsBNf24?t=521', 170 | }, 171 | ], 172 | }, 173 | { 174 | name: 'Catachrèse', 175 | description: ` 176 | Une catachrèse est l'utilisation d'un mot pour désigner autre chose que ce 177 | qu'il défini initialement. Dans certains cas il s'agit d'une métaphore qui 178 | est passé dans la langue courante (ex: les pieds d'une table). 179 | `, 180 | goal: ` 181 | Une catachrèse est utilisée la plupart du temps pour désigner quelque chose 182 | pour lequel la langue n'a pas de mot définissant ce dont on veut parler. 183 | C'est par exemple le cas pour le "verre" lorsque l'on propose de "boire un 184 | verre": le français n'a pas de mot pour désigner simplement le contenu d'un 185 | verre. 186 | `, 187 | examples: [ 188 | `J'ai abîmé la plume de mon stylo en appuyant trop fort.`, 189 | `Les ailes de cet avion sont sales !`, 190 | `Le pied de la table a été rongé par les thermites.`, 191 | ], 192 | sources: [ 193 | { 194 | name: 'Wikipédia', 195 | href: 'https://fr.wikipedia.org/wiki/Catachrèse', 196 | }, 197 | { 198 | name: 'Larousse', 199 | href: 'https://www.larousse.fr/dictionnaires/francais/catachr%C3%A8se/13695', 200 | }, 201 | { 202 | name: 'Wiktionnaire', 203 | href: 'https://fr.wiktionary.org/wiki/catachr%C3%A8see', 204 | }, 205 | ], 206 | }, 207 | { 208 | name: 'Chleuasme', 209 | description: ` 210 | Le chleuasme est le fait de se dévaloriser en faisant preuve de fausse 211 | modestie. 212 | `, 213 | goal: ` 214 | En se critiquant, le locuteur cherche à s'attirer la sympathie de la 215 | personne qui l'écoute. 216 | `, 217 | examples: [ 218 | `Je ne suis vraiment pas beau ce matin ...`, 219 | `Je ne maîtrise pas très bien le sujet mais je peux quand même regarder.`, 220 | ], 221 | sources: [ 222 | { 223 | name: 'Wikipédia', 224 | href: 'https://fr.wikipedia.org/wiki/Chleuasme', 225 | }, 226 | ], 227 | }, 228 | { 229 | name: 'Hyperhypotaxe', 230 | description: ` 231 | On parle d'hyperhypotaxe lorsqu'une phrase est construite avec un nombre 232 | excessif de prépositions. 233 | `, 234 | goal: ` 235 | L'hyperhypotaxe permet souvent de mettre démesurément en avant les détails 236 | d'un argumentaire, perdant ainsi la personne qui l'écoute ou l'empêchant de 237 | formuler facilement un contre-argument, ces derniers n'en finissant pas. 238 | `, 239 | examples: [ 240 | `Martial est fils de noble, puisque son père est quasi-baron, étant donné 241 | que sa mère était une fille Angenaux, qui étaient reconnus comme maîtres 242 | des terres, et que sa belle-mère avait des accointances avec les De 243 | Bellot, à qui appartient le château...`, 244 | ], 245 | sources: [ 246 | { 247 | name: 'Wikipédia', 248 | href: 'https://fr.wikipedia.org/wiki/Hyperhypotaxe', 249 | }, 250 | { 251 | name: 'Wiktionnaire', 252 | href: 'https://fr.wiktionary.org/wiki/hyperhypotaxe', 253 | }, 254 | { 255 | name: 'WebLettres', 256 | href: 'https://www.weblettres.net/spip/article.php3?id_article=122', 257 | }, 258 | ], 259 | }, 260 | { 261 | name: 'Parataxe', 262 | description: ` 263 | La parataxe consiste en la juxtaposition de deux mots ou phrases sans mots 264 | de liaison. Dans une phrase, cette dernière semblera alors coupé alors que 265 | dans le cadre de mots, ces derniers donneront une impression télégraphique. 266 | `, 267 | goal: ` 268 | Puisque la relation entre les termes n'est pas définie, l'utilisation de la 269 | parataxe fait sonner la seconde partie comme la conséquence de la première. 270 | `, 271 | examples: [ 272 | `Vous n'êtes point gentilhomme, vous n'aurez pas ma fille.`, 273 | `Il faisait beau. Le Soleil illuminait la pièce. Au dehors, le chant des 274 | oiseaux résonnait dans la clairière.`, 275 | ], 276 | sources: [ 277 | { 278 | name: 'Wikipédia', 279 | href: 'https://fr.wikipedia.org/wiki/Parataxe', 280 | }, 281 | { 282 | name: 'La Culture Générale', 283 | href: 'https://www.laculturegenerale.com/parataxe-definition-simple-exemples/', 284 | }, 285 | ], 286 | }, 287 | { 288 | name: 'Antonomase', 289 | description: ` 290 | L'antonomase est lorsque l'on utilise un nom commun comme nom propre ou bien 291 | l'inverse. 292 | `, 293 | goal: ` 294 | L'antonomase permet de souligner une aspect de ce que l'on désigne 295 | en l'assimilant à autre chose souvent connue pour une caractéristique 296 | spécifique. 297 | `, 298 | examples: [ 299 | `J'irais acheter des sandwichs pour notre pique-nique de demain midi.`, 300 | `L'Arc de Triomphe a été rénové.`, 301 | `Peux-tu me passer le Sopalin ?`, 302 | `Encore un rendez-vous amoureux ? Quel Don Juan !`, 303 | ], 304 | sources: [ 305 | { 306 | name: 'Wikipédia', 307 | href: 'https://fr.wikipedia.org/wiki/Antonomase', 308 | }, 309 | { 310 | name: 'Larousse', 311 | href: 'https://www.larousse.fr/dictionnaires/francais/antonomase/4354', 312 | }, 313 | { 314 | name: 'Youtube - Point Culture', 315 | href: 'https://youtu.be/ByDNEsBNf24?t=1278', 316 | }, 317 | ], 318 | }, 319 | { 320 | name: 'Prétérition', 321 | description: ` 322 | La prétérition consiste à parler de quelque chose juste après avoir annoncé 323 | que nous n'allions pas le faire. 324 | `, 325 | goal: ` 326 | L'emploi de la prétérition permet d'aborder des sujets sensibles en 327 | déresponsabilisant l'orateur. 328 | Elle est également employée lorsque l'auteur souhaite aborder un sujet qu'il 329 | se refuse à décrire. 330 | `, 331 | examples: [ 332 | `Je n'ai pas besoin de te rappeler que je dois envoyer ce document ce soir.`, 333 | `Je ne vous dirais pas que le coût de la vie est trop élevé (...)`, 334 | `Madame Y, pour ne pas la citer, (...)`, 335 | ], 336 | sources: [ 337 | { 338 | name: 'Wikipédia', 339 | href: 'https://fr.wikipedia.org/wiki/Prétérition', 340 | }, 341 | { 342 | name: 'La Culture Générale', 343 | href: 'https://www.laculturegenerale.com/preterition-definition-exemples/', 344 | }, 345 | ], 346 | }, 347 | { 348 | name: 'Litote', 349 | description: ` 350 | La litote est une figure de style par laquelle on exprime l'inverse de ce 351 | que l'on souhaite faire comprendre. Elle peut également être exprimée par 352 | une double négation. 353 | `, 354 | goal: ` 355 | En en laissant entendre moins que ce que l'on veut, on renforce l'idée que 356 | l'on souhaite faire passer. Par exemple, dire qu'un repas n'était "pas 357 | mauvais" signifie bien généralement qu'il était très bon. 358 | `, 359 | examples: [ 360 | `Pas mauvais ce repas !`, 361 | `Vous n'êtes pas sans savoir (...)`, 362 | `Ça n'était pas le match du siècle.`, 363 | ], 364 | sources: [ 365 | { 366 | name: 'Wikipédia', 367 | href: 'https://fr.wikipedia.org/wiki/Litote', 368 | }, 369 | { 370 | name: 'Youtube - Point Culture', 371 | href: 'https://youtu.be/ByDNEsBNf24?t=207', 372 | }, 373 | ], 374 | }, 375 | { 376 | name: 'Euphémisme', 377 | description: ` 378 | L'euphémisme est le fait d'exprimer une idée en atténuant la réalité en 379 | employant un mot moins fort. 380 | `, 381 | goal: ` 382 | Le but de l'euphémisme est d'adoucir des propos qui pourraient être 383 | blessants ou choquant. Elle peut également avoir un effet comique en étant 384 | utilisée de manière sarcastique. 385 | `, 386 | examples: [ 387 | `La Russie a engagé une opération militaire spéciale en Ukraine.`, 388 | `Je ne roule pas sur l'or.`, 389 | `Il a passé l'arme à gauche il y a trois ans.`, 390 | ], 391 | sources: [ 392 | { 393 | name: 'Wikipédia', 394 | href: 'https://fr.wikipedia.org/wiki/Euphémisme', 395 | }, 396 | { 397 | name: 'Youtube - Point Culture', 398 | href: 'https://youtu.be/ByDNEsBNf24?t=207', 399 | }, 400 | { 401 | name: 'Office québécois de la langue française', 402 | href: 'http://bdl.oqlf.gouv.qc.ca/bdl/gabarit_bdl.asp?id=3202', 403 | }, 404 | ], 405 | },{ 406 | name: 'Métalepse', 407 | description: ` 408 | Une métalepse est une figure de style dans laquelle on remplace la cause 409 | par la conséquence et inversement. 410 | `, 411 | goal: ` 412 | La métalepse permet de passer sous silence une idée et de laisser 413 | le lecteur se représenter ce qui est réellement entendu. 414 | `, 415 | examples: [ 416 | `Ce soir, nous dînons en Enfer !`, 417 | `Il ne sera pas là ce matin, il a trop bu hier.`, 418 | `Comme tu as grandi !`, 419 | ], 420 | sources: [ 421 | { 422 | name: 'Wikipédia', 423 | href: 'https://fr.wikipedia.org/wiki/Métalepse', 424 | }, 425 | { 426 | name: 'Larousse', 427 | href: 'https://www.larousse.fr/dictionnaires/francais/m%C3%A9talepse/50831', 428 | }, 429 | { 430 | name: 'Youtube - Point Culture', 431 | href: 'https://youtu.be/ByDNEsBNf24?t=1344', 432 | }, 433 | ], 434 | }, 435 | ]; 436 | 437 | export const get = (name: string | undefined = undefined): FigureOfSpeech[] => { 438 | let definitions = figuresOfSpeech; 439 | 440 | if (name) { 441 | definitions = definitions.filter((definition) => definition.name === name); 442 | } 443 | 444 | return definitions.sort((a, b) => a.name.localeCompare(b.name)); 445 | }; 446 | -------------------------------------------------------------------------------- /docs/_app/start-8dff9ddc.js: -------------------------------------------------------------------------------- 1 | var it=Object.defineProperty,ot=Object.defineProperties;var lt=Object.getOwnPropertyDescriptors;var ue=Object.getOwnPropertySymbols;var Be=Object.prototype.hasOwnProperty,We=Object.prototype.propertyIsEnumerable;var ze=(r,e,t)=>e in r?it(r,e,{enumerable:!0,configurable:!0,writable:!0,value:t}):r[e]=t,O=(r,e)=>{for(var t in e||(e={}))Be.call(e,t)&&ze(r,t,e[t]);if(ue)for(var t of ue(e))We.call(e,t)&&ze(r,t,e[t]);return r},te=(r,e)=>ot(r,lt(e));var Ye=(r,e)=>{var t={};for(var s in r)Be.call(r,s)&&e.indexOf(s)<0&&(t[s]=r[s]);if(r!=null&&ue)for(var s of ue(r))e.indexOf(s)<0&&We.call(r,s)&&(t[s]=r[s]);return t};import{S as ct,i as ft,s as ut,e as dt,c as pt,a as _t,d as j,b as ye,f as W,g as J,t as ht,h as mt,j as gt,k as wt,l as N,m as bt,n as M,o as P,p as X,q as T,r as vt,u as yt,v as Ee,w as K,x as se,y as z,z as ae,A as ie,B,C as oe,D as de,E as Ge}from"./chunks/vendor-b3ebdad0.js";import{s as kt,a as $t}from"./chunks/paths-396f020f.js";function Et(r){let e,t,s;const c=[r[1]||{}];var l=r[0][0];function f(n){let a={};for(let o=0;o{B(p,1)}),X()}l?(e=new l(f()),K(e.$$.fragment),T(e.$$.fragment,1),z(e,t.parentNode,t)):e=null}else l&&e.$set(o)},i(n){s||(e&&T(e.$$.fragment,n),s=!0)},o(n){e&&P(e.$$.fragment,n),s=!1},d(n){n&&j(t),e&&B(e,n)}}}function St(r){let e,t,s;const c=[r[1]||{}];var l=r[0][0];function f(n){let a={$$slots:{default:[At]},$$scope:{ctx:n}};for(let o=0;o{B(p,1)}),X()}l?(e=new l(f(n)),K(e.$$.fragment),T(e.$$.fragment,1),z(e,t.parentNode,t)):e=null}else l&&e.$set(o)},i(n){s||(e&&T(e.$$.fragment,n),s=!0)},o(n){e&&P(e.$$.fragment,n),s=!1},d(n){n&&j(t),e&&B(e,n)}}}function Rt(r){let e,t,s;const c=[r[2]||{}];var l=r[0][1];function f(n){let a={};for(let o=0;o{B(p,1)}),X()}l?(e=new l(f()),K(e.$$.fragment),T(e.$$.fragment,1),z(e,t.parentNode,t)):e=null}else l&&e.$set(o)},i(n){s||(e&&T(e.$$.fragment,n),s=!0)},o(n){e&&P(e.$$.fragment,n),s=!1},d(n){n&&j(t),e&&B(e,n)}}}function Lt(r){let e,t,s;const c=[r[2]||{}];var l=r[0][1];function f(n){let a={$$slots:{default:[Ut]},$$scope:{ctx:n}};for(let o=0;o{B(p,1)}),X()}l?(e=new l(f(n)),K(e.$$.fragment),T(e.$$.fragment,1),z(e,t.parentNode,t)):e=null}else l&&e.$set(o)},i(n){s||(e&&T(e.$$.fragment,n),s=!0)},o(n){e&&P(e.$$.fragment,n),s=!1},d(n){n&&j(t),e&&B(e,n)}}}function Ut(r){let e,t,s;const c=[r[3]||{}];var l=r[0][2];function f(n){let a={};for(let o=0;o{B(p,1)}),X()}l?(e=new l(f()),K(e.$$.fragment),T(e.$$.fragment,1),z(e,t.parentNode,t)):e=null}else l&&e.$set(o)},i(n){s||(e&&T(e.$$.fragment,n),s=!0)},o(n){e&&P(e.$$.fragment,n),s=!1},d(n){n&&j(t),e&&B(e,n)}}}function At(r){let e,t,s,c;const l=[Lt,Rt],f=[];function n(a,o){return a[0][2]?0:1}return e=n(r),t=f[e]=l[e](r),{c(){t.c(),s=N()},l(a){t.l(a),s=N()},m(a,o){f[e].m(a,o),J(a,s,o),c=!0},p(a,o){let p=e;e=n(a),e===p?f[e].p(a,o):(M(),P(f[p],1,1,()=>{f[p]=null}),X(),t=f[e],t?t.p(a,o):(t=f[e]=l[e](a),t.c()),T(t,1),t.m(s.parentNode,s))},i(a){c||(T(t),c=!0)},o(a){P(t),c=!1},d(a){f[e].d(a),a&&j(s)}}}function Me(r){let e,t=r[5]&&Xe(r);return{c(){e=dt("div"),t&&t.c(),this.h()},l(s){e=pt(s,"DIV",{id:!0,"aria-live":!0,"aria-atomic":!0,style:!0});var c=_t(e);t&&t.l(c),c.forEach(j),this.h()},h(){ye(e,"id","svelte-announcer"),ye(e,"aria-live","assertive"),ye(e,"aria-atomic","true"),W(e,"position","absolute"),W(e,"left","0"),W(e,"top","0"),W(e,"clip","rect(0 0 0 0)"),W(e,"clip-path","inset(50%)"),W(e,"overflow","hidden"),W(e,"white-space","nowrap"),W(e,"width","1px"),W(e,"height","1px")},m(s,c){J(s,e,c),t&&t.m(e,null)},p(s,c){s[5]?t?t.p(s,c):(t=Xe(s),t.c(),t.m(e,null)):t&&(t.d(1),t=null)},d(s){s&&j(e),t&&t.d()}}}function Xe(r){let e;return{c(){e=ht(r[6])},l(t){e=mt(t,r[6])},m(t,s){J(t,e,s)},p(t,s){s&64&>(e,t[6])},d(t){t&&j(e)}}}function Ot(r){let e,t,s,c,l;const f=[St,Et],n=[];function a(p,U){return p[0][1]?0:1}e=a(r),t=n[e]=f[e](r);let o=r[4]&&Me(r);return{c(){t.c(),s=wt(),o&&o.c(),c=N()},l(p){t.l(p),s=bt(p),o&&o.l(p),c=N()},m(p,U){n[e].m(p,U),J(p,s,U),o&&o.m(p,U),J(p,c,U),l=!0},p(p,[U]){let $=e;e=a(p),e===$?n[e].p(p,U):(M(),P(n[$],1,1,()=>{n[$]=null}),X(),t=n[e],t?t.p(p,U):(t=n[e]=f[e](p),t.c()),T(t,1),t.m(s.parentNode,s)),p[4]?o?o.p(p,U):(o=Me(p),o.c(),o.m(c.parentNode,c)):o&&(o.d(1),o=null)},i(p){l||(T(t),l=!0)},o(p){P(t),l=!1},d(p){n[e].d(p),p&&j(s),o&&o.d(p),p&&j(c)}}}function Nt(r,e,t){let{stores:s}=e,{page:c}=e,{components:l}=e,{props_0:f=null}=e,{props_1:n=null}=e,{props_2:a=null}=e;vt("__svelte__",s),yt(s.page.notify);let o=!1,p=!1,U=null;return Ee(()=>{const $=s.page.subscribe(()=>{o&&(t(5,p=!0),t(6,U=document.title||"untitled page"))});return t(4,o=!0),$}),r.$$set=$=>{"stores"in $&&t(7,s=$.stores),"page"in $&&t(8,c=$.page),"components"in $&&t(0,l=$.components),"props_0"in $&&t(1,f=$.props_0),"props_1"in $&&t(2,n=$.props_1),"props_2"in $&&t(3,a=$.props_2)},r.$$.update=()=>{r.$$.dirty&384&&s.page.set(c)},[l,f,n,a,o,p,U,s,c]}class Pt extends ct{constructor(e){super();ft(this,e,Nt,Ot,ut,{stores:7,page:8,components:0,props_0:1,props_1:2,props_2:3})}}const Tt="modulepreload",Fe={},Ct="/locutionis/_app/",ne=function(e,t){return!t||t.length===0?e():Promise.all(t.map(s=>{if(s=`${Ct}${s}`,s in Fe)return;Fe[s]=!0;const c=s.endsWith(".css"),l=c?'[rel="stylesheet"]':"";if(document.querySelector(`link[href="${s}"]${l}`))return;const f=document.createElement("link");if(f.rel=c?"stylesheet":Tt,c||(f.as="script",f.crossOrigin=""),f.href=s,document.head.appendChild(f),c)return new Promise((n,a)=>{f.addEventListener("load",n),f.addEventListener("error",()=>a(new Error(`Unable to preload CSS for ${s}`)))})})).then(()=>e())},V=[()=>ne(()=>import("./pages/__layout.svelte-4cba5834.js"),["pages/__layout.svelte-4cba5834.js","assets/pages/__layout.svelte-79627a3f.css","chunks/vendor-b3ebdad0.js","chunks/paths-396f020f.js"]),()=>ne(()=>import("./pages/__error.svelte-fca2f500.js"),["pages/__error.svelte-fca2f500.js","chunks/vendor-b3ebdad0.js","chunks/paths-396f020f.js"]),()=>ne(()=>import("./pages/index.svelte-fe714f65.js"),["pages/index.svelte-fe714f65.js","assets/pages/index.svelte-5f37a13e.css","chunks/vendor-b3ebdad0.js","chunks/paths-396f020f.js"]),()=>ne(()=>import("./pages/glossary/index.svelte-690b5130.js"),["pages/glossary/index.svelte-690b5130.js","chunks/vendor-b3ebdad0.js","chunks/api-d72c80f5.js","chunks/paths-396f020f.js"]),()=>ne(()=>import("./pages/glossary/_name_.svelte-e0df2a2a.js"),["pages/glossary/_name_.svelte-e0df2a2a.js","assets/pages/glossary/_name_.svelte-b44ebfdc.css","chunks/vendor-b3ebdad0.js","chunks/api-d72c80f5.js"])],It=decodeURIComponent,ke=[[/^\/$/,[V[0],V[2]],[V[1]]],[/^\/glossary\/?$/,[V[0],V[3]],[V[1]]],[/^\/glossary\/([^/]+?)\/?$/,[V[0],V[4]],[V[1]],r=>({name:It(r[1])})]],He=[V[0](),V[1]()];function Qe(r){return r instanceof Error||r&&r.name&&r.message?r:new Error(JSON.stringify(r))}function Ze(r){const e=r.status&&r.status>=400&&r.status<=599&&!r.redirect;if(r.error||e){const t=r.status;if(!r.error&&e)return{status:t||500,error:new Error};const s=typeof r.error=="string"?new Error(r.error):r.error;return s instanceof Error?!t||t<400||t>599?(console.warn('"error" returned from load() without a valid status code \u2014 defaulting to 500'),{status:500,error:s}):{status:t,error:s}:{status:500,error:new Error(`"error" property returned from load() must be a string or instance of Error, received type "${typeof s}"`)}}if(r.redirect){if(!r.status||Math.floor(r.status/100)!==3)return{status:500,error:new Error('"redirect" property returned from load() must be accompanied by a 3xx status code')};if(typeof r.redirect!="string")return{status:500,error:new Error('"redirect" property returned from load() must be a string')}}if(r.context)throw new Error('You are returning "context" from a load function. "context" was renamed to "stuff", please adjust your code accordingly.');return r}function Vt(r,e){return r==="/"||e==="ignore"?r:e==="never"?r.endsWith("/")?r.slice(0,-1):r:e==="always"&&/\/[^./]+$/.test(r)?r+"/":r}function jt(r){let e=5381,t=r.length;if(typeof r=="string")for(;t;)e=e*33^r.charCodeAt(--t);else for(;t;)e=e*33^r[--t];return(e>>>0).toString(36)}function et(r){let e=r.baseURI;if(!e){const t=r.getElementsByTagName("base");e=t.length?t[0].href:r.URL}return e}function Se(){return{x:pageXOffset,y:pageYOffset}}function tt(r){return r.composedPath().find(t=>t instanceof Node&&t.nodeName.toUpperCase()==="A")}function nt(r){return r instanceof SVGAElement?new URL(r.href.baseVal,document.baseURI):new URL(r.href)}function rt(r){const e=de(r);let t=!0;function s(){t=!0,e.update(f=>f)}function c(f){t=!1,e.set(f)}function l(f){let n;return e.subscribe(a=>{(n===void 0||t&&a!==n)&&f(n=a)})}return{notify:s,set:c,subscribe:l}}function Dt(){const{set:r,subscribe:e}=de(!1),t="1648818117897";let s;async function c(){clearTimeout(s);const f=await fetch(`${$t}/_app/version.json`,{headers:{pragma:"no-cache","cache-control":"no-cache"}});if(f.ok){const{version:n}=await f.json(),a=n!==t;return a&&(r(!0),clearTimeout(s)),a}else throw new Error(`Version check failed: ${f.status}`)}return{subscribe:e,check:c}}function xt(r,e){let s=`script[sveltekit\\:data-type="data"][sveltekit\\:data-url=${JSON.stringify(typeof r=="string"?r:r.url)}]`;e&&typeof e.body=="string"&&(s+=`[sveltekit\\:data-body="${jt(e.body)}"]`);const c=document.querySelector(s);if(c&&c.textContent){const l=JSON.parse(c.textContent),{body:f}=l,n=Ye(l,["body"]);return Promise.resolve(new Response(f,n))}return fetch(r,e)}const st="sveltekit:scroll",Y="sveltekit:index";let re={};try{re=JSON.parse(sessionStorage[st])}catch{}function $e(r){re[r]=Se()}function qt({target:r,session:e,base:t,trailing_slash:s}){var Ve,je;const c=new Map,l=new Set,f={url:rt({}),page:rt({}),navigating:de(null),session:de(e),updated:Dt()},n={id:null,promise:null},a={before_navigate:[],after_navigate:[]};let o={url:null,session_id:0,branch:[]},p=!1,U=!0,$=!1,pe=1,le=null,Re,Le,Ue=!1;f.session.subscribe(async i=>{if(Le=i,!Ue)return;pe+=1;const _=ce(new URL(location.href));we(_,[],!0)}),Ue=!0;let _e=0,F=!0,D=(je=(Ve=history.state)==null?void 0:Ve[Y])!=null?je:0;D===0&&history.replaceState(te(O({},history.state),{[Y]:0}),"",location.href);const he=re[D];he&&scrollTo(he.x,he.y);let me=!1,ge,Ae,Oe;async function Ne(i,{noscroll:_=!1,replaceState:w=!1,keepfocus:u=!1,state:d={}},g){const m=new URL(i,et(document));if(F)return ve({url:m,scroll:_?Se():null,keepfocus:u,redirect_chain:g,details:{state:d,replaceState:w},accepted:()=>{},blocked:()=>{}});await H(m)}async function Pe(i){if(!Ie(i))throw new Error("Attempted to prefetch a URL that does not belong to this app");const _=ce(i);return n.promise=Ce(_,!1),n.id=_.id,n.promise}async function we(i,_,w,u){var b,k,E;const d=Ae={};let g=await Ce(i,w);if(!g&&i.url.pathname===location.pathname&&(g=await Z({status:404,error:new Error(`Not found: ${i.url.pathname}`),url:i.url})),!g){await H(i.url);return}if(Ae!==d)return;if(l.clear(),g.redirect)if(_.length>10||_.includes(i.url.pathname))g=await Z({status:500,error:new Error("Redirect loop"),url:i.url});else{F?Ne(new URL(g.redirect,i.url).href,{},[..._,i.url.pathname]):await H(new URL(g.redirect,location.href));return}else((k=(b=g.props)==null?void 0:b.page)==null?void 0:k.status)>=400&&await f.updated.check()&&await H(i.url);if($=!0,u&&u.details){const{details:v}=u,S=v.replaceState?0:1;v.state[Y]=D+=S,history[v.replaceState?"replaceState":"pushState"](v.state,"",i.url)}if(p?(o=g.state,Re.$set(g.props)):Te(g),u){const{scroll:v,keepfocus:S}=u;if(!S){const h=document.body,y=h.getAttribute("tabindex");(E=getSelection())==null||E.removeAllRanges(),h.tabIndex=-1,h.focus(),y!==null?h.setAttribute("tabindex",y):h.removeAttribute("tabindex")}if(await Ge(),U){const h=i.url.hash&&document.getElementById(i.url.hash.slice(1));v?scrollTo(v.x,v.y):h?h.scrollIntoView():scrollTo(0,0)}}else await Ge();n.promise=null,n.id=null,U=!0,$=!1,g.props.page&&(ge=g.props.page);const m=g.state.branch[g.state.branch.length-1];F=(m==null?void 0:m.module.router)!==!1}function Te(i){o=i.state;const _=document.querySelector("style[data-svelte]");if(_&&_.remove(),ge=i.props.page,Re=new Pt({target:r,props:te(O({},i.props),{stores:f}),hydrate:!0}),p=!0,F){const w={from:null,to:new URL(location.href)};a.after_navigate.forEach(u=>u(w))}}async function Ce(i,_){if(n.id===i.id&&n.promise)return n.promise;for(let w=0;wb()),d+=1;else break}const g=await at(u,i,_);if(g)return g}}async function be({url:i,params:_,stuff:w,branch:u,status:d,error:g}){var S;const m=u.filter(Boolean),b=m.find(h=>{var y;return(y=h.loaded)==null?void 0:y.redirect}),k={redirect:(S=b==null?void 0:b.loaded)==null?void 0:S.redirect,state:{url:i,params:_,branch:u,session_id:pe},props:{components:m.map(h=>h.module.default)}};for(let h=0;h{Object.defineProperty(k.props.page,y,{get:()=>{throw new Error(`$page.${y} has been replaced by $page.url.${C}`)}})};h("origin","origin"),h("path","pathname"),h("query","searchParams")}const E=m[m.length-1],v=E.loaded&&E.loaded.maxage;if(v){const h=i.pathname+i.search;let y=!1;const C=()=>{c.get(h)===k&&c.delete(h),q(),clearTimeout(x)},x=setTimeout(C,v*1e3),q=f.session.subscribe(()=>{y&&C()});y=!0,c.set(h,k)}return k}async function Q({status:i,error:_,module:w,url:u,params:d,stuff:g,props:m}){const b={module:w,uses:{params:new Set,url:!1,session:!1,stuff:!1,dependencies:new Set},loaded:null,stuff:g};m&&b.uses.dependencies.add(u.href);const k={};for(const v in d)Object.defineProperty(k,v,{get(){return b.uses.params.add(v),d[v]},enumerable:!0});const E=Le;if(w.load){const v={params:k,props:m||{},get url(){return b.uses.url=!0,u},get session(){return b.uses.session=!0,E},get stuff(){return b.uses.stuff=!0,O({},g)},fetch(h,y){const C=typeof h=="string"?h:h.url,{href:x}=new URL(C,u);return b.uses.dependencies.add(x),p?fetch(h,y):xt(h,y)}};_&&(v.status=i,v.error=_);const S=await w.load.call(null,v);if(!S)throw new Error("load function must return a value");b.loaded=Ze(S),b.loaded.stuff&&(b.stuff=b.loaded.stuff)}else m&&(b.loaded=Ze({props:m}));return b}async function at(i,{id:_,url:w,path:u},d){var De,xe,qe;if(!d){const R=c.get(_);if(R)return R}const[g,m,b,k,E]=i,v=k?k(g.exec(u)):{},S=o.url&&{url:_!==o.url.pathname+o.url.search,params:Object.keys(v).filter(R=>o.params[R]!==v[R]),session:pe!==o.session_id};let h=[],y={},C=!1,x=200,q;m.forEach(R=>R());e:for(let R=0;RI.uses.params.has(G))||S.session&&I.uses.session||Array.from(I.uses.dependencies).some(G=>l.has(G))||C&&I.uses.stuff){let G={};const Je=E!==void 0&&R===m.length-1;if(Je){const ee=await fetch(`${w.pathname}${w.pathname.endsWith("/")?"":"/"}__data.json${w.search}`,{headers:{"x-sveltekit-load":E}});if(ee.status===204)return;if(ee.ok){const Ke=ee.headers.get("x-sveltekit-location");if(Ke)return{redirect:Ke,props:{},state:o};G=await ee.json()}else x=ee.status,q=new Error("Failed to load data")}if(q||(L=await Q({module:A,url:w,params:v,props:G,stuff:y})),L&&(Je&&(L.uses.url=!0),L.loaded)){if(L.loaded.fallthrough)return;if(L.loaded.error&&(x=L.loaded.status,q=L.loaded.error),L.loaded.redirect)return{redirect:L.loaded.redirect,props:{},state:o};L.loaded.stuff&&(C=!0)}}else L=I}catch(A){x=500,q=Qe(A)}if(q){for(;R--;)if(b[R]){let A,I,fe=R;for(;!(I=h[fe]);)fe-=1;try{if(A=await Q({status:x,error:q,module:await b[R](),url:w,params:v,stuff:I.stuff}),(De=A==null?void 0:A.loaded)!=null&&De.error)continue;(xe=A==null?void 0:A.loaded)!=null&&xe.stuff&&(y=O(O({},y),A.loaded.stuff)),h=h.slice(0,fe+1).concat(A);break e}catch{continue}}return await Z({status:x,error:q,url:w})}else(qe=L==null?void 0:L.loaded)!=null&&qe.stuff&&(y=O(O({},y),L.loaded.stuff)),h.push(L)}return await be({url:w,params:v,stuff:y,branch:h,status:x,error:q})}async function Z({status:i,error:_,url:w}){var m,b;const u={},d=await Q({module:await He[0],url:w,params:u,stuff:{}}),g=await Q({status:i,error:_,module:await He[1],url:w,params:u,stuff:d&&d.loaded&&d.loaded.stuff||{}});return await be({url:w,params:u,stuff:O(O({},(m=d==null?void 0:d.loaded)==null?void 0:m.stuff),(b=g==null?void 0:g.loaded)==null?void 0:b.stuff),branch:[d,g],status:i,error:_})}function Ie(i){return i.origin===location.origin&&i.pathname.startsWith(t)}function ce(i){const _=decodeURI(i.pathname.slice(t.length)||"/");return{id:i.pathname+i.search,routes:ke.filter(([u])=>u.test(_)),url:i,path:_}}async function ve({url:i,scroll:_,keepfocus:w,redirect_chain:u,details:d,accepted:g,blocked:m}){const b=o.url;let k=!1;const E={from:b,to:i,cancel:()=>k=!0};if(a.before_navigate.forEach(y=>y(E)),k){m();return}Ie(i)||await H(i);const v=Vt(i.pathname,s);i=new URL(i.origin+v+i.search+i.hash);const S=ce(i);$e(D),g(),_e++;const h=Oe={};if(p&&f.navigating.set({from:o.url,to:S.url}),await we(S,u,!1,{scroll:_,keepfocus:w,details:d}),_e--,Oe===h&&!_e){const y={from:b,to:i};a.after_navigate.forEach(C=>C(y)),f.navigating.set(null)}}function H(i){return location.href=i.href,new Promise(()=>{})}return{after_navigate:i=>{Ee(()=>(a.after_navigate.push(i),()=>{const _=a.after_navigate.indexOf(i);a.after_navigate.splice(_,1)}))},before_navigate:i=>{Ee(()=>(a.before_navigate.push(i),()=>{const _=a.before_navigate.indexOf(i);a.before_navigate.splice(_,1)}))},disable_scroll_handling:()=>{($||!p)&&(U=!1)},goto:(i,_={})=>Ne(i,_,[]),invalidate:i=>{const{href:_}=new URL(i,location.href);return l.add(_),le||(le=Promise.resolve().then(async()=>{const w=ce(new URL(location.href));await we(w,[],!0),le=null})),le},prefetch:async i=>{const _=new URL(i,et(document));await Pe(_)},prefetch_routes:async i=>{const w=(i?ke.filter(u=>i.some(d=>u[0].test(d))):ke).map(u=>Promise.all(u[1].map(d=>d())));await Promise.all(w)},_start_router:()=>{history.scrollRestoration="manual",addEventListener("beforeunload",u=>{let d=!1;const g={from:o.url,to:null,cancel:()=>d=!0};a.before_navigate.forEach(m=>m(g)),d?(u.preventDefault(),u.returnValue=""):history.scrollRestoration="auto"}),addEventListener("visibilitychange",()=>{if(document.visibilityState==="hidden"){$e(D);try{sessionStorage[st]=JSON.stringify(re)}catch{}}});const i=u=>{const d=tt(u);d&&d.href&&d.hasAttribute("sveltekit:prefetch")&&Pe(nt(d))};let _;const w=u=>{clearTimeout(_),_=setTimeout(()=>{var d;(d=u.target)==null||d.dispatchEvent(new CustomEvent("sveltekit:trigger_prefetch",{bubbles:!0}))},20)};addEventListener("touchstart",i),addEventListener("mousemove",w),addEventListener("sveltekit:trigger_prefetch",i),addEventListener("click",u=>{if(!F||u.button||u.which!==1||u.metaKey||u.ctrlKey||u.shiftKey||u.altKey||u.defaultPrevented)return;const d=tt(u);if(!d||!d.href)return;const g=d instanceof SVGAElement,m=nt(d);if(!g&&m.origin==="null")return;const b=(d.getAttribute("rel")||"").split(/\s+/);if(d.hasAttribute("download")||b.includes("external")||(g?d.target.baseVal:d.target))return;if(m.href===location.href){location.hash||u.preventDefault();return}const[k,E]=m.href.split("#");if(E!==void 0&&k===location.href.split("#")[0]){me=!0,$e(D),f.page.set(te(O({},ge),{url:m})),f.page.notify();return}ve({url:m,scroll:d.hasAttribute("sveltekit:noscroll")?Se():null,keepfocus:!1,redirect_chain:[],details:{state:{},replaceState:!1},accepted:()=>u.preventDefault(),blocked:()=>u.preventDefault()})}),addEventListener("popstate",u=>{if(u.state&&F){if(u.state[Y]===D)return;ve({url:new URL(location.href),scroll:re[u.state[Y]],keepfocus:!1,redirect_chain:[],details:null,accepted:()=>{D=u.state[Y]},blocked:()=>{const d=D-u.state[Y];history.go(d)}})}}),addEventListener("hashchange",()=>{me&&(me=!1,history.replaceState(te(O({},history.state),{[Y]:++D}),"",location.href))})},_hydrate:async({status:i,error:_,nodes:w,params:u})=>{const d=new URL(location.href),g=[];let m={},b,k;try{for(let E=0;E:not([hidden])~:not([hidden]){--tw-space-y-reverse: 0;margin-top:calc(1.5rem * calc(1 - var(--tw-space-y-reverse)));margin-bottom:calc(1.5rem * var(--tw-space-y-reverse))}.space-y-5>:not([hidden])~:not([hidden]){--tw-space-y-reverse: 0;margin-top:calc(1.25rem * calc(1 - var(--tw-space-y-reverse)));margin-bottom:calc(1.25rem * var(--tw-space-y-reverse))}.truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.rounded-lg{border-radius:.5rem}.rounded{border-radius:.25rem}.border-2{border-width:2px}.border-t{border-top-width:1px}.border-l{border-left-width:1px}.border-primary\/50{border-color:#0ea5e980}.border-gray-400{--tw-border-opacity: 1;border-color:rgb(156 163 175 / var(--tw-border-opacity))}.bg-primary{--tw-bg-opacity: 1;background-color:rgb(14 165 233 / var(--tw-bg-opacity))}.bg-black\/20{background-color:#0003}.bg-white{--tw-bg-opacity: 1;background-color:rgb(255 255 255 / var(--tw-bg-opacity))}.bg-gradient-to-br{background-image:linear-gradient(to bottom right,var(--tw-gradient-stops))}.from-indigo-600{--tw-gradient-from: #4f46e5;--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(79 70 229 / 0))}.to-primary{--tw-gradient-to: #0EA5E9}.bg-clip-text{-webkit-background-clip:text;background-clip:text}.p-6{padding:1.5rem}.p-2{padding:.5rem}.p-5{padding:1.25rem}.px-5{padding-left:1.25rem;padding-right:1.25rem}.px-6{padding-left:1.5rem;padding-right:1.5rem}.py-3{padding-top:.75rem;padding-bottom:.75rem}.px-2{padding-left:.5rem;padding-right:.5rem}.py-1{padding-top:.25rem;padding-bottom:.25rem}.px-1{padding-left:.25rem;padding-right:.25rem}.pt-2{padding-top:.5rem}.pt-6{padding-top:1.5rem}.pl-5{padding-left:1.25rem}.text-center{text-align:center}.text-4xl{font-size:2.25rem;line-height:2.5rem}.text-lg{font-size:1.125rem;line-height:1.75rem}.text-2xl{font-size:1.5rem;line-height:2rem}.text-xs{font-size:.75rem;line-height:1rem}.text-3xl{font-size:1.875rem;line-height:2.25rem}.text-sm{font-size:.875rem;line-height:1.25rem}.text-xl{font-size:1.25rem;line-height:1.75rem}.text-base{font-size:1rem;line-height:1.5rem}.font-bold{font-weight:700}.font-semibold{font-weight:600}.font-extrabold{font-weight:800}.font-medium{font-weight:500}.italic{font-style:italic}.tracking-tight{letter-spacing:-.025em}.tracking-wide{letter-spacing:.025em}.text-primary{--tw-text-opacity: 1;color:rgb(14 165 233 / var(--tw-text-opacity))}.text-slate-600{--tw-text-opacity: 1;color:rgb(71 85 105 / var(--tw-text-opacity))}.text-white{--tw-text-opacity: 1;color:rgb(255 255 255 / var(--tw-text-opacity))}.text-gray-400{--tw-text-opacity: 1;color:rgb(156 163 175 / var(--tw-text-opacity))}.text-gray-600{--tw-text-opacity: 1;color:rgb(75 85 99 / var(--tw-text-opacity))}.text-slate-900{--tw-text-opacity: 1;color:rgb(15 23 42 / var(--tw-text-opacity))}.text-transparent{color:transparent}.decoration-primary{-webkit-text-decoration-color:#0EA5E9;text-decoration-color:#0ea5e9}.decoration-2{text-decoration-thickness:2px}.opacity-0{opacity:0}.shadow-lg{--tw-shadow: 0 10px 15px -3px rgb(0 0 0 / .1), 0 4px 6px -4px rgb(0 0 0 / .1);--tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)}.shadow-sm{--tw-shadow: 0 1px 2px 0 rgb(0 0 0 / .05);--tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)}.ring-1{--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow, 0 0 #0000)}.ring-gray-400{--tw-ring-opacity: 1;--tw-ring-color: rgb(156 163 175 / var(--tw-ring-opacity))}.filter{filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.backdrop-blur-sm{--tw-backdrop-blur: blur(4px);-webkit-backdrop-filter:var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);backdrop-filter:var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia)}html{font-family:Helvetica,sans-serif}em{font-weight:600;font-style:normal;--tw-text-opacity: 1;color:rgb(14 165 233 / var(--tw-text-opacity))}@media (min-width: 640px){.container{margin-left:auto;margin-right:auto}.container{width:66.666667%}}@media (min-width: 768px){.container{width:33.333333%}}.link{-webkit-text-decoration-line:underline;text-decoration-line:underline;-webkit-text-decoration-color:#0EA5E9;text-decoration-color:#0ea5e9;text-decoration-thickness:2px}.link:hover{--tw-text-opacity: 1;color:rgb(14 165 233 / var(--tw-text-opacity))}.dark .link{--tw-text-opacity: 1;color:rgb(229 231 235 / var(--tw-text-opacity))}.hover\:bg-primary\/90:hover{background-color:#0ea5e9e6}.hover\:text-primary:hover{--tw-text-opacity: 1;color:rgb(14 165 233 / var(--tw-text-opacity))}.hover\:underline:hover{-webkit-text-decoration-line:underline;text-decoration-line:underline}.focus\:border-primary:focus{--tw-border-opacity: 1;border-color:rgb(14 165 233 / var(--tw-border-opacity))}.focus\:outline-none:focus{outline:2px solid transparent;outline-offset:2px}.focus\:ring-2:focus{--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow, 0 0 #0000)}.focus\:ring-slate-400:focus{--tw-ring-opacity: 1;--tw-ring-color: rgb(148 163 184 / var(--tw-ring-opacity))}.focus\:ring-primary\/25:focus{--tw-ring-color: rgb(14 165 233 / .25)}.focus\:ring-offset-2:focus{--tw-ring-offset-width: 2px}.focus\:ring-offset-slate-50:focus{--tw-ring-offset-color: #f8fafc}.dark .dark\:border{border-width:1px}.dark .dark\:border-slate-600{--tw-border-opacity: 1;border-color:rgb(71 85 105 / var(--tw-border-opacity))}.dark .dark\:border-gray-400{--tw-border-opacity: 1;border-color:rgb(156 163 175 / var(--tw-border-opacity))}.dark .dark\:bg-gray-900{--tw-bg-opacity: 1;background-color:rgb(17 24 39 / var(--tw-bg-opacity))}.dark .dark\:bg-gray-800{--tw-bg-opacity: 1;background-color:rgb(31 41 55 / var(--tw-bg-opacity))}.dark .dark\:text-gray-200{--tw-text-opacity: 1;color:rgb(229 231 235 / var(--tw-text-opacity))}.dark .dark\:text-white{--tw-text-opacity: 1;color:rgb(255 255 255 / var(--tw-text-opacity))}.dark .dark\:text-slate-400{--tw-text-opacity: 1;color:rgb(148 163 184 / var(--tw-text-opacity))}.dark .dark\:text-slate-200{--tw-text-opacity: 1;color:rgb(226 232 240 / var(--tw-text-opacity))}.dark .dark\:text-slate-300{--tw-text-opacity: 1;color:rgb(203 213 225 / var(--tw-text-opacity))}.dark .dark\:text-slate-100{--tw-text-opacity: 1;color:rgb(241 245 249 / var(--tw-text-opacity))}.dark .dark\:hover\:text-slate-200:hover{--tw-text-opacity: 1;color:rgb(226 232 240 / var(--tw-text-opacity))}@media (min-width: 640px){.sm\:w-1\/4{width:25%}.sm\:px-6{padding-left:1.5rem;padding-right:1.5rem}.sm\:text-center{text-align:center}.sm\:text-5xl{font-size:3rem;line-height:1}}@media (min-width: 768px){.md\:mx-80{margin-left:20rem;margin-right:20rem}.md\:my-8{margin-top:2rem;margin-bottom:2rem}.md\:mb-12{margin-bottom:3rem}.md\:mt-5{margin-top:1.25rem}.md\:mb-3{margin-bottom:.75rem}.md\:flex{display:flex}.md\:hidden{display:none}.md\:max-w-3xl{max-width:48rem}.md\:gap-6{gap:1.5rem}.md\:text-2xl{font-size:1.5rem;line-height:2rem}.md\:text-4xl{font-size:2.25rem;line-height:2.5rem}}@media (min-width: 1024px){.lg\:block{display:block}.lg\:text-6xl{font-size:3.75rem;line-height:1}}@font-face{font-family:bootstrap-icons;src:url(/locutionis/_app/assets/bootstrap-icons-c874e14c.woff2?524846017b983fc8ded9325d94ed40f3) format("woff2"),url(/locutionis/_app/assets/bootstrap-icons-92f8082b.woff?524846017b983fc8ded9325d94ed40f3) format("woff")}.bi:before,[class^=bi-]:before,[class*=" bi-"]:before{display:inline-block;font-family:bootstrap-icons!important;font-style:normal;font-weight:400!important;font-variant:normal;text-transform:none;line-height:1;vertical-align:-.125em;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.bi-123:before{content:"\f67f"}.bi-alarm-fill:before{content:"\f101"}.bi-alarm:before{content:"\f102"}.bi-align-bottom:before{content:"\f103"}.bi-align-center:before{content:"\f104"}.bi-align-end:before{content:"\f105"}.bi-align-middle:before{content:"\f106"}.bi-align-start:before{content:"\f107"}.bi-align-top:before{content:"\f108"}.bi-alt:before{content:"\f109"}.bi-app-indicator:before{content:"\f10a"}.bi-app:before{content:"\f10b"}.bi-archive-fill:before{content:"\f10c"}.bi-archive:before{content:"\f10d"}.bi-arrow-90deg-down:before{content:"\f10e"}.bi-arrow-90deg-left:before{content:"\f10f"}.bi-arrow-90deg-right:before{content:"\f110"}.bi-arrow-90deg-up:before{content:"\f111"}.bi-arrow-bar-down:before{content:"\f112"}.bi-arrow-bar-left:before{content:"\f113"}.bi-arrow-bar-right:before{content:"\f114"}.bi-arrow-bar-up:before{content:"\f115"}.bi-arrow-clockwise:before{content:"\f116"}.bi-arrow-counterclockwise:before{content:"\f117"}.bi-arrow-down-circle-fill:before{content:"\f118"}.bi-arrow-down-circle:before{content:"\f119"}.bi-arrow-down-left-circle-fill:before{content:"\f11a"}.bi-arrow-down-left-circle:before{content:"\f11b"}.bi-arrow-down-left-square-fill:before{content:"\f11c"}.bi-arrow-down-left-square:before{content:"\f11d"}.bi-arrow-down-left:before{content:"\f11e"}.bi-arrow-down-right-circle-fill:before{content:"\f11f"}.bi-arrow-down-right-circle:before{content:"\f120"}.bi-arrow-down-right-square-fill:before{content:"\f121"}.bi-arrow-down-right-square:before{content:"\f122"}.bi-arrow-down-right:before{content:"\f123"}.bi-arrow-down-short:before{content:"\f124"}.bi-arrow-down-square-fill:before{content:"\f125"}.bi-arrow-down-square:before{content:"\f126"}.bi-arrow-down-up:before{content:"\f127"}.bi-arrow-down:before{content:"\f128"}.bi-arrow-left-circle-fill:before{content:"\f129"}.bi-arrow-left-circle:before{content:"\f12a"}.bi-arrow-left-right:before{content:"\f12b"}.bi-arrow-left-short:before{content:"\f12c"}.bi-arrow-left-square-fill:before{content:"\f12d"}.bi-arrow-left-square:before{content:"\f12e"}.bi-arrow-left:before{content:"\f12f"}.bi-arrow-repeat:before{content:"\f130"}.bi-arrow-return-left:before{content:"\f131"}.bi-arrow-return-right:before{content:"\f132"}.bi-arrow-right-circle-fill:before{content:"\f133"}.bi-arrow-right-circle:before{content:"\f134"}.bi-arrow-right-short:before{content:"\f135"}.bi-arrow-right-square-fill:before{content:"\f136"}.bi-arrow-right-square:before{content:"\f137"}.bi-arrow-right:before{content:"\f138"}.bi-arrow-up-circle-fill:before{content:"\f139"}.bi-arrow-up-circle:before{content:"\f13a"}.bi-arrow-up-left-circle-fill:before{content:"\f13b"}.bi-arrow-up-left-circle:before{content:"\f13c"}.bi-arrow-up-left-square-fill:before{content:"\f13d"}.bi-arrow-up-left-square:before{content:"\f13e"}.bi-arrow-up-left:before{content:"\f13f"}.bi-arrow-up-right-circle-fill:before{content:"\f140"}.bi-arrow-up-right-circle:before{content:"\f141"}.bi-arrow-up-right-square-fill:before{content:"\f142"}.bi-arrow-up-right-square:before{content:"\f143"}.bi-arrow-up-right:before{content:"\f144"}.bi-arrow-up-short:before{content:"\f145"}.bi-arrow-up-square-fill:before{content:"\f146"}.bi-arrow-up-square:before{content:"\f147"}.bi-arrow-up:before{content:"\f148"}.bi-arrows-angle-contract:before{content:"\f149"}.bi-arrows-angle-expand:before{content:"\f14a"}.bi-arrows-collapse:before{content:"\f14b"}.bi-arrows-expand:before{content:"\f14c"}.bi-arrows-fullscreen:before{content:"\f14d"}.bi-arrows-move:before{content:"\f14e"}.bi-aspect-ratio-fill:before{content:"\f14f"}.bi-aspect-ratio:before{content:"\f150"}.bi-asterisk:before{content:"\f151"}.bi-at:before{content:"\f152"}.bi-award-fill:before{content:"\f153"}.bi-award:before{content:"\f154"}.bi-back:before{content:"\f155"}.bi-backspace-fill:before{content:"\f156"}.bi-backspace-reverse-fill:before{content:"\f157"}.bi-backspace-reverse:before{content:"\f158"}.bi-backspace:before{content:"\f159"}.bi-badge-3d-fill:before{content:"\f15a"}.bi-badge-3d:before{content:"\f15b"}.bi-badge-4k-fill:before{content:"\f15c"}.bi-badge-4k:before{content:"\f15d"}.bi-badge-8k-fill:before{content:"\f15e"}.bi-badge-8k:before{content:"\f15f"}.bi-badge-ad-fill:before{content:"\f160"}.bi-badge-ad:before{content:"\f161"}.bi-badge-ar-fill:before{content:"\f162"}.bi-badge-ar:before{content:"\f163"}.bi-badge-cc-fill:before{content:"\f164"}.bi-badge-cc:before{content:"\f165"}.bi-badge-hd-fill:before{content:"\f166"}.bi-badge-hd:before{content:"\f167"}.bi-badge-tm-fill:before{content:"\f168"}.bi-badge-tm:before{content:"\f169"}.bi-badge-vo-fill:before{content:"\f16a"}.bi-badge-vo:before{content:"\f16b"}.bi-badge-vr-fill:before{content:"\f16c"}.bi-badge-vr:before{content:"\f16d"}.bi-badge-wc-fill:before{content:"\f16e"}.bi-badge-wc:before{content:"\f16f"}.bi-bag-check-fill:before{content:"\f170"}.bi-bag-check:before{content:"\f171"}.bi-bag-dash-fill:before{content:"\f172"}.bi-bag-dash:before{content:"\f173"}.bi-bag-fill:before{content:"\f174"}.bi-bag-plus-fill:before{content:"\f175"}.bi-bag-plus:before{content:"\f176"}.bi-bag-x-fill:before{content:"\f177"}.bi-bag-x:before{content:"\f178"}.bi-bag:before{content:"\f179"}.bi-bar-chart-fill:before{content:"\f17a"}.bi-bar-chart-line-fill:before{content:"\f17b"}.bi-bar-chart-line:before{content:"\f17c"}.bi-bar-chart-steps:before{content:"\f17d"}.bi-bar-chart:before{content:"\f17e"}.bi-basket-fill:before{content:"\f17f"}.bi-basket:before{content:"\f180"}.bi-basket2-fill:before{content:"\f181"}.bi-basket2:before{content:"\f182"}.bi-basket3-fill:before{content:"\f183"}.bi-basket3:before{content:"\f184"}.bi-battery-charging:before{content:"\f185"}.bi-battery-full:before{content:"\f186"}.bi-battery-half:before{content:"\f187"}.bi-battery:before{content:"\f188"}.bi-bell-fill:before{content:"\f189"}.bi-bell:before{content:"\f18a"}.bi-bezier:before{content:"\f18b"}.bi-bezier2:before{content:"\f18c"}.bi-bicycle:before{content:"\f18d"}.bi-binoculars-fill:before{content:"\f18e"}.bi-binoculars:before{content:"\f18f"}.bi-blockquote-left:before{content:"\f190"}.bi-blockquote-right:before{content:"\f191"}.bi-book-fill:before{content:"\f192"}.bi-book-half:before{content:"\f193"}.bi-book:before{content:"\f194"}.bi-bookmark-check-fill:before{content:"\f195"}.bi-bookmark-check:before{content:"\f196"}.bi-bookmark-dash-fill:before{content:"\f197"}.bi-bookmark-dash:before{content:"\f198"}.bi-bookmark-fill:before{content:"\f199"}.bi-bookmark-heart-fill:before{content:"\f19a"}.bi-bookmark-heart:before{content:"\f19b"}.bi-bookmark-plus-fill:before{content:"\f19c"}.bi-bookmark-plus:before{content:"\f19d"}.bi-bookmark-star-fill:before{content:"\f19e"}.bi-bookmark-star:before{content:"\f19f"}.bi-bookmark-x-fill:before{content:"\f1a0"}.bi-bookmark-x:before{content:"\f1a1"}.bi-bookmark:before{content:"\f1a2"}.bi-bookmarks-fill:before{content:"\f1a3"}.bi-bookmarks:before{content:"\f1a4"}.bi-bookshelf:before{content:"\f1a5"}.bi-bootstrap-fill:before{content:"\f1a6"}.bi-bootstrap-reboot:before{content:"\f1a7"}.bi-bootstrap:before{content:"\f1a8"}.bi-border-all:before{content:"\f1a9"}.bi-border-bottom:before{content:"\f1aa"}.bi-border-center:before{content:"\f1ab"}.bi-border-inner:before{content:"\f1ac"}.bi-border-left:before{content:"\f1ad"}.bi-border-middle:before{content:"\f1ae"}.bi-border-outer:before{content:"\f1af"}.bi-border-right:before{content:"\f1b0"}.bi-border-style:before{content:"\f1b1"}.bi-border-top:before{content:"\f1b2"}.bi-border-width:before{content:"\f1b3"}.bi-border:before{content:"\f1b4"}.bi-bounding-box-circles:before{content:"\f1b5"}.bi-bounding-box:before{content:"\f1b6"}.bi-box-arrow-down-left:before{content:"\f1b7"}.bi-box-arrow-down-right:before{content:"\f1b8"}.bi-box-arrow-down:before{content:"\f1b9"}.bi-box-arrow-in-down-left:before{content:"\f1ba"}.bi-box-arrow-in-down-right:before{content:"\f1bb"}.bi-box-arrow-in-down:before{content:"\f1bc"}.bi-box-arrow-in-left:before{content:"\f1bd"}.bi-box-arrow-in-right:before{content:"\f1be"}.bi-box-arrow-in-up-left:before{content:"\f1bf"}.bi-box-arrow-in-up-right:before{content:"\f1c0"}.bi-box-arrow-in-up:before{content:"\f1c1"}.bi-box-arrow-left:before{content:"\f1c2"}.bi-box-arrow-right:before{content:"\f1c3"}.bi-box-arrow-up-left:before{content:"\f1c4"}.bi-box-arrow-up-right:before{content:"\f1c5"}.bi-box-arrow-up:before{content:"\f1c6"}.bi-box-seam:before{content:"\f1c7"}.bi-box:before{content:"\f1c8"}.bi-braces:before{content:"\f1c9"}.bi-bricks:before{content:"\f1ca"}.bi-briefcase-fill:before{content:"\f1cb"}.bi-briefcase:before{content:"\f1cc"}.bi-brightness-alt-high-fill:before{content:"\f1cd"}.bi-brightness-alt-high:before{content:"\f1ce"}.bi-brightness-alt-low-fill:before{content:"\f1cf"}.bi-brightness-alt-low:before{content:"\f1d0"}.bi-brightness-high-fill:before{content:"\f1d1"}.bi-brightness-high:before{content:"\f1d2"}.bi-brightness-low-fill:before{content:"\f1d3"}.bi-brightness-low:before{content:"\f1d4"}.bi-broadcast-pin:before{content:"\f1d5"}.bi-broadcast:before{content:"\f1d6"}.bi-brush-fill:before{content:"\f1d7"}.bi-brush:before{content:"\f1d8"}.bi-bucket-fill:before{content:"\f1d9"}.bi-bucket:before{content:"\f1da"}.bi-bug-fill:before{content:"\f1db"}.bi-bug:before{content:"\f1dc"}.bi-building:before{content:"\f1dd"}.bi-bullseye:before{content:"\f1de"}.bi-calculator-fill:before{content:"\f1df"}.bi-calculator:before{content:"\f1e0"}.bi-calendar-check-fill:before{content:"\f1e1"}.bi-calendar-check:before{content:"\f1e2"}.bi-calendar-date-fill:before{content:"\f1e3"}.bi-calendar-date:before{content:"\f1e4"}.bi-calendar-day-fill:before{content:"\f1e5"}.bi-calendar-day:before{content:"\f1e6"}.bi-calendar-event-fill:before{content:"\f1e7"}.bi-calendar-event:before{content:"\f1e8"}.bi-calendar-fill:before{content:"\f1e9"}.bi-calendar-minus-fill:before{content:"\f1ea"}.bi-calendar-minus:before{content:"\f1eb"}.bi-calendar-month-fill:before{content:"\f1ec"}.bi-calendar-month:before{content:"\f1ed"}.bi-calendar-plus-fill:before{content:"\f1ee"}.bi-calendar-plus:before{content:"\f1ef"}.bi-calendar-range-fill:before{content:"\f1f0"}.bi-calendar-range:before{content:"\f1f1"}.bi-calendar-week-fill:before{content:"\f1f2"}.bi-calendar-week:before{content:"\f1f3"}.bi-calendar-x-fill:before{content:"\f1f4"}.bi-calendar-x:before{content:"\f1f5"}.bi-calendar:before{content:"\f1f6"}.bi-calendar2-check-fill:before{content:"\f1f7"}.bi-calendar2-check:before{content:"\f1f8"}.bi-calendar2-date-fill:before{content:"\f1f9"}.bi-calendar2-date:before{content:"\f1fa"}.bi-calendar2-day-fill:before{content:"\f1fb"}.bi-calendar2-day:before{content:"\f1fc"}.bi-calendar2-event-fill:before{content:"\f1fd"}.bi-calendar2-event:before{content:"\f1fe"}.bi-calendar2-fill:before{content:"\f1ff"}.bi-calendar2-minus-fill:before{content:"\f200"}.bi-calendar2-minus:before{content:"\f201"}.bi-calendar2-month-fill:before{content:"\f202"}.bi-calendar2-month:before{content:"\f203"}.bi-calendar2-plus-fill:before{content:"\f204"}.bi-calendar2-plus:before{content:"\f205"}.bi-calendar2-range-fill:before{content:"\f206"}.bi-calendar2-range:before{content:"\f207"}.bi-calendar2-week-fill:before{content:"\f208"}.bi-calendar2-week:before{content:"\f209"}.bi-calendar2-x-fill:before{content:"\f20a"}.bi-calendar2-x:before{content:"\f20b"}.bi-calendar2:before{content:"\f20c"}.bi-calendar3-event-fill:before{content:"\f20d"}.bi-calendar3-event:before{content:"\f20e"}.bi-calendar3-fill:before{content:"\f20f"}.bi-calendar3-range-fill:before{content:"\f210"}.bi-calendar3-range:before{content:"\f211"}.bi-calendar3-week-fill:before{content:"\f212"}.bi-calendar3-week:before{content:"\f213"}.bi-calendar3:before{content:"\f214"}.bi-calendar4-event:before{content:"\f215"}.bi-calendar4-range:before{content:"\f216"}.bi-calendar4-week:before{content:"\f217"}.bi-calendar4:before{content:"\f218"}.bi-camera-fill:before{content:"\f219"}.bi-camera-reels-fill:before{content:"\f21a"}.bi-camera-reels:before{content:"\f21b"}.bi-camera-video-fill:before{content:"\f21c"}.bi-camera-video-off-fill:before{content:"\f21d"}.bi-camera-video-off:before{content:"\f21e"}.bi-camera-video:before{content:"\f21f"}.bi-camera:before{content:"\f220"}.bi-camera2:before{content:"\f221"}.bi-capslock-fill:before{content:"\f222"}.bi-capslock:before{content:"\f223"}.bi-card-checklist:before{content:"\f224"}.bi-card-heading:before{content:"\f225"}.bi-card-image:before{content:"\f226"}.bi-card-list:before{content:"\f227"}.bi-card-text:before{content:"\f228"}.bi-caret-down-fill:before{content:"\f229"}.bi-caret-down-square-fill:before{content:"\f22a"}.bi-caret-down-square:before{content:"\f22b"}.bi-caret-down:before{content:"\f22c"}.bi-caret-left-fill:before{content:"\f22d"}.bi-caret-left-square-fill:before{content:"\f22e"}.bi-caret-left-square:before{content:"\f22f"}.bi-caret-left:before{content:"\f230"}.bi-caret-right-fill:before{content:"\f231"}.bi-caret-right-square-fill:before{content:"\f232"}.bi-caret-right-square:before{content:"\f233"}.bi-caret-right:before{content:"\f234"}.bi-caret-up-fill:before{content:"\f235"}.bi-caret-up-square-fill:before{content:"\f236"}.bi-caret-up-square:before{content:"\f237"}.bi-caret-up:before{content:"\f238"}.bi-cart-check-fill:before{content:"\f239"}.bi-cart-check:before{content:"\f23a"}.bi-cart-dash-fill:before{content:"\f23b"}.bi-cart-dash:before{content:"\f23c"}.bi-cart-fill:before{content:"\f23d"}.bi-cart-plus-fill:before{content:"\f23e"}.bi-cart-plus:before{content:"\f23f"}.bi-cart-x-fill:before{content:"\f240"}.bi-cart-x:before{content:"\f241"}.bi-cart:before{content:"\f242"}.bi-cart2:before{content:"\f243"}.bi-cart3:before{content:"\f244"}.bi-cart4:before{content:"\f245"}.bi-cash-stack:before{content:"\f246"}.bi-cash:before{content:"\f247"}.bi-cast:before{content:"\f248"}.bi-chat-dots-fill:before{content:"\f249"}.bi-chat-dots:before{content:"\f24a"}.bi-chat-fill:before{content:"\f24b"}.bi-chat-left-dots-fill:before{content:"\f24c"}.bi-chat-left-dots:before{content:"\f24d"}.bi-chat-left-fill:before{content:"\f24e"}.bi-chat-left-quote-fill:before{content:"\f24f"}.bi-chat-left-quote:before{content:"\f250"}.bi-chat-left-text-fill:before{content:"\f251"}.bi-chat-left-text:before{content:"\f252"}.bi-chat-left:before{content:"\f253"}.bi-chat-quote-fill:before{content:"\f254"}.bi-chat-quote:before{content:"\f255"}.bi-chat-right-dots-fill:before{content:"\f256"}.bi-chat-right-dots:before{content:"\f257"}.bi-chat-right-fill:before{content:"\f258"}.bi-chat-right-quote-fill:before{content:"\f259"}.bi-chat-right-quote:before{content:"\f25a"}.bi-chat-right-text-fill:before{content:"\f25b"}.bi-chat-right-text:before{content:"\f25c"}.bi-chat-right:before{content:"\f25d"}.bi-chat-square-dots-fill:before{content:"\f25e"}.bi-chat-square-dots:before{content:"\f25f"}.bi-chat-square-fill:before{content:"\f260"}.bi-chat-square-quote-fill:before{content:"\f261"}.bi-chat-square-quote:before{content:"\f262"}.bi-chat-square-text-fill:before{content:"\f263"}.bi-chat-square-text:before{content:"\f264"}.bi-chat-square:before{content:"\f265"}.bi-chat-text-fill:before{content:"\f266"}.bi-chat-text:before{content:"\f267"}.bi-chat:before{content:"\f268"}.bi-check-all:before{content:"\f269"}.bi-check-circle-fill:before{content:"\f26a"}.bi-check-circle:before{content:"\f26b"}.bi-check-square-fill:before{content:"\f26c"}.bi-check-square:before{content:"\f26d"}.bi-check:before{content:"\f26e"}.bi-check2-all:before{content:"\f26f"}.bi-check2-circle:before{content:"\f270"}.bi-check2-square:before{content:"\f271"}.bi-check2:before{content:"\f272"}.bi-chevron-bar-contract:before{content:"\f273"}.bi-chevron-bar-down:before{content:"\f274"}.bi-chevron-bar-expand:before{content:"\f275"}.bi-chevron-bar-left:before{content:"\f276"}.bi-chevron-bar-right:before{content:"\f277"}.bi-chevron-bar-up:before{content:"\f278"}.bi-chevron-compact-down:before{content:"\f279"}.bi-chevron-compact-left:before{content:"\f27a"}.bi-chevron-compact-right:before{content:"\f27b"}.bi-chevron-compact-up:before{content:"\f27c"}.bi-chevron-contract:before{content:"\f27d"}.bi-chevron-double-down:before{content:"\f27e"}.bi-chevron-double-left:before{content:"\f27f"}.bi-chevron-double-right:before{content:"\f280"}.bi-chevron-double-up:before{content:"\f281"}.bi-chevron-down:before{content:"\f282"}.bi-chevron-expand:before{content:"\f283"}.bi-chevron-left:before{content:"\f284"}.bi-chevron-right:before{content:"\f285"}.bi-chevron-up:before{content:"\f286"}.bi-circle-fill:before{content:"\f287"}.bi-circle-half:before{content:"\f288"}.bi-circle-square:before{content:"\f289"}.bi-circle:before{content:"\f28a"}.bi-clipboard-check:before{content:"\f28b"}.bi-clipboard-data:before{content:"\f28c"}.bi-clipboard-minus:before{content:"\f28d"}.bi-clipboard-plus:before{content:"\f28e"}.bi-clipboard-x:before{content:"\f28f"}.bi-clipboard:before{content:"\f290"}.bi-clock-fill:before{content:"\f291"}.bi-clock-history:before{content:"\f292"}.bi-clock:before{content:"\f293"}.bi-cloud-arrow-down-fill:before{content:"\f294"}.bi-cloud-arrow-down:before{content:"\f295"}.bi-cloud-arrow-up-fill:before{content:"\f296"}.bi-cloud-arrow-up:before{content:"\f297"}.bi-cloud-check-fill:before{content:"\f298"}.bi-cloud-check:before{content:"\f299"}.bi-cloud-download-fill:before{content:"\f29a"}.bi-cloud-download:before{content:"\f29b"}.bi-cloud-drizzle-fill:before{content:"\f29c"}.bi-cloud-drizzle:before{content:"\f29d"}.bi-cloud-fill:before{content:"\f29e"}.bi-cloud-fog-fill:before{content:"\f29f"}.bi-cloud-fog:before{content:"\f2a0"}.bi-cloud-fog2-fill:before{content:"\f2a1"}.bi-cloud-fog2:before{content:"\f2a2"}.bi-cloud-hail-fill:before{content:"\f2a3"}.bi-cloud-hail:before{content:"\f2a4"}.bi-cloud-haze-1:before{content:"\f2a5"}.bi-cloud-haze-fill:before{content:"\f2a6"}.bi-cloud-haze:before{content:"\f2a7"}.bi-cloud-haze2-fill:before{content:"\f2a8"}.bi-cloud-lightning-fill:before{content:"\f2a9"}.bi-cloud-lightning-rain-fill:before{content:"\f2aa"}.bi-cloud-lightning-rain:before{content:"\f2ab"}.bi-cloud-lightning:before{content:"\f2ac"}.bi-cloud-minus-fill:before{content:"\f2ad"}.bi-cloud-minus:before{content:"\f2ae"}.bi-cloud-moon-fill:before{content:"\f2af"}.bi-cloud-moon:before{content:"\f2b0"}.bi-cloud-plus-fill:before{content:"\f2b1"}.bi-cloud-plus:before{content:"\f2b2"}.bi-cloud-rain-fill:before{content:"\f2b3"}.bi-cloud-rain-heavy-fill:before{content:"\f2b4"}.bi-cloud-rain-heavy:before{content:"\f2b5"}.bi-cloud-rain:before{content:"\f2b6"}.bi-cloud-slash-fill:before{content:"\f2b7"}.bi-cloud-slash:before{content:"\f2b8"}.bi-cloud-sleet-fill:before{content:"\f2b9"}.bi-cloud-sleet:before{content:"\f2ba"}.bi-cloud-snow-fill:before{content:"\f2bb"}.bi-cloud-snow:before{content:"\f2bc"}.bi-cloud-sun-fill:before{content:"\f2bd"}.bi-cloud-sun:before{content:"\f2be"}.bi-cloud-upload-fill:before{content:"\f2bf"}.bi-cloud-upload:before{content:"\f2c0"}.bi-cloud:before{content:"\f2c1"}.bi-clouds-fill:before{content:"\f2c2"}.bi-clouds:before{content:"\f2c3"}.bi-cloudy-fill:before{content:"\f2c4"}.bi-cloudy:before{content:"\f2c5"}.bi-code-slash:before{content:"\f2c6"}.bi-code-square:before{content:"\f2c7"}.bi-code:before{content:"\f2c8"}.bi-collection-fill:before{content:"\f2c9"}.bi-collection-play-fill:before{content:"\f2ca"}.bi-collection-play:before{content:"\f2cb"}.bi-collection:before{content:"\f2cc"}.bi-columns-gap:before{content:"\f2cd"}.bi-columns:before{content:"\f2ce"}.bi-command:before{content:"\f2cf"}.bi-compass-fill:before{content:"\f2d0"}.bi-compass:before{content:"\f2d1"}.bi-cone-striped:before{content:"\f2d2"}.bi-cone:before{content:"\f2d3"}.bi-controller:before{content:"\f2d4"}.bi-cpu-fill:before{content:"\f2d5"}.bi-cpu:before{content:"\f2d6"}.bi-credit-card-2-back-fill:before{content:"\f2d7"}.bi-credit-card-2-back:before{content:"\f2d8"}.bi-credit-card-2-front-fill:before{content:"\f2d9"}.bi-credit-card-2-front:before{content:"\f2da"}.bi-credit-card-fill:before{content:"\f2db"}.bi-credit-card:before{content:"\f2dc"}.bi-crop:before{content:"\f2dd"}.bi-cup-fill:before{content:"\f2de"}.bi-cup-straw:before{content:"\f2df"}.bi-cup:before{content:"\f2e0"}.bi-cursor-fill:before{content:"\f2e1"}.bi-cursor-text:before{content:"\f2e2"}.bi-cursor:before{content:"\f2e3"}.bi-dash-circle-dotted:before{content:"\f2e4"}.bi-dash-circle-fill:before{content:"\f2e5"}.bi-dash-circle:before{content:"\f2e6"}.bi-dash-square-dotted:before{content:"\f2e7"}.bi-dash-square-fill:before{content:"\f2e8"}.bi-dash-square:before{content:"\f2e9"}.bi-dash:before{content:"\f2ea"}.bi-diagram-2-fill:before{content:"\f2eb"}.bi-diagram-2:before{content:"\f2ec"}.bi-diagram-3-fill:before{content:"\f2ed"}.bi-diagram-3:before{content:"\f2ee"}.bi-diamond-fill:before{content:"\f2ef"}.bi-diamond-half:before{content:"\f2f0"}.bi-diamond:before{content:"\f2f1"}.bi-dice-1-fill:before{content:"\f2f2"}.bi-dice-1:before{content:"\f2f3"}.bi-dice-2-fill:before{content:"\f2f4"}.bi-dice-2:before{content:"\f2f5"}.bi-dice-3-fill:before{content:"\f2f6"}.bi-dice-3:before{content:"\f2f7"}.bi-dice-4-fill:before{content:"\f2f8"}.bi-dice-4:before{content:"\f2f9"}.bi-dice-5-fill:before{content:"\f2fa"}.bi-dice-5:before{content:"\f2fb"}.bi-dice-6-fill:before{content:"\f2fc"}.bi-dice-6:before{content:"\f2fd"}.bi-disc-fill:before{content:"\f2fe"}.bi-disc:before{content:"\f2ff"}.bi-discord:before{content:"\f300"}.bi-display-fill:before{content:"\f301"}.bi-display:before{content:"\f302"}.bi-distribute-horizontal:before{content:"\f303"}.bi-distribute-vertical:before{content:"\f304"}.bi-door-closed-fill:before{content:"\f305"}.bi-door-closed:before{content:"\f306"}.bi-door-open-fill:before{content:"\f307"}.bi-door-open:before{content:"\f308"}.bi-dot:before{content:"\f309"}.bi-download:before{content:"\f30a"}.bi-droplet-fill:before{content:"\f30b"}.bi-droplet-half:before{content:"\f30c"}.bi-droplet:before{content:"\f30d"}.bi-earbuds:before{content:"\f30e"}.bi-easel-fill:before{content:"\f30f"}.bi-easel:before{content:"\f310"}.bi-egg-fill:before{content:"\f311"}.bi-egg-fried:before{content:"\f312"}.bi-egg:before{content:"\f313"}.bi-eject-fill:before{content:"\f314"}.bi-eject:before{content:"\f315"}.bi-emoji-angry-fill:before{content:"\f316"}.bi-emoji-angry:before{content:"\f317"}.bi-emoji-dizzy-fill:before{content:"\f318"}.bi-emoji-dizzy:before{content:"\f319"}.bi-emoji-expressionless-fill:before{content:"\f31a"}.bi-emoji-expressionless:before{content:"\f31b"}.bi-emoji-frown-fill:before{content:"\f31c"}.bi-emoji-frown:before{content:"\f31d"}.bi-emoji-heart-eyes-fill:before{content:"\f31e"}.bi-emoji-heart-eyes:before{content:"\f31f"}.bi-emoji-laughing-fill:before{content:"\f320"}.bi-emoji-laughing:before{content:"\f321"}.bi-emoji-neutral-fill:before{content:"\f322"}.bi-emoji-neutral:before{content:"\f323"}.bi-emoji-smile-fill:before{content:"\f324"}.bi-emoji-smile-upside-down-fill:before{content:"\f325"}.bi-emoji-smile-upside-down:before{content:"\f326"}.bi-emoji-smile:before{content:"\f327"}.bi-emoji-sunglasses-fill:before{content:"\f328"}.bi-emoji-sunglasses:before{content:"\f329"}.bi-emoji-wink-fill:before{content:"\f32a"}.bi-emoji-wink:before{content:"\f32b"}.bi-envelope-fill:before{content:"\f32c"}.bi-envelope-open-fill:before{content:"\f32d"}.bi-envelope-open:before{content:"\f32e"}.bi-envelope:before{content:"\f32f"}.bi-eraser-fill:before{content:"\f330"}.bi-eraser:before{content:"\f331"}.bi-exclamation-circle-fill:before{content:"\f332"}.bi-exclamation-circle:before{content:"\f333"}.bi-exclamation-diamond-fill:before{content:"\f334"}.bi-exclamation-diamond:before{content:"\f335"}.bi-exclamation-octagon-fill:before{content:"\f336"}.bi-exclamation-octagon:before{content:"\f337"}.bi-exclamation-square-fill:before{content:"\f338"}.bi-exclamation-square:before{content:"\f339"}.bi-exclamation-triangle-fill:before{content:"\f33a"}.bi-exclamation-triangle:before{content:"\f33b"}.bi-exclamation:before{content:"\f33c"}.bi-exclude:before{content:"\f33d"}.bi-eye-fill:before{content:"\f33e"}.bi-eye-slash-fill:before{content:"\f33f"}.bi-eye-slash:before{content:"\f340"}.bi-eye:before{content:"\f341"}.bi-eyedropper:before{content:"\f342"}.bi-eyeglasses:before{content:"\f343"}.bi-facebook:before{content:"\f344"}.bi-file-arrow-down-fill:before{content:"\f345"}.bi-file-arrow-down:before{content:"\f346"}.bi-file-arrow-up-fill:before{content:"\f347"}.bi-file-arrow-up:before{content:"\f348"}.bi-file-bar-graph-fill:before{content:"\f349"}.bi-file-bar-graph:before{content:"\f34a"}.bi-file-binary-fill:before{content:"\f34b"}.bi-file-binary:before{content:"\f34c"}.bi-file-break-fill:before{content:"\f34d"}.bi-file-break:before{content:"\f34e"}.bi-file-check-fill:before{content:"\f34f"}.bi-file-check:before{content:"\f350"}.bi-file-code-fill:before{content:"\f351"}.bi-file-code:before{content:"\f352"}.bi-file-diff-fill:before{content:"\f353"}.bi-file-diff:before{content:"\f354"}.bi-file-earmark-arrow-down-fill:before{content:"\f355"}.bi-file-earmark-arrow-down:before{content:"\f356"}.bi-file-earmark-arrow-up-fill:before{content:"\f357"}.bi-file-earmark-arrow-up:before{content:"\f358"}.bi-file-earmark-bar-graph-fill:before{content:"\f359"}.bi-file-earmark-bar-graph:before{content:"\f35a"}.bi-file-earmark-binary-fill:before{content:"\f35b"}.bi-file-earmark-binary:before{content:"\f35c"}.bi-file-earmark-break-fill:before{content:"\f35d"}.bi-file-earmark-break:before{content:"\f35e"}.bi-file-earmark-check-fill:before{content:"\f35f"}.bi-file-earmark-check:before{content:"\f360"}.bi-file-earmark-code-fill:before{content:"\f361"}.bi-file-earmark-code:before{content:"\f362"}.bi-file-earmark-diff-fill:before{content:"\f363"}.bi-file-earmark-diff:before{content:"\f364"}.bi-file-earmark-easel-fill:before{content:"\f365"}.bi-file-earmark-easel:before{content:"\f366"}.bi-file-earmark-excel-fill:before{content:"\f367"}.bi-file-earmark-excel:before{content:"\f368"}.bi-file-earmark-fill:before{content:"\f369"}.bi-file-earmark-font-fill:before{content:"\f36a"}.bi-file-earmark-font:before{content:"\f36b"}.bi-file-earmark-image-fill:before{content:"\f36c"}.bi-file-earmark-image:before{content:"\f36d"}.bi-file-earmark-lock-fill:before{content:"\f36e"}.bi-file-earmark-lock:before{content:"\f36f"}.bi-file-earmark-lock2-fill:before{content:"\f370"}.bi-file-earmark-lock2:before{content:"\f371"}.bi-file-earmark-medical-fill:before{content:"\f372"}.bi-file-earmark-medical:before{content:"\f373"}.bi-file-earmark-minus-fill:before{content:"\f374"}.bi-file-earmark-minus:before{content:"\f375"}.bi-file-earmark-music-fill:before{content:"\f376"}.bi-file-earmark-music:before{content:"\f377"}.bi-file-earmark-person-fill:before{content:"\f378"}.bi-file-earmark-person:before{content:"\f379"}.bi-file-earmark-play-fill:before{content:"\f37a"}.bi-file-earmark-play:before{content:"\f37b"}.bi-file-earmark-plus-fill:before{content:"\f37c"}.bi-file-earmark-plus:before{content:"\f37d"}.bi-file-earmark-post-fill:before{content:"\f37e"}.bi-file-earmark-post:before{content:"\f37f"}.bi-file-earmark-ppt-fill:before{content:"\f380"}.bi-file-earmark-ppt:before{content:"\f381"}.bi-file-earmark-richtext-fill:before{content:"\f382"}.bi-file-earmark-richtext:before{content:"\f383"}.bi-file-earmark-ruled-fill:before{content:"\f384"}.bi-file-earmark-ruled:before{content:"\f385"}.bi-file-earmark-slides-fill:before{content:"\f386"}.bi-file-earmark-slides:before{content:"\f387"}.bi-file-earmark-spreadsheet-fill:before{content:"\f388"}.bi-file-earmark-spreadsheet:before{content:"\f389"}.bi-file-earmark-text-fill:before{content:"\f38a"}.bi-file-earmark-text:before{content:"\f38b"}.bi-file-earmark-word-fill:before{content:"\f38c"}.bi-file-earmark-word:before{content:"\f38d"}.bi-file-earmark-x-fill:before{content:"\f38e"}.bi-file-earmark-x:before{content:"\f38f"}.bi-file-earmark-zip-fill:before{content:"\f390"}.bi-file-earmark-zip:before{content:"\f391"}.bi-file-earmark:before{content:"\f392"}.bi-file-easel-fill:before{content:"\f393"}.bi-file-easel:before{content:"\f394"}.bi-file-excel-fill:before{content:"\f395"}.bi-file-excel:before{content:"\f396"}.bi-file-fill:before{content:"\f397"}.bi-file-font-fill:before{content:"\f398"}.bi-file-font:before{content:"\f399"}.bi-file-image-fill:before{content:"\f39a"}.bi-file-image:before{content:"\f39b"}.bi-file-lock-fill:before{content:"\f39c"}.bi-file-lock:before{content:"\f39d"}.bi-file-lock2-fill:before{content:"\f39e"}.bi-file-lock2:before{content:"\f39f"}.bi-file-medical-fill:before{content:"\f3a0"}.bi-file-medical:before{content:"\f3a1"}.bi-file-minus-fill:before{content:"\f3a2"}.bi-file-minus:before{content:"\f3a3"}.bi-file-music-fill:before{content:"\f3a4"}.bi-file-music:before{content:"\f3a5"}.bi-file-person-fill:before{content:"\f3a6"}.bi-file-person:before{content:"\f3a7"}.bi-file-play-fill:before{content:"\f3a8"}.bi-file-play:before{content:"\f3a9"}.bi-file-plus-fill:before{content:"\f3aa"}.bi-file-plus:before{content:"\f3ab"}.bi-file-post-fill:before{content:"\f3ac"}.bi-file-post:before{content:"\f3ad"}.bi-file-ppt-fill:before{content:"\f3ae"}.bi-file-ppt:before{content:"\f3af"}.bi-file-richtext-fill:before{content:"\f3b0"}.bi-file-richtext:before{content:"\f3b1"}.bi-file-ruled-fill:before{content:"\f3b2"}.bi-file-ruled:before{content:"\f3b3"}.bi-file-slides-fill:before{content:"\f3b4"}.bi-file-slides:before{content:"\f3b5"}.bi-file-spreadsheet-fill:before{content:"\f3b6"}.bi-file-spreadsheet:before{content:"\f3b7"}.bi-file-text-fill:before{content:"\f3b8"}.bi-file-text:before{content:"\f3b9"}.bi-file-word-fill:before{content:"\f3ba"}.bi-file-word:before{content:"\f3bb"}.bi-file-x-fill:before{content:"\f3bc"}.bi-file-x:before{content:"\f3bd"}.bi-file-zip-fill:before{content:"\f3be"}.bi-file-zip:before{content:"\f3bf"}.bi-file:before{content:"\f3c0"}.bi-files-alt:before{content:"\f3c1"}.bi-files:before{content:"\f3c2"}.bi-film:before{content:"\f3c3"}.bi-filter-circle-fill:before{content:"\f3c4"}.bi-filter-circle:before{content:"\f3c5"}.bi-filter-left:before{content:"\f3c6"}.bi-filter-right:before{content:"\f3c7"}.bi-filter-square-fill:before{content:"\f3c8"}.bi-filter-square:before{content:"\f3c9"}.bi-filter:before{content:"\f3ca"}.bi-flag-fill:before{content:"\f3cb"}.bi-flag:before{content:"\f3cc"}.bi-flower1:before{content:"\f3cd"}.bi-flower2:before{content:"\f3ce"}.bi-flower3:before{content:"\f3cf"}.bi-folder-check:before{content:"\f3d0"}.bi-folder-fill:before{content:"\f3d1"}.bi-folder-minus:before{content:"\f3d2"}.bi-folder-plus:before{content:"\f3d3"}.bi-folder-symlink-fill:before{content:"\f3d4"}.bi-folder-symlink:before{content:"\f3d5"}.bi-folder-x:before{content:"\f3d6"}.bi-folder:before{content:"\f3d7"}.bi-folder2-open:before{content:"\f3d8"}.bi-folder2:before{content:"\f3d9"}.bi-fonts:before{content:"\f3da"}.bi-forward-fill:before{content:"\f3db"}.bi-forward:before{content:"\f3dc"}.bi-front:before{content:"\f3dd"}.bi-fullscreen-exit:before{content:"\f3de"}.bi-fullscreen:before{content:"\f3df"}.bi-funnel-fill:before{content:"\f3e0"}.bi-funnel:before{content:"\f3e1"}.bi-gear-fill:before{content:"\f3e2"}.bi-gear-wide-connected:before{content:"\f3e3"}.bi-gear-wide:before{content:"\f3e4"}.bi-gear:before{content:"\f3e5"}.bi-gem:before{content:"\f3e6"}.bi-geo-alt-fill:before{content:"\f3e7"}.bi-geo-alt:before{content:"\f3e8"}.bi-geo-fill:before{content:"\f3e9"}.bi-geo:before{content:"\f3ea"}.bi-gift-fill:before{content:"\f3eb"}.bi-gift:before{content:"\f3ec"}.bi-github:before{content:"\f3ed"}.bi-globe:before{content:"\f3ee"}.bi-globe2:before{content:"\f3ef"}.bi-google:before{content:"\f3f0"}.bi-graph-down:before{content:"\f3f1"}.bi-graph-up:before{content:"\f3f2"}.bi-grid-1x2-fill:before{content:"\f3f3"}.bi-grid-1x2:before{content:"\f3f4"}.bi-grid-3x2-gap-fill:before{content:"\f3f5"}.bi-grid-3x2-gap:before{content:"\f3f6"}.bi-grid-3x2:before{content:"\f3f7"}.bi-grid-3x3-gap-fill:before{content:"\f3f8"}.bi-grid-3x3-gap:before{content:"\f3f9"}.bi-grid-3x3:before{content:"\f3fa"}.bi-grid-fill:before{content:"\f3fb"}.bi-grid:before{content:"\f3fc"}.bi-grip-horizontal:before{content:"\f3fd"}.bi-grip-vertical:before{content:"\f3fe"}.bi-hammer:before{content:"\f3ff"}.bi-hand-index-fill:before{content:"\f400"}.bi-hand-index-thumb-fill:before{content:"\f401"}.bi-hand-index-thumb:before{content:"\f402"}.bi-hand-index:before{content:"\f403"}.bi-hand-thumbs-down-fill:before{content:"\f404"}.bi-hand-thumbs-down:before{content:"\f405"}.bi-hand-thumbs-up-fill:before{content:"\f406"}.bi-hand-thumbs-up:before{content:"\f407"}.bi-handbag-fill:before{content:"\f408"}.bi-handbag:before{content:"\f409"}.bi-hash:before{content:"\f40a"}.bi-hdd-fill:before{content:"\f40b"}.bi-hdd-network-fill:before{content:"\f40c"}.bi-hdd-network:before{content:"\f40d"}.bi-hdd-rack-fill:before{content:"\f40e"}.bi-hdd-rack:before{content:"\f40f"}.bi-hdd-stack-fill:before{content:"\f410"}.bi-hdd-stack:before{content:"\f411"}.bi-hdd:before{content:"\f412"}.bi-headphones:before{content:"\f413"}.bi-headset:before{content:"\f414"}.bi-heart-fill:before{content:"\f415"}.bi-heart-half:before{content:"\f416"}.bi-heart:before{content:"\f417"}.bi-heptagon-fill:before{content:"\f418"}.bi-heptagon-half:before{content:"\f419"}.bi-heptagon:before{content:"\f41a"}.bi-hexagon-fill:before{content:"\f41b"}.bi-hexagon-half:before{content:"\f41c"}.bi-hexagon:before{content:"\f41d"}.bi-hourglass-bottom:before{content:"\f41e"}.bi-hourglass-split:before{content:"\f41f"}.bi-hourglass-top:before{content:"\f420"}.bi-hourglass:before{content:"\f421"}.bi-house-door-fill:before{content:"\f422"}.bi-house-door:before{content:"\f423"}.bi-house-fill:before{content:"\f424"}.bi-house:before{content:"\f425"}.bi-hr:before{content:"\f426"}.bi-hurricane:before{content:"\f427"}.bi-image-alt:before{content:"\f428"}.bi-image-fill:before{content:"\f429"}.bi-image:before{content:"\f42a"}.bi-images:before{content:"\f42b"}.bi-inbox-fill:before{content:"\f42c"}.bi-inbox:before{content:"\f42d"}.bi-inboxes-fill:before{content:"\f42e"}.bi-inboxes:before{content:"\f42f"}.bi-info-circle-fill:before{content:"\f430"}.bi-info-circle:before{content:"\f431"}.bi-info-square-fill:before{content:"\f432"}.bi-info-square:before{content:"\f433"}.bi-info:before{content:"\f434"}.bi-input-cursor-text:before{content:"\f435"}.bi-input-cursor:before{content:"\f436"}.bi-instagram:before{content:"\f437"}.bi-intersect:before{content:"\f438"}.bi-journal-album:before{content:"\f439"}.bi-journal-arrow-down:before{content:"\f43a"}.bi-journal-arrow-up:before{content:"\f43b"}.bi-journal-bookmark-fill:before{content:"\f43c"}.bi-journal-bookmark:before{content:"\f43d"}.bi-journal-check:before{content:"\f43e"}.bi-journal-code:before{content:"\f43f"}.bi-journal-medical:before{content:"\f440"}.bi-journal-minus:before{content:"\f441"}.bi-journal-plus:before{content:"\f442"}.bi-journal-richtext:before{content:"\f443"}.bi-journal-text:before{content:"\f444"}.bi-journal-x:before{content:"\f445"}.bi-journal:before{content:"\f446"}.bi-journals:before{content:"\f447"}.bi-joystick:before{content:"\f448"}.bi-justify-left:before{content:"\f449"}.bi-justify-right:before{content:"\f44a"}.bi-justify:before{content:"\f44b"}.bi-kanban-fill:before{content:"\f44c"}.bi-kanban:before{content:"\f44d"}.bi-key-fill:before{content:"\f44e"}.bi-key:before{content:"\f44f"}.bi-keyboard-fill:before{content:"\f450"}.bi-keyboard:before{content:"\f451"}.bi-ladder:before{content:"\f452"}.bi-lamp-fill:before{content:"\f453"}.bi-lamp:before{content:"\f454"}.bi-laptop-fill:before{content:"\f455"}.bi-laptop:before{content:"\f456"}.bi-layer-backward:before{content:"\f457"}.bi-layer-forward:before{content:"\f458"}.bi-layers-fill:before{content:"\f459"}.bi-layers-half:before{content:"\f45a"}.bi-layers:before{content:"\f45b"}.bi-layout-sidebar-inset-reverse:before{content:"\f45c"}.bi-layout-sidebar-inset:before{content:"\f45d"}.bi-layout-sidebar-reverse:before{content:"\f45e"}.bi-layout-sidebar:before{content:"\f45f"}.bi-layout-split:before{content:"\f460"}.bi-layout-text-sidebar-reverse:before{content:"\f461"}.bi-layout-text-sidebar:before{content:"\f462"}.bi-layout-text-window-reverse:before{content:"\f463"}.bi-layout-text-window:before{content:"\f464"}.bi-layout-three-columns:before{content:"\f465"}.bi-layout-wtf:before{content:"\f466"}.bi-life-preserver:before{content:"\f467"}.bi-lightbulb-fill:before{content:"\f468"}.bi-lightbulb-off-fill:before{content:"\f469"}.bi-lightbulb-off:before{content:"\f46a"}.bi-lightbulb:before{content:"\f46b"}.bi-lightning-charge-fill:before{content:"\f46c"}.bi-lightning-charge:before{content:"\f46d"}.bi-lightning-fill:before{content:"\f46e"}.bi-lightning:before{content:"\f46f"}.bi-link-45deg:before{content:"\f470"}.bi-link:before{content:"\f471"}.bi-linkedin:before{content:"\f472"}.bi-list-check:before{content:"\f473"}.bi-list-nested:before{content:"\f474"}.bi-list-ol:before{content:"\f475"}.bi-list-stars:before{content:"\f476"}.bi-list-task:before{content:"\f477"}.bi-list-ul:before{content:"\f478"}.bi-list:before{content:"\f479"}.bi-lock-fill:before{content:"\f47a"}.bi-lock:before{content:"\f47b"}.bi-mailbox:before{content:"\f47c"}.bi-mailbox2:before{content:"\f47d"}.bi-map-fill:before{content:"\f47e"}.bi-map:before{content:"\f47f"}.bi-markdown-fill:before{content:"\f480"}.bi-markdown:before{content:"\f481"}.bi-mask:before{content:"\f482"}.bi-megaphone-fill:before{content:"\f483"}.bi-megaphone:before{content:"\f484"}.bi-menu-app-fill:before{content:"\f485"}.bi-menu-app:before{content:"\f486"}.bi-menu-button-fill:before{content:"\f487"}.bi-menu-button-wide-fill:before{content:"\f488"}.bi-menu-button-wide:before{content:"\f489"}.bi-menu-button:before{content:"\f48a"}.bi-menu-down:before{content:"\f48b"}.bi-menu-up:before{content:"\f48c"}.bi-mic-fill:before{content:"\f48d"}.bi-mic-mute-fill:before{content:"\f48e"}.bi-mic-mute:before{content:"\f48f"}.bi-mic:before{content:"\f490"}.bi-minecart-loaded:before{content:"\f491"}.bi-minecart:before{content:"\f492"}.bi-moisture:before{content:"\f493"}.bi-moon-fill:before{content:"\f494"}.bi-moon-stars-fill:before{content:"\f495"}.bi-moon-stars:before{content:"\f496"}.bi-moon:before{content:"\f497"}.bi-mouse-fill:before{content:"\f498"}.bi-mouse:before{content:"\f499"}.bi-mouse2-fill:before{content:"\f49a"}.bi-mouse2:before{content:"\f49b"}.bi-mouse3-fill:before{content:"\f49c"}.bi-mouse3:before{content:"\f49d"}.bi-music-note-beamed:before{content:"\f49e"}.bi-music-note-list:before{content:"\f49f"}.bi-music-note:before{content:"\f4a0"}.bi-music-player-fill:before{content:"\f4a1"}.bi-music-player:before{content:"\f4a2"}.bi-newspaper:before{content:"\f4a3"}.bi-node-minus-fill:before{content:"\f4a4"}.bi-node-minus:before{content:"\f4a5"}.bi-node-plus-fill:before{content:"\f4a6"}.bi-node-plus:before{content:"\f4a7"}.bi-nut-fill:before{content:"\f4a8"}.bi-nut:before{content:"\f4a9"}.bi-octagon-fill:before{content:"\f4aa"}.bi-octagon-half:before{content:"\f4ab"}.bi-octagon:before{content:"\f4ac"}.bi-option:before{content:"\f4ad"}.bi-outlet:before{content:"\f4ae"}.bi-paint-bucket:before{content:"\f4af"}.bi-palette-fill:before{content:"\f4b0"}.bi-palette:before{content:"\f4b1"}.bi-palette2:before{content:"\f4b2"}.bi-paperclip:before{content:"\f4b3"}.bi-paragraph:before{content:"\f4b4"}.bi-patch-check-fill:before{content:"\f4b5"}.bi-patch-check:before{content:"\f4b6"}.bi-patch-exclamation-fill:before{content:"\f4b7"}.bi-patch-exclamation:before{content:"\f4b8"}.bi-patch-minus-fill:before{content:"\f4b9"}.bi-patch-minus:before{content:"\f4ba"}.bi-patch-plus-fill:before{content:"\f4bb"}.bi-patch-plus:before{content:"\f4bc"}.bi-patch-question-fill:before{content:"\f4bd"}.bi-patch-question:before{content:"\f4be"}.bi-pause-btn-fill:before{content:"\f4bf"}.bi-pause-btn:before{content:"\f4c0"}.bi-pause-circle-fill:before{content:"\f4c1"}.bi-pause-circle:before{content:"\f4c2"}.bi-pause-fill:before{content:"\f4c3"}.bi-pause:before{content:"\f4c4"}.bi-peace-fill:before{content:"\f4c5"}.bi-peace:before{content:"\f4c6"}.bi-pen-fill:before{content:"\f4c7"}.bi-pen:before{content:"\f4c8"}.bi-pencil-fill:before{content:"\f4c9"}.bi-pencil-square:before{content:"\f4ca"}.bi-pencil:before{content:"\f4cb"}.bi-pentagon-fill:before{content:"\f4cc"}.bi-pentagon-half:before{content:"\f4cd"}.bi-pentagon:before{content:"\f4ce"}.bi-people-fill:before{content:"\f4cf"}.bi-people:before{content:"\f4d0"}.bi-percent:before{content:"\f4d1"}.bi-person-badge-fill:before{content:"\f4d2"}.bi-person-badge:before{content:"\f4d3"}.bi-person-bounding-box:before{content:"\f4d4"}.bi-person-check-fill:before{content:"\f4d5"}.bi-person-check:before{content:"\f4d6"}.bi-person-circle:before{content:"\f4d7"}.bi-person-dash-fill:before{content:"\f4d8"}.bi-person-dash:before{content:"\f4d9"}.bi-person-fill:before{content:"\f4da"}.bi-person-lines-fill:before{content:"\f4db"}.bi-person-plus-fill:before{content:"\f4dc"}.bi-person-plus:before{content:"\f4dd"}.bi-person-square:before{content:"\f4de"}.bi-person-x-fill:before{content:"\f4df"}.bi-person-x:before{content:"\f4e0"}.bi-person:before{content:"\f4e1"}.bi-phone-fill:before{content:"\f4e2"}.bi-phone-landscape-fill:before{content:"\f4e3"}.bi-phone-landscape:before{content:"\f4e4"}.bi-phone-vibrate-fill:before{content:"\f4e5"}.bi-phone-vibrate:before{content:"\f4e6"}.bi-phone:before{content:"\f4e7"}.bi-pie-chart-fill:before{content:"\f4e8"}.bi-pie-chart:before{content:"\f4e9"}.bi-pin-angle-fill:before{content:"\f4ea"}.bi-pin-angle:before{content:"\f4eb"}.bi-pin-fill:before{content:"\f4ec"}.bi-pin:before{content:"\f4ed"}.bi-pip-fill:before{content:"\f4ee"}.bi-pip:before{content:"\f4ef"}.bi-play-btn-fill:before{content:"\f4f0"}.bi-play-btn:before{content:"\f4f1"}.bi-play-circle-fill:before{content:"\f4f2"}.bi-play-circle:before{content:"\f4f3"}.bi-play-fill:before{content:"\f4f4"}.bi-play:before{content:"\f4f5"}.bi-plug-fill:before{content:"\f4f6"}.bi-plug:before{content:"\f4f7"}.bi-plus-circle-dotted:before{content:"\f4f8"}.bi-plus-circle-fill:before{content:"\f4f9"}.bi-plus-circle:before{content:"\f4fa"}.bi-plus-square-dotted:before{content:"\f4fb"}.bi-plus-square-fill:before{content:"\f4fc"}.bi-plus-square:before{content:"\f4fd"}.bi-plus:before{content:"\f4fe"}.bi-power:before{content:"\f4ff"}.bi-printer-fill:before{content:"\f500"}.bi-printer:before{content:"\f501"}.bi-puzzle-fill:before{content:"\f502"}.bi-puzzle:before{content:"\f503"}.bi-question-circle-fill:before{content:"\f504"}.bi-question-circle:before{content:"\f505"}.bi-question-diamond-fill:before{content:"\f506"}.bi-question-diamond:before{content:"\f507"}.bi-question-octagon-fill:before{content:"\f508"}.bi-question-octagon:before{content:"\f509"}.bi-question-square-fill:before{content:"\f50a"}.bi-question-square:before{content:"\f50b"}.bi-question:before{content:"\f50c"}.bi-rainbow:before{content:"\f50d"}.bi-receipt-cutoff:before{content:"\f50e"}.bi-receipt:before{content:"\f50f"}.bi-reception-0:before{content:"\f510"}.bi-reception-1:before{content:"\f511"}.bi-reception-2:before{content:"\f512"}.bi-reception-3:before{content:"\f513"}.bi-reception-4:before{content:"\f514"}.bi-record-btn-fill:before{content:"\f515"}.bi-record-btn:before{content:"\f516"}.bi-record-circle-fill:before{content:"\f517"}.bi-record-circle:before{content:"\f518"}.bi-record-fill:before{content:"\f519"}.bi-record:before{content:"\f51a"}.bi-record2-fill:before{content:"\f51b"}.bi-record2:before{content:"\f51c"}.bi-reply-all-fill:before{content:"\f51d"}.bi-reply-all:before{content:"\f51e"}.bi-reply-fill:before{content:"\f51f"}.bi-reply:before{content:"\f520"}.bi-rss-fill:before{content:"\f521"}.bi-rss:before{content:"\f522"}.bi-rulers:before{content:"\f523"}.bi-save-fill:before{content:"\f524"}.bi-save:before{content:"\f525"}.bi-save2-fill:before{content:"\f526"}.bi-save2:before{content:"\f527"}.bi-scissors:before{content:"\f528"}.bi-screwdriver:before{content:"\f529"}.bi-search:before{content:"\f52a"}.bi-segmented-nav:before{content:"\f52b"}.bi-server:before{content:"\f52c"}.bi-share-fill:before{content:"\f52d"}.bi-share:before{content:"\f52e"}.bi-shield-check:before{content:"\f52f"}.bi-shield-exclamation:before{content:"\f530"}.bi-shield-fill-check:before{content:"\f531"}.bi-shield-fill-exclamation:before{content:"\f532"}.bi-shield-fill-minus:before{content:"\f533"}.bi-shield-fill-plus:before{content:"\f534"}.bi-shield-fill-x:before{content:"\f535"}.bi-shield-fill:before{content:"\f536"}.bi-shield-lock-fill:before{content:"\f537"}.bi-shield-lock:before{content:"\f538"}.bi-shield-minus:before{content:"\f539"}.bi-shield-plus:before{content:"\f53a"}.bi-shield-shaded:before{content:"\f53b"}.bi-shield-slash-fill:before{content:"\f53c"}.bi-shield-slash:before{content:"\f53d"}.bi-shield-x:before{content:"\f53e"}.bi-shield:before{content:"\f53f"}.bi-shift-fill:before{content:"\f540"}.bi-shift:before{content:"\f541"}.bi-shop-window:before{content:"\f542"}.bi-shop:before{content:"\f543"}.bi-shuffle:before{content:"\f544"}.bi-signpost-2-fill:before{content:"\f545"}.bi-signpost-2:before{content:"\f546"}.bi-signpost-fill:before{content:"\f547"}.bi-signpost-split-fill:before{content:"\f548"}.bi-signpost-split:before{content:"\f549"}.bi-signpost:before{content:"\f54a"}.bi-sim-fill:before{content:"\f54b"}.bi-sim:before{content:"\f54c"}.bi-skip-backward-btn-fill:before{content:"\f54d"}.bi-skip-backward-btn:before{content:"\f54e"}.bi-skip-backward-circle-fill:before{content:"\f54f"}.bi-skip-backward-circle:before{content:"\f550"}.bi-skip-backward-fill:before{content:"\f551"}.bi-skip-backward:before{content:"\f552"}.bi-skip-end-btn-fill:before{content:"\f553"}.bi-skip-end-btn:before{content:"\f554"}.bi-skip-end-circle-fill:before{content:"\f555"}.bi-skip-end-circle:before{content:"\f556"}.bi-skip-end-fill:before{content:"\f557"}.bi-skip-end:before{content:"\f558"}.bi-skip-forward-btn-fill:before{content:"\f559"}.bi-skip-forward-btn:before{content:"\f55a"}.bi-skip-forward-circle-fill:before{content:"\f55b"}.bi-skip-forward-circle:before{content:"\f55c"}.bi-skip-forward-fill:before{content:"\f55d"}.bi-skip-forward:before{content:"\f55e"}.bi-skip-start-btn-fill:before{content:"\f55f"}.bi-skip-start-btn:before{content:"\f560"}.bi-skip-start-circle-fill:before{content:"\f561"}.bi-skip-start-circle:before{content:"\f562"}.bi-skip-start-fill:before{content:"\f563"}.bi-skip-start:before{content:"\f564"}.bi-slack:before{content:"\f565"}.bi-slash-circle-fill:before{content:"\f566"}.bi-slash-circle:before{content:"\f567"}.bi-slash-square-fill:before{content:"\f568"}.bi-slash-square:before{content:"\f569"}.bi-slash:before{content:"\f56a"}.bi-sliders:before{content:"\f56b"}.bi-smartwatch:before{content:"\f56c"}.bi-snow:before{content:"\f56d"}.bi-snow2:before{content:"\f56e"}.bi-snow3:before{content:"\f56f"}.bi-sort-alpha-down-alt:before{content:"\f570"}.bi-sort-alpha-down:before{content:"\f571"}.bi-sort-alpha-up-alt:before{content:"\f572"}.bi-sort-alpha-up:before{content:"\f573"}.bi-sort-down-alt:before{content:"\f574"}.bi-sort-down:before{content:"\f575"}.bi-sort-numeric-down-alt:before{content:"\f576"}.bi-sort-numeric-down:before{content:"\f577"}.bi-sort-numeric-up-alt:before{content:"\f578"}.bi-sort-numeric-up:before{content:"\f579"}.bi-sort-up-alt:before{content:"\f57a"}.bi-sort-up:before{content:"\f57b"}.bi-soundwave:before{content:"\f57c"}.bi-speaker-fill:before{content:"\f57d"}.bi-speaker:before{content:"\f57e"}.bi-speedometer:before{content:"\f57f"}.bi-speedometer2:before{content:"\f580"}.bi-spellcheck:before{content:"\f581"}.bi-square-fill:before{content:"\f582"}.bi-square-half:before{content:"\f583"}.bi-square:before{content:"\f584"}.bi-stack:before{content:"\f585"}.bi-star-fill:before{content:"\f586"}.bi-star-half:before{content:"\f587"}.bi-star:before{content:"\f588"}.bi-stars:before{content:"\f589"}.bi-stickies-fill:before{content:"\f58a"}.bi-stickies:before{content:"\f58b"}.bi-sticky-fill:before{content:"\f58c"}.bi-sticky:before{content:"\f58d"}.bi-stop-btn-fill:before{content:"\f58e"}.bi-stop-btn:before{content:"\f58f"}.bi-stop-circle-fill:before{content:"\f590"}.bi-stop-circle:before{content:"\f591"}.bi-stop-fill:before{content:"\f592"}.bi-stop:before{content:"\f593"}.bi-stoplights-fill:before{content:"\f594"}.bi-stoplights:before{content:"\f595"}.bi-stopwatch-fill:before{content:"\f596"}.bi-stopwatch:before{content:"\f597"}.bi-subtract:before{content:"\f598"}.bi-suit-club-fill:before{content:"\f599"}.bi-suit-club:before{content:"\f59a"}.bi-suit-diamond-fill:before{content:"\f59b"}.bi-suit-diamond:before{content:"\f59c"}.bi-suit-heart-fill:before{content:"\f59d"}.bi-suit-heart:before{content:"\f59e"}.bi-suit-spade-fill:before{content:"\f59f"}.bi-suit-spade:before{content:"\f5a0"}.bi-sun-fill:before{content:"\f5a1"}.bi-sun:before{content:"\f5a2"}.bi-sunglasses:before{content:"\f5a3"}.bi-sunrise-fill:before{content:"\f5a4"}.bi-sunrise:before{content:"\f5a5"}.bi-sunset-fill:before{content:"\f5a6"}.bi-sunset:before{content:"\f5a7"}.bi-symmetry-horizontal:before{content:"\f5a8"}.bi-symmetry-vertical:before{content:"\f5a9"}.bi-table:before{content:"\f5aa"}.bi-tablet-fill:before{content:"\f5ab"}.bi-tablet-landscape-fill:before{content:"\f5ac"}.bi-tablet-landscape:before{content:"\f5ad"}.bi-tablet:before{content:"\f5ae"}.bi-tag-fill:before{content:"\f5af"}.bi-tag:before{content:"\f5b0"}.bi-tags-fill:before{content:"\f5b1"}.bi-tags:before{content:"\f5b2"}.bi-telegram:before{content:"\f5b3"}.bi-telephone-fill:before{content:"\f5b4"}.bi-telephone-forward-fill:before{content:"\f5b5"}.bi-telephone-forward:before{content:"\f5b6"}.bi-telephone-inbound-fill:before{content:"\f5b7"}.bi-telephone-inbound:before{content:"\f5b8"}.bi-telephone-minus-fill:before{content:"\f5b9"}.bi-telephone-minus:before{content:"\f5ba"}.bi-telephone-outbound-fill:before{content:"\f5bb"}.bi-telephone-outbound:before{content:"\f5bc"}.bi-telephone-plus-fill:before{content:"\f5bd"}.bi-telephone-plus:before{content:"\f5be"}.bi-telephone-x-fill:before{content:"\f5bf"}.bi-telephone-x:before{content:"\f5c0"}.bi-telephone:before{content:"\f5c1"}.bi-terminal-fill:before{content:"\f5c2"}.bi-terminal:before{content:"\f5c3"}.bi-text-center:before{content:"\f5c4"}.bi-text-indent-left:before{content:"\f5c5"}.bi-text-indent-right:before{content:"\f5c6"}.bi-text-left:before{content:"\f5c7"}.bi-text-paragraph:before{content:"\f5c8"}.bi-text-right:before{content:"\f5c9"}.bi-textarea-resize:before{content:"\f5ca"}.bi-textarea-t:before{content:"\f5cb"}.bi-textarea:before{content:"\f5cc"}.bi-thermometer-half:before{content:"\f5cd"}.bi-thermometer-high:before{content:"\f5ce"}.bi-thermometer-low:before{content:"\f5cf"}.bi-thermometer-snow:before{content:"\f5d0"}.bi-thermometer-sun:before{content:"\f5d1"}.bi-thermometer:before{content:"\f5d2"}.bi-three-dots-vertical:before{content:"\f5d3"}.bi-three-dots:before{content:"\f5d4"}.bi-toggle-off:before{content:"\f5d5"}.bi-toggle-on:before{content:"\f5d6"}.bi-toggle2-off:before{content:"\f5d7"}.bi-toggle2-on:before{content:"\f5d8"}.bi-toggles:before{content:"\f5d9"}.bi-toggles2:before{content:"\f5da"}.bi-tools:before{content:"\f5db"}.bi-tornado:before{content:"\f5dc"}.bi-trash-fill:before{content:"\f5dd"}.bi-trash:before{content:"\f5de"}.bi-trash2-fill:before{content:"\f5df"}.bi-trash2:before{content:"\f5e0"}.bi-tree-fill:before{content:"\f5e1"}.bi-tree:before{content:"\f5e2"}.bi-triangle-fill:before{content:"\f5e3"}.bi-triangle-half:before{content:"\f5e4"}.bi-triangle:before{content:"\f5e5"}.bi-trophy-fill:before{content:"\f5e6"}.bi-trophy:before{content:"\f5e7"}.bi-tropical-storm:before{content:"\f5e8"}.bi-truck-flatbed:before{content:"\f5e9"}.bi-truck:before{content:"\f5ea"}.bi-tsunami:before{content:"\f5eb"}.bi-tv-fill:before{content:"\f5ec"}.bi-tv:before{content:"\f5ed"}.bi-twitch:before{content:"\f5ee"}.bi-twitter:before{content:"\f5ef"}.bi-type-bold:before{content:"\f5f0"}.bi-type-h1:before{content:"\f5f1"}.bi-type-h2:before{content:"\f5f2"}.bi-type-h3:before{content:"\f5f3"}.bi-type-italic:before{content:"\f5f4"}.bi-type-strikethrough:before{content:"\f5f5"}.bi-type-underline:before{content:"\f5f6"}.bi-type:before{content:"\f5f7"}.bi-ui-checks-grid:before{content:"\f5f8"}.bi-ui-checks:before{content:"\f5f9"}.bi-ui-radios-grid:before{content:"\f5fa"}.bi-ui-radios:before{content:"\f5fb"}.bi-umbrella-fill:before{content:"\f5fc"}.bi-umbrella:before{content:"\f5fd"}.bi-union:before{content:"\f5fe"}.bi-unlock-fill:before{content:"\f5ff"}.bi-unlock:before{content:"\f600"}.bi-upc-scan:before{content:"\f601"}.bi-upc:before{content:"\f602"}.bi-upload:before{content:"\f603"}.bi-vector-pen:before{content:"\f604"}.bi-view-list:before{content:"\f605"}.bi-view-stacked:before{content:"\f606"}.bi-vinyl-fill:before{content:"\f607"}.bi-vinyl:before{content:"\f608"}.bi-voicemail:before{content:"\f609"}.bi-volume-down-fill:before{content:"\f60a"}.bi-volume-down:before{content:"\f60b"}.bi-volume-mute-fill:before{content:"\f60c"}.bi-volume-mute:before{content:"\f60d"}.bi-volume-off-fill:before{content:"\f60e"}.bi-volume-off:before{content:"\f60f"}.bi-volume-up-fill:before{content:"\f610"}.bi-volume-up:before{content:"\f611"}.bi-vr:before{content:"\f612"}.bi-wallet-fill:before{content:"\f613"}.bi-wallet:before{content:"\f614"}.bi-wallet2:before{content:"\f615"}.bi-watch:before{content:"\f616"}.bi-water:before{content:"\f617"}.bi-whatsapp:before{content:"\f618"}.bi-wifi-1:before{content:"\f619"}.bi-wifi-2:before{content:"\f61a"}.bi-wifi-off:before{content:"\f61b"}.bi-wifi:before{content:"\f61c"}.bi-wind:before{content:"\f61d"}.bi-window-dock:before{content:"\f61e"}.bi-window-sidebar:before{content:"\f61f"}.bi-window:before{content:"\f620"}.bi-wrench:before{content:"\f621"}.bi-x-circle-fill:before{content:"\f622"}.bi-x-circle:before{content:"\f623"}.bi-x-diamond-fill:before{content:"\f624"}.bi-x-diamond:before{content:"\f625"}.bi-x-octagon-fill:before{content:"\f626"}.bi-x-octagon:before{content:"\f627"}.bi-x-square-fill:before{content:"\f628"}.bi-x-square:before{content:"\f629"}.bi-x:before{content:"\f62a"}.bi-youtube:before{content:"\f62b"}.bi-zoom-in:before{content:"\f62c"}.bi-zoom-out:before{content:"\f62d"}.bi-bank:before{content:"\f62e"}.bi-bank2:before{content:"\f62f"}.bi-bell-slash-fill:before{content:"\f630"}.bi-bell-slash:before{content:"\f631"}.bi-cash-coin:before{content:"\f632"}.bi-check-lg:before{content:"\f633"}.bi-coin:before{content:"\f634"}.bi-currency-bitcoin:before{content:"\f635"}.bi-currency-dollar:before{content:"\f636"}.bi-currency-euro:before{content:"\f637"}.bi-currency-exchange:before{content:"\f638"}.bi-currency-pound:before{content:"\f639"}.bi-currency-yen:before{content:"\f63a"}.bi-dash-lg:before{content:"\f63b"}.bi-exclamation-lg:before{content:"\f63c"}.bi-file-earmark-pdf-fill:before{content:"\f63d"}.bi-file-earmark-pdf:before{content:"\f63e"}.bi-file-pdf-fill:before{content:"\f63f"}.bi-file-pdf:before{content:"\f640"}.bi-gender-ambiguous:before{content:"\f641"}.bi-gender-female:before{content:"\f642"}.bi-gender-male:before{content:"\f643"}.bi-gender-trans:before{content:"\f644"}.bi-headset-vr:before{content:"\f645"}.bi-info-lg:before{content:"\f646"}.bi-mastodon:before{content:"\f647"}.bi-messenger:before{content:"\f648"}.bi-piggy-bank-fill:before{content:"\f649"}.bi-piggy-bank:before{content:"\f64a"}.bi-pin-map-fill:before{content:"\f64b"}.bi-pin-map:before{content:"\f64c"}.bi-plus-lg:before{content:"\f64d"}.bi-question-lg:before{content:"\f64e"}.bi-recycle:before{content:"\f64f"}.bi-reddit:before{content:"\f650"}.bi-safe-fill:before{content:"\f651"}.bi-safe2-fill:before{content:"\f652"}.bi-safe2:before{content:"\f653"}.bi-sd-card-fill:before{content:"\f654"}.bi-sd-card:before{content:"\f655"}.bi-skype:before{content:"\f656"}.bi-slash-lg:before{content:"\f657"}.bi-translate:before{content:"\f658"}.bi-x-lg:before{content:"\f659"}.bi-safe:before{content:"\f65a"}.bi-apple:before{content:"\f65b"}.bi-microsoft:before{content:"\f65d"}.bi-windows:before{content:"\f65e"}.bi-behance:before{content:"\f65c"}.bi-dribbble:before{content:"\f65f"}.bi-line:before{content:"\f660"}.bi-medium:before{content:"\f661"}.bi-paypal:before{content:"\f662"}.bi-pinterest:before{content:"\f663"}.bi-signal:before{content:"\f664"}.bi-snapchat:before{content:"\f665"}.bi-spotify:before{content:"\f666"}.bi-stack-overflow:before{content:"\f667"}.bi-strava:before{content:"\f668"}.bi-wordpress:before{content:"\f669"}.bi-vimeo:before{content:"\f66a"}.bi-activity:before{content:"\f66b"}.bi-easel2-fill:before{content:"\f66c"}.bi-easel2:before{content:"\f66d"}.bi-easel3-fill:before{content:"\f66e"}.bi-easel3:before{content:"\f66f"}.bi-fan:before{content:"\f670"}.bi-fingerprint:before{content:"\f671"}.bi-graph-down-arrow:before{content:"\f672"}.bi-graph-up-arrow:before{content:"\f673"}.bi-hypnotize:before{content:"\f674"}.bi-magic:before{content:"\f675"}.bi-person-rolodex:before{content:"\f676"}.bi-person-video:before{content:"\f677"}.bi-person-video2:before{content:"\f678"}.bi-person-video3:before{content:"\f679"}.bi-person-workspace:before{content:"\f67a"}.bi-radioactive:before{content:"\f67b"}.bi-webcam-fill:before{content:"\f67c"}.bi-webcam:before{content:"\f67d"}.bi-yin-yang:before{content:"\f67e"}.bi-bandaid-fill:before{content:"\f680"}.bi-bandaid:before{content:"\f681"}.bi-bluetooth:before{content:"\f682"}.bi-body-text:before{content:"\f683"}.bi-boombox:before{content:"\f684"}.bi-boxes:before{content:"\f685"}.bi-dpad-fill:before{content:"\f686"}.bi-dpad:before{content:"\f687"}.bi-ear-fill:before{content:"\f688"}.bi-ear:before{content:"\f689"}.bi-envelope-check-1:before{content:"\f68a"}.bi-envelope-check-fill:before{content:"\f68b"}.bi-envelope-check:before{content:"\f68c"}.bi-envelope-dash-1:before{content:"\f68d"}.bi-envelope-dash-fill:before{content:"\f68e"}.bi-envelope-dash:before{content:"\f68f"}.bi-envelope-exclamation-1:before{content:"\f690"}.bi-envelope-exclamation-fill:before{content:"\f691"}.bi-envelope-exclamation:before{content:"\f692"}.bi-envelope-plus-fill:before{content:"\f693"}.bi-envelope-plus:before{content:"\f694"}.bi-envelope-slash-1:before{content:"\f695"}.bi-envelope-slash-fill:before{content:"\f696"}.bi-envelope-slash:before{content:"\f697"}.bi-envelope-x-1:before{content:"\f698"}.bi-envelope-x-fill:before{content:"\f699"}.bi-envelope-x:before{content:"\f69a"}.bi-explicit-fill:before{content:"\f69b"}.bi-explicit:before{content:"\f69c"}.bi-git:before{content:"\f69d"}.bi-infinity:before{content:"\f69e"}.bi-list-columns-reverse:before{content:"\f69f"}.bi-list-columns:before{content:"\f6a0"}.bi-meta:before{content:"\f6a1"}.bi-mortorboard-fill:before{content:"\f6a2"}.bi-mortorboard:before{content:"\f6a3"}.bi-nintendo-switch:before{content:"\f6a4"}.bi-pc-display-horizontal:before{content:"\f6a5"}.bi-pc-display:before{content:"\f6a6"}.bi-pc-horizontal:before{content:"\f6a7"}.bi-pc:before{content:"\f6a8"}.bi-playstation:before{content:"\f6a9"}.bi-plus-slash-minus:before{content:"\f6aa"}.bi-projector-fill:before{content:"\f6ab"}.bi-projector:before{content:"\f6ac"}.bi-qr-code-scan:before{content:"\f6ad"}.bi-qr-code:before{content:"\f6ae"}.bi-quora:before{content:"\f6af"}.bi-quote:before{content:"\f6b0"}.bi-robot:before{content:"\f6b1"}.bi-send-check-fill:before{content:"\f6b2"}.bi-send-check:before{content:"\f6b3"}.bi-send-dash-fill:before{content:"\f6b4"}.bi-send-dash:before{content:"\f6b5"}.bi-send-exclamation-1:before{content:"\f6b6"}.bi-send-exclamation-fill:before{content:"\f6b7"}.bi-send-exclamation:before{content:"\f6b8"}.bi-send-fill:before{content:"\f6b9"}.bi-send-plus-fill:before{content:"\f6ba"}.bi-send-plus:before{content:"\f6bb"}.bi-send-slash-fill:before{content:"\f6bc"}.bi-send-slash:before{content:"\f6bd"}.bi-send-x-fill:before{content:"\f6be"}.bi-send-x:before{content:"\f6bf"}.bi-send:before{content:"\f6c0"}.bi-steam:before{content:"\f6c1"}.bi-terminal-dash-1:before{content:"\f6c2"}.bi-terminal-dash:before{content:"\f6c3"}.bi-terminal-plus:before{content:"\f6c4"}.bi-terminal-split:before{content:"\f6c5"}.bi-ticket-detailed-fill:before{content:"\f6c6"}.bi-ticket-detailed:before{content:"\f6c7"}.bi-ticket-fill:before{content:"\f6c8"}.bi-ticket-perforated-fill:before{content:"\f6c9"}.bi-ticket-perforated:before{content:"\f6ca"}.bi-ticket:before{content:"\f6cb"}.bi-tiktok:before{content:"\f6cc"}.bi-window-dash:before{content:"\f6cd"}.bi-window-desktop:before{content:"\f6ce"}.bi-window-fullscreen:before{content:"\f6cf"}.bi-window-plus:before{content:"\f6d0"}.bi-window-split:before{content:"\f6d1"}.bi-window-stack:before{content:"\f6d2"}.bi-window-x:before{content:"\f6d3"}.bi-xbox:before{content:"\f6d4"}.bi-ethernet:before{content:"\f6d5"}.bi-hdmi-fill:before{content:"\f6d6"}.bi-hdmi:before{content:"\f6d7"}.bi-usb-c-fill:before{content:"\f6d8"}.bi-usb-c:before{content:"\f6d9"}.bi-usb-fill:before{content:"\f6da"}.bi-usb-plug-fill:before{content:"\f6db"}.bi-usb-plug:before{content:"\f6dc"}.bi-usb-symbol:before{content:"\f6dd"}.bi-usb:before{content:"\f6de"}.bi-boombox-fill:before{content:"\f6df"}.bi-displayport-1:before{content:"\f6e0"}.bi-displayport:before{content:"\f6e1"}.bi-gpu-card:before{content:"\f6e2"}.bi-memory:before{content:"\f6e3"}.bi-modem-fill:before{content:"\f6e4"}.bi-modem:before{content:"\f6e5"}.bi-motherboard-fill:before{content:"\f6e6"}.bi-motherboard:before{content:"\f6e7"}.bi-optical-audio-fill:before{content:"\f6e8"}.bi-optical-audio:before{content:"\f6e9"}.bi-pci-card:before{content:"\f6ea"}.bi-router-fill:before{content:"\f6eb"}.bi-router:before{content:"\f6ec"}.bi-ssd-fill:before{content:"\f6ed"}.bi-ssd:before{content:"\f6ee"}.bi-thunderbolt-fill:before{content:"\f6ef"}.bi-thunderbolt:before{content:"\f6f0"}.bi-usb-drive-fill:before{content:"\f6f1"}.bi-usb-drive:before{content:"\f6f2"}.bi-usb-micro-fill:before{content:"\f6f3"}.bi-usb-micro:before{content:"\f6f4"}.bi-usb-mini-fill:before{content:"\f6f5"}.bi-usb-mini:before{content:"\f6f6"}.bi-cloud-haze2:before{content:"\f6f7"}.bi-device-hdd-fill:before{content:"\f6f8"}.bi-device-hdd:before{content:"\f6f9"}.bi-device-ssd-fill:before{content:"\f6fa"}.bi-device-ssd:before{content:"\f6fb"}.bi-displayport-fill:before{content:"\f6fc"}.bi-mortarboard-fill:before{content:"\f6fd"}.bi-mortarboard:before{content:"\f6fe"}.bi-terminal-x:before{content:"\f6ff"}.bi-arrow-through-heart-fill:before{content:"\f700"}.bi-arrow-through-heart:before{content:"\f701"}.bi-badge-sd-fill:before{content:"\f702"}.bi-badge-sd:before{content:"\f703"}.bi-bag-heart-fill:before{content:"\f704"}.bi-bag-heart:before{content:"\f705"}.bi-balloon-fill:before{content:"\f706"}.bi-balloon-heart-fill:before{content:"\f707"}.bi-balloon-heart:before{content:"\f708"}.bi-balloon:before{content:"\f709"}.bi-box2-fill:before{content:"\f70a"}.bi-box2-heart-fill:before{content:"\f70b"}.bi-box2-heart:before{content:"\f70c"}.bi-box2:before{content:"\f70d"}.bi-braces-asterisk:before{content:"\f70e"}.bi-calendar-heart-fill:before{content:"\f70f"}.bi-calendar-heart:before{content:"\f710"}.bi-calendar2-heart-fill:before{content:"\f711"}.bi-calendar2-heart:before{content:"\f712"}.bi-chat-heart-fill:before{content:"\f713"}.bi-chat-heart:before{content:"\f714"}.bi-chat-left-heart-fill:before{content:"\f715"}.bi-chat-left-heart:before{content:"\f716"}.bi-chat-right-heart-fill:before{content:"\f717"}.bi-chat-right-heart:before{content:"\f718"}.bi-chat-square-heart-fill:before{content:"\f719"}.bi-chat-square-heart:before{content:"\f71a"}.bi-clipboard-check-fill:before{content:"\f71b"}.bi-clipboard-data-fill:before{content:"\f71c"}.bi-clipboard-fill:before{content:"\f71d"}.bi-clipboard-heart-fill:before{content:"\f71e"}.bi-clipboard-heart:before{content:"\f71f"}.bi-clipboard-minus-fill:before{content:"\f720"}.bi-clipboard-plus-fill:before{content:"\f721"}.bi-clipboard-pulse:before{content:"\f722"}.bi-clipboard-x-fill:before{content:"\f723"}.bi-clipboard2-check-fill:before{content:"\f724"}.bi-clipboard2-check:before{content:"\f725"}.bi-clipboard2-data-fill:before{content:"\f726"}.bi-clipboard2-data:before{content:"\f727"}.bi-clipboard2-fill:before{content:"\f728"}.bi-clipboard2-heart-fill:before{content:"\f729"}.bi-clipboard2-heart:before{content:"\f72a"}.bi-clipboard2-minus-fill:before{content:"\f72b"}.bi-clipboard2-minus:before{content:"\f72c"}.bi-clipboard2-plus-fill:before{content:"\f72d"}.bi-clipboard2-plus:before{content:"\f72e"}.bi-clipboard2-pulse-fill:before{content:"\f72f"}.bi-clipboard2-pulse:before{content:"\f730"}.bi-clipboard2-x-fill:before{content:"\f731"}.bi-clipboard2-x:before{content:"\f732"}.bi-clipboard2:before{content:"\f733"}.bi-emoji-kiss-fill:before{content:"\f734"}.bi-emoji-kiss:before{content:"\f735"}.bi-envelope-heart-fill:before{content:"\f736"}.bi-envelope-heart:before{content:"\f737"}.bi-envelope-open-heart-fill:before{content:"\f738"}.bi-envelope-open-heart:before{content:"\f739"}.bi-envelope-paper-fill:before{content:"\f73a"}.bi-envelope-paper-heart-fill:before{content:"\f73b"}.bi-envelope-paper-heart:before{content:"\f73c"}.bi-envelope-paper:before{content:"\f73d"}.bi-filetype-aac:before{content:"\f73e"}.bi-filetype-ai:before{content:"\f73f"}.bi-filetype-bmp:before{content:"\f740"}.bi-filetype-cs:before{content:"\f741"}.bi-filetype-css:before{content:"\f742"}.bi-filetype-csv:before{content:"\f743"}.bi-filetype-doc:before{content:"\f744"}.bi-filetype-docx:before{content:"\f745"}.bi-filetype-exe:before{content:"\f746"}.bi-filetype-gif:before{content:"\f747"}.bi-filetype-heic:before{content:"\f748"}.bi-filetype-html:before{content:"\f749"}.bi-filetype-java:before{content:"\f74a"}.bi-filetype-jpg:before{content:"\f74b"}.bi-filetype-js:before{content:"\f74c"}.bi-filetype-jsx:before{content:"\f74d"}.bi-filetype-key:before{content:"\f74e"}.bi-filetype-m4p:before{content:"\f74f"}.bi-filetype-md:before{content:"\f750"}.bi-filetype-mdx:before{content:"\f751"}.bi-filetype-mov:before{content:"\f752"}.bi-filetype-mp3:before{content:"\f753"}.bi-filetype-mp4:before{content:"\f754"}.bi-filetype-otf:before{content:"\f755"}.bi-filetype-pdf:before{content:"\f756"}.bi-filetype-php:before{content:"\f757"}.bi-filetype-png:before{content:"\f758"}.bi-filetype-ppt-1:before{content:"\f759"}.bi-filetype-ppt:before{content:"\f75a"}.bi-filetype-psd:before{content:"\f75b"}.bi-filetype-py:before{content:"\f75c"}.bi-filetype-raw:before{content:"\f75d"}.bi-filetype-rb:before{content:"\f75e"}.bi-filetype-sass:before{content:"\f75f"}.bi-filetype-scss:before{content:"\f760"}.bi-filetype-sh:before{content:"\f761"}.bi-filetype-svg:before{content:"\f762"}.bi-filetype-tiff:before{content:"\f763"}.bi-filetype-tsx:before{content:"\f764"}.bi-filetype-ttf:before{content:"\f765"}.bi-filetype-txt:before{content:"\f766"}.bi-filetype-wav:before{content:"\f767"}.bi-filetype-woff:before{content:"\f768"}.bi-filetype-xls-1:before{content:"\f769"}.bi-filetype-xls:before{content:"\f76a"}.bi-filetype-xml:before{content:"\f76b"}.bi-filetype-yml:before{content:"\f76c"}.bi-heart-arrow:before{content:"\f76d"}.bi-heart-pulse-fill:before{content:"\f76e"}.bi-heart-pulse:before{content:"\f76f"}.bi-heartbreak-fill:before{content:"\f770"}.bi-heartbreak:before{content:"\f771"}.bi-hearts:before{content:"\f772"}.bi-hospital-fill:before{content:"\f773"}.bi-hospital:before{content:"\f774"}.bi-house-heart-fill:before{content:"\f775"}.bi-house-heart:before{content:"\f776"}.bi-incognito:before{content:"\f777"}.bi-magnet-fill:before{content:"\f778"}.bi-magnet:before{content:"\f779"}.bi-person-heart:before{content:"\f77a"}.bi-person-hearts:before{content:"\f77b"}.bi-phone-flip:before{content:"\f77c"}.bi-plugin:before{content:"\f77d"}.bi-postage-fill:before{content:"\f77e"}.bi-postage-heart-fill:before{content:"\f77f"}.bi-postage-heart:before{content:"\f780"}.bi-postage:before{content:"\f781"}.bi-postcard-fill:before{content:"\f782"}.bi-postcard-heart-fill:before{content:"\f783"}.bi-postcard-heart:before{content:"\f784"}.bi-postcard:before{content:"\f785"}.bi-search-heart-fill:before{content:"\f786"}.bi-search-heart:before{content:"\f787"}.bi-sliders2-vertical:before{content:"\f788"}.bi-sliders2:before{content:"\f789"}.bi-trash3-fill:before{content:"\f78a"}.bi-trash3:before{content:"\f78b"}.bi-valentine:before{content:"\f78c"}.bi-valentine2:before{content:"\f78d"}.bi-wrench-adjustable-circle-fill:before{content:"\f78e"}.bi-wrench-adjustable-circle:before{content:"\f78f"}.bi-wrench-adjustable:before{content:"\f790"}.bi-filetype-json:before{content:"\f791"}.bi-filetype-pptx:before{content:"\f792"}.bi-filetype-xlsx:before{content:"\f793"} 2 | --------------------------------------------------------------------------------