mirror of
				https://github.com/em-squared/5e-drs.git
				synced 2025-10-31 05:24:20 +00:00 
			
		
		
		
	réparation des menus et ajout de la fonction jour/nuit
This commit is contained in:
		
							parent
							
								
									7e749f4fa9
								
							
						
					
					
						commit
						466e4efc23
					
				
					 8 changed files with 170 additions and 201 deletions
				
			
		|  | @ -1,7 +1,18 @@ | ||||||
| <template> | <template> | ||||||
|  |   <div class=""> | ||||||
|     <v-navigation-drawer class="main-drawer" v-model="drawer" :clipped="$vuetify.breakpoint.lgAndUp" width="300" app> |     <v-navigation-drawer class="main-drawer" v-model="drawer" :clipped="$vuetify.breakpoint.lgAndUp" width="300" app> | ||||||
|       <v-list dense nav> |       <v-list dense nav> | ||||||
|       <v-btn class="hidden-md-and-up site-title" text link block :to="{ path: '/' }"><img src="/dragon_pourpre.svg" /> {{ $site.title }}</v-btn> |         <!-- <v-btn class="hidden-md-and-up site-title" text link block :to="{ path: '/' }"><img src="/dragon_pourpre.svg" /> {{ $site.title }}</v-btn> --> | ||||||
|  |         <v-list-item class="hidden-md-and-up site-title" link :to="{path: '/'}"> | ||||||
|  |           <v-list-item-avatar> | ||||||
|  |             <img :src="$vuetify.theme.dark ? '/dragon_blanc.svg' : '/dragon_pourpre.svg'"> | ||||||
|  |           </v-list-item-avatar> | ||||||
|  | 
 | ||||||
|  |           <v-list-item-content> | ||||||
|  |             <v-list-item-title>{{ $site.title }}</v-list-item-title> | ||||||
|  |           </v-list-item-content> | ||||||
|  |         </v-list-item> | ||||||
|  |         <v-divider class="hidden-md-and-up" /> | ||||||
|         <template v-for="item in items"> |         <template v-for="item in items"> | ||||||
|           <v-list-group v-if="item.children" :key="item.title" :value="isExpanded(item)" color="accent"> |           <v-list-group v-if="item.children" :key="item.title" :value="isExpanded(item)" color="accent"> | ||||||
|             <template v-slot:activator> |             <template v-slot:activator> | ||||||
|  | @ -71,7 +82,7 @@ | ||||||
|             </v-list-item-title> |             </v-list-item-title> | ||||||
|           </v-list-item-content> |           </v-list-item-content> | ||||||
|         </v-list-item> |         </v-list-item> | ||||||
|       <v-list-item v-if="$vuetify.breakpoint.mdAndDown" @click.stop="$store.commit('setIsOpenAboutDialog', true)"> |         <v-list-item @click.stop="toggleAboutDialog"> | ||||||
|           <v-list-item-icon> |           <v-list-item-icon> | ||||||
|             <v-icon>mdi-information</v-icon> |             <v-icon>mdi-information</v-icon> | ||||||
|           </v-list-item-icon> |           </v-list-item-icon> | ||||||
|  | @ -82,7 +93,38 @@ | ||||||
|           </v-list-item-content> |           </v-list-item-content> | ||||||
|         </v-list-item> |         </v-list-item> | ||||||
|       </v-list> |       </v-list> | ||||||
|  | 
 | ||||||
|  |       <template v-slot:append> | ||||||
|  |         <div class="hidden-md-and-up"> | ||||||
|  |           <v-divider/> | ||||||
|  |           <div class="pa-2 d-flex"> | ||||||
|  |             <v-spacer/> | ||||||
|  |             <v-btn @click.stop="$vuetify.theme.dark = !$vuetify.theme.dark" icon> | ||||||
|  |               <v-icon v-html="$vuetify.theme.dark ? 'mdi-brightness-4' : 'mdi-brightness-7'"></v-icon> | ||||||
|  |             </v-btn> | ||||||
|  |           </div> | ||||||
|  |         </div> | ||||||
|  |       </template> | ||||||
|     </v-navigation-drawer> |     </v-navigation-drawer> | ||||||
|  | 
 | ||||||
|  |     <v-dialog v-model="isOpenAboutDialog" @click:outside="toggleAboutDialog" max-width="600"> | ||||||
|  |       <v-card> | ||||||
|  |         <v-card-title class="headline">À propos de H&D DRS</v-card-title> | ||||||
|  | 
 | ||||||
|  |         <v-card-text> | ||||||
|  |           <p>Ce site a été développé par <strong>Maxime Moraine</strong> alias <strong>Em-squared</strong>.</p> | ||||||
|  |           <p>Les sources de ce site sont disponibles sur <a :href="$site.themeConfig.repository" target="_blank">GitHub</a> sous Licence <a href="https://github.com/em-squared/heros-et-dragons-drs/blob/master/LICENSE" target="_blank">GPLv3</a>.</p> | ||||||
|  |           <p><strong><em>Héros & Dragons</em></strong> est un jeu de rôle basé sur les mécaniques de l’<a href="/licence-ogl">OGL5</a> et développé par les talents de la rédaction de <em><a href="https://www.black-book-editions.fr/catalogue.php?id=40" target="_blank">Casus Belli</a></em>, le magazine de référence des jeux de rôle.</p> | ||||||
|  |           <p>Les textes de cette documentation appartiennent à <a href="https://www.black-book-editions.fr/catalogue.php?id=365" target="_blank">Black Book Éditions</a>.</p> | ||||||
|  |           <p>Casus Belli et Black Book Éditions sont des marques déposées par <a href="https://www.black-book-editions.fr/" target="_blank">Black Book Éditions</a>. Tous droits réservés.</p> | ||||||
|  |         </v-card-text> | ||||||
|  | 
 | ||||||
|  |         <v-card-actions> | ||||||
|  |           <v-btn color="primary" text @click="toggleAboutDialog">Fermer</v-btn> | ||||||
|  |         </v-card-actions> | ||||||
|  |       </v-card> | ||||||
|  |     </v-dialog> | ||||||
|  |   </div> | ||||||
| </template> | </template> | ||||||
| 
 | 
 | ||||||
| <script> | <script> | ||||||
|  | @ -104,6 +146,9 @@ export default { | ||||||
|         this.$store.commit('setDrawer', newValue) |         this.$store.commit('setDrawer', newValue) | ||||||
|       } |       } | ||||||
|     }, |     }, | ||||||
|  |     isOpenAboutDialog () { | ||||||
|  |       return this.$store.state.isOpenAboutDialog | ||||||
|  |     } | ||||||
|   }, |   }, | ||||||
| 
 | 
 | ||||||
|   mounted () { |   mounted () { | ||||||
|  | @ -143,6 +188,9 @@ export default { | ||||||
|         return true |         return true | ||||||
|       } |       } | ||||||
|       return false |       return false | ||||||
|  |     }, | ||||||
|  |     toggleAboutDialog () { | ||||||
|  |       this.$store.commit('setIsOpenAboutDialog', !this.$store.state.isOpenAboutDialog) | ||||||
|     } |     } | ||||||
|   } |   } | ||||||
| } | } | ||||||
|  |  | ||||||
|  | @ -6,25 +6,15 @@ | ||||||
|     </v-toolbar-title> |     </v-toolbar-title> | ||||||
|     <SRDSearchBox v-if="$site.themeConfig.search !== false && $page.frontmatter.search !== false" /> |     <SRDSearchBox v-if="$site.themeConfig.search !== false && $page.frontmatter.search !== false" /> | ||||||
|     <v-spacer /> |     <v-spacer /> | ||||||
|     <!-- <v-btn v-if="$vuetify.breakpoint.lgAndUp" @click.stop="$vuetify.theme.dark = !$vuetify.theme.dark" icon><v-icon v-html="$vuetify.theme.dark ? 'mdi-brightness-4' : 'mdi-brightness-7'"></v-icon></v-btn> --> |     <v-btn class="hidden-sm-and-down" @click.stop="$vuetify.theme.dark = !$vuetify.theme.dark" icon> | ||||||
|     <v-btn v-if="$vuetify.breakpoint.lgAndUp" @click.stop="$store.commit('setIsOpenAboutDialog', true)" icon><v-icon>mdi-information</v-icon></v-btn> |       <v-icon v-html="$vuetify.theme.dark ? 'mdi-brightness-4' : 'mdi-brightness-7'"></v-icon> | ||||||
|  |     </v-btn> | ||||||
|  |     <v-btn class="hidden-sm-and-down" @click.stop="toggleAboutDialog" icon> | ||||||
|  |       <v-icon>mdi-information</v-icon> | ||||||
|  |     </v-btn> | ||||||
|     <v-btn @click.stop="setRightDrawer" icon v-if="hasRightDrawer"> |     <v-btn @click.stop="setRightDrawer" icon v-if="hasRightDrawer"> | ||||||
|       <v-icon>{{ rightDrawerIcon }}</v-icon> |       <v-icon>{{ rightDrawerIcon }}</v-icon> | ||||||
|     </v-btn> |     </v-btn> | ||||||
| 
 |  | ||||||
|     <v-dialog v-model="$store.state.isOpenAboutDialog" max-width="600"> |  | ||||||
|       <v-card> |  | ||||||
|         <v-card-title class="headline">À propos de H&D DRS</v-card-title> |  | ||||||
| 
 |  | ||||||
|         <v-card-text> |  | ||||||
|           <p>Ce site a été développé par <strong>Maxime Moraine</strong> alias <strong>Em-squared</strong>.</p> |  | ||||||
|           <p>Les sources de ce site sont disponibles sur <a :href="$site.themeConfig.repository" target="_blank">GitHub</a> sous Licence GPLv3.</p> |  | ||||||
|           <p><strong><em>Héros & Dragons</em></strong> est un jeu de rôle basé sur les mécaniques de l’<a href="/licence-ogl">OGL5</a> et développé par les talents de la rédaction de <em><a href="https://www.black-book-editions.fr/catalogue.php?id=40" target="_blank">Casus Belli</a></em>, le magazine de référence des jeux de rôle.</p> |  | ||||||
|           <p>Les textes de cette documentation appartiennent à <a href="https://www.black-book-editions.fr/catalogue.php?id=365" target="_blank">Black Book Éditions</a>.</p> |  | ||||||
|           <p>Casus Belli et Black Book Éditions sont des marques déposées par <a href="https://www.black-book-editions.fr/" target="_blank">Black Book Éditions</a>. Tous droits réservés.</p> |  | ||||||
|         </v-card-text> |  | ||||||
|       </v-card> |  | ||||||
|     </v-dialog> |  | ||||||
|   </v-app-bar> |   </v-app-bar> | ||||||
| </template> | </template> | ||||||
| 
 | 
 | ||||||
|  | @ -65,6 +55,9 @@ export default { | ||||||
|         return 'mdi-filter-variant' |         return 'mdi-filter-variant' | ||||||
|       } |       } | ||||||
|       return 'mdi-menu' |       return 'mdi-menu' | ||||||
|  |     }, | ||||||
|  |     isOpenAboutDialog() { | ||||||
|  |       return this.$store.state.isOpenAboutDialog | ||||||
|     } |     } | ||||||
|   }, |   }, | ||||||
| 
 | 
 | ||||||
|  | @ -74,6 +67,9 @@ export default { | ||||||
|     }, |     }, | ||||||
|     setRightDrawer () { |     setRightDrawer () { | ||||||
|       this.$store.commit('setRightDrawer', !this.$store.state.rightDrawer) |       this.$store.commit('setRightDrawer', !this.$store.state.rightDrawer) | ||||||
|  |     }, | ||||||
|  |     toggleAboutDialog () { | ||||||
|  |       this.$store.commit('setIsOpenAboutDialog', !this.$store.state.isOpenAboutDialog) | ||||||
|     } |     } | ||||||
|   }, |   }, | ||||||
| 
 | 
 | ||||||
|  |  | ||||||
|  | @ -1,8 +1,8 @@ | ||||||
| import Vuex from 'vuex' | import Vuex from 'vuex' | ||||||
| import store from '../store' | import store from '../store' | ||||||
|  | import 'vuetify/dist/vuetify.min.css' | ||||||
| import '@mdi/font/css/materialdesignicons.css' | import '@mdi/font/css/materialdesignicons.css' | ||||||
| import Vuetify from 'vuetify' | import Vuetify from 'vuetify' | ||||||
| import 'vuetify/dist/vuetify.min.css' |  | ||||||
| import fr from 'vuetify/es5/locale/fr' | import fr from 'vuetify/es5/locale/fr' | ||||||
| 
 | 
 | ||||||
| import colors from 'vuetify/es5/util/colors' | import colors from 'vuetify/es5/util/colors' | ||||||
|  |  | ||||||
|  | @ -15,6 +15,7 @@ | ||||||
|         </v-row> |         </v-row> | ||||||
|       </v-container> |       </v-container> | ||||||
|     </v-content> |     </v-content> | ||||||
|  | 
 | ||||||
|   </v-app> |   </v-app> | ||||||
| </template> | </template> | ||||||
| 
 | 
 | ||||||
|  | @ -42,9 +43,16 @@ export default { | ||||||
|   }, |   }, | ||||||
| 
 | 
 | ||||||
|   computed: { |   computed: { | ||||||
|     // loading () { |     footerCSS () { | ||||||
|     //   return this.$store.state.loading |       let css = '' | ||||||
|     // }, |       if (this.$store.state.drawer) { | ||||||
|  |         css += ' footer-padding-left' | ||||||
|  |       } | ||||||
|  |       if (this.$store.state.rightDrawer) { | ||||||
|  |         css += ' footer-padding-right' | ||||||
|  |       } | ||||||
|  |       return css | ||||||
|  |     }, | ||||||
|     hasRightDrawer() { |     hasRightDrawer() { | ||||||
|       return this.$store.state.hasRightDrawer |       return this.$store.state.hasRightDrawer | ||||||
|     } |     } | ||||||
|  | @ -74,3 +82,12 @@ export default { | ||||||
|   } |   } | ||||||
| } | } | ||||||
| </script> | </script> | ||||||
|  | 
 | ||||||
|  | <style lang="scss"> | ||||||
|  | .footer-padding-left { | ||||||
|  |   padding-left: 300px; | ||||||
|  | } | ||||||
|  | .footer-padding-right { | ||||||
|  |   padding-right: 300px; | ||||||
|  | } | ||||||
|  | </style> | ||||||
|  |  | ||||||
|  | @ -3,6 +3,8 @@ | ||||||
| 
 | 
 | ||||||
|     <Breadcrumb /> |     <Breadcrumb /> | ||||||
| 
 | 
 | ||||||
|  |     <h1>Grimoire</h1> | ||||||
|  | 
 | ||||||
|     <v-data-table |     <v-data-table | ||||||
|       class="data-table" |       class="data-table" | ||||||
|       :headers="headers" |       :headers="headers" | ||||||
|  |  | ||||||
|  | @ -10,7 +10,8 @@ Cette nouvelle version se veut plus réactive, plus fiable et plus aboutie que l | ||||||
| Voici un aperçu des améliorations apportées : | Voici un aperçu des améliorations apportées : | ||||||
| 
 | 
 | ||||||
| * La fonction de recherche grandement changé. À présent, des résultats pertinents vous sont suggérés à mesure que vous tapez. | * La fonction de recherche grandement changé. À présent, des résultats pertinents vous sont suggérés à mesure que vous tapez. | ||||||
| * La recherche de sorts est plus réactive et les filtres plus précis. | * La recherche de sorts, monstres et objets magiques est plus réactive et les filtres plus précis. | ||||||
|  | * L'interface a été soignée pour tous les formats d'écrans, de même que pour l'impression. | ||||||
| 
 | 
 | ||||||
| ## Ressources utiles | ## Ressources utiles | ||||||
| <v-btn color="primary" class="mb-4" href="https://www.black-book-editions.fr/file.php?id=178" link target="_blank"><v-icon left>mdi-drama-masks</v-icon> Feuille de personnage PDF</v-btn> | <v-btn color="primary" class="mb-4" href="https://www.black-book-editions.fr/file.php?id=178" link target="_blank"><v-icon left>mdi-drama-masks</v-icon> Feuille de personnage PDF</v-btn> | ||||||
|  |  | ||||||
|  | @ -16,6 +16,7 @@ | ||||||
|     "flexsearch": "nextapps-de/flexsearch", |     "flexsearch": "nextapps-de/flexsearch", | ||||||
|     "markdown-it-div": "^1.1.0", |     "markdown-it-div": "^1.1.0", | ||||||
|     "markdown-it-multimd-table": "^4.0.1", |     "markdown-it-multimd-table": "^4.0.1", | ||||||
|  |     "material-design-icons-iconfont": "^5.0.1", | ||||||
|     "node-sass": "^4.13.1", |     "node-sass": "^4.13.1", | ||||||
|     "sass-loader": "^8.0.2", |     "sass-loader": "^8.0.2", | ||||||
|     "slugify": "^1.4.0", |     "slugify": "^1.4.0", | ||||||
|  |  | ||||||
							
								
								
									
										124
									
								
								yarn.lock
									
										
									
									
									
								
							
							
						
						
									
										124
									
								
								yarn.lock
									
										
									
									
									
								
							|  | @ -2828,7 +2828,7 @@ debug@=3.1.0, debug@~3.1.0: | ||||||
|   dependencies: |   dependencies: | ||||||
|     ms "2.0.0" |     ms "2.0.0" | ||||||
| 
 | 
 | ||||||
| debug@^3.0.0, debug@^3.1.1, debug@^3.2.5, debug@^3.2.6: | debug@^3.0.0, debug@^3.1.1, debug@^3.2.5: | ||||||
|   version "3.2.6" |   version "3.2.6" | ||||||
|   resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.6.tgz#e83d17de16d8a7efb7717edbe5fb10135eee629b" |   resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.6.tgz#e83d17de16d8a7efb7717edbe5fb10135eee629b" | ||||||
|   integrity sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ== |   integrity sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ== | ||||||
|  | @ -2969,11 +2969,6 @@ destroy@~1.0.4: | ||||||
|   resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.0.4.tgz#978857442c44749e4206613e37946205826abd80" |   resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.0.4.tgz#978857442c44749e4206613e37946205826abd80" | ||||||
|   integrity sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA= |   integrity sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA= | ||||||
| 
 | 
 | ||||||
| detect-libc@^1.0.2: |  | ||||||
|   version "1.0.3" |  | ||||||
|   resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b" |  | ||||||
|   integrity sha1-+hN8S9aY7fVc1c0CrFWfkaTEups= |  | ||||||
| 
 |  | ||||||
| detect-node@^2.0.4: | detect-node@^2.0.4: | ||||||
|   version "2.0.4" |   version "2.0.4" | ||||||
|   resolved "https://registry.yarnpkg.com/detect-node/-/detect-node-2.0.4.tgz#014ee8f8f669c5c58023da64b8179c083a28c46c" |   resolved "https://registry.yarnpkg.com/detect-node/-/detect-node-2.0.4.tgz#014ee8f8f669c5c58023da64b8179c083a28c46c" | ||||||
|  | @ -3655,13 +3650,6 @@ fs-extra@^7.0.1: | ||||||
|     jsonfile "^4.0.0" |     jsonfile "^4.0.0" | ||||||
|     universalify "^0.1.0" |     universalify "^0.1.0" | ||||||
| 
 | 
 | ||||||
| fs-minipass@^1.2.5: |  | ||||||
|   version "1.2.7" |  | ||||||
|   resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-1.2.7.tgz#ccff8570841e7fe4265693da88936c55aed7f7c7" |  | ||||||
|   integrity sha512-GWSSJGFy4e9GUeCcbIkED+bgAoFyj7XF1mV8rma3QW4NIqX9Kyx79N/PF61H5udOV3aY1IaMLs6pGbH71nlCTA== |  | ||||||
|   dependencies: |  | ||||||
|     minipass "^2.6.0" |  | ||||||
| 
 |  | ||||||
| fs-write-stream-atomic@^1.0.8: | fs-write-stream-atomic@^1.0.8: | ||||||
|   version "1.0.10" |   version "1.0.10" | ||||||
|   resolved "https://registry.yarnpkg.com/fs-write-stream-atomic/-/fs-write-stream-atomic-1.0.10.tgz#b47df53493ef911df75731e70a9ded0189db40c9" |   resolved "https://registry.yarnpkg.com/fs-write-stream-atomic/-/fs-write-stream-atomic-1.0.10.tgz#b47df53493ef911df75731e70a9ded0189db40c9" | ||||||
|  | @ -4183,7 +4171,7 @@ https-browserify@^1.0.0: | ||||||
|   resolved "https://registry.yarnpkg.com/https-browserify/-/https-browserify-1.0.0.tgz#ec06c10e0a34c0f2faf199f7fd7fc78fffd03c73" |   resolved "https://registry.yarnpkg.com/https-browserify/-/https-browserify-1.0.0.tgz#ec06c10e0a34c0f2faf199f7fd7fc78fffd03c73" | ||||||
|   integrity sha1-7AbBDgo0wPL68Zn3/X/Hj//QPHM= |   integrity sha1-7AbBDgo0wPL68Zn3/X/Hj//QPHM= | ||||||
| 
 | 
 | ||||||
| iconv-lite@0.4.24, iconv-lite@^0.4.4: | iconv-lite@0.4.24: | ||||||
|   version "0.4.24" |   version "0.4.24" | ||||||
|   resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" |   resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" | ||||||
|   integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA== |   integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA== | ||||||
|  | @ -4212,13 +4200,6 @@ iferr@^0.1.5: | ||||||
|   resolved "https://registry.yarnpkg.com/iferr/-/iferr-0.1.5.tgz#c60eed69e6d8fdb6b3104a1fcbca1c192dc5b501" |   resolved "https://registry.yarnpkg.com/iferr/-/iferr-0.1.5.tgz#c60eed69e6d8fdb6b3104a1fcbca1c192dc5b501" | ||||||
|   integrity sha1-xg7taebY/bazEEofy8ocGS3FtQE= |   integrity sha1-xg7taebY/bazEEofy8ocGS3FtQE= | ||||||
| 
 | 
 | ||||||
| ignore-walk@^3.0.1: |  | ||||||
|   version "3.0.3" |  | ||||||
|   resolved "https://registry.yarnpkg.com/ignore-walk/-/ignore-walk-3.0.3.tgz#017e2447184bfeade7c238e4aefdd1e8f95b1e37" |  | ||||||
|   integrity sha512-m7o6xuOaT1aqheYHKf8W6J5pYH85ZI9w077erOzLje3JsB1gkafkAhHHY19dqjulgIZHFm32Cp5uNZgcQqdJKw== |  | ||||||
|   dependencies: |  | ||||||
|     minimatch "^3.0.4" |  | ||||||
| 
 |  | ||||||
| ignore@^3.3.5: | ignore@^3.3.5: | ||||||
|   version "3.3.10" |   version "3.3.10" | ||||||
|   resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.3.10.tgz#0a97fb876986e8081c631160f8f9f389157f0043" |   resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.3.10.tgz#0a97fb876986e8081c631160f8f9f389157f0043" | ||||||
|  | @ -5188,6 +5169,11 @@ markdown-it@^8.4.1, markdown-it@^8.4.2: | ||||||
|     mdurl "^1.0.1" |     mdurl "^1.0.1" | ||||||
|     uc.micro "^1.0.5" |     uc.micro "^1.0.5" | ||||||
| 
 | 
 | ||||||
|  | material-design-icons-iconfont@^5.0.1: | ||||||
|  |   version "5.0.1" | ||||||
|  |   resolved "https://registry.yarnpkg.com/material-design-icons-iconfont/-/material-design-icons-iconfont-5.0.1.tgz#371875ed7fe9c8c520bc7123c3231feeab731c31" | ||||||
|  |   integrity sha512-Xg6rIdGrfySTqiTZ6d+nQbcFepS6R4uKbJP0oAqyeZXJY/bX6mZDnOmmUJusqLXfhIwirs0c++a6JpqVa8RFvA== | ||||||
|  | 
 | ||||||
| md5.js@^1.3.4: | md5.js@^1.3.4: | ||||||
|   version "1.3.5" |   version "1.3.5" | ||||||
|   resolved "https://registry.yarnpkg.com/md5.js/-/md5.js-1.3.5.tgz#b5d07b8e3216e3e27cd728d72f70d1e6a342005f" |   resolved "https://registry.yarnpkg.com/md5.js/-/md5.js-1.3.5.tgz#b5d07b8e3216e3e27cd728d72f70d1e6a342005f" | ||||||
|  | @ -5378,21 +5364,6 @@ minimist@^1.1.3, minimist@^1.2.0, minimist@^1.2.5: | ||||||
|   resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.5.tgz#67d66014b66a6a8aaa0c083c5fd58df4e4e97602" |   resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.5.tgz#67d66014b66a6a8aaa0c083c5fd58df4e4e97602" | ||||||
|   integrity sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw== |   integrity sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw== | ||||||
| 
 | 
 | ||||||
| minipass@^2.6.0, minipass@^2.8.6, minipass@^2.9.0: |  | ||||||
|   version "2.9.0" |  | ||||||
|   resolved "https://registry.yarnpkg.com/minipass/-/minipass-2.9.0.tgz#e713762e7d3e32fed803115cf93e04bca9fcc9a6" |  | ||||||
|   integrity sha512-wxfUjg9WebH+CUDX/CdbRlh5SmfZiy/hpkxaRI16Y9W56Pa75sWgd/rvFilSgrauD9NyFymP/+JFV3KwzIsJeg== |  | ||||||
|   dependencies: |  | ||||||
|     safe-buffer "^5.1.2" |  | ||||||
|     yallist "^3.0.0" |  | ||||||
| 
 |  | ||||||
| minizlib@^1.2.1: |  | ||||||
|   version "1.3.3" |  | ||||||
|   resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-1.3.3.tgz#2290de96818a34c29551c8a8d301216bd65a861d" |  | ||||||
|   integrity sha512-6ZYMOEnmVsdCeTJVE0W9ZD+pVnE8h9Hma/iOwwRDsdQoePpoX56/8B6z3P9VNwppJuBKNRuFDRNRqRWexT9G9Q== |  | ||||||
|   dependencies: |  | ||||||
|     minipass "^2.9.0" |  | ||||||
| 
 |  | ||||||
| mississippi@^3.0.0: | mississippi@^3.0.0: | ||||||
|   version "3.0.0" |   version "3.0.0" | ||||||
|   resolved "https://registry.yarnpkg.com/mississippi/-/mississippi-3.0.0.tgz#ea0a3291f97e0b5e8776b363d5f0a12d94c67022" |   resolved "https://registry.yarnpkg.com/mississippi/-/mississippi-3.0.0.tgz#ea0a3291f97e0b5e8776b363d5f0a12d94c67022" | ||||||
|  | @ -5491,15 +5462,6 @@ nanomatch@^1.2.9: | ||||||
|     snapdragon "^0.8.1" |     snapdragon "^0.8.1" | ||||||
|     to-regex "^3.0.1" |     to-regex "^3.0.1" | ||||||
| 
 | 
 | ||||||
| needle@^2.2.1: |  | ||||||
|   version "2.4.1" |  | ||||||
|   resolved "https://registry.yarnpkg.com/needle/-/needle-2.4.1.tgz#14af48732463d7475696f937626b1b993247a56a" |  | ||||||
|   integrity sha512-x/gi6ijr4B7fwl6WYL9FwlCvRQKGlUNvnceho8wxkwXqN8jvVmmmATTmZPRRG7b/yC1eode26C2HO9jl78Du9g== |  | ||||||
|   dependencies: |  | ||||||
|     debug "^3.2.6" |  | ||||||
|     iconv-lite "^0.4.4" |  | ||||||
|     sax "^1.2.4" |  | ||||||
| 
 |  | ||||||
| negotiator@0.6.2: | negotiator@0.6.2: | ||||||
|   version "0.6.2" |   version "0.6.2" | ||||||
|   resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.2.tgz#feacf7ccf525a77ae9634436a64883ffeca346fb" |   resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.2.tgz#feacf7ccf525a77ae9634436a64883ffeca346fb" | ||||||
|  | @ -5574,22 +5536,6 @@ node-libs-browser@^2.2.1: | ||||||
|     util "^0.11.0" |     util "^0.11.0" | ||||||
|     vm-browserify "^1.0.1" |     vm-browserify "^1.0.1" | ||||||
| 
 | 
 | ||||||
| node-pre-gyp@*: |  | ||||||
|   version "0.14.0" |  | ||||||
|   resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.14.0.tgz#9a0596533b877289bcad4e143982ca3d904ddc83" |  | ||||||
|   integrity sha512-+CvDC7ZttU/sSt9rFjix/P05iS43qHCOOGzcr3Ry99bXG7VX953+vFyEuph/tfqoYu8dttBkE86JSKBO2OzcxA== |  | ||||||
|   dependencies: |  | ||||||
|     detect-libc "^1.0.2" |  | ||||||
|     mkdirp "^0.5.1" |  | ||||||
|     needle "^2.2.1" |  | ||||||
|     nopt "^4.0.1" |  | ||||||
|     npm-packlist "^1.1.6" |  | ||||||
|     npmlog "^4.0.2" |  | ||||||
|     rc "^1.2.7" |  | ||||||
|     rimraf "^2.6.1" |  | ||||||
|     semver "^5.3.0" |  | ||||||
|     tar "^4.4.2" |  | ||||||
| 
 |  | ||||||
| node-releases@^1.1.53: | node-releases@^1.1.53: | ||||||
|   version "1.1.53" |   version "1.1.53" | ||||||
|   resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.53.tgz#2d821bfa499ed7c5dffc5e2f28c88e78a08ee3f4" |   resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.53.tgz#2d821bfa499ed7c5dffc5e2f28c88e78a08ee3f4" | ||||||
|  | @ -5632,14 +5578,6 @@ nopt@1.0.10: | ||||||
|   dependencies: |   dependencies: | ||||||
|     abbrev "1" |     abbrev "1" | ||||||
| 
 | 
 | ||||||
| nopt@^4.0.1: |  | ||||||
|   version "4.0.3" |  | ||||||
|   resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.3.tgz#a375cad9d02fd921278d954c2254d5aa57e15e48" |  | ||||||
|   integrity sha512-CvaGwVMztSMJLOeXPrez7fyfObdZqNUK1cPAEzLHrTybIua9pMdmmPR5YwtfNftIOMv3DPUhFaxsZMNTQO20Kg== |  | ||||||
|   dependencies: |  | ||||||
|     abbrev "1" |  | ||||||
|     osenv "^0.1.4" |  | ||||||
| 
 |  | ||||||
| normalize-package-data@^2.3.2, normalize-package-data@^2.3.4: | normalize-package-data@^2.3.2, normalize-package-data@^2.3.4: | ||||||
|   version "2.5.0" |   version "2.5.0" | ||||||
|   resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.5.0.tgz#e66db1838b200c1dfc233225d12cb36520e234a8" |   resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.5.0.tgz#e66db1838b200c1dfc233225d12cb36520e234a8" | ||||||
|  | @ -5686,27 +5624,6 @@ normalize-url@^4.1.0: | ||||||
|   resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-4.5.0.tgz#453354087e6ca96957bd8f5baf753f5982142129" |   resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-4.5.0.tgz#453354087e6ca96957bd8f5baf753f5982142129" | ||||||
|   integrity sha512-2s47yzUxdexf1OhyRi4Em83iQk0aPvwTddtFz4hnSSw9dCEsLEGf6SwIO8ss/19S9iBb5sJaOuTvTGDeZI00BQ== |   integrity sha512-2s47yzUxdexf1OhyRi4Em83iQk0aPvwTddtFz4hnSSw9dCEsLEGf6SwIO8ss/19S9iBb5sJaOuTvTGDeZI00BQ== | ||||||
| 
 | 
 | ||||||
| npm-bundled@^1.0.1: |  | ||||||
|   version "1.1.1" |  | ||||||
|   resolved "https://registry.yarnpkg.com/npm-bundled/-/npm-bundled-1.1.1.tgz#1edd570865a94cdb1bc8220775e29466c9fb234b" |  | ||||||
|   integrity sha512-gqkfgGePhTpAEgUsGEgcq1rqPXA+tv/aVBlgEzfXwA1yiUJF7xtEt3CtVwOjNYQOVknDk0F20w58Fnm3EtG0fA== |  | ||||||
|   dependencies: |  | ||||||
|     npm-normalize-package-bin "^1.0.1" |  | ||||||
| 
 |  | ||||||
| npm-normalize-package-bin@^1.0.1: |  | ||||||
|   version "1.0.1" |  | ||||||
|   resolved "https://registry.yarnpkg.com/npm-normalize-package-bin/-/npm-normalize-package-bin-1.0.1.tgz#6e79a41f23fd235c0623218228da7d9c23b8f6e2" |  | ||||||
|   integrity sha512-EPfafl6JL5/rU+ot6P3gRSCpPDW5VmIzX959Ob1+ySFUuuYHWHekXpwdUZcKP5C+DS4GEtdJluwBjnsNDl+fSA== |  | ||||||
| 
 |  | ||||||
| npm-packlist@^1.1.6: |  | ||||||
|   version "1.4.8" |  | ||||||
|   resolved "https://registry.yarnpkg.com/npm-packlist/-/npm-packlist-1.4.8.tgz#56ee6cc135b9f98ad3d51c1c95da22bbb9b2ef3e" |  | ||||||
|   integrity sha512-5+AZgwru5IevF5ZdnFglB5wNlHG1AOOuw28WhUq8/8emhBmLv6jX5by4WJCh7lW0uSYZYS6DXqIsyZVIXRZU9A== |  | ||||||
|   dependencies: |  | ||||||
|     ignore-walk "^3.0.1" |  | ||||||
|     npm-bundled "^1.0.1" |  | ||||||
|     npm-normalize-package-bin "^1.0.1" |  | ||||||
| 
 |  | ||||||
| npm-run-path@^2.0.0: | npm-run-path@^2.0.0: | ||||||
|   version "2.0.2" |   version "2.0.2" | ||||||
|   resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" |   resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" | ||||||
|  | @ -5714,7 +5631,7 @@ npm-run-path@^2.0.0: | ||||||
|   dependencies: |   dependencies: | ||||||
|     path-key "^2.0.0" |     path-key "^2.0.0" | ||||||
| 
 | 
 | ||||||
| "npmlog@0 || 1 || 2 || 3 || 4", npmlog@^4.0.0, npmlog@^4.0.2: | "npmlog@0 || 1 || 2 || 3 || 4", npmlog@^4.0.0: | ||||||
|   version "4.1.2" |   version "4.1.2" | ||||||
|   resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" |   resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" | ||||||
|   integrity sha512-2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg== |   integrity sha512-2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg== | ||||||
|  | @ -5907,7 +5824,7 @@ os-tmpdir@^1.0.0: | ||||||
|   resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" |   resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" | ||||||
|   integrity sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ= |   integrity sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ= | ||||||
| 
 | 
 | ||||||
| osenv@0, osenv@^0.1.4: | osenv@0: | ||||||
|   version "0.1.5" |   version "0.1.5" | ||||||
|   resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.5.tgz#85cdfafaeb28e8677f416e287592b5f3f49ea410" |   resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.5.tgz#85cdfafaeb28e8677f416e287592b5f3f49ea410" | ||||||
|   integrity sha512-0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g== |   integrity sha512-0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g== | ||||||
|  | @ -6748,7 +6665,7 @@ raw-body@2.4.0: | ||||||
|     iconv-lite "0.4.24" |     iconv-lite "0.4.24" | ||||||
|     unpipe "1.0.0" |     unpipe "1.0.0" | ||||||
| 
 | 
 | ||||||
| rc@^1.2.7, rc@^1.2.8: | rc@^1.2.8: | ||||||
|   version "1.2.8" |   version "1.2.8" | ||||||
|   resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.8.tgz#cd924bf5200a075b83c188cd6b9e211b7fc0d3ed" |   resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.8.tgz#cd924bf5200a075b83c188cd6b9e211b7fc0d3ed" | ||||||
|   integrity sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw== |   integrity sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw== | ||||||
|  | @ -7045,7 +6962,7 @@ rgba-regex@^1.0.0: | ||||||
|   resolved "https://registry.yarnpkg.com/rgba-regex/-/rgba-regex-1.0.0.tgz#43374e2e2ca0968b0ef1523460b7d730ff22eeb3" |   resolved "https://registry.yarnpkg.com/rgba-regex/-/rgba-regex-1.0.0.tgz#43374e2e2ca0968b0ef1523460b7d730ff22eeb3" | ||||||
|   integrity sha1-QzdOLiyglosO8VI0YLfXMP8i7rM= |   integrity sha1-QzdOLiyglosO8VI0YLfXMP8i7rM= | ||||||
| 
 | 
 | ||||||
| rimraf@2, rimraf@^2.5.4, rimraf@^2.6.1, rimraf@^2.6.3: | rimraf@2, rimraf@^2.5.4, rimraf@^2.6.3: | ||||||
|   version "2.7.1" |   version "2.7.1" | ||||||
|   resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.7.1.tgz#35797f13a7fdadc566142c29d4f07ccad483e3ec" |   resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.7.1.tgz#35797f13a7fdadc566142c29d4f07ccad483e3ec" | ||||||
|   integrity sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w== |   integrity sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w== | ||||||
|  | @ -7110,7 +7027,7 @@ sass-loader@^8.0.2: | ||||||
|     schema-utils "^2.6.1" |     schema-utils "^2.6.1" | ||||||
|     semver "^6.3.0" |     semver "^6.3.0" | ||||||
| 
 | 
 | ||||||
| sax@^1.2.4, sax@~1.2.4: | sax@~1.2.4: | ||||||
|   version "1.2.4" |   version "1.2.4" | ||||||
|   resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" |   resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" | ||||||
|   integrity sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw== |   integrity sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw== | ||||||
|  | @ -7172,7 +7089,7 @@ semver-diff@^3.1.1: | ||||||
|   dependencies: |   dependencies: | ||||||
|     semver "^6.3.0" |     semver "^6.3.0" | ||||||
| 
 | 
 | ||||||
| "semver@2 || 3 || 4 || 5", semver@^5.1.0, semver@^5.3.0, semver@^5.4.1, semver@^5.5.0, semver@^5.5.1, semver@^5.6.0: | "semver@2 || 3 || 4 || 5", semver@^5.1.0, semver@^5.4.1, semver@^5.5.0, semver@^5.5.1, semver@^5.6.0: | ||||||
|   version "5.7.1" |   version "5.7.1" | ||||||
|   resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7" |   resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7" | ||||||
|   integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ== |   integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ== | ||||||
|  | @ -7876,19 +7793,6 @@ tar@^2.0.0: | ||||||
|     fstream "^1.0.12" |     fstream "^1.0.12" | ||||||
|     inherits "2" |     inherits "2" | ||||||
| 
 | 
 | ||||||
| tar@^4.4.2: |  | ||||||
|   version "4.4.13" |  | ||||||
|   resolved "https://registry.yarnpkg.com/tar/-/tar-4.4.13.tgz#43b364bc52888d555298637b10d60790254ab525" |  | ||||||
|   integrity sha512-w2VwSrBoHa5BsSyH+KxEqeQBAllHhccyMFVHtGtdMpF4W7IRWfZjFiQceJPChOeTsSDVUpER2T8FA93pr0L+QA== |  | ||||||
|   dependencies: |  | ||||||
|     chownr "^1.1.1" |  | ||||||
|     fs-minipass "^1.2.5" |  | ||||||
|     minipass "^2.8.6" |  | ||||||
|     minizlib "^1.2.1" |  | ||||||
|     mkdirp "^0.5.0" |  | ||||||
|     safe-buffer "^5.1.2" |  | ||||||
|     yallist "^3.0.3" |  | ||||||
| 
 |  | ||||||
| term-size@^2.1.0: | term-size@^2.1.0: | ||||||
|   version "2.2.0" |   version "2.2.0" | ||||||
|   resolved "https://registry.yarnpkg.com/term-size/-/term-size-2.2.0.tgz#1f16adedfe9bdc18800e1776821734086fcc6753" |   resolved "https://registry.yarnpkg.com/term-size/-/term-size-2.2.0.tgz#1f16adedfe9bdc18800e1776821734086fcc6753" | ||||||
|  | @ -8985,7 +8889,7 @@ yallist@^2.1.2: | ||||||
|   resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" |   resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" | ||||||
|   integrity sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI= |   integrity sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI= | ||||||
| 
 | 
 | ||||||
| yallist@^3.0.0, yallist@^3.0.2, yallist@^3.0.3: | yallist@^3.0.2: | ||||||
|   version "3.1.1" |   version "3.1.1" | ||||||
|   resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.1.1.tgz#dbb7daf9bfd8bac9ab45ebf602b8cbad0d5d08fd" |   resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.1.1.tgz#dbb7daf9bfd8bac9ab45ebf602b8cbad0d5d08fd" | ||||||
|   integrity sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g== |   integrity sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g== | ||||||
|  |  | ||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Maxime Moraine
						Maxime Moraine