├── Procfile
├── .replit
├── .gitignore
├── logo.png
├── settings.png
├── .prettierrc.yaml
├── src
├── interfaces
│ ├── gameState.ts
│ ├── lobbyInfo.ts
│ └── publicLobby.ts
├── ICEServer.ts
├── peerConfig.ts
└── index.ts
├── app.json
├── tsconfig.json
├── package.json
├── views
└── index.pug
├── Dockerfile
├── types
└── node-turn
│ └── index.d.ts
├── config
└── peerConfig.example.yml
├── TODO.md
├── README.md
├── LICENSE
├── public
└── styles.css
└── yarn.lock
/Procfile:
--------------------------------------------------------------------------------
1 | web: node dist/index.js
2 |
--------------------------------------------------------------------------------
/.replit:
--------------------------------------------------------------------------------
1 | language = "nodejs"
2 | run = "yarn start"
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | dist/
2 | node_modules/
3 | config/*
4 | !config/*.example.*
--------------------------------------------------------------------------------
/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OhMyGuus/BetterCrewLink-server/HEAD/logo.png
--------------------------------------------------------------------------------
/settings.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OhMyGuus/BetterCrewLink-server/HEAD/settings.png
--------------------------------------------------------------------------------
/.prettierrc.yaml:
--------------------------------------------------------------------------------
1 | trailingComma: 'es5'
2 | useTabs: true
3 | semi: true
4 | singleQuote: true
5 | printWidth: 120
6 |
--------------------------------------------------------------------------------
/src/interfaces/gameState.ts:
--------------------------------------------------------------------------------
1 | export enum GameState {
2 | LOBBY,
3 | TASKS,
4 | DISCUSSION,
5 | MENU,
6 | UNKNOWN,
7 | }
8 |
--------------------------------------------------------------------------------
/src/ICEServer.ts:
--------------------------------------------------------------------------------
1 | export interface ICEServer {
2 | urls: string | string[];
3 | username?: string;
4 | credential?: string;
5 | }
6 |
--------------------------------------------------------------------------------
/src/interfaces/lobbyInfo.ts:
--------------------------------------------------------------------------------
1 | export interface lobbyInfo {
2 | code: string;
3 | hostId: number;
4 | publicLobbyId: number;
5 | connectedCount: number;
6 | }
7 |
--------------------------------------------------------------------------------
/app.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "BetterCrewlink Server",
3 | "description": "Voice Relay server for CrewLink",
4 | "repository": "https://github.com/ottomated/CrewLink-server",
5 | "logo": "https://github.com/ottomated/CrewLink-server/raw/master/logo.png",
6 | "keywords": ["node", "among us"]
7 | }
8 |
--------------------------------------------------------------------------------
/tsconfig.json:
--------------------------------------------------------------------------------
1 | {
2 | "compilerOptions": {
3 | "module": "commonjs",
4 | "noImplicitAny": true,
5 | "sourceMap": true,
6 | "outDir": "dist",
7 | "baseUrl": ".",
8 | "esModuleInterop": true,
9 | "paths": {
10 | "*": [
11 | "node_modules/*"
12 | ]
13 | }
14 | },
15 | "include": [
16 | "src/**/*", "types/node-turn/index.d.ts"
17 | ]
18 | }
--------------------------------------------------------------------------------
/src/interfaces/publicLobby.ts:
--------------------------------------------------------------------------------
1 | import { GameState } from "./gameState";
2 |
3 | export interface PublicLobby {
4 | id: number;
5 | title: string;
6 | host: string;
7 | current_players: number;
8 | max_players: number;
9 | language: string;
10 | mods: string;
11 | isPublic: boolean;
12 | isPublic2?: boolean;
13 | server: string;
14 | gameState: GameState;
15 | stateTime: number;
16 | }
17 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "crewlink-server",
3 | "version": "1.0.1",
4 | "main": "index.js",
5 | "license": "GPL-3.0-or-later",
6 | "dependencies": {
7 | "dotenv": "^16.0.0",
8 | "express": "^4.17.3",
9 | "morgan": "^1.10.0",
10 | "node-turn": "0.0.6",
11 | "pug": "^3.0.2",
12 | "socket.io": "2.4.1",
13 | "tracer": "^1.1.5",
14 | "yaml": "^1.10.2"
15 | },
16 | "scripts": {
17 | "start": "yarn compile && node dist/index.js",
18 | "compile": "tsc",
19 | "heroku-postbuild": "yarn compile"
20 | },
21 | "devDependencies": {
22 | "@types/express": "^4.17.13",
23 | "@types/morgan": "^1.9.3",
24 | "@types/socket.io": "^2.1.13",
25 | "typescript": "^4.6.2"
26 | }
27 | }
28 |
--------------------------------------------------------------------------------
/views/index.pug:
--------------------------------------------------------------------------------
1 | doctype html
2 | head
3 | title BetterCrewLink Server
4 | link(rel="icon", href="https://github.com/OhMyGuus/CrewLink/raw/master/logo.png", type="image/x-icon")
5 | meta(property='og:title' content='BetterCrewLink Server')
6 | meta(property='og:description' content='Voice server for Among Us proximity voice chat')
7 | meta(property='og:image' content='https://github.com/OhMyGuus/CrewLink/raw/master/logo.png')
8 | link(rel='stylesheet', href='/public/styles.css')
9 |
10 |
11 | img(src="https://github.com/OhMyGuus/CrewLink/raw/master/logo.png")
12 | h1 BetterCrewlink Server
13 | #crewinfo
14 |
15 | p This is a BetterCrewLink Server running on:
16 | br
17 | b #{address}
18 | p There #{connectionCount === 1 ? 'is' : 'are'} currently #{connectionCount} connected user#{connectionCount === 1 ? '' : 's'}
19 |
20 | p
21 | a(href="https://github.com/OhMyGuus/BetterCrewLink/releases/latest", target="_blank")
22 | | To download BetterCrewLink
23 | | Click here
24 |
25 |
26 |
27 | #background-container
28 | #stars
29 | #stars2
30 | #stars3
31 |
--------------------------------------------------------------------------------
/Dockerfile:
--------------------------------------------------------------------------------
1 | #################################################
2 | # Common base image
3 | #################################################
4 | FROM node:14-alpine as common
5 | RUN mkdir /app && chown node:node /app
6 | WORKDIR /app
7 | USER node
8 |
9 | # Cache node_modules installation as they change
10 | # less than code over time.
11 | COPY package.json yarn.lock tsconfig.json ./
12 | RUN yarn install --production && \
13 | rm -rf ~/.cache /tmp/v8-compile-cache-1000
14 |
15 | #################################################
16 | # Compile stage
17 | #################################################
18 | FROM common as build
19 | RUN yarn install
20 | COPY src/ src/
21 | RUN yarn compile
22 |
23 | #################################################
24 | # Production stage
25 | #################################################
26 | FROM common
27 | COPY views/ views/
28 | # It's a toss up on which order offsets and src
29 | # should be. Offsets are gauranteed to change
30 | # over time, but src has more changes in `git log`.
31 | COPY public/ public/
32 | COPY --from=build /app/dist/ dist
33 | EXPOSE 9736
34 | CMD ["node", "dist/index.js"]
35 |
--------------------------------------------------------------------------------
/types/node-turn/index.d.ts:
--------------------------------------------------------------------------------
1 | declare module "node-turn" {
2 |
3 | interface TurnCredentials {
4 | [username: string]: string;
5 | }
6 |
7 | type DebugLevel = 'OFF' | 'FATAL' | 'ERROR' | 'WARN' | 'INFO' | 'DEBUG' | 'TRACE' | 'ALL';
8 |
9 | interface TurnOptions {
10 | listeningPort?: number;
11 | listeningIps?: string[];
12 | relayIps?: string[]
13 | externalIps?: string[]
14 | minPort?: number;
15 | maxPort?: number;
16 | authMech?: 'short-term' | 'long-term' | 'none';
17 | credentials?: TurnCredentials
18 | realm?: string;
19 | debugLevel?: DebugLevel;
20 | debug?: (debugLevel: DebugLevel, message: string) => void
21 | }
22 |
23 | class Turn {
24 | constructor (options: TurnOptions);
25 |
26 | /**
27 | * Start the server.
28 | */
29 | start (): void;
30 |
31 | /**
32 | * Stop the server.
33 | */
34 | stop (): void;
35 |
36 | /**
37 | * Add a user to credential mechanism.
38 | *
39 | * @param username
40 | * @param password
41 | */
42 | addUser (username: string, password: string): void;
43 |
44 | /**
45 | * Remove a user from credential mechanism.
46 | *
47 | * @param username
48 | */
49 | removeUser (username: string): void;
50 | }
51 |
52 | export = Turn;
53 | }
54 |
--------------------------------------------------------------------------------
/src/peerConfig.ts:
--------------------------------------------------------------------------------
1 | import YAML from 'yaml';
2 | import path from 'path';
3 | import fs from 'fs';
4 | import { ICEServer } from './ICEServer';
5 |
6 | const PEER_CONFIG_PATH = path.join(__dirname, '..', 'config', 'peerConfig.yml');
7 |
8 | interface IntegratedRelaySettings {
9 | enabled: boolean;
10 | listeningIps: string[];
11 | relayIps: string[];
12 | externalIps: string[];
13 | minPort: number;
14 | maxPort: number;
15 | listeningPort: number;
16 | debugLevel: 'OFF' | 'FATAL' | 'ERROR' | 'WARN' | 'INFO' | 'DEBUG' | 'TRACE' | 'ALL';
17 | defaultUsername: string;
18 | defaultPassword: string;
19 | }
20 |
21 | interface PeerConfig {
22 | forceRelayOnly: boolean;
23 | integratedRelay: IntegratedRelaySettings;
24 | iceServers?: ICEServer[];
25 | }
26 |
27 | const DEFAULT_PEER_CONFIG: PeerConfig = {
28 | forceRelayOnly: false,
29 | integratedRelay: {
30 | enabled: false,
31 | listeningIps: ['0.0.0.0'],
32 | relayIps: [],
33 | externalIps : null,
34 | minPort: 49152,
35 | maxPort: 65535,
36 | listeningPort: 3478,
37 | debugLevel: 'INFO',
38 | defaultUsername: 'M9DRVaByiujoXeuYAAAG',
39 | defaultPassword: 'TpHR9HQNZ8taxjb3',
40 | },
41 | iceServers: [
42 | {
43 | urls: 'stun:stun.l.google.com:19302',
44 | },
45 | ],
46 | };
47 |
48 | let peerConfig = DEFAULT_PEER_CONFIG;
49 | if (fs.existsSync(PEER_CONFIG_PATH)) {
50 | try {
51 | peerConfig = YAML.parse(fs.readFileSync(PEER_CONFIG_PATH).toString('utf8'));
52 | } catch (err) {
53 | console.error(`Unable to load peer config file. Make sure it is valid YAML.\n${err}`);
54 | }
55 | }
56 |
57 | export default peerConfig;
58 |
--------------------------------------------------------------------------------
/config/peerConfig.example.yml:
--------------------------------------------------------------------------------
1 | # IN ORDER TO USE THIS CONFIG FILE, RENAME IT AND REMOVE THE ".example" PART OF THE FILENAME!
2 | #
3 | # CrewLink peer to peer connection configuration.
4 | #
5 | # This file lets you modify how CrewLink connects players to each other.
6 | #
7 | # CrewLink uses peer to peer connections to establish voice calls between players. This means that every player has to
8 | # be able to connect to every other player some way or another in order for CrewLink to work. Below you can tweak the
9 | # mechanisms CrewLink uses to establish peer to peer connections.
10 |
11 | # Force CrewLink to only work through TURN servers. This is great if you want to protect the IP addresses of players
12 | # as no direct connection will be made. At least one TURN server is required if set to true.
13 | forceRelayOnly: false
14 |
15 | # Settings for the built-in TURN server.
16 | integratedRelay:
17 | enabled: true # Use the-built in relay server if you run a small-scale server for private use.
18 | #relayIps: ['192.0.2.1']
19 | #listeningIps: ['192.0.2.1']
20 | #externalIps: { 'default': '192.0.2.1' }
21 | minPort: 49152
22 | maxPort: 65535
23 | listeningPort: 3478
24 | # Can be one of: OFF, FATAL, ERROR, WARN, INFO, DEBUG, TRACE, ALL
25 | debugLevel: 'INFO'
26 | defaultUsername: 'M9DRVaByiujoXeuYAAAG'
27 | defaultPassword: 'TpHR9HQNZ8taxjb3'
28 | # If you run into performance issues, you may want to look into offloading relay duties to a native TURN/STUN
29 | # implementation. You can configure them below.
30 |
31 | # Custom TURN/STUN servers
32 | iceServers:
33 | # Google's STUN server is used by default
34 | - urls: 'stun:stun.l.google.com:19302'
35 | # - urls: 'turn:example.com'
36 | # username: 'TurnUsername'
37 | # credential: 'TurnPassword'
38 | # - urls: 'stun:example.com'
39 | # username: 'StunUsername'
40 | # credential: 'StunPassword'
--------------------------------------------------------------------------------
/TODO.md:
--------------------------------------------------------------------------------
1 | # TODO
2 |
3 | ## Server
4 |
5 | - [x] Migrate from socket.io to a raw websocket connection. Ensure it auto-reconnects.
6 | - [x] Move the default server to a better host.
7 | - [x] Rewrite all error messages to be even more human-readable.
8 | - [ ] Integrate an official server list into the client.
9 | - [x] Detect the reason *why* the server can't provide offsets: i.e. Among Us just updated, it's an old version of Among Us, the server hasn't updated, etc.
10 | - [x] Repl.it support.
11 |
12 | ### Stretch
13 |
14 | - [ ] Distribute the server load, with a centralized matchmaking database.
15 | - [ ] Re-write the server in Rust.
16 |
17 | ## Voice / WebRTC
18 |
19 | - [ ] Add a microphone mute button.
20 | - [x] Add a microphone boost slider.
21 | - [x] Add a speaker adjustment slider.
22 | - [x] Add individual adjustment sliders to each of the players.
23 | - [x] Add an OBS Overlay.
24 | - [x] Add an option in "Host Settings" for hearing through cams.
25 | - [x] Add an option in "Host Settings" to disable talking through walls.
26 | - [x] Handle all RTC errors to make it unnecessary to ever re-open an RTC connection.
27 | - [x] Detect reason for RTC failure: NAT type, etc?
28 | - [x] Re-enable all `navigator.getUserMedia` functions that can be re-enabled with autoGainControl kicking in.
29 | - [x] Move all player-to-player communication logic to RTC data channels, versus sending them over the websocket.
30 | - [ ] Change VAD to send the status towards the server.
31 |
32 | ### Stretch
33 |
34 | - [x] Implement an optional TURN server.
35 |
36 | ## Game Reader
37 |
38 | - [x] Fix unicode characters in player names
39 | - [ ] Indicate to the user when it can't read memory properly. Example: screen displays `MENU` while in lobby due to some misplaced offset.
40 | - [x] Don't use the Unity Analytics file to read the game version. Use either a hash of the GameAssembly dll, or DMA it from the process.
41 |
42 | ### Stretch
43 |
44 | - [ ] Move away from DMA and towards a different method. Probably network packet sniffing? Maybe DLL injection?
45 | - [x] Add Android Support.
46 | - [ ] Add iOS Support.
47 | - [x] Add Linux Support.
48 | - [ ] Support for other languages.
49 | - [ ] Customizable Window Size.
50 | - [ ] Support for Local games.
51 | - [ ] Ask to update and not auto update.
52 | - [x] Custom Color Support.
53 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | [![GPL-3.0 License][license-shield]][license-url] [![Docker Pulls][docker-shield]][docker-url] [![Run on Repl.it][replit-shield]][replit-url] [![Discord Server][discord-shield]][discord-url] [![Contributors][contributors-shield]][contributors-url]
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
BetterCrewLink Server
10 |
11 |
12 | Voice Relay server for BetterCrewLink.
13 |
14 | Report Bug
15 | ·
16 | Request Feature
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 | Notes:
25 |
26 | - This is an unofficial fork of CrewLink, for any problem, issue or suggestion you have with BetterCrewLink talk to us on our [Discord](https://discord.gg/qDqTzvj4SH), or [GitHub](https://github.com/OhMyGuus/BetterCrewLink-server/issues) or message me on Discord ([ThaGuus#2140](https://discordapp.com/users/508426414387757057)) do not report any problems to the official Discord or GitHub project of CrewLink as they will not support you.
27 |
28 | - I recommend you use my BetterCrewLink server: `https://bettercrewl.ink`, it is quite stable and most people are using it and I highly recommend it if you don't know a lot about how to host servers, but if you do and how to host anyway, feel free with the open source.
29 |
30 |
31 | ## Table of Contents
32 |
33 | * [About the Project](#about-the-project)
34 | * [Deploy to Heroku](#deploy-to-heroku)
35 | * [Deploy to Repl.it](#deploy-to-replit)
36 | * [Docker Quickstart](#docker-quickstart)
37 | * [Building the Docker Image](#building-the-docker-image)
38 | * [Manual Installation](#manual-installation)
39 | * [Prerequisites](#prerequisites)
40 | * [Installation](#installation)
41 | * [Customizing Peer to Peer Behavior](#customizing-peer-to-peer-behavior)
42 | * [Contributing](#contributing)
43 | * [Contributors](#contributors)
44 | * [License](#license)
45 |
46 |
47 | ## About The Project
48 |
49 | This is the relay server for CrewLink, an Among Us proximity voice chat program. I am currently hosting a server at `https://bettercrewl.ink`, but if you want to make your own server, feel free to open source the server.
50 |
51 | ## Environment Variables
52 |
53 | Optional environment variables:
54 |
55 | - `PORT`: Specifies the port that the server runs on. Defaults to `443` if `HTTPS` is enabled, and `9736` if not.
56 | - `HOSTNAME`: The hostname or IP of the server (a record without a proxy so if you have cloudflare make a extra dns record named for example direct.domain.com and disable the proxy for that record (this is for the turn server)
57 | - `NAME`: Specifies the server name
58 | - `HTTPS`: Enables https. You must place `privkey.pem` and `fullchain.pem` in your CWD.
59 | - `SSLPATH`: Specifies an alternate path to SSL certificates.
60 |
61 | ## Deploy to Heroku
62 |
63 | To get up and running quickly, you can deploy to Heroku clicking on the button below:
64 |
65 | [](https://heroku.com/deploy)
66 |
67 | This will deploy an instance of the BetterCrewLink-server. You can get the URL of your server by using the app name that you gave when you launched the app on Heroku and appending `.herokuapp.com`. You can also find the URL of your server by going to "Settings", scrolling down to "Domains". Using this URL, follow step 4 of the [installation instructions](https://github.com/OhMyGuus/BetterCrewLink-server#manual-installation) to connect your client to your server instance.
68 |
69 | ## Deploy to Repl.it
70 |
71 | Another way to host your server besides using Heroku it's the Repl.it that provide you to host servers completely free without having time per month, and you can deploy it by clicking on this button below:
72 |
73 | [![Run on Repl.it][replit-shield]][replit-url]
74 |
75 | This will deploy an instance of the BetterCrewLink-server. You can get the URL of your server by using the app name that you gave when you launched the app on Repl.it and appending `[your-username.repl.co]`. You can also find the URL of your server by going to "Web View". Using this URL, follow step 4 of the [installation instructions](https://github.com/OhMyGuus/BetterCrewLink-server#manual-installation) to connect your client to your server instance.
76 |
77 | ## Docker Quickstart
78 |
79 | Run the server with [Docker](https://docs.docker.com/get-docker/) by running the following command:
80 |
81 | ```
82 | docker run -d -p 9736:9736 ohmyguus/bettercrewlink-server:latest
83 | ```
84 |
85 | To change the external port the server uses, change the *first* instance of the port. For example, to use port 8123:
86 |
87 | ```
88 | docker run -d -p 8123:9736 ohmyguus/bettercrewlink-server:latest
89 | ```
90 |
91 | ### Building the Docker Image
92 |
93 | To build your own Docker image, do the following:
94 |
95 | 1. Clone the repo
96 | ```sh
97 | git clone https://github.com/OhMyGuus/BetterCrewLink-server.git
98 | cd BetterCrewLink-server
99 | ```
100 |
101 | 2. Run the Docker build command:
102 | ```sh
103 | docker build -t ohmyguus/bettercrewlink-server:build .
104 | ```
105 |
106 | ## Manual Installation
107 |
108 | ### Prerequisites
109 |
110 | This is an example of how to list things you need to use the software and how to install them.
111 | * [node.js](https://nodejs.org/en/download/)
112 | * yarn
113 | ```sh
114 | npm install yarn -g
115 | ```
116 |
117 | ### Installation
118 |
119 | 1. Clone the repo
120 | ```sh
121 | git clone https://github.com/OhMyGuus/BetterCrewLink-server.git
122 | cd BetterCrewLink-server
123 | ```
124 | 2. Install NPM packages
125 | ```sh
126 | yarn install
127 | ```
128 | 3. Compile and run the project
129 | ```JS
130 | yarn start
131 | ```
132 | 4. Copy your server URL into CrewLink settings. Make sure everyone in your lobby is using the same server.
133 | ### Customizing Peer to Peer Behavior
134 | By default CrewLink clients will attempt to establish connections directly to each other for sending voice and game
135 | state data. As a fallback mechanism, CrewLink-server ships with an integrated TURN server in the event clients cannot
136 | directly connect to each other. You may want to customize this behavior to, for example, exclusively use the TURN relay
137 | to protect player IP addresses. To do so, head into the ``config`` folder and rename ``peerConfig.example.yml`` to
138 | ``peerConfig.yml`` and make the desired changes.
139 |
140 |
141 | ## Contributing
142 |
143 | Any contributions you make are greatly appreciated.
144 |
145 | 1. [Fork the Project](https://github.com/OhMyGuus/BetterCrewLink-server/fork)
146 | 2. Create your Feature Branch (`git checkout -b feature/AmazingFeature`)
147 | 3. Commit your Changes (`git commit -m 'Add some AmazingFeature'`)
148 | 4. Push to the Branch (`git push origin feature/AmazingFeature`)
149 | 5. Open a Pull Request
150 |
151 | ### Contributors
152 |
153 | [![Contributors][contributors-shield]][contributors-url]
154 |
155 | * [OhMyGuus](https://github.com/OhMyGuus) for make various things for [BetterCrewLink](https://github.com/OhMyGuus/BetterCrewLink), example: NAT Fix, more overlays, support for Mobile and owner of project
156 | * [ottomated](https://github.com/ottomated) for make [CrewLink](https://github.com/ottomated/CrewLink)
157 | * [vrnagy](https://github.com/vrnagy) for make WebRTC reconnects automatically for [BetterCrewLink](https://github.com/OhMyGuus/BetterCrewLink)
158 | * [TheGreatMcPain](https://github.com/TheGreatMcPain) & [Donokami](https://github.com/Donokami) for make support for Linux
159 | * [squarebracket](https://github.com/squarebracket) for make support overlay for Linux
160 | * [JKohlman](https://github.com/JKohlman) for make various things for [BetterCrewLink](https://github.com/OhMyGuus/BetterCrewLink), example: push to mute, visual changes and making Multi Stage builds for [BetterCrewLink Server](https://github.com/OhMyGuus/BetterCrewLink-server)
161 | * [Diemo-zz](https://github.com/Diemo-zz) for make the default Voice Server for: `https://bettercrewl.ink`
162 | * [KadenBiel](https://github.com/KadenBiel) for make various things for [BetterCrewLink Mobile](https://github.com/OhMyGuus/BetterCrewlink-mobile), example: Better UI, Settings page
163 | * [adofou](https://github.com/adofou) for make new parameters for node-turn server for [BetterCrewLink-Server](https://github.com/OhMyGuus/BetterCrewLink-server)
164 | * [Kore-Development](https://github.com/Kore-Development) for make support for Repl.it and gitignore changes for [BetterCrewLink-Server](https://github.com/OhMyGuus/BetterCrewLink-server)
165 | * [cybershard](https://github.com/cybershard) & [edqx](https://github.com/edqx) for make Only hear people in vision, Walls block voice and Hear through cameras
166 | * [electron-overlay-window](https://github.com/SnosMe/electron-overlay-window) for make it easier to do overlays
167 | * [node-keyboard-watcher](https://github.com/OhMyGuus/node-keyboard-watcher) for make it easy to push to talk and push to mute
168 | * [MatadorProBr](https://github.com/MatadorProBr) for make this list of Contribuators, better README.md, wiki
169 |
170 | A big thank you to all those people who contributed and still contribute to this project to stay alive, thank you for being part of this BetterCrewLink community!
171 |
172 | ## License
173 |
174 | Distributed under the GNU General Public License v3.0. See `LICENSE` for more information.
175 |
176 | [license-shield]: https://img.shields.io/github/license/OhMyGuus/BetterCrewLink-server?label=License
177 | [license-url]: https://github.com/OhMyGuus/BetterCrewLink-server/blob/master/LICENSE
178 | [docker-shield]: https://img.shields.io/docker/pulls/ohmyguus/bettercrewlink-server?label=Docker%20Pulls
179 | [docker-url]: https://hub.docker.com/repository/docker/ohmyguus/bettercrewlink-server
180 | [replit-shield]: https://repl.it/badge/github/OhMyGuus/BetterCrewLink-server
181 | [replit-url]: https://repl.it/github/OhMyGuus/BetterCrewLink-server
182 | [discord-shield]: https://img.shields.io/discord/791516611143270410?color=cornflowerblue&label=Discord&logo=Discord&logoColor=white
183 | [discord-url]: https://discord.gg/qDqTzvj4SH
184 | [contributors-shield]: https://img.shields.io/github/contributors/OhMyGuus/BetterCrewLink-server?label=Contributors
185 | [contributors-url]: https://github.com/OhMyGuus/BetterCrewLink-server/graphs/contributors
186 |
--------------------------------------------------------------------------------
/src/index.ts:
--------------------------------------------------------------------------------
1 | import dotenv from 'dotenv';
2 | dotenv.config();
3 | import express from 'express';
4 | import { Server } from 'http';
5 | import { Server as HttpsServer } from 'https';
6 | import { readFileSync } from 'fs';
7 | import { join } from 'path';
8 | import socketIO from 'socket.io';
9 | import Tracer from 'tracer';
10 | import morgan from 'morgan';
11 | import peerConfig from './peerConfig';
12 | import { ICEServer } from './ICEServer';
13 | import { PublicLobby } from './interfaces/publicLobby';
14 | import { GameState } from './interfaces/gameState';
15 | import { lobbyInfo } from './interfaces/lobbyInfo';
16 | let TurnServer = require('node-turn');
17 |
18 | const httpsEnabled = !!process.env.HTTPS;
19 |
20 | const port = process.env.PORT || (httpsEnabled ? '443' : '9736');
21 |
22 | const sslCertificatePath = process.env.SSLPATH || process.cwd();
23 |
24 | const logger = Tracer.colorConsole({
25 | format: '{{timestamp}} <{{title}}> {{message}}',
26 | });
27 |
28 | const turnLogger = Tracer.colorConsole({
29 | format: '{{timestamp}} <{{title}}> {{message}}',
30 | level: peerConfig.integratedRelay.debugLevel.toLowerCase(),
31 | });
32 |
33 | const app = express();
34 | let server: HttpsServer | Server;
35 | if (httpsEnabled) {
36 | server = new HttpsServer(
37 | {
38 | key: readFileSync(join(sslCertificatePath, 'privkey.pem')),
39 | cert: readFileSync(join(sslCertificatePath, 'fullchain.pem')),
40 | },
41 | app
42 | );
43 | } else {
44 | server = new Server(app);
45 | }
46 |
47 | let turnServer: any | null = null;
48 | if (peerConfig.integratedRelay.enabled) {
49 | turnServer = new TurnServer({
50 | listeningIps: peerConfig.integratedRelay.listeningIps,
51 | relayIps: peerConfig.integratedRelay.relayIps,
52 | externalIps: peerConfig.integratedRelay.externalIps,
53 | minPort: peerConfig.integratedRelay.minPort,
54 | maxPort: peerConfig.integratedRelay.maxPort,
55 | listeningPort: peerConfig.integratedRelay.listeningPort,
56 | authMech: 'long-term',
57 | debugLevel: peerConfig.integratedRelay.debugLevel,
58 | realm: 'crewlink',
59 | debug: (level: string, message: string) => {
60 | turnLogger[level.toLowerCase()](message);
61 | },
62 | });
63 |
64 | turnServer.addUser(peerConfig.integratedRelay.defaultUsername, peerConfig.integratedRelay.defaultPassword);
65 |
66 | turnServer.start();
67 | }
68 |
69 | const io = socketIO(server);
70 | const clients = new Map();
71 | const publicLobbies = new Map();
72 | const lobbyCodes = new Map();
73 | const allLobbies = new Map();
74 | let lobbyCount = 0;
75 |
76 | function removePublicLobby(c: string) {
77 | if (publicLobbies.has(c)) {
78 | let pid = publicLobbies.get(c).id;
79 | io.sockets.in('lobbybrowser').emit('remove_lobby', pid);
80 | lobbyCodes.delete(pid);
81 | publicLobbies.delete(c);
82 | }
83 | }
84 | interface Client {
85 | playerId: number;
86 | clientId: number;
87 | }
88 |
89 | interface Signal {
90 | data: string;
91 | to: string;
92 | }
93 |
94 | interface ClientPeerConfig {
95 | forceRelayOnly: boolean;
96 | iceServers: ICEServer[];
97 | }
98 |
99 | app.enable('trust proxy');
100 | app.set('views', join(__dirname, '../views'));
101 | app.use('/public', express.static(join(__dirname, '../public')));
102 | app.set('view engine', 'pug');
103 | app.use(morgan('combined'));
104 |
105 | let connectionCount = 0;
106 |
107 | let hostname = process.env.HOSTNAME;
108 | if (!hostname && peerConfig.integratedRelay.enabled) {
109 | logger.error('You must set the HOSTNAME environment variable to use the TURN server.');
110 | process.exit(1);
111 | }
112 |
113 | app.get('/', (req, res) => {
114 | let address = req.protocol + '://' + req.hostname;
115 | res.render('index', { connectionCount, address, lobbiesCount: allLobbies.size });
116 | });
117 |
118 | app.get('/health', (req, res) => {
119 | let address = req.protocol + '://' + req.hostname;
120 | res.json({
121 | uptime: process.uptime(),
122 | connectionCount,
123 | lobbiesCount: allLobbies.size,
124 | address,
125 | name: process.env.NAME,
126 | });
127 | });
128 |
129 | app.get('/lobbies', (req, res) => {
130 | res.json(Array.from(publicLobbies.values()));
131 | });
132 |
133 | const leaveroom = (socket: socketIO.Socket, code: string) => {
134 | if (!code) {
135 | return;
136 | }
137 | if (code && (code.length === 6 || code.length === 4)) socket.leave(code);
138 |
139 | if ((io.sockets.adapter.rooms[code]?.length ?? 0) <= 0) {
140 | if (allLobbies.has(code)) {
141 | allLobbies.delete(code);
142 | }
143 | removePublicLobby(code);
144 | }
145 | };
146 | io.on('connection', (socket: socketIO.Socket) => {
147 | connectionCount++;
148 | logger.info('Total connected: %d in %d lobbies', connectionCount, allLobbies.size);
149 | let code: string | null = null;
150 |
151 | const clientPeerConfig: ClientPeerConfig = {
152 | forceRelayOnly: peerConfig.forceRelayOnly,
153 | iceServers: peerConfig.iceServers ? [...peerConfig.iceServers] : [],
154 | };
155 |
156 | if (turnServer) {
157 | // const turnCredential = crypto.randomBytes(32).toString('base64');
158 | // turnServer.addUser(socket.id, turnCredential);
159 | // logger.info(`Adding socket "${socket.id}" as TURN user.`);
160 | clientPeerConfig.iceServers.push({
161 | urls: `turn:${hostname}:${peerConfig.integratedRelay.listeningPort}`,
162 | username: peerConfig.integratedRelay.defaultUsername,
163 | credential: peerConfig.integratedRelay.defaultPassword,
164 | });
165 | }
166 |
167 | socket.emit('clientPeerConfig', clientPeerConfig);
168 |
169 | socket.on('join', (c: string, id: number, clientId: number, isHost?: boolean) => {
170 | if (
171 | typeof c !== 'string' ||
172 | typeof id !== 'number' ||
173 | typeof clientId !== 'number'
174 | ) {
175 | socket.disconnect();
176 | logger.error(`Socket %s sent invalid join command: %s %d %d`, socket.id, c, id, clientId);
177 | return;
178 | }
179 |
180 | let otherClients: any = {};
181 | if (io.sockets.adapter.rooms[c]) {
182 | let socketsInLobby = Object.keys(io.sockets.adapter.rooms[c].sockets);
183 | for (let s of socketsInLobby) {
184 | if (s !== socket.id) otherClients[s] = clients.get(s);
185 | }
186 | }
187 |
188 | if (!allLobbies.has(c)) {
189 | allLobbies.set(c, { code: c, hostId: isHost ? clientId : -1, publicLobbyId: -1, connectedCount: 1 });
190 | } else {
191 | allLobbies.get(c).connectedCount++;
192 | if (isHost) {
193 | allLobbies.get(c).hostId = clientId;
194 | socket.to(code).broadcast.emit('setHost', clientId);
195 | }
196 | socket.emit('setHost', allLobbies.get(c).hostId);
197 | }
198 |
199 | if (code != c) leaveroom(socket, code);
200 | code = c;
201 | socket.join(code);
202 | socket.to(code).broadcast.emit('join', socket.id, {
203 | playerId: id,
204 | clientId: clientId,
205 | });
206 | socket.emit('setClients', otherClients);
207 | });
208 |
209 | socket.on('setHost', (c: string, clientId: number) => {
210 | if (code === c) {
211 | if (allLobbies.has(c)) {
212 | allLobbies.get(c).hostId = clientId;
213 | socket.to(code).broadcast.emit('setHost', clientId);
214 | }
215 | }
216 | });
217 |
218 | socket.on('id', (id: number, clientId: number) => {
219 | if (typeof id !== 'number' || typeof clientId !== 'number') {
220 | socket.disconnect();
221 | logger.error(`Socket %s sent invalid id command: %d %d`, socket.id, id, clientId);
222 | return;
223 | }
224 | let client = clients.get(socket.id);
225 | if (client != null && client.clientId != null && client.clientId !== clientId) {
226 | /// socket.disconnect();
227 | logger.error(
228 | `Socket ${socket.id}->${client.clientId}->${clientId}->${id} sent invalid id command, attempted spoofing another client`
229 | );
230 | // return;
231 | }
232 | client = {
233 | playerId: id,
234 | clientId: clientId,
235 | };
236 | clients.set(socket.id, client);
237 | socket.to(code).broadcast.emit('setClient', socket.id, client);
238 | });
239 |
240 | socket.on('leave', () => {
241 | if (code) {
242 | leaveroom(socket, code);
243 | clients.delete(socket.id); // @ts-ignore
244 | }
245 | });
246 |
247 | socket.on('VAD', (activity: boolean) => {
248 | let client = clients.get(socket.id);
249 | if (code && client) {
250 | socket.to(code).broadcast.emit('VAD', {
251 | activity,
252 | client,
253 | socketId: socket.id,
254 | });
255 | }
256 | });
257 |
258 | socket.on('join_lobby', (id: number, callbackFn) => {
259 | //ban check etc...
260 | if (lobbyCodes.has(id) && publicLobbies.has(lobbyCodes.get(id))) {
261 | let lobbyCode = lobbyCodes.get(id);
262 | let publicLobby = publicLobbies.get(lobbyCode);
263 | if (publicLobby.isPublic && publicLobby.gameState === GameState.LOBBY) {
264 | callbackFn(0, lobbyCode, publicLobby.server, publicLobby);
265 | return;
266 | } else {
267 | callbackFn(1, 'Lobby is not public anymore');
268 | }
269 | }
270 | callbackFn(1, 'Lobby not found :C');
271 | });
272 |
273 | socket.on('lobby', (c: string, publicLobby: PublicLobby) => {
274 | if (code != c) {
275 | logger.error(`Got request to host lobby while not in it %s`, c, code);
276 | return;
277 | }
278 | if (!publicLobby.isPublic && !publicLobby.isPublic2) {
279 | removePublicLobby(c);
280 | } else {
281 | const publobby = publicLobbies.has(c) ? publicLobbies.get(c) : undefined;
282 | const id = publobby ? publobby.id : lobbyCount++;
283 | const stateTime =
284 | publobby &&
285 | ((publobby.gameState === GameState.LOBBY && publicLobby.gameState === GameState.LOBBY) ||
286 | (publobby.gameState !== GameState.LOBBY && publicLobby.gameState !== GameState.LOBBY))
287 | ? publobby.stateTime
288 | : Date.now();
289 | let lobby: PublicLobby = {
290 | id,
291 | title: publicLobby.title?.substring(0, 20) ?? 'ERROR',
292 | host: publicLobby.host?.substring(0, 10) ?? '',
293 | current_players: publicLobby.current_players ?? 0,
294 | max_players: publicLobby.max_players ?? 0,
295 | language: publicLobby.language?.substring(0, 5) ?? '',
296 | mods: publicLobby.mods?.substring(0, 20)?.toUpperCase() ?? '',
297 | isPublic: publicLobby.isPublic || publicLobby.isPublic2,
298 | server: publicLobby.server,
299 | gameState: publicLobby.gameState,
300 | stateTime,
301 | };
302 | lobbyCodes.set(id, c);
303 | publicLobbies.set(c, lobby);
304 | io.sockets.in('lobbybrowser').emit('update_lobby', lobby);
305 | }
306 | });
307 |
308 | socket.on('remove_lobby', (c: string) => {
309 | if (code != c) {
310 | logger.error(`Got request to host lobby while not in it %s`, c, code);
311 | return;
312 | }
313 | removePublicLobby(c);
314 | });
315 |
316 | socket.on('signal', (signal: Signal) => {
317 | if (typeof signal !== 'object' || !signal.data || !signal.to || typeof signal.to !== 'string') {
318 | socket.disconnect();
319 | logger.error(`Socket %s sent invalid signal command: %j`, socket.id, signal);
320 | return;
321 | }
322 | const { to, data } = signal;
323 | io.to(to).emit('signal', {
324 | data,
325 | from: socket.id,
326 | });
327 | });
328 |
329 | socket.on('lobbybrowser', (open) => {
330 | if (!open) {
331 | socket.leave('lobbybrowser');
332 | } else {
333 | socket.join('lobbybrowser');
334 | io.sockets.in('lobbybrowser').emit('new_lobbies', Array.from(publicLobbies.values()));
335 | }
336 | });
337 |
338 | socket.on('disconnect', () => {
339 | leaveroom(socket, code);
340 | clients.delete(socket.id);
341 | connectionCount--;
342 | logger.info('Total connected: %d in %d lobbies', connectionCount, allLobbies.size);
343 |
344 | // if (turnServer) {
345 | // logger.info(`Removing socket "${socket.id}" as TURN user.`);
346 | // turnServer.removeUser(socket.id);
347 | // }
348 | });
349 | });
350 |
351 | server.listen(port);
352 | logger.info('BetterCrewLink Server started: 127.0.0.1:%s', port);
353 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | GNU GENERAL PUBLIC LICENSE
2 | Version 3, 29 June 2007
3 |
4 | Copyright (C) 2007 Free Software Foundation, Inc.
5 | Everyone is permitted to copy and distribute verbatim copies
6 | of this license document, but changing it is not allowed.
7 |
8 | Preamble
9 |
10 | The GNU General Public License is a free, copyleft license for
11 | software and other kinds of works.
12 |
13 | The licenses for most software and other practical works are designed
14 | to take away your freedom to share and change the works. By contrast,
15 | the GNU General Public License is intended to guarantee your freedom to
16 | share and change all versions of a program--to make sure it remains free
17 | software for all its users. We, the Free Software Foundation, use the
18 | GNU General Public License for most of our software; it applies also to
19 | any other work released this way by its authors. You can apply it to
20 | your programs, too.
21 |
22 | When we speak of free software, we are referring to freedom, not
23 | price. Our General Public Licenses are designed to make sure that you
24 | have the freedom to distribute copies of free software (and charge for
25 | them if you wish), that you receive source code or can get it if you
26 | want it, that you can change the software or use pieces of it in new
27 | free programs, and that you know you can do these things.
28 |
29 | To protect your rights, we need to prevent others from denying you
30 | these rights or asking you to surrender the rights. Therefore, you have
31 | certain responsibilities if you distribute copies of the software, or if
32 | you modify it: responsibilities to respect the freedom of others.
33 |
34 | For example, if you distribute copies of such a program, whether
35 | gratis or for a fee, you must pass on to the recipients the same
36 | freedoms that you received. You must make sure that they, too, receive
37 | or can get the source code. And you must show them these terms so they
38 | know their rights.
39 |
40 | Developers that use the GNU GPL protect your rights with two steps:
41 | (1) assert copyright on the software, and (2) offer you this License
42 | giving you legal permission to copy, distribute and/or modify it.
43 |
44 | For the developers' and authors' protection, the GPL clearly explains
45 | that there is no warranty for this free software. For both users' and
46 | authors' sake, the GPL requires that modified versions be marked as
47 | changed, so that their problems will not be attributed erroneously to
48 | authors of previous versions.
49 |
50 | Some devices are designed to deny users access to install or run
51 | modified versions of the software inside them, although the manufacturer
52 | can do so. This is fundamentally incompatible with the aim of
53 | protecting users' freedom to change the software. The systematic
54 | pattern of such abuse occurs in the area of products for individuals to
55 | use, which is precisely where it is most unacceptable. Therefore, we
56 | have designed this version of the GPL to prohibit the practice for those
57 | products. If such problems arise substantially in other domains, we
58 | stand ready to extend this provision to those domains in future versions
59 | of the GPL, as needed to protect the freedom of users.
60 |
61 | Finally, every program is threatened constantly by software patents.
62 | States should not allow patents to restrict development and use of
63 | software on general-purpose computers, but in those that do, we wish to
64 | avoid the special danger that patents applied to a free program could
65 | make it effectively proprietary. To prevent this, the GPL assures that
66 | patents cannot be used to render the program non-free.
67 |
68 | The precise terms and conditions for copying, distribution and
69 | modification follow.
70 |
71 | TERMS AND CONDITIONS
72 |
73 | 0. Definitions.
74 |
75 | "This License" refers to version 3 of the GNU General Public License.
76 |
77 | "Copyright" also means copyright-like laws that apply to other kinds of
78 | works, such as semiconductor masks.
79 |
80 | "The Program" refers to any copyrightable work licensed under this
81 | License. Each licensee is addressed as "you". "Licensees" and
82 | "recipients" may be individuals or organizations.
83 |
84 | To "modify" a work means to copy from or adapt all or part of the work
85 | in a fashion requiring copyright permission, other than the making of an
86 | exact copy. The resulting work is called a "modified version" of the
87 | earlier work or a work "based on" the earlier work.
88 |
89 | A "covered work" means either the unmodified Program or a work based
90 | on the Program.
91 |
92 | To "propagate" a work means to do anything with it that, without
93 | permission, would make you directly or secondarily liable for
94 | infringement under applicable copyright law, except executing it on a
95 | computer or modifying a private copy. Propagation includes copying,
96 | distribution (with or without modification), making available to the
97 | public, and in some countries other activities as well.
98 |
99 | To "convey" a work means any kind of propagation that enables other
100 | parties to make or receive copies. Mere interaction with a user through
101 | a computer network, with no transfer of a copy, is not conveying.
102 |
103 | An interactive user interface displays "Appropriate Legal Notices"
104 | to the extent that it includes a convenient and prominently visible
105 | feature that (1) displays an appropriate copyright notice, and (2)
106 | tells the user that there is no warranty for the work (except to the
107 | extent that warranties are provided), that licensees may convey the
108 | work under this License, and how to view a copy of this License. If
109 | the interface presents a list of user commands or options, such as a
110 | menu, a prominent item in the list meets this criterion.
111 |
112 | 1. Source Code.
113 |
114 | The "source code" for a work means the preferred form of the work
115 | for making modifications to it. "Object code" means any non-source
116 | form of a work.
117 |
118 | A "Standard Interface" means an interface that either is an official
119 | standard defined by a recognized standards body, or, in the case of
120 | interfaces specified for a particular programming language, one that
121 | is widely used among developers working in that language.
122 |
123 | The "System Libraries" of an executable work include anything, other
124 | than the work as a whole, that (a) is included in the normal form of
125 | packaging a Major Component, but which is not part of that Major
126 | Component, and (b) serves only to enable use of the work with that
127 | Major Component, or to implement a Standard Interface for which an
128 | implementation is available to the public in source code form. A
129 | "Major Component", in this context, means a major essential component
130 | (kernel, window system, and so on) of the specific operating system
131 | (if any) on which the executable work runs, or a compiler used to
132 | produce the work, or an object code interpreter used to run it.
133 |
134 | The "Corresponding Source" for a work in object code form means all
135 | the source code needed to generate, install, and (for an executable
136 | work) run the object code and to modify the work, including scripts to
137 | control those activities. However, it does not include the work's
138 | System Libraries, or general-purpose tools or generally available free
139 | programs which are used unmodified in performing those activities but
140 | which are not part of the work. For example, Corresponding Source
141 | includes interface definition files associated with source files for
142 | the work, and the source code for shared libraries and dynamically
143 | linked subprograms that the work is specifically designed to require,
144 | such as by intimate data communication or control flow between those
145 | subprograms and other parts of the work.
146 |
147 | The Corresponding Source need not include anything that users
148 | can regenerate automatically from other parts of the Corresponding
149 | Source.
150 |
151 | The Corresponding Source for a work in source code form is that
152 | same work.
153 |
154 | 2. Basic Permissions.
155 |
156 | All rights granted under this License are granted for the term of
157 | copyright on the Program, and are irrevocable provided the stated
158 | conditions are met. This License explicitly affirms your unlimited
159 | permission to run the unmodified Program. The output from running a
160 | covered work is covered by this License only if the output, given its
161 | content, constitutes a covered work. This License acknowledges your
162 | rights of fair use or other equivalent, as provided by copyright law.
163 |
164 | You may make, run and propagate covered works that you do not
165 | convey, without conditions so long as your license otherwise remains
166 | in force. You may convey covered works to others for the sole purpose
167 | of having them make modifications exclusively for you, or provide you
168 | with facilities for running those works, provided that you comply with
169 | the terms of this License in conveying all material for which you do
170 | not control copyright. Those thus making or running the covered works
171 | for you must do so exclusively on your behalf, under your direction
172 | and control, on terms that prohibit them from making any copies of
173 | your copyrighted material outside their relationship with you.
174 |
175 | Conveying under any other circumstances is permitted solely under
176 | the conditions stated below. Sublicensing is not allowed; section 10
177 | makes it unnecessary.
178 |
179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law.
180 |
181 | No covered work shall be deemed part of an effective technological
182 | measure under any applicable law fulfilling obligations under article
183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or
184 | similar laws prohibiting or restricting circumvention of such
185 | measures.
186 |
187 | When you convey a covered work, you waive any legal power to forbid
188 | circumvention of technological measures to the extent such circumvention
189 | is effected by exercising rights under this License with respect to
190 | the covered work, and you disclaim any intention to limit operation or
191 | modification of the work as a means of enforcing, against the work's
192 | users, your or third parties' legal rights to forbid circumvention of
193 | technological measures.
194 |
195 | 4. Conveying Verbatim Copies.
196 |
197 | You may convey verbatim copies of the Program's source code as you
198 | receive it, in any medium, provided that you conspicuously and
199 | appropriately publish on each copy an appropriate copyright notice;
200 | keep intact all notices stating that this License and any
201 | non-permissive terms added in accord with section 7 apply to the code;
202 | keep intact all notices of the absence of any warranty; and give all
203 | recipients a copy of this License along with the Program.
204 |
205 | You may charge any price or no price for each copy that you convey,
206 | and you may offer support or warranty protection for a fee.
207 |
208 | 5. Conveying Modified Source Versions.
209 |
210 | You may convey a work based on the Program, or the modifications to
211 | produce it from the Program, in the form of source code under the
212 | terms of section 4, provided that you also meet all of these conditions:
213 |
214 | a) The work must carry prominent notices stating that you modified
215 | it, and giving a relevant date.
216 |
217 | b) The work must carry prominent notices stating that it is
218 | released under this License and any conditions added under section
219 | 7. This requirement modifies the requirement in section 4 to
220 | "keep intact all notices".
221 |
222 | c) You must license the entire work, as a whole, under this
223 | License to anyone who comes into possession of a copy. This
224 | License will therefore apply, along with any applicable section 7
225 | additional terms, to the whole of the work, and all its parts,
226 | regardless of how they are packaged. This License gives no
227 | permission to license the work in any other way, but it does not
228 | invalidate such permission if you have separately received it.
229 |
230 | d) If the work has interactive user interfaces, each must display
231 | Appropriate Legal Notices; however, if the Program has interactive
232 | interfaces that do not display Appropriate Legal Notices, your
233 | work need not make them do so.
234 |
235 | A compilation of a covered work with other separate and independent
236 | works, which are not by their nature extensions of the covered work,
237 | and which are not combined with it such as to form a larger program,
238 | in or on a volume of a storage or distribution medium, is called an
239 | "aggregate" if the compilation and its resulting copyright are not
240 | used to limit the access or legal rights of the compilation's users
241 | beyond what the individual works permit. Inclusion of a covered work
242 | in an aggregate does not cause this License to apply to the other
243 | parts of the aggregate.
244 |
245 | 6. Conveying Non-Source Forms.
246 |
247 | You may convey a covered work in object code form under the terms
248 | of sections 4 and 5, provided that you also convey the
249 | machine-readable Corresponding Source under the terms of this License,
250 | in one of these ways:
251 |
252 | a) Convey the object code in, or embodied in, a physical product
253 | (including a physical distribution medium), accompanied by the
254 | Corresponding Source fixed on a durable physical medium
255 | customarily used for software interchange.
256 |
257 | b) Convey the object code in, or embodied in, a physical product
258 | (including a physical distribution medium), accompanied by a
259 | written offer, valid for at least three years and valid for as
260 | long as you offer spare parts or customer support for that product
261 | model, to give anyone who possesses the object code either (1) a
262 | copy of the Corresponding Source for all the software in the
263 | product that is covered by this License, on a durable physical
264 | medium customarily used for software interchange, for a price no
265 | more than your reasonable cost of physically performing this
266 | conveying of source, or (2) access to copy the
267 | Corresponding Source from a network server at no charge.
268 |
269 | c) Convey individual copies of the object code with a copy of the
270 | written offer to provide the Corresponding Source. This
271 | alternative is allowed only occasionally and noncommercially, and
272 | only if you received the object code with such an offer, in accord
273 | with subsection 6b.
274 |
275 | d) Convey the object code by offering access from a designated
276 | place (gratis or for a charge), and offer equivalent access to the
277 | Corresponding Source in the same way through the same place at no
278 | further charge. You need not require recipients to copy the
279 | Corresponding Source along with the object code. If the place to
280 | copy the object code is a network server, the Corresponding Source
281 | may be on a different server (operated by you or a third party)
282 | that supports equivalent copying facilities, provided you maintain
283 | clear directions next to the object code saying where to find the
284 | Corresponding Source. Regardless of what server hosts the
285 | Corresponding Source, you remain obligated to ensure that it is
286 | available for as long as needed to satisfy these requirements.
287 |
288 | e) Convey the object code using peer-to-peer transmission, provided
289 | you inform other peers where the object code and Corresponding
290 | Source of the work are being offered to the general public at no
291 | charge under subsection 6d.
292 |
293 | A separable portion of the object code, whose source code is excluded
294 | from the Corresponding Source as a System Library, need not be
295 | included in conveying the object code work.
296 |
297 | A "User Product" is either (1) a "consumer product", which means any
298 | tangible personal property which is normally used for personal, family,
299 | or household purposes, or (2) anything designed or sold for incorporation
300 | into a dwelling. In determining whether a product is a consumer product,
301 | doubtful cases shall be resolved in favor of coverage. For a particular
302 | product received by a particular user, "normally used" refers to a
303 | typical or common use of that class of product, regardless of the status
304 | of the particular user or of the way in which the particular user
305 | actually uses, or expects or is expected to use, the product. A product
306 | is a consumer product regardless of whether the product has substantial
307 | commercial, industrial or non-consumer uses, unless such uses represent
308 | the only significant mode of use of the product.
309 |
310 | "Installation Information" for a User Product means any methods,
311 | procedures, authorization keys, or other information required to install
312 | and execute modified versions of a covered work in that User Product from
313 | a modified version of its Corresponding Source. The information must
314 | suffice to ensure that the continued functioning of the modified object
315 | code is in no case prevented or interfered with solely because
316 | modification has been made.
317 |
318 | If you convey an object code work under this section in, or with, or
319 | specifically for use in, a User Product, and the conveying occurs as
320 | part of a transaction in which the right of possession and use of the
321 | User Product is transferred to the recipient in perpetuity or for a
322 | fixed term (regardless of how the transaction is characterized), the
323 | Corresponding Source conveyed under this section must be accompanied
324 | by the Installation Information. But this requirement does not apply
325 | if neither you nor any third party retains the ability to install
326 | modified object code on the User Product (for example, the work has
327 | been installed in ROM).
328 |
329 | The requirement to provide Installation Information does not include a
330 | requirement to continue to provide support service, warranty, or updates
331 | for a work that has been modified or installed by the recipient, or for
332 | the User Product in which it has been modified or installed. Access to a
333 | network may be denied when the modification itself materially and
334 | adversely affects the operation of the network or violates the rules and
335 | protocols for communication across the network.
336 |
337 | Corresponding Source conveyed, and Installation Information provided,
338 | in accord with this section must be in a format that is publicly
339 | documented (and with an implementation available to the public in
340 | source code form), and must require no special password or key for
341 | unpacking, reading or copying.
342 |
343 | 7. Additional Terms.
344 |
345 | "Additional permissions" are terms that supplement the terms of this
346 | License by making exceptions from one or more of its conditions.
347 | Additional permissions that are applicable to the entire Program shall
348 | be treated as though they were included in this License, to the extent
349 | that they are valid under applicable law. If additional permissions
350 | apply only to part of the Program, that part may be used separately
351 | under those permissions, but the entire Program remains governed by
352 | this License without regard to the additional permissions.
353 |
354 | When you convey a copy of a covered work, you may at your option
355 | remove any additional permissions from that copy, or from any part of
356 | it. (Additional permissions may be written to require their own
357 | removal in certain cases when you modify the work.) You may place
358 | additional permissions on material, added by you to a covered work,
359 | for which you have or can give appropriate copyright permission.
360 |
361 | Notwithstanding any other provision of this License, for material you
362 | add to a covered work, you may (if authorized by the copyright holders of
363 | that material) supplement the terms of this License with terms:
364 |
365 | a) Disclaiming warranty or limiting liability differently from the
366 | terms of sections 15 and 16 of this License; or
367 |
368 | b) Requiring preservation of specified reasonable legal notices or
369 | author attributions in that material or in the Appropriate Legal
370 | Notices displayed by works containing it; or
371 |
372 | c) Prohibiting misrepresentation of the origin of that material, or
373 | requiring that modified versions of such material be marked in
374 | reasonable ways as different from the original version; or
375 |
376 | d) Limiting the use for publicity purposes of names of licensors or
377 | authors of the material; or
378 |
379 | e) Declining to grant rights under trademark law for use of some
380 | trade names, trademarks, or service marks; or
381 |
382 | f) Requiring indemnification of licensors and authors of that
383 | material by anyone who conveys the material (or modified versions of
384 | it) with contractual assumptions of liability to the recipient, for
385 | any liability that these contractual assumptions directly impose on
386 | those licensors and authors.
387 |
388 | All other non-permissive additional terms are considered "further
389 | restrictions" within the meaning of section 10. If the Program as you
390 | received it, or any part of it, contains a notice stating that it is
391 | governed by this License along with a term that is a further
392 | restriction, you may remove that term. If a license document contains
393 | a further restriction but permits relicensing or conveying under this
394 | License, you may add to a covered work material governed by the terms
395 | of that license document, provided that the further restriction does
396 | not survive such relicensing or conveying.
397 |
398 | If you add terms to a covered work in accord with this section, you
399 | must place, in the relevant source files, a statement of the
400 | additional terms that apply to those files, or a notice indicating
401 | where to find the applicable terms.
402 |
403 | Additional terms, permissive or non-permissive, may be stated in the
404 | form of a separately written license, or stated as exceptions;
405 | the above requirements apply either way.
406 |
407 | 8. Termination.
408 |
409 | You may not propagate or modify a covered work except as expressly
410 | provided under this License. Any attempt otherwise to propagate or
411 | modify it is void, and will automatically terminate your rights under
412 | this License (including any patent licenses granted under the third
413 | paragraph of section 11).
414 |
415 | However, if you cease all violation of this License, then your
416 | license from a particular copyright holder is reinstated (a)
417 | provisionally, unless and until the copyright holder explicitly and
418 | finally terminates your license, and (b) permanently, if the copyright
419 | holder fails to notify you of the violation by some reasonable means
420 | prior to 60 days after the cessation.
421 |
422 | Moreover, your license from a particular copyright holder is
423 | reinstated permanently if the copyright holder notifies you of the
424 | violation by some reasonable means, this is the first time you have
425 | received notice of violation of this License (for any work) from that
426 | copyright holder, and you cure the violation prior to 30 days after
427 | your receipt of the notice.
428 |
429 | Termination of your rights under this section does not terminate the
430 | licenses of parties who have received copies or rights from you under
431 | this License. If your rights have been terminated and not permanently
432 | reinstated, you do not qualify to receive new licenses for the same
433 | material under section 10.
434 |
435 | 9. Acceptance Not Required for Having Copies.
436 |
437 | You are not required to accept this License in order to receive or
438 | run a copy of the Program. Ancillary propagation of a covered work
439 | occurring solely as a consequence of using peer-to-peer transmission
440 | to receive a copy likewise does not require acceptance. However,
441 | nothing other than this License grants you permission to propagate or
442 | modify any covered work. These actions infringe copyright if you do
443 | not accept this License. Therefore, by modifying or propagating a
444 | covered work, you indicate your acceptance of this License to do so.
445 |
446 | 10. Automatic Licensing of Downstream Recipients.
447 |
448 | Each time you convey a covered work, the recipient automatically
449 | receives a license from the original licensors, to run, modify and
450 | propagate that work, subject to this License. You are not responsible
451 | for enforcing compliance by third parties with this License.
452 |
453 | An "entity transaction" is a transaction transferring control of an
454 | organization, or substantially all assets of one, or subdividing an
455 | organization, or merging organizations. If propagation of a covered
456 | work results from an entity transaction, each party to that
457 | transaction who receives a copy of the work also receives whatever
458 | licenses to the work the party's predecessor in interest had or could
459 | give under the previous paragraph, plus a right to possession of the
460 | Corresponding Source of the work from the predecessor in interest, if
461 | the predecessor has it or can get it with reasonable efforts.
462 |
463 | You may not impose any further restrictions on the exercise of the
464 | rights granted or affirmed under this License. For example, you may
465 | not impose a license fee, royalty, or other charge for exercise of
466 | rights granted under this License, and you may not initiate litigation
467 | (including a cross-claim or counterclaim in a lawsuit) alleging that
468 | any patent claim is infringed by making, using, selling, offering for
469 | sale, or importing the Program or any portion of it.
470 |
471 | 11. Patents.
472 |
473 | A "contributor" is a copyright holder who authorizes use under this
474 | License of the Program or a work on which the Program is based. The
475 | work thus licensed is called the contributor's "contributor version".
476 |
477 | A contributor's "essential patent claims" are all patent claims
478 | owned or controlled by the contributor, whether already acquired or
479 | hereafter acquired, that would be infringed by some manner, permitted
480 | by this License, of making, using, or selling its contributor version,
481 | but do not include claims that would be infringed only as a
482 | consequence of further modification of the contributor version. For
483 | purposes of this definition, "control" includes the right to grant
484 | patent sublicenses in a manner consistent with the requirements of
485 | this License.
486 |
487 | Each contributor grants you a non-exclusive, worldwide, royalty-free
488 | patent license under the contributor's essential patent claims, to
489 | make, use, sell, offer for sale, import and otherwise run, modify and
490 | propagate the contents of its contributor version.
491 |
492 | In the following three paragraphs, a "patent license" is any express
493 | agreement or commitment, however denominated, not to enforce a patent
494 | (such as an express permission to practice a patent or covenant not to
495 | sue for patent infringement). To "grant" such a patent license to a
496 | party means to make such an agreement or commitment not to enforce a
497 | patent against the party.
498 |
499 | If you convey a covered work, knowingly relying on a patent license,
500 | and the Corresponding Source of the work is not available for anyone
501 | to copy, free of charge and under the terms of this License, through a
502 | publicly available network server or other readily accessible means,
503 | then you must either (1) cause the Corresponding Source to be so
504 | available, or (2) arrange to deprive yourself of the benefit of the
505 | patent license for this particular work, or (3) arrange, in a manner
506 | consistent with the requirements of this License, to extend the patent
507 | license to downstream recipients. "Knowingly relying" means you have
508 | actual knowledge that, but for the patent license, your conveying the
509 | covered work in a country, or your recipient's use of the covered work
510 | in a country, would infringe one or more identifiable patents in that
511 | country that you have reason to believe are valid.
512 |
513 | If, pursuant to or in connection with a single transaction or
514 | arrangement, you convey, or propagate by procuring conveyance of, a
515 | covered work, and grant a patent license to some of the parties
516 | receiving the covered work authorizing them to use, propagate, modify
517 | or convey a specific copy of the covered work, then the patent license
518 | you grant is automatically extended to all recipients of the covered
519 | work and works based on it.
520 |
521 | A patent license is "discriminatory" if it does not include within
522 | the scope of its coverage, prohibits the exercise of, or is
523 | conditioned on the non-exercise of one or more of the rights that are
524 | specifically granted under this License. You may not convey a covered
525 | work if you are a party to an arrangement with a third party that is
526 | in the business of distributing software, under which you make payment
527 | to the third party based on the extent of your activity of conveying
528 | the work, and under which the third party grants, to any of the
529 | parties who would receive the covered work from you, a discriminatory
530 | patent license (a) in connection with copies of the covered work
531 | conveyed by you (or copies made from those copies), or (b) primarily
532 | for and in connection with specific products or compilations that
533 | contain the covered work, unless you entered into that arrangement,
534 | or that patent license was granted, prior to 28 March 2007.
535 |
536 | Nothing in this License shall be construed as excluding or limiting
537 | any implied license or other defenses to infringement that may
538 | otherwise be available to you under applicable patent law.
539 |
540 | 12. No Surrender of Others' Freedom.
541 |
542 | If conditions are imposed on you (whether by court order, agreement or
543 | otherwise) that contradict the conditions of this License, they do not
544 | excuse you from the conditions of this License. If you cannot convey a
545 | covered work so as to satisfy simultaneously your obligations under this
546 | License and any other pertinent obligations, then as a consequence you may
547 | not convey it at all. For example, if you agree to terms that obligate you
548 | to collect a royalty for further conveying from those to whom you convey
549 | the Program, the only way you could satisfy both those terms and this
550 | License would be to refrain entirely from conveying the Program.
551 |
552 | 13. Use with the GNU Affero General Public License.
553 |
554 | Notwithstanding any other provision of this License, you have
555 | permission to link or combine any covered work with a work licensed
556 | under version 3 of the GNU Affero General Public License into a single
557 | combined work, and to convey the resulting work. The terms of this
558 | License will continue to apply to the part which is the covered work,
559 | but the special requirements of the GNU Affero General Public License,
560 | section 13, concerning interaction through a network will apply to the
561 | combination as such.
562 |
563 | 14. Revised Versions of this License.
564 |
565 | The Free Software Foundation may publish revised and/or new versions of
566 | the GNU General Public License from time to time. Such new versions will
567 | be similar in spirit to the present version, but may differ in detail to
568 | address new problems or concerns.
569 |
570 | Each version is given a distinguishing version number. If the
571 | Program specifies that a certain numbered version of the GNU General
572 | Public License "or any later version" applies to it, you have the
573 | option of following the terms and conditions either of that numbered
574 | version or of any later version published by the Free Software
575 | Foundation. If the Program does not specify a version number of the
576 | GNU General Public License, you may choose any version ever published
577 | by the Free Software Foundation.
578 |
579 | If the Program specifies that a proxy can decide which future
580 | versions of the GNU General Public License can be used, that proxy's
581 | public statement of acceptance of a version permanently authorizes you
582 | to choose that version for the Program.
583 |
584 | Later license versions may give you additional or different
585 | permissions. However, no additional obligations are imposed on any
586 | author or copyright holder as a result of your choosing to follow a
587 | later version.
588 |
589 | 15. Disclaimer of Warranty.
590 |
591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
599 |
600 | 16. Limitation of Liability.
601 |
602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
610 | SUCH DAMAGES.
611 |
612 | 17. Interpretation of Sections 15 and 16.
613 |
614 | If the disclaimer of warranty and limitation of liability provided
615 | above cannot be given local legal effect according to their terms,
616 | reviewing courts shall apply local law that most closely approximates
617 | an absolute waiver of all civil liability in connection with the
618 | Program, unless a warranty or assumption of liability accompanies a
619 | copy of the Program in return for a fee.
620 |
621 | END OF TERMS AND CONDITIONS
622 |
623 | How to Apply These Terms to Your New Programs
624 |
625 | If you develop a new program, and you want it to be of the greatest
626 | possible use to the public, the best way to achieve this is to make it
627 | free software which everyone can redistribute and change under these terms.
628 |
629 | To do so, attach the following notices to the program. It is safest
630 | to attach them to the start of each source file to most effectively
631 | state the exclusion of warranty; and each file should have at least
632 | the "copyright" line and a pointer to where the full notice is found.
633 |
634 |
635 | Copyright (C)
636 |
637 | This program is free software: you can redistribute it and/or modify
638 | it under the terms of the GNU General Public License as published by
639 | the Free Software Foundation, either version 3 of the License, or
640 | (at your option) any later version.
641 |
642 | This program is distributed in the hope that it will be useful,
643 | but WITHOUT ANY WARRANTY; without even the implied warranty of
644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
645 | GNU General Public License for more details.
646 |
647 | You should have received a copy of the GNU General Public License
648 | along with this program. If not, see .
649 |
650 | Also add information on how to contact you by electronic and paper mail.
651 |
652 | If the program does terminal interaction, make it output a short
653 | notice like this when it starts in an interactive mode:
654 |
655 | Copyright (C)
656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
657 | This is free software, and you are welcome to redistribute it
658 | under certain conditions; type `show c' for details.
659 |
660 | The hypothetical commands `show w' and `show c' should show the appropriate
661 | parts of the General Public License. Of course, your program's commands
662 | might be different; for a GUI interface, you would use an "about box".
663 |
664 | You should also get your employer (if you work as a programmer) or school,
665 | if any, to sign a "copyright disclaimer" for the program, if necessary.
666 | For more information on this, and how to apply and follow the GNU GPL, see
667 | .
668 |
669 | The GNU General Public License does not permit incorporating your program
670 | into proprietary programs. If your program is a subroutine library, you
671 | may consider it more useful to permit linking proprietary applications with
672 | the library. If this is what you want to do, use the GNU Lesser General
673 | Public License instead of this License. But first, please read
674 | .
--------------------------------------------------------------------------------
/public/styles.css:
--------------------------------------------------------------------------------
1 | html {
2 | height: 100%;
3 | background: radial-gradient(ellipse at bottom, #1b2735 0%, #1b2735 100%);
4 | overflow: hidden;
5 | }
6 | #crewinfo{
7 | background-color: #23272ac7;
8 | width: 100%;
9 | max-width: 500px;
10 | border-radius:20px;
11 | border-style: solid;
12 | border-width:1px;
13 | border-color:gray;
14 | max-width: 500px;
15 | margin: auto;
16 | height:500px
17 |
18 | }
19 |
20 | #background-container{
21 | position: fixed;
22 | top: 0;
23 | left:0;
24 | bottom: 0;
25 | right: 0;
26 | z-index: -1000;
27 |
28 | }
29 |
30 | #stars {
31 | width: 1px;
32 | height: 1px;
33 | background: transparent;
34 | box-shadow: 269px 2356px #FFF , 2266px 934px #FFF , 2148px 2835px #FFF , 879px 523px #FFF , 1204px 642px #FFF , 159px 2683px #FFF , 2460px 33px #FFF , 491px 1974px #FFF , 237px 2196px #FFF , 2399px 1084px #FFF , 260px 1195px #FFF , 375px 1390px #FFF , 2359px 327px #FFF , 2960px 1054px #FFF , 1849px 680px #FFF , 2120px 1347px #FFF , 1275px 946px #FFF , 736px 2906px #FFF , 2523px 2153px #FFF , 2978px 2432px #FFF , 2808px 1929px #FFF , 452px 1945px #FFF , 45px 801px #FFF , 2544px 2609px #FFF , 2165px 1097px #FFF , 1771px 2656px #FFF , 401px 2889px #FFF , 2154px 646px #FFF , 628px 1494px #FFF , 512px 1312px #FFF , 1201px 987px #FFF , 529px 1884px #FFF , 271px 2897px #FFF , 564px 2782px #FFF , 2733px 1687px #FFF , 400px 718px #FFF , 2609px 1444px #FFF , 1654px 702px #FFF , 2901px 2505px #FFF , 2654px 2557px #FFF , 2025px 2655px #FFF , 2779px 2033px #FFF , 1105px 2952px #FFF , 1278px 138px #FFF , 257px 659px #FFF , 2291px 566px #FFF , 279px 2529px #FFF , 1043px 1608px #FFF , 2502px 732px #FFF , 659px 112px #FFF , 728px 2009px #FFF , 196px 156px #FFF , 324px 1572px #FFF , 277px 2253px #FFF , 500px 956px #FFF , 1821px 2021px #FFF , 2446px 2072px #FFF , 606px 2107px #FFF , 110px 1927px #FFF , 1189px 2050px #FFF , 364px 1432px #FFF , 1031px 2630px #FFF , 703px 2207px #FFF , 28px 2214px #FFF , 1900px 76px #FFF , 1620px 1709px #FFF , 2450px 194px #FFF , 192px 2170px #FFF , 2381px 611px #FFF , 1456px 1346px #FFF , 333px 2721px #FFF , 2826px 1387px #FFF , 1851px 197px #FFF , 2887px 559px #FFF , 2502px 511px #FFF , 1402px 1100px #FFF , 1103px 800px #FFF , 1570px 2952px #FFF , 2552px 976px #FFF , 388px 729px #FFF , 1255px 2217px #FFF , 105px 123px #FFF , 675px 617px #FFF , 1685px 1071px #FFF , 1997px 2769px #FFF , 2520px 1510px #FFF , 1739px 2508px #FFF , 626px 2730px #FFF , 1219px 2032px #FFF , 2859px 1515px #FFF , 752px 70px #FFF , 1281px 1533px #FFF , 1551px 800px #FFF , 174px 2690px #FFF , 2430px 1864px #FFF , 2605px 1677px #FFF , 192px 2618px #FFF , 751px 563px #FFF , 1452px 578px #FFF , 2140px 2692px #FFF , 2312px 961px #FFF , 236px 257px #FFF , 2981px 1709px #FFF , 1743px 2px #FFF , 2658px 2039px #FFF , 1226px 1863px #FFF , 512px 1300px #FFF , 2544px 197px #FFF , 1611px 167px #FFF , 1878px 1380px #FFF , 1073px 1634px #FFF , 2184px 2798px #FFF , 1973px 1375px #FFF , 2220px 2763px #FFF , 1766px 110px #FFF , 370px 347px #FFF , 1646px 2291px #FFF , 2584px 2333px #FFF , 2693px 983px #FFF , 1066px 477px #FFF , 1266px 2688px #FFF , 2066px 2064px #FFF , 1765px 1836px #FFF , 2922px 1235px #FFF , 1806px 1261px #FFF , 2913px 1339px #FFF , 2593px 2216px #FFF , 1526px 2548px #FFF , 128px 2594px #FFF , 689px 2812px #FFF , 1162px 792px #FFF , 246px 623px #FFF , 759px 977px #FFF , 65px 1975px #FFF , 1791px 1776px #FFF , 2407px 1099px #FFF , 413px 1083px #FFF , 56px 2915px #FFF , 1670px 2640px #FFF , 1434px 941px #FFF , 1604px 2185px #FFF , 2201px 1119px #FFF , 6px 260px #FFF , 521px 991px #FFF , 2798px 1575px #FFF , 181px 2181px #FFF , 116px 2364px #FFF , 1568px 339px #FFF , 468px 2655px #FFF , 2380px 1696px #FFF , 1569px 2013px #FFF , 197px 2240px #FFF , 2024px 970px #FFF , 69px 2784px #FFF , 2951px 1223px #FFF , 165px 2023px #FFF , 1030px 742px #FFF , 1307px 582px #FFF , 3px 1888px #FFF , 2156px 613px #FFF , 2823px 1983px #FFF , 1452px 249px #FFF , 2998px 932px #FFF , 580px 1346px #FFF , 1616px 1238px #FFF , 834px 2944px #FFF , 1039px 793px #FFF , 1743px 671px #FFF , 1382px 961px #FFF , 2623px 566px #FFF , 2593px 1506px #FFF , 1761px 786px #FFF , 1233px 380px #FFF , 121px 526px #FFF , 1679px 2571px #FFF , 1238px 1205px #FFF , 2489px 2161px #FFF , 2805px 1945px #FFF , 1532px 1545px #FFF , 2862px 2681px #FFF , 1823px 2867px #FFF , 2221px 1761px #FFF , 1493px 880px #FFF , 870px 2348px #FFF , 2574px 1662px #FFF , 1937px 1411px #FFF , 2812px 2626px #FFF , 2187px 1711px #FFF , 2788px 2401px #FFF , 109px 1069px #FFF , 787px 640px #FFF , 2056px 2783px #FFF , 167px 343px #FFF , 462px 2452px #FFF , 134px 2027px #FFF , 1154px 710px #FFF , 2322px 1239px #FFF , 829px 1168px #FFF , 64px 454px #FFF , 175px 2927px #FFF , 1302px 1831px #FFF , 788px 1161px #FFF , 680px 400px #FFF , 1299px 1586px #FFF , 1242px 1457px #FFF , 2686px 2614px #FFF , 2295px 2297px #FFF , 1771px 1842px #FFF , 2462px 996px #FFF , 382px 1957px #FFF , 753px 866px #FFF , 2281px 796px #FFF , 852px 1434px #FFF , 1998px 2566px #FFF , 373px 1478px #FFF , 252px 2559px #FFF , 1266px 796px #FFF , 2233px 1594px #FFF , 2330px 2811px #FFF , 730px 2161px #FFF , 1731px 1505px #FFF , 1940px 2865px #FFF , 2884px 33px #FFF , 940px 2419px #FFF , 1958px 1766px #FFF , 116px 2319px #FFF , 145px 1688px #FFF , 130px 844px #FFF , 519px 1307px #FFF , 2368px 2545px #FFF , 2452px 2874px #FFF , 1169px 2815px #FFF , 2026px 1341px #FFF , 805px 15px #FFF , 734px 632px #FFF , 1623px 943px #FFF , 1601px 2080px #FFF , 481px 1270px #FFF , 1735px 138px #FFF , 641px 1647px #FFF , 1410px 45px #FFF , 868px 736px #FFF , 2063px 2442px #FFF , 1307px 2619px #FFF , 1323px 1579px #FFF , 2635px 1177px #FFF , 693px 2074px #FFF , 365px 1067px #FFF , 2882px 2981px #FFF , 772px 2918px #FFF , 2300px 1981px #FFF , 2049px 1320px #FFF , 589px 376px #FFF , 1372px 1867px #FFF , 2310px 1768px #FFF , 2557px 1074px #FFF , 978px 1922px #FFF , 215px 1698px #FFF , 94px 2203px #FFF , 1791px 1367px #FFF , 474px 1245px #FFF , 109px 2398px #FFF , 655px 2269px #FFF , 1603px 1153px #FFF , 1953px 837px #FFF , 2360px 1432px #FFF , 2352px 2503px #FFF , 1775px 1684px #FFF , 840px 1427px #FFF , 1142px 1993px #FFF , 205px 639px #FFF , 45px 2264px #FFF , 1740px 2446px #FFF , 1022px 542px #FFF , 2859px 1386px #FFF , 1429px 1420px #FFF , 28px 2625px #FFF , 1584px 1569px #FFF , 1498px 174px #FFF , 901px 2285px #FFF , 2229px 82px #FFF , 308px 277px #FFF , 2115px 2725px #FFF , 2392px 1064px #FFF , 19px 1175px #FFF , 2872px 286px #FFF , 2192px 139px #FFF , 2066px 997px #FFF , 2069px 2181px #FFF , 519px 1966px #FFF , 2393px 2778px #FFF , 2379px 2425px #FFF , 2438px 1090px #FFF , 1244px 1752px #FFF , 2720px 2699px #FFF , 786px 2469px #FFF , 276px 2983px #FFF , 1242px 1726px #FFF , 1647px 2862px #FFF , 1829px 2986px #FFF , 359px 262px #FFF , 110px 1673px #FFF , 30px 1040px #FFF , 170px 2465px #FFF , 1718px 726px #FFF , 1518px 2444px #FFF , 242px 363px #FFF , 2606px 1722px #FFF , 1795px 403px #FFF , 409px 451px #FFF , 1659px 93px #FFF , 1719px 2900px #FFF , 2298px 2778px #FFF , 394px 1681px #FFF , 116px 1165px #FFF , 462px 1187px #FFF , 684px 2833px #FFF , 2992px 1664px #FFF , 972px 2555px #FFF , 2207px 2269px #FFF , 1519px 1319px #FFF , 2780px 2043px #FFF , 2844px 2805px #FFF , 1550px 792px #FFF , 2880px 870px #FFF , 1397px 2661px #FFF , 2458px 1796px #FFF , 694px 2123px #FFF , 2544px 492px #FFF , 2781px 2023px #FFF , 640px 2556px #FFF , 2342px 2235px #FFF , 394px 558px #FFF , 2419px 2476px #FFF , 401px 1461px #FFF , 1840px 1127px #FFF , 492px 1674px #FFF , 711px 1610px #FFF , 1752px 695px #FFF , 1672px 1298px #FFF , 1384px 2141px #FFF , 1000px 2516px #FFF , 997px 2885px #FFF , 1792px 1913px #FFF , 1401px 1521px #FFF , 20px 460px #FFF , 30px 2901px #FFF , 993px 2491px #FFF , 2307px 2819px #FFF , 1008px 748px #FFF , 1337px 2385px #FFF , 2155px 771px #FFF , 1731px 2614px #FFF , 272px 818px #FFF , 2619px 1067px #FFF , 534px 999px #FFF , 1113px 594px #FFF , 876px 1773px #FFF , 2762px 2063px #FFF , 1082px 251px #FFF , 2946px 367px #FFF , 260px 299px #FFF , 2969px 2188px #FFF , 520px 862px #FFF , 2098px 1540px #FFF , 2861px 448px #FFF , 2885px 6px #FFF , 2045px 528px #FFF , 512px 14px #FFF , 1185px 91px #FFF , 1819px 868px #FFF , 2200px 1379px #FFF , 942px 579px #FFF , 1464px 2586px #FFF , 2828px 1768px #FFF , 504px 1951px #FFF , 2798px 2052px #FFF , 2210px 374px #FFF , 2603px 302px #FFF , 1128px 430px #FFF , 2456px 1131px #FFF , 2945px 462px #FFF , 154px 2364px #FFF , 696px 432px #FFF , 1910px 2454px #FFF , 1758px 2868px #FFF , 1136px 386px #FFF , 992px 360px #FFF , 529px 1266px #FFF , 440px 602px #FFF , 1522px 1339px #FFF , 2738px 2729px #FFF , 2393px 2221px #FFF , 2148px 606px #FFF , 2043px 2353px #FFF , 1781px 249px #FFF , 1571px 599px #FFF , 2442px 2385px #FFF , 98px 1565px #FFF , 177px 2059px #FFF , 2662px 1157px #FFF , 80px 2990px #FFF , 2661px 2922px #FFF , 1989px 2694px #FFF , 1786px 2917px #FFF , 2999px 2415px #FFF , 639px 1369px #FFF , 2726px 1775px #FFF , 1383px 625px #FFF , 15px 1428px #FFF , 1848px 2666px #FFF , 1864px 1773px #FFF , 2686px 555px #FFF , 1664px 1313px #FFF , 2311px 866px #FFF , 1281px 1715px #FFF , 1529px 2027px #FFF , 369px 971px #FFF , 2681px 2544px #FFF , 2227px 1599px #FFF , 133px 112px #FFF , 1525px 1074px #FFF , 1392px 417px #FFF , 811px 2511px #FFF , 805px 1990px #FFF , 2747px 456px #FFF , 1065px 2567px #FFF , 1212px 1360px #FFF , 2956px 842px #FFF , 2498px 1602px #FFF , 879px 2444px #FFF , 466px 138px #FFF , 1956px 513px #FFF , 2526px 164px #FFF , 1453px 524px #FFF , 314px 958px #FFF , 1529px 2018px #FFF , 347px 841px #FFF , 1587px 2894px #FFF , 1343px 366px #FFF , 1813px 2170px #FFF , 1890px 945px #FFF , 681px 2049px #FFF , 834px 1193px #FFF , 590px 565px #FFF , 2249px 885px #FFF , 2365px 1980px #FFF , 861px 2476px #FFF , 1385px 2548px #FFF , 810px 1538px #FFF , 513px 2144px #FFF , 162px 2789px #FFF , 439px 1772px #FFF , 2544px 708px #FFF , 1283px 2460px #FFF , 465px 1303px #FFF , 1524px 2164px #FFF , 542px 1608px #FFF , 436px 971px #FFF , 210px 2171px #FFF , 814px 2828px #FFF , 172px 898px #FFF , 2999px 2371px #FFF , 79px 2421px #FFF , 1338px 2908px #FFF , 2179px 1181px #FFF , 1407px 1444px #FFF , 1788px 1457px #FFF , 1207px 1389px #FFF , 738px 363px #FFF , 1685px 2372px #FFF , 2598px 2970px #FFF , 1394px 2685px #FFF , 837px 44px #FFF , 982px 700px #FFF , 1937px 1438px #FFF , 1346px 1003px #FFF , 2050px 2640px #FFF , 993px 69px #FFF , 2708px 1275px #FFF , 1684px 2085px #FFF , 1010px 1591px #FFF , 2439px 1309px #FFF , 368px 507px #FFF , 609px 1113px #FFF , 403px 1526px #FFF , 33px 1524px #FFF , 688px 2666px #FFF , 1034px 713px #FFF , 1374px 1150px #FFF , 796px 2743px #FFF , 2860px 1055px #FFF , 1860px 2123px #FFF , 2496px 1522px #FFF , 1512px 273px #FFF , 1015px 25px #FFF , 2301px 851px #FFF , 550px 1970px #FFF , 2720px 935px #FFF , 1459px 2895px #FFF , 2393px 2549px #FFF , 728px 2885px #FFF , 1388px 994px #FFF , 95px 2549px #FFF , 14px 1405px #FFF , 941px 2789px #FFF , 30px 2912px #FFF , 502px 517px #FFF , 157px 434px #FFF , 107px 111px #FFF , 766px 946px #FFF , 459px 1007px #FFF , 2902px 1589px #FFF , 169px 1473px #FFF , 2305px 1944px #FFF , 2730px 1580px #FFF , 2642px 1559px #FFF , 1265px 568px #FFF , 2195px 1176px #FFF , 1758px 1382px #FFF , 1559px 1238px #FFF , 2992px 785px #FFF , 1239px 1991px #FFF , 257px 740px #FFF , 415px 1963px #FFF , 9px 1156px #FFF , 1656px 1264px #FFF , 2349px 1869px #FFF , 1083px 1528px #FFF , 2740px 1024px #FFF , 1306px 95px #FFF , 1684px 2783px #FFF , 171px 753px #FFF , 1911px 2532px #FFF , 521px 801px #FFF , 1439px 1066px #FFF , 1899px 2054px #FFF , 2854px 1766px #FFF , 311px 2871px #FFF , 1735px 866px #FFF , 315px 657px #FFF , 446px 864px #FFF , 1679px 2992px #FFF , 2604px 1218px #FFF , 1402px 2545px #FFF , 625px 2997px #FFF , 202px 156px #FFF , 2702px 1274px #FFF , 421px 2507px #FFF , 2735px 2685px #FFF , 2802px 2528px #FFF , 2830px 488px #FFF , 2582px 2916px #FFF , 1335px 278px #FFF , 2146px 2916px #FFF , 1349px 1275px #FFF , 1556px 2942px #FFF , 2730px 694px #FFF , 2517px 2457px #FFF , 159px 2124px #FFF , 2672px 193px #FFF , 1795px 717px #FFF , 1976px 2762px #FFF , 2253px 67px #FFF , 118px 588px #FFF , 37px 738px #FFF , 1463px 2168px #FFF , 291px 229px #FFF , 1660px 2727px #FFF , 134px 1073px #FFF , 1800px 931px #FFF , 1155px 204px #FFF , 988px 1981px #FFF , 1366px 2659px #FFF , 1818px 537px #FFF , 2103px 1636px #FFF , 1411px 512px #FFF , 148px 2167px #FFF , 599px 1801px #FFF , 1291px 209px #FFF , 543px 303px #FFF , 2218px 2074px #FFF , 2525px 684px #FFF , 1529px 860px #FFF , 3px 2086px #FFF , 561px 800px #FFF , 1622px 954px #FFF , 1258px 2710px #FFF , 2994px 2101px #FFF , 479px 179px #FFF , 2691px 1234px #FFF , 2261px 1937px #FFF , 3px 2814px #FFF , 776px 2405px #FFF , 2533px 21px #FFF , 1801px 1289px #FFF , 2360px 372px #FFF , 707px 1459px #FFF , 647px 445px #FFF , 2496px 2121px #FFF , 752px 2303px #FFF , 2540px 2056px #FFF , 2337px 1500px #FFF , 1445px 1562px #FFF , 840px 2369px #FFF , 1088px 2160px #FFF , 1827px 372px #FFF , 1210px 1395px #FFF , 2741px 2174px #FFF , 899px 789px #FFF , 2905px 287px #FFF , 284px 2039px #FFF , 1173px 2572px #FFF , 2353px 1308px #FFF , 2953px 2488px #FFF , 1668px 418px #FFF , 2737px 1647px #FFF , 2824px 986px #FFF , 2462px 908px #FFF , 552px 906px #FFF , 2148px 2287px #FFF , 1518px 1262px #FFF , 2769px 60px #FFF , 280px 1086px #FFF , 1978px 73px #FFF , 1396px 2055px #FFF , 2727px 1586px #FFF , 2179px 1408px #FFF , 1063px 1960px #FFF , 1273px 1931px #FFF , 1098px 1006px #FFF , 910px 151px #FFF , 1471px 1966px #FFF , 288px 1545px #FFF , 2325px 2303px #FFF , 1510px 1081px #FFF , 1763px 2476px #FFF , 710px 1501px #FFF , 1216px 275px #FFF , 2090px 589px #FFF , 737px 2545px #FFF , 177px 1852px #FFF , 157px 2638px #FFF , 1907px 1939px #FFF , 2448px 321px #FFF , 2141px 2597px #FFF , 15px 448px #FFF , 468px 2105px #FFF , 2531px 2791px #FFF , 2757px 397px #FFF , 2532px 350px #FFF , 590px 1458px #FFF , 967px 252px #FFF , 1309px 2103px #FFF , 303px 1392px #FFF , 897px 1175px #FFF , 2255px 209px #FFF , 1103px 2044px #FFF , 748px 387px #FFF , 890px 1543px #FFF , 1482px 2461px #FFF , 1682px 2520px #FFF , 812px 377px #FFF , 79px 1244px #FFF , 2001px 1260px #FFF , 2163px 1501px #FFF , 235px 824px #FFF , 2485px 2207px #FFF , 64px 2433px #FFF , 2290px 2080px #FFF , 636px 1386px #FFF , 634px 885px #FFF , 1440px 2035px #FFF , 117px 931px #FFF , 2985px 2429px #FFF , 1206px 1846px #FFF , 2829px 395px #FFF , 2746px 460px #FFF , 2684px 905px #FFF , 1365px 2602px #FFF , 2884px 1959px #FFF , 2834px 2058px #FFF , 2945px 759px #FFF , 2480px 2020px #FFF , 119px 948px #FFF , 1756px 1588px #FFF , 499px 698px #FFF , 2720px 1378px #FFF , 1752px 904px #FFF , 1899px 2234px #FFF , 10px 142px #FFF , 366px 2166px #FFF , 2711px 1378px #FFF , 2120px 397px #FFF , 2510px 579px #FFF , 2138px 85px #FFF , 2920px 905px #FFF , 2448px 1093px #FFF , 2225px 1579px #FFF , 238px 46px #FFF;
35 | animation: animStar 50s linear infinite;
36 | }
37 | #stars:after {
38 | content: " ";
39 | position: absolute;
40 | top: 2000px;
41 | width: 1px;
42 | height: 1px;
43 | background: transparent;
44 | box-shadow: 269px 2356px #FFF , 2266px 934px #FFF , 2148px 2835px #FFF , 879px 523px #FFF , 1204px 642px #FFF , 159px 2683px #FFF , 2460px 33px #FFF , 491px 1974px #FFF , 237px 2196px #FFF , 2399px 1084px #FFF , 260px 1195px #FFF , 375px 1390px #FFF , 2359px 327px #FFF , 2960px 1054px #FFF , 1849px 680px #FFF , 2120px 1347px #FFF , 1275px 946px #FFF , 736px 2906px #FFF , 2523px 2153px #FFF , 2978px 2432px #FFF , 2808px 1929px #FFF , 452px 1945px #FFF , 45px 801px #FFF , 2544px 2609px #FFF , 2165px 1097px #FFF , 1771px 2656px #FFF , 401px 2889px #FFF , 2154px 646px #FFF , 628px 1494px #FFF , 512px 1312px #FFF , 1201px 987px #FFF , 529px 1884px #FFF , 271px 2897px #FFF , 564px 2782px #FFF , 2733px 1687px #FFF , 400px 718px #FFF , 2609px 1444px #FFF , 1654px 702px #FFF , 2901px 2505px #FFF , 2654px 2557px #FFF , 2025px 2655px #FFF , 2779px 2033px #FFF , 1105px 2952px #FFF , 1278px 138px #FFF , 257px 659px #FFF , 2291px 566px #FFF , 279px 2529px #FFF , 1043px 1608px #FFF , 2502px 732px #FFF , 659px 112px #FFF , 728px 2009px #FFF , 196px 156px #FFF , 324px 1572px #FFF , 277px 2253px #FFF , 500px 956px #FFF , 1821px 2021px #FFF , 2446px 2072px #FFF , 606px 2107px #FFF , 110px 1927px #FFF , 1189px 2050px #FFF , 364px 1432px #FFF , 1031px 2630px #FFF , 703px 2207px #FFF , 28px 2214px #FFF , 1900px 76px #FFF , 1620px 1709px #FFF , 2450px 194px #FFF , 192px 2170px #FFF , 2381px 611px #FFF , 1456px 1346px #FFF , 333px 2721px #FFF , 2826px 1387px #FFF , 1851px 197px #FFF , 2887px 559px #FFF , 2502px 511px #FFF , 1402px 1100px #FFF , 1103px 800px #FFF , 1570px 2952px #FFF , 2552px 976px #FFF , 388px 729px #FFF , 1255px 2217px #FFF , 105px 123px #FFF , 675px 617px #FFF , 1685px 1071px #FFF , 1997px 2769px #FFF , 2520px 1510px #FFF , 1739px 2508px #FFF , 626px 2730px #FFF , 1219px 2032px #FFF , 2859px 1515px #FFF , 752px 70px #FFF , 1281px 1533px #FFF , 1551px 800px #FFF , 174px 2690px #FFF , 2430px 1864px #FFF , 2605px 1677px #FFF , 192px 2618px #FFF , 751px 563px #FFF , 1452px 578px #FFF , 2140px 2692px #FFF , 2312px 961px #FFF , 236px 257px #FFF , 2981px 1709px #FFF , 1743px 2px #FFF , 2658px 2039px #FFF , 1226px 1863px #FFF , 512px 1300px #FFF , 2544px 197px #FFF , 1611px 167px #FFF , 1878px 1380px #FFF , 1073px 1634px #FFF , 2184px 2798px #FFF , 1973px 1375px #FFF , 2220px 2763px #FFF , 1766px 110px #FFF , 370px 347px #FFF , 1646px 2291px #FFF , 2584px 2333px #FFF , 2693px 983px #FFF , 1066px 477px #FFF , 1266px 2688px #FFF , 2066px 2064px #FFF , 1765px 1836px #FFF , 2922px 1235px #FFF , 1806px 1261px #FFF , 2913px 1339px #FFF , 2593px 2216px #FFF , 1526px 2548px #FFF , 128px 2594px #FFF , 689px 2812px #FFF , 1162px 792px #FFF , 246px 623px #FFF , 759px 977px #FFF , 65px 1975px #FFF , 1791px 1776px #FFF , 2407px 1099px #FFF , 413px 1083px #FFF , 56px 2915px #FFF , 1670px 2640px #FFF , 1434px 941px #FFF , 1604px 2185px #FFF , 2201px 1119px #FFF , 6px 260px #FFF , 521px 991px #FFF , 2798px 1575px #FFF , 181px 2181px #FFF , 116px 2364px #FFF , 1568px 339px #FFF , 468px 2655px #FFF , 2380px 1696px #FFF , 1569px 2013px #FFF , 197px 2240px #FFF , 2024px 970px #FFF , 69px 2784px #FFF , 2951px 1223px #FFF , 165px 2023px #FFF , 1030px 742px #FFF , 1307px 582px #FFF , 3px 1888px #FFF , 2156px 613px #FFF , 2823px 1983px #FFF , 1452px 249px #FFF , 2998px 932px #FFF , 580px 1346px #FFF , 1616px 1238px #FFF , 834px 2944px #FFF , 1039px 793px #FFF , 1743px 671px #FFF , 1382px 961px #FFF , 2623px 566px #FFF , 2593px 1506px #FFF , 1761px 786px #FFF , 1233px 380px #FFF , 121px 526px #FFF , 1679px 2571px #FFF , 1238px 1205px #FFF , 2489px 2161px #FFF , 2805px 1945px #FFF , 1532px 1545px #FFF , 2862px 2681px #FFF , 1823px 2867px #FFF , 2221px 1761px #FFF , 1493px 880px #FFF , 870px 2348px #FFF , 2574px 1662px #FFF , 1937px 1411px #FFF , 2812px 2626px #FFF , 2187px 1711px #FFF , 2788px 2401px #FFF , 109px 1069px #FFF , 787px 640px #FFF , 2056px 2783px #FFF , 167px 343px #FFF , 462px 2452px #FFF , 134px 2027px #FFF , 1154px 710px #FFF , 2322px 1239px #FFF , 829px 1168px #FFF , 64px 454px #FFF , 175px 2927px #FFF , 1302px 1831px #FFF , 788px 1161px #FFF , 680px 400px #FFF , 1299px 1586px #FFF , 1242px 1457px #FFF , 2686px 2614px #FFF , 2295px 2297px #FFF , 1771px 1842px #FFF , 2462px 996px #FFF , 382px 1957px #FFF , 753px 866px #FFF , 2281px 796px #FFF , 852px 1434px #FFF , 1998px 2566px #FFF , 373px 1478px #FFF , 252px 2559px #FFF , 1266px 796px #FFF , 2233px 1594px #FFF , 2330px 2811px #FFF , 730px 2161px #FFF , 1731px 1505px #FFF , 1940px 2865px #FFF , 2884px 33px #FFF , 940px 2419px #FFF , 1958px 1766px #FFF , 116px 2319px #FFF , 145px 1688px #FFF , 130px 844px #FFF , 519px 1307px #FFF , 2368px 2545px #FFF , 2452px 2874px #FFF , 1169px 2815px #FFF , 2026px 1341px #FFF , 805px 15px #FFF , 734px 632px #FFF , 1623px 943px #FFF , 1601px 2080px #FFF , 481px 1270px #FFF , 1735px 138px #FFF , 641px 1647px #FFF , 1410px 45px #FFF , 868px 736px #FFF , 2063px 2442px #FFF , 1307px 2619px #FFF , 1323px 1579px #FFF , 2635px 1177px #FFF , 693px 2074px #FFF , 365px 1067px #FFF , 2882px 2981px #FFF , 772px 2918px #FFF , 2300px 1981px #FFF , 2049px 1320px #FFF , 589px 376px #FFF , 1372px 1867px #FFF , 2310px 1768px #FFF , 2557px 1074px #FFF , 978px 1922px #FFF , 215px 1698px #FFF , 94px 2203px #FFF , 1791px 1367px #FFF , 474px 1245px #FFF , 109px 2398px #FFF , 655px 2269px #FFF , 1603px 1153px #FFF , 1953px 837px #FFF , 2360px 1432px #FFF , 2352px 2503px #FFF , 1775px 1684px #FFF , 840px 1427px #FFF , 1142px 1993px #FFF , 205px 639px #FFF , 45px 2264px #FFF , 1740px 2446px #FFF , 1022px 542px #FFF , 2859px 1386px #FFF , 1429px 1420px #FFF , 28px 2625px #FFF , 1584px 1569px #FFF , 1498px 174px #FFF , 901px 2285px #FFF , 2229px 82px #FFF , 308px 277px #FFF , 2115px 2725px #FFF , 2392px 1064px #FFF , 19px 1175px #FFF , 2872px 286px #FFF , 2192px 139px #FFF , 2066px 997px #FFF , 2069px 2181px #FFF , 519px 1966px #FFF , 2393px 2778px #FFF , 2379px 2425px #FFF , 2438px 1090px #FFF , 1244px 1752px #FFF , 2720px 2699px #FFF , 786px 2469px #FFF , 276px 2983px #FFF , 1242px 1726px #FFF , 1647px 2862px #FFF , 1829px 2986px #FFF , 359px 262px #FFF , 110px 1673px #FFF , 30px 1040px #FFF , 170px 2465px #FFF , 1718px 726px #FFF , 1518px 2444px #FFF , 242px 363px #FFF , 2606px 1722px #FFF , 1795px 403px #FFF , 409px 451px #FFF , 1659px 93px #FFF , 1719px 2900px #FFF , 2298px 2778px #FFF , 394px 1681px #FFF , 116px 1165px #FFF , 462px 1187px #FFF , 684px 2833px #FFF , 2992px 1664px #FFF , 972px 2555px #FFF , 2207px 2269px #FFF , 1519px 1319px #FFF , 2780px 2043px #FFF , 2844px 2805px #FFF , 1550px 792px #FFF , 2880px 870px #FFF , 1397px 2661px #FFF , 2458px 1796px #FFF , 694px 2123px #FFF , 2544px 492px #FFF , 2781px 2023px #FFF , 640px 2556px #FFF , 2342px 2235px #FFF , 394px 558px #FFF , 2419px 2476px #FFF , 401px 1461px #FFF , 1840px 1127px #FFF , 492px 1674px #FFF , 711px 1610px #FFF , 1752px 695px #FFF , 1672px 1298px #FFF , 1384px 2141px #FFF , 1000px 2516px #FFF , 997px 2885px #FFF , 1792px 1913px #FFF , 1401px 1521px #FFF , 20px 460px #FFF , 30px 2901px #FFF , 993px 2491px #FFF , 2307px 2819px #FFF , 1008px 748px #FFF , 1337px 2385px #FFF , 2155px 771px #FFF , 1731px 2614px #FFF , 272px 818px #FFF , 2619px 1067px #FFF , 534px 999px #FFF , 1113px 594px #FFF , 876px 1773px #FFF , 2762px 2063px #FFF , 1082px 251px #FFF , 2946px 367px #FFF , 260px 299px #FFF , 2969px 2188px #FFF , 520px 862px #FFF , 2098px 1540px #FFF , 2861px 448px #FFF , 2885px 6px #FFF , 2045px 528px #FFF , 512px 14px #FFF , 1185px 91px #FFF , 1819px 868px #FFF , 2200px 1379px #FFF , 942px 579px #FFF , 1464px 2586px #FFF , 2828px 1768px #FFF , 504px 1951px #FFF , 2798px 2052px #FFF , 2210px 374px #FFF , 2603px 302px #FFF , 1128px 430px #FFF , 2456px 1131px #FFF , 2945px 462px #FFF , 154px 2364px #FFF , 696px 432px #FFF , 1910px 2454px #FFF , 1758px 2868px #FFF , 1136px 386px #FFF , 992px 360px #FFF , 529px 1266px #FFF , 440px 602px #FFF , 1522px 1339px #FFF , 2738px 2729px #FFF , 2393px 2221px #FFF , 2148px 606px #FFF , 2043px 2353px #FFF , 1781px 249px #FFF , 1571px 599px #FFF , 2442px 2385px #FFF , 98px 1565px #FFF , 177px 2059px #FFF , 2662px 1157px #FFF , 80px 2990px #FFF , 2661px 2922px #FFF , 1989px 2694px #FFF , 1786px 2917px #FFF , 2999px 2415px #FFF , 639px 1369px #FFF , 2726px 1775px #FFF , 1383px 625px #FFF , 15px 1428px #FFF , 1848px 2666px #FFF , 1864px 1773px #FFF , 2686px 555px #FFF , 1664px 1313px #FFF , 2311px 866px #FFF , 1281px 1715px #FFF , 1529px 2027px #FFF , 369px 971px #FFF , 2681px 2544px #FFF , 2227px 1599px #FFF , 133px 112px #FFF , 1525px 1074px #FFF , 1392px 417px #FFF , 811px 2511px #FFF , 805px 1990px #FFF , 2747px 456px #FFF , 1065px 2567px #FFF , 1212px 1360px #FFF , 2956px 842px #FFF , 2498px 1602px #FFF , 879px 2444px #FFF , 466px 138px #FFF , 1956px 513px #FFF , 2526px 164px #FFF , 1453px 524px #FFF , 314px 958px #FFF , 1529px 2018px #FFF , 347px 841px #FFF , 1587px 2894px #FFF , 1343px 366px #FFF , 1813px 2170px #FFF , 1890px 945px #FFF , 681px 2049px #FFF , 834px 1193px #FFF , 590px 565px #FFF , 2249px 885px #FFF , 2365px 1980px #FFF , 861px 2476px #FFF , 1385px 2548px #FFF , 810px 1538px #FFF , 513px 2144px #FFF , 162px 2789px #FFF , 439px 1772px #FFF , 2544px 708px #FFF , 1283px 2460px #FFF , 465px 1303px #FFF , 1524px 2164px #FFF , 542px 1608px #FFF , 436px 971px #FFF , 210px 2171px #FFF , 814px 2828px #FFF , 172px 898px #FFF , 2999px 2371px #FFF , 79px 2421px #FFF , 1338px 2908px #FFF , 2179px 1181px #FFF , 1407px 1444px #FFF , 1788px 1457px #FFF , 1207px 1389px #FFF , 738px 363px #FFF , 1685px 2372px #FFF , 2598px 2970px #FFF , 1394px 2685px #FFF , 837px 44px #FFF , 982px 700px #FFF , 1937px 1438px #FFF , 1346px 1003px #FFF , 2050px 2640px #FFF , 993px 69px #FFF , 2708px 1275px #FFF , 1684px 2085px #FFF , 1010px 1591px #FFF , 2439px 1309px #FFF , 368px 507px #FFF , 609px 1113px #FFF , 403px 1526px #FFF , 33px 1524px #FFF , 688px 2666px #FFF , 1034px 713px #FFF , 1374px 1150px #FFF , 796px 2743px #FFF , 2860px 1055px #FFF , 1860px 2123px #FFF , 2496px 1522px #FFF , 1512px 273px #FFF , 1015px 25px #FFF , 2301px 851px #FFF , 550px 1970px #FFF , 2720px 935px #FFF , 1459px 2895px #FFF , 2393px 2549px #FFF , 728px 2885px #FFF , 1388px 994px #FFF , 95px 2549px #FFF , 14px 1405px #FFF , 941px 2789px #FFF , 30px 2912px #FFF , 502px 517px #FFF , 157px 434px #FFF , 107px 111px #FFF , 766px 946px #FFF , 459px 1007px #FFF , 2902px 1589px #FFF , 169px 1473px #FFF , 2305px 1944px #FFF , 2730px 1580px #FFF , 2642px 1559px #FFF , 1265px 568px #FFF , 2195px 1176px #FFF , 1758px 1382px #FFF , 1559px 1238px #FFF , 2992px 785px #FFF , 1239px 1991px #FFF , 257px 740px #FFF , 415px 1963px #FFF , 9px 1156px #FFF , 1656px 1264px #FFF , 2349px 1869px #FFF , 1083px 1528px #FFF , 2740px 1024px #FFF , 1306px 95px #FFF , 1684px 2783px #FFF , 171px 753px #FFF , 1911px 2532px #FFF , 521px 801px #FFF , 1439px 1066px #FFF , 1899px 2054px #FFF , 2854px 1766px #FFF , 311px 2871px #FFF , 1735px 866px #FFF , 315px 657px #FFF , 446px 864px #FFF , 1679px 2992px #FFF , 2604px 1218px #FFF , 1402px 2545px #FFF , 625px 2997px #FFF , 202px 156px #FFF , 2702px 1274px #FFF , 421px 2507px #FFF , 2735px 2685px #FFF , 2802px 2528px #FFF , 2830px 488px #FFF , 2582px 2916px #FFF , 1335px 278px #FFF , 2146px 2916px #FFF , 1349px 1275px #FFF , 1556px 2942px #FFF , 2730px 694px #FFF , 2517px 2457px #FFF , 159px 2124px #FFF , 2672px 193px #FFF , 1795px 717px #FFF , 1976px 2762px #FFF , 2253px 67px #FFF , 118px 588px #FFF , 37px 738px #FFF , 1463px 2168px #FFF , 291px 229px #FFF , 1660px 2727px #FFF , 134px 1073px #FFF , 1800px 931px #FFF , 1155px 204px #FFF , 988px 1981px #FFF , 1366px 2659px #FFF , 1818px 537px #FFF , 2103px 1636px #FFF , 1411px 512px #FFF , 148px 2167px #FFF , 599px 1801px #FFF , 1291px 209px #FFF , 543px 303px #FFF , 2218px 2074px #FFF , 2525px 684px #FFF , 1529px 860px #FFF , 3px 2086px #FFF , 561px 800px #FFF , 1622px 954px #FFF , 1258px 2710px #FFF , 2994px 2101px #FFF , 479px 179px #FFF , 2691px 1234px #FFF , 2261px 1937px #FFF , 3px 2814px #FFF , 776px 2405px #FFF , 2533px 21px #FFF , 1801px 1289px #FFF , 2360px 372px #FFF , 707px 1459px #FFF , 647px 445px #FFF , 2496px 2121px #FFF , 752px 2303px #FFF , 2540px 2056px #FFF , 2337px 1500px #FFF , 1445px 1562px #FFF , 840px 2369px #FFF , 1088px 2160px #FFF , 1827px 372px #FFF , 1210px 1395px #FFF , 2741px 2174px #FFF , 899px 789px #FFF , 2905px 287px #FFF , 284px 2039px #FFF , 1173px 2572px #FFF , 2353px 1308px #FFF , 2953px 2488px #FFF , 1668px 418px #FFF , 2737px 1647px #FFF , 2824px 986px #FFF , 2462px 908px #FFF , 552px 906px #FFF , 2148px 2287px #FFF , 1518px 1262px #FFF , 2769px 60px #FFF , 280px 1086px #FFF , 1978px 73px #FFF , 1396px 2055px #FFF , 2727px 1586px #FFF , 2179px 1408px #FFF , 1063px 1960px #FFF , 1273px 1931px #FFF , 1098px 1006px #FFF , 910px 151px #FFF , 1471px 1966px #FFF , 288px 1545px #FFF , 2325px 2303px #FFF , 1510px 1081px #FFF , 1763px 2476px #FFF , 710px 1501px #FFF , 1216px 275px #FFF , 2090px 589px #FFF , 737px 2545px #FFF , 177px 1852px #FFF , 157px 2638px #FFF , 1907px 1939px #FFF , 2448px 321px #FFF , 2141px 2597px #FFF , 15px 448px #FFF , 468px 2105px #FFF , 2531px 2791px #FFF , 2757px 397px #FFF , 2532px 350px #FFF , 590px 1458px #FFF , 967px 252px #FFF , 1309px 2103px #FFF , 303px 1392px #FFF , 897px 1175px #FFF , 2255px 209px #FFF , 1103px 2044px #FFF , 748px 387px #FFF , 890px 1543px #FFF , 1482px 2461px #FFF , 1682px 2520px #FFF , 812px 377px #FFF , 79px 1244px #FFF , 2001px 1260px #FFF , 2163px 1501px #FFF , 235px 824px #FFF , 2485px 2207px #FFF , 64px 2433px #FFF , 2290px 2080px #FFF , 636px 1386px #FFF , 634px 885px #FFF , 1440px 2035px #FFF , 117px 931px #FFF , 2985px 2429px #FFF , 1206px 1846px #FFF , 2829px 395px #FFF , 2746px 460px #FFF , 2684px 905px #FFF , 1365px 2602px #FFF , 2884px 1959px #FFF , 2834px 2058px #FFF , 2945px 759px #FFF , 2480px 2020px #FFF , 119px 948px #FFF , 1756px 1588px #FFF , 499px 698px #FFF , 2720px 1378px #FFF , 1752px 904px #FFF , 1899px 2234px #FFF , 10px 142px #FFF , 366px 2166px #FFF , 2711px 1378px #FFF , 2120px 397px #FFF , 2510px 579px #FFF , 2138px 85px #FFF , 2920px 905px #FFF , 2448px 1093px #FFF , 2225px 1579px #FFF , 238px 46px #FFF;
45 | }
46 |
47 | #stars2 {
48 | width: 2px;
49 | height: 2px;
50 | background: transparent;
51 | box-shadow: 1345px 1365px #FFF , 1627px 989px #FFF , 1864px 2654px #FFF , 615px 2654px #FFF , 2357px 1943px #FFF , 258px 141px #FFF , 799px 1506px #FFF , 983px 951px #FFF , 1828px 2528px #FFF , 1382px 519px #FFF , 657px 1372px #FFF , 1139px 887px #FFF , 1596px 2407px #FFF , 758px 834px #FFF , 2574px 899px #FFF , 704px 816px #FFF , 865px 1760px #FFF , 2494px 2238px #FFF , 440px 588px #FFF , 2261px 1339px #FFF , 2047px 200px #FFF , 1772px 1463px #FFF , 1581px 1115px #FFF , 768px 1514px #FFF , 195px 2942px #FFF , 1824px 1137px #FFF , 2513px 329px #FFF , 1951px 125px #FFF , 2857px 2429px #FFF , 56px 150px #FFF , 1723px 2715px #FFF , 774px 838px #FFF , 2594px 2630px #FFF , 2394px 1089px #FFF , 2411px 2858px #FFF , 423px 840px #FFF , 1283px 465px #FFF , 2744px 876px #FFF , 1086px 539px #FFF , 1464px 1996px #FFF , 1687px 557px #FFF , 2780px 2589px #FFF , 1465px 645px #FFF , 2535px 650px #FFF , 2652px 142px #FFF , 57px 2683px #FFF , 1690px 2588px #FFF , 1428px 1575px #FFF , 2571px 127px #FFF , 1697px 881px #FFF , 2336px 405px #FFF , 860px 920px #FFF , 460px 1901px #FFF , 1638px 2735px #FFF , 1897px 630px #FFF , 1368px 1078px #FFF , 1140px 1348px #FFF , 894px 1104px #FFF , 2915px 2863px #FFF , 411px 270px #FFF , 133px 2324px #FFF , 2639px 1078px #FFF , 2053px 455px #FFF , 2261px 2566px #FFF , 2975px 473px #FFF , 2188px 2853px #FFF , 2863px 1113px #FFF , 2987px 2913px #FFF , 601px 1453px #FFF , 1856px 2282px #FFF , 2121px 207px #FFF , 1790px 22px #FFF , 1003px 810px #FFF , 2148px 1402px #FFF , 491px 4px #FFF , 8px 794px #FFF , 723px 2814px #FFF , 1065px 909px #FFF , 1871px 122px #FFF , 2765px 2691px #FFF , 2704px 1653px #FFF , 1586px 13px #FFF , 1235px 357px #FFF , 1254px 1897px #FFF , 2011px 1495px #FFF , 1751px 974px #FFF , 2843px 366px #FFF , 234px 1167px #FFF , 2598px 1469px #FFF , 1840px 255px #FFF , 2272px 820px #FFF , 2285px 2249px #FFF , 1093px 104px #FFF , 1877px 1075px #FFF , 886px 296px #FFF , 423px 2132px #FFF , 2399px 1998px #FFF , 614px 5px #FFF , 2034px 920px #FFF , 1501px 1656px #FFF , 1548px 2079px #FFF , 1435px 1857px #FFF , 1710px 2528px #FFF , 670px 1870px #FFF , 981px 1932px #FFF , 387px 2887px #FFF , 2891px 552px #FFF , 632px 1788px #FFF , 2221px 2005px #FFF , 1976px 2369px #FFF , 2436px 2509px #FFF , 2932px 2360px #FFF , 844px 2112px #FFF , 2926px 1836px #FFF , 1927px 2465px #FFF , 2973px 978px #FFF , 669px 602px #FFF , 1109px 25px #FFF , 2404px 867px #FFF , 2618px 2670px #FFF , 2944px 1523px #FFF , 1112px 751px #FFF , 2695px 2741px #FFF , 249px 160px #FFF , 1786px 1543px #FFF , 532px 1040px #FFF , 2210px 2520px #FFF , 513px 856px #FFF , 909px 1386px #FFF , 822px 2173px #FFF , 1970px 1639px #FFF , 1572px 728px #FFF , 98px 1102px #FFF , 2724px 2923px #FFF , 1585px 2488px #FFF , 1330px 10px #FFF , 2132px 2168px #FFF , 1235px 2905px #FFF , 605px 1482px #FFF , 809px 2015px #FFF , 496px 1986px #FFF , 1293px 603px #FFF , 236px 984px #FFF , 2637px 1849px #FFF , 1268px 1960px #FFF , 2506px 2702px #FFF , 1859px 2680px #FFF , 1456px 192px #FFF , 2890px 1351px #FFF , 854px 1777px #FFF , 1239px 173px #FFF , 2452px 281px #FFF , 2260px 70px #FFF , 339px 1104px #FFF , 1323px 2408px #FFF , 2828px 1px #FFF , 1686px 719px #FFF , 243px 600px #FFF , 2644px 1160px #FFF , 2405px 249px #FFF , 331px 1919px #FFF , 1471px 1880px #FFF , 580px 382px #FFF , 707px 1377px #FFF , 2861px 631px #FFF , 1729px 2761px #FFF , 1686px 2576px #FFF , 1220px 726px #FFF , 681px 2817px #FFF , 2726px 2207px #FFF , 2090px 45px #FFF , 1099px 2026px #FFF , 2327px 79px #FFF , 2923px 1920px #FFF , 1751px 517px #FFF , 1683px 2434px #FFF , 1384px 2557px #FFF , 895px 1621px #FFF , 1849px 2065px #FFF , 2737px 1337px #FFF , 341px 336px #FFF , 1032px 2115px #FFF , 2929px 2070px #FFF , 578px 291px #FFF , 1763px 1261px #FFF , 1002px 2156px #FFF , 2691px 944px #FFF , 1127px 304px #FFF , 1861px 2664px #FFF , 1918px 2553px #FFF , 525px 2264px #FFF , 1895px 1932px #FFF , 1569px 2550px #FFF , 2042px 2532px #FFF , 2286px 61px #FFF , 2856px 2710px #FFF , 1943px 520px #FFF , 131px 182px #FFF , 1148px 1840px #FFF , 2243px 2525px #FFF;
52 | animation: animStar 100s linear infinite;
53 | }
54 | #stars2:after {
55 | content: " ";
56 | position: absolute;
57 | top: 2000px;
58 | width: 2px;
59 | height: 2px;
60 | background: transparent;
61 | box-shadow: 1345px 1365px #FFF , 1627px 989px #FFF , 1864px 2654px #FFF , 615px 2654px #FFF , 2357px 1943px #FFF , 258px 141px #FFF , 799px 1506px #FFF , 983px 951px #FFF , 1828px 2528px #FFF , 1382px 519px #FFF , 657px 1372px #FFF , 1139px 887px #FFF , 1596px 2407px #FFF , 758px 834px #FFF , 2574px 899px #FFF , 704px 816px #FFF , 865px 1760px #FFF , 2494px 2238px #FFF , 440px 588px #FFF , 2261px 1339px #FFF , 2047px 200px #FFF , 1772px 1463px #FFF , 1581px 1115px #FFF , 768px 1514px #FFF , 195px 2942px #FFF , 1824px 1137px #FFF , 2513px 329px #FFF , 1951px 125px #FFF , 2857px 2429px #FFF , 56px 150px #FFF , 1723px 2715px #FFF , 774px 838px #FFF , 2594px 2630px #FFF , 2394px 1089px #FFF , 2411px 2858px #FFF , 423px 840px #FFF , 1283px 465px #FFF , 2744px 876px #FFF , 1086px 539px #FFF , 1464px 1996px #FFF , 1687px 557px #FFF , 2780px 2589px #FFF , 1465px 645px #FFF , 2535px 650px #FFF , 2652px 142px #FFF , 57px 2683px #FFF , 1690px 2588px #FFF , 1428px 1575px #FFF , 2571px 127px #FFF , 1697px 881px #FFF , 2336px 405px #FFF , 860px 920px #FFF , 460px 1901px #FFF , 1638px 2735px #FFF , 1897px 630px #FFF , 1368px 1078px #FFF , 1140px 1348px #FFF , 894px 1104px #FFF , 2915px 2863px #FFF , 411px 270px #FFF , 133px 2324px #FFF , 2639px 1078px #FFF , 2053px 455px #FFF , 2261px 2566px #FFF , 2975px 473px #FFF , 2188px 2853px #FFF , 2863px 1113px #FFF , 2987px 2913px #FFF , 601px 1453px #FFF , 1856px 2282px #FFF , 2121px 207px #FFF , 1790px 22px #FFF , 1003px 810px #FFF , 2148px 1402px #FFF , 491px 4px #FFF , 8px 794px #FFF , 723px 2814px #FFF , 1065px 909px #FFF , 1871px 122px #FFF , 2765px 2691px #FFF , 2704px 1653px #FFF , 1586px 13px #FFF , 1235px 357px #FFF , 1254px 1897px #FFF , 2011px 1495px #FFF , 1751px 974px #FFF , 2843px 366px #FFF , 234px 1167px #FFF , 2598px 1469px #FFF , 1840px 255px #FFF , 2272px 820px #FFF , 2285px 2249px #FFF , 1093px 104px #FFF , 1877px 1075px #FFF , 886px 296px #FFF , 423px 2132px #FFF , 2399px 1998px #FFF , 614px 5px #FFF , 2034px 920px #FFF , 1501px 1656px #FFF , 1548px 2079px #FFF , 1435px 1857px #FFF , 1710px 2528px #FFF , 670px 1870px #FFF , 981px 1932px #FFF , 387px 2887px #FFF , 2891px 552px #FFF , 632px 1788px #FFF , 2221px 2005px #FFF , 1976px 2369px #FFF , 2436px 2509px #FFF , 2932px 2360px #FFF , 844px 2112px #FFF , 2926px 1836px #FFF , 1927px 2465px #FFF , 2973px 978px #FFF , 669px 602px #FFF , 1109px 25px #FFF , 2404px 867px #FFF , 2618px 2670px #FFF , 2944px 1523px #FFF , 1112px 751px #FFF , 2695px 2741px #FFF , 249px 160px #FFF , 1786px 1543px #FFF , 532px 1040px #FFF , 2210px 2520px #FFF , 513px 856px #FFF , 909px 1386px #FFF , 822px 2173px #FFF , 1970px 1639px #FFF , 1572px 728px #FFF , 98px 1102px #FFF , 2724px 2923px #FFF , 1585px 2488px #FFF , 1330px 10px #FFF , 2132px 2168px #FFF , 1235px 2905px #FFF , 605px 1482px #FFF , 809px 2015px #FFF , 496px 1986px #FFF , 1293px 603px #FFF , 236px 984px #FFF , 2637px 1849px #FFF , 1268px 1960px #FFF , 2506px 2702px #FFF , 1859px 2680px #FFF , 1456px 192px #FFF , 2890px 1351px #FFF , 854px 1777px #FFF , 1239px 173px #FFF , 2452px 281px #FFF , 2260px 70px #FFF , 339px 1104px #FFF , 1323px 2408px #FFF , 2828px 1px #FFF , 1686px 719px #FFF , 243px 600px #FFF , 2644px 1160px #FFF , 2405px 249px #FFF , 331px 1919px #FFF , 1471px 1880px #FFF , 580px 382px #FFF , 707px 1377px #FFF , 2861px 631px #FFF , 1729px 2761px #FFF , 1686px 2576px #FFF , 1220px 726px #FFF , 681px 2817px #FFF , 2726px 2207px #FFF , 2090px 45px #FFF , 1099px 2026px #FFF , 2327px 79px #FFF , 2923px 1920px #FFF , 1751px 517px #FFF , 1683px 2434px #FFF , 1384px 2557px #FFF , 895px 1621px #FFF , 1849px 2065px #FFF , 2737px 1337px #FFF , 341px 336px #FFF , 1032px 2115px #FFF , 2929px 2070px #FFF , 578px 291px #FFF , 1763px 1261px #FFF , 1002px 2156px #FFF , 2691px 944px #FFF , 1127px 304px #FFF , 1861px 2664px #FFF , 1918px 2553px #FFF , 525px 2264px #FFF , 1895px 1932px #FFF , 1569px 2550px #FFF , 2042px 2532px #FFF , 2286px 61px #FFF , 2856px 2710px #FFF , 1943px 520px #FFF , 131px 182px #FFF , 1148px 1840px #FFF , 2243px 2525px #FFF;
62 | }
63 |
64 | #stars3 {
65 | width: 3px;
66 | height: 3px;
67 | background: transparent;
68 | box-shadow: 2939px 2575px #FFF , 2918px 610px #FFF , 238px 2975px #FFF , 2810px 209px #FFF , 2786px 2325px #FFF , 2026px 1425px #FFF , 2313px 412px #FFF , 838px 2589px #FFF , 2336px 408px #FFF , 2589px 1907px #FFF , 1491px 2544px #FFF , 1969px 2526px #FFF , 1889px 337px #FFF , 1845px 2019px #FFF , 81px 2363px #FFF , 1245px 2347px #FFF , 1572px 1933px #FFF , 2918px 2004px #FFF , 973px 1938px #FFF , 1079px 2650px #FFF , 1300px 2897px #FFF , 2326px 267px #FFF , 2584px 2561px #FFF , 2970px 2224px #FFF , 1031px 949px #FFF , 856px 449px #FFF , 48px 109px #FFF , 132px 648px #FFF , 2638px 2561px #FFF , 2393px 134px #FFF , 16px 2881px #FFF , 2827px 1394px #FFF , 2053px 2616px #FFF , 309px 2290px #FFF , 2835px 317px #FFF , 821px 34px #FFF , 2358px 2112px #FFF , 179px 249px #FFF , 803px 2573px #FFF , 1515px 561px #FFF , 2986px 2425px #FFF , 365px 1465px #FFF , 660px 980px #FFF , 2337px 327px #FFF , 2229px 1692px #FFF , 2976px 2494px #FFF , 188px 6px #FFF , 2059px 1627px #FFF , 2244px 1505px #FFF , 633px 933px #FFF , 2479px 2289px #FFF , 901px 1071px #FFF , 1201px 300px #FFF , 2667px 651px #FFF , 2988px 2043px #FFF , 2023px 2513px #FFF , 543px 2372px #FFF , 2005px 186px #FFF , 1043px 1354px #FFF , 534px 1063px #FFF , 152px 2252px #FFF , 2502px 1165px #FFF , 1341px 1258px #FFF , 1316px 1759px #FFF , 998px 462px #FFF , 1558px 2580px #FFF , 1189px 1715px #FFF , 89px 1411px #FFF , 837px 2442px #FFF , 932px 337px #FFF , 18px 1532px #FFF , 2934px 1434px #FFF , 1967px 1917px #FFF , 2421px 2448px #FFF , 1390px 1342px #FFF , 1297px 1170px #FFF , 75px 100px #FFF , 2278px 1181px #FFF , 1831px 2318px #FFF , 1936px 234px #FFF , 891px 1837px #FFF , 1870px 2732px #FFF , 1719px 2353px #FFF , 770px 2058px #FFF , 940px 1254px #FFF , 2571px 2630px #FFF , 667px 2001px #FFF , 1322px 2395px #FFF , 1268px 264px #FFF , 503px 512px #FFF , 725px 1214px #FFF , 2941px 1835px #FFF , 1997px 2130px #FFF , 1079px 1969px #FFF , 794px 2771px #FFF , 468px 1121px #FFF , 276px 1590px #FFF , 2546px 1389px #FFF , 799px 2162px #FFF , 1570px 1355px #FFF;
69 | animation: animStar 150s linear infinite;
70 | }
71 | #stars3:after {
72 | content: " ";
73 | position: absolute;
74 | top: 2000px;
75 | width: 3px;
76 | height: 3px;
77 | background: transparent;
78 | box-shadow: 2939px 2575px #FFF , 2918px 610px #FFF , 238px 2975px #FFF , 2810px 209px #FFF , 2786px 2325px #FFF , 2026px 1425px #FFF , 2313px 412px #FFF , 838px 2589px #FFF , 2336px 408px #FFF , 2589px 1907px #FFF , 1491px 2544px #FFF , 1969px 2526px #FFF , 1889px 337px #FFF , 1845px 2019px #FFF , 81px 2363px #FFF , 1245px 2347px #FFF , 1572px 1933px #FFF , 2918px 2004px #FFF , 973px 1938px #FFF , 1079px 2650px #FFF , 1300px 2897px #FFF , 2326px 267px #FFF , 2584px 2561px #FFF , 2970px 2224px #FFF , 1031px 949px #FFF , 856px 449px #FFF , 48px 109px #FFF , 132px 648px #FFF , 2638px 2561px #FFF , 2393px 134px #FFF , 16px 2881px #FFF , 2827px 1394px #FFF , 2053px 2616px #FFF , 309px 2290px #FFF , 2835px 317px #FFF , 821px 34px #FFF , 2358px 2112px #FFF , 179px 249px #FFF , 803px 2573px #FFF , 1515px 561px #FFF , 2986px 2425px #FFF , 365px 1465px #FFF , 660px 980px #FFF , 2337px 327px #FFF , 2229px 1692px #FFF , 2976px 2494px #FFF , 188px 6px #FFF , 2059px 1627px #FFF , 2244px 1505px #FFF , 633px 933px #FFF , 2479px 2289px #FFF , 901px 1071px #FFF , 1201px 300px #FFF , 2667px 651px #FFF , 2988px 2043px #FFF , 2023px 2513px #FFF , 543px 2372px #FFF , 2005px 186px #FFF , 1043px 1354px #FFF , 534px 1063px #FFF , 152px 2252px #FFF , 2502px 1165px #FFF , 1341px 1258px #FFF , 1316px 1759px #FFF , 998px 462px #FFF , 1558px 2580px #FFF , 1189px 1715px #FFF , 89px 1411px #FFF , 837px 2442px #FFF , 932px 337px #FFF , 18px 1532px #FFF , 2934px 1434px #FFF , 1967px 1917px #FFF , 2421px 2448px #FFF , 1390px 1342px #FFF , 1297px 1170px #FFF , 75px 100px #FFF , 2278px 1181px #FFF , 1831px 2318px #FFF , 1936px 234px #FFF , 891px 1837px #FFF , 1870px 2732px #FFF , 1719px 2353px #FFF , 770px 2058px #FFF , 940px 1254px #FFF , 2571px 2630px #FFF , 667px 2001px #FFF , 1322px 2395px #FFF , 1268px 264px #FFF , 503px 512px #FFF , 725px 1214px #FFF , 2941px 1835px #FFF , 1997px 2130px #FFF , 1079px 1969px #FFF , 794px 2771px #FFF , 468px 1121px #FFF , 276px 1590px #FFF , 2546px 1389px #FFF , 799px 2162px #FFF , 1570px 1355px #FFF;
79 | }
80 |
81 | #title {
82 | position: absolute;
83 | top: 50%;
84 | left: 0;
85 | right: 0;
86 | color: #FFF;
87 | text-align: center;
88 | font-family: "lato", sans-serif;
89 | font-weight: 300;
90 | font-size: 50px;
91 | letter-spacing: 10px;
92 | margin-top: -60px;
93 | padding-left: 10px;
94 | }
95 | #title span {
96 | background: -webkit-linear-gradient(white, #38495a);
97 | -webkit-background-clip: text;
98 | -webkit-text-fill-color: transparent;
99 | }
100 |
101 | @keyframes animStar {
102 | from {
103 | transform: translateY(0px);
104 | }
105 | to {
106 | transform: translateY(-2000px);
107 | }
108 | }
109 |
110 |
111 | body {
112 | color: white;
113 | font-family: sans-serif;
114 | text-align: center;
115 | }
116 | img {
117 | height: 128px;
118 | width: 128px;
119 | margin: 32px auto;
120 | display: block;
121 | }
122 | a {
123 | text-decoration: none;
124 | color: #3498db
125 | }
126 | a:hover {
127 | text-decoration: underline;
128 | }
--------------------------------------------------------------------------------
/yarn.lock:
--------------------------------------------------------------------------------
1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
2 | # yarn lockfile v1
3 |
4 |
5 | "@babel/helper-validator-identifier@^7.12.11":
6 | version "7.12.11"
7 | resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.12.11.tgz#c9a1f021917dcb5ccf0d4e453e399022981fc9ed"
8 | integrity sha512-np/lG3uARFybkoHokJUmf1QfEvRVCPbmQeUQpKow5cQ3xWrV9i3rUHodKDJPQfTVX61qKi+UdYk8kik84n7XOw==
9 |
10 | "@babel/parser@^7.6.0", "@babel/parser@^7.9.6":
11 | version "7.12.11"
12 | resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.12.11.tgz#9ce3595bcd74bc5c466905e86c535b8b25011e79"
13 | integrity sha512-N3UxG+uuF4CMYoNj8AhnbAcJF0PiuJ9KHuy1lQmkYsxTer/MAH9UBNHsBoAX/4s6NvlDD047No8mYVGGzLL4hg==
14 |
15 | "@babel/types@^7.6.1", "@babel/types@^7.9.6":
16 | version "7.12.12"
17 | resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.12.12.tgz#4608a6ec313abbd87afa55004d373ad04a96c299"
18 | integrity sha512-lnIX7piTxOH22xE7fDXDbSHg9MM1/6ORnafpJmov5rs0kX5g4BZxeXNJLXsMRiO0U5Rb8/FvMS6xlTnTHvxonQ==
19 | dependencies:
20 | "@babel/helper-validator-identifier" "^7.12.11"
21 | lodash "^4.17.19"
22 | to-fast-properties "^2.0.0"
23 |
24 | "@types/body-parser@*":
25 | version "1.19.0"
26 | resolved "https://registry.yarnpkg.com/@types/body-parser/-/body-parser-1.19.0.tgz#0685b3c47eb3006ffed117cdd55164b61f80538f"
27 | integrity sha512-W98JrE0j2K78swW4ukqMleo8R7h/pFETjM2DQ90MF6XK2i4LO4W3gQ71Lt4w3bfm2EvVSyWHplECvB5sK22yFQ==
28 | dependencies:
29 | "@types/connect" "*"
30 | "@types/node" "*"
31 |
32 | "@types/connect@*":
33 | version "3.4.34"
34 | resolved "https://registry.yarnpkg.com/@types/connect/-/connect-3.4.34.tgz#170a40223a6d666006d93ca128af2beb1d9b1901"
35 | integrity sha512-ePPA/JuI+X0vb+gSWlPKOY0NdNAie/rPUqX2GUPpbZwiKTkSPhjXWuee47E4MtE54QVzGCQMQkAL6JhV2E1+cQ==
36 | dependencies:
37 | "@types/node" "*"
38 |
39 | "@types/engine.io@*":
40 | version "3.1.5"
41 | resolved "https://registry.yarnpkg.com/@types/engine.io/-/engine.io-3.1.5.tgz#ed280bec61d6226c0bfcb03f2820c4e65391dac2"
42 | integrity sha512-DLVpLEGTEZGBXOYoYoagHSxXkDHONc0fZouF2ayw7Q18aRu1Afwci+1CFKvPpouCUOVWP+dmCaAWpQjswe7kpg==
43 | dependencies:
44 | "@types/node" "*"
45 |
46 | "@types/express-serve-static-core@^4.17.18":
47 | version "4.17.28"
48 | resolved "https://registry.yarnpkg.com/@types/express-serve-static-core/-/express-serve-static-core-4.17.28.tgz#c47def9f34ec81dc6328d0b1b5303d1ec98d86b8"
49 | integrity sha512-P1BJAEAW3E2DJUlkgq4tOL3RyMunoWXqbSCygWo5ZIWTjUgN1YnaXWW4VWl/oc8vs/XoYibEGBKP0uZyF4AHig==
50 | dependencies:
51 | "@types/node" "*"
52 | "@types/qs" "*"
53 | "@types/range-parser" "*"
54 |
55 | "@types/express@^4.17.13":
56 | version "4.17.13"
57 | resolved "https://registry.yarnpkg.com/@types/express/-/express-4.17.13.tgz#a76e2995728999bab51a33fabce1d705a3709034"
58 | integrity sha512-6bSZTPaTIACxn48l50SR+axgrqm6qXFIxrdAKaG6PaJk3+zuUr35hBlgT7vOmJcum+OEaIBLtHV/qloEAFITeA==
59 | dependencies:
60 | "@types/body-parser" "*"
61 | "@types/express-serve-static-core" "^4.17.18"
62 | "@types/qs" "*"
63 | "@types/serve-static" "*"
64 |
65 | "@types/mime@*":
66 | version "2.0.3"
67 | resolved "https://registry.yarnpkg.com/@types/mime/-/mime-2.0.3.tgz#c893b73721db73699943bfc3653b1deb7faa4a3a"
68 | integrity sha512-Jus9s4CDbqwocc5pOAnh8ShfrnMcPHuJYzVcSUU7lrh8Ni5HuIqX3oilL86p3dlTrk0LzHRCgA/GQ7uNCw6l2Q==
69 |
70 | "@types/morgan@^1.9.3":
71 | version "1.9.3"
72 | resolved "https://registry.yarnpkg.com/@types/morgan/-/morgan-1.9.3.tgz#ae04180dff02c437312bc0cfb1e2960086b2f540"
73 | integrity sha512-BiLcfVqGBZCyNCnCH3F4o2GmDLrpy0HeBVnNlyZG4fo88ZiE9SoiBe3C+2ezuwbjlEyT+PDZ17//TAlRxAn75Q==
74 | dependencies:
75 | "@types/node" "*"
76 |
77 | "@types/node@*":
78 | version "14.14.20"
79 | resolved "https://registry.yarnpkg.com/@types/node/-/node-14.14.20.tgz#f7974863edd21d1f8a494a73e8e2b3658615c340"
80 | integrity sha512-Y93R97Ouif9JEOWPIUyU+eyIdyRqQR0I8Ez1dzku4hDx34NWh4HbtIc3WNzwB1Y9ULvNGeu5B8h8bVL5cAk4/A==
81 |
82 | "@types/qs@*":
83 | version "6.9.5"
84 | resolved "https://registry.yarnpkg.com/@types/qs/-/qs-6.9.5.tgz#434711bdd49eb5ee69d90c1d67c354a9a8ecb18b"
85 | integrity sha512-/JHkVHtx/REVG0VVToGRGH2+23hsYLHdyG+GrvoUGlGAd0ErauXDyvHtRI/7H7mzLm+tBCKA7pfcpkQ1lf58iQ==
86 |
87 | "@types/range-parser@*":
88 | version "1.2.3"
89 | resolved "https://registry.yarnpkg.com/@types/range-parser/-/range-parser-1.2.3.tgz#7ee330ba7caafb98090bece86a5ee44115904c2c"
90 | integrity sha512-ewFXqrQHlFsgc09MK5jP5iR7vumV/BYayNC6PgJO2LPe8vrnNFyjQjSppfEngITi0qvfKtzFvgKymGheFM9UOA==
91 |
92 | "@types/serve-static@*":
93 | version "1.13.8"
94 | resolved "https://registry.yarnpkg.com/@types/serve-static/-/serve-static-1.13.8.tgz#851129d434433c7082148574ffec263d58309c46"
95 | integrity sha512-MoJhSQreaVoL+/hurAZzIm8wafFR6ajiTM1m4A0kv6AGeVBl4r4pOV8bGFrjjq1sGxDTnCoF8i22o0/aE5XCyA==
96 | dependencies:
97 | "@types/mime" "*"
98 | "@types/node" "*"
99 |
100 | "@types/socket.io-parser@*":
101 | version "2.2.1"
102 | resolved "https://registry.yarnpkg.com/@types/socket.io-parser/-/socket.io-parser-2.2.1.tgz#dc94aed303839487f4975249a32a548109ea3647"
103 | integrity sha512-+JNb+7N7tSINyXPxAJb62+NcpC1x/fPn7z818W4xeNCdPTp6VsO/X8fCsg6+ug4a56m1v9sEiTIIUKVupcHOFQ==
104 | dependencies:
105 | "@types/node" "*"
106 |
107 | "@types/socket.io@^2.1.13":
108 | version "2.1.13"
109 | resolved "https://registry.yarnpkg.com/@types/socket.io/-/socket.io-2.1.13.tgz#b6d694234e99956c96ff99e197eda824b6f9dc48"
110 | integrity sha512-JRgH3nCgsWel4OPANkhH8TelpXvacAJ9VeryjuqCDiaVDMpLysd6sbt0dr6Z15pqH3p2YpOT3T1C5vQ+O/7uyg==
111 | dependencies:
112 | "@types/engine.io" "*"
113 | "@types/node" "*"
114 | "@types/socket.io-parser" "*"
115 |
116 | accepts@~1.3.4:
117 | version "1.3.7"
118 | resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.7.tgz#531bc726517a3b2b41f850021c6cc15eaab507cd"
119 | integrity sha512-Il80Qs2WjYlJIBNzNkK6KYqlVMTbZLXgHx2oT0pU/fjRHyEp+PEfEPY0R3WCwAGVOtauxh1hOxNgIf5bv7dQpA==
120 | dependencies:
121 | mime-types "~2.1.24"
122 | negotiator "0.6.2"
123 |
124 | accepts@~1.3.8:
125 | version "1.3.8"
126 | resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.8.tgz#0bf0be125b67014adcb0b0921e62db7bffe16b2e"
127 | integrity sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==
128 | dependencies:
129 | mime-types "~2.1.34"
130 | negotiator "0.6.3"
131 |
132 | acorn@^7.1.1:
133 | version "7.4.1"
134 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.4.1.tgz#feaed255973d2e77555b83dbc08851a6c63520fa"
135 | integrity sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==
136 |
137 | after@0.8.2:
138 | version "0.8.2"
139 | resolved "https://registry.yarnpkg.com/after/-/after-0.8.2.tgz#fedb394f9f0e02aa9768e702bda23b505fae7e1f"
140 | integrity sha1-/ts5T58OAqqXaOcCvaI7UF+ufh8=
141 |
142 | argparse@^1.0.7:
143 | version "1.0.10"
144 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911"
145 | integrity sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==
146 | dependencies:
147 | sprintf-js "~1.0.2"
148 |
149 | array-flatten@1.1.1:
150 | version "1.1.1"
151 | resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-1.1.1.tgz#9a5f699051b1e7073328f2a008968b64ea2955d2"
152 | integrity sha1-ml9pkFGx5wczKPKgCJaLZOopVdI=
153 |
154 | arraybuffer.slice@~0.0.7:
155 | version "0.0.7"
156 | resolved "https://registry.yarnpkg.com/arraybuffer.slice/-/arraybuffer.slice-0.0.7.tgz#3bbc4275dd584cc1b10809b89d4e8b63a69e7675"
157 | integrity sha512-wGUIVQXuehL5TCqQun8OW81jGzAWycqzFF8lFp+GOM5BXLYj3bKNsYC4daB7n6XjCqxQA/qgTJ+8ANR3acjrog==
158 |
159 | asap@~2.0.3:
160 | version "2.0.6"
161 | resolved "https://registry.yarnpkg.com/asap/-/asap-2.0.6.tgz#e50347611d7e690943208bbdafebcbc2fb866d46"
162 | integrity sha1-5QNHYR1+aQlDIIu9r+vLwvuGbUY=
163 |
164 | assert-never@^1.2.1:
165 | version "1.2.1"
166 | resolved "https://registry.yarnpkg.com/assert-never/-/assert-never-1.2.1.tgz#11f0e363bf146205fb08193b5c7b90f4d1cf44fe"
167 | integrity sha512-TaTivMB6pYI1kXwrFlEhLeGfOqoDNdTxjCdwRfFFkEA30Eu+k48W34nlok2EYWJfFFzqaEmichdNM7th6M5HNw==
168 |
169 | babel-walk@3.0.0-canary-5:
170 | version "3.0.0-canary-5"
171 | resolved "https://registry.yarnpkg.com/babel-walk/-/babel-walk-3.0.0-canary-5.tgz#f66ecd7298357aee44955f235a6ef54219104b11"
172 | integrity sha512-GAwkz0AihzY5bkwIY5QDR+LvsRQgB/B+1foMPvi0FZPMl5fjD7ICiznUiBdLYMH1QYe6vqu4gWYytZOccLouFw==
173 | dependencies:
174 | "@babel/types" "^7.9.6"
175 |
176 | backo2@1.0.2:
177 | version "1.0.2"
178 | resolved "https://registry.yarnpkg.com/backo2/-/backo2-1.0.2.tgz#31ab1ac8b129363463e35b3ebb69f4dfcfba7947"
179 | integrity sha1-MasayLEpNjRj41s+u2n038+6eUc=
180 |
181 | base64-arraybuffer@0.1.4:
182 | version "0.1.4"
183 | resolved "https://registry.yarnpkg.com/base64-arraybuffer/-/base64-arraybuffer-0.1.4.tgz#9818c79e059b1355f97e0428a017c838e90ba812"
184 | integrity sha1-mBjHngWbE1X5fgQooBfIOOkLqBI=
185 |
186 | base64-js@^1.3.1:
187 | version "1.5.1"
188 | resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.5.1.tgz#1b1b440160a5bf7ad40b650f095963481903930a"
189 | integrity sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==
190 |
191 | base64id@2.0.0:
192 | version "2.0.0"
193 | resolved "https://registry.yarnpkg.com/base64id/-/base64id-2.0.0.tgz#2770ac6bc47d312af97a8bf9a634342e0cd25cb6"
194 | integrity sha512-lGe34o6EHj9y3Kts9R4ZYs/Gr+6N7MCaMlIFA3F1R2O5/m7K06AxfSeO5530PEERE6/WyEg3lsuyw4GHlPZHog==
195 |
196 | basic-auth@~2.0.1:
197 | version "2.0.1"
198 | resolved "https://registry.yarnpkg.com/basic-auth/-/basic-auth-2.0.1.tgz#b998279bf47ce38344b4f3cf916d4679bbf51e3a"
199 | integrity sha512-NF+epuEdnUYVlGuhaxbbq+dvJttwLnGY+YixlXlME5KpQ5W3CnXA5cVTneY3SPbPDRkcjMbifrwmFYcClgOZeg==
200 | dependencies:
201 | safe-buffer "5.1.2"
202 |
203 | blob@0.0.5:
204 | version "0.0.5"
205 | resolved "https://registry.yarnpkg.com/blob/-/blob-0.0.5.tgz#d680eeef25f8cd91ad533f5b01eed48e64caf683"
206 | integrity sha512-gaqbzQPqOoamawKg0LGVd7SzLgXS+JH61oWprSLH+P+abTczqJbhTR8CmJ2u9/bUYNmHTGJx/UEmn6doAvvuig==
207 |
208 | body-parser@1.19.2:
209 | version "1.19.2"
210 | resolved "https://registry.yarnpkg.com/body-parser/-/body-parser-1.19.2.tgz#4714ccd9c157d44797b8b5607d72c0b89952f26e"
211 | integrity sha512-SAAwOxgoCKMGs9uUAUFHygfLAyaniaoun6I8mFY9pRAJL9+Kec34aU+oIjDhTycub1jozEfEwx1W1IuOYxVSFw==
212 | dependencies:
213 | bytes "3.1.2"
214 | content-type "~1.0.4"
215 | debug "2.6.9"
216 | depd "~1.1.2"
217 | http-errors "1.8.1"
218 | iconv-lite "0.4.24"
219 | on-finished "~2.3.0"
220 | qs "6.9.7"
221 | raw-body "2.4.3"
222 | type-is "~1.6.18"
223 |
224 | buffer@^5.1.0:
225 | version "5.7.1"
226 | resolved "https://registry.yarnpkg.com/buffer/-/buffer-5.7.1.tgz#ba62e7c13133053582197160851a8f648e99eed0"
227 | integrity sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==
228 | dependencies:
229 | base64-js "^1.3.1"
230 | ieee754 "^1.1.13"
231 |
232 | bytes@3.1.2:
233 | version "3.1.2"
234 | resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.1.2.tgz#8b0beeb98605adf1b128fa4386403c009e0221a5"
235 | integrity sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==
236 |
237 | character-parser@^2.2.0:
238 | version "2.2.0"
239 | resolved "https://registry.yarnpkg.com/character-parser/-/character-parser-2.2.0.tgz#c7ce28f36d4bcd9744e5ffc2c5fcde1c73261fc0"
240 | integrity sha1-x84o821LzZdE5f/CxfzeHHMmH8A=
241 | dependencies:
242 | is-regex "^1.0.3"
243 |
244 | colors@1.4.0:
245 | version "1.4.0"
246 | resolved "https://registry.yarnpkg.com/colors/-/colors-1.4.0.tgz#c50491479d4c1bdaed2c9ced32cf7c7dc2360f78"
247 | integrity sha512-a+UqTh4kgZg/SlGvfbzDHpgRu7AAQOmmqRHJnxhRZICKFUT91brVhNNt58CMWU9PsBbv3PDCZUHbVxuDiH2mtA==
248 |
249 | component-bind@1.0.0:
250 | version "1.0.0"
251 | resolved "https://registry.yarnpkg.com/component-bind/-/component-bind-1.0.0.tgz#00c608ab7dcd93897c0009651b1d3a8e1e73bbd1"
252 | integrity sha1-AMYIq33Nk4l8AAllGx06jh5zu9E=
253 |
254 | component-emitter@1.2.1:
255 | version "1.2.1"
256 | resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.2.1.tgz#137918d6d78283f7df7a6b7c5a63e140e69425e6"
257 | integrity sha1-E3kY1teCg/ffemt8WmPhQOaUJeY=
258 |
259 | component-emitter@~1.3.0:
260 | version "1.3.0"
261 | resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.3.0.tgz#16e4070fba8ae29b679f2215853ee181ab2eabc0"
262 | integrity sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==
263 |
264 | component-inherit@0.0.3:
265 | version "0.0.3"
266 | resolved "https://registry.yarnpkg.com/component-inherit/-/component-inherit-0.0.3.tgz#645fc4adf58b72b649d5cae65135619db26ff143"
267 | integrity sha1-ZF/ErfWLcrZJ1crmUTVhnbJv8UM=
268 |
269 | constantinople@^4.0.1:
270 | version "4.0.1"
271 | resolved "https://registry.yarnpkg.com/constantinople/-/constantinople-4.0.1.tgz#0def113fa0e4dc8de83331a5cf79c8b325213151"
272 | integrity sha512-vCrqcSIq4//Gx74TXXCGnHpulY1dskqLTFGDmhrGxzeXL8lF8kvXv6mpNWlJj1uD4DW23D4ljAqbY4RRaaUZIw==
273 | dependencies:
274 | "@babel/parser" "^7.6.0"
275 | "@babel/types" "^7.6.1"
276 |
277 | content-disposition@0.5.4:
278 | version "0.5.4"
279 | resolved "https://registry.yarnpkg.com/content-disposition/-/content-disposition-0.5.4.tgz#8b82b4efac82512a02bb0b1dcec9d2c5e8eb5bfe"
280 | integrity sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==
281 | dependencies:
282 | safe-buffer "5.2.1"
283 |
284 | content-type@~1.0.4:
285 | version "1.0.4"
286 | resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.4.tgz#e138cc75e040c727b1966fe5e5f8c9aee256fe3b"
287 | integrity sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==
288 |
289 | cookie-signature@1.0.6:
290 | version "1.0.6"
291 | resolved "https://registry.yarnpkg.com/cookie-signature/-/cookie-signature-1.0.6.tgz#e303a882b342cc3ee8ca513a79999734dab3ae2c"
292 | integrity sha1-4wOogrNCzD7oylE6eZmXNNqzriw=
293 |
294 | cookie@0.4.2:
295 | version "0.4.2"
296 | resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.4.2.tgz#0e41f24de5ecf317947c82fc789e06a884824432"
297 | integrity sha512-aSWTXFzaKWkvHO1Ny/s+ePFpvKsPnjc551iI41v3ny/ow6tBG5Vd+FuqGNhh1LxOmVzOlGUriIlOaokOvhaStA==
298 |
299 | cookie@~0.4.1:
300 | version "0.4.1"
301 | resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.4.1.tgz#afd713fe26ebd21ba95ceb61f9a8116e50a537d1"
302 | integrity sha512-ZwrFkGJxUR3EIoXtO+yVE69Eb7KlixbaeAWfBQB9vVsNn/o+Yw69gBWSSDK825hQNdN+wF8zELf3dFNl/kxkUA==
303 |
304 | crc@~3.8.0:
305 | version "3.8.0"
306 | resolved "https://registry.yarnpkg.com/crc/-/crc-3.8.0.tgz#ad60269c2c856f8c299e2c4cc0de4556914056c6"
307 | integrity sha512-iX3mfgcTMIq3ZKLIsVFAbv7+Mc10kxabAGQb8HvjA1o3T1PIYprbakQ65d3I+2HGHt6nSKkM9PYjgoJO2KcFBQ==
308 | dependencies:
309 | buffer "^5.1.0"
310 |
311 | date-format@^2.1.0:
312 | version "2.1.0"
313 | resolved "https://registry.yarnpkg.com/date-format/-/date-format-2.1.0.tgz#31d5b5ea211cf5fd764cd38baf9d033df7e125cf"
314 | integrity sha512-bYQuGLeFxhkxNOF3rcMtiZxvCBAquGzZm6oWA1oZ0g2THUzivaRhv8uOhdr19LmoobSOLoIAxeUK2RdbM8IFTA==
315 |
316 | date-format@^3.0.0:
317 | version "3.0.0"
318 | resolved "https://registry.yarnpkg.com/date-format/-/date-format-3.0.0.tgz#eb8780365c7d2b1511078fb491e6479780f3ad95"
319 | integrity sha512-eyTcpKOcamdhWJXj56DpQMo1ylSQpcGtGKXcU0Tb97+K56/CF5amAqqqNj0+KvA0iw2ynxtHWFsPDSClCxe48w==
320 |
321 | dateformat@4.5.1:
322 | version "4.5.1"
323 | resolved "https://registry.yarnpkg.com/dateformat/-/dateformat-4.5.1.tgz#c20e7a9ca77d147906b6dc2261a8be0a5bd2173c"
324 | integrity sha512-OD0TZ+B7yP7ZgpJf5K2DIbj3FZvFvxgFUuaqA/V5zTjAtAAXZ1E8bktHxmAGs4x5b7PflqA9LeQ84Og7wYtF7Q==
325 |
326 | debug@2.6.9:
327 | version "2.6.9"
328 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f"
329 | integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==
330 | dependencies:
331 | ms "2.0.0"
332 |
333 | debug@^4.1.1:
334 | version "4.3.1"
335 | resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.1.tgz#f0d229c505e0c6d8c49ac553d1b13dc183f6b2ee"
336 | integrity sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ==
337 | dependencies:
338 | ms "2.1.2"
339 |
340 | debug@~3.1.0:
341 | version "3.1.0"
342 | resolved "https://registry.yarnpkg.com/debug/-/debug-3.1.0.tgz#5bb5a0672628b64149566ba16819e61518c67261"
343 | integrity sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==
344 | dependencies:
345 | ms "2.0.0"
346 |
347 | debug@~4.1.0:
348 | version "4.1.1"
349 | resolved "https://registry.yarnpkg.com/debug/-/debug-4.1.1.tgz#3b72260255109c6b589cee050f1d516139664791"
350 | integrity sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==
351 | dependencies:
352 | ms "^2.1.1"
353 |
354 | depd@~1.1.2:
355 | version "1.1.2"
356 | resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.2.tgz#9bcd52e14c097763e749b274c4346ed2e560b5a9"
357 | integrity sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=
358 |
359 | depd@~2.0.0:
360 | version "2.0.0"
361 | resolved "https://registry.yarnpkg.com/depd/-/depd-2.0.0.tgz#b696163cc757560d09cf22cc8fad1571b79e76df"
362 | integrity sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==
363 |
364 | destroy@~1.0.4:
365 | version "1.0.4"
366 | resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.0.4.tgz#978857442c44749e4206613e37946205826abd80"
367 | integrity sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA=
368 |
369 | doctypes@^1.1.0:
370 | version "1.1.0"
371 | resolved "https://registry.yarnpkg.com/doctypes/-/doctypes-1.1.0.tgz#ea80b106a87538774e8a3a4a5afe293de489e0a9"
372 | integrity sha1-6oCxBqh1OHdOijpKWv4pPeSJ4Kk=
373 |
374 | dotenv@^16.0.0:
375 | version "16.0.0"
376 | resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-16.0.0.tgz#c619001253be89ebb638d027b609c75c26e47411"
377 | integrity sha512-qD9WU0MPM4SWLPJy/r2Be+2WgQj8plChsyrCNQzW/0WjvcJQiKQJ9mH3ZgB3fxbUUxgc/11ZJ0Fi5KiimWGz2Q==
378 |
379 | ee-first@1.1.1:
380 | version "1.1.1"
381 | resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d"
382 | integrity sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=
383 |
384 | encodeurl@~1.0.2:
385 | version "1.0.2"
386 | resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.2.tgz#ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59"
387 | integrity sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k=
388 |
389 | engine.io-client@~3.5.0:
390 | version "3.5.1"
391 | resolved "https://registry.yarnpkg.com/engine.io-client/-/engine.io-client-3.5.1.tgz#b500458a39c0cd197a921e0e759721a746d0bdb9"
392 | integrity sha512-oVu9kBkGbcggulyVF0kz6BV3ganqUeqXvD79WOFKa+11oK692w1NyFkuEj4xrkFRpZhn92QOqTk4RQq5LiBXbQ==
393 | dependencies:
394 | component-emitter "~1.3.0"
395 | component-inherit "0.0.3"
396 | debug "~3.1.0"
397 | engine.io-parser "~2.2.0"
398 | has-cors "1.1.0"
399 | indexof "0.0.1"
400 | parseqs "0.0.6"
401 | parseuri "0.0.6"
402 | ws "~7.4.2"
403 | xmlhttprequest-ssl "~1.5.4"
404 | yeast "0.1.2"
405 |
406 | engine.io-parser@~2.2.0:
407 | version "2.2.1"
408 | resolved "https://registry.yarnpkg.com/engine.io-parser/-/engine.io-parser-2.2.1.tgz#57ce5611d9370ee94f99641b589f94c97e4f5da7"
409 | integrity sha512-x+dN/fBH8Ro8TFwJ+rkB2AmuVw9Yu2mockR/p3W8f8YtExwFgDvBDi0GWyb4ZLkpahtDGZgtr3zLovanJghPqg==
410 | dependencies:
411 | after "0.8.2"
412 | arraybuffer.slice "~0.0.7"
413 | base64-arraybuffer "0.1.4"
414 | blob "0.0.5"
415 | has-binary2 "~1.0.2"
416 |
417 | engine.io@~3.5.0:
418 | version "3.5.0"
419 | resolved "https://registry.yarnpkg.com/engine.io/-/engine.io-3.5.0.tgz#9d6b985c8a39b1fe87cd91eb014de0552259821b"
420 | integrity sha512-21HlvPUKaitDGE4GXNtQ7PLP0Sz4aWLddMPw2VTyFz1FVZqu/kZsJUO8WNpKuE/OCL7nkfRaOui2ZCJloGznGA==
421 | dependencies:
422 | accepts "~1.3.4"
423 | base64id "2.0.0"
424 | cookie "~0.4.1"
425 | debug "~4.1.0"
426 | engine.io-parser "~2.2.0"
427 | ws "~7.4.2"
428 |
429 | escape-html@~1.0.3:
430 | version "1.0.3"
431 | resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988"
432 | integrity sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg=
433 |
434 | esprima@^4.0.0:
435 | version "4.0.1"
436 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71"
437 | integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==
438 |
439 | etag@~1.8.1:
440 | version "1.8.1"
441 | resolved "https://registry.yarnpkg.com/etag/-/etag-1.8.1.tgz#41ae2eeb65efa62268aebfea83ac7d79299b0887"
442 | integrity sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc=
443 |
444 | express@^4.17.3:
445 | version "4.17.3"
446 | resolved "https://registry.yarnpkg.com/express/-/express-4.17.3.tgz#f6c7302194a4fb54271b73a1fe7a06478c8f85a1"
447 | integrity sha512-yuSQpz5I+Ch7gFrPCk4/c+dIBKlQUxtgwqzph132bsT6qhuzss6I8cLJQz7B3rFblzd6wtcI0ZbGltH/C4LjUg==
448 | dependencies:
449 | accepts "~1.3.8"
450 | array-flatten "1.1.1"
451 | body-parser "1.19.2"
452 | content-disposition "0.5.4"
453 | content-type "~1.0.4"
454 | cookie "0.4.2"
455 | cookie-signature "1.0.6"
456 | debug "2.6.9"
457 | depd "~1.1.2"
458 | encodeurl "~1.0.2"
459 | escape-html "~1.0.3"
460 | etag "~1.8.1"
461 | finalhandler "~1.1.2"
462 | fresh "0.5.2"
463 | merge-descriptors "1.0.1"
464 | methods "~1.1.2"
465 | on-finished "~2.3.0"
466 | parseurl "~1.3.3"
467 | path-to-regexp "0.1.7"
468 | proxy-addr "~2.0.7"
469 | qs "6.9.7"
470 | range-parser "~1.2.1"
471 | safe-buffer "5.2.1"
472 | send "0.17.2"
473 | serve-static "1.14.2"
474 | setprototypeof "1.2.0"
475 | statuses "~1.5.0"
476 | type-is "~1.6.18"
477 | utils-merge "1.0.1"
478 | vary "~1.1.2"
479 |
480 | finalhandler@~1.1.2:
481 | version "1.1.2"
482 | resolved "https://registry.yarnpkg.com/finalhandler/-/finalhandler-1.1.2.tgz#b7e7d000ffd11938d0fdb053506f6ebabe9f587d"
483 | integrity sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==
484 | dependencies:
485 | debug "2.6.9"
486 | encodeurl "~1.0.2"
487 | escape-html "~1.0.3"
488 | on-finished "~2.3.0"
489 | parseurl "~1.3.3"
490 | statuses "~1.5.0"
491 | unpipe "~1.0.0"
492 |
493 | flatted@^2.0.1:
494 | version "2.0.2"
495 | resolved "https://registry.yarnpkg.com/flatted/-/flatted-2.0.2.tgz#4575b21e2bcee7434aa9be662f4b7b5f9c2b5138"
496 | integrity sha512-r5wGx7YeOwNWNlCA0wQ86zKyDLMQr+/RB8xy74M4hTphfmjlijTSSXGuH8rnvKZnfT9i+75zmd8jcKdMR4O6jA==
497 |
498 | forwarded@0.2.0:
499 | version "0.2.0"
500 | resolved "https://registry.yarnpkg.com/forwarded/-/forwarded-0.2.0.tgz#2269936428aad4c15c7ebe9779a84bf0b2a81811"
501 | integrity sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==
502 |
503 | fresh@0.5.2:
504 | version "0.5.2"
505 | resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.5.2.tgz#3d8cadd90d976569fa835ab1f8e4b23a105605a7"
506 | integrity sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac=
507 |
508 | fs-extra@^8.1.0:
509 | version "8.1.0"
510 | resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-8.1.0.tgz#49d43c45a88cd9677668cb7be1b46efdb8d2e1c0"
511 | integrity sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==
512 | dependencies:
513 | graceful-fs "^4.2.0"
514 | jsonfile "^4.0.0"
515 | universalify "^0.1.0"
516 |
517 | function-bind@^1.1.1:
518 | version "1.1.1"
519 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d"
520 | integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==
521 |
522 | graceful-fs@^4.1.6, graceful-fs@^4.2.0:
523 | version "4.2.4"
524 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.4.tgz#2256bde14d3632958c465ebc96dc467ca07a29fb"
525 | integrity sha512-WjKPNJF79dtJAVniUlGGWHYGz2jWxT6VhN/4m1NdkbZ2nOsEF+cI1Edgql5zCRhs/VsQYRvrXctxktVXZUkixw==
526 |
527 | has-binary2@~1.0.2:
528 | version "1.0.3"
529 | resolved "https://registry.yarnpkg.com/has-binary2/-/has-binary2-1.0.3.tgz#7776ac627f3ea77250cfc332dab7ddf5e4f5d11d"
530 | integrity sha512-G1LWKhDSvhGeAQ8mPVQlqNcOB2sJdwATtZKl2pDKKHfpf/rYj24lkinxf69blJbnsvtqqNU+L3SL50vzZhXOnw==
531 | dependencies:
532 | isarray "2.0.1"
533 |
534 | has-cors@1.1.0:
535 | version "1.1.0"
536 | resolved "https://registry.yarnpkg.com/has-cors/-/has-cors-1.1.0.tgz#5e474793f7ea9843d1bb99c23eef49ff126fff39"
537 | integrity sha1-XkdHk/fqmEPRu5nCPu9J/xJv/zk=
538 |
539 | has-symbols@^1.0.1:
540 | version "1.0.1"
541 | resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.1.tgz#9f5214758a44196c406d9bd76cebf81ec2dd31e8"
542 | integrity sha512-PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg==
543 |
544 | has@^1.0.3:
545 | version "1.0.3"
546 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796"
547 | integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==
548 | dependencies:
549 | function-bind "^1.1.1"
550 |
551 | http-errors@1.8.1:
552 | version "1.8.1"
553 | resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.8.1.tgz#7c3f28577cbc8a207388455dbd62295ed07bd68c"
554 | integrity sha512-Kpk9Sm7NmI+RHhnj6OIWDI1d6fIoFAtFt9RLaTMRlg/8w49juAStsrBgp0Dp4OdxdVbRIeKhtCUvoi/RuAhO4g==
555 | dependencies:
556 | depd "~1.1.2"
557 | inherits "2.0.4"
558 | setprototypeof "1.2.0"
559 | statuses ">= 1.5.0 < 2"
560 | toidentifier "1.0.1"
561 |
562 | iconv-lite@0.4.24:
563 | version "0.4.24"
564 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b"
565 | integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==
566 | dependencies:
567 | safer-buffer ">= 2.1.2 < 3"
568 |
569 | ieee754@^1.1.13:
570 | version "1.2.1"
571 | resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.2.1.tgz#8eb7a10a63fff25d15a57b001586d177d1b0d352"
572 | integrity sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==
573 |
574 | indexof@0.0.1:
575 | version "0.0.1"
576 | resolved "https://registry.yarnpkg.com/indexof/-/indexof-0.0.1.tgz#82dc336d232b9062179d05ab3293a66059fd435d"
577 | integrity sha1-gtwzbSMrkGIXnQWrMpOmYFn9Q10=
578 |
579 | inherits@2.0.4:
580 | version "2.0.4"
581 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c"
582 | integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==
583 |
584 | ipaddr.js@1.9.1:
585 | version "1.9.1"
586 | resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.9.1.tgz#bff38543eeb8984825079ff3a2a8e6cbd46781b3"
587 | integrity sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==
588 |
589 | is-core-module@^2.1.0:
590 | version "2.2.0"
591 | resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.2.0.tgz#97037ef3d52224d85163f5597b2b63d9afed981a"
592 | integrity sha512-XRAfAdyyY5F5cOXn7hYQDqh2Xmii+DEfIcQGxK/uNwMHhIkPWO0g8msXcbzLe+MpGoR951MlqM/2iIlU4vKDdQ==
593 | dependencies:
594 | has "^1.0.3"
595 |
596 | is-expression@^4.0.0:
597 | version "4.0.0"
598 | resolved "https://registry.yarnpkg.com/is-expression/-/is-expression-4.0.0.tgz#c33155962abf21d0afd2552514d67d2ec16fd2ab"
599 | integrity sha512-zMIXX63sxzG3XrkHkrAPvm/OVZVSCPNkwMHU8oTX7/U3AL78I0QXCEICXUM13BIa8TYGZ68PiTKfQz3yaTNr4A==
600 | dependencies:
601 | acorn "^7.1.1"
602 | object-assign "^4.1.1"
603 |
604 | is-promise@^2.0.0:
605 | version "2.2.2"
606 | resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.2.2.tgz#39ab959ccbf9a774cf079f7b40c7a26f763135f1"
607 | integrity sha512-+lP4/6lKUBfQjZ2pdxThZvLUAafmZb8OAxFb8XXtiQmS35INgr85hdOGoEs124ez1FCnZJt6jau/T+alh58QFQ==
608 |
609 | is-regex@^1.0.3:
610 | version "1.1.1"
611 | resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.1.tgz#c6f98aacc546f6cec5468a07b7b153ab564a57b9"
612 | integrity sha512-1+QkEcxiLlB7VEyFtyBg94e08OAsvq7FUBgApTq/w2ymCLyKJgDPsybBENVtA7XCQEgEXxKPonG+mvYRxh/LIg==
613 | dependencies:
614 | has-symbols "^1.0.1"
615 |
616 | isarray@2.0.1:
617 | version "2.0.1"
618 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-2.0.1.tgz#a37d94ed9cda2d59865c9f76fe596ee1f338741e"
619 | integrity sha1-o32U7ZzaLVmGXJ92/llu4fM4dB4=
620 |
621 | js-stringify@^1.0.2:
622 | version "1.0.2"
623 | resolved "https://registry.yarnpkg.com/js-stringify/-/js-stringify-1.0.2.tgz#1736fddfd9724f28a3682adc6230ae7e4e9679db"
624 | integrity sha1-Fzb939lyTyijaCrcYjCufk6Weds=
625 |
626 | js-yaml@~3.14.0:
627 | version "3.14.1"
628 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.14.1.tgz#dae812fdb3825fa306609a8717383c50c36a0537"
629 | integrity sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==
630 | dependencies:
631 | argparse "^1.0.7"
632 | esprima "^4.0.0"
633 |
634 | jsonfile@^4.0.0:
635 | version "4.0.0"
636 | resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-4.0.0.tgz#8771aae0799b64076b76640fca058f9c10e33ecb"
637 | integrity sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=
638 | optionalDependencies:
639 | graceful-fs "^4.1.6"
640 |
641 | jstransformer@1.0.0:
642 | version "1.0.0"
643 | resolved "https://registry.yarnpkg.com/jstransformer/-/jstransformer-1.0.0.tgz#ed8bf0921e2f3f1ed4d5c1a44f68709ed24722c3"
644 | integrity sha1-7Yvwkh4vPx7U1cGkT2hwntJHIsM=
645 | dependencies:
646 | is-promise "^2.0.0"
647 | promise "^7.0.1"
648 |
649 | lodash@^4.17.19:
650 | version "4.17.20"
651 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.20.tgz#b44a9b6297bcb698f1c51a3545a2b3b368d59c52"
652 | integrity sha512-PlhdFcillOINfeV7Ni6oF1TAEayyZBoZ8bcshTHqOYJYlrqzRK5hagpagky5o4HfCzzd1TRkXPMFq6cKk9rGmA==
653 |
654 | log4js@~6.3.0:
655 | version "6.3.0"
656 | resolved "https://registry.yarnpkg.com/log4js/-/log4js-6.3.0.tgz#10dfafbb434351a3e30277a00b9879446f715bcb"
657 | integrity sha512-Mc8jNuSFImQUIateBFwdOQcmC6Q5maU0VVvdC2R6XMb66/VnT+7WS4D/0EeNMZu1YODmJe5NIn2XftCzEocUgw==
658 | dependencies:
659 | date-format "^3.0.0"
660 | debug "^4.1.1"
661 | flatted "^2.0.1"
662 | rfdc "^1.1.4"
663 | streamroller "^2.2.4"
664 |
665 | media-typer@0.3.0:
666 | version "0.3.0"
667 | resolved "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748"
668 | integrity sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g=
669 |
670 | merge-descriptors@1.0.1:
671 | version "1.0.1"
672 | resolved "https://registry.yarnpkg.com/merge-descriptors/-/merge-descriptors-1.0.1.tgz#b00aaa556dd8b44568150ec9d1b953f3f90cbb61"
673 | integrity sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E=
674 |
675 | methods@~1.1.2:
676 | version "1.1.2"
677 | resolved "https://registry.yarnpkg.com/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee"
678 | integrity sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4=
679 |
680 | mime-db@1.45.0:
681 | version "1.45.0"
682 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.45.0.tgz#cceeda21ccd7c3a745eba2decd55d4b73e7879ea"
683 | integrity sha512-CkqLUxUk15hofLoLyljJSrukZi8mAtgd+yE5uO4tqRZsdsAJKv0O+rFMhVDRJgozy+yG6md5KwuXhD4ocIoP+w==
684 |
685 | mime-db@1.52.0:
686 | version "1.52.0"
687 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.52.0.tgz#bbabcdc02859f4987301c856e3387ce5ec43bf70"
688 | integrity sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==
689 |
690 | mime-types@~2.1.24:
691 | version "2.1.28"
692 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.28.tgz#1160c4757eab2c5363888e005273ecf79d2a0ecd"
693 | integrity sha512-0TO2yJ5YHYr7M2zzT7gDU1tbwHxEUWBCLt0lscSNpcdAfFyJOVEpRYNS7EXVcTLNj/25QO8gulHC5JtTzSE2UQ==
694 | dependencies:
695 | mime-db "1.45.0"
696 |
697 | mime-types@~2.1.34:
698 | version "2.1.35"
699 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.35.tgz#381a871b62a734450660ae3deee44813f70d959a"
700 | integrity sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==
701 | dependencies:
702 | mime-db "1.52.0"
703 |
704 | mime@1.6.0:
705 | version "1.6.0"
706 | resolved "https://registry.yarnpkg.com/mime/-/mime-1.6.0.tgz#32cd9e5c64553bd58d19a568af452acff04981b1"
707 | integrity sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==
708 |
709 | mkdirp@^1.0.4:
710 | version "1.0.4"
711 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-1.0.4.tgz#3eb5ed62622756d79a5f0e2a221dfebad75c2f7e"
712 | integrity sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==
713 |
714 | morgan@^1.10.0:
715 | version "1.10.0"
716 | resolved "https://registry.yarnpkg.com/morgan/-/morgan-1.10.0.tgz#091778abc1fc47cd3509824653dae1faab6b17d7"
717 | integrity sha512-AbegBVI4sh6El+1gNwvD5YIck7nSA36weD7xvIxG4in80j/UoK8AEGaWnnz8v1GxonMCltmlNs5ZKbGvl9b1XQ==
718 | dependencies:
719 | basic-auth "~2.0.1"
720 | debug "2.6.9"
721 | depd "~2.0.0"
722 | on-finished "~2.3.0"
723 | on-headers "~1.0.2"
724 |
725 | ms@2.0.0:
726 | version "2.0.0"
727 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8"
728 | integrity sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=
729 |
730 | ms@2.1.2:
731 | version "2.1.2"
732 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009"
733 | integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==
734 |
735 | ms@2.1.3, ms@^2.1.1:
736 | version "2.1.3"
737 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2"
738 | integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==
739 |
740 | negotiator@0.6.2:
741 | version "0.6.2"
742 | resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.2.tgz#feacf7ccf525a77ae9634436a64883ffeca346fb"
743 | integrity sha512-hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw==
744 |
745 | negotiator@0.6.3:
746 | version "0.6.3"
747 | resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.3.tgz#58e323a72fedc0d6f9cd4d31fe49f51479590ccd"
748 | integrity sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==
749 |
750 | node-turn@0.0.6:
751 | version "0.0.6"
752 | resolved "https://registry.yarnpkg.com/node-turn/-/node-turn-0.0.6.tgz#fddaa106ce65b2c8e5864d25dfe68feab1483a9b"
753 | integrity sha512-HJRfWIADk5I61jZlrKHwx/A+IgusnN7Fs/M9wl0xuSxTynKnh4ZBLvvIeBH5w556bl2bFFkzHiCJFIZ3FR7fmA==
754 | dependencies:
755 | crc "~3.8.0"
756 | js-yaml "~3.14.0"
757 | log4js "~6.3.0"
758 |
759 | object-assign@^4.1.1:
760 | version "4.1.1"
761 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863"
762 | integrity sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=
763 |
764 | on-finished@~2.3.0:
765 | version "2.3.0"
766 | resolved "https://registry.yarnpkg.com/on-finished/-/on-finished-2.3.0.tgz#20f1336481b083cd75337992a16971aa2d906947"
767 | integrity sha1-IPEzZIGwg811M3mSoWlxqi2QaUc=
768 | dependencies:
769 | ee-first "1.1.1"
770 |
771 | on-headers@~1.0.2:
772 | version "1.0.2"
773 | resolved "https://registry.yarnpkg.com/on-headers/-/on-headers-1.0.2.tgz#772b0ae6aaa525c399e489adfad90c403eb3c28f"
774 | integrity sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==
775 |
776 | parseqs@0.0.6:
777 | version "0.0.6"
778 | resolved "https://registry.yarnpkg.com/parseqs/-/parseqs-0.0.6.tgz#8e4bb5a19d1cdc844a08ac974d34e273afa670d5"
779 | integrity sha512-jeAGzMDbfSHHA091hr0r31eYfTig+29g3GKKE/PPbEQ65X0lmMwlEoqmhzu0iztID5uJpZsFlUPDP8ThPL7M8w==
780 |
781 | parseuri@0.0.6:
782 | version "0.0.6"
783 | resolved "https://registry.yarnpkg.com/parseuri/-/parseuri-0.0.6.tgz#e1496e829e3ac2ff47f39a4dd044b32823c4a25a"
784 | integrity sha512-AUjen8sAkGgao7UyCX6Ahv0gIK2fABKmYjvP4xmy5JaKvcbTRueIqIPHLAfq30xJddqSE033IOMUSOMCcK3Sow==
785 |
786 | parseurl@~1.3.3:
787 | version "1.3.3"
788 | resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.3.tgz#9da19e7bee8d12dff0513ed5b76957793bc2e8d4"
789 | integrity sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==
790 |
791 | path-parse@^1.0.6:
792 | version "1.0.6"
793 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.6.tgz#d62dbb5679405d72c4737ec58600e9ddcf06d24c"
794 | integrity sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw==
795 |
796 | path-to-regexp@0.1.7:
797 | version "0.1.7"
798 | resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-0.1.7.tgz#df604178005f522f15eb4490e7247a1bfaa67f8c"
799 | integrity sha1-32BBeABfUi8V60SQ5yR6G/qmf4w=
800 |
801 | promise@^7.0.1:
802 | version "7.3.1"
803 | resolved "https://registry.yarnpkg.com/promise/-/promise-7.3.1.tgz#064b72602b18f90f29192b8b1bc418ffd1ebd3bf"
804 | integrity sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg==
805 | dependencies:
806 | asap "~2.0.3"
807 |
808 | proxy-addr@~2.0.7:
809 | version "2.0.7"
810 | resolved "https://registry.yarnpkg.com/proxy-addr/-/proxy-addr-2.0.7.tgz#f19fe69ceab311eeb94b42e70e8c2070f9ba1025"
811 | integrity sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==
812 | dependencies:
813 | forwarded "0.2.0"
814 | ipaddr.js "1.9.1"
815 |
816 | pug-attrs@^3.0.0:
817 | version "3.0.0"
818 | resolved "https://registry.yarnpkg.com/pug-attrs/-/pug-attrs-3.0.0.tgz#b10451e0348165e31fad1cc23ebddd9dc7347c41"
819 | integrity sha512-azINV9dUtzPMFQktvTXciNAfAuVh/L/JCl0vtPCwvOA21uZrC08K/UnmrL+SXGEVc1FwzjW62+xw5S/uaLj6cA==
820 | dependencies:
821 | constantinople "^4.0.1"
822 | js-stringify "^1.0.2"
823 | pug-runtime "^3.0.0"
824 |
825 | pug-code-gen@^3.0.2:
826 | version "3.0.2"
827 | resolved "https://registry.yarnpkg.com/pug-code-gen/-/pug-code-gen-3.0.2.tgz#ad190f4943133bf186b60b80de483100e132e2ce"
828 | integrity sha512-nJMhW16MbiGRiyR4miDTQMRWDgKplnHyeLvioEJYbk1RsPI3FuA3saEP8uwnTb2nTJEKBU90NFVWJBk4OU5qyg==
829 | dependencies:
830 | constantinople "^4.0.1"
831 | doctypes "^1.1.0"
832 | js-stringify "^1.0.2"
833 | pug-attrs "^3.0.0"
834 | pug-error "^2.0.0"
835 | pug-runtime "^3.0.0"
836 | void-elements "^3.1.0"
837 | with "^7.0.0"
838 |
839 | pug-error@^2.0.0:
840 | version "2.0.0"
841 | resolved "https://registry.yarnpkg.com/pug-error/-/pug-error-2.0.0.tgz#5c62173cb09c34de2a2ce04f17b8adfec74d8ca5"
842 | integrity sha512-sjiUsi9M4RAGHktC1drQfCr5C5eriu24Lfbt4s+7SykztEOwVZtbFk1RRq0tzLxcMxMYTBR+zMQaG07J/btayQ==
843 |
844 | pug-filters@^4.0.0:
845 | version "4.0.0"
846 | resolved "https://registry.yarnpkg.com/pug-filters/-/pug-filters-4.0.0.tgz#d3e49af5ba8472e9b7a66d980e707ce9d2cc9b5e"
847 | integrity sha512-yeNFtq5Yxmfz0f9z2rMXGw/8/4i1cCFecw/Q7+D0V2DdtII5UvqE12VaZ2AY7ri6o5RNXiweGH79OCq+2RQU4A==
848 | dependencies:
849 | constantinople "^4.0.1"
850 | jstransformer "1.0.0"
851 | pug-error "^2.0.0"
852 | pug-walk "^2.0.0"
853 | resolve "^1.15.1"
854 |
855 | pug-lexer@^5.0.1:
856 | version "5.0.1"
857 | resolved "https://registry.yarnpkg.com/pug-lexer/-/pug-lexer-5.0.1.tgz#ae44628c5bef9b190b665683b288ca9024b8b0d5"
858 | integrity sha512-0I6C62+keXlZPZkOJeVam9aBLVP2EnbeDw3An+k0/QlqdwH6rv8284nko14Na7c0TtqtogfWXcRoFE4O4Ff20w==
859 | dependencies:
860 | character-parser "^2.2.0"
861 | is-expression "^4.0.0"
862 | pug-error "^2.0.0"
863 |
864 | pug-linker@^4.0.0:
865 | version "4.0.0"
866 | resolved "https://registry.yarnpkg.com/pug-linker/-/pug-linker-4.0.0.tgz#12cbc0594fc5a3e06b9fc59e6f93c146962a7708"
867 | integrity sha512-gjD1yzp0yxbQqnzBAdlhbgoJL5qIFJw78juN1NpTLt/mfPJ5VgC4BvkoD3G23qKzJtIIXBbcCt6FioLSFLOHdw==
868 | dependencies:
869 | pug-error "^2.0.0"
870 | pug-walk "^2.0.0"
871 |
872 | pug-load@^3.0.0:
873 | version "3.0.0"
874 | resolved "https://registry.yarnpkg.com/pug-load/-/pug-load-3.0.0.tgz#9fd9cda52202b08adb11d25681fb9f34bd41b662"
875 | integrity sha512-OCjTEnhLWZBvS4zni/WUMjH2YSUosnsmjGBB1An7CsKQarYSWQ0GCVyd4eQPMFJqZ8w9xgs01QdiZXKVjk92EQ==
876 | dependencies:
877 | object-assign "^4.1.1"
878 | pug-walk "^2.0.0"
879 |
880 | pug-parser@^6.0.0:
881 | version "6.0.0"
882 | resolved "https://registry.yarnpkg.com/pug-parser/-/pug-parser-6.0.0.tgz#a8fdc035863a95b2c1dc5ebf4ecf80b4e76a1260"
883 | integrity sha512-ukiYM/9cH6Cml+AOl5kETtM9NR3WulyVP2y4HOU45DyMim1IeP/OOiyEWRr6qk5I5klpsBnbuHpwKmTx6WURnw==
884 | dependencies:
885 | pug-error "^2.0.0"
886 | token-stream "1.0.0"
887 |
888 | pug-runtime@^3.0.0:
889 | version "3.0.0"
890 | resolved "https://registry.yarnpkg.com/pug-runtime/-/pug-runtime-3.0.0.tgz#d523025fdc0a1efe70929d1fd3a2d24121ffffb6"
891 | integrity sha512-GoEPcmQNnaTsePEdVA05bDpY+Op5VLHKayg08AQiqJBWU/yIaywEYv7TetC5dEQS3fzBBoyb2InDcZEg3mPTIA==
892 |
893 | pug-runtime@^3.0.1:
894 | version "3.0.1"
895 | resolved "https://registry.yarnpkg.com/pug-runtime/-/pug-runtime-3.0.1.tgz#f636976204723f35a8c5f6fad6acda2a191b83d7"
896 | integrity sha512-L50zbvrQ35TkpHwv0G6aLSuueDRwc/97XdY8kL3tOT0FmhgG7UypU3VztfV/LATAvmUfYi4wNxSajhSAeNN+Kg==
897 |
898 | pug-strip-comments@^2.0.0:
899 | version "2.0.0"
900 | resolved "https://registry.yarnpkg.com/pug-strip-comments/-/pug-strip-comments-2.0.0.tgz#f94b07fd6b495523330f490a7f554b4ff876303e"
901 | integrity sha512-zo8DsDpH7eTkPHCXFeAk1xZXJbyoTfdPlNR0bK7rpOMuhBYb0f5qUVCO1xlsitYd3w5FQTK7zpNVKb3rZoUrrQ==
902 | dependencies:
903 | pug-error "^2.0.0"
904 |
905 | pug-walk@^2.0.0:
906 | version "2.0.0"
907 | resolved "https://registry.yarnpkg.com/pug-walk/-/pug-walk-2.0.0.tgz#417aabc29232bb4499b5b5069a2b2d2a24d5f5fe"
908 | integrity sha512-yYELe9Q5q9IQhuvqsZNwA5hfPkMJ8u92bQLIMcsMxf/VADjNtEYptU+inlufAFYcWdHlwNfZOEnOOQrZrcyJCQ==
909 |
910 | pug@^3.0.2:
911 | version "3.0.2"
912 | resolved "https://registry.yarnpkg.com/pug/-/pug-3.0.2.tgz#f35c7107343454e43bc27ae0ff76c731b78ea535"
913 | integrity sha512-bp0I/hiK1D1vChHh6EfDxtndHji55XP/ZJKwsRqrz6lRia6ZC2OZbdAymlxdVFwd1L70ebrVJw4/eZ79skrIaw==
914 | dependencies:
915 | pug-code-gen "^3.0.2"
916 | pug-filters "^4.0.0"
917 | pug-lexer "^5.0.1"
918 | pug-linker "^4.0.0"
919 | pug-load "^3.0.0"
920 | pug-parser "^6.0.0"
921 | pug-runtime "^3.0.1"
922 | pug-strip-comments "^2.0.0"
923 |
924 | qs@6.9.7:
925 | version "6.9.7"
926 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.9.7.tgz#4610846871485e1e048f44ae3b94033f0e675afe"
927 | integrity sha512-IhMFgUmuNpyRfxA90umL7ByLlgRXu6tIfKPpF5TmcfRLlLCckfP/g3IQmju6jjpu+Hh8rA+2p6A27ZSPOOHdKw==
928 |
929 | range-parser@~1.2.1:
930 | version "1.2.1"
931 | resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.1.tgz#3cf37023d199e1c24d1a55b84800c2f3e6468031"
932 | integrity sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==
933 |
934 | raw-body@2.4.3:
935 | version "2.4.3"
936 | resolved "https://registry.yarnpkg.com/raw-body/-/raw-body-2.4.3.tgz#8f80305d11c2a0a545c2d9d89d7a0286fcead43c"
937 | integrity sha512-UlTNLIcu0uzb4D2f4WltY6cVjLi+/jEN4lgEUj3E04tpMDpUlkBo/eSn6zou9hum2VMNpCCUone0O0WeJim07g==
938 | dependencies:
939 | bytes "3.1.2"
940 | http-errors "1.8.1"
941 | iconv-lite "0.4.24"
942 | unpipe "1.0.0"
943 |
944 | resolve@^1.15.1:
945 | version "1.19.0"
946 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.19.0.tgz#1af5bf630409734a067cae29318aac7fa29a267c"
947 | integrity sha512-rArEXAgsBG4UgRGcynxWIWKFvh/XZCcS8UJdHhwy91zwAvCZIbcs+vAbflgBnNjYMs/i/i+/Ux6IZhML1yPvxg==
948 | dependencies:
949 | is-core-module "^2.1.0"
950 | path-parse "^1.0.6"
951 |
952 | rfdc@^1.1.4:
953 | version "1.1.4"
954 | resolved "https://registry.yarnpkg.com/rfdc/-/rfdc-1.1.4.tgz#ba72cc1367a0ccd9cf81a870b3b58bd3ad07f8c2"
955 | integrity sha512-5C9HXdzK8EAqN7JDif30jqsBzavB7wLpaubisuQIGHWf2gUXSpzy6ArX/+Da8RjFpagWsCn+pIgxTMAmKw9Zug==
956 |
957 | safe-buffer@5.1.2:
958 | version "5.1.2"
959 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d"
960 | integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==
961 |
962 | safe-buffer@5.2.1:
963 | version "5.2.1"
964 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6"
965 | integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==
966 |
967 | "safer-buffer@>= 2.1.2 < 3":
968 | version "2.1.2"
969 | resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a"
970 | integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==
971 |
972 | send@0.17.2:
973 | version "0.17.2"
974 | resolved "https://registry.yarnpkg.com/send/-/send-0.17.2.tgz#926622f76601c41808012c8bf1688fe3906f7820"
975 | integrity sha512-UJYB6wFSJE3G00nEivR5rgWp8c2xXvJ3OPWPhmuteU0IKj8nKbG3DrjiOmLwpnHGYWAVwA69zmTm++YG0Hmwww==
976 | dependencies:
977 | debug "2.6.9"
978 | depd "~1.1.2"
979 | destroy "~1.0.4"
980 | encodeurl "~1.0.2"
981 | escape-html "~1.0.3"
982 | etag "~1.8.1"
983 | fresh "0.5.2"
984 | http-errors "1.8.1"
985 | mime "1.6.0"
986 | ms "2.1.3"
987 | on-finished "~2.3.0"
988 | range-parser "~1.2.1"
989 | statuses "~1.5.0"
990 |
991 | serve-static@1.14.2:
992 | version "1.14.2"
993 | resolved "https://registry.yarnpkg.com/serve-static/-/serve-static-1.14.2.tgz#722d6294b1d62626d41b43a013ece4598d292bfa"
994 | integrity sha512-+TMNA9AFxUEGuC0z2mevogSnn9MXKb4fa7ngeRMJaaGv8vTwnIEkKi+QGvPt33HSnf8pRS+WGM0EbMtCJLKMBQ==
995 | dependencies:
996 | encodeurl "~1.0.2"
997 | escape-html "~1.0.3"
998 | parseurl "~1.3.3"
999 | send "0.17.2"
1000 |
1001 | setprototypeof@1.2.0:
1002 | version "1.2.0"
1003 | resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.2.0.tgz#66c9a24a73f9fc28cbe66b09fed3d33dcaf1b424"
1004 | integrity sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==
1005 |
1006 | socket.io-adapter@~1.1.0:
1007 | version "1.1.2"
1008 | resolved "https://registry.yarnpkg.com/socket.io-adapter/-/socket.io-adapter-1.1.2.tgz#ab3f0d6f66b8fc7fca3959ab5991f82221789be9"
1009 | integrity sha512-WzZRUj1kUjrTIrUKpZLEzFZ1OLj5FwLlAFQs9kuZJzJi5DKdU7FsWc36SNmA8iDOtwBQyT8FkrriRM8vXLYz8g==
1010 |
1011 | socket.io-client@2.4.0:
1012 | version "2.4.0"
1013 | resolved "https://registry.yarnpkg.com/socket.io-client/-/socket.io-client-2.4.0.tgz#aafb5d594a3c55a34355562fc8aea22ed9119a35"
1014 | integrity sha512-M6xhnKQHuuZd4Ba9vltCLT9oa+YvTsP8j9NcEiLElfIg8KeYPyhWOes6x4t+LTAC8enQbE/995AdTem2uNyKKQ==
1015 | dependencies:
1016 | backo2 "1.0.2"
1017 | component-bind "1.0.0"
1018 | component-emitter "~1.3.0"
1019 | debug "~3.1.0"
1020 | engine.io-client "~3.5.0"
1021 | has-binary2 "~1.0.2"
1022 | indexof "0.0.1"
1023 | parseqs "0.0.6"
1024 | parseuri "0.0.6"
1025 | socket.io-parser "~3.3.0"
1026 | to-array "0.1.4"
1027 |
1028 | socket.io-parser@~3.3.0:
1029 | version "3.3.2"
1030 | resolved "https://registry.yarnpkg.com/socket.io-parser/-/socket.io-parser-3.3.2.tgz#ef872009d0adcf704f2fbe830191a14752ad50b6"
1031 | integrity sha512-FJvDBuOALxdCI9qwRrO/Rfp9yfndRtc1jSgVgV8FDraihmSP/MLGD5PEuJrNfjALvcQ+vMDM/33AWOYP/JSjDg==
1032 | dependencies:
1033 | component-emitter "~1.3.0"
1034 | debug "~3.1.0"
1035 | isarray "2.0.1"
1036 |
1037 | socket.io-parser@~3.4.0:
1038 | version "3.4.1"
1039 | resolved "https://registry.yarnpkg.com/socket.io-parser/-/socket.io-parser-3.4.1.tgz#b06af838302975837eab2dc980037da24054d64a"
1040 | integrity sha512-11hMgzL+WCLWf1uFtHSNvliI++tcRUWdoeYuwIl+Axvwy9z2gQM+7nJyN3STj1tLj5JyIUH8/gpDGxzAlDdi0A==
1041 | dependencies:
1042 | component-emitter "1.2.1"
1043 | debug "~4.1.0"
1044 | isarray "2.0.1"
1045 |
1046 | socket.io@2.4.1:
1047 | version "2.4.1"
1048 | resolved "https://registry.yarnpkg.com/socket.io/-/socket.io-2.4.1.tgz#95ad861c9a52369d7f1a68acf0d4a1b16da451d2"
1049 | integrity sha512-Si18v0mMXGAqLqCVpTxBa8MGqriHGQh8ccEOhmsmNS3thNCGBwO8WGrwMibANsWtQQ5NStdZwHqZR3naJVFc3w==
1050 | dependencies:
1051 | debug "~4.1.0"
1052 | engine.io "~3.5.0"
1053 | has-binary2 "~1.0.2"
1054 | socket.io-adapter "~1.1.0"
1055 | socket.io-client "2.4.0"
1056 | socket.io-parser "~3.4.0"
1057 |
1058 | sprintf-js@~1.0.2:
1059 | version "1.0.3"
1060 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c"
1061 | integrity sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=
1062 |
1063 | "statuses@>= 1.5.0 < 2", statuses@~1.5.0:
1064 | version "1.5.0"
1065 | resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.5.0.tgz#161c7dac177659fd9811f43771fa99381478628c"
1066 | integrity sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow=
1067 |
1068 | streamroller@^2.2.4:
1069 | version "2.2.4"
1070 | resolved "https://registry.yarnpkg.com/streamroller/-/streamroller-2.2.4.tgz#c198ced42db94086a6193608187ce80a5f2b0e53"
1071 | integrity sha512-OG79qm3AujAM9ImoqgWEY1xG4HX+Lw+yY6qZj9R1K2mhF5bEmQ849wvrb+4vt4jLMLzwXttJlQbOdPOQVRv7DQ==
1072 | dependencies:
1073 | date-format "^2.1.0"
1074 | debug "^4.1.1"
1075 | fs-extra "^8.1.0"
1076 |
1077 | tinytim@0.1.1:
1078 | version "0.1.1"
1079 | resolved "https://registry.yarnpkg.com/tinytim/-/tinytim-0.1.1.tgz#c968a1e5559ad9553224ef7627bab34e3caef8a8"
1080 | integrity sha1-yWih5VWa2VUyJO92J7qzTjyu+Kg=
1081 |
1082 | to-array@0.1.4:
1083 | version "0.1.4"
1084 | resolved "https://registry.yarnpkg.com/to-array/-/to-array-0.1.4.tgz#17e6c11f73dd4f3d74cda7a4ff3238e9ad9bf890"
1085 | integrity sha1-F+bBH3PdTz10zaek/zI46a2b+JA=
1086 |
1087 | to-fast-properties@^2.0.0:
1088 | version "2.0.0"
1089 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e"
1090 | integrity sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=
1091 |
1092 | toidentifier@1.0.1:
1093 | version "1.0.1"
1094 | resolved "https://registry.yarnpkg.com/toidentifier/-/toidentifier-1.0.1.tgz#3be34321a88a820ed1bd80dfaa33e479fbb8dd35"
1095 | integrity sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==
1096 |
1097 | token-stream@1.0.0:
1098 | version "1.0.0"
1099 | resolved "https://registry.yarnpkg.com/token-stream/-/token-stream-1.0.0.tgz#cc200eab2613f4166d27ff9afc7ca56d49df6eb4"
1100 | integrity sha1-zCAOqyYT9BZtJ/+a/HylbUnfbrQ=
1101 |
1102 | tracer@^1.1.5:
1103 | version "1.1.5"
1104 | resolved "https://registry.yarnpkg.com/tracer/-/tracer-1.1.5.tgz#f53f761ed53c586a6c1d161581057c86780fa87d"
1105 | integrity sha512-I7/AwGm/gf3KU7DcltmSmKJbytQj3q4hg+JKadtIKocfvBY4olY4SV8rAoMRvAD60gPlggEJ1QoSlb2dQtWHNw==
1106 | dependencies:
1107 | colors "1.4.0"
1108 | dateformat "4.5.1"
1109 | mkdirp "^1.0.4"
1110 | tinytim "0.1.1"
1111 |
1112 | type-is@~1.6.18:
1113 | version "1.6.18"
1114 | resolved "https://registry.yarnpkg.com/type-is/-/type-is-1.6.18.tgz#4e552cd05df09467dcbc4ef739de89f2cf37c131"
1115 | integrity sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==
1116 | dependencies:
1117 | media-typer "0.3.0"
1118 | mime-types "~2.1.24"
1119 |
1120 | typescript@^4.6.2:
1121 | version "4.6.2"
1122 | resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.6.2.tgz#fe12d2727b708f4eef40f51598b3398baa9611d4"
1123 | integrity sha512-HM/hFigTBHZhLXshn9sN37H085+hQGeJHJ/X7LpBWLID/fbc2acUMfU+lGD98X81sKP+pFa9f0DZmCwB9GnbAg==
1124 |
1125 | universalify@^0.1.0:
1126 | version "0.1.2"
1127 | resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.1.2.tgz#b646f69be3942dabcecc9d6639c80dc105efaa66"
1128 | integrity sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==
1129 |
1130 | unpipe@1.0.0, unpipe@~1.0.0:
1131 | version "1.0.0"
1132 | resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec"
1133 | integrity sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=
1134 |
1135 | utils-merge@1.0.1:
1136 | version "1.0.1"
1137 | resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.1.tgz#9f95710f50a267947b2ccc124741c1028427e713"
1138 | integrity sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM=
1139 |
1140 | vary@~1.1.2:
1141 | version "1.1.2"
1142 | resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.2.tgz#2299f02c6ded30d4a5961b0b9f74524a18f634fc"
1143 | integrity sha1-IpnwLG3tMNSllhsLn3RSShj2NPw=
1144 |
1145 | void-elements@^3.1.0:
1146 | version "3.1.0"
1147 | resolved "https://registry.yarnpkg.com/void-elements/-/void-elements-3.1.0.tgz#614f7fbf8d801f0bb5f0661f5b2f5785750e4f09"
1148 | integrity sha1-YU9/v42AHwu18GYfWy9XhXUOTwk=
1149 |
1150 | with@^7.0.0:
1151 | version "7.0.2"
1152 | resolved "https://registry.yarnpkg.com/with/-/with-7.0.2.tgz#ccee3ad542d25538a7a7a80aad212b9828495bac"
1153 | integrity sha512-RNGKj82nUPg3g5ygxkQl0R937xLyho1J24ItRCBTr/m1YnZkzJy1hUiHUJrc/VlsDQzsCnInEGSg3bci0Lmd4w==
1154 | dependencies:
1155 | "@babel/parser" "^7.9.6"
1156 | "@babel/types" "^7.9.6"
1157 | assert-never "^1.2.1"
1158 | babel-walk "3.0.0-canary-5"
1159 |
1160 | ws@~7.4.2:
1161 | version "7.4.5"
1162 | resolved "https://registry.yarnpkg.com/ws/-/ws-7.4.5.tgz#a484dd851e9beb6fdb420027e3885e8ce48986c1"
1163 | integrity sha512-xzyu3hFvomRfXKH8vOFMU3OguG6oOvhXMo3xsGy3xWExqaM2dxBbVxuD99O7m3ZUFMvvscsZDqxfgMaRr/Nr1g==
1164 |
1165 | xmlhttprequest-ssl@~1.5.4:
1166 | version "1.5.5"
1167 | resolved "https://registry.yarnpkg.com/xmlhttprequest-ssl/-/xmlhttprequest-ssl-1.5.5.tgz#c2876b06168aadc40e57d97e81191ac8f4398b3e"
1168 | integrity sha1-wodrBhaKrcQOV9l+gRkayPQ5iz4=
1169 |
1170 | yaml@^1.10.2:
1171 | version "1.10.2"
1172 | resolved "https://registry.yarnpkg.com/yaml/-/yaml-1.10.2.tgz#2301c5ffbf12b467de8da2333a459e29e7920e4b"
1173 | integrity sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==
1174 |
1175 | yeast@0.1.2:
1176 | version "0.1.2"
1177 | resolved "https://registry.yarnpkg.com/yeast/-/yeast-0.1.2.tgz#008e06d8094320c372dbc2f8ed76a0ca6c8ac419"
1178 | integrity sha1-AI4G2AlDIMNy28L47XagymyKxBk=
1179 |
--------------------------------------------------------------------------------