serverless-offline 8.2.0 → 8.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +157 -116
- package/dist/ServerlessOffline.js +98 -26
- package/dist/config/commandOptions.js +4 -0
- package/dist/config/constants.js +1 -1
- package/dist/config/defaultOptions.js +1 -0
- package/dist/events/http/Endpoint.js +27 -9
- package/dist/events/http/Http.js +3 -3
- package/dist/events/http/HttpServer.js +355 -82
- package/dist/events/http/authFunctionNameExtractor.js +14 -8
- package/dist/events/http/authJWTSettingsExtractor.js +14 -7
- package/dist/events/http/createAuthScheme.js +44 -9
- package/dist/events/http/createJWTAuthScheme.js +52 -13
- package/dist/events/http/lambda-events/LambdaIntegrationEvent.js +7 -6
- package/dist/events/http/lambda-events/LambdaProxyIntegrationEvent.js +38 -7
- package/dist/events/http/lambda-events/LambdaProxyIntegrationEventV2.js +37 -6
- package/dist/events/http/lambda-events/VelocityContext.js +4 -4
- package/dist/events/http/lambda-events/index.js +4 -4
- package/dist/events/http/lambda-events/renderVelocityTemplateObject.js +19 -7
- package/dist/events/schedule/Schedule.js +45 -10
- package/dist/events/websocket/HttpServer.js +24 -7
- package/dist/events/websocket/WebSocket.js +14 -6
- package/dist/events/websocket/WebSocketClients.js +127 -38
- package/dist/events/websocket/WebSocketServer.js +79 -11
- package/dist/events/websocket/http-routes/_catchAll/catchAllRoute.js +9 -2
- package/dist/events/websocket/http-routes/connections/ConnectionsController.js +1 -1
- package/dist/events/websocket/http-routes/connections/connectionsRoutes.js +28 -5
- package/dist/events/websocket/lambda-events/WebSocketConnectEvent.js +5 -5
- package/dist/events/websocket/lambda-events/WebSocketDisconnectEvent.js +1 -1
- package/dist/events/websocket/lambda-events/WebSocketEvent.js +3 -3
- package/dist/events/websocket/lambda-events/WebSocketRequestContext.js +4 -4
- package/dist/lambda/HttpServer.js +34 -10
- package/dist/lambda/Lambda.js +15 -7
- package/dist/lambda/LambdaContext.js +1 -1
- package/dist/lambda/LambdaFunction.js +40 -23
- package/dist/lambda/LambdaFunctionPool.js +9 -8
- package/dist/lambda/handler-runner/HandlerRunner.js +51 -16
- package/dist/lambda/handler-runner/child-process-runner/ChildProcessRunner.js +21 -8
- package/dist/lambda/handler-runner/child-process-runner/childProcessHelper.js +1 -10
- package/dist/lambda/handler-runner/docker-runner/DockerContainer.js +168 -69
- package/dist/lambda/handler-runner/docker-runner/DockerImage.js +21 -5
- package/dist/lambda/handler-runner/docker-runner/DockerRunner.js +4 -4
- package/dist/lambda/handler-runner/go-runner/GoRunner.js +211 -0
- package/dist/lambda/handler-runner/go-runner/index.js +15 -0
- package/dist/lambda/handler-runner/in-process-runner/InProcessRunner.js +16 -22
- package/dist/lambda/handler-runner/java-runner/JavaRunner.js +26 -14
- package/dist/lambda/handler-runner/python-runner/PythonRunner.js +20 -7
- package/dist/lambda/handler-runner/ruby-runner/RubyRunner.js +22 -24
- package/dist/lambda/handler-runner/worker-thread-runner/WorkerThreadRunner.js +2 -2
- package/dist/lambda/handler-runner/worker-thread-runner/workerThreadHelper.js +1 -11
- package/dist/lambda/routes/invocations/InvocationsController.js +30 -11
- package/dist/lambda/routes/invocations/invocationsRoute.js +4 -3
- package/dist/lambda/routes/invoke-async/InvokeAsyncController.js +2 -6
- package/dist/serverlessLog.js +1 -1
- package/dist/utils/checkGoVersion.js +27 -0
- package/dist/utils/getHttpApiCorsConfig.js +18 -5
- package/dist/utils/index.js +24 -16
- package/package.json +86 -37
package/README.md
CHANGED
|
@@ -31,7 +31,7 @@ To do so, it starts an HTTP server that handles the request's lifecycle like API
|
|
|
31
31
|
|
|
32
32
|
**Features:**
|
|
33
33
|
|
|
34
|
-
- [Node.js](https://nodejs.org), [Python](https://www.python.org), [Ruby](https://www.ruby-lang.org)
|
|
34
|
+
- [Node.js](https://nodejs.org), [Python](https://www.python.org), [Ruby](https://www.ruby-lang.org) and [Go](https://golang.org) λ runtimes.
|
|
35
35
|
- Velocity templates support.
|
|
36
36
|
- Lazy loading of your handler files.
|
|
37
37
|
- And more: integrations, authorizers, proxies, timeouts, responseParameters, HTTPS, CORS, etc...
|
|
@@ -49,6 +49,7 @@ This plugin is updated by its users, I just do maintenance and ensure that PRs a
|
|
|
49
49
|
- [Custom authorizers](#custom-authorizers)
|
|
50
50
|
- [Remote authorizers](#remote-authorizers)
|
|
51
51
|
- [JWT authorizers](#jwt-authorizers)
|
|
52
|
+
- [Serverless plugin authorizers](#serverless-plugin-authorizers)
|
|
52
53
|
- [Custom headers](#custom-headers)
|
|
53
54
|
- [Environment variables](#environment-variables)
|
|
54
55
|
- [AWS API Gateway Features](#aws-api-gateway-features)
|
|
@@ -115,6 +116,7 @@ All CLI options are optional:
|
|
|
115
116
|
--corsDisallowCredentials When provided, the default Access-Control-Allow-Credentials header value will be passed as 'false'. Default: true
|
|
116
117
|
--corsExposedHeaders Used as additional Access-Control-Exposed-Headers header value for responses. Delimit multiple values with commas. Default: 'WWW-Authenticate,Server-Authorization'
|
|
117
118
|
--disableCookieValidation Used to disable cookie-validation on hapi.js-server
|
|
119
|
+
--disableScheduledEvents Disables all scheduled events. Overrides configurations in serverless.yml.
|
|
118
120
|
--dockerHost The host name of Docker. Default: localhost
|
|
119
121
|
--dockerHostServicePath Defines service path which is used by SLS running inside Docker container
|
|
120
122
|
--dockerNetwork The network that the Docker container will connect to
|
|
@@ -182,7 +184,7 @@ const lambda = new Lambda({
|
|
|
182
184
|
All your lambdas can then be invoked in a handler using
|
|
183
185
|
|
|
184
186
|
```js
|
|
185
|
-
exports.handler = async function() {
|
|
187
|
+
exports.handler = async function () {
|
|
186
188
|
const params = {
|
|
187
189
|
// FunctionName is composed of: service name - stage - function name, e.g.
|
|
188
190
|
FunctionName: 'myServiceName-dev-invokedHandler',
|
|
@@ -221,6 +223,7 @@ offline: Function names exposed for local invocation by aws-sdk:
|
|
|
221
223
|
|
|
222
224
|
To list the available manual invocation paths exposed for targeting
|
|
223
225
|
by `aws-sdk` and `aws-cli`, use `SLS_DEBUG=*` with `serverless offline`. After the invoke server starts up, full list of endpoints will be displayed:
|
|
226
|
+
|
|
224
227
|
```
|
|
225
228
|
SLS_DEBUG=* serverless offline
|
|
226
229
|
...
|
|
@@ -246,55 +249,67 @@ Will be `"true"` in your handlers and thorough the plugin.
|
|
|
246
249
|
## Docker and Layers
|
|
247
250
|
|
|
248
251
|
To use layers with serverless-offline, you need to have the `useDocker` option set to true. This can either be by using the `--useDocker` command, or in your serverless.yml like this:
|
|
252
|
+
|
|
249
253
|
```yml
|
|
250
254
|
custom:
|
|
251
255
|
serverless-offline:
|
|
252
256
|
useDocker: true
|
|
253
257
|
```
|
|
258
|
+
|
|
254
259
|
This will allow the docker container to look up any information about layers, download and use them. For this to work, you must be using:
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
260
|
+
|
|
261
|
+
- AWS as a provider, it won't work with other provider types.
|
|
262
|
+
- Layers that are compatible with your runtime.
|
|
263
|
+
- ARNs for layers. Local layers aren't supported as yet.
|
|
264
|
+
- A local AWS account set-up that can query and download layers.
|
|
259
265
|
|
|
260
266
|
If you're using least-privilege principals for your AWS roles, this policy should get you by:
|
|
267
|
+
|
|
261
268
|
```json
|
|
262
269
|
{
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
270
|
+
"Version": "2012-10-17",
|
|
271
|
+
"Statement": [
|
|
272
|
+
{
|
|
273
|
+
"Effect": "Allow",
|
|
274
|
+
"Action": "lambda:GetLayerVersion",
|
|
275
|
+
"Resource": "arn:aws:lambda:*:*:layer:*:*"
|
|
276
|
+
}
|
|
277
|
+
]
|
|
271
278
|
}
|
|
272
279
|
```
|
|
280
|
+
|
|
273
281
|
Once you run a function that boots up the Docker container, it'll look through the layers for that function, download them in order to your layers folder, and save a hash of your layers so it can be re-used in future. You'll only need to re-download your layers if they change in the future. If you want your layers to re-download, simply remove your layers folder.
|
|
274
282
|
|
|
275
283
|
You should then be able to invoke functions as normal, and they're executed against the layers in your docker container.
|
|
276
284
|
|
|
277
285
|
### Additional Options
|
|
286
|
+
|
|
278
287
|
There are 5 additional options available for Docker and Layer usage.
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
288
|
+
|
|
289
|
+
- dockerHost
|
|
290
|
+
- dockerHostServicePath
|
|
291
|
+
- dockerNetwork
|
|
292
|
+
- dockerReadOnly
|
|
293
|
+
- layersDir
|
|
284
294
|
|
|
285
295
|
#### dockerHost
|
|
296
|
+
|
|
286
297
|
When running Docker Lambda inside another Docker container, you may need to configure the host name for the host machine to resolve networking issues between Docker Lambda and the host. Typically in such cases you would set this to `host.docker.internal`.
|
|
287
298
|
|
|
288
299
|
#### dockerHostServicePath
|
|
300
|
+
|
|
289
301
|
When running Docker Lambda inside another Docker container, you may need to override the code path that gets mounted to the Docker Lambda container relative to the host machine. Typically in such cases you would set this to `${PWD}`.
|
|
290
302
|
|
|
291
303
|
#### dockerNetwork
|
|
304
|
+
|
|
292
305
|
When running Docker Lambda inside another Docker container, you may need to override network that Docker Lambda connects to in order to communicate with other containers.
|
|
293
306
|
|
|
294
307
|
#### dockerReadOnly
|
|
308
|
+
|
|
295
309
|
For certain programming languages and frameworks, it's desirable to be able to write to the filesystem for things like testing with local SQLite databases, or other testing-only modifications. For this, you can set `dockerReadOnly: false`, and this will allow local filesystem modifications. This does not strictly mimic AWS Lambda, as Lambda has a Read-Only filesystem, so this should be used as a last resort.
|
|
296
310
|
|
|
297
311
|
#### layersDir
|
|
312
|
+
|
|
298
313
|
By default layers are downloaded on a per-project basis, however, if you want to share them across projects, you can download them to a common place. For example, `layersDir: /tmp/layers` would allow them to be shared across projects. Make sure when using this setting that the directory you are writing layers to can be shared by docker.
|
|
299
314
|
|
|
300
315
|
## Token authorizers
|
|
@@ -346,14 +361,36 @@ defined in the `serverless.yml` can be used to validate the token and scopes in
|
|
|
346
361
|
the signature of the JWT is not validated with the defined issuer. Since this is a security risk, this feature is
|
|
347
362
|
only enabled with the `--ignoreJWTSignature` flag. Make sure to only set this flag for local development work.
|
|
348
363
|
|
|
364
|
+
## Serverless plugin authorizers
|
|
365
|
+
|
|
366
|
+
If your authentication needs are custom and not satisfied by the existing capabilities of the Serverless offline project, you can inject your own authentication strategy. To inject a custom strategy for Lambda invocation, you define a custom variable under `serverless-offline` called `authenticationProvider` in the serverless.yml file. The value of the custom variable will be used to `require(your authenticationProvider value)` where the location is expected to return a function with the following signature.
|
|
367
|
+
|
|
368
|
+
```js
|
|
369
|
+
module.exports = function (endpoint, functionKey, method, path) {
|
|
370
|
+
return {
|
|
371
|
+
name: 'your strategy name',
|
|
372
|
+
scheme: 'your scheme name',
|
|
373
|
+
|
|
374
|
+
getAuthenticateFunction: () => ({
|
|
375
|
+
async authenticate(request, h) {
|
|
376
|
+
// your implementation
|
|
377
|
+
},
|
|
378
|
+
}),
|
|
379
|
+
}
|
|
380
|
+
}
|
|
381
|
+
```
|
|
382
|
+
|
|
383
|
+
A working example of injecting a custom authorization provider can be found in the projects integration tests under the folder `custom-authentication`.
|
|
384
|
+
|
|
349
385
|
## Custom headers
|
|
350
386
|
|
|
351
387
|
You are able to use some custom headers in your request to gain more control over the requestContext object.
|
|
352
388
|
|
|
353
|
-
| Header | Event key |
|
|
354
|
-
| ------------------------------- | ----------------------------------------------------------- |
|
|
355
|
-
| cognito-identity-id | event.requestContext.identity.cognitoIdentityId |
|
|
356
|
-
| cognito-authentication-provider | event.requestContext.identity.cognitoAuthenticationProvider |
|
|
389
|
+
| Header | Event key | Example |
|
|
390
|
+
| ------------------------------- | ----------------------------------------------------------- | --------------------------------------------------------------------------------- |
|
|
391
|
+
| cognito-identity-id | event.requestContext.identity.cognitoIdentityId | |
|
|
392
|
+
| cognito-authentication-provider | event.requestContext.identity.cognitoAuthenticationProvider | |
|
|
393
|
+
| sls-offline-authorizer-override | event.requestContext.authorizer | { "iam": {"cognitoUser": { "amr": ["unauthenticated"], "identityId": "abc123" }}} |
|
|
357
394
|
|
|
358
395
|
By doing this you are now able to change those values using a custom header. This can help you with easier authentication or retrieving the userId from a `cognitoAuthenticationProvider` value.
|
|
359
396
|
|
|
@@ -610,126 +647,130 @@ We try to follow [Airbnb's JavaScript Style Guide](https://github.com/airbnb/jav
|
|
|
610
647
|
|
|
611
648
|
## Contributors
|
|
612
649
|
|
|
613
|
-
[<img alt="dnalborczyk" src="https://avatars1.githubusercontent.com/u/2903325?v=4&s=117" width="117">](https://github.com/dnalborczyk) |[<img alt="dherault" src="https://avatars2.githubusercontent.com/u/4154003?v=4&s=117" width="117">](https://github.com/dherault) |[<img alt="computerpunc" src="https://avatars3.githubusercontent.com/u/721008?v=4&s=117" width="117">](https://github.com/computerpunc) |[<img alt="leonardoalifraco" src="https://avatars0.githubusercontent.com/u/2942943?v=4&s=117" width="117">](https://github.com/leonardoalifraco) |[<img alt="daniel-cottone" src="https://avatars3.githubusercontent.com/u/26556340?v=4&s=117" width="117">](https://github.com/daniel-cottone) |
|
|
614
|
-
|
|
615
|
-
[dnalborczyk](https://github.com/dnalborczyk)
|
|
650
|
+
| [<img alt="dnalborczyk" src="https://avatars1.githubusercontent.com/u/2903325?v=4&s=117" width="117">](https://github.com/dnalborczyk) | [<img alt="dherault" src="https://avatars2.githubusercontent.com/u/4154003?v=4&s=117" width="117">](https://github.com/dherault) | [<img alt="computerpunc" src="https://avatars3.githubusercontent.com/u/721008?v=4&s=117" width="117">](https://github.com/computerpunc) | [<img alt="leonardoalifraco" src="https://avatars0.githubusercontent.com/u/2942943?v=4&s=117" width="117">](https://github.com/leonardoalifraco) | [<img alt="daniel-cottone" src="https://avatars3.githubusercontent.com/u/26556340?v=4&s=117" width="117">](https://github.com/daniel-cottone) |
|
|
651
|
+
| :------------------------------------------------------------------------------------------------------------------------------------: | :------------------------------------------------------------------------------------------------------------------------------: | :-------------------------------------------------------------------------------------------------------------------------------------: | :----------------------------------------------------------------------------------------------------------------------------------------------: | :-------------------------------------------------------------------------------------------------------------------------------------------: |
|
|
652
|
+
| [dnalborczyk](https://github.com/dnalborczyk) | [dherault](https://github.com/dherault) | [computerpunc](https://github.com/computerpunc) | [leonardoalifraco](https://github.com/leonardoalifraco) | [daniel-cottone](https://github.com/daniel-cottone) |
|
|
653
|
+
|
|
654
|
+
| [<img alt="mikestaub" src="https://avatars2.githubusercontent.com/u/1254558?v=4&s=117" width="117">](https://github.com/mikestaub) | [<img alt="Bilal-S" src="https://avatars0.githubusercontent.com/u/668901?v=4&s=117" width="117">](https://github.com/Bilal-S) | [<img alt="dl748" src="https://avatars1.githubusercontent.com/u/4815868?v=4&s=117" width="117">](https://github.com/dl748) | [<img alt="frsechet" src="https://avatars3.githubusercontent.com/u/7351940?v=4&s=117" width="117">](https://github.com/frsechet) | [<img alt="zoellner" src="https://avatars2.githubusercontent.com/u/2665319?v=4&s=117" width="117">](https://github.com/zoellner) |
|
|
655
|
+
| :--------------------------------------------------------------------------------------------------------------------------------: | :---------------------------------------------------------------------------------------------------------------------------: | :------------------------------------------------------------------------------------------------------------------------: | :------------------------------------------------------------------------------------------------------------------------------: | :------------------------------------------------------------------------------------------------------------------------------: |
|
|
656
|
+
| [mikestaub](https://github.com/mikestaub) | [Bilal-S](https://github.com/Bilal-S) | [dl748](https://github.com/dl748) | [frsechet](https://github.com/frsechet) | [zoellner](https://github.com/zoellner) |
|
|
616
657
|
|
|
617
|
-
[<img alt="
|
|
618
|
-
|
|
619
|
-
[
|
|
658
|
+
| [<img alt="johncmckim" src="https://avatars2.githubusercontent.com/u/1297227?v=4&s=117" width="117">](https://github.com/johncmckim) | [<img alt="ThisIsNoZaku" src="https://avatars1.githubusercontent.com/u/4680766?v=4&s=117" width="117">](https://github.com/ThisIsNoZaku) | [<img alt="darthtrevino" src="https://avatars0.githubusercontent.com/u/113544?v=4&s=117" width="117">](https://github.com/darthtrevino) | [<img alt="miltador" src="https://avatars3.githubusercontent.com/u/17062283?v=4&s=117" width="117">](https://github.com/miltador) | [<img alt="gertjvr" src="https://avatars0.githubusercontent.com/u/1691062?v=4&s=117" width="117">](https://github.com/gertjvr) |
|
|
659
|
+
| :----------------------------------------------------------------------------------------------------------------------------------: | :--------------------------------------------------------------------------------------------------------------------------------------: | :-------------------------------------------------------------------------------------------------------------------------------------: | :-------------------------------------------------------------------------------------------------------------------------------: | :----------------------------------------------------------------------------------------------------------------------------: |
|
|
660
|
+
| [johncmckim](https://github.com/johncmckim) | [ThisIsNoZaku](https://github.com/ThisIsNoZaku) | [darthtrevino](https://github.com/darthtrevino) | [miltador](https://github.com/miltador) | [gertjvr](https://github.com/gertjvr) |
|
|
620
661
|
|
|
621
|
-
[<img alt="
|
|
622
|
-
|
|
623
|
-
[
|
|
662
|
+
| [<img alt="juanjoDiaz" src="https://avatars0.githubusercontent.com/u/3322485?v=4&s=117" width="117">](https://github.com/juanjoDiaz) | [<img alt="perkyguy" src="https://avatars3.githubusercontent.com/u/4624648?v=4&s=117" width="117">](https://github.com/perkyguy) | [<img alt="jack-seek" src="https://avatars1.githubusercontent.com/u/19676584?v=4&s=117" width="117">](https://github.com/jack-seek) | [<img alt="hueniverse" src="https://avatars2.githubusercontent.com/u/56631?v=4&s=117" width="117">](https://github.com/hueniverse) | [<img alt="robbtraister" src="https://avatars3.githubusercontent.com/u/5815296?v=4&s=117" width="117">](https://github.com/robbtraister) |
|
|
663
|
+
| :----------------------------------------------------------------------------------------------------------------------------------: | :------------------------------------------------------------------------------------------------------------------------------: | :---------------------------------------------------------------------------------------------------------------------------------: | :--------------------------------------------------------------------------------------------------------------------------------: | :--------------------------------------------------------------------------------------------------------------------------------------: |
|
|
664
|
+
| [juanjoDiaz](https://github.com/juanjoDiaz) | [perkyguy](https://github.com/perkyguy) | [jack-seek](https://github.com/jack-seek) | [hueniverse](https://github.com/hueniverse) | [robbtraister](https://github.com/robbtraister) |
|
|
624
665
|
|
|
625
|
-
[<img alt="
|
|
626
|
-
|
|
627
|
-
[
|
|
666
|
+
| [<img alt="dortega3000" src="https://avatars1.githubusercontent.com/u/6676525?v=4&s=117" width="117">](https://github.com/dortega3000) | [<img alt="ansraliant" src="https://avatars1.githubusercontent.com/u/7121475?v=4&s=117" width="117">](https://github.com/ansraliant) | [<img alt="joubertredrat" src="https://avatars2.githubusercontent.com/u/1520407?v=4&s=117" width="117">](https://github.com/joubertredrat) | [<img alt="andreipopovici" src="https://avatars0.githubusercontent.com/u/1143417?v=4&s=117" width="117">](https://github.com/andreipopovici) | [<img alt="Andorbal" src="https://avatars1.githubusercontent.com/u/579839?v=4&s=117" width="117">](https://github.com/Andorbal) |
|
|
667
|
+
| :------------------------------------------------------------------------------------------------------------------------------------: | :----------------------------------------------------------------------------------------------------------------------------------: | :----------------------------------------------------------------------------------------------------------------------------------------: | :------------------------------------------------------------------------------------------------------------------------------------------: | :-----------------------------------------------------------------------------------------------------------------------------: |
|
|
668
|
+
| [dortega3000](https://github.com/dortega3000) | [ansraliant](https://github.com/ansraliant) | [joubertredrat](https://github.com/joubertredrat) | [andreipopovici](https://github.com/andreipopovici) | [Andorbal](https://github.com/Andorbal) |
|
|
628
669
|
|
|
629
|
-
[<img alt="
|
|
630
|
-
|
|
631
|
-
[
|
|
670
|
+
| [<img alt="AyushG3112" src="https://avatars0.githubusercontent.com/u/21307931?v=4&s=117" width="117">](https://github.com/AyushG3112) | [<img alt="franciscocpg" src="https://avatars1.githubusercontent.com/u/3680556?v=4&s=117" width="117">](https://github.com/franciscocpg) | [<img alt="kajwiklund" src="https://avatars2.githubusercontent.com/u/6842806?v=4&s=117" width="117">](https://github.com/kajwiklund) | [<img alt="ondrowan" src="https://avatars2.githubusercontent.com/u/423776?v=4&s=117" width="117">](https://github.com/ondrowan) | [<img alt="sulaysumaria" src="https://avatars3.githubusercontent.com/u/20580362?v=4&s=117" width="117">](https://github.com/sulaysumaria) |
|
|
671
|
+
| :-----------------------------------------------------------------------------------------------------------------------------------: | :--------------------------------------------------------------------------------------------------------------------------------------: | :----------------------------------------------------------------------------------------------------------------------------------: | :-----------------------------------------------------------------------------------------------------------------------------: | :---------------------------------------------------------------------------------------------------------------------------------------: |
|
|
672
|
+
| [AyushG3112](https://github.com/AyushG3112) | [franciscocpg](https://github.com/franciscocpg) | [kajwiklund](https://github.com/kajwiklund) | [ondrowan](https://github.com/ondrowan) | [sulaysumaria](https://github.com/sulaysumaria) |
|
|
632
673
|
|
|
633
|
-
[<img alt="
|
|
634
|
-
|
|
635
|
-
[
|
|
674
|
+
| [<img alt="jormaechea" src="https://avatars3.githubusercontent.com/u/5612500?v=4&s=117" width="117">](https://github.com/jormaechea) | [<img alt="awwong1" src="https://avatars0.githubusercontent.com/u/2760111?v=4&s=117" width="117">](https://github.com/awwong1) | [<img alt="c24w" src="https://avatars2.githubusercontent.com/u/710406?v=4&s=117" width="117">](https://github.com/c24w) | [<img alt="vmadman" src="https://avatars1.githubusercontent.com/u/1026490?v=4&s=117" width="117">](https://github.com/vmadman) | [<img alt="encounter" src="https://avatars3.githubusercontent.com/u/549122?v=4&s=117" width="117">](https://github.com/encounter) |
|
|
675
|
+
| :----------------------------------------------------------------------------------------------------------------------------------: | :----------------------------------------------------------------------------------------------------------------------------: | :---------------------------------------------------------------------------------------------------------------------: | :----------------------------------------------------------------------------------------------------------------------------: | :-------------------------------------------------------------------------------------------------------------------------------: |
|
|
676
|
+
| [jormaechea](https://github.com/jormaechea) | [awwong1](https://github.com/awwong1) | [c24w](https://github.com/c24w) | [vmadman](https://github.com/vmadman) | [encounter](https://github.com/encounter) |
|
|
636
677
|
|
|
637
|
-
[<img alt="
|
|
638
|
-
|
|
639
|
-
[
|
|
678
|
+
| [<img alt="Bob-Thomas" src="https://avatars3.githubusercontent.com/u/2785213?v=4&s=117" width="117">](https://github.com/Bob-Thomas) | [<img alt="njriordan" src="https://avatars2.githubusercontent.com/u/11200170?v=4&s=117" width="117">](https://github.com/njriordan) | [<img alt="bebbi" src="https://avatars0.githubusercontent.com/u/2752391?v=4&s=117" width="117">](https://github.com/bebbi) | [<img alt="trevor-leach" src="https://avatars0.githubusercontent.com/u/39206334?v=4&s=117" width="117">](https://github.com/trevor-leach) | [<img alt="emmoistner" src="https://avatars2.githubusercontent.com/u/5419727?v=4&s=117" width="117">](https://github.com/emmoistner) |
|
|
679
|
+
| :----------------------------------------------------------------------------------------------------------------------------------: | :---------------------------------------------------------------------------------------------------------------------------------: | :------------------------------------------------------------------------------------------------------------------------: | :---------------------------------------------------------------------------------------------------------------------------------------: | :----------------------------------------------------------------------------------------------------------------------------------: |
|
|
680
|
+
| [Bob-Thomas](https://github.com/Bob-Thomas) | [njriordan](https://github.com/njriordan) | [bebbi](https://github.com/bebbi) | [trevor-leach](https://github.com/trevor-leach) | [emmoistner](https://github.com/emmoistner) |
|
|
640
681
|
|
|
641
|
-
[<img alt="
|
|
642
|
-
|
|
643
|
-
[
|
|
682
|
+
| [<img alt="OrKoN" src="https://avatars3.githubusercontent.com/u/399150?v=4&s=117" width="117">](https://github.com/OrKoN) | [<img alt="adieuadieu" src="https://avatars1.githubusercontent.com/u/438848?v=4&s=117" width="117">](https://github.com/adieuadieu) | [<img alt="apalumbo" src="https://avatars0.githubusercontent.com/u/1729784?v=4&s=117" width="117">](https://github.com/apalumbo) | [<img alt="anishkny" src="https://avatars0.githubusercontent.com/u/357499?v=4&s=117" width="117">](https://github.com/anishkny) | [<img alt="cameroncooper" src="https://avatars3.githubusercontent.com/u/898689?v=4&s=117" width="117">](https://github.com/cameroncooper) |
|
|
683
|
+
| :-----------------------------------------------------------------------------------------------------------------------: | :---------------------------------------------------------------------------------------------------------------------------------: | :------------------------------------------------------------------------------------------------------------------------------: | :-----------------------------------------------------------------------------------------------------------------------------: | :---------------------------------------------------------------------------------------------------------------------------------------: |
|
|
684
|
+
| [OrKoN](https://github.com/OrKoN) | [adieuadieu](https://github.com/adieuadieu) | [apalumbo](https://github.com/apalumbo) | [anishkny](https://github.com/anishkny) | [cameroncooper](https://github.com/cameroncooper) |
|
|
644
685
|
|
|
645
|
-
[<img alt="
|
|
646
|
-
|
|
647
|
-
[
|
|
686
|
+
| [<img alt="cmuto09" src="https://avatars3.githubusercontent.com/u/4679612?v=4&s=117" width="117">](https://github.com/cmuto09) | [<img alt="dschep" src="https://avatars0.githubusercontent.com/u/667763?v=4&s=117" width="117">](https://github.com/dschep) | [<img alt="DimaDK24" src="https://avatars1.githubusercontent.com/u/25607790?v=4&s=117" width="117">](https://github.com/DimaDK24) | [<img alt="dwbelliston" src="https://avatars2.githubusercontent.com/u/11450118?v=4&s=117" width="117">](https://github.com/dwbelliston) | [<img alt="eabadjiev" src="https://avatars0.githubusercontent.com/u/934059?v=4&s=117" width="117">](https://github.com/eabadjiev) |
|
|
687
|
+
| :----------------------------------------------------------------------------------------------------------------------------: | :-------------------------------------------------------------------------------------------------------------------------: | :-------------------------------------------------------------------------------------------------------------------------------: | :-------------------------------------------------------------------------------------------------------------------------------------: | :-------------------------------------------------------------------------------------------------------------------------------: |
|
|
688
|
+
| [cmuto09](https://github.com/cmuto09) | [dschep](https://github.com/dschep) | [DimaDK24](https://github.com/DimaDK24) | [dwbelliston](https://github.com/dwbelliston) | [eabadjiev](https://github.com/eabadjiev) |
|
|
648
689
|
|
|
649
|
-
[<img alt="
|
|
650
|
-
|
|
651
|
-
[
|
|
690
|
+
| [<img alt="Arkfille" src="https://avatars2.githubusercontent.com/u/19840740?v=4&s=117" width="117">](https://github.com/Arkfille) | [<img alt="garunski" src="https://avatars0.githubusercontent.com/u/1002770?v=4&s=117" width="117">](https://github.com/garunski) | [<img alt="james-relyea" src="https://avatars0.githubusercontent.com/u/1944491?v=4&s=117" width="117">](https://github.com/james-relyea) | [<img alt="joewestcott" src="https://avatars0.githubusercontent.com/u/11187741?v=4&s=117" width="117">](https://github.com/joewestcott) | [<img alt="LoganArnett" src="https://avatars2.githubusercontent.com/u/8780547?v=4&s=117" width="117">](https://github.com/LoganArnett) |
|
|
691
|
+
| :-------------------------------------------------------------------------------------------------------------------------------: | :------------------------------------------------------------------------------------------------------------------------------: | :--------------------------------------------------------------------------------------------------------------------------------------: | :-------------------------------------------------------------------------------------------------------------------------------------: | :------------------------------------------------------------------------------------------------------------------------------------: |
|
|
692
|
+
| [Arkfille](https://github.com/Arkfille) | [garunski](https://github.com/garunski) | [james-relyea](https://github.com/james-relyea) | [joewestcott](https://github.com/joewestcott) | [LoganArnett](https://github.com/LoganArnett) |
|
|
652
693
|
|
|
653
|
-
[<img alt="
|
|
654
|
-
|
|
655
|
-
[
|
|
694
|
+
| [<img alt="ablythe" src="https://avatars2.githubusercontent.com/u/6164745?v=4&s=117" width="117">](https://github.com/ablythe) | [<img alt="marccampbell" src="https://avatars3.githubusercontent.com/u/173451?v=4&s=117" width="117">](https://github.com/marccampbell) | [<img alt="purefan" src="https://avatars1.githubusercontent.com/u/315880?v=4&s=117" width="117">](https://github.com/purefan) | [<img alt="mzmiric5" src="https://avatars1.githubusercontent.com/u/1480072?v=4&s=117" width="117">](https://github.com/mzmiric5) | [<img alt="paulhbarker" src="https://avatars0.githubusercontent.com/u/7366567?v=4&s=117" width="117">](https://github.com/paulhbarker) |
|
|
695
|
+
| :----------------------------------------------------------------------------------------------------------------------------: | :-------------------------------------------------------------------------------------------------------------------------------------: | :---------------------------------------------------------------------------------------------------------------------------: | :------------------------------------------------------------------------------------------------------------------------------: | :------------------------------------------------------------------------------------------------------------------------------------: |
|
|
696
|
+
| [ablythe](https://github.com/ablythe) | [marccampbell](https://github.com/marccampbell) | [purefan](https://github.com/purefan) | [mzmiric5](https://github.com/mzmiric5) | [paulhbarker](https://github.com/paulhbarker) |
|
|
656
697
|
|
|
657
|
-
[<img alt="
|
|
658
|
-
|
|
659
|
-
[
|
|
698
|
+
| [<img alt="pmuens" src="https://avatars3.githubusercontent.com/u/1606004?v=4&s=117" width="117">](https://github.com/pmuens) | [<img alt="pierreis" src="https://avatars2.githubusercontent.com/u/203973?v=4&s=117" width="117">](https://github.com/pierreis) | [<img alt="ramonEmilio" src="https://avatars2.githubusercontent.com/u/10362370?v=4&s=117" width="117">](https://github.com/ramonEmilio) | [<img alt="rschick" src="https://avatars3.githubusercontent.com/u/423474?v=4&s=117" width="117">](https://github.com/rschick) | [<img alt="selcukcihan" src="https://avatars0.githubusercontent.com/u/7043904?v=4&s=117" width="117">](https://github.com/selcukcihan) |
|
|
699
|
+
| :--------------------------------------------------------------------------------------------------------------------------: | :-----------------------------------------------------------------------------------------------------------------------------: | :-------------------------------------------------------------------------------------------------------------------------------------: | :---------------------------------------------------------------------------------------------------------------------------: | :------------------------------------------------------------------------------------------------------------------------------------: |
|
|
700
|
+
| [pmuens](https://github.com/pmuens) | [pierreis](https://github.com/pierreis) | [ramonEmilio](https://github.com/ramonEmilio) | [rschick](https://github.com/rschick) | [selcukcihan](https://github.com/selcukcihan) |
|
|
660
701
|
|
|
661
|
-
[<img alt="
|
|
662
|
-
|
|
663
|
-
[
|
|
702
|
+
| [<img alt="patrickheeney" src="https://avatars3.githubusercontent.com/u/1407228?v=4&s=117" width="117">](https://github.com/patrickheeney) | [<img alt="rma4ok" src="https://avatars1.githubusercontent.com/u/470292?v=4&s=117" width="117">](https://github.com/rma4ok) | [<img alt="clschnei" src="https://avatars3.githubusercontent.com/u/1232625?v=4&s=117" width="117">](https://github.com/clschnei) | [<img alt="djcrabhat" src="https://avatars2.githubusercontent.com/u/803042?v=4&s=117" width="117">](https://github.com/djcrabhat) | [<img alt="adam-nielsen" src="https://avatars0.githubusercontent.com/u/278772?v=4&s=117" width="117">](https://github.com/adam-nielsen) |
|
|
703
|
+
| :----------------------------------------------------------------------------------------------------------------------------------------: | :-------------------------------------------------------------------------------------------------------------------------: | :------------------------------------------------------------------------------------------------------------------------------: | :-------------------------------------------------------------------------------------------------------------------------------: | :-------------------------------------------------------------------------------------------------------------------------------------: |
|
|
704
|
+
| [patrickheeney](https://github.com/patrickheeney) | [rma4ok](https://github.com/rma4ok) | [clschnei](https://github.com/clschnei) | [djcrabhat](https://github.com/djcrabhat) | [adam-nielsen](https://github.com/adam-nielsen) |
|
|
664
705
|
|
|
665
|
-
[<img alt="
|
|
666
|
-
|
|
667
|
-
[
|
|
706
|
+
| [<img alt="adamelliottsweeting" src="https://avatars2.githubusercontent.com/u/8907331?v=4&s=117" width="117">](https://github.com/adamelliottsweeting) | [<img alt="againer" src="https://avatars3.githubusercontent.com/u/509709?v=4&s=117" width="117">](https://github.com/againer) | [<img alt="alebianco-doxee" src="https://avatars0.githubusercontent.com/u/56639478?v=4&s=117" width="117">](https://github.com/alebianco-doxee) | [<img alt="koterpillar" src="https://avatars0.githubusercontent.com/u/140276?v=4&s=117" width="117">](https://github.com/koterpillar) | [<img alt="triptec" src="https://avatars0.githubusercontent.com/u/240159?v=4&s=117" width="117">](https://github.com/triptec) |
|
|
707
|
+
| :----------------------------------------------------------------------------------------------------------------------------------------------------: | :---------------------------------------------------------------------------------------------------------------------------: | :---------------------------------------------------------------------------------------------------------------------------------------------: | :-----------------------------------------------------------------------------------------------------------------------------------: | :---------------------------------------------------------------------------------------------------------------------------: |
|
|
708
|
+
| [adamelliottsweeting](https://github.com/adamelliottsweeting) | [againer](https://github.com/againer) | [alebianco-doxee](https://github.com/alebianco-doxee) | [koterpillar](https://github.com/koterpillar) | [triptec](https://github.com/triptec) |
|
|
668
709
|
|
|
669
|
-
[<img alt="
|
|
670
|
-
|
|
671
|
-
[
|
|
710
|
+
| [<img alt="constb" src="https://avatars3.githubusercontent.com/u/1006766?v=4&s=117" width="117">](https://github.com/constb) | [<img alt="cspotcode" src="https://avatars1.githubusercontent.com/u/376504?v=4&s=117" width="117">](https://github.com/cspotcode) | [<img alt="aliatsis" src="https://avatars3.githubusercontent.com/u/4140524?v=4&s=117" width="117">](https://github.com/aliatsis) | [<img alt="arnas" src="https://avatars3.githubusercontent.com/u/13507001?v=4&s=117" width="117">](https://github.com/arnas) | [<img alt="akaila" src="https://avatars2.githubusercontent.com/u/484181?v=4&s=117" width="117">](https://github.com/akaila) |
|
|
711
|
+
| :--------------------------------------------------------------------------------------------------------------------------: | :-------------------------------------------------------------------------------------------------------------------------------: | :------------------------------------------------------------------------------------------------------------------------------: | :-------------------------------------------------------------------------------------------------------------------------: | :-------------------------------------------------------------------------------------------------------------------------: |
|
|
712
|
+
| [constb](https://github.com/constb) | [cspotcode](https://github.com/cspotcode) | [aliatsis](https://github.com/aliatsis) | [arnas](https://github.com/arnas) | [akaila](https://github.com/akaila) |
|
|
672
713
|
|
|
673
|
-
[<img alt="
|
|
674
|
-
|
|
675
|
-
[
|
|
714
|
+
| [<img alt="ac360" src="https://avatars1.githubusercontent.com/u/2752551?v=4&s=117" width="117">](https://github.com/ac360) | [<img alt="austin-payne" src="https://avatars3.githubusercontent.com/u/29075091?v=4&s=117" width="117">](https://github.com/austin-payne) | [<img alt="bencooling" src="https://avatars3.githubusercontent.com/u/718994?v=4&s=117" width="117">](https://github.com/bencooling) | [<img alt="BorjaMacedo" src="https://avatars1.githubusercontent.com/u/16381759?v=4&s=117" width="117">](https://github.com/BorjaMacedo) | [<img alt="BrandonE" src="https://avatars1.githubusercontent.com/u/542245?v=4&s=117" width="117">](https://github.com/BrandonE) |
|
|
715
|
+
| :------------------------------------------------------------------------------------------------------------------------: | :---------------------------------------------------------------------------------------------------------------------------------------: | :---------------------------------------------------------------------------------------------------------------------------------: | :-------------------------------------------------------------------------------------------------------------------------------------: | :-----------------------------------------------------------------------------------------------------------------------------: |
|
|
716
|
+
| [ac360](https://github.com/ac360) | [austin-payne](https://github.com/austin-payne) | [bencooling](https://github.com/bencooling) | [BorjaMacedo](https://github.com/BorjaMacedo) | [BrandonE](https://github.com/BrandonE) |
|
|
676
717
|
|
|
677
|
-
[<img alt="
|
|
678
|
-
|
|
679
|
-
[
|
|
718
|
+
| [<img alt="guerrerocarlos" src="https://avatars2.githubusercontent.com/u/82532?v=4&s=117" width="117">](https://github.com/guerrerocarlos) | [<img alt="chrismcleod" src="https://avatars1.githubusercontent.com/u/1134683?v=4&s=117" width="117">](https://github.com/chrismcleod) | [<img alt="christophgysin" src="https://avatars0.githubusercontent.com/u/527924?v=4&s=117" width="117">](https://github.com/christophgysin) | [<img alt="Clement134" src="https://avatars2.githubusercontent.com/u/6473775?v=4&s=117" width="117">](https://github.com/Clement134) | [<img alt="rlgod" src="https://avatars2.githubusercontent.com/u/1705096?v=4&s=117" width="117">](https://github.com/rlgod) |
|
|
719
|
+
| :----------------------------------------------------------------------------------------------------------------------------------------: | :------------------------------------------------------------------------------------------------------------------------------------: | :-----------------------------------------------------------------------------------------------------------------------------------------: | :----------------------------------------------------------------------------------------------------------------------------------: | :------------------------------------------------------------------------------------------------------------------------: |
|
|
720
|
+
| [guerrerocarlos](https://github.com/guerrerocarlos) | [chrismcleod](https://github.com/chrismcleod) | [christophgysin](https://github.com/christophgysin) | [Clement134](https://github.com/Clement134) | [rlgod](https://github.com/rlgod) |
|
|
680
721
|
|
|
681
|
-
[<img alt="
|
|
682
|
-
|
|
683
|
-
[
|
|
722
|
+
| [<img alt="dbunker" src="https://avatars1.githubusercontent.com/u/751580?v=4&s=117" width="117">](https://github.com/dbunker) | [<img alt="dobrynin" src="https://avatars3.githubusercontent.com/u/12061016?v=4&s=117" width="117">](https://github.com/dobrynin) | [<img alt="domaslasauskas" src="https://avatars2.githubusercontent.com/u/2464675?v=4&s=117" width="117">](https://github.com/domaslasauskas) | [<img alt="enolan" src="https://avatars0.githubusercontent.com/u/61517?v=4&s=117" width="117">](https://github.com/enolan) | [<img alt="minibikini" src="https://avatars3.githubusercontent.com/u/439309?v=4&s=117" width="117">](https://github.com/minibikini) |
|
|
723
|
+
| :---------------------------------------------------------------------------------------------------------------------------: | :-------------------------------------------------------------------------------------------------------------------------------: | :------------------------------------------------------------------------------------------------------------------------------------------: | :------------------------------------------------------------------------------------------------------------------------: | :---------------------------------------------------------------------------------------------------------------------------------: |
|
|
724
|
+
| [dbunker](https://github.com/dbunker) | [dobrynin](https://github.com/dobrynin) | [domaslasauskas](https://github.com/domaslasauskas) | [enolan](https://github.com/enolan) | [minibikini](https://github.com/minibikini) |
|
|
684
725
|
|
|
685
|
-
[<img alt="
|
|
686
|
-
|
|
687
|
-
[
|
|
726
|
+
| [<img alt="em0ney" src="https://avatars0.githubusercontent.com/u/5679658?v=4&s=117" width="117">](https://github.com/em0ney) | [<img alt="erauer" src="https://avatars0.githubusercontent.com/u/792171?v=4&s=117" width="117">](https://github.com/erauer) | [<img alt="gbroques" src="https://avatars0.githubusercontent.com/u/12969835?v=4&s=117" width="117">](https://github.com/gbroques) | [<img alt="guillaume" src="https://avatars1.githubusercontent.com/u/368?v=4&s=117" width="117">](https://github.com/guillaume) | [<img alt="balassy" src="https://avatars1.githubusercontent.com/u/1872777?v=4&s=117" width="117">](https://github.com/balassy) |
|
|
727
|
+
| :--------------------------------------------------------------------------------------------------------------------------: | :-------------------------------------------------------------------------------------------------------------------------: | :-------------------------------------------------------------------------------------------------------------------------------: | :----------------------------------------------------------------------------------------------------------------------------: | :----------------------------------------------------------------------------------------------------------------------------: |
|
|
728
|
+
| [em0ney](https://github.com/em0ney) | [erauer](https://github.com/erauer) | [gbroques](https://github.com/gbroques) | [guillaume](https://github.com/guillaume) | [balassy](https://github.com/balassy) |
|
|
688
729
|
|
|
689
|
-
[<img alt="
|
|
690
|
-
|
|
691
|
-
[
|
|
730
|
+
| [<img alt="idmontie" src="https://avatars3.githubusercontent.com/u/412382?v=4&s=117" width="117">](https://github.com/idmontie) | [<img alt="jacintoArias" src="https://avatars0.githubusercontent.com/u/7511199?v=4&s=117" width="117">](https://github.com/jacintoArias) | [<img alt="jgrigg" src="https://avatars1.githubusercontent.com/u/12800024?v=4&s=117" width="117">](https://github.com/jgrigg) | [<img alt="jsnajdr" src="https://avatars3.githubusercontent.com/u/664258?v=4&s=117" width="117">](https://github.com/jsnajdr) | [<img alt="horyd" src="https://avatars3.githubusercontent.com/u/916414?v=4&s=117" width="117">](https://github.com/horyd) |
|
|
731
|
+
| :-----------------------------------------------------------------------------------------------------------------------------: | :--------------------------------------------------------------------------------------------------------------------------------------: | :---------------------------------------------------------------------------------------------------------------------------: | :---------------------------------------------------------------------------------------------------------------------------: | :-----------------------------------------------------------------------------------------------------------------------: |
|
|
732
|
+
| [idmontie](https://github.com/idmontie) | [jacintoArias](https://github.com/jacintoArias) | [jgrigg](https://github.com/jgrigg) | [jsnajdr](https://github.com/jsnajdr) | [horyd](https://github.com/horyd) |
|
|
692
733
|
|
|
693
|
-
[<img alt="
|
|
694
|
-
|
|
695
|
-
[
|
|
734
|
+
| [<img alt="jaydp17" src="https://avatars1.githubusercontent.com/u/1743425?v=4&s=117" width="117">](https://github.com/jaydp17) | [<img alt="jeremygiberson" src="https://avatars2.githubusercontent.com/u/487411?v=4&s=117" width="117">](https://github.com/jeremygiberson) | [<img alt="josephwarrick" src="https://avatars2.githubusercontent.com/u/5392984?v=4&s=117" width="117">](https://github.com/josephwarrick) | [<img alt="jlsjonas" src="https://avatars1.githubusercontent.com/u/932193?v=4&s=117" width="117">](https://github.com/jlsjonas) | [<img alt="joostfarla" src="https://avatars0.githubusercontent.com/u/851863?v=4&s=117" width="117">](https://github.com/joostfarla) |
|
|
735
|
+
| :----------------------------------------------------------------------------------------------------------------------------: | :-----------------------------------------------------------------------------------------------------------------------------------------: | :----------------------------------------------------------------------------------------------------------------------------------------: | :-----------------------------------------------------------------------------------------------------------------------------: | :---------------------------------------------------------------------------------------------------------------------------------: |
|
|
736
|
+
| [jaydp17](https://github.com/jaydp17) | [jeremygiberson](https://github.com/jeremygiberson) | [josephwarrick](https://github.com/josephwarrick) | [jlsjonas](https://github.com/jlsjonas) | [joostfarla](https://github.com/joostfarla) |
|
|
696
737
|
|
|
697
|
-
[<img alt="
|
|
698
|
-
|
|
699
|
-
[
|
|
738
|
+
| [<img alt="kenleytomlin" src="https://avatars3.githubusercontent.com/u/3004590?v=4&s=117" width="117">](https://github.com/kenleytomlin) | [<img alt="lalifraco-devspark" src="https://avatars1.githubusercontent.com/u/13339324?v=4&s=117" width="117">](https://github.com/lalifraco-devspark) | [<img alt="DynamicSTOP" src="https://avatars0.githubusercontent.com/u/9434504?v=4&s=117" width="117">](https://github.com/DynamicSTOP) | [<img alt="medikoo" src="https://avatars3.githubusercontent.com/u/122434?v=4&s=117" width="117">](https://github.com/medikoo) | [<img alt="neverendingqs" src="https://avatars1.githubusercontent.com/u/8854618?v=4&s=117" width="117">](https://github.com/neverendingqs) |
|
|
739
|
+
| :--------------------------------------------------------------------------------------------------------------------------------------: | :---------------------------------------------------------------------------------------------------------------------------------------------------: | :------------------------------------------------------------------------------------------------------------------------------------: | :---------------------------------------------------------------------------------------------------------------------------: | :----------------------------------------------------------------------------------------------------------------------------------------: |
|
|
740
|
+
| [kenleytomlin](https://github.com/kenleytomlin) | [lalifraco-devspark](https://github.com/lalifraco-devspark) | [DynamicSTOP](https://github.com/DynamicSTOP) | [medikoo](https://github.com/medikoo) | [neverendingqs](https://github.com/neverendingqs) |
|
|
700
741
|
|
|
701
|
-
[<img alt="
|
|
702
|
-
|
|
703
|
-
[
|
|
742
|
+
| [<img alt="msjonker" src="https://avatars3.githubusercontent.com/u/781683?v=4&s=117" width="117">](https://github.com/msjonker) | [<img alt="Takeno" src="https://avatars0.githubusercontent.com/u/1499063?v=4&s=117" width="117">](https://github.com/Takeno) | [<img alt="mjmac" src="https://avatars1.githubusercontent.com/u/83737?v=4&s=117" width="117">](https://github.com/mjmac) | [<img alt="ojongerius" src="https://avatars0.githubusercontent.com/u/1726055?v=4&s=117" width="117">](https://github.com/ojongerius) | [<img alt="thepont" src="https://avatars1.githubusercontent.com/u/2901992?v=4&s=117" width="117">](https://github.com/thepont) |
|
|
743
|
+
| :-----------------------------------------------------------------------------------------------------------------------------: | :--------------------------------------------------------------------------------------------------------------------------: | :----------------------------------------------------------------------------------------------------------------------: | :----------------------------------------------------------------------------------------------------------------------------------: | :----------------------------------------------------------------------------------------------------------------------------: |
|
|
744
|
+
| [msjonker](https://github.com/msjonker) | [Takeno](https://github.com/Takeno) | [mjmac](https://github.com/mjmac) | [ojongerius](https://github.com/ojongerius) | [thepont](https://github.com/thepont) |
|
|
704
745
|
|
|
705
|
-
[<img alt="
|
|
706
|
-
|
|
707
|
-
[
|
|
746
|
+
| [<img alt="WooDzu" src="https://avatars3.githubusercontent.com/u/2228236?v=4&s=117" width="117">](https://github.com/WooDzu) | [<img alt="PsychicCat" src="https://avatars3.githubusercontent.com/u/4073856?v=4&s=117" width="117">](https://github.com/PsychicCat) | [<img alt="Raph22" src="https://avatars0.githubusercontent.com/u/18127594?v=4&s=117" width="117">](https://github.com/Raph22) | [<img alt="wwsno" src="https://avatars0.githubusercontent.com/u/6328924?v=4&s=117" width="117">](https://github.com/wwsno) | [<img alt="gribnoysup" src="https://avatars2.githubusercontent.com/u/5036933?v=4&s=117" width="117">](https://github.com/gribnoysup) |
|
|
747
|
+
| :--------------------------------------------------------------------------------------------------------------------------: | :----------------------------------------------------------------------------------------------------------------------------------: | :---------------------------------------------------------------------------------------------------------------------------: | :------------------------------------------------------------------------------------------------------------------------: | :----------------------------------------------------------------------------------------------------------------------------------: |
|
|
748
|
+
| [WooDzu](https://github.com/WooDzu) | [PsychicCat](https://github.com/PsychicCat) | [Raph22](https://github.com/Raph22) | [wwsno](https://github.com/wwsno) | [gribnoysup](https://github.com/gribnoysup) |
|
|
708
749
|
|
|
709
|
-
[<img alt="
|
|
710
|
-
|
|
711
|
-
[
|
|
750
|
+
| [<img alt="starsprung" src="https://avatars3.githubusercontent.com/u/48957?v=4&s=117" width="117">](https://github.com/starsprung) | [<img alt="shineli-not-used-anymore" src="https://avatars3.githubusercontent.com/u/1043331?v=4&s=117" width="117">](https://github.com/shineli-not-used-anymore) | [<img alt="stesie" src="https://avatars1.githubusercontent.com/u/113068?v=4&s=117" width="117">](https://github.com/stesie) | [<img alt="stevemao" src="https://avatars0.githubusercontent.com/u/6316590?v=4&s=117" width="117">](https://github.com/stevemao) | [<img alt="ittus" src="https://avatars3.githubusercontent.com/u/5120965?v=4&s=117" width="117">](https://github.com/ittus) |
|
|
751
|
+
| :--------------------------------------------------------------------------------------------------------------------------------: | :--------------------------------------------------------------------------------------------------------------------------------------------------------------: | :-------------------------------------------------------------------------------------------------------------------------: | :------------------------------------------------------------------------------------------------------------------------------: | :------------------------------------------------------------------------------------------------------------------------: |
|
|
752
|
+
| [starsprung](https://github.com/starsprung) | [shineli-not-used-anymore](https://github.com/shineli-not-used-anymore) | [stesie](https://github.com/stesie) | [stevemao](https://github.com/stevemao) | [ittus](https://github.com/ittus) |
|
|
712
753
|
|
|
713
|
-
[<img alt="
|
|
714
|
-
|
|
715
|
-
[
|
|
754
|
+
| [<img alt="tiagogoncalves89" src="https://avatars2.githubusercontent.com/u/55122?v=4&s=117" width="117">](https://github.com/tiagogoncalves89) | [<img alt="tuanmh" src="https://avatars2.githubusercontent.com/u/3193353?v=4&s=117" width="117">](https://github.com/tuanmh) | [<img alt="Gregoirevda" src="https://avatars3.githubusercontent.com/u/12223738?v=4&s=117" width="117">](https://github.com/Gregoirevda) | [<img alt="gcphost" src="https://avatars3.githubusercontent.com/u/1173636?v=4&s=117" width="117">](https://github.com/gcphost) | [<img alt="YaroslavApatiev" src="https://avatars0.githubusercontent.com/u/24372409?v=4&s=117" width="117">](https://github.com/YaroslavApatiev) |
|
|
755
|
+
| :--------------------------------------------------------------------------------------------------------------------------------------------: | :--------------------------------------------------------------------------------------------------------------------------: | :-------------------------------------------------------------------------------------------------------------------------------------: | :----------------------------------------------------------------------------------------------------------------------------: | :---------------------------------------------------------------------------------------------------------------------------------------------: |
|
|
756
|
+
| [tiagogoncalves89](https://github.com/tiagogoncalves89) | [tuanmh](https://github.com/tuanmh) | [Gregoirevda](https://github.com/Gregoirevda) | [gcphost](https://github.com/gcphost) | [YaroslavApatiev](https://github.com/YaroslavApatiev) |
|
|
716
757
|
|
|
717
|
-
[<img alt="
|
|
718
|
-
|
|
719
|
-
[
|
|
758
|
+
| [<img alt="zacacollier" src="https://avatars2.githubusercontent.com/u/18710669?v=4&s=117" width="117">](https://github.com/zacacollier) | [<img alt="allenhartwig" src="https://avatars2.githubusercontent.com/u/1261521?v=4&s=117" width="117">](https://github.com/allenhartwig) | [<img alt="demetriusnunes" src="https://avatars0.githubusercontent.com/u/4699?v=4&s=117" width="117">](https://github.com/demetriusnunes) | [<img alt="hsz" src="https://avatars3.githubusercontent.com/u/108333?v=4&s=117" width="117">](https://github.com/hsz) | [<img alt="electrikdevelopment" src="https://avatars3.githubusercontent.com/u/14976795?v=4&s=117" width="117">](https://github.com/electrikdevelopment) |
|
|
759
|
+
| :-------------------------------------------------------------------------------------------------------------------------------------: | :--------------------------------------------------------------------------------------------------------------------------------------: | :---------------------------------------------------------------------------------------------------------------------------------------: | :-------------------------------------------------------------------------------------------------------------------: | :-----------------------------------------------------------------------------------------------------------------------------------------------------: |
|
|
760
|
+
| [zacacollier](https://github.com/zacacollier) | [allenhartwig](https://github.com/allenhartwig) | [demetriusnunes](https://github.com/demetriusnunes) | [hsz](https://github.com/hsz) | [electrikdevelopment](https://github.com/electrikdevelopment) |
|
|
720
761
|
|
|
721
|
-
[<img alt="
|
|
722
|
-
|
|
723
|
-
[
|
|
762
|
+
| [<img alt="jgilbert01" src="https://avatars1.githubusercontent.com/u/1082126?v=4&s=117" width="117">](https://github.com/jgilbert01) | [<img alt="polaris340" src="https://avatars2.githubusercontent.com/u/2861192?v=4&s=117" width="117">](https://github.com/polaris340) | [<img alt="kobanyan" src="https://avatars0.githubusercontent.com/u/14950314?v=4&s=117" width="117">](https://github.com/kobanyan) | [<img alt="leruitga-ss" src="https://avatars1.githubusercontent.com/u/39830392?v=4&s=117" width="117">](https://github.com/leruitga-ss) | [<img alt="livingmine" src="https://avatars1.githubusercontent.com/u/7286614?v=4&s=117" width="117">](https://github.com/livingmine) |
|
|
763
|
+
| :----------------------------------------------------------------------------------------------------------------------------------: | :----------------------------------------------------------------------------------------------------------------------------------: | :-------------------------------------------------------------------------------------------------------------------------------: | :-------------------------------------------------------------------------------------------------------------------------------------: | :----------------------------------------------------------------------------------------------------------------------------------: |
|
|
764
|
+
| [jgilbert01](https://github.com/jgilbert01) | [polaris340](https://github.com/polaris340) | [kobanyan](https://github.com/kobanyan) | [leruitga-ss](https://github.com/leruitga-ss) | [livingmine](https://github.com/livingmine) |
|
|
724
765
|
|
|
725
|
-
[<img alt="
|
|
726
|
-
|
|
727
|
-
[
|
|
766
|
+
| [<img alt="lteacher" src="https://avatars3.githubusercontent.com/u/6103860?v=4&s=117" width="117">](https://github.com/lteacher) | [<img alt="martinmicunda" src="https://avatars1.githubusercontent.com/u/1643606?v=4&s=117" width="117">](https://github.com/martinmicunda) | [<img alt="nori3tsu" src="https://avatars0.githubusercontent.com/u/379587?v=4&s=117" width="117">](https://github.com/nori3tsu) | [<img alt="ppasmanik" src="https://avatars0.githubusercontent.com/u/3534835?v=4&s=117" width="117">](https://github.com/ppasmanik) | [<img alt="ryanzyy" src="https://avatars1.githubusercontent.com/u/2299226?v=4&s=117" width="117">](https://github.com/ryanzyy) |
|
|
767
|
+
| :------------------------------------------------------------------------------------------------------------------------------: | :----------------------------------------------------------------------------------------------------------------------------------------: | :-----------------------------------------------------------------------------------------------------------------------------: | :--------------------------------------------------------------------------------------------------------------------------------: | :----------------------------------------------------------------------------------------------------------------------------: |
|
|
768
|
+
| [lteacher](https://github.com/lteacher) | [martinmicunda](https://github.com/martinmicunda) | [nori3tsu](https://github.com/nori3tsu) | [ppasmanik](https://github.com/ppasmanik) | [ryanzyy](https://github.com/ryanzyy) |
|
|
728
769
|
|
|
729
|
-
[<img alt="
|
|
730
|
-
|
|
731
|
-
[
|
|
770
|
+
| [<img alt="m0ppers" src="https://avatars3.githubusercontent.com/u/819421?v=4&s=117" width="117">](https://github.com/m0ppers) | [<img alt="footballencarta" src="https://avatars0.githubusercontent.com/u/1312258?v=4&s=117" width="117">](https://github.com/footballencarta) | [<img alt="bryanvaz" src="https://avatars0.githubusercontent.com/u/9157498?v=4&s=117" width="117">](https://github.com/bryanvaz) | [<img alt="njyjn" src="https://avatars.githubusercontent.com/u/10694375?v=4&s=117" width="117">](https://github.com/njyjn) | |
|
|
771
|
+
| :---------------------------------------------------------------------------------------------------------------------------: | :--------------------------------------------------------------------------------------------------------------------------------------------: | :------------------------------------------------------------------------------------------------------------------------------: | :------------------------------------------------------------------------------------------------------------------------: | ------------------------------------- |
|
|
772
|
+
| [m0ppers](https://github.com/m0ppers) | [footballencarta](https://github.com/footballencarta) | [bryanvaz](https://github.com/bryanvaz) | [njyjn](https://github.com/njyjn) | [kdybicz](https://github.com/kdybicz) |
|
|
732
773
|
|
|
733
|
-
|
|
734
|
-
|
|
735
|
-
|
|
774
|
+
| [<img alt="ericctsf" src="https://avatars.githubusercontent.com/u/42775388?s=400&v=4" width="117">](https://github.com/ericctsf) | | | | |
|
|
775
|
+
| :------------------------------------------------------------------------------------------------------------------------------: | :-: | :-: | :-: | :-: |
|
|
776
|
+
| [ericctsf](https://github.com/erictsf) | | | | |
|