diff --git a/docs-about/ad.md b/docs-about/ad.md
index e8c3fe209..b9dfa7308 100644
--- a/docs-about/ad.md
+++ b/docs-about/ad.md
@@ -5,7 +5,11 @@ title: 广告
# 广告
-**在组织恢复前,广告不会更新和恢复**
+:::warning
+
+在组织恢复前,广告不会更新和恢复
+
+:::
## 存档
diff --git a/src/components/CubicBanner/index.jsx b/src/components/CubicBanner/index.jsx
new file mode 100644
index 000000000..524ba071e
--- /dev/null
+++ b/src/components/CubicBanner/index.jsx
@@ -0,0 +1,253 @@
+import React, { useEffect, useRef } from 'react';
+import Link from '@docusaurus/Link';
+import styles from './styles.module.css';
+
+export default function CubicBanner() {
+ const cubeContainerRef = useRef(null);
+ const cubeRef = useRef(null);
+
+ useEffect(() => {
+ const cubeContainer = cubeContainerRef.current;
+ const cube = cubeRef.current;
+
+ if (!cubeContainer || !cube) return;
+
+ let isDragging = false;
+ let startX = 0;
+ let startY = 0;
+
+ // Initial state
+ const initialRotateX = -25;
+ const initialRotateY = 40;
+
+ // Current state
+ let rotateX = initialRotateX;
+ let rotateY = initialRotateY;
+ let translateX = 0;
+ let translateY = 0;
+
+ // Animation variables
+ let animationId = null;
+ let velocityX = 0;
+ let velocityY = 0;
+ let velocityRotX = 0;
+ let velocityRotY = 0;
+
+ // Spring parameters
+ const springStiffness = 0.08;
+ const damping = 0.85;
+ const threshold = 0.5;
+
+ // Drag constraints
+ const maxDrag = 250;
+ const resistance = 0.85;
+
+ const updateCubeTransform = () => {
+ if (cube) {
+ cube.style.transform =
+ `translate(${translateX}px, ${translateY}px) ` +
+ `rotateX(${rotateX}deg) rotateY(${rotateY}deg)`;
+ }
+ };
+
+ const startSpringBack = () => {
+ const animate = () => {
+ // Calculate distance from initial position
+ const distX = 0 - translateX;
+ const distY = 0 - translateY;
+ const distRotX = initialRotateX - rotateX;
+ const distRotY = initialRotateY - rotateY;
+
+ // Apply spring force
+ velocityX += distX * springStiffness;
+ velocityY += distY * springStiffness;
+ velocityRotX += distRotX * springStiffness;
+ velocityRotY += distRotY * springStiffness;
+
+ // Apply damping
+ velocityX *= damping;
+ velocityY *= damping;
+ velocityRotX *= damping;
+ velocityRotY *= damping;
+
+ // Update position and rotation
+ translateX += velocityX;
+ translateY += velocityY;
+ rotateX += velocityRotX;
+ rotateY += velocityRotY;
+
+ updateCubeTransform();
+
+ // Check if animation should stop
+ const totalVelocity = Math.abs(velocityX) + Math.abs(velocityY) +
+ Math.abs(velocityRotX) + Math.abs(velocityRotY);
+ const totalDistance = Math.abs(distX) + Math.abs(distY) +
+ Math.abs(distRotX) + Math.abs(distRotY);
+
+ if (totalVelocity > threshold || totalDistance > threshold) {
+ animationId = requestAnimationFrame(animate);
+ } else {
+ // End animation, snap to initial state
+ translateX = 0;
+ translateY = 0;
+ rotateX = initialRotateX;
+ rotateY = initialRotateY;
+ updateCubeTransform();
+ animationId = null;
+ }
+ };
+
+ animate();
+ };
+
+ const handleMouseDown = (e) => {
+ isDragging = true;
+ startX = e.clientX;
+ startY = e.clientY;
+
+ if (animationId) {
+ cancelAnimationFrame(animationId);
+ animationId = null;
+ }
+
+ velocityX = velocityY = velocityRotX = velocityRotY = 0;
+ e.preventDefault();
+ };
+
+ const handleMouseMove = (e) => {
+ if (!isDragging) return;
+
+ let deltaX = e.clientX - startX;
+ let deltaY = e.clientY - startY;
+
+ // Apply resistance (rubber band effect)
+ const distanceFromOrigin = Math.sqrt(deltaX * deltaX + deltaY * deltaY);
+ if (distanceFromOrigin > maxDrag) {
+ const scale = maxDrag / distanceFromOrigin;
+ deltaX *= scale;
+ deltaY *= scale;
+ }
+
+ translateX = deltaX * resistance;
+ translateY = deltaY * resistance;
+
+ // Rotate based on drag direction
+ rotateY = initialRotateY + deltaX * 0.3;
+ rotateX = initialRotateX - deltaY * 0.3;
+
+ updateCubeTransform();
+ };
+
+ const handleMouseUp = () => {
+ if (isDragging) {
+ isDragging = false;
+ startSpringBack();
+ }
+ };
+
+ // Touch support
+ const handleTouchStart = (e) => {
+ isDragging = true;
+ const touch = e.touches[0];
+ startX = touch.clientX;
+ startY = touch.clientY;
+
+ if (animationId) {
+ cancelAnimationFrame(animationId);
+ animationId = null;
+ }
+
+ velocityX = velocityY = velocityRotX = velocityRotY = 0;
+ // Don't prevent default here to allow scrolling if not dragging cube
+ };
+
+ const handleTouchMove = (e) => {
+ if (!isDragging) return;
+
+ const touch = e.touches[0];
+ let deltaX = touch.clientX - startX;
+ let deltaY = touch.clientY - startY;
+
+ const distanceFromOrigin = Math.sqrt(deltaX * deltaX + deltaY * deltaY);
+ if (distanceFromOrigin > maxDrag) {
+ const scale = maxDrag / distanceFromOrigin;
+ deltaX *= scale;
+ deltaY *= scale;
+ }
+
+ translateX = deltaX * resistance;
+ translateY = deltaY * resistance;
+
+ rotateY = initialRotateY + deltaX * 0.3;
+ rotateX = initialRotateX - deltaY * 0.3;
+
+ updateCubeTransform();
+ e.preventDefault(); // Prevent scrolling while dragging
+ };
+
+ const handleTouchEnd = () => {
+ if (isDragging) {
+ isDragging = false;
+ startSpringBack();
+ }
+ };
+
+ // Add event listeners
+ cubeContainer.addEventListener('mousedown', handleMouseDown);
+ document.addEventListener('mousemove', handleMouseMove);
+ document.addEventListener('mouseup', handleMouseUp);
+
+ cubeContainer.addEventListener('touchstart', handleTouchStart, { passive: false });
+ document.addEventListener('touchmove', handleTouchMove, { passive: false });
+ document.addEventListener('touchend', handleTouchEnd);
+
+ // Cleanup
+ return () => {
+ cubeContainer.removeEventListener('mousedown', handleMouseDown);
+ document.removeEventListener('mousemove', handleMouseMove);
+ document.removeEventListener('mouseup', handleMouseUp);
+
+ cubeContainer.removeEventListener('touchstart', handleTouchStart);
+ document.removeEventListener('touchmove', handleTouchMove);
+ document.removeEventListener('touchend', handleTouchEnd);
+
+ if (animationId) {
+ cancelAnimationFrame(animationId);
+ }
+ };
+ }, []);
+
+ return (
+
+
+
+
+
CUBIC-PROJECT
+
Cubic-Wiki
+
+ Minecraft Java & Bedrock
+ 全版本服务器开服教程
+
+
+
+ Start Guide
+
+
+ View Source
+
+
+
+
+ );
+}
\ No newline at end of file
diff --git a/src/components/CubicBanner/styles.module.css b/src/components/CubicBanner/styles.module.css
new file mode 100644
index 000000000..87514fa82
--- /dev/null
+++ b/src/components/CubicBanner/styles.module.css
@@ -0,0 +1,349 @@
+.cubicBanner {
+ position: relative;
+ width: 100%;
+ max-width: 1100px;
+ margin: 40px auto;
+ min-height: 350px;
+ background-color: #F5F7F9;
+ border-radius: 16px;
+ overflow: hidden;
+ box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
+ display: flex;
+ align-items: center;
+ padding-left: 70px;
+ color: #333;
+}
+
+html[data-theme="dark"] .cubicBanner {
+ background-color: #1b1b1d;
+ color: #e3e3e3;
+ box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
+}
+
+.contentBox {
+ position: relative;
+ z-index: 10;
+ max-width: 480px;
+}
+
+.badge {
+ display: inline-block;
+ background-color: #90A4AE;
+ color: #fff;
+ padding: 5px 10px;
+ border-radius: 4px;
+ font-size: 0.75rem;
+ font-weight: 700;
+ margin-bottom: 14px;
+ letter-spacing: 1px;
+}
+
+html[data-theme="dark"] .badge {
+ background-color: #546E7A;
+}
+
+.bannerTitle {
+ font-size: 3.2rem;
+ font-weight: 800;
+ letter-spacing: -1px;
+ margin-bottom: 10px;
+ color: #37474F;
+ line-height: 1.1;
+}
+
+html[data-theme="dark"] .bannerTitle {
+ color: #ECEFF1;
+}
+
+.bannerDesc {
+ font-size: 1.1rem;
+ color: #78909C;
+ font-weight: 500;
+ margin-bottom: 24px;
+}
+
+html[data-theme="dark"] .bannerDesc {
+ color: #B0BEC5;
+}
+
+.btnGroup {
+ display: flex;
+ gap: 12px;
+ flex-wrap: wrap;
+}
+
+.btn {
+ display: inline-flex;
+ align-items: center;
+ justify-content: center;
+ padding: 8px 24px;
+ background-color: #fff;
+ border: 1px solid #CFD8DC;
+ color: #546E7A;
+ border-radius: 6px;
+ font-size: 0.9rem;
+ font-weight: 600;
+ box-shadow: 0 2px 5px rgba(0,0,0,0.05);
+ cursor: pointer;
+ transition: all 0.3s ease;
+ text-decoration: none;
+}
+
+.btnSecondary {
+ background-color: transparent;
+ border-color: #90A4AE;
+ color: #546E7A;
+ box-shadow: none;
+}
+
+html[data-theme="dark"] .btn {
+ background-color: #37474F;
+ border-color: #455A64;
+ color: #ECEFF1;
+}
+
+html[data-theme="dark"] .btnSecondary {
+ background-color: transparent;
+ border-color: #546E7A;
+ color: #B0BEC5;
+}
+
+.btn:hover {
+ transform: translateY(-1px);
+ box-shadow: 0 4px 10px rgba(0,0,0,0.06);
+ text-decoration: none;
+ color: #546E7A;
+}
+
+.btnSecondary:hover {
+ background-color: rgba(144, 164, 174, 0.1);
+ color: #37474F;
+}
+
+html[data-theme="dark"] .btn:hover {
+ color: #fff;
+ background-color: #455A64;
+}
+
+html[data-theme="dark"] .btnSecondary:hover {
+ background-color: rgba(84, 110, 122, 0.2);
+ color: #ECEFF1;
+}
+
+/* Graphic Area */
+.graphicArea {
+ position: absolute;
+ right: 80px;
+ top: 50%;
+ transform: translateY(-50%);
+ width: 240px;
+ height: 240px;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ pointer-events: none;
+ z-index: 5;
+}
+
+.cubeContainer {
+ position: relative;
+ width: 180px;
+ height: 180px;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ pointer-events: auto;
+ cursor: grab;
+}
+
+.cubeContainer:active {
+ cursor: grabbing;
+}
+
+.cube {
+ position: relative;
+ width: 110px;
+ height: 110px;
+ transform-style: preserve-3d;
+ transform: rotateX(-25deg) rotateY(40deg);
+}
+
+.cubeFace {
+ position: absolute;
+ width: 110px;
+ height: 110px;
+ opacity: 0.95;
+}
+
+.cubeTop {
+ background: linear-gradient(135deg, #B0BEC5 0%, #90A4AE 100%);
+ transform: rotateX(90deg) translateZ(55px);
+ border: 1px solid rgba(255, 255, 255, 0.3);
+}
+
+.cubeLeft {
+ background: linear-gradient(135deg, #78909C 0%, #607D8B 100%);
+ transform: rotateY(-90deg) translateZ(55px);
+ border: 1px solid rgba(255, 255, 255, 0.2);
+}
+
+.cubeRight {
+ background: linear-gradient(135deg, #90A4AE 0%, #78909C 100%);
+ transform: rotateY(90deg) translateZ(55px);
+ border: 1px solid rgba(255, 255, 255, 0.2);
+}
+
+.cubeFront {
+ background: linear-gradient(135deg, #CFD8DC 0%, #B0BEC5 100%);
+ transform: translateZ(55px);
+ border: 1px solid rgba(255, 255, 255, 0.4);
+}
+
+.cubeBottom {
+ background: linear-gradient(135deg, rgba(96, 125, 139, 0.65) 0%, rgba(84, 110, 122, 0.75) 100%);
+ transform: rotateX(-90deg) translateZ(55px);
+ border: 1px solid rgba(255, 255, 255, 0.18);
+ opacity: 0.8;
+}
+
+.cubeBack {
+ background: linear-gradient(135deg, rgba(144, 164, 174, 0.4) 0%, rgba(120, 144, 156, 0.5) 100%);
+ transform: rotateY(180deg) translateZ(55px);
+ border: 1px solid rgba(255, 255, 255, 0.15);
+ opacity: 0.65;
+}
+
+html[data-theme="dark"] .cubeTop {
+ background: linear-gradient(135deg, #78909C 0%, #546E7A 100%);
+ border-color: rgba(255, 255, 255, 0.15);
+}
+
+html[data-theme="dark"] .cubeLeft {
+ background: linear-gradient(135deg, #455A64 0%, #37474F 100%);
+ border-color: rgba(255, 255, 255, 0.1);
+}
+
+html[data-theme="dark"] .cubeRight {
+ background: linear-gradient(135deg, #546E7A 0%, #455A64 100%);
+ border-color: rgba(255, 255, 255, 0.1);
+}
+
+html[data-theme="dark"] .cubeFront {
+ background: linear-gradient(135deg, #90A4AE 0%, #78909C 100%);
+ border-color: rgba(255, 255, 255, 0.2);
+}
+
+html[data-theme="dark"] .cubeBottom {
+ background: linear-gradient(135deg, rgba(69, 90, 100, 0.65) 0%, rgba(55, 71, 79, 0.75) 100%);
+ border-color: rgba(255, 255, 255, 0.1);
+}
+
+html[data-theme="dark"] .cubeBack {
+ background: linear-gradient(135deg, rgba(84, 110, 122, 0.4) 0%, rgba(69, 90, 100, 0.5) 100%);
+ border-color: rgba(255, 255, 255, 0.1);
+}
+
+.graphicBg {
+ position: absolute;
+ top: 0;
+ right: 0;
+ width: 55%;
+ height: 100%;
+ background-image: radial-gradient(#B0BEC5 1.5px, transparent 1.5px);
+ background-size: 24px 24px;
+ opacity: 0.25;
+ z-index: 1;
+ -webkit-mask-image: linear-gradient(to right, transparent 5%, black 40%);
+ mask-image: linear-gradient(to right, transparent 5%, black 40%);
+ pointer-events: none;
+}
+
+html[data-theme="dark"] .graphicBg {
+ background-image: radial-gradient(#546E7A 1.5px, transparent 1.5px);
+ opacity: 0.15;
+}
+
+/* Responsive */
+@media (max-width: 900px) {
+ .cubicBanner {
+ width: auto;
+ margin: 20px 16px;
+ }
+}
+
+@media (max-width: 720px) {
+ .cubicBanner {
+ padding: 24px;
+ flex-direction: column-reverse;
+ align-items: center;
+ height: auto;
+ text-align: center;
+ }
+
+ .contentBox {
+ max-width: 100%;
+ margin-bottom: 0;
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+ }
+
+ .btnGroup {
+ justify-content: center;
+ }
+
+ .graphicArea {
+ position: relative;
+ right: auto;
+ top: auto;
+ transform: none;
+ width: 100%;
+ height: 200px;
+ justify-content: center;
+ padding-right: 0;
+ margin-bottom: 20px;
+ }
+
+ .cubeContainer {
+ width: 140px;
+ height: 140px;
+ }
+
+ .cube {
+ width: 100px;
+ height: 100px;
+ }
+
+ .cubeFace {
+ width: 100px !important;
+ height: 100px !important;
+ }
+
+ .cube .cubeTop {
+ transform: rotateX(90deg) translateZ(50px);
+ }
+
+ .cube .cubeLeft {
+ transform: rotateY(-90deg) translateZ(50px);
+ }
+
+ .cube .cubeRight {
+ transform: rotateY(90deg) translateZ(50px);
+ }
+
+ .cube .cubeFront {
+ transform: translateZ(50px);
+ }
+
+ .cube .cubeBottom {
+ transform: rotateX(-90deg) translateZ(50px);
+ }
+
+ .cube .cubeBack {
+ transform: rotateY(180deg) translateZ(50px);
+ }
+
+ .graphicBg {
+ display: none;
+ }
+}
\ No newline at end of file
diff --git a/src/css/ad.css b/src/css/ad.css
index f334b9b04..7d00a9fab 100644
--- a/src/css/ad.css
+++ b/src/css/ad.css
@@ -45,13 +45,13 @@
@media screen and (min-width: 996px) {
.extern-item {
border: 1px solid var(--primary);
- background-color: rgba(37, 160, 110, 0.08);
+ background-color: var(--primary-alpha-medium);
padding: 0.35rem 0.5rem;
margin: 0 0.4rem !important;
}
.extern-item:hover {
- background-color: rgba(37, 160, 110, 0.15);
+ background-color: var(--primary-alpha-strong);
border-color: var(--primary-dark);
}
@@ -77,13 +77,13 @@ html[data-theme="dark"] .extern-item:hover {
/* 暗色模式 PC端 */
@media screen and (min-width: 996px) {
- html[data-theme="dark"] .extern-item {
- background-color: rgba(54, 192, 133, 0.1);
+ html[data-theme='dark'] .extern-item {
+ background-color: var(--primary-alpha-medium);
border: 1px solid var(--primary);
}
-
- html[data-theme="dark"] .extern-item:hover {
- background-color: rgba(54, 192, 133, 0.18);
+
+ html[data-theme='dark'] .extern-item:hover {
+ background-color: var(--primary-alpha-strong);
border-color: var(--primary-light);
}
}
diff --git a/src/css/base/theme.css b/src/css/base/theme.css
index d93f5e2a3..4a185041f 100644
--- a/src/css/base/theme.css
+++ b/src/css/base/theme.css
@@ -1,22 +1,22 @@
-[data-theme="dark"] {
- --primary: #36c085;
- --primary-dark: #30b77c;
- --primary-light: #4fd197;
- --primary-alpha-light: rgba(54, 192, 133, 0.04);
- --primary-alpha-medium: rgba(54, 192, 133, 0.08);
- --primary-alpha-strong: rgba(54, 192, 133, 0.1);
- --text-primary: #f7fafc;
- --text-secondary: #e2e8f0;
- --bg-light: #1e242c;
- --bg-dark: #171e26;
- --bg-card: #1e2833;
- --bg-footer: #171e26;
- --border: #364049;
- --ifm-navbar-background-color: rgba(30, 36, 44, 0.98);
- --ifm-background-color: var(--bg-dark);
- --ifm-background-surface-color: var(--bg-card);
- --ifm-color-primary: var(--primary);
- --ifm-color-primary-dark: var(--primary-dark);
+[data-theme='dark'] {
+ --primary: #90A4AE;
+ --primary-dark: #607D8B;
+ --primary-light: #CFD8DC;
+ --primary-alpha-light: rgba(144, 164, 174, 0.04);
+ --primary-alpha-medium: rgba(144, 164, 174, 0.08);
+ --primary-alpha-strong: rgba(144, 164, 174, 0.1);
+ --text-primary: #f7fafc;
+ --text-secondary: #e2e8f0;
+ --bg-light: #1E242C;
+ --bg-dark: #171E26;
+ --bg-card: #1E2833;
+ --bg-footer: #171E26;
+ --border: #364049;
+ --ifm-navbar-background-color: rgba(30, 36, 44, 0.98);
+ --ifm-background-color: var(--bg-dark);
+ --ifm-background-surface-color: var(--bg-card);
+ --ifm-color-primary: var(--primary);
+ --ifm-color-primary-dark: var(--primary-dark);
}
[data-theme="light"] body,
@@ -46,8 +46,8 @@
border-color: var(--border);
}
-[data-theme="dark"] .card:hover {
- border-color: rgba(54, 192, 133, 0.3);
+[data-theme='dark'] .card:hover {
+ border-color: rgba(144, 164, 174, 0.3);
}
[data-theme="dark"] .footer__copyright {
diff --git a/src/css/base/variables.css b/src/css/base/variables.css
index ef615a2ec..d9ee3c22a 100644
--- a/src/css/base/variables.css
+++ b/src/css/base/variables.css
@@ -1,51 +1,50 @@
:root {
- --primary: #25a06e;
- --primary-dark: #1c714e;
- --primary-light: #36c085;
- --primary-alpha-light: rgba(37, 160, 110, 0.04);
- --primary-alpha-medium: rgba(37, 160, 110, 0.08);
- --primary-alpha-strong: rgba(37, 160, 110, 0.1);
-
- --text-primary: #1a202c;
- --text-secondary: #4a5568;
- --text-light: #a0aec0;
-
- --bg-light: #f8f9fa;
- --bg-dark: #1a202c;
- --bg-card: #f0f2f5;
- --bg-footer: #f0f4f8;
-
- --border: #e1e4e8;
-
- --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
- --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
-
- --radius-sm: 0.25rem;
- --radius-md: 0.375rem;
- --radius-lg: 0.5rem;
-
- --transition-fast: 0.2s ease;
- --transition-base: 0.3s ease;
-
- --font-base:
- -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
- --font-mono: SFMono-Regular, Menlo, Monaco, Consolas, monospace;
-
- --ifm-color-primary: var(--primary);
- --ifm-color-primary-dark: var(--primary-dark);
- --ifm-color-primary-light: var(--primary-light);
- --ifm-code-font-size: 95%;
- --ifm-font-family-base: var(--font-base);
- --ifm-code-font-family: var(--font-mono);
- --ifm-navbar-background-color: rgba(255, 255, 255, 0.98);
- --ifm-navbar-height: 3.75rem;
- --ifm-navbar-shadow: none;
- --ifm-navbar-padding-vertical: 0.5rem;
- --ifm-navbar-padding-horizontal: 1rem;
- --ifm-menu-color: var(--text-secondary);
- --ifm-menu-color-active: var(--primary);
- --ifm-menu-color-background-active: var(--primary-alpha-medium);
- --ifm-menu-color-background-hover: var(--primary-alpha-light);
- --ifm-toc-border-color: var(--border);
- --ifm-heading-color: var(--text-primary);
+ --primary: #607D8B;
+ --primary-dark: #455A64;
+ --primary-light: #90A4AE;
+ --primary-alpha-light: rgba(96, 125, 139, 0.04);
+ --primary-alpha-medium: rgba(96, 125, 139, 0.08);
+ --primary-alpha-strong: rgba(96, 125, 139, 0.1);
+
+ --text-primary: #1a202c;
+ --text-secondary: #4a5568;
+ --text-light: #a0aec0;
+
+ --bg-light: #f8f9fa;
+ --bg-dark: #1a202c;
+ --bg-card: #f0f2f5;
+ --bg-footer: #f0f4f8;
+
+ --border: #e1e4e8;
+
+ --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
+ --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
+
+ --radius-sm: 0.25rem;
+ --radius-md: 0.375rem;
+ --radius-lg: 0.5rem;
+
+ --transition-fast: 0.2s ease;
+ --transition-base: 0.3s ease;
+
+ --font-base: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
+ --font-mono: SFMono-Regular, Menlo, Monaco, Consolas, monospace;
+
+ --ifm-color-primary: var(--primary);
+ --ifm-color-primary-dark: var(--primary-dark);
+ --ifm-color-primary-light: var(--primary-light);
+ --ifm-code-font-size: 95%;
+ --ifm-font-family-base: var(--font-base);
+ --ifm-code-font-family: var(--font-mono);
+ --ifm-navbar-background-color: rgba(255, 255, 255, 0.98);
+ --ifm-navbar-height: 3.75rem;
+ --ifm-navbar-shadow: none;
+ --ifm-navbar-padding-vertical: 0.5rem;
+ --ifm-navbar-padding-horizontal: 1rem;
+ --ifm-menu-color: var(--text-secondary);
+ --ifm-menu-color-active: var(--primary);
+ --ifm-menu-color-background-active: var(--primary-alpha-medium);
+ --ifm-menu-color-background-hover: var(--primary-alpha-light);
+ --ifm-toc-border-color: var(--border);
+ --ifm-heading-color: var(--text-primary);
}
diff --git a/src/css/components/alert.css b/src/css/components/alert.css
index d79032926..075a391c8 100644
--- a/src/css/components/alert.css
+++ b/src/css/components/alert.css
@@ -23,8 +23,8 @@
}
.alert--success {
- --ifm-alert-border-color: #10b981;
- --ifm-alert-color: var(--text-primary);
+ --ifm-alert-border-color: var(--primary);
+ --ifm-alert-color: var(--text-primary);
}
.alert__title {
diff --git a/src/css/components/card.css b/src/css/components/card.css
index 537d4bfaf..8fb3702b5 100644
--- a/src/css/components/card.css
+++ b/src/css/components/card.css
@@ -17,9 +17,9 @@
}
.card:hover {
- transform: translateY(-5px) scale(1.01);
- box-shadow: var(--shadow-md);
- border-color: rgba(37, 160, 110, 0.3);
+ transform: translateY(-5px) scale(1.01);
+ box-shadow: var(--shadow-md);
+ border-color: var(--primary);
}
a.card:not(.header-github-link):not(.github-icon-button)::after {
diff --git a/src/pages/index.js b/src/pages/index.js
index 6526e4dc7..bfce8d446 100644
--- a/src/pages/index.js
+++ b/src/pages/index.js
@@ -1,45 +1,55 @@
-import React from "react";
import Link from "@docusaurus/Link";
import useDocusaurusContext from "@docusaurus/useDocusaurusContext";
import Layout from "@theme/Layout";
import styles from "./index.module.css";
-const stats = [
- { label: "文档篇章", value: "1200+" },
- { label: "活跃贡献者", value: "50+" }
-];
-
-const quickLinks = [
- { title: "新手入门", description: "了解教程定位、阅读指引与基础要求", to: "/intro" },
- { title: "Java 版核心", description: "高版本 Java 版服务器开服指南", to: "/Java/intro" },
- { title: "基岩版核心", description: "基岩版服务器开服指南", to: "/Bedrock/intro" }
-];
+import CubicBanner from "../components/CubicBanner";
const knowledgeMap = [
- {
- icon: "📚",
- title: "准备工作",
- description: "Java 安装、文本编辑器选择、必备工具与脚本使用。",
- to: "/preparation"
- },
- {
- icon: "🚀",
- title: "开始阶段",
- description: "服务器基础知识、如何选择服务端、如何搭建并连接。",
- to: "/start"
- },
- {
- icon: "🏗️",
- title: "建设阶段",
- description: "插件配置、手机玩家支持、跨服搭建等进阶内容。",
- to: "/process"
- },
- {
- icon: "⚙️",
- title: "进阶教程",
- description: "Linux 运维、Docker 容器化、性能优化与自动化运维。",
- to: "/advance"
- }
+ {
+ icon: (
+
+ ),
+ title: "准备工作",
+ description: "Java 安装、文本编辑器选择、必备工具与脚本使用。",
+ to: "/preparation",
+ },
+ {
+ icon: (
+
+ ),
+ title: "开始阶段",
+ description: "服务器基础知识、如何选择服务端、如何搭建并连接。",
+ to: "/start",
+ },
+ {
+ icon: (
+
+ ),
+ title: "建设阶段",
+ description: "插件配置、手机玩家支持、跨服搭建等进阶内容。",
+ to: "/process",
+ },
+ {
+ icon: (
+
+ ),
+ title: "进阶教程",
+ description: "Linux 运维、Docker 容器化、性能优化与自动化运维。",
+ to: "/advance",
+ },
];
const communityHighlights = [
@@ -63,102 +73,25 @@ const communityHighlights = [
export default function Home() {
const { siteConfig } = useDocusaurusContext();
- return (
-
-
-
-
-
Cubic Wiki
-
Cubic Wiki
-
- 主要针对高版本 Java 版和基岩版服务器的开服指南。 从零开始,手把手教你搭建和运营 Minecraft
- 服务器。
-
-
-
- 立即开始
-
-
- 参与贡献
-
-
-
- {stats.map((item) => (
-
- {item.value}
- {item.label}
-
- ))}
-
-
-
-
+ return (
+
+
+
-
-
-
核心模块
-
四大阶段,覆盖开服全流程
-
从准备工作到开始阶段,从建设阶段到进阶教程,每个环节都有详细指导。
-
-
- {knowledgeMap.map((item) => (
-
-
{item.icon}
-
{item.title}
-
{item.description}
-
查看详情 →
-
- ))}
-
-
+
+ 核心板块
+
+ {knowledgeMap.map((item) => (
+
+
{item.icon}
+
{item.title}
+
{item.description}
+
+ ))}
+
+
-
-
-
-
社区驱动
-
开源协作,持续更新
-
- Cubic Wiki 由社区成员共同维护,持续更新内容。 欢迎通过 GitHub
- 提交建议、报告问题或贡献文档。
-
-
-
- 访问仓库
-
-
- 贡献指南
-
-
-
-
- {communityHighlights.map((item) => (
- -
-
{item.title}
- {item.meta}
- {item.description}
-
- ))}
-
-
-
-
-
- );
+
+
+ );
}
diff --git a/src/pages/index.module.css b/src/pages/index.module.css
index 89778f0a5..6e75d642e 100644
--- a/src/pages/index.module.css
+++ b/src/pages/index.module.css
@@ -4,54 +4,6 @@
color: var(--ifm-font-color-base);
}
-.hero {
- display: grid;
- grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
- gap: 48px;
- max-width: 1100px;
- margin: 0 auto;
- padding: 120px 24px 90px;
-}
-
-.heroCopy {
- display: flex;
- flex-direction: column;
- gap: 28px;
-}
-
-.heroTag {
- display: inline-flex;
- align-items: center;
- padding: 6px 14px;
- border-radius: 999px;
- background: rgba(37, 160, 110, 0.12);
- color: var(--ifm-color-primary-darker);
- font-size: 12px;
- font-weight: 600;
- letter-spacing: 0.08em;
- text-transform: uppercase;
-}
-
-.heroCopy h1 {
- margin: 0;
- font-size: clamp(40px, 5vw, 56px);
- letter-spacing: -0.02em;
-}
-
-.heroCopy p {
- margin: 0;
- max-width: 620px;
- font-size: 17px;
- line-height: 1.8;
- color: var(--ifm-color-emphasis-700);
-}
-
-.heroButtons,
-.ctaButtons {
- display: flex;
- flex-wrap: wrap;
- gap: 12px;
-}
.primaryButton,
.secondaryButton {
@@ -89,423 +41,144 @@
transform: translateY(-2px);
}
-html[data-theme="dark"] .heroTag {
- background: rgba(46, 204, 113, 0.18);
- color: #c8ffe3;
-}
-
html[data-theme="dark"] .secondaryButton {
background: rgba(46, 204, 113, 0.2);
color: #d9ffe9 !important;
}
-.heroMetrics {
- display: grid;
- grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
- gap: 18px;
- padding-top: 20px;
- border-top: 1px solid var(--ifm-color-emphasis-200);
-}
-
-.heroMetrics div {
- padding: 14px 16px;
- border-radius: 16px;
- border: 1px solid rgba(37, 160, 110, 0.12);
- background: rgba(37, 160, 110, 0.08);
-}
-
-html[data-theme="dark"] .heroMetrics div {
- background: rgba(46, 204, 113, 0.16);
- border-color: rgba(46, 204, 113, 0.24);
-}
-
-.heroMetrics strong {
- display: block;
- font-size: 26px;
- color: var(--ifm-color-primary);
-}
-
-.heroMetrics span {
- font-size: 14px;
- color: var(--ifm-color-emphasis-600);
-}
-
-.heroPanel {
- border-radius: 20px;
- border: 1px solid var(--ifm-color-emphasis-200);
- background: var(--ifm-background-surface-color);
- box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
- display: flex;
- flex-direction: column;
-}
-
-.panelHeader,
-.panelFooter {
- padding: 24px;
- border-bottom: 1px solid var(--ifm-color-emphasis-200);
- font-size: 14px;
- font-weight: 600;
-}
-
-.panelFooter {
- border-bottom: none;
- border-top: 1px solid var(--ifm-color-emphasis-200);
- color: var(--ifm-color-emphasis-600);
- line-height: 1.6;
-}
-
-.linkList {
- list-style: none;
- margin: 0;
- padding: 0;
- display: flex;
- flex-direction: column;
-}
-
-.linkList li + li {
- border-top: 1px solid var(--ifm-color-emphasis-200);
-}
-
-.linkList a {
- display: flex;
- align-items: center;
- justify-content: space-between;
- gap: 18px;
- padding: 20px 24px;
- text-decoration: none;
- color: inherit;
- transition: background 0.2s ease;
-}
-
-.linkList a:hover {
- background: rgba(37, 160, 110, 0.08);
-}
-
-.linkList h3 {
- margin: 0 0 6px;
- font-size: 16px;
-}
-
-.linkList p {
- margin: 0;
- font-size: 14px;
- color: var(--ifm-color-emphasis-600);
-}
-
-.map,
-.community {
- padding: 0 24px 110px;
-}
-
-.sectionHeading {
- max-width: 780px;
- margin: 0 auto 48px;
- text-align: center;
- display: grid;
- gap: 14px;
-}
-
-.sectionHeading span {
- justify-self: center;
- padding: 6px 14px;
- border-radius: 999px;
- background: rgba(37, 160, 110, 0.1);
- color: var(--ifm-color-primary-darker);
- font-size: 12px;
- font-weight: 600;
- letter-spacing: 0.08em;
- text-transform: uppercase;
-}
-
-html[data-theme="dark"] .sectionHeading span {
- background: rgba(46, 204, 113, 0.18);
- color: #c8ffe3;
-}
-
-.sectionHeading h2 {
- margin: 0;
- font-size: clamp(30px, 4.4vw, 40px);
- letter-spacing: -0.01em;
-}
-
-.sectionHeading p {
- margin: 0;
- font-size: 16px;
- color: var(--ifm-color-emphasis-700);
- line-height: 1.7;
-}
-
-.map {
- padding-top: 24px;
-}
-
-.mapGrid {
- max-width: 1080px;
- margin: 0 auto;
- display: grid;
- gap: 20px;
- grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
-}
-
-.mapCard {
- padding: 26px;
- border-radius: 20px;
- border: 1px solid var(--ifm-color-emphasis-200);
- background: var(--ifm-background-surface-color);
- text-decoration: none;
- color: inherit;
- display: grid;
- gap: 12px;
- transition:
- transform 0.2s ease,
- box-shadow 0.2s ease,
- border-color 0.2s ease;
+.section {
+ max-width: 1100px;
+ margin: 0 auto;
+ padding: 0 24px 60px;
}
-.mapCard:hover {
- transform: translateY(-3px);
- border-color: rgba(37, 160, 110, 0.3);
- box-shadow: 0 18px 36px rgba(15, 23, 42, 0.1);
+.sectionTitle {
+ font-size: 1.5rem;
+ font-weight: 700;
+ margin-bottom: 24px;
+ color: var(--ifm-color-emphasis-900);
+ display: flex;
+ align-items: center;
+ gap: 12px;
}
-.mapIcon {
- font-size: 30px;
+.sectionTitle::before {
+ content: "";
+ display: block;
+ width: 4px;
+ height: 24px;
+ background: var(--ifm-color-primary);
+ border-radius: 2px;
}
-.mapCard h3 {
- margin: 0;
- font-size: 17px;
+.grid {
+ display: grid;
+ grid-template-columns: repeat(4, 1fr);
+ gap: 20px;
}
-.mapCard p {
- margin: 0;
- font-size: 14px;
- color: var(--ifm-color-emphasis-700);
- line-height: 1.6;
+.card {
+ display: block;
+ padding: 24px;
+ border-radius: 12px;
+ background: var(--ifm-background-surface-color);
+ border: 1px solid var(--ifm-color-emphasis-200);
+ text-decoration: none !important;
+ color: inherit !important;
+ transition: all 0.2s ease;
}
-.mapAction {
- font-size: 13px;
- font-weight: 600;
- color: var(--ifm-color-primary);
+.card:hover {
+ transform: translateY(-2px);
+ border-color: var(--ifm-color-primary);
+ box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}
-.communitySurface {
- max-width: 1100px;
- margin: 0 auto;
- padding: 48px;
- border-radius: 24px;
- border: 1px solid var(--ifm-color-emphasis-200);
- background: var(--ifm-background-surface-color);
- box-shadow: 0 24px 48px rgba(15, 23, 42, 0.08);
- display: grid;
- grid-template-columns: minmax(0, 0.85fr) minmax(280px, 1fr);
- gap: 32px;
- align-items: start;
+.cardIcon {
+ width: 48px;
+ height: 48px;
+ margin-bottom: 16px;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ border-radius: 10px;
+ background: var(--ifm-color-primary-light);
+ color: #fff;
+ padding: 10px;
}
-.communityIntro span {
- display: inline-flex;
- padding: 6px 14px;
- border-radius: 999px;
- background: rgba(37, 160, 110, 0.12);
- color: var(--ifm-color-primary-darker);
- font-size: 12px;
- font-weight: 600;
- letter-spacing: 0.08em;
- text-transform: uppercase;
- margin-bottom: 16px;
-}
-
-.communityIntro h2 {
- margin: 0 0 12px;
- font-size: clamp(30px, 4.4vw, 38px);
+.cardIcon svg {
+ width: 100%;
+ height: 100%;
}
-.communityIntro p {
- margin: 0 0 20px;
- font-size: 15px;
- line-height: 1.7;
- color: var(--ifm-color-emphasis-700);
+html[data-theme="dark"] .cardIcon {
+ background: rgba(120, 144, 156, 0.2);
+ color: var(--ifm-color-primary);
}
-.communityCtas {
- display: flex;
- flex-wrap: wrap;
- gap: 12px;
+.cardTitle {
+ font-size: 1.1rem;
+ font-weight: 600;
+ margin: 0 0 8px;
+ color: var(--ifm-color-emphasis-900);
}
-.communityFeed {
- list-style: none;
- margin: 0;
- padding: 0;
- display: grid;
- gap: 18px;
+.cardDesc {
+ font-size: 0.9rem;
+ color: var(--ifm-color-emphasis-600);
+ margin: 0;
+ line-height: 1.6;
}
-.communityFeed li {
- padding: 22px 24px;
- border-radius: 18px;
- border: 1px solid var(--ifm-color-emphasis-200);
- background: rgba(37, 160, 110, 0.08);
- display: grid;
- gap: 10px;
+.communityGrid {
+ display: grid;
+ grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
+ gap: 20px;
}
-html[data-theme="dark"] .communityFeed li {
- background: rgba(46, 204, 113, 0.12);
- border-color: rgba(46, 204, 113, 0.28);
+.communityCard {
+ padding: 24px;
+ border-radius: 12px;
+ background: var(--ifm-background-surface-color);
+ border: 1px solid var(--ifm-color-emphasis-200);
+ display: flex;
+ flex-direction: column;
+ gap: 16px;
}
-.communityFeed h3 {
- margin: 0;
- font-size: 16px;
+.communityTitle {
+ font-size: 1.2rem;
+ font-weight: 700;
+ margin: 0;
}
-.communityFeed span {
- font-size: 13px;
- color: var(--ifm-color-emphasis-600);
+.communityDesc {
+ font-size: 0.95rem;
+ color: var(--ifm-color-emphasis-700);
+ margin: 0;
+ line-height: 1.6;
+ flex: 1;
}
-.communityFeed p {
- margin: 0;
- font-size: 14px;
- line-height: 1.6;
- color: var(--ifm-color-emphasis-700);
+.communityActions {
+ display: flex;
+ gap: 12px;
+ margin-top: auto;
}
-@media (max-width: 1020px) {
- .hero {
- grid-template-columns: 1fr;
- padding: 100px 24px 80px;
- }
-
- .heroPanel {
- width: 100%;
- max-width: none;
- margin: 24px 0 0;
- align-self: stretch;
- }
-
- .heroCopy {
- gap: 24px;
- }
-
- .heroMetrics {
- grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
- }
-
- .linkList a {
- padding: 18px 20px;
- }
-
- .communitySurface {
- grid-template-columns: 1fr;
- }
+@media (max-width: 996px) {
+ .grid {
+ grid-template-columns: repeat(2, 1fr);
+ }
}
@media (max-width: 768px) {
- .hero {
- padding: 96px 20px 72px;
- gap: 28px;
- }
-
- .heroButtons {
- gap: 10px;
- }
-
- .heroPanel {
- padding: 0 6px;
- margin-top: 16px;
- }
-
- .heroMetrics {
- grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
- gap: 14px;
- }
-
- .heroMetrics div {
- padding: 12px 14px;
- }
-
- .linkList a {
- flex-direction: column;
- align-items: flex-start;
- gap: 10px;
- }
-
- .mapGrid {
- gap: 16px;
- }
-
- .communitySurface {
- padding: 40px;
- gap: 24px;
- }
-
- .communityFeed li {
- padding: 20px;
- }
-
- .ctaInner {
- flex-direction: column;
- align-items: flex-start;
- padding: 36px;
- }
-
- .ctaButtons {
- width: 100%;
- }
-
- .ctaButtons a {
- flex: 1;
- text-align: center;
- }
-}
-
-@media (max-width: 540px) {
- .heroCopy p {
- max-width: none;
- }
-
- .heroMetrics {
- grid-template-columns: repeat(2, minmax(0, 1fr));
- }
-
- .heroMetrics div {
- padding: 10px 12px;
- }
-
- .primaryButton,
- .secondaryButton {
- width: 100%;
- }
-
- .heroPanel {
- padding: 0 8px;
- }
-
- .linkList a {
- padding: 18px;
- }
-
- .sectionHeading {
- text-align: left;
- }
-
- .mapGrid {
- grid-template-columns: 1fr;
- }
-
- .communitySurface {
- padding: 32px 24px;
- }
-
- .communityCtas a {
- width: 100%;
- }
-
- .ctaInner {
- padding: 32px;
- }
+ .section {
+ padding: 0 20px 40px;
+ }
+
+ .grid, .communityGrid {
+ grid-template-columns: 1fr;
+ }
}
diff --git a/static/data/contributors.json b/static/data/contributors.json
index 6382aba53..0637a088a 100644
--- a/static/data/contributors.json
+++ b/static/data/contributors.json
@@ -1,1827 +1 @@
-[
- {
- "login": "postyizhan",
- "id": 97342038,
- "node_id": "U_kgDOBc1SVg",
- "avatar_url": "https://avatars.githubusercontent.com/u/97342038?v=4",
- "gravatar_id": "",
- "url": "https://api.github.com/users/postyizhan",
- "html_url": "https://github.com/postyizhan",
- "followers_url": "https://api.github.com/users/postyizhan/followers",
- "following_url": "https://api.github.com/users/postyizhan/following{/other_user}",
- "gists_url": "https://api.github.com/users/postyizhan/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/postyizhan/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/postyizhan/subscriptions",
- "organizations_url": "https://api.github.com/users/postyizhan/orgs",
- "repos_url": "https://api.github.com/users/postyizhan/repos",
- "events_url": "https://api.github.com/users/postyizhan/events{/privacy}",
- "received_events_url": "https://api.github.com/users/postyizhan/received_events",
- "type": "User",
- "user_view_type": "public",
- "site_admin": false,
- "contributions": 612,
- "additions": 0,
- "deletions": 0,
- "commits": 0
- },
- {
- "login": "lilingfengdev",
- "id": 145678359,
- "node_id": "U_kgDOCK7gFw",
- "avatar_url": "https://avatars.githubusercontent.com/u/145678359?v=4",
- "gravatar_id": "",
- "url": "https://api.github.com/users/lilingfengdev",
- "html_url": "https://github.com/lilingfengdev",
- "followers_url": "https://api.github.com/users/lilingfengdev/followers",
- "following_url": "https://api.github.com/users/lilingfengdev/following{/other_user}",
- "gists_url": "https://api.github.com/users/lilingfengdev/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/lilingfengdev/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/lilingfengdev/subscriptions",
- "organizations_url": "https://api.github.com/users/lilingfengdev/orgs",
- "repos_url": "https://api.github.com/users/lilingfengdev/repos",
- "events_url": "https://api.github.com/users/lilingfengdev/events{/privacy}",
- "received_events_url": "https://api.github.com/users/lilingfengdev/received_events",
- "type": "User",
- "user_view_type": "public",
- "site_admin": false,
- "contributions": 514,
- "additions": 0,
- "deletions": 0,
- "commits": 0
- },
- {
- "login": "Radiation-pi",
- "id": 96102795,
- "node_id": "U_kgDOBbppiw",
- "avatar_url": "https://avatars.githubusercontent.com/u/96102795?v=4",
- "gravatar_id": "",
- "url": "https://api.github.com/users/Radiation-pi",
- "html_url": "https://github.com/Radiation-pi",
- "followers_url": "https://api.github.com/users/Radiation-pi/followers",
- "following_url": "https://api.github.com/users/Radiation-pi/following{/other_user}",
- "gists_url": "https://api.github.com/users/Radiation-pi/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/Radiation-pi/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/Radiation-pi/subscriptions",
- "organizations_url": "https://api.github.com/users/Radiation-pi/orgs",
- "repos_url": "https://api.github.com/users/Radiation-pi/repos",
- "events_url": "https://api.github.com/users/Radiation-pi/events{/privacy}",
- "received_events_url": "https://api.github.com/users/Radiation-pi/received_events",
- "type": "User",
- "user_view_type": "public",
- "site_admin": false,
- "contributions": 214,
- "additions": 0,
- "deletions": 0,
- "commits": 0
- },
- {
- "login": "gyc123456-1",
- "id": 69791212,
- "node_id": "MDQ6VXNlcjY5NzkxMjEy",
- "avatar_url": "https://avatars.githubusercontent.com/u/69791212?v=4",
- "gravatar_id": "",
- "url": "https://api.github.com/users/gyc123456-1",
- "html_url": "https://github.com/gyc123456-1",
- "followers_url": "https://api.github.com/users/gyc123456-1/followers",
- "following_url": "https://api.github.com/users/gyc123456-1/following{/other_user}",
- "gists_url": "https://api.github.com/users/gyc123456-1/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/gyc123456-1/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/gyc123456-1/subscriptions",
- "organizations_url": "https://api.github.com/users/gyc123456-1/orgs",
- "repos_url": "https://api.github.com/users/gyc123456-1/repos",
- "events_url": "https://api.github.com/users/gyc123456-1/events{/privacy}",
- "received_events_url": "https://api.github.com/users/gyc123456-1/received_events",
- "type": "User",
- "user_view_type": "public",
- "site_admin": false,
- "contributions": 97,
- "additions": 0,
- "deletions": 0,
- "commits": 0
- },
- {
- "login": "Lythrilla",
- "id": 61087334,
- "node_id": "MDQ6VXNlcjYxMDg3MzM0",
- "avatar_url": "https://avatars.githubusercontent.com/u/61087334?v=4",
- "gravatar_id": "",
- "url": "https://api.github.com/users/Lythrilla",
- "html_url": "https://github.com/Lythrilla",
- "followers_url": "https://api.github.com/users/Lythrilla/followers",
- "following_url": "https://api.github.com/users/Lythrilla/following{/other_user}",
- "gists_url": "https://api.github.com/users/Lythrilla/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/Lythrilla/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/Lythrilla/subscriptions",
- "organizations_url": "https://api.github.com/users/Lythrilla/orgs",
- "repos_url": "https://api.github.com/users/Lythrilla/repos",
- "events_url": "https://api.github.com/users/Lythrilla/events{/privacy}",
- "received_events_url": "https://api.github.com/users/Lythrilla/received_events",
- "type": "User",
- "user_view_type": "public",
- "site_admin": false,
- "contributions": 83,
- "additions": 0,
- "deletions": 0,
- "commits": 0
- },
- {
- "login": "minimouse0",
- "id": 116894415,
- "node_id": "U_kgDOBveqzw",
- "avatar_url": "https://avatars.githubusercontent.com/u/116894415?v=4",
- "gravatar_id": "",
- "url": "https://api.github.com/users/minimouse0",
- "html_url": "https://github.com/minimouse0",
- "followers_url": "https://api.github.com/users/minimouse0/followers",
- "following_url": "https://api.github.com/users/minimouse0/following{/other_user}",
- "gists_url": "https://api.github.com/users/minimouse0/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/minimouse0/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/minimouse0/subscriptions",
- "organizations_url": "https://api.github.com/users/minimouse0/orgs",
- "repos_url": "https://api.github.com/users/minimouse0/repos",
- "events_url": "https://api.github.com/users/minimouse0/events{/privacy}",
- "received_events_url": "https://api.github.com/users/minimouse0/received_events",
- "type": "User",
- "user_view_type": "public",
- "site_admin": false,
- "contributions": 81,
- "additions": 0,
- "deletions": 0,
- "commits": 0
- },
- {
- "login": "ZoruaFox",
- "id": 96456728,
- "node_id": "U_kgDOBb_QGA",
- "avatar_url": "https://avatars.githubusercontent.com/u/96456728?v=4",
- "gravatar_id": "",
- "url": "https://api.github.com/users/ZoruaFox",
- "html_url": "https://github.com/ZoruaFox",
- "followers_url": "https://api.github.com/users/ZoruaFox/followers",
- "following_url": "https://api.github.com/users/ZoruaFox/following{/other_user}",
- "gists_url": "https://api.github.com/users/ZoruaFox/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/ZoruaFox/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/ZoruaFox/subscriptions",
- "organizations_url": "https://api.github.com/users/ZoruaFox/orgs",
- "repos_url": "https://api.github.com/users/ZoruaFox/repos",
- "events_url": "https://api.github.com/users/ZoruaFox/events{/privacy}",
- "received_events_url": "https://api.github.com/users/ZoruaFox/received_events",
- "type": "User",
- "user_view_type": "public",
- "site_admin": false,
- "contributions": 57,
- "additions": 0,
- "deletions": 0,
- "commits": 0
- },
- {
- "login": "HaHaWTH",
- "id": 102713261,
- "node_id": "U_kgDOBh9HrQ",
- "avatar_url": "https://avatars.githubusercontent.com/u/102713261?v=4",
- "gravatar_id": "",
- "url": "https://api.github.com/users/HaHaWTH",
- "html_url": "https://github.com/HaHaWTH",
- "followers_url": "https://api.github.com/users/HaHaWTH/followers",
- "following_url": "https://api.github.com/users/HaHaWTH/following{/other_user}",
- "gists_url": "https://api.github.com/users/HaHaWTH/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/HaHaWTH/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/HaHaWTH/subscriptions",
- "organizations_url": "https://api.github.com/users/HaHaWTH/orgs",
- "repos_url": "https://api.github.com/users/HaHaWTH/repos",
- "events_url": "https://api.github.com/users/HaHaWTH/events{/privacy}",
- "received_events_url": "https://api.github.com/users/HaHaWTH/received_events",
- "type": "User",
- "user_view_type": "public",
- "site_admin": false,
- "contributions": 46,
- "additions": 0,
- "deletions": 0,
- "commits": 0
- },
- {
- "login": "liangcha385",
- "id": 108937242,
- "node_id": "U_kgDOBn5AGg",
- "avatar_url": "https://avatars.githubusercontent.com/u/108937242?v=4",
- "gravatar_id": "",
- "url": "https://api.github.com/users/liangcha385",
- "html_url": "https://github.com/liangcha385",
- "followers_url": "https://api.github.com/users/liangcha385/followers",
- "following_url": "https://api.github.com/users/liangcha385/following{/other_user}",
- "gists_url": "https://api.github.com/users/liangcha385/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/liangcha385/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/liangcha385/subscriptions",
- "organizations_url": "https://api.github.com/users/liangcha385/orgs",
- "repos_url": "https://api.github.com/users/liangcha385/repos",
- "events_url": "https://api.github.com/users/liangcha385/events{/privacy}",
- "received_events_url": "https://api.github.com/users/liangcha385/received_events",
- "type": "User",
- "user_view_type": "public",
- "site_admin": false,
- "contributions": 42,
- "additions": 0,
- "deletions": 0,
- "commits": 0
- },
- {
- "login": "Lafcadia",
- "id": 147896059,
- "node_id": "U_kgDOCNC2-w",
- "avatar_url": "https://avatars.githubusercontent.com/u/147896059?v=4",
- "gravatar_id": "",
- "url": "https://api.github.com/users/Lafcadia",
- "html_url": "https://github.com/Lafcadia",
- "followers_url": "https://api.github.com/users/Lafcadia/followers",
- "following_url": "https://api.github.com/users/Lafcadia/following{/other_user}",
- "gists_url": "https://api.github.com/users/Lafcadia/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/Lafcadia/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/Lafcadia/subscriptions",
- "organizations_url": "https://api.github.com/users/Lafcadia/orgs",
- "repos_url": "https://api.github.com/users/Lafcadia/repos",
- "events_url": "https://api.github.com/users/Lafcadia/events{/privacy}",
- "received_events_url": "https://api.github.com/users/Lafcadia/received_events",
- "type": "User",
- "user_view_type": "public",
- "site_admin": false,
- "contributions": 40,
- "additions": 0,
- "deletions": 0,
- "commits": 0
- },
- {
- "login": "virgil698",
- "id": 83110631,
- "node_id": "MDQ6VXNlcjgzMTEwNjMx",
- "avatar_url": "https://avatars.githubusercontent.com/u/83110631?v=4",
- "gravatar_id": "",
- "url": "https://api.github.com/users/virgil698",
- "html_url": "https://github.com/virgil698",
- "followers_url": "https://api.github.com/users/virgil698/followers",
- "following_url": "https://api.github.com/users/virgil698/following{/other_user}",
- "gists_url": "https://api.github.com/users/virgil698/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/virgil698/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/virgil698/subscriptions",
- "organizations_url": "https://api.github.com/users/virgil698/orgs",
- "repos_url": "https://api.github.com/users/virgil698/repos",
- "events_url": "https://api.github.com/users/virgil698/events{/privacy}",
- "received_events_url": "https://api.github.com/users/virgil698/received_events",
- "type": "User",
- "user_view_type": "public",
- "site_admin": false,
- "contributions": 39,
- "additions": 0,
- "deletions": 0,
- "commits": 0
- },
- {
- "login": "HanSiqi2008",
- "id": 136245260,
- "node_id": "U_kgDOCB7wDA",
- "avatar_url": "https://avatars.githubusercontent.com/u/136245260?v=4",
- "gravatar_id": "",
- "url": "https://api.github.com/users/HanSiqi2008",
- "html_url": "https://github.com/HanSiqi2008",
- "followers_url": "https://api.github.com/users/HanSiqi2008/followers",
- "following_url": "https://api.github.com/users/HanSiqi2008/following{/other_user}",
- "gists_url": "https://api.github.com/users/HanSiqi2008/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/HanSiqi2008/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/HanSiqi2008/subscriptions",
- "organizations_url": "https://api.github.com/users/HanSiqi2008/orgs",
- "repos_url": "https://api.github.com/users/HanSiqi2008/repos",
- "events_url": "https://api.github.com/users/HanSiqi2008/events{/privacy}",
- "received_events_url": "https://api.github.com/users/HanSiqi2008/received_events",
- "type": "User",
- "user_view_type": "public",
- "site_admin": false,
- "contributions": 37,
- "additions": 0,
- "deletions": 0,
- "commits": 0
- },
- {
- "login": "Yaosanqi137",
- "id": 99163721,
- "node_id": "U_kgDOBekeSQ",
- "avatar_url": "https://avatars.githubusercontent.com/u/99163721?v=4",
- "gravatar_id": "",
- "url": "https://api.github.com/users/Yaosanqi137",
- "html_url": "https://github.com/Yaosanqi137",
- "followers_url": "https://api.github.com/users/Yaosanqi137/followers",
- "following_url": "https://api.github.com/users/Yaosanqi137/following{/other_user}",
- "gists_url": "https://api.github.com/users/Yaosanqi137/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/Yaosanqi137/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/Yaosanqi137/subscriptions",
- "organizations_url": "https://api.github.com/users/Yaosanqi137/orgs",
- "repos_url": "https://api.github.com/users/Yaosanqi137/repos",
- "events_url": "https://api.github.com/users/Yaosanqi137/events{/privacy}",
- "received_events_url": "https://api.github.com/users/Yaosanqi137/received_events",
- "type": "User",
- "user_view_type": "public",
- "site_admin": false,
- "contributions": 36,
- "additions": 0,
- "deletions": 0,
- "commits": 0
- },
- {
- "login": "lRENyaaa",
- "id": 92320175,
- "node_id": "U_kgDOBYCxrw",
- "avatar_url": "https://avatars.githubusercontent.com/u/92320175?v=4",
- "gravatar_id": "",
- "url": "https://api.github.com/users/lRENyaaa",
- "html_url": "https://github.com/lRENyaaa",
- "followers_url": "https://api.github.com/users/lRENyaaa/followers",
- "following_url": "https://api.github.com/users/lRENyaaa/following{/other_user}",
- "gists_url": "https://api.github.com/users/lRENyaaa/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/lRENyaaa/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/lRENyaaa/subscriptions",
- "organizations_url": "https://api.github.com/users/lRENyaaa/orgs",
- "repos_url": "https://api.github.com/users/lRENyaaa/repos",
- "events_url": "https://api.github.com/users/lRENyaaa/events{/privacy}",
- "received_events_url": "https://api.github.com/users/lRENyaaa/received_events",
- "type": "User",
- "user_view_type": "public",
- "site_admin": false,
- "contributions": 20,
- "additions": 0,
- "deletions": 0,
- "commits": 0
- },
- {
- "login": "TATyKeFei",
- "id": 125815900,
- "node_id": "U_kgDOB3_MXA",
- "avatar_url": "https://avatars.githubusercontent.com/u/125815900?v=4",
- "gravatar_id": "",
- "url": "https://api.github.com/users/TATyKeFei",
- "html_url": "https://github.com/TATyKeFei",
- "followers_url": "https://api.github.com/users/TATyKeFei/followers",
- "following_url": "https://api.github.com/users/TATyKeFei/following{/other_user}",
- "gists_url": "https://api.github.com/users/TATyKeFei/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/TATyKeFei/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/TATyKeFei/subscriptions",
- "organizations_url": "https://api.github.com/users/TATyKeFei/orgs",
- "repos_url": "https://api.github.com/users/TATyKeFei/repos",
- "events_url": "https://api.github.com/users/TATyKeFei/events{/privacy}",
- "received_events_url": "https://api.github.com/users/TATyKeFei/received_events",
- "type": "User",
- "user_view_type": "public",
- "site_admin": false,
- "contributions": 20,
- "additions": 0,
- "deletions": 0,
- "commits": 0
- },
- {
- "login": "mcdogserver",
- "id": 146924973,
- "node_id": "U_kgDOCMHlrQ",
- "avatar_url": "https://avatars.githubusercontent.com/u/146924973?v=4",
- "gravatar_id": "",
- "url": "https://api.github.com/users/mcdogserver",
- "html_url": "https://github.com/mcdogserver",
- "followers_url": "https://api.github.com/users/mcdogserver/followers",
- "following_url": "https://api.github.com/users/mcdogserver/following{/other_user}",
- "gists_url": "https://api.github.com/users/mcdogserver/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/mcdogserver/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/mcdogserver/subscriptions",
- "organizations_url": "https://api.github.com/users/mcdogserver/orgs",
- "repos_url": "https://api.github.com/users/mcdogserver/repos",
- "events_url": "https://api.github.com/users/mcdogserver/events{/privacy}",
- "received_events_url": "https://api.github.com/users/mcdogserver/received_events",
- "type": "User",
- "user_view_type": "public",
- "site_admin": false,
- "contributions": 20,
- "additions": 0,
- "deletions": 0,
- "commits": 0
- },
- {
- "login": "serverbread-DEV",
- "id": 176056410,
- "node_id": "U_kgDOCn5oWg",
- "avatar_url": "https://avatars.githubusercontent.com/u/176056410?v=4",
- "gravatar_id": "",
- "url": "https://api.github.com/users/serverbread-DEV",
- "html_url": "https://github.com/serverbread-DEV",
- "followers_url": "https://api.github.com/users/serverbread-DEV/followers",
- "following_url": "https://api.github.com/users/serverbread-DEV/following{/other_user}",
- "gists_url": "https://api.github.com/users/serverbread-DEV/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/serverbread-DEV/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/serverbread-DEV/subscriptions",
- "organizations_url": "https://api.github.com/users/serverbread-DEV/orgs",
- "repos_url": "https://api.github.com/users/serverbread-DEV/repos",
- "events_url": "https://api.github.com/users/serverbread-DEV/events{/privacy}",
- "received_events_url": "https://api.github.com/users/serverbread-DEV/received_events",
- "type": "User",
- "user_view_type": "public",
- "site_admin": false,
- "contributions": 16,
- "additions": 0,
- "deletions": 0,
- "commits": 0
- },
- {
- "login": "FallenCrystal",
- "id": 71176602,
- "node_id": "MDQ6VXNlcjcxMTc2NjAy",
- "avatar_url": "https://avatars.githubusercontent.com/u/71176602?v=4",
- "gravatar_id": "",
- "url": "https://api.github.com/users/FallenCrystal",
- "html_url": "https://github.com/FallenCrystal",
- "followers_url": "https://api.github.com/users/FallenCrystal/followers",
- "following_url": "https://api.github.com/users/FallenCrystal/following{/other_user}",
- "gists_url": "https://api.github.com/users/FallenCrystal/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/FallenCrystal/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/FallenCrystal/subscriptions",
- "organizations_url": "https://api.github.com/users/FallenCrystal/orgs",
- "repos_url": "https://api.github.com/users/FallenCrystal/repos",
- "events_url": "https://api.github.com/users/FallenCrystal/events{/privacy}",
- "received_events_url": "https://api.github.com/users/FallenCrystal/received_events",
- "type": "User",
- "user_view_type": "public",
- "site_admin": false,
- "contributions": 14,
- "additions": 0,
- "deletions": 0,
- "commits": 0
- },
- {
- "login": "MSWorkerl",
- "id": 107293677,
- "node_id": "U_kgDOBmUr7Q",
- "avatar_url": "https://avatars.githubusercontent.com/u/107293677?v=4",
- "gravatar_id": "",
- "url": "https://api.github.com/users/MSWorkerl",
- "html_url": "https://github.com/MSWorkerl",
- "followers_url": "https://api.github.com/users/MSWorkerl/followers",
- "following_url": "https://api.github.com/users/MSWorkerl/following{/other_user}",
- "gists_url": "https://api.github.com/users/MSWorkerl/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/MSWorkerl/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/MSWorkerl/subscriptions",
- "organizations_url": "https://api.github.com/users/MSWorkerl/orgs",
- "repos_url": "https://api.github.com/users/MSWorkerl/repos",
- "events_url": "https://api.github.com/users/MSWorkerl/events{/privacy}",
- "received_events_url": "https://api.github.com/users/MSWorkerl/received_events",
- "type": "User",
- "user_view_type": "public",
- "site_admin": false,
- "contributions": 14,
- "additions": 0,
- "deletions": 0,
- "commits": 0
- },
- {
- "login": "jlxnb",
- "id": 97275132,
- "node_id": "U_kgDOBcxM_A",
- "avatar_url": "https://avatars.githubusercontent.com/u/97275132?v=4",
- "gravatar_id": "",
- "url": "https://api.github.com/users/jlxnb",
- "html_url": "https://github.com/jlxnb",
- "followers_url": "https://api.github.com/users/jlxnb/followers",
- "following_url": "https://api.github.com/users/jlxnb/following{/other_user}",
- "gists_url": "https://api.github.com/users/jlxnb/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/jlxnb/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/jlxnb/subscriptions",
- "organizations_url": "https://api.github.com/users/jlxnb/orgs",
- "repos_url": "https://api.github.com/users/jlxnb/repos",
- "events_url": "https://api.github.com/users/jlxnb/events{/privacy}",
- "received_events_url": "https://api.github.com/users/jlxnb/received_events",
- "type": "User",
- "user_view_type": "public",
- "site_admin": false,
- "contributions": 10,
- "additions": 0,
- "deletions": 0,
- "commits": 0
- },
- {
- "login": "MengHanLOVE1027",
- "id": 99132833,
- "node_id": "U_kgDOBeiloQ",
- "avatar_url": "https://avatars.githubusercontent.com/u/99132833?v=4",
- "gravatar_id": "",
- "url": "https://api.github.com/users/MengHanLOVE1027",
- "html_url": "https://github.com/MengHanLOVE1027",
- "followers_url": "https://api.github.com/users/MengHanLOVE1027/followers",
- "following_url": "https://api.github.com/users/MengHanLOVE1027/following{/other_user}",
- "gists_url": "https://api.github.com/users/MengHanLOVE1027/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/MengHanLOVE1027/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/MengHanLOVE1027/subscriptions",
- "organizations_url": "https://api.github.com/users/MengHanLOVE1027/orgs",
- "repos_url": "https://api.github.com/users/MengHanLOVE1027/repos",
- "events_url": "https://api.github.com/users/MengHanLOVE1027/events{/privacy}",
- "received_events_url": "https://api.github.com/users/MengHanLOVE1027/received_events",
- "type": "User",
- "user_view_type": "public",
- "site_admin": false,
- "contributions": 10,
- "additions": 0,
- "deletions": 0,
- "commits": 0
- },
- {
- "login": "ColdeZhang",
- "id": 29792376,
- "node_id": "MDQ6VXNlcjI5NzkyMzc2",
- "avatar_url": "https://avatars.githubusercontent.com/u/29792376?v=4",
- "gravatar_id": "",
- "url": "https://api.github.com/users/ColdeZhang",
- "html_url": "https://github.com/ColdeZhang",
- "followers_url": "https://api.github.com/users/ColdeZhang/followers",
- "following_url": "https://api.github.com/users/ColdeZhang/following{/other_user}",
- "gists_url": "https://api.github.com/users/ColdeZhang/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/ColdeZhang/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/ColdeZhang/subscriptions",
- "organizations_url": "https://api.github.com/users/ColdeZhang/orgs",
- "repos_url": "https://api.github.com/users/ColdeZhang/repos",
- "events_url": "https://api.github.com/users/ColdeZhang/events{/privacy}",
- "received_events_url": "https://api.github.com/users/ColdeZhang/received_events",
- "type": "User",
- "user_view_type": "public",
- "site_admin": false,
- "contributions": 10,
- "additions": 0,
- "deletions": 0,
- "commits": 0
- },
- {
- "login": "CkaDebug",
- "id": 141492699,
- "node_id": "U_kgDOCG8B2w",
- "avatar_url": "https://avatars.githubusercontent.com/u/141492699?v=4",
- "gravatar_id": "",
- "url": "https://api.github.com/users/CkaDebug",
- "html_url": "https://github.com/CkaDebug",
- "followers_url": "https://api.github.com/users/CkaDebug/followers",
- "following_url": "https://api.github.com/users/CkaDebug/following{/other_user}",
- "gists_url": "https://api.github.com/users/CkaDebug/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/CkaDebug/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/CkaDebug/subscriptions",
- "organizations_url": "https://api.github.com/users/CkaDebug/orgs",
- "repos_url": "https://api.github.com/users/CkaDebug/repos",
- "events_url": "https://api.github.com/users/CkaDebug/events{/privacy}",
- "received_events_url": "https://api.github.com/users/CkaDebug/received_events",
- "type": "User",
- "user_view_type": "public",
- "site_admin": false,
- "contributions": 8,
- "additions": 0,
- "deletions": 0,
- "commits": 0
- },
- {
- "login": "SeaOrangejuice",
- "id": 116551329,
- "node_id": "U_kgDOBvJuoQ",
- "avatar_url": "https://avatars.githubusercontent.com/u/116551329?v=4",
- "gravatar_id": "",
- "url": "https://api.github.com/users/SeaOrangejuice",
- "html_url": "https://github.com/SeaOrangejuice",
- "followers_url": "https://api.github.com/users/SeaOrangejuice/followers",
- "following_url": "https://api.github.com/users/SeaOrangejuice/following{/other_user}",
- "gists_url": "https://api.github.com/users/SeaOrangejuice/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/SeaOrangejuice/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/SeaOrangejuice/subscriptions",
- "organizations_url": "https://api.github.com/users/SeaOrangejuice/orgs",
- "repos_url": "https://api.github.com/users/SeaOrangejuice/repos",
- "events_url": "https://api.github.com/users/SeaOrangejuice/events{/privacy}",
- "received_events_url": "https://api.github.com/users/SeaOrangejuice/received_events",
- "type": "User",
- "user_view_type": "public",
- "site_admin": false,
- "contributions": 8,
- "additions": 0,
- "deletions": 0,
- "commits": 0
- },
- {
- "login": "pingguomc",
- "id": 141195321,
- "node_id": "U_kgDOCGp4OQ",
- "avatar_url": "https://avatars.githubusercontent.com/u/141195321?v=4",
- "gravatar_id": "",
- "url": "https://api.github.com/users/pingguomc",
- "html_url": "https://github.com/pingguomc",
- "followers_url": "https://api.github.com/users/pingguomc/followers",
- "following_url": "https://api.github.com/users/pingguomc/following{/other_user}",
- "gists_url": "https://api.github.com/users/pingguomc/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/pingguomc/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/pingguomc/subscriptions",
- "organizations_url": "https://api.github.com/users/pingguomc/orgs",
- "repos_url": "https://api.github.com/users/pingguomc/repos",
- "events_url": "https://api.github.com/users/pingguomc/events{/privacy}",
- "received_events_url": "https://api.github.com/users/pingguomc/received_events",
- "type": "User",
- "user_view_type": "public",
- "site_admin": false,
- "contributions": 8,
- "additions": 0,
- "deletions": 0,
- "commits": 0
- },
- {
- "login": "TheFloodDragon",
- "id": 75253383,
- "node_id": "MDQ6VXNlcjc1MjUzMzgz",
- "avatar_url": "https://avatars.githubusercontent.com/u/75253383?v=4",
- "gravatar_id": "",
- "url": "https://api.github.com/users/TheFloodDragon",
- "html_url": "https://github.com/TheFloodDragon",
- "followers_url": "https://api.github.com/users/TheFloodDragon/followers",
- "following_url": "https://api.github.com/users/TheFloodDragon/following{/other_user}",
- "gists_url": "https://api.github.com/users/TheFloodDragon/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/TheFloodDragon/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/TheFloodDragon/subscriptions",
- "organizations_url": "https://api.github.com/users/TheFloodDragon/orgs",
- "repos_url": "https://api.github.com/users/TheFloodDragon/repos",
- "events_url": "https://api.github.com/users/TheFloodDragon/events{/privacy}",
- "received_events_url": "https://api.github.com/users/TheFloodDragon/received_events",
- "type": "User",
- "user_view_type": "public",
- "site_admin": false,
- "contributions": 6,
- "additions": 0,
- "deletions": 0,
- "commits": 0
- },
- {
- "login": "cygbs",
- "id": 178620098,
- "node_id": "U_kgDOCqWGwg",
- "avatar_url": "https://avatars.githubusercontent.com/u/178620098?v=4",
- "gravatar_id": "",
- "url": "https://api.github.com/users/cygbs",
- "html_url": "https://github.com/cygbs",
- "followers_url": "https://api.github.com/users/cygbs/followers",
- "following_url": "https://api.github.com/users/cygbs/following{/other_user}",
- "gists_url": "https://api.github.com/users/cygbs/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/cygbs/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/cygbs/subscriptions",
- "organizations_url": "https://api.github.com/users/cygbs/orgs",
- "repos_url": "https://api.github.com/users/cygbs/repos",
- "events_url": "https://api.github.com/users/cygbs/events{/privacy}",
- "received_events_url": "https://api.github.com/users/cygbs/received_events",
- "type": "User",
- "user_view_type": "public",
- "site_admin": false,
- "contributions": 5,
- "additions": 0,
- "deletions": 0,
- "commits": 0
- },
- {
- "login": "tuanzisama",
- "id": 33369729,
- "node_id": "MDQ6VXNlcjMzMzY5NzI5",
- "avatar_url": "https://avatars.githubusercontent.com/u/33369729?v=4",
- "gravatar_id": "",
- "url": "https://api.github.com/users/tuanzisama",
- "html_url": "https://github.com/tuanzisama",
- "followers_url": "https://api.github.com/users/tuanzisama/followers",
- "following_url": "https://api.github.com/users/tuanzisama/following{/other_user}",
- "gists_url": "https://api.github.com/users/tuanzisama/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/tuanzisama/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/tuanzisama/subscriptions",
- "organizations_url": "https://api.github.com/users/tuanzisama/orgs",
- "repos_url": "https://api.github.com/users/tuanzisama/repos",
- "events_url": "https://api.github.com/users/tuanzisama/events{/privacy}",
- "received_events_url": "https://api.github.com/users/tuanzisama/received_events",
- "type": "User",
- "user_view_type": "public",
- "site_admin": false,
- "contributions": 5,
- "additions": 0,
- "deletions": 0,
- "commits": 0
- },
- {
- "login": "zzzyyylllty",
- "id": 167876309,
- "node_id": "U_kgDOCgGW1Q",
- "avatar_url": "https://avatars.githubusercontent.com/u/167876309?v=4",
- "gravatar_id": "",
- "url": "https://api.github.com/users/zzzyyylllty",
- "html_url": "https://github.com/zzzyyylllty",
- "followers_url": "https://api.github.com/users/zzzyyylllty/followers",
- "following_url": "https://api.github.com/users/zzzyyylllty/following{/other_user}",
- "gists_url": "https://api.github.com/users/zzzyyylllty/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/zzzyyylllty/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/zzzyyylllty/subscriptions",
- "organizations_url": "https://api.github.com/users/zzzyyylllty/orgs",
- "repos_url": "https://api.github.com/users/zzzyyylllty/repos",
- "events_url": "https://api.github.com/users/zzzyyylllty/events{/privacy}",
- "received_events_url": "https://api.github.com/users/zzzyyylllty/received_events",
- "type": "User",
- "user_view_type": "public",
- "site_admin": false,
- "contributions": 5,
- "additions": 0,
- "deletions": 0,
- "commits": 0
- },
- {
- "login": "0XPYEX0",
- "id": 50171612,
- "node_id": "MDQ6VXNlcjUwMTcxNjEy",
- "avatar_url": "https://avatars.githubusercontent.com/u/50171612?v=4",
- "gravatar_id": "",
- "url": "https://api.github.com/users/0XPYEX0",
- "html_url": "https://github.com/0XPYEX0",
- "followers_url": "https://api.github.com/users/0XPYEX0/followers",
- "following_url": "https://api.github.com/users/0XPYEX0/following{/other_user}",
- "gists_url": "https://api.github.com/users/0XPYEX0/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/0XPYEX0/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/0XPYEX0/subscriptions",
- "organizations_url": "https://api.github.com/users/0XPYEX0/orgs",
- "repos_url": "https://api.github.com/users/0XPYEX0/repos",
- "events_url": "https://api.github.com/users/0XPYEX0/events{/privacy}",
- "received_events_url": "https://api.github.com/users/0XPYEX0/received_events",
- "type": "User",
- "user_view_type": "public",
- "site_admin": false,
- "contributions": 5,
- "additions": 0,
- "deletions": 0,
- "commits": 0
- },
- {
- "login": "MySoulcutting",
- "id": 72398605,
- "node_id": "MDQ6VXNlcjcyMzk4NjA1",
- "avatar_url": "https://avatars.githubusercontent.com/u/72398605?v=4",
- "gravatar_id": "",
- "url": "https://api.github.com/users/MySoulcutting",
- "html_url": "https://github.com/MySoulcutting",
- "followers_url": "https://api.github.com/users/MySoulcutting/followers",
- "following_url": "https://api.github.com/users/MySoulcutting/following{/other_user}",
- "gists_url": "https://api.github.com/users/MySoulcutting/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/MySoulcutting/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/MySoulcutting/subscriptions",
- "organizations_url": "https://api.github.com/users/MySoulcutting/orgs",
- "repos_url": "https://api.github.com/users/MySoulcutting/repos",
- "events_url": "https://api.github.com/users/MySoulcutting/events{/privacy}",
- "received_events_url": "https://api.github.com/users/MySoulcutting/received_events",
- "type": "User",
- "user_view_type": "public",
- "site_admin": false,
- "contributions": 5,
- "additions": 0,
- "deletions": 0,
- "commits": 0
- },
- {
- "login": "Dreeam-qwq",
- "id": 61569423,
- "node_id": "MDQ6VXNlcjYxNTY5NDIz",
- "avatar_url": "https://avatars.githubusercontent.com/u/61569423?v=4",
- "gravatar_id": "",
- "url": "https://api.github.com/users/Dreeam-qwq",
- "html_url": "https://github.com/Dreeam-qwq",
- "followers_url": "https://api.github.com/users/Dreeam-qwq/followers",
- "following_url": "https://api.github.com/users/Dreeam-qwq/following{/other_user}",
- "gists_url": "https://api.github.com/users/Dreeam-qwq/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/Dreeam-qwq/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/Dreeam-qwq/subscriptions",
- "organizations_url": "https://api.github.com/users/Dreeam-qwq/orgs",
- "repos_url": "https://api.github.com/users/Dreeam-qwq/repos",
- "events_url": "https://api.github.com/users/Dreeam-qwq/events{/privacy}",
- "received_events_url": "https://api.github.com/users/Dreeam-qwq/received_events",
- "type": "User",
- "user_view_type": "public",
- "site_admin": false,
- "contributions": 4,
- "additions": 0,
- "deletions": 0,
- "commits": 0
- },
- {
- "login": "MoLiyi-WD",
- "id": 166040564,
- "node_id": "U_kgDOCeWT9A",
- "avatar_url": "https://avatars.githubusercontent.com/u/166040564?v=4",
- "gravatar_id": "",
- "url": "https://api.github.com/users/MoLiyi-WD",
- "html_url": "https://github.com/MoLiyi-WD",
- "followers_url": "https://api.github.com/users/MoLiyi-WD/followers",
- "following_url": "https://api.github.com/users/MoLiyi-WD/following{/other_user}",
- "gists_url": "https://api.github.com/users/MoLiyi-WD/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/MoLiyi-WD/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/MoLiyi-WD/subscriptions",
- "organizations_url": "https://api.github.com/users/MoLiyi-WD/orgs",
- "repos_url": "https://api.github.com/users/MoLiyi-WD/repos",
- "events_url": "https://api.github.com/users/MoLiyi-WD/events{/privacy}",
- "received_events_url": "https://api.github.com/users/MoLiyi-WD/received_events",
- "type": "User",
- "user_view_type": "public",
- "site_admin": false,
- "contributions": 4,
- "additions": 0,
- "deletions": 0,
- "commits": 0
- },
- {
- "login": "jhqwqmc",
- "id": 113768629,
- "node_id": "U_kgDOBsf4tQ",
- "avatar_url": "https://avatars.githubusercontent.com/u/113768629?v=4",
- "gravatar_id": "",
- "url": "https://api.github.com/users/jhqwqmc",
- "html_url": "https://github.com/jhqwqmc",
- "followers_url": "https://api.github.com/users/jhqwqmc/followers",
- "following_url": "https://api.github.com/users/jhqwqmc/following{/other_user}",
- "gists_url": "https://api.github.com/users/jhqwqmc/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/jhqwqmc/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/jhqwqmc/subscriptions",
- "organizations_url": "https://api.github.com/users/jhqwqmc/orgs",
- "repos_url": "https://api.github.com/users/jhqwqmc/repos",
- "events_url": "https://api.github.com/users/jhqwqmc/events{/privacy}",
- "received_events_url": "https://api.github.com/users/jhqwqmc/received_events",
- "type": "User",
- "user_view_type": "public",
- "site_admin": false,
- "contributions": 4,
- "additions": 0,
- "deletions": 0,
- "commits": 0
- },
- {
- "login": "Coquettishpig",
- "id": 107100449,
- "node_id": "U_kgDOBmI5IQ",
- "avatar_url": "https://avatars.githubusercontent.com/u/107100449?v=4",
- "gravatar_id": "",
- "url": "https://api.github.com/users/Coquettishpig",
- "html_url": "https://github.com/Coquettishpig",
- "followers_url": "https://api.github.com/users/Coquettishpig/followers",
- "following_url": "https://api.github.com/users/Coquettishpig/following{/other_user}",
- "gists_url": "https://api.github.com/users/Coquettishpig/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/Coquettishpig/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/Coquettishpig/subscriptions",
- "organizations_url": "https://api.github.com/users/Coquettishpig/orgs",
- "repos_url": "https://api.github.com/users/Coquettishpig/repos",
- "events_url": "https://api.github.com/users/Coquettishpig/events{/privacy}",
- "received_events_url": "https://api.github.com/users/Coquettishpig/received_events",
- "type": "User",
- "user_view_type": "public",
- "site_admin": false,
- "contributions": 4,
- "additions": 0,
- "deletions": 0,
- "commits": 0
- },
- {
- "login": "MrXiaoM",
- "id": 35788433,
- "node_id": "MDQ6VXNlcjM1Nzg4NDMz",
- "avatar_url": "https://avatars.githubusercontent.com/u/35788433?v=4",
- "gravatar_id": "",
- "url": "https://api.github.com/users/MrXiaoM",
- "html_url": "https://github.com/MrXiaoM",
- "followers_url": "https://api.github.com/users/MrXiaoM/followers",
- "following_url": "https://api.github.com/users/MrXiaoM/following{/other_user}",
- "gists_url": "https://api.github.com/users/MrXiaoM/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/MrXiaoM/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/MrXiaoM/subscriptions",
- "organizations_url": "https://api.github.com/users/MrXiaoM/orgs",
- "repos_url": "https://api.github.com/users/MrXiaoM/repos",
- "events_url": "https://api.github.com/users/MrXiaoM/events{/privacy}",
- "received_events_url": "https://api.github.com/users/MrXiaoM/received_events",
- "type": "User",
- "user_view_type": "public",
- "site_admin": false,
- "contributions": 3,
- "additions": 0,
- "deletions": 0,
- "commits": 0
- },
- {
- "login": "zzh4141",
- "id": 173983090,
- "node_id": "U_kgDOCl7Fcg",
- "avatar_url": "https://avatars.githubusercontent.com/u/173983090?v=4",
- "gravatar_id": "",
- "url": "https://api.github.com/users/zzh4141",
- "html_url": "https://github.com/zzh4141",
- "followers_url": "https://api.github.com/users/zzh4141/followers",
- "following_url": "https://api.github.com/users/zzh4141/following{/other_user}",
- "gists_url": "https://api.github.com/users/zzh4141/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/zzh4141/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/zzh4141/subscriptions",
- "organizations_url": "https://api.github.com/users/zzh4141/orgs",
- "repos_url": "https://api.github.com/users/zzh4141/repos",
- "events_url": "https://api.github.com/users/zzh4141/events{/privacy}",
- "received_events_url": "https://api.github.com/users/zzh4141/received_events",
- "type": "User",
- "user_view_type": "public",
- "site_admin": false,
- "contributions": 3,
- "additions": 0,
- "deletions": 0,
- "commits": 0
- },
- {
- "login": "cqw-acq",
- "id": 133117051,
- "node_id": "U_kgDOB-80ew",
- "avatar_url": "https://avatars.githubusercontent.com/u/133117051?v=4",
- "gravatar_id": "",
- "url": "https://api.github.com/users/cqw-acq",
- "html_url": "https://github.com/cqw-acq",
- "followers_url": "https://api.github.com/users/cqw-acq/followers",
- "following_url": "https://api.github.com/users/cqw-acq/following{/other_user}",
- "gists_url": "https://api.github.com/users/cqw-acq/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/cqw-acq/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/cqw-acq/subscriptions",
- "organizations_url": "https://api.github.com/users/cqw-acq/orgs",
- "repos_url": "https://api.github.com/users/cqw-acq/repos",
- "events_url": "https://api.github.com/users/cqw-acq/events{/privacy}",
- "received_events_url": "https://api.github.com/users/cqw-acq/received_events",
- "type": "User",
- "user_view_type": "public",
- "site_admin": false,
- "contributions": 3,
- "additions": 0,
- "deletions": 0,
- "commits": 0
- },
- {
- "login": "Null-K",
- "id": 42692963,
- "node_id": "MDQ6VXNlcjQyNjkyOTYz",
- "avatar_url": "https://avatars.githubusercontent.com/u/42692963?v=4",
- "gravatar_id": "",
- "url": "https://api.github.com/users/Null-K",
- "html_url": "https://github.com/Null-K",
- "followers_url": "https://api.github.com/users/Null-K/followers",
- "following_url": "https://api.github.com/users/Null-K/following{/other_user}",
- "gists_url": "https://api.github.com/users/Null-K/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/Null-K/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/Null-K/subscriptions",
- "organizations_url": "https://api.github.com/users/Null-K/orgs",
- "repos_url": "https://api.github.com/users/Null-K/repos",
- "events_url": "https://api.github.com/users/Null-K/events{/privacy}",
- "received_events_url": "https://api.github.com/users/Null-K/received_events",
- "type": "User",
- "user_view_type": "public",
- "site_admin": false,
- "contributions": 3,
- "additions": 0,
- "deletions": 0,
- "commits": 0
- },
- {
- "login": "MF-Dust",
- "id": 128943330,
- "node_id": "U_kgDOB6-E4g",
- "avatar_url": "https://avatars.githubusercontent.com/u/128943330?v=4",
- "gravatar_id": "",
- "url": "https://api.github.com/users/MF-Dust",
- "html_url": "https://github.com/MF-Dust",
- "followers_url": "https://api.github.com/users/MF-Dust/followers",
- "following_url": "https://api.github.com/users/MF-Dust/following{/other_user}",
- "gists_url": "https://api.github.com/users/MF-Dust/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/MF-Dust/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/MF-Dust/subscriptions",
- "organizations_url": "https://api.github.com/users/MF-Dust/orgs",
- "repos_url": "https://api.github.com/users/MF-Dust/repos",
- "events_url": "https://api.github.com/users/MF-Dust/events{/privacy}",
- "received_events_url": "https://api.github.com/users/MF-Dust/received_events",
- "type": "User",
- "user_view_type": "public",
- "site_admin": false,
- "contributions": 3,
- "additions": 0,
- "deletions": 0,
- "commits": 0
- },
- {
- "login": "LittleChest",
- "id": 81231195,
- "node_id": "MDQ6VXNlcjgxMjMxMTk1",
- "avatar_url": "https://avatars.githubusercontent.com/u/81231195?v=4",
- "gravatar_id": "",
- "url": "https://api.github.com/users/LittleChest",
- "html_url": "https://github.com/LittleChest",
- "followers_url": "https://api.github.com/users/LittleChest/followers",
- "following_url": "https://api.github.com/users/LittleChest/following{/other_user}",
- "gists_url": "https://api.github.com/users/LittleChest/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/LittleChest/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/LittleChest/subscriptions",
- "organizations_url": "https://api.github.com/users/LittleChest/orgs",
- "repos_url": "https://api.github.com/users/LittleChest/repos",
- "events_url": "https://api.github.com/users/LittleChest/events{/privacy}",
- "received_events_url": "https://api.github.com/users/LittleChest/received_events",
- "type": "User",
- "user_view_type": "public",
- "site_admin": false,
- "contributions": 3,
- "additions": 0,
- "deletions": 0,
- "commits": 0
- },
- {
- "login": "yeying-xingchen",
- "id": 149694986,
- "node_id": "U_kgDOCOwqCg",
- "avatar_url": "https://avatars.githubusercontent.com/u/149694986?v=4",
- "gravatar_id": "",
- "url": "https://api.github.com/users/yeying-xingchen",
- "html_url": "https://github.com/yeying-xingchen",
- "followers_url": "https://api.github.com/users/yeying-xingchen/followers",
- "following_url": "https://api.github.com/users/yeying-xingchen/following{/other_user}",
- "gists_url": "https://api.github.com/users/yeying-xingchen/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/yeying-xingchen/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/yeying-xingchen/subscriptions",
- "organizations_url": "https://api.github.com/users/yeying-xingchen/orgs",
- "repos_url": "https://api.github.com/users/yeying-xingchen/repos",
- "events_url": "https://api.github.com/users/yeying-xingchen/events{/privacy}",
- "received_events_url": "https://api.github.com/users/yeying-xingchen/received_events",
- "type": "User",
- "user_view_type": "public",
- "site_admin": false,
- "contributions": 2,
- "additions": 0,
- "deletions": 0,
- "commits": 0
- },
- {
- "login": "aoc46hiabck4678wofh",
- "id": 79011008,
- "node_id": "MDQ6VXNlcjc5MDExMDA4",
- "avatar_url": "https://avatars.githubusercontent.com/u/79011008?v=4",
- "gravatar_id": "",
- "url": "https://api.github.com/users/aoc46hiabck4678wofh",
- "html_url": "https://github.com/aoc46hiabck4678wofh",
- "followers_url": "https://api.github.com/users/aoc46hiabck4678wofh/followers",
- "following_url": "https://api.github.com/users/aoc46hiabck4678wofh/following{/other_user}",
- "gists_url": "https://api.github.com/users/aoc46hiabck4678wofh/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/aoc46hiabck4678wofh/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/aoc46hiabck4678wofh/subscriptions",
- "organizations_url": "https://api.github.com/users/aoc46hiabck4678wofh/orgs",
- "repos_url": "https://api.github.com/users/aoc46hiabck4678wofh/repos",
- "events_url": "https://api.github.com/users/aoc46hiabck4678wofh/events{/privacy}",
- "received_events_url": "https://api.github.com/users/aoc46hiabck4678wofh/received_events",
- "type": "User",
- "user_view_type": "public",
- "site_admin": false,
- "contributions": 2,
- "additions": 0,
- "deletions": 0,
- "commits": 0
- },
- {
- "login": "Maxsh001",
- "id": 121470455,
- "node_id": "U_kgDOBz199w",
- "avatar_url": "https://avatars.githubusercontent.com/u/121470455?v=4",
- "gravatar_id": "",
- "url": "https://api.github.com/users/Maxsh001",
- "html_url": "https://github.com/Maxsh001",
- "followers_url": "https://api.github.com/users/Maxsh001/followers",
- "following_url": "https://api.github.com/users/Maxsh001/following{/other_user}",
- "gists_url": "https://api.github.com/users/Maxsh001/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/Maxsh001/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/Maxsh001/subscriptions",
- "organizations_url": "https://api.github.com/users/Maxsh001/orgs",
- "repos_url": "https://api.github.com/users/Maxsh001/repos",
- "events_url": "https://api.github.com/users/Maxsh001/events{/privacy}",
- "received_events_url": "https://api.github.com/users/Maxsh001/received_events",
- "type": "User",
- "user_view_type": "public",
- "site_admin": false,
- "contributions": 2,
- "additions": 0,
- "deletions": 0,
- "commits": 0
- },
- {
- "login": "tomofsun",
- "id": 38775139,
- "node_id": "MDQ6VXNlcjM4Nzc1MTM5",
- "avatar_url": "https://avatars.githubusercontent.com/u/38775139?v=4",
- "gravatar_id": "",
- "url": "https://api.github.com/users/tomofsun",
- "html_url": "https://github.com/tomofsun",
- "followers_url": "https://api.github.com/users/tomofsun/followers",
- "following_url": "https://api.github.com/users/tomofsun/following{/other_user}",
- "gists_url": "https://api.github.com/users/tomofsun/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/tomofsun/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/tomofsun/subscriptions",
- "organizations_url": "https://api.github.com/users/tomofsun/orgs",
- "repos_url": "https://api.github.com/users/tomofsun/repos",
- "events_url": "https://api.github.com/users/tomofsun/events{/privacy}",
- "received_events_url": "https://api.github.com/users/tomofsun/received_events",
- "type": "User",
- "user_view_type": "public",
- "site_admin": false,
- "contributions": 2,
- "additions": 0,
- "deletions": 0,
- "commits": 0
- },
- {
- "login": "shenbimicro233",
- "id": 116066110,
- "node_id": "U_kgDOBusHPg",
- "avatar_url": "https://avatars.githubusercontent.com/u/116066110?v=4",
- "gravatar_id": "",
- "url": "https://api.github.com/users/shenbimicro233",
- "html_url": "https://github.com/shenbimicro233",
- "followers_url": "https://api.github.com/users/shenbimicro233/followers",
- "following_url": "https://api.github.com/users/shenbimicro233/following{/other_user}",
- "gists_url": "https://api.github.com/users/shenbimicro233/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/shenbimicro233/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/shenbimicro233/subscriptions",
- "organizations_url": "https://api.github.com/users/shenbimicro233/orgs",
- "repos_url": "https://api.github.com/users/shenbimicro233/repos",
- "events_url": "https://api.github.com/users/shenbimicro233/events{/privacy}",
- "received_events_url": "https://api.github.com/users/shenbimicro233/received_events",
- "type": "User",
- "user_view_type": "public",
- "site_admin": false,
- "contributions": 2,
- "additions": 0,
- "deletions": 0,
- "commits": 0
- },
- {
- "login": "kukemc",
- "id": 95417077,
- "node_id": "U_kgDOBa_y9Q",
- "avatar_url": "https://avatars.githubusercontent.com/u/95417077?v=4",
- "gravatar_id": "",
- "url": "https://api.github.com/users/kukemc",
- "html_url": "https://github.com/kukemc",
- "followers_url": "https://api.github.com/users/kukemc/followers",
- "following_url": "https://api.github.com/users/kukemc/following{/other_user}",
- "gists_url": "https://api.github.com/users/kukemc/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/kukemc/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/kukemc/subscriptions",
- "organizations_url": "https://api.github.com/users/kukemc/orgs",
- "repos_url": "https://api.github.com/users/kukemc/repos",
- "events_url": "https://api.github.com/users/kukemc/events{/privacy}",
- "received_events_url": "https://api.github.com/users/kukemc/received_events",
- "type": "User",
- "user_view_type": "public",
- "site_admin": false,
- "contributions": 2,
- "additions": 0,
- "deletions": 0,
- "commits": 0
- },
- {
- "login": "alazeprt",
- "id": 92018941,
- "node_id": "U_kgDOBXwY_Q",
- "avatar_url": "https://avatars.githubusercontent.com/u/92018941?v=4",
- "gravatar_id": "",
- "url": "https://api.github.com/users/alazeprt",
- "html_url": "https://github.com/alazeprt",
- "followers_url": "https://api.github.com/users/alazeprt/followers",
- "following_url": "https://api.github.com/users/alazeprt/following{/other_user}",
- "gists_url": "https://api.github.com/users/alazeprt/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/alazeprt/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/alazeprt/subscriptions",
- "organizations_url": "https://api.github.com/users/alazeprt/orgs",
- "repos_url": "https://api.github.com/users/alazeprt/repos",
- "events_url": "https://api.github.com/users/alazeprt/events{/privacy}",
- "received_events_url": "https://api.github.com/users/alazeprt/received_events",
- "type": "User",
- "user_view_type": "public",
- "site_admin": false,
- "contributions": 2,
- "additions": 0,
- "deletions": 0,
- "commits": 0
- },
- {
- "login": "YuanYuanOwO",
- "id": 81153017,
- "node_id": "MDQ6VXNlcjgxMTUzMDE3",
- "avatar_url": "https://avatars.githubusercontent.com/u/81153017?v=4",
- "gravatar_id": "",
- "url": "https://api.github.com/users/YuanYuanOwO",
- "html_url": "https://github.com/YuanYuanOwO",
- "followers_url": "https://api.github.com/users/YuanYuanOwO/followers",
- "following_url": "https://api.github.com/users/YuanYuanOwO/following{/other_user}",
- "gists_url": "https://api.github.com/users/YuanYuanOwO/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/YuanYuanOwO/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/YuanYuanOwO/subscriptions",
- "organizations_url": "https://api.github.com/users/YuanYuanOwO/orgs",
- "repos_url": "https://api.github.com/users/YuanYuanOwO/repos",
- "events_url": "https://api.github.com/users/YuanYuanOwO/events{/privacy}",
- "received_events_url": "https://api.github.com/users/YuanYuanOwO/received_events",
- "type": "User",
- "user_view_type": "public",
- "site_admin": false,
- "contributions": 2,
- "additions": 0,
- "deletions": 0,
- "commits": 0
- },
- {
- "login": "SnowCutieOwO",
- "id": 89032291,
- "node_id": "MDQ6VXNlcjg5MDMyMjkx",
- "avatar_url": "https://avatars.githubusercontent.com/u/89032291?v=4",
- "gravatar_id": "",
- "url": "https://api.github.com/users/SnowCutieOwO",
- "html_url": "https://github.com/SnowCutieOwO",
- "followers_url": "https://api.github.com/users/SnowCutieOwO/followers",
- "following_url": "https://api.github.com/users/SnowCutieOwO/following{/other_user}",
- "gists_url": "https://api.github.com/users/SnowCutieOwO/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/SnowCutieOwO/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/SnowCutieOwO/subscriptions",
- "organizations_url": "https://api.github.com/users/SnowCutieOwO/orgs",
- "repos_url": "https://api.github.com/users/SnowCutieOwO/repos",
- "events_url": "https://api.github.com/users/SnowCutieOwO/events{/privacy}",
- "received_events_url": "https://api.github.com/users/SnowCutieOwO/received_events",
- "type": "User",
- "user_view_type": "public",
- "site_admin": false,
- "contributions": 2,
- "additions": 0,
- "deletions": 0,
- "commits": 0
- },
- {
- "login": "superman32432432",
- "id": 7228420,
- "node_id": "MDQ6VXNlcjcyMjg0MjA=",
- "avatar_url": "https://avatars.githubusercontent.com/u/7228420?v=4",
- "gravatar_id": "",
- "url": "https://api.github.com/users/superman32432432",
- "html_url": "https://github.com/superman32432432",
- "followers_url": "https://api.github.com/users/superman32432432/followers",
- "following_url": "https://api.github.com/users/superman32432432/following{/other_user}",
- "gists_url": "https://api.github.com/users/superman32432432/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/superman32432432/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/superman32432432/subscriptions",
- "organizations_url": "https://api.github.com/users/superman32432432/orgs",
- "repos_url": "https://api.github.com/users/superman32432432/repos",
- "events_url": "https://api.github.com/users/superman32432432/events{/privacy}",
- "received_events_url": "https://api.github.com/users/superman32432432/received_events",
- "type": "User",
- "user_view_type": "public",
- "site_admin": false,
- "contributions": 2,
- "additions": 0,
- "deletions": 0,
- "commits": 0
- },
- {
- "login": "CaterMaoZi",
- "id": 126097270,
- "node_id": "U_kgDOB4QXdg",
- "avatar_url": "https://avatars.githubusercontent.com/u/126097270?v=4",
- "gravatar_id": "",
- "url": "https://api.github.com/users/CaterMaoZi",
- "html_url": "https://github.com/CaterMaoZi",
- "followers_url": "https://api.github.com/users/CaterMaoZi/followers",
- "following_url": "https://api.github.com/users/CaterMaoZi/following{/other_user}",
- "gists_url": "https://api.github.com/users/CaterMaoZi/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/CaterMaoZi/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/CaterMaoZi/subscriptions",
- "organizations_url": "https://api.github.com/users/CaterMaoZi/orgs",
- "repos_url": "https://api.github.com/users/CaterMaoZi/repos",
- "events_url": "https://api.github.com/users/CaterMaoZi/events{/privacy}",
- "received_events_url": "https://api.github.com/users/CaterMaoZi/received_events",
- "type": "User",
- "user_view_type": "public",
- "site_admin": false,
- "contributions": 2,
- "additions": 0,
- "deletions": 0,
- "commits": 0
- },
- {
- "login": "Spring8618",
- "id": 199462952,
- "node_id": "U_kgDOC-OQKA",
- "avatar_url": "https://avatars.githubusercontent.com/u/199462952?v=4",
- "gravatar_id": "",
- "url": "https://api.github.com/users/Spring8618",
- "html_url": "https://github.com/Spring8618",
- "followers_url": "https://api.github.com/users/Spring8618/followers",
- "following_url": "https://api.github.com/users/Spring8618/following{/other_user}",
- "gists_url": "https://api.github.com/users/Spring8618/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/Spring8618/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/Spring8618/subscriptions",
- "organizations_url": "https://api.github.com/users/Spring8618/orgs",
- "repos_url": "https://api.github.com/users/Spring8618/repos",
- "events_url": "https://api.github.com/users/Spring8618/events{/privacy}",
- "received_events_url": "https://api.github.com/users/Spring8618/received_events",
- "type": "User",
- "user_view_type": "public",
- "site_admin": false,
- "contributions": 1,
- "additions": 0,
- "deletions": 0,
- "commits": 0
- },
- {
- "login": "TalentsRC",
- "id": 85682725,
- "node_id": "MDQ6VXNlcjg1NjgyNzI1",
- "avatar_url": "https://avatars.githubusercontent.com/u/85682725?v=4",
- "gravatar_id": "",
- "url": "https://api.github.com/users/TalentsRC",
- "html_url": "https://github.com/TalentsRC",
- "followers_url": "https://api.github.com/users/TalentsRC/followers",
- "following_url": "https://api.github.com/users/TalentsRC/following{/other_user}",
- "gists_url": "https://api.github.com/users/TalentsRC/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/TalentsRC/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/TalentsRC/subscriptions",
- "organizations_url": "https://api.github.com/users/TalentsRC/orgs",
- "repos_url": "https://api.github.com/users/TalentsRC/repos",
- "events_url": "https://api.github.com/users/TalentsRC/events{/privacy}",
- "received_events_url": "https://api.github.com/users/TalentsRC/received_events",
- "type": "User",
- "user_view_type": "public",
- "site_admin": false,
- "contributions": 1,
- "additions": 0,
- "deletions": 0,
- "commits": 0
- },
- {
- "login": "Tsingloong611",
- "id": 78492333,
- "node_id": "MDQ6VXNlcjc4NDkyMzMz",
- "avatar_url": "https://avatars.githubusercontent.com/u/78492333?v=4",
- "gravatar_id": "",
- "url": "https://api.github.com/users/Tsingloong611",
- "html_url": "https://github.com/Tsingloong611",
- "followers_url": "https://api.github.com/users/Tsingloong611/followers",
- "following_url": "https://api.github.com/users/Tsingloong611/following{/other_user}",
- "gists_url": "https://api.github.com/users/Tsingloong611/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/Tsingloong611/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/Tsingloong611/subscriptions",
- "organizations_url": "https://api.github.com/users/Tsingloong611/orgs",
- "repos_url": "https://api.github.com/users/Tsingloong611/repos",
- "events_url": "https://api.github.com/users/Tsingloong611/events{/privacy}",
- "received_events_url": "https://api.github.com/users/Tsingloong611/received_events",
- "type": "User",
- "user_view_type": "public",
- "site_admin": false,
- "contributions": 1,
- "additions": 0,
- "deletions": 0,
- "commits": 0
- },
- {
- "login": "windy664",
- "id": 81475218,
- "node_id": "MDQ6VXNlcjgxNDc1MjE4",
- "avatar_url": "https://avatars.githubusercontent.com/u/81475218?v=4",
- "gravatar_id": "",
- "url": "https://api.github.com/users/windy664",
- "html_url": "https://github.com/windy664",
- "followers_url": "https://api.github.com/users/windy664/followers",
- "following_url": "https://api.github.com/users/windy664/following{/other_user}",
- "gists_url": "https://api.github.com/users/windy664/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/windy664/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/windy664/subscriptions",
- "organizations_url": "https://api.github.com/users/windy664/orgs",
- "repos_url": "https://api.github.com/users/windy664/repos",
- "events_url": "https://api.github.com/users/windy664/events{/privacy}",
- "received_events_url": "https://api.github.com/users/windy664/received_events",
- "type": "User",
- "user_view_type": "public",
- "site_admin": false,
- "contributions": 1,
- "additions": 0,
- "deletions": 0,
- "commits": 0
- },
- {
- "login": "Rapid-carbon-neutralization",
- "id": 193466634,
- "node_id": "U_kgDOC4gRCg",
- "avatar_url": "https://avatars.githubusercontent.com/u/193466634?v=4",
- "gravatar_id": "",
- "url": "https://api.github.com/users/Rapid-carbon-neutralization",
- "html_url": "https://github.com/Rapid-carbon-neutralization",
- "followers_url": "https://api.github.com/users/Rapid-carbon-neutralization/followers",
- "following_url": "https://api.github.com/users/Rapid-carbon-neutralization/following{/other_user}",
- "gists_url": "https://api.github.com/users/Rapid-carbon-neutralization/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/Rapid-carbon-neutralization/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/Rapid-carbon-neutralization/subscriptions",
- "organizations_url": "https://api.github.com/users/Rapid-carbon-neutralization/orgs",
- "repos_url": "https://api.github.com/users/Rapid-carbon-neutralization/repos",
- "events_url": "https://api.github.com/users/Rapid-carbon-neutralization/events{/privacy}",
- "received_events_url": "https://api.github.com/users/Rapid-carbon-neutralization/received_events",
- "type": "User",
- "user_view_type": "public",
- "site_admin": false,
- "contributions": 1,
- "additions": 0,
- "deletions": 0,
- "commits": 0
- },
- {
- "login": "Ziphyrien",
- "id": 111620796,
- "node_id": "U_kgDOBqcyvA",
- "avatar_url": "https://avatars.githubusercontent.com/u/111620796?v=4",
- "gravatar_id": "",
- "url": "https://api.github.com/users/Ziphyrien",
- "html_url": "https://github.com/Ziphyrien",
- "followers_url": "https://api.github.com/users/Ziphyrien/followers",
- "following_url": "https://api.github.com/users/Ziphyrien/following{/other_user}",
- "gists_url": "https://api.github.com/users/Ziphyrien/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/Ziphyrien/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/Ziphyrien/subscriptions",
- "organizations_url": "https://api.github.com/users/Ziphyrien/orgs",
- "repos_url": "https://api.github.com/users/Ziphyrien/repos",
- "events_url": "https://api.github.com/users/Ziphyrien/events{/privacy}",
- "received_events_url": "https://api.github.com/users/Ziphyrien/received_events",
- "type": "User",
- "user_view_type": "public",
- "site_admin": false,
- "contributions": 1,
- "additions": 0,
- "deletions": 0,
- "commits": 0
- },
- {
- "login": "heyhey123-git",
- "id": 156066831,
- "node_id": "U_kgDOCU1kDw",
- "avatar_url": "https://avatars.githubusercontent.com/u/156066831?v=4",
- "gravatar_id": "",
- "url": "https://api.github.com/users/heyhey123-git",
- "html_url": "https://github.com/heyhey123-git",
- "followers_url": "https://api.github.com/users/heyhey123-git/followers",
- "following_url": "https://api.github.com/users/heyhey123-git/following{/other_user}",
- "gists_url": "https://api.github.com/users/heyhey123-git/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/heyhey123-git/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/heyhey123-git/subscriptions",
- "organizations_url": "https://api.github.com/users/heyhey123-git/orgs",
- "repos_url": "https://api.github.com/users/heyhey123-git/repos",
- "events_url": "https://api.github.com/users/heyhey123-git/events{/privacy}",
- "received_events_url": "https://api.github.com/users/heyhey123-git/received_events",
- "type": "User",
- "user_view_type": "public",
- "site_admin": false,
- "contributions": 1,
- "additions": 0,
- "deletions": 0,
- "commits": 0
- },
- {
- "login": "starworkless",
- "id": 166240872,
- "node_id": "U_kgDOCeiiaA",
- "avatar_url": "https://avatars.githubusercontent.com/u/166240872?v=4",
- "gravatar_id": "",
- "url": "https://api.github.com/users/starworkless",
- "html_url": "https://github.com/starworkless",
- "followers_url": "https://api.github.com/users/starworkless/followers",
- "following_url": "https://api.github.com/users/starworkless/following{/other_user}",
- "gists_url": "https://api.github.com/users/starworkless/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/starworkless/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/starworkless/subscriptions",
- "organizations_url": "https://api.github.com/users/starworkless/orgs",
- "repos_url": "https://api.github.com/users/starworkless/repos",
- "events_url": "https://api.github.com/users/starworkless/events{/privacy}",
- "received_events_url": "https://api.github.com/users/starworkless/received_events",
- "type": "User",
- "user_view_type": "public",
- "site_admin": false,
- "contributions": 1,
- "additions": 0,
- "deletions": 0,
- "commits": 0
- },
- {
- "login": "xiaoka520",
- "id": 82299267,
- "node_id": "MDQ6VXNlcjgyMjk5MjY3",
- "avatar_url": "https://avatars.githubusercontent.com/u/82299267?v=4",
- "gravatar_id": "",
- "url": "https://api.github.com/users/xiaoka520",
- "html_url": "https://github.com/xiaoka520",
- "followers_url": "https://api.github.com/users/xiaoka520/followers",
- "following_url": "https://api.github.com/users/xiaoka520/following{/other_user}",
- "gists_url": "https://api.github.com/users/xiaoka520/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/xiaoka520/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/xiaoka520/subscriptions",
- "organizations_url": "https://api.github.com/users/xiaoka520/orgs",
- "repos_url": "https://api.github.com/users/xiaoka520/repos",
- "events_url": "https://api.github.com/users/xiaoka520/events{/privacy}",
- "received_events_url": "https://api.github.com/users/xiaoka520/received_events",
- "type": "User",
- "user_view_type": "public",
- "site_admin": false,
- "contributions": 1,
- "additions": 0,
- "deletions": 0,
- "commits": 0
- },
- {
- "login": "XingLingQAQ",
- "id": 92240364,
- "node_id": "U_kgDOBX957A",
- "avatar_url": "https://avatars.githubusercontent.com/u/92240364?v=4",
- "gravatar_id": "",
- "url": "https://api.github.com/users/XingLingQAQ",
- "html_url": "https://github.com/XingLingQAQ",
- "followers_url": "https://api.github.com/users/XingLingQAQ/followers",
- "following_url": "https://api.github.com/users/XingLingQAQ/following{/other_user}",
- "gists_url": "https://api.github.com/users/XingLingQAQ/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/XingLingQAQ/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/XingLingQAQ/subscriptions",
- "organizations_url": "https://api.github.com/users/XingLingQAQ/orgs",
- "repos_url": "https://api.github.com/users/XingLingQAQ/repos",
- "events_url": "https://api.github.com/users/XingLingQAQ/events{/privacy}",
- "received_events_url": "https://api.github.com/users/XingLingQAQ/received_events",
- "type": "User",
- "user_view_type": "public",
- "site_admin": false,
- "contributions": 1,
- "additions": 0,
- "deletions": 0,
- "commits": 0
- },
- {
- "login": "MSCMDD",
- "id": 128666602,
- "node_id": "U_kgDOB6tL6g",
- "avatar_url": "https://avatars.githubusercontent.com/u/128666602?v=4",
- "gravatar_id": "",
- "url": "https://api.github.com/users/MSCMDD",
- "html_url": "https://github.com/MSCMDD",
- "followers_url": "https://api.github.com/users/MSCMDD/followers",
- "following_url": "https://api.github.com/users/MSCMDD/following{/other_user}",
- "gists_url": "https://api.github.com/users/MSCMDD/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/MSCMDD/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/MSCMDD/subscriptions",
- "organizations_url": "https://api.github.com/users/MSCMDD/orgs",
- "repos_url": "https://api.github.com/users/MSCMDD/repos",
- "events_url": "https://api.github.com/users/MSCMDD/events{/privacy}",
- "received_events_url": "https://api.github.com/users/MSCMDD/received_events",
- "type": "User",
- "user_view_type": "public",
- "site_admin": false,
- "contributions": 1,
- "additions": 0,
- "deletions": 0,
- "commits": 0
- },
- {
- "login": "IPF-Sinon",
- "id": 160340144,
- "node_id": "U_kgDOCY6YsA",
- "avatar_url": "https://avatars.githubusercontent.com/u/160340144?v=4",
- "gravatar_id": "",
- "url": "https://api.github.com/users/IPF-Sinon",
- "html_url": "https://github.com/IPF-Sinon",
- "followers_url": "https://api.github.com/users/IPF-Sinon/followers",
- "following_url": "https://api.github.com/users/IPF-Sinon/following{/other_user}",
- "gists_url": "https://api.github.com/users/IPF-Sinon/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/IPF-Sinon/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/IPF-Sinon/subscriptions",
- "organizations_url": "https://api.github.com/users/IPF-Sinon/orgs",
- "repos_url": "https://api.github.com/users/IPF-Sinon/repos",
- "events_url": "https://api.github.com/users/IPF-Sinon/events{/privacy}",
- "received_events_url": "https://api.github.com/users/IPF-Sinon/received_events",
- "type": "User",
- "user_view_type": "public",
- "site_admin": false,
- "contributions": 1,
- "additions": 0,
- "deletions": 0,
- "commits": 0
- },
- {
- "login": "zkhssb",
- "id": 66494674,
- "node_id": "MDQ6VXNlcjY2NDk0Njc0",
- "avatar_url": "https://avatars.githubusercontent.com/u/66494674?v=4",
- "gravatar_id": "",
- "url": "https://api.github.com/users/zkhssb",
- "html_url": "https://github.com/zkhssb",
- "followers_url": "https://api.github.com/users/zkhssb/followers",
- "following_url": "https://api.github.com/users/zkhssb/following{/other_user}",
- "gists_url": "https://api.github.com/users/zkhssb/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/zkhssb/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/zkhssb/subscriptions",
- "organizations_url": "https://api.github.com/users/zkhssb/orgs",
- "repos_url": "https://api.github.com/users/zkhssb/repos",
- "events_url": "https://api.github.com/users/zkhssb/events{/privacy}",
- "received_events_url": "https://api.github.com/users/zkhssb/received_events",
- "type": "User",
- "user_view_type": "public",
- "site_admin": false,
- "contributions": 1,
- "additions": 0,
- "deletions": 0,
- "commits": 0
- },
- {
- "login": "NanamiMio",
- "id": 7197139,
- "node_id": "MDQ6VXNlcjcxOTcxMzk=",
- "avatar_url": "https://avatars.githubusercontent.com/u/7197139?v=4",
- "gravatar_id": "",
- "url": "https://api.github.com/users/NanamiMio",
- "html_url": "https://github.com/NanamiMio",
- "followers_url": "https://api.github.com/users/NanamiMio/followers",
- "following_url": "https://api.github.com/users/NanamiMio/following{/other_user}",
- "gists_url": "https://api.github.com/users/NanamiMio/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/NanamiMio/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/NanamiMio/subscriptions",
- "organizations_url": "https://api.github.com/users/NanamiMio/orgs",
- "repos_url": "https://api.github.com/users/NanamiMio/repos",
- "events_url": "https://api.github.com/users/NanamiMio/events{/privacy}",
- "received_events_url": "https://api.github.com/users/NanamiMio/received_events",
- "type": "User",
- "user_view_type": "public",
- "site_admin": false,
- "contributions": 1,
- "additions": 0,
- "deletions": 0,
- "commits": 0
- },
- {
- "login": "Huge-mistake",
- "id": 137968615,
- "node_id": "U_kgDOCDk75w",
- "avatar_url": "https://avatars.githubusercontent.com/u/137968615?v=4",
- "gravatar_id": "",
- "url": "https://api.github.com/users/Huge-mistake",
- "html_url": "https://github.com/Huge-mistake",
- "followers_url": "https://api.github.com/users/Huge-mistake/followers",
- "following_url": "https://api.github.com/users/Huge-mistake/following{/other_user}",
- "gists_url": "https://api.github.com/users/Huge-mistake/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/Huge-mistake/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/Huge-mistake/subscriptions",
- "organizations_url": "https://api.github.com/users/Huge-mistake/orgs",
- "repos_url": "https://api.github.com/users/Huge-mistake/repos",
- "events_url": "https://api.github.com/users/Huge-mistake/events{/privacy}",
- "received_events_url": "https://api.github.com/users/Huge-mistake/received_events",
- "type": "User",
- "user_view_type": "public",
- "site_admin": false,
- "contributions": 1,
- "additions": 0,
- "deletions": 0,
- "commits": 0
- },
- {
- "login": "k49ur4",
- "id": 78563233,
- "node_id": "MDQ6VXNlcjc4NTYzMjMz",
- "avatar_url": "https://avatars.githubusercontent.com/u/78563233?v=4",
- "gravatar_id": "",
- "url": "https://api.github.com/users/k49ur4",
- "html_url": "https://github.com/k49ur4",
- "followers_url": "https://api.github.com/users/k49ur4/followers",
- "following_url": "https://api.github.com/users/k49ur4/following{/other_user}",
- "gists_url": "https://api.github.com/users/k49ur4/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/k49ur4/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/k49ur4/subscriptions",
- "organizations_url": "https://api.github.com/users/k49ur4/orgs",
- "repos_url": "https://api.github.com/users/k49ur4/repos",
- "events_url": "https://api.github.com/users/k49ur4/events{/privacy}",
- "received_events_url": "https://api.github.com/users/k49ur4/received_events",
- "type": "User",
- "user_view_type": "public",
- "site_admin": false,
- "contributions": 1,
- "additions": 0,
- "deletions": 0,
- "commits": 0
- },
- {
- "login": "JiYu131",
- "id": 139472062,
- "node_id": "U_kgDOCFAsvg",
- "avatar_url": "https://avatars.githubusercontent.com/u/139472062?v=4",
- "gravatar_id": "",
- "url": "https://api.github.com/users/JiYu131",
- "html_url": "https://github.com/JiYu131",
- "followers_url": "https://api.github.com/users/JiYu131/followers",
- "following_url": "https://api.github.com/users/JiYu131/following{/other_user}",
- "gists_url": "https://api.github.com/users/JiYu131/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/JiYu131/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/JiYu131/subscriptions",
- "organizations_url": "https://api.github.com/users/JiYu131/orgs",
- "repos_url": "https://api.github.com/users/JiYu131/repos",
- "events_url": "https://api.github.com/users/JiYu131/events{/privacy}",
- "received_events_url": "https://api.github.com/users/JiYu131/received_events",
- "type": "User",
- "user_view_type": "public",
- "site_admin": false,
- "contributions": 1,
- "additions": 0,
- "deletions": 0,
- "commits": 0
- },
- {
- "login": "JasonHan2009",
- "id": 200713607,
- "node_id": "U_kgDOC_alhw",
- "avatar_url": "https://avatars.githubusercontent.com/u/200713607?v=4",
- "gravatar_id": "",
- "url": "https://api.github.com/users/JasonHan2009",
- "html_url": "https://github.com/JasonHan2009",
- "followers_url": "https://api.github.com/users/JasonHan2009/followers",
- "following_url": "https://api.github.com/users/JasonHan2009/following{/other_user}",
- "gists_url": "https://api.github.com/users/JasonHan2009/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/JasonHan2009/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/JasonHan2009/subscriptions",
- "organizations_url": "https://api.github.com/users/JasonHan2009/orgs",
- "repos_url": "https://api.github.com/users/JasonHan2009/repos",
- "events_url": "https://api.github.com/users/JasonHan2009/events{/privacy}",
- "received_events_url": "https://api.github.com/users/JasonHan2009/received_events",
- "type": "User",
- "user_view_type": "public",
- "site_admin": false,
- "contributions": 1,
- "additions": 0,
- "deletions": 0,
- "commits": 0
- },
- {
- "login": "IAFEnvoy",
- "id": 83523430,
- "node_id": "MDQ6VXNlcjgzNTIzNDMw",
- "avatar_url": "https://avatars.githubusercontent.com/u/83523430?v=4",
- "gravatar_id": "",
- "url": "https://api.github.com/users/IAFEnvoy",
- "html_url": "https://github.com/IAFEnvoy",
- "followers_url": "https://api.github.com/users/IAFEnvoy/followers",
- "following_url": "https://api.github.com/users/IAFEnvoy/following{/other_user}",
- "gists_url": "https://api.github.com/users/IAFEnvoy/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/IAFEnvoy/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/IAFEnvoy/subscriptions",
- "organizations_url": "https://api.github.com/users/IAFEnvoy/orgs",
- "repos_url": "https://api.github.com/users/IAFEnvoy/repos",
- "events_url": "https://api.github.com/users/IAFEnvoy/events{/privacy}",
- "received_events_url": "https://api.github.com/users/IAFEnvoy/received_events",
- "type": "User",
- "user_view_type": "public",
- "site_admin": false,
- "contributions": 1,
- "additions": 0,
- "deletions": 0,
- "commits": 0
- },
- {
- "login": "FTS427",
- "id": 122330825,
- "node_id": "U_kgDOB0qeyQ",
- "avatar_url": "https://avatars.githubusercontent.com/u/122330825?v=4",
- "gravatar_id": "",
- "url": "https://api.github.com/users/FTS427",
- "html_url": "https://github.com/FTS427",
- "followers_url": "https://api.github.com/users/FTS427/followers",
- "following_url": "https://api.github.com/users/FTS427/following{/other_user}",
- "gists_url": "https://api.github.com/users/FTS427/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/FTS427/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/FTS427/subscriptions",
- "organizations_url": "https://api.github.com/users/FTS427/orgs",
- "repos_url": "https://api.github.com/users/FTS427/repos",
- "events_url": "https://api.github.com/users/FTS427/events{/privacy}",
- "received_events_url": "https://api.github.com/users/FTS427/received_events",
- "type": "User",
- "user_view_type": "public",
- "site_admin": false,
- "contributions": 1,
- "additions": 0,
- "deletions": 0,
- "commits": 0
- },
- {
- "login": "ItsDApples",
- "id": 124063865,
- "node_id": "U_kgDOB2UQeQ",
- "avatar_url": "https://avatars.githubusercontent.com/u/124063865?v=4",
- "gravatar_id": "",
- "url": "https://api.github.com/users/ItsDApples",
- "html_url": "https://github.com/ItsDApples",
- "followers_url": "https://api.github.com/users/ItsDApples/followers",
- "following_url": "https://api.github.com/users/ItsDApples/following{/other_user}",
- "gists_url": "https://api.github.com/users/ItsDApples/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/ItsDApples/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/ItsDApples/subscriptions",
- "organizations_url": "https://api.github.com/users/ItsDApples/orgs",
- "repos_url": "https://api.github.com/users/ItsDApples/repos",
- "events_url": "https://api.github.com/users/ItsDApples/events{/privacy}",
- "received_events_url": "https://api.github.com/users/ItsDApples/received_events",
- "type": "User",
- "user_view_type": "public",
- "site_admin": false,
- "contributions": 1,
- "additions": 0,
- "deletions": 0,
- "commits": 0
- }
-]
+[]
\ No newline at end of file