visualifyjs 2.5.3-2.dev

Sign up to get free protection for your applications and to get access to all the features.
Files changed (147) hide show
  1. package/.github/workflows/static.yml.bak +51 -0
  2. package/LICENSE +674 -0
  3. package/README.md +59 -0
  4. package/config-overrides.js +31 -0
  5. package/dist/visualify.js +188 -0
  6. package/docs/.nojekyll +0 -0
  7. package/docs/docs/CLI.md +34 -0
  8. package/docs/docs/README.md +65 -0
  9. package/docs/docs/Rechart/bar.md +190 -0
  10. package/docs/docs/Rechart/funnel.md +241 -0
  11. package/docs/docs/Rechart/geo.md +0 -0
  12. package/docs/docs/Rechart/line.md +355 -0
  13. package/docs/docs/Rechart/liquidfill.md +0 -0
  14. package/docs/docs/Rechart/pie.md +225 -0
  15. package/docs/docs/Rechart/polar.md +0 -0
  16. package/docs/docs/Rechart/radar.md +253 -0
  17. package/docs/docs/Rechart/sankey.md +0 -0
  18. package/docs/docs/Rechart/scatter.md +298 -0
  19. package/docs/docs/Rechart/sunburst.md +0 -0
  20. package/docs/docs/Rechart/tree.md +0 -0
  21. package/docs/docs/Rechart/wordcloud.md +0 -0
  22. package/docs/docs/_404.md +52 -0
  23. package/docs/docs/_coverpage.md +11 -0
  24. package/docs/docs/_sidebar.md +44 -0
  25. package/docs/docs/components/dotBio.md +34 -0
  26. package/docs/docs/components/echart.md +82 -0
  27. package/docs/docs/components/html.md +34 -0
  28. package/docs/docs/components/macaron.md +145 -0
  29. package/docs/docs/components/markdown.md +0 -0
  30. package/docs/docs/components/more.md +142 -0
  31. package/docs/docs/components/plotly.md +62 -0
  32. package/docs/docs/components/scatterL.md +70 -0
  33. package/docs/docs/components/visium.md +57 -0
  34. package/docs/docs/configuration.md +121 -0
  35. package/docs/docs/deploy.md +31 -0
  36. package/docs/docs/log.md +9 -0
  37. package/docs/docs/more-pages.md +23 -0
  38. package/docs/docs/quickstart.md +124 -0
  39. package/docs/docs/rechart-attributes.md +74 -0
  40. package/docs/docs/rechart-basic-usage.md +162 -0
  41. package/docs/docs/static/_images/deploy-github-pages.png +0 -0
  42. package/docs/docs/static/logo/favicon.ico +0 -0
  43. package/docs/docs/static/logo/logo_128x128.png +0 -0
  44. package/docs/docs/static/logo/logo_192x192.png +0 -0
  45. package/docs/docs/static/logo/logo_256x256.png +0 -0
  46. package/docs/docs/static/logo/logo_512x512.png +0 -0
  47. package/docs/docs/static/logo/logo_64x64.png +0 -0
  48. package/docs/docs/theme.md +5 -0
  49. package/docs/index.html +71 -0
  50. package/docs/manifest.json +24 -0
  51. package/docs/static/css/fluff-stuff.css +170 -0
  52. package/docs/static/css/font-awesome.min.css +4 -0
  53. package/docs/static/css/visualify.css +25 -0
  54. package/docs/static/fonts/fontawesome-webfont.woff2 +0 -0
  55. package/docs/static/images/star.png +0 -0
  56. package/docs/static/js/configuration.js +448 -0
  57. package/docs/static/js/fluff.js +1 -0
  58. package/docs/static/js/visualify.js +188 -0
  59. package/docs/static/logo/favicon.ico +0 -0
  60. package/docs/static/logo/logo_128x128.png +0 -0
  61. package/docs/static/logo/logo_192x192.png +0 -0
  62. package/docs/static/logo/logo_256x256.png +0 -0
  63. package/docs/static/logo/logo_512x512.png +0 -0
  64. package/docs/static/logo/logo_64x64.png +0 -0
  65. package/package.json +84 -0
  66. package/rollup.config.mjs +76 -0
  67. package/src/_css/404.css +116 -0
  68. package/src/_css/App.css +38 -0
  69. package/src/_css/autoSuggestion.css +27 -0
  70. package/src/_css/circular-progress.css +33 -0
  71. package/src/_css/index.css +37 -0
  72. package/src/_css/modern.css +25 -0
  73. package/src/_media/404.png +0 -0
  74. package/src/_media/corner.svg +8 -0
  75. package/src/_media/download.svg +3 -0
  76. package/src/_media/icon.svg +1 -0
  77. package/src/_media/logo.svg +14 -0
  78. package/src/_test/App.test.js +15 -0
  79. package/src/_utils/reportWebVitals.js +13 -0
  80. package/src/core/appContext.js +27 -0
  81. package/src/core/components/Scatter.js +188 -0
  82. package/src/core/components/ScatterBio.js +572 -0
  83. package/src/core/components/VisiumPlot.js +165 -0
  84. package/src/core/components/browser.js +42 -0
  85. package/src/core/components/dotplot.js +413 -0
  86. package/src/core/components/html.js +29 -0
  87. package/src/core/components/list.js +178 -0
  88. package/src/core/components/macaron.js +201 -0
  89. package/src/core/components/markdown.js +56 -0
  90. package/src/core/components/parser.scatterBio.js +587 -0
  91. package/src/core/components/ratio.js +80 -0
  92. package/src/core/components/scatterL.js +173 -0
  93. package/src/core/components/searchbar.js +131 -0
  94. package/src/core/components/selection.js +193 -0
  95. package/src/core/components/timeline.js +281 -0
  96. package/src/core/components/visium.js +97 -0
  97. package/src/core/fetch/condfetch.js +82 -0
  98. package/src/core/fetch/fetch.js +92 -0
  99. package/src/core/fetch/json.js +29 -0
  100. package/src/core/fetch/vfetch.js +42 -0
  101. package/src/core/liveEditor.js +44 -0
  102. package/src/core/modules/codeEditorWithPreview.js +104 -0
  103. package/src/core/modules/echarts/common.js +20 -0
  104. package/src/core/modules/echarts/presetHandler.js +41 -0
  105. package/src/core/modules/echarts/presets/esodev.chromium.js +172 -0
  106. package/src/core/modules/echarts/presets/esodev.codex.js +130 -0
  107. package/src/core/modules/echarts/presets/esodev.visium.js +123 -0
  108. package/src/core/modules/echarts/presets/mmtrbc.js +186 -0
  109. package/src/core/modules/echarts.js +71 -0
  110. package/src/core/modules/echartsUtils.js +43 -0
  111. package/src/core/modules/echartswitcher.js +152 -0
  112. package/src/core/modules/replotly/presetHandler.js +24 -0
  113. package/src/core/modules/replotly/presets/minimum.js +18 -0
  114. package/src/core/modules/replotly/presets/mmtrbc.dot.js +114 -0
  115. package/src/core/modules/replotly/presets/mmtrbc.violin.js +100 -0
  116. package/src/core/modules/replotly.js +71 -0
  117. package/src/core/pages/404.js +50 -0
  118. package/src/core/pages/error.js +27 -0
  119. package/src/core/pages/jsonPage.js +62 -0
  120. package/src/core/pages/loading.js +44 -0
  121. package/src/core/parser/echart.data.js +183 -0
  122. package/src/core/parser/echart.features.js +125 -0
  123. package/src/core/parser/echart.general.js +147 -0
  124. package/src/core/parser/echart.hilbert.js +57 -0
  125. package/src/core/parser/echart.parser.js +210 -0
  126. package/src/core/parser/echart.series.js +67 -0
  127. package/src/core/parser/echart.types.js +76 -0
  128. package/src/core/parser/plotly.config.js +10 -0
  129. package/src/core/parser/plotly.data.js +132 -0
  130. package/src/core/parser/plotly.layout.js +10 -0
  131. package/src/core/parser/plotly.violin.js +18 -0
  132. package/src/core/recharts.js +62 -0
  133. package/src/core/router/alias.js +49 -0
  134. package/src/core/router/jsonRouter.js +31 -0
  135. package/src/core/themes/modern.js +32 -0
  136. package/src/core/themes/themeSelector.js +33 -0
  137. package/src/core/visualify.js +47 -0
  138. package/src/core/widgets/circularProgress.js +24 -0
  139. package/src/core/widgets/controller.js +83 -0
  140. package/src/core/widgets/errorBoundary.js +36 -0
  141. package/src/core/widgets/footer.js +177 -0
  142. package/src/core/widgets/header.js +234 -0
  143. package/src/core/widgets/layout/Grid.js +31 -0
  144. package/src/core/widgets/layout.js +36 -0
  145. package/src/core/widgets/mapping.js +42 -0
  146. package/src/index.js +62 -0
  147. package/src/setupTests.js +5 -0
Binary file
Binary file
package/package.json ADDED
@@ -0,0 +1,84 @@
1
+ {
2
+ "name": "visualifyjs",
3
+ "version": "2.5.3-2.dev",
4
+ "main": "dist/visualify.js",
5
+ "homepage": "https://visualify.pharmacy.arizona.edu",
6
+ "license": "GNU General Public License v3.0",
7
+ "description": "Visualify is a web-based platform for visualizing and analyzing large-scale omics data.",
8
+ "keywords": [
9
+ "visualization",
10
+ "analysis",
11
+ "web",
12
+ "platform"
13
+ ],
14
+ "dependencies": {
15
+ "@testing-library/jest-dom": "^5.17.0",
16
+ "@testing-library/react": "^13.4.0",
17
+ "@testing-library/user-event": "^13.5.0",
18
+ "ace-builds": "^1.32.0",
19
+ "axios": "^1.6.2",
20
+ "bootstrap": "^5.3.2",
21
+ "dompurify": "^3.0.6",
22
+ "echarts": "^5.4.3",
23
+ "echarts-for-react": "^3.0.2",
24
+ "hilbert": "^2.0.0",
25
+ "lodash": "^4.17.21",
26
+ "react": "^18.2.0",
27
+ "react-ace": "^10.1.0",
28
+ "react-bootstrap": "^2.9.1",
29
+ "react-dom": "^18.2.0",
30
+ "react-markdown": "^9.0.1",
31
+ "react-plotly.js": "^2.6.0",
32
+ "react-router-dom": "^6.20.0",
33
+ "react-scripts": "5.0.1",
34
+ "react-select": "^5.8.0",
35
+ "remark": "^15.0.1",
36
+ "remark-html": "^16.0.1",
37
+ "web-vitals": "^2.1.4"
38
+ },
39
+ "scripts": {
40
+ "rollup": "rollup -c",
41
+ "start": "react-app-rewired start",
42
+ "build": "npm run rollup & react-app-rewired build",
43
+ "test": "react-app-rewired test",
44
+ "eject": "react-scripts eject"
45
+ },
46
+ "eslintConfig": {
47
+ "extends": [
48
+ "react-app",
49
+ "react-app/jest"
50
+ ]
51
+ },
52
+ "browserslist": {
53
+ "production": [
54
+ ">0.2%",
55
+ "not dead",
56
+ "not op_mini all"
57
+ ],
58
+ "development": [
59
+ "last 1 chrome version",
60
+ "last 1 firefox version",
61
+ "last 1 safari version"
62
+ ]
63
+ },
64
+ "devDependencies": {
65
+ "@babel/core": "^7.23.5",
66
+ "@babel/plugin-proposal-private-property-in-object": "^7.21.11",
67
+ "@babel/preset-env": "^7.23.5",
68
+ "@babel/preset-react": "^7.23.3",
69
+ "@rollup/plugin-babel": "^6.0.4",
70
+ "@rollup/plugin-commonjs": "^25.0.7",
71
+ "@rollup/plugin-image": "^3.0.3",
72
+ "@rollup/plugin-json": "^6.0.1",
73
+ "@rollup/plugin-node-resolve": "^15.2.3",
74
+ "@rollup/plugin-replace": "^5.0.5",
75
+ "@rollup/plugin-terser": "^0.4.4",
76
+ "@rollup/plugin-url": "^8.0.2",
77
+ "babel-plugin-inline-react-svg": "^2.0.2",
78
+ "react-app-rewired": "^2.2.1",
79
+ "rollup": "^2.79.1",
80
+ "rollup-plugin-css-only": "^4.5.2",
81
+ "rollup-plugin-polyfill-node": "^0.13.0",
82
+ "rollup-plugin-postcss": "^4.0.2"
83
+ }
84
+ }
@@ -0,0 +1,76 @@
1
+ /*
2
+ * @Author : Lihao leolihao@arizona.edu
3
+ * @Date : 2023-12-01 12:51:04
4
+ * @FilePath : /visualifyjs/rollup.config.mjs
5
+ * @Description :
6
+ * Copyright (c) 2023 by Lihao (leolihao@arizona.edu), All Rights Reserved.
7
+ */
8
+ // rollup.config.js
9
+ import resolve from '@rollup/plugin-node-resolve';
10
+ import commonjs from '@rollup/plugin-commonjs';
11
+ import babel from '@rollup/plugin-babel';
12
+ import replace from '@rollup/plugin-replace';
13
+ import terser from '@rollup/plugin-terser';
14
+ import json from '@rollup/plugin-json';
15
+ import postcss from 'rollup-plugin-postcss';
16
+ import nodePolyfills from 'rollup-plugin-polyfill-node';
17
+ import image from '@rollup/plugin-image';
18
+ import inlineReactSvg from 'babel-plugin-inline-react-svg';
19
+ import url from '@rollup/plugin-url';
20
+
21
+ //import css from 'rollup-plugin-css-only';
22
+
23
+ function onwarn(warning, warn) {
24
+ if (warning.code === 'MODULE_LEVEL_DIRECTIVE') {
25
+ return;
26
+ }
27
+ warn(warning);
28
+ }
29
+
30
+ export default {
31
+ input: 'src/index.js',
32
+ output: [{
33
+ dir: 'dist/',
34
+ format: 'esm',
35
+ entryFileNames: 'visualify.js',
36
+ inlineDynamicImports: true,
37
+ sourcemap: false,
38
+ },
39
+ {
40
+ dir: 'docs/static/js',
41
+ format: 'esm',
42
+ entryFileNames: 'visualify.js',
43
+ inlineDynamicImports: true,
44
+ sourcemap: false,
45
+ },
46
+ ],
47
+ plugins: [
48
+ replace({
49
+ preventAssignment: true,
50
+ 'process.env.NODE_ENV': JSON.stringify('production'),
51
+ }),
52
+ resolve({ browser: true }),
53
+ babel({
54
+ exclude: 'node_modules/**',
55
+ babelHelpers: 'bundled',
56
+ presets: ['@babel/preset-env', '@babel/preset-react'],
57
+ plugins: [inlineReactSvg],
58
+ }),
59
+ postcss({
60
+ extensions: ['.css'],
61
+ inject: true,
62
+ minimize: true,
63
+ }),
64
+ url({
65
+ include: ['**/*.svg'], // Only SVG files
66
+ limit: 0, // 0 bytes
67
+ emitFiles: true,
68
+ }),
69
+ commonjs(),
70
+ terser(),
71
+ json(),
72
+ nodePolyfills(),
73
+ image(),
74
+ ],
75
+ onwarn,
76
+ };
@@ -0,0 +1,116 @@
1
+ * {
2
+ -webkit-box-sizing: border-box;
3
+ box-sizing: border-box;
4
+ }
5
+
6
+ body.colorlib-body {
7
+ padding: 0;
8
+ margin: 0;
9
+ }
10
+
11
+ #colorlib-notfound {
12
+ min-height: 60vh;
13
+ /* Ensures that the container takes at least the full viewport height */
14
+ position: relative;
15
+ display: flex;
16
+ flex-direction: column;
17
+ /* Stack children vertically */
18
+ justify-content: center;
19
+ /* Center children vertically */
20
+ align-items: center;
21
+ /* Center children horizontally */
22
+ padding: 3rem 1rem;
23
+ /* Add some padding around */
24
+ }
25
+
26
+ .colorlib-notfound {
27
+ max-width: 767px;
28
+ width: -moz-fit-content;
29
+ width: fit-content;
30
+ line-height: 1.4;
31
+ padding: 0 15px;
32
+ text-align: center;
33
+ /* Center the text */
34
+ }
35
+
36
+ .colorlib-notfound .colorlib-notfound-404 {
37
+ position: relative;
38
+ height: 150px;
39
+ line-height: 150px;
40
+ margin-bottom: 25px;
41
+ }
42
+
43
+ .colorlib-notfound .colorlib-notfound-404 h1 {
44
+ font-family: 'Titillium Web', sans-serif;
45
+ font-size: 186px;
46
+ font-weight: 900;
47
+ margin: 0;
48
+ text-transform: uppercase;
49
+ background: url('../_media/404.png') no-repeat center;
50
+ -webkit-background-clip: text;
51
+ background-clip: text;
52
+ -webkit-text-fill-color: transparent;
53
+ background-size: cover;
54
+ }
55
+
56
+ .colorlib-notfound h2 {
57
+ font-family: 'Titillium Web', sans-serif;
58
+ font-size: 26px;
59
+ font-weight: 700;
60
+ margin: 0;
61
+ }
62
+
63
+ .colorlib-notfound p {
64
+ font-family: 'Montserrat', sans-serif;
65
+ font-size: 14px;
66
+ font-weight: 500;
67
+ margin-bottom: 0;
68
+ text-transform: uppercase;
69
+ }
70
+
71
+ .colorlib-notfound a {
72
+ font-family: 'Titillium Web', sans-serif;
73
+ display: inline-block;
74
+ text-transform: uppercase;
75
+ color: #fff;
76
+ text-decoration: none;
77
+ background: #5c91fe;
78
+ padding: 10px 40px;
79
+ font-size: 14px;
80
+ font-weight: 700;
81
+ border-radius: 1px;
82
+ margin-top: 15px;
83
+ -webkit-transition: 0.2s all;
84
+ transition: 0.2s all;
85
+ }
86
+
87
+ .colorlib-notfound a:hover {
88
+ opacity: 0.8;
89
+ }
90
+
91
+ .colorlib-copyrigh {
92
+ font-size: 0.8rem;
93
+ text-align: center;
94
+ margin-top: 20px;
95
+ width: 100%;
96
+ position: absolute;
97
+ /* Make it break out of the flexbox */
98
+ bottom: 10px;
99
+ /* Position it at the bottom of the page */
100
+ }
101
+
102
+ @media only screen and (max-width: 767px) {
103
+ .colorlib-notfound .colorlib-notfound-404 {
104
+ height: 110px;
105
+ line-height: 110px;
106
+ }
107
+ .colorlib-notfound .colorlib-notfound-404 h1 {
108
+ font-size: 120px;
109
+ }
110
+ }
111
+
112
+ @media only screen and (max-height: 600px) {
113
+ #colorlib-notfound {
114
+ min-height: 100vh;
115
+ }
116
+ }
@@ -0,0 +1,38 @@
1
+ .App {
2
+ text-align: center;
3
+ }
4
+
5
+ .App-logo {
6
+ height: 20vmin;
7
+ pointer-events: none;
8
+ }
9
+
10
+ @media (prefers-reduced-motion: no-preference) {
11
+ .App-logo {
12
+ animation: App-logo-spin infinite 20s linear;
13
+ }
14
+ }
15
+
16
+ .App-header {
17
+ background-color: #282c34;
18
+ min-height: 10vh;
19
+ display: flex;
20
+ flex-direction: column;
21
+ align-items: center;
22
+ justify-content: center;
23
+ font-size: calc(10px + 2vmin);
24
+ color: white;
25
+ }
26
+
27
+ .App-link {
28
+ color: #61dafb;
29
+ }
30
+
31
+ @keyframes App-logo-spin {
32
+ from {
33
+ transform: rotate(0deg);
34
+ }
35
+ to {
36
+ transform: rotate(360deg);
37
+ }
38
+ }
@@ -0,0 +1,27 @@
1
+ .autosuggestion {
2
+ position: relative;
3
+ margin: 1rem;
4
+ }
5
+
6
+ .suggestion-list {
7
+ position: relative;
8
+ list-style-type: none;
9
+ margin: 0;
10
+ padding: 0;
11
+ background-color: white;
12
+ box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
13
+ max-width: 100%;
14
+ overflow: auto;
15
+ z-index: 1000;
16
+ border-radius: 4px;
17
+ }
18
+
19
+ .suggestion-item {
20
+ padding: 8px 16px;
21
+ cursor: pointer;
22
+ text-align: center;
23
+ }
24
+
25
+ .suggestion-item:hover {
26
+ background-color: #f0f0f0;
27
+ }
@@ -0,0 +1,33 @@
1
+ .circular-progress {
2
+ display: flex;
3
+ justify-content: center;
4
+ align-items: center;
5
+ }
6
+
7
+ .spinner {
8
+ width: 30px;
9
+ height: 30px;
10
+ border: 4px solid rgba(0, 0, 0, 0.1);
11
+ border-left-color: #333;
12
+ border-radius: 50%;
13
+ animation: spin 1s linear infinite;
14
+ }
15
+
16
+ .spinner.primary {
17
+ border-left-color: #1976d2;
18
+ /* Change color as needed */
19
+ }
20
+
21
+ .spinner.secondary {
22
+ border-left-color: #f50057;
23
+ /* Change color as needed */
24
+ }
25
+
26
+ @keyframes spin {
27
+ 0% {
28
+ transform: rotate(0deg);
29
+ }
30
+ 100% {
31
+ transform: rotate(360deg);
32
+ }
33
+ }
@@ -0,0 +1,37 @@
1
+ body {
2
+ margin: 0;
3
+ font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
4
+ -webkit-font-smoothing: antialiased;
5
+ -moz-osx-font-smoothing: grayscale;
6
+ }
7
+
8
+ code {
9
+ font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New', monospace;
10
+ }
11
+
12
+ .reference-list {
13
+ padding: 0;
14
+ margin-top: 1rem;
15
+ margin-bottom: 1rem;
16
+ border-radius: 0.25rem;
17
+ }
18
+
19
+ .reference-item.none {
20
+ list-style-type: none;
21
+ }
22
+
23
+ .reference-item.circle {
24
+ list-style-type: circle;
25
+ }
26
+
27
+ .reference-item.disc {
28
+ list-style-type: disc;
29
+ }
30
+
31
+ .reference-item.square {
32
+ list-style-type: square;
33
+ }
34
+
35
+ .no-border-radius {
36
+ border-radius: 0 !important;
37
+ }
@@ -0,0 +1,25 @@
1
+ .v-header .rainbow-text {
2
+ background-image: linear-gradient( to right, rgb(198, 255, 221), rgb(251, 215, 134), rgb(247, 121, 125));
3
+ -webkit-background-clip: text;
4
+ background-clip: text;
5
+ color: transparent;
6
+ }
7
+
8
+ .v-header .logo {
9
+ padding-bottom: 5px;
10
+ }
11
+
12
+ .navbar-nav .nav-link.active {
13
+ font-weight: bold;
14
+ }
15
+
16
+ .selection-box-container {
17
+ max-width: 100%;
18
+ min-height: 100px;
19
+ height: auto;
20
+ }
21
+
22
+ .select-wrapper {
23
+ max-width: 100%;
24
+ margin-bottom: 10px;
25
+ }
Binary file
@@ -0,0 +1,8 @@
1
+ <svg width="80" height="80" viewBox="0 0 250 250" style="fill:#151513; color:#fff; position: absolute; top: 0; border: 0; right: 0;" aria-hidden="true">
2
+ <path d="M0,0 L115,115 L130,115 L142,142 L250,250 L250,0 Z">
3
+ </path>
4
+ <path d="M128.3,109.0 C113.8,99.7 119.0,89.6 119.0,89.6 C122.0,82.7 120.5,78.6 120.5,78.6 C119.2,72.0 123.4,76.3 123.4,76.3 C127.3,80.9 125.5,87.3 125.5,87.3 C122.9,97.6 130.6,101.9 134.4,103.2" fill="currentColor" style="transform-origin: 130px 106px;" class="octo-arm">
5
+ </path>
6
+ <path d="M115.0,115.0 C114.9,115.1 118.7,116.5 119.8,115.4 L133.7,101.6 C136.9,99.2 139.9,98.4 142.2,98.6 C133.8,88.0 127.5,74.4 143.8,58.0 C148.5,53.4 154.0,51.2 159.7,51.0 C160.3,49.4 163.2,43.6 171.4,40.1 C171.4,40.1 176.1,42.5 178.8,56.2 C183.1,58.6 187.2,61.8 190.9,65.4 C194.5,69.0 197.7,73.2 200.1,77.6 C213.8,80.2 216.3,84.9 216.3,84.9 C212.7,93.1 206.9,96.0 205.4,96.6 C205.1,102.4 203.0,107.8 198.3,112.5 C181.9,128.9 168.3,122.5 157.7,114.1 C157.9,116.9 156.7,120.9 152.7,124.9 L141.0,136.5 C139.8,137.7 141.6,141.9 141.8,141.8 Z" fill="currentColor" class="octo-body">
7
+ </path>
8
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="40">
2
+ <path d="M30 20.75c-0.69 0.001-1.249 0.56-1.25 1.25v6.75h-25.5v-6.75c0-0.69-0.56-1.25-1.25-1.25s-1.25 0.56-1.25 1.25v0 8c0 0.69 0.56 1.25 1.25 1.25h28c0.69-0.001 1.249-0.56 1.25-1.25v-8c-0.001-0.69-0.56-1.249-1.25-1.25h-0zM15.116 24.885c0.012 0.012 0.029 0.016 0.041 0.027 0.103 0.099 0.223 0.18 0.356 0.239l0.008 0.003 0.001 0c0.141 0.060 0.306 0.095 0.478 0.095 0.345 0 0.657-0.139 0.883-0.365l5.001-5c0.226-0.226 0.366-0.539 0.366-0.884 0-0.691-0.56-1.251-1.251-1.251-0.345 0-0.658 0.14-0.884 0.366l-2.865 2.867v-18.982c0-0.69-0.56-1.25-1.25-1.25s-1.25 0.56-1.25 1.25v0 18.981l-2.866-2.866c-0.226-0.226-0.539-0.366-0.884-0.366-0.691 0-1.251 0.56-1.251 1.251 0 0.346 0.14 0.658 0.367 0.885v0z" />
3
+ </svg>