Skip to content

Instantly share code, notes, and snippets.

@dckc
Last active December 12, 2024 07:18
Show Gist options
  • Save dckc/53d44b5b11b9c462c9f3d0e33db2994f to your computer and use it in GitHub Desktop.
Save dckc/53d44b5b11b9c462c9f3d0e33db2994f to your computer and use it in GitHub Desktop.

blog item:


Earlier

I used the github API to get stargazer data for awesome-ocap. chatgpt wrote the code to make a chart.

stargazers_chart.svg

chatgpt wrote some code to do the fetching; the initial version had and endless loop, so I'm in a rate-limiting penalty box at github just now.

That meant using nix to set up a python env for pandas and such, but the rate limiting put the kibosh on that.

So I used uv to run it.

TODO:

  • attach GPT session
  • attach shell session
#!/usr/bin/env python3
import sys
import json
import urllib.request
import os
def fetch_stargazers(repo, token, output_file="stargazers.json"):
"""
Fetch stargazers from the GitHub API using a personal access token.
"""
base_url = f"https://api.github.com/repos/{repo}/stargazers"
headers = {
"Accept": "application/vnd.github.v3.star+json",
"Authorization": f"token {token}",
"User-Agent": "fetch-stargazers-script"
}
page = 1
per_page = 100
all_stargazers = []
while True:
url = f"{base_url}?page={page}&per_page={per_page}"
req = urllib.request.Request(url, headers=headers)
try:
with urllib.request.urlopen(req) as response:
data = response.read()
stargazers = json.loads(data.decode("utf-8"))
# Break if there are no more stargazers
if not stargazers:
break
all_stargazers.extend(stargazers)
page += 1
except urllib.error.HTTPError as e:
print(f"HTTP Error: {e.code} - {e.reason}")
if e.code == 403:
print("You may have hit the rate limit. Wait and try again later.")
sys.exit(1)
# Save to file
with open(output_file, "w") as f:
json.dump(all_stargazers, f, indent=2)
print(f"Fetched {len(all_stargazers)} stargazers and saved to {output_file}.")
if __name__ == "__main__":
if len(sys.argv) < 2:
print("Usage: fetch_stargazers.py <repo>")
sys.exit(1)
repo = sys.argv[1]
token = os.getenv("GITHUB_TOKEN")
if not token:
print("Error: A GitHub personal access token must be set in the GITHUB_TOKEN environment variable.")
sys.exit(1)
fetch_stargazers(repo, token)
# Makefile for fetching stargazers and generating a chart
# Repository details
REPO=dckc/awesome-ocap
OUTPUT=stargazers.json
SCRIPT=script.py
CHART=stargazers_chart.png
FETCH_SCRIPT=fetch_stargazers.py
# Python environment with Nix
PYTHON_ENV=nix run nixpkgs#python39Packages.matplotlib nixpkgs#python39Packages.pandas nixpkgs#python39Packages.requests -c python
# Fetch stargazers
fetch: $(OUTPUT)
$(OUTPUT): $(FETCH_SCRIPT)
@echo "Fetching stargazer data for $(REPO)..."
python3 $(FETCH_SCRIPT) $(REPO) $(OUTPUT)
@echo "Stargazer data saved to $(OUTPUT)."
# Generate chart
chart: $(CHART)
$(CHART): $(SCRIPT) $(OUTPUT)
@echo "Generating chart..."
@$(PYTHON_ENV) $(SCRIPT)
# Clean up
clean:
@rm -f $(OUTPUT) $(CHART)
# All tasks
all: fetch chart
.PHONY: fetch chart clean all
[project]
name = "sg"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"matplotlib>=3.9.3",
"pandas>=2.2.3",
"requests>=2.32.3",
]
import json
import pandas as pd
import matplotlib.pyplot as plt
# Load stargazers data
with open("stargazers.json", "r") as f:
data = json.load(f)
# Extract timestamps
timestamps = [item['starred_at'][:10] for item in data]
# Process data into a DataFrame
df = pd.DataFrame(timestamps, columns=["date"])
df['date'] = pd.to_datetime(df['date'])
stargazers_count = df.groupby('date').size().cumsum()
# Plot the chart
plt.figure(figsize=(10, 6))
plt.plot(stargazers_count.index, stargazers_count.values, marker='o')
plt.title("awesome-ocap Stargazer Growth")
plt.xlabel("Date")
plt.ylabel("Cumulative Stargazers")
plt.grid(True)
plt.savefig("stargazers_chart.svg")
plt.close()
[
{
"starred_at": "2016-10-16T03:18:08Z",
"user": {
"login": "william-ml-leslie",
"id": 47010,
"node_id": "MDQ6VXNlcjQ3MDEw",
"avatar_url": "https://avatars.githubusercontent.com/u/47010?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/william-ml-leslie",
"html_url": "https://github.com/william-ml-leslie",
"followers_url": "https://api.github.com/users/william-ml-leslie/followers",
"following_url": "https://api.github.com/users/william-ml-leslie/following{/other_user}",
"gists_url": "https://api.github.com/users/william-ml-leslie/gists{/gist_id}",
"starred_url": "https://api.github.com/users/william-ml-leslie/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/william-ml-leslie/subscriptions",
"organizations_url": "https://api.github.com/users/william-ml-leslie/orgs",
"repos_url": "https://api.github.com/users/william-ml-leslie/repos",
"events_url": "https://api.github.com/users/william-ml-leslie/events{/privacy}",
"received_events_url": "https://api.github.com/users/william-ml-leslie/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2016-10-16T17:48:34Z",
"user": {
"login": "gsfyrakis",
"id": 55080,
"node_id": "MDQ6VXNlcjU1MDgw",
"avatar_url": "https://avatars.githubusercontent.com/u/55080?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/gsfyrakis",
"html_url": "https://github.com/gsfyrakis",
"followers_url": "https://api.github.com/users/gsfyrakis/followers",
"following_url": "https://api.github.com/users/gsfyrakis/following{/other_user}",
"gists_url": "https://api.github.com/users/gsfyrakis/gists{/gist_id}",
"starred_url": "https://api.github.com/users/gsfyrakis/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/gsfyrakis/subscriptions",
"organizations_url": "https://api.github.com/users/gsfyrakis/orgs",
"repos_url": "https://api.github.com/users/gsfyrakis/repos",
"events_url": "https://api.github.com/users/gsfyrakis/events{/privacy}",
"received_events_url": "https://api.github.com/users/gsfyrakis/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2016-12-30T20:50:23Z",
"user": {
"login": "martymcguire",
"id": 14772,
"node_id": "MDQ6VXNlcjE0Nzcy",
"avatar_url": "https://avatars.githubusercontent.com/u/14772?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/martymcguire",
"html_url": "https://github.com/martymcguire",
"followers_url": "https://api.github.com/users/martymcguire/followers",
"following_url": "https://api.github.com/users/martymcguire/following{/other_user}",
"gists_url": "https://api.github.com/users/martymcguire/gists{/gist_id}",
"starred_url": "https://api.github.com/users/martymcguire/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/martymcguire/subscriptions",
"organizations_url": "https://api.github.com/users/martymcguire/orgs",
"repos_url": "https://api.github.com/users/martymcguire/repos",
"events_url": "https://api.github.com/users/martymcguire/events{/privacy}",
"received_events_url": "https://api.github.com/users/martymcguire/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2017-01-15T03:19:51Z",
"user": {
"login": "zmanian",
"id": 93434,
"node_id": "MDQ6VXNlcjkzNDM0",
"avatar_url": "https://avatars.githubusercontent.com/u/93434?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/zmanian",
"html_url": "https://github.com/zmanian",
"followers_url": "https://api.github.com/users/zmanian/followers",
"following_url": "https://api.github.com/users/zmanian/following{/other_user}",
"gists_url": "https://api.github.com/users/zmanian/gists{/gist_id}",
"starred_url": "https://api.github.com/users/zmanian/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/zmanian/subscriptions",
"organizations_url": "https://api.github.com/users/zmanian/orgs",
"repos_url": "https://api.github.com/users/zmanian/repos",
"events_url": "https://api.github.com/users/zmanian/events{/privacy}",
"received_events_url": "https://api.github.com/users/zmanian/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2017-01-30T16:25:21Z",
"user": {
"login": "thinkmoore",
"id": 236849,
"node_id": "MDQ6VXNlcjIzNjg0OQ==",
"avatar_url": "https://avatars.githubusercontent.com/u/236849?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/thinkmoore",
"html_url": "https://github.com/thinkmoore",
"followers_url": "https://api.github.com/users/thinkmoore/followers",
"following_url": "https://api.github.com/users/thinkmoore/following{/other_user}",
"gists_url": "https://api.github.com/users/thinkmoore/gists{/gist_id}",
"starred_url": "https://api.github.com/users/thinkmoore/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/thinkmoore/subscriptions",
"organizations_url": "https://api.github.com/users/thinkmoore/orgs",
"repos_url": "https://api.github.com/users/thinkmoore/repos",
"events_url": "https://api.github.com/users/thinkmoore/events{/privacy}",
"received_events_url": "https://api.github.com/users/thinkmoore/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2017-02-09T05:48:27Z",
"user": {
"login": "laanwj",
"id": 126646,
"node_id": "MDQ6VXNlcjEyNjY0Ng==",
"avatar_url": "https://avatars.githubusercontent.com/u/126646?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/laanwj",
"html_url": "https://github.com/laanwj",
"followers_url": "https://api.github.com/users/laanwj/followers",
"following_url": "https://api.github.com/users/laanwj/following{/other_user}",
"gists_url": "https://api.github.com/users/laanwj/gists{/gist_id}",
"starred_url": "https://api.github.com/users/laanwj/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/laanwj/subscriptions",
"organizations_url": "https://api.github.com/users/laanwj/orgs",
"repos_url": "https://api.github.com/users/laanwj/repos",
"events_url": "https://api.github.com/users/laanwj/events{/privacy}",
"received_events_url": "https://api.github.com/users/laanwj/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2017-04-05T18:26:47Z",
"user": {
"login": "whipsch",
"id": 95411,
"node_id": "MDQ6VXNlcjk1NDEx",
"avatar_url": "https://avatars.githubusercontent.com/u/95411?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/whipsch",
"html_url": "https://github.com/whipsch",
"followers_url": "https://api.github.com/users/whipsch/followers",
"following_url": "https://api.github.com/users/whipsch/following{/other_user}",
"gists_url": "https://api.github.com/users/whipsch/gists{/gist_id}",
"starred_url": "https://api.github.com/users/whipsch/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/whipsch/subscriptions",
"organizations_url": "https://api.github.com/users/whipsch/orgs",
"repos_url": "https://api.github.com/users/whipsch/repos",
"events_url": "https://api.github.com/users/whipsch/events{/privacy}",
"received_events_url": "https://api.github.com/users/whipsch/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2017-04-07T22:35:22Z",
"user": {
"login": "MostAwesomeDude",
"id": 118035,
"node_id": "MDQ6VXNlcjExODAzNQ==",
"avatar_url": "https://avatars.githubusercontent.com/u/118035?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/MostAwesomeDude",
"html_url": "https://github.com/MostAwesomeDude",
"followers_url": "https://api.github.com/users/MostAwesomeDude/followers",
"following_url": "https://api.github.com/users/MostAwesomeDude/following{/other_user}",
"gists_url": "https://api.github.com/users/MostAwesomeDude/gists{/gist_id}",
"starred_url": "https://api.github.com/users/MostAwesomeDude/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/MostAwesomeDude/subscriptions",
"organizations_url": "https://api.github.com/users/MostAwesomeDude/orgs",
"repos_url": "https://api.github.com/users/MostAwesomeDude/repos",
"events_url": "https://api.github.com/users/MostAwesomeDude/events{/privacy}",
"received_events_url": "https://api.github.com/users/MostAwesomeDude/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2017-04-07T22:36:06Z",
"user": {
"login": "asvarga",
"id": 1190809,
"node_id": "MDQ6VXNlcjExOTA4MDk=",
"avatar_url": "https://avatars.githubusercontent.com/u/1190809?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/asvarga",
"html_url": "https://github.com/asvarga",
"followers_url": "https://api.github.com/users/asvarga/followers",
"following_url": "https://api.github.com/users/asvarga/following{/other_user}",
"gists_url": "https://api.github.com/users/asvarga/gists{/gist_id}",
"starred_url": "https://api.github.com/users/asvarga/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/asvarga/subscriptions",
"organizations_url": "https://api.github.com/users/asvarga/orgs",
"repos_url": "https://api.github.com/users/asvarga/repos",
"events_url": "https://api.github.com/users/asvarga/events{/privacy}",
"received_events_url": "https://api.github.com/users/asvarga/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2017-04-07T23:05:07Z",
"user": {
"login": "zarutian",
"id": 2933876,
"node_id": "MDQ6VXNlcjI5MzM4NzY=",
"avatar_url": "https://avatars.githubusercontent.com/u/2933876?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/zarutian",
"html_url": "https://github.com/zarutian",
"followers_url": "https://api.github.com/users/zarutian/followers",
"following_url": "https://api.github.com/users/zarutian/following{/other_user}",
"gists_url": "https://api.github.com/users/zarutian/gists{/gist_id}",
"starred_url": "https://api.github.com/users/zarutian/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/zarutian/subscriptions",
"organizations_url": "https://api.github.com/users/zarutian/orgs",
"repos_url": "https://api.github.com/users/zarutian/repos",
"events_url": "https://api.github.com/users/zarutian/events{/privacy}",
"received_events_url": "https://api.github.com/users/zarutian/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2017-05-02T03:18:49Z",
"user": {
"login": "marcoonroad",
"id": 3820407,
"node_id": "MDQ6VXNlcjM4MjA0MDc=",
"avatar_url": "https://avatars.githubusercontent.com/u/3820407?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/marcoonroad",
"html_url": "https://github.com/marcoonroad",
"followers_url": "https://api.github.com/users/marcoonroad/followers",
"following_url": "https://api.github.com/users/marcoonroad/following{/other_user}",
"gists_url": "https://api.github.com/users/marcoonroad/gists{/gist_id}",
"starred_url": "https://api.github.com/users/marcoonroad/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/marcoonroad/subscriptions",
"organizations_url": "https://api.github.com/users/marcoonroad/orgs",
"repos_url": "https://api.github.com/users/marcoonroad/repos",
"events_url": "https://api.github.com/users/marcoonroad/events{/privacy}",
"received_events_url": "https://api.github.com/users/marcoonroad/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2017-05-11T18:56:44Z",
"user": {
"login": "meejah",
"id": 145599,
"node_id": "MDQ6VXNlcjE0NTU5OQ==",
"avatar_url": "https://avatars.githubusercontent.com/u/145599?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/meejah",
"html_url": "https://github.com/meejah",
"followers_url": "https://api.github.com/users/meejah/followers",
"following_url": "https://api.github.com/users/meejah/following{/other_user}",
"gists_url": "https://api.github.com/users/meejah/gists{/gist_id}",
"starred_url": "https://api.github.com/users/meejah/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/meejah/subscriptions",
"organizations_url": "https://api.github.com/users/meejah/orgs",
"repos_url": "https://api.github.com/users/meejah/repos",
"events_url": "https://api.github.com/users/meejah/events{/privacy}",
"received_events_url": "https://api.github.com/users/meejah/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2017-06-17T17:03:08Z",
"user": {
"login": "baldvin",
"id": 3154829,
"node_id": "MDQ6VXNlcjMxNTQ4Mjk=",
"avatar_url": "https://avatars.githubusercontent.com/u/3154829?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/baldvin",
"html_url": "https://github.com/baldvin",
"followers_url": "https://api.github.com/users/baldvin/followers",
"following_url": "https://api.github.com/users/baldvin/following{/other_user}",
"gists_url": "https://api.github.com/users/baldvin/gists{/gist_id}",
"starred_url": "https://api.github.com/users/baldvin/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/baldvin/subscriptions",
"organizations_url": "https://api.github.com/users/baldvin/orgs",
"repos_url": "https://api.github.com/users/baldvin/repos",
"events_url": "https://api.github.com/users/baldvin/events{/privacy}",
"received_events_url": "https://api.github.com/users/baldvin/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2017-06-17T22:34:09Z",
"user": {
"login": "krisl",
"id": 782873,
"node_id": "MDQ6VXNlcjc4Mjg3Mw==",
"avatar_url": "https://avatars.githubusercontent.com/u/782873?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/krisl",
"html_url": "https://github.com/krisl",
"followers_url": "https://api.github.com/users/krisl/followers",
"following_url": "https://api.github.com/users/krisl/following{/other_user}",
"gists_url": "https://api.github.com/users/krisl/gists{/gist_id}",
"starred_url": "https://api.github.com/users/krisl/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/krisl/subscriptions",
"organizations_url": "https://api.github.com/users/krisl/orgs",
"repos_url": "https://api.github.com/users/krisl/repos",
"events_url": "https://api.github.com/users/krisl/events{/privacy}",
"received_events_url": "https://api.github.com/users/krisl/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2017-07-03T00:53:48Z",
"user": {
"login": "redshiftzero",
"id": 7832803,
"node_id": "MDQ6VXNlcjc4MzI4MDM=",
"avatar_url": "https://avatars.githubusercontent.com/u/7832803?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/redshiftzero",
"html_url": "https://github.com/redshiftzero",
"followers_url": "https://api.github.com/users/redshiftzero/followers",
"following_url": "https://api.github.com/users/redshiftzero/following{/other_user}",
"gists_url": "https://api.github.com/users/redshiftzero/gists{/gist_id}",
"starred_url": "https://api.github.com/users/redshiftzero/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/redshiftzero/subscriptions",
"organizations_url": "https://api.github.com/users/redshiftzero/orgs",
"repos_url": "https://api.github.com/users/redshiftzero/repos",
"events_url": "https://api.github.com/users/redshiftzero/events{/privacy}",
"received_events_url": "https://api.github.com/users/redshiftzero/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2017-07-03T01:37:32Z",
"user": {
"login": "zeekay",
"id": 285707,
"node_id": "MDQ6VXNlcjI4NTcwNw==",
"avatar_url": "https://avatars.githubusercontent.com/u/285707?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/zeekay",
"html_url": "https://github.com/zeekay",
"followers_url": "https://api.github.com/users/zeekay/followers",
"following_url": "https://api.github.com/users/zeekay/following{/other_user}",
"gists_url": "https://api.github.com/users/zeekay/gists{/gist_id}",
"starred_url": "https://api.github.com/users/zeekay/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/zeekay/subscriptions",
"organizations_url": "https://api.github.com/users/zeekay/orgs",
"repos_url": "https://api.github.com/users/zeekay/repos",
"events_url": "https://api.github.com/users/zeekay/events{/privacy}",
"received_events_url": "https://api.github.com/users/zeekay/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2017-07-03T03:06:32Z",
"user": {
"login": "ChristopherA",
"id": 69103,
"node_id": "MDQ6VXNlcjY5MTAz",
"avatar_url": "https://avatars.githubusercontent.com/u/69103?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/ChristopherA",
"html_url": "https://github.com/ChristopherA",
"followers_url": "https://api.github.com/users/ChristopherA/followers",
"following_url": "https://api.github.com/users/ChristopherA/following{/other_user}",
"gists_url": "https://api.github.com/users/ChristopherA/gists{/gist_id}",
"starred_url": "https://api.github.com/users/ChristopherA/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/ChristopherA/subscriptions",
"organizations_url": "https://api.github.com/users/ChristopherA/orgs",
"repos_url": "https://api.github.com/users/ChristopherA/repos",
"events_url": "https://api.github.com/users/ChristopherA/events{/privacy}",
"received_events_url": "https://api.github.com/users/ChristopherA/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2017-07-03T03:19:38Z",
"user": {
"login": "herestomwiththeweather",
"id": 16299,
"node_id": "MDQ6VXNlcjE2Mjk5",
"avatar_url": "https://avatars.githubusercontent.com/u/16299?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/herestomwiththeweather",
"html_url": "https://github.com/herestomwiththeweather",
"followers_url": "https://api.github.com/users/herestomwiththeweather/followers",
"following_url": "https://api.github.com/users/herestomwiththeweather/following{/other_user}",
"gists_url": "https://api.github.com/users/herestomwiththeweather/gists{/gist_id}",
"starred_url": "https://api.github.com/users/herestomwiththeweather/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/herestomwiththeweather/subscriptions",
"organizations_url": "https://api.github.com/users/herestomwiththeweather/orgs",
"repos_url": "https://api.github.com/users/herestomwiththeweather/repos",
"events_url": "https://api.github.com/users/herestomwiththeweather/events{/privacy}",
"received_events_url": "https://api.github.com/users/herestomwiththeweather/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2017-07-03T04:10:45Z",
"user": {
"login": "ebuchman",
"id": 2300911,
"node_id": "MDQ6VXNlcjIzMDA5MTE=",
"avatar_url": "https://avatars.githubusercontent.com/u/2300911?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/ebuchman",
"html_url": "https://github.com/ebuchman",
"followers_url": "https://api.github.com/users/ebuchman/followers",
"following_url": "https://api.github.com/users/ebuchman/following{/other_user}",
"gists_url": "https://api.github.com/users/ebuchman/gists{/gist_id}",
"starred_url": "https://api.github.com/users/ebuchman/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/ebuchman/subscriptions",
"organizations_url": "https://api.github.com/users/ebuchman/orgs",
"repos_url": "https://api.github.com/users/ebuchman/repos",
"events_url": "https://api.github.com/users/ebuchman/events{/privacy}",
"received_events_url": "https://api.github.com/users/ebuchman/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2017-07-03T08:32:45Z",
"user": {
"login": "burdges",
"id": 680126,
"node_id": "MDQ6VXNlcjY4MDEyNg==",
"avatar_url": "https://avatars.githubusercontent.com/u/680126?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/burdges",
"html_url": "https://github.com/burdges",
"followers_url": "https://api.github.com/users/burdges/followers",
"following_url": "https://api.github.com/users/burdges/following{/other_user}",
"gists_url": "https://api.github.com/users/burdges/gists{/gist_id}",
"starred_url": "https://api.github.com/users/burdges/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/burdges/subscriptions",
"organizations_url": "https://api.github.com/users/burdges/orgs",
"repos_url": "https://api.github.com/users/burdges/repos",
"events_url": "https://api.github.com/users/burdges/events{/privacy}",
"received_events_url": "https://api.github.com/users/burdges/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2017-07-03T09:24:28Z",
"user": {
"login": "cfcs",
"id": 9653993,
"node_id": "MDQ6VXNlcjk2NTM5OTM=",
"avatar_url": "https://avatars.githubusercontent.com/u/9653993?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/cfcs",
"html_url": "https://github.com/cfcs",
"followers_url": "https://api.github.com/users/cfcs/followers",
"following_url": "https://api.github.com/users/cfcs/following{/other_user}",
"gists_url": "https://api.github.com/users/cfcs/gists{/gist_id}",
"starred_url": "https://api.github.com/users/cfcs/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/cfcs/subscriptions",
"organizations_url": "https://api.github.com/users/cfcs/orgs",
"repos_url": "https://api.github.com/users/cfcs/repos",
"events_url": "https://api.github.com/users/cfcs/events{/privacy}",
"received_events_url": "https://api.github.com/users/cfcs/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2017-07-05T18:25:37Z",
"user": {
"login": "theophoric",
"id": 322054,
"node_id": "MDQ6VXNlcjMyMjA1NA==",
"avatar_url": "https://avatars.githubusercontent.com/u/322054?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/theophoric",
"html_url": "https://github.com/theophoric",
"followers_url": "https://api.github.com/users/theophoric/followers",
"following_url": "https://api.github.com/users/theophoric/following{/other_user}",
"gists_url": "https://api.github.com/users/theophoric/gists{/gist_id}",
"starred_url": "https://api.github.com/users/theophoric/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/theophoric/subscriptions",
"organizations_url": "https://api.github.com/users/theophoric/orgs",
"repos_url": "https://api.github.com/users/theophoric/repos",
"events_url": "https://api.github.com/users/theophoric/events{/privacy}",
"received_events_url": "https://api.github.com/users/theophoric/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2017-07-06T04:02:31Z",
"user": {
"login": "jdougan",
"id": 1650022,
"node_id": "MDQ6VXNlcjE2NTAwMjI=",
"avatar_url": "https://avatars.githubusercontent.com/u/1650022?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/jdougan",
"html_url": "https://github.com/jdougan",
"followers_url": "https://api.github.com/users/jdougan/followers",
"following_url": "https://api.github.com/users/jdougan/following{/other_user}",
"gists_url": "https://api.github.com/users/jdougan/gists{/gist_id}",
"starred_url": "https://api.github.com/users/jdougan/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/jdougan/subscriptions",
"organizations_url": "https://api.github.com/users/jdougan/orgs",
"repos_url": "https://api.github.com/users/jdougan/repos",
"events_url": "https://api.github.com/users/jdougan/events{/privacy}",
"received_events_url": "https://api.github.com/users/jdougan/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2017-07-07T04:32:24Z",
"user": {
"login": "hierophantos",
"id": 6514416,
"node_id": "MDQ6VXNlcjY1MTQ0MTY=",
"avatar_url": "https://avatars.githubusercontent.com/u/6514416?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/hierophantos",
"html_url": "https://github.com/hierophantos",
"followers_url": "https://api.github.com/users/hierophantos/followers",
"following_url": "https://api.github.com/users/hierophantos/following{/other_user}",
"gists_url": "https://api.github.com/users/hierophantos/gists{/gist_id}",
"starred_url": "https://api.github.com/users/hierophantos/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/hierophantos/subscriptions",
"organizations_url": "https://api.github.com/users/hierophantos/orgs",
"repos_url": "https://api.github.com/users/hierophantos/repos",
"events_url": "https://api.github.com/users/hierophantos/events{/privacy}",
"received_events_url": "https://api.github.com/users/hierophantos/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2017-07-17T17:00:23Z",
"user": {
"login": "gandro",
"id": 50564,
"node_id": "MDQ6VXNlcjUwNTY0",
"avatar_url": "https://avatars.githubusercontent.com/u/50564?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/gandro",
"html_url": "https://github.com/gandro",
"followers_url": "https://api.github.com/users/gandro/followers",
"following_url": "https://api.github.com/users/gandro/following{/other_user}",
"gists_url": "https://api.github.com/users/gandro/gists{/gist_id}",
"starred_url": "https://api.github.com/users/gandro/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/gandro/subscriptions",
"organizations_url": "https://api.github.com/users/gandro/orgs",
"repos_url": "https://api.github.com/users/gandro/repos",
"events_url": "https://api.github.com/users/gandro/events{/privacy}",
"received_events_url": "https://api.github.com/users/gandro/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2017-07-27T23:23:11Z",
"user": {
"login": "gojomo",
"id": 1641,
"node_id": "MDQ6VXNlcjE2NDE=",
"avatar_url": "https://avatars.githubusercontent.com/u/1641?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/gojomo",
"html_url": "https://github.com/gojomo",
"followers_url": "https://api.github.com/users/gojomo/followers",
"following_url": "https://api.github.com/users/gojomo/following{/other_user}",
"gists_url": "https://api.github.com/users/gojomo/gists{/gist_id}",
"starred_url": "https://api.github.com/users/gojomo/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/gojomo/subscriptions",
"organizations_url": "https://api.github.com/users/gojomo/orgs",
"repos_url": "https://api.github.com/users/gojomo/repos",
"events_url": "https://api.github.com/users/gojomo/events{/privacy}",
"received_events_url": "https://api.github.com/users/gojomo/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2017-08-10T15:51:48Z",
"user": {
"login": "reaandrew",
"id": 169734,
"node_id": "MDQ6VXNlcjE2OTczNA==",
"avatar_url": "https://avatars.githubusercontent.com/u/169734?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/reaandrew",
"html_url": "https://github.com/reaandrew",
"followers_url": "https://api.github.com/users/reaandrew/followers",
"following_url": "https://api.github.com/users/reaandrew/following{/other_user}",
"gists_url": "https://api.github.com/users/reaandrew/gists{/gist_id}",
"starred_url": "https://api.github.com/users/reaandrew/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/reaandrew/subscriptions",
"organizations_url": "https://api.github.com/users/reaandrew/orgs",
"repos_url": "https://api.github.com/users/reaandrew/repos",
"events_url": "https://api.github.com/users/reaandrew/events{/privacy}",
"received_events_url": "https://api.github.com/users/reaandrew/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2017-08-10T17:07:01Z",
"user": {
"login": "robotlolita",
"id": 406477,
"node_id": "MDQ6VXNlcjQwNjQ3Nw==",
"avatar_url": "https://avatars.githubusercontent.com/u/406477?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/robotlolita",
"html_url": "https://github.com/robotlolita",
"followers_url": "https://api.github.com/users/robotlolita/followers",
"following_url": "https://api.github.com/users/robotlolita/following{/other_user}",
"gists_url": "https://api.github.com/users/robotlolita/gists{/gist_id}",
"starred_url": "https://api.github.com/users/robotlolita/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/robotlolita/subscriptions",
"organizations_url": "https://api.github.com/users/robotlolita/orgs",
"repos_url": "https://api.github.com/users/robotlolita/repos",
"events_url": "https://api.github.com/users/robotlolita/events{/privacy}",
"received_events_url": "https://api.github.com/users/robotlolita/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2017-08-10T18:01:51Z",
"user": {
"login": "patrickdlogan",
"id": 103964,
"node_id": "MDQ6VXNlcjEwMzk2NA==",
"avatar_url": "https://avatars.githubusercontent.com/u/103964?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/patrickdlogan",
"html_url": "https://github.com/patrickdlogan",
"followers_url": "https://api.github.com/users/patrickdlogan/followers",
"following_url": "https://api.github.com/users/patrickdlogan/following{/other_user}",
"gists_url": "https://api.github.com/users/patrickdlogan/gists{/gist_id}",
"starred_url": "https://api.github.com/users/patrickdlogan/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/patrickdlogan/subscriptions",
"organizations_url": "https://api.github.com/users/patrickdlogan/orgs",
"repos_url": "https://api.github.com/users/patrickdlogan/repos",
"events_url": "https://api.github.com/users/patrickdlogan/events{/privacy}",
"received_events_url": "https://api.github.com/users/patrickdlogan/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2017-08-12T10:57:25Z",
"user": {
"login": "bompi88",
"id": 3270628,
"node_id": "MDQ6VXNlcjMyNzA2Mjg=",
"avatar_url": "https://avatars.githubusercontent.com/u/3270628?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/bompi88",
"html_url": "https://github.com/bompi88",
"followers_url": "https://api.github.com/users/bompi88/followers",
"following_url": "https://api.github.com/users/bompi88/following{/other_user}",
"gists_url": "https://api.github.com/users/bompi88/gists{/gist_id}",
"starred_url": "https://api.github.com/users/bompi88/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/bompi88/subscriptions",
"organizations_url": "https://api.github.com/users/bompi88/orgs",
"repos_url": "https://api.github.com/users/bompi88/repos",
"events_url": "https://api.github.com/users/bompi88/events{/privacy}",
"received_events_url": "https://api.github.com/users/bompi88/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2017-08-14T14:53:07Z",
"user": {
"login": "JackBracken",
"id": 295749,
"node_id": "MDQ6VXNlcjI5NTc0OQ==",
"avatar_url": "https://avatars.githubusercontent.com/u/295749?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/JackBracken",
"html_url": "https://github.com/JackBracken",
"followers_url": "https://api.github.com/users/JackBracken/followers",
"following_url": "https://api.github.com/users/JackBracken/following{/other_user}",
"gists_url": "https://api.github.com/users/JackBracken/gists{/gist_id}",
"starred_url": "https://api.github.com/users/JackBracken/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/JackBracken/subscriptions",
"organizations_url": "https://api.github.com/users/JackBracken/orgs",
"repos_url": "https://api.github.com/users/JackBracken/repos",
"events_url": "https://api.github.com/users/JackBracken/events{/privacy}",
"received_events_url": "https://api.github.com/users/JackBracken/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2017-09-17T08:33:03Z",
"user": {
"login": "void4",
"id": 11392207,
"node_id": "MDQ6VXNlcjExMzkyMjA3",
"avatar_url": "https://avatars.githubusercontent.com/u/11392207?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/void4",
"html_url": "https://github.com/void4",
"followers_url": "https://api.github.com/users/void4/followers",
"following_url": "https://api.github.com/users/void4/following{/other_user}",
"gists_url": "https://api.github.com/users/void4/gists{/gist_id}",
"starred_url": "https://api.github.com/users/void4/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/void4/subscriptions",
"organizations_url": "https://api.github.com/users/void4/orgs",
"repos_url": "https://api.github.com/users/void4/repos",
"events_url": "https://api.github.com/users/void4/events{/privacy}",
"received_events_url": "https://api.github.com/users/void4/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2017-09-29T02:27:50Z",
"user": {
"login": "dhbaird",
"id": 1010554,
"node_id": "MDQ6VXNlcjEwMTA1NTQ=",
"avatar_url": "https://avatars.githubusercontent.com/u/1010554?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/dhbaird",
"html_url": "https://github.com/dhbaird",
"followers_url": "https://api.github.com/users/dhbaird/followers",
"following_url": "https://api.github.com/users/dhbaird/following{/other_user}",
"gists_url": "https://api.github.com/users/dhbaird/gists{/gist_id}",
"starred_url": "https://api.github.com/users/dhbaird/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/dhbaird/subscriptions",
"organizations_url": "https://api.github.com/users/dhbaird/orgs",
"repos_url": "https://api.github.com/users/dhbaird/repos",
"events_url": "https://api.github.com/users/dhbaird/events{/privacy}",
"received_events_url": "https://api.github.com/users/dhbaird/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2017-10-02T13:15:49Z",
"user": {
"login": "valpackett",
"id": 208340,
"node_id": "MDQ6VXNlcjIwODM0MA==",
"avatar_url": "https://avatars.githubusercontent.com/u/208340?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/valpackett",
"html_url": "https://github.com/valpackett",
"followers_url": "https://api.github.com/users/valpackett/followers",
"following_url": "https://api.github.com/users/valpackett/following{/other_user}",
"gists_url": "https://api.github.com/users/valpackett/gists{/gist_id}",
"starred_url": "https://api.github.com/users/valpackett/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/valpackett/subscriptions",
"organizations_url": "https://api.github.com/users/valpackett/orgs",
"repos_url": "https://api.github.com/users/valpackett/repos",
"events_url": "https://api.github.com/users/valpackett/events{/privacy}",
"received_events_url": "https://api.github.com/users/valpackett/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2017-10-02T22:15:32Z",
"user": {
"login": "pwrdwnsys",
"id": 10925805,
"node_id": "MDQ6VXNlcjEwOTI1ODA1",
"avatar_url": "https://avatars.githubusercontent.com/u/10925805?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/pwrdwnsys",
"html_url": "https://github.com/pwrdwnsys",
"followers_url": "https://api.github.com/users/pwrdwnsys/followers",
"following_url": "https://api.github.com/users/pwrdwnsys/following{/other_user}",
"gists_url": "https://api.github.com/users/pwrdwnsys/gists{/gist_id}",
"starred_url": "https://api.github.com/users/pwrdwnsys/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/pwrdwnsys/subscriptions",
"organizations_url": "https://api.github.com/users/pwrdwnsys/orgs",
"repos_url": "https://api.github.com/users/pwrdwnsys/repos",
"events_url": "https://api.github.com/users/pwrdwnsys/events{/privacy}",
"received_events_url": "https://api.github.com/users/pwrdwnsys/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2017-10-10T21:29:08Z",
"user": {
"login": "sunny-g",
"id": 2055636,
"node_id": "MDQ6VXNlcjIwNTU2MzY=",
"avatar_url": "https://avatars.githubusercontent.com/u/2055636?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/sunny-g",
"html_url": "https://github.com/sunny-g",
"followers_url": "https://api.github.com/users/sunny-g/followers",
"following_url": "https://api.github.com/users/sunny-g/following{/other_user}",
"gists_url": "https://api.github.com/users/sunny-g/gists{/gist_id}",
"starred_url": "https://api.github.com/users/sunny-g/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/sunny-g/subscriptions",
"organizations_url": "https://api.github.com/users/sunny-g/orgs",
"repos_url": "https://api.github.com/users/sunny-g/repos",
"events_url": "https://api.github.com/users/sunny-g/events{/privacy}",
"received_events_url": "https://api.github.com/users/sunny-g/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2017-10-24T11:48:40Z",
"user": {
"login": "tomasklapka",
"id": 370171,
"node_id": "MDQ6VXNlcjM3MDE3MQ==",
"avatar_url": "https://avatars.githubusercontent.com/u/370171?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/tomasklapka",
"html_url": "https://github.com/tomasklapka",
"followers_url": "https://api.github.com/users/tomasklapka/followers",
"following_url": "https://api.github.com/users/tomasklapka/following{/other_user}",
"gists_url": "https://api.github.com/users/tomasklapka/gists{/gist_id}",
"starred_url": "https://api.github.com/users/tomasklapka/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/tomasklapka/subscriptions",
"organizations_url": "https://api.github.com/users/tomasklapka/orgs",
"repos_url": "https://api.github.com/users/tomasklapka/repos",
"events_url": "https://api.github.com/users/tomasklapka/events{/privacy}",
"received_events_url": "https://api.github.com/users/tomasklapka/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2017-11-03T04:08:04Z",
"user": {
"login": "krfkeith",
"id": 8629399,
"node_id": "MDQ6VXNlcjg2MjkzOTk=",
"avatar_url": "https://avatars.githubusercontent.com/u/8629399?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/krfkeith",
"html_url": "https://github.com/krfkeith",
"followers_url": "https://api.github.com/users/krfkeith/followers",
"following_url": "https://api.github.com/users/krfkeith/following{/other_user}",
"gists_url": "https://api.github.com/users/krfkeith/gists{/gist_id}",
"starred_url": "https://api.github.com/users/krfkeith/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/krfkeith/subscriptions",
"organizations_url": "https://api.github.com/users/krfkeith/orgs",
"repos_url": "https://api.github.com/users/krfkeith/repos",
"events_url": "https://api.github.com/users/krfkeith/events{/privacy}",
"received_events_url": "https://api.github.com/users/krfkeith/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2017-11-09T14:30:39Z",
"user": {
"login": "Ljzn",
"id": 19494388,
"node_id": "MDQ6VXNlcjE5NDk0Mzg4",
"avatar_url": "https://avatars.githubusercontent.com/u/19494388?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/Ljzn",
"html_url": "https://github.com/Ljzn",
"followers_url": "https://api.github.com/users/Ljzn/followers",
"following_url": "https://api.github.com/users/Ljzn/following{/other_user}",
"gists_url": "https://api.github.com/users/Ljzn/gists{/gist_id}",
"starred_url": "https://api.github.com/users/Ljzn/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/Ljzn/subscriptions",
"organizations_url": "https://api.github.com/users/Ljzn/orgs",
"repos_url": "https://api.github.com/users/Ljzn/repos",
"events_url": "https://api.github.com/users/Ljzn/events{/privacy}",
"received_events_url": "https://api.github.com/users/Ljzn/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2017-11-21T08:24:08Z",
"user": {
"login": "liufengyun",
"id": 754633,
"node_id": "MDQ6VXNlcjc1NDYzMw==",
"avatar_url": "https://avatars.githubusercontent.com/u/754633?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/liufengyun",
"html_url": "https://github.com/liufengyun",
"followers_url": "https://api.github.com/users/liufengyun/followers",
"following_url": "https://api.github.com/users/liufengyun/following{/other_user}",
"gists_url": "https://api.github.com/users/liufengyun/gists{/gist_id}",
"starred_url": "https://api.github.com/users/liufengyun/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/liufengyun/subscriptions",
"organizations_url": "https://api.github.com/users/liufengyun/orgs",
"repos_url": "https://api.github.com/users/liufengyun/repos",
"events_url": "https://api.github.com/users/liufengyun/events{/privacy}",
"received_events_url": "https://api.github.com/users/liufengyun/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2017-12-09T15:24:29Z",
"user": {
"login": "tomming",
"id": 8277221,
"node_id": "MDQ6VXNlcjgyNzcyMjE=",
"avatar_url": "https://avatars.githubusercontent.com/u/8277221?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/tomming",
"html_url": "https://github.com/tomming",
"followers_url": "https://api.github.com/users/tomming/followers",
"following_url": "https://api.github.com/users/tomming/following{/other_user}",
"gists_url": "https://api.github.com/users/tomming/gists{/gist_id}",
"starred_url": "https://api.github.com/users/tomming/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/tomming/subscriptions",
"organizations_url": "https://api.github.com/users/tomming/orgs",
"repos_url": "https://api.github.com/users/tomming/repos",
"events_url": "https://api.github.com/users/tomming/events{/privacy}",
"received_events_url": "https://api.github.com/users/tomming/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2018-01-08T16:01:49Z",
"user": {
"login": "msingle",
"id": 18760,
"node_id": "MDQ6VXNlcjE4NzYw",
"avatar_url": "https://avatars.githubusercontent.com/u/18760?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/msingle",
"html_url": "https://github.com/msingle",
"followers_url": "https://api.github.com/users/msingle/followers",
"following_url": "https://api.github.com/users/msingle/following{/other_user}",
"gists_url": "https://api.github.com/users/msingle/gists{/gist_id}",
"starred_url": "https://api.github.com/users/msingle/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/msingle/subscriptions",
"organizations_url": "https://api.github.com/users/msingle/orgs",
"repos_url": "https://api.github.com/users/msingle/repos",
"events_url": "https://api.github.com/users/msingle/events{/privacy}",
"received_events_url": "https://api.github.com/users/msingle/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2018-01-08T18:21:03Z",
"user": {
"login": "rationalthug",
"id": 105758,
"node_id": "MDQ6VXNlcjEwNTc1OA==",
"avatar_url": "https://avatars.githubusercontent.com/u/105758?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/rationalthug",
"html_url": "https://github.com/rationalthug",
"followers_url": "https://api.github.com/users/rationalthug/followers",
"following_url": "https://api.github.com/users/rationalthug/following{/other_user}",
"gists_url": "https://api.github.com/users/rationalthug/gists{/gist_id}",
"starred_url": "https://api.github.com/users/rationalthug/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/rationalthug/subscriptions",
"organizations_url": "https://api.github.com/users/rationalthug/orgs",
"repos_url": "https://api.github.com/users/rationalthug/repos",
"events_url": "https://api.github.com/users/rationalthug/events{/privacy}",
"received_events_url": "https://api.github.com/users/rationalthug/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2018-01-23T17:46:56Z",
"user": {
"login": "mossid",
"id": 18329646,
"node_id": "MDQ6VXNlcjE4MzI5NjQ2",
"avatar_url": "https://avatars.githubusercontent.com/u/18329646?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/mossid",
"html_url": "https://github.com/mossid",
"followers_url": "https://api.github.com/users/mossid/followers",
"following_url": "https://api.github.com/users/mossid/following{/other_user}",
"gists_url": "https://api.github.com/users/mossid/gists{/gist_id}",
"starred_url": "https://api.github.com/users/mossid/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/mossid/subscriptions",
"organizations_url": "https://api.github.com/users/mossid/orgs",
"repos_url": "https://api.github.com/users/mossid/repos",
"events_url": "https://api.github.com/users/mossid/events{/privacy}",
"received_events_url": "https://api.github.com/users/mossid/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2018-01-26T06:42:19Z",
"user": {
"login": "jubos",
"id": 41347,
"node_id": "MDQ6VXNlcjQxMzQ3",
"avatar_url": "https://avatars.githubusercontent.com/u/41347?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/jubos",
"html_url": "https://github.com/jubos",
"followers_url": "https://api.github.com/users/jubos/followers",
"following_url": "https://api.github.com/users/jubos/following{/other_user}",
"gists_url": "https://api.github.com/users/jubos/gists{/gist_id}",
"starred_url": "https://api.github.com/users/jubos/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/jubos/subscriptions",
"organizations_url": "https://api.github.com/users/jubos/orgs",
"repos_url": "https://api.github.com/users/jubos/repos",
"events_url": "https://api.github.com/users/jubos/events{/privacy}",
"received_events_url": "https://api.github.com/users/jubos/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2018-02-04T17:57:50Z",
"user": {
"login": "kelbyludwig",
"id": 3527248,
"node_id": "MDQ6VXNlcjM1MjcyNDg=",
"avatar_url": "https://avatars.githubusercontent.com/u/3527248?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/kelbyludwig",
"html_url": "https://github.com/kelbyludwig",
"followers_url": "https://api.github.com/users/kelbyludwig/followers",
"following_url": "https://api.github.com/users/kelbyludwig/following{/other_user}",
"gists_url": "https://api.github.com/users/kelbyludwig/gists{/gist_id}",
"starred_url": "https://api.github.com/users/kelbyludwig/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/kelbyludwig/subscriptions",
"organizations_url": "https://api.github.com/users/kelbyludwig/orgs",
"repos_url": "https://api.github.com/users/kelbyludwig/repos",
"events_url": "https://api.github.com/users/kelbyludwig/events{/privacy}",
"received_events_url": "https://api.github.com/users/kelbyludwig/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2018-02-08T23:18:34Z",
"user": {
"login": "kephas",
"id": 762421,
"node_id": "MDQ6VXNlcjc2MjQyMQ==",
"avatar_url": "https://avatars.githubusercontent.com/u/762421?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/kephas",
"html_url": "https://github.com/kephas",
"followers_url": "https://api.github.com/users/kephas/followers",
"following_url": "https://api.github.com/users/kephas/following{/other_user}",
"gists_url": "https://api.github.com/users/kephas/gists{/gist_id}",
"starred_url": "https://api.github.com/users/kephas/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/kephas/subscriptions",
"organizations_url": "https://api.github.com/users/kephas/orgs",
"repos_url": "https://api.github.com/users/kephas/repos",
"events_url": "https://api.github.com/users/kephas/events{/privacy}",
"received_events_url": "https://api.github.com/users/kephas/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2018-02-17T06:45:11Z",
"user": {
"login": "mikalv",
"id": 195767,
"node_id": "MDQ6VXNlcjE5NTc2Nw==",
"avatar_url": "https://avatars.githubusercontent.com/u/195767?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/mikalv",
"html_url": "https://github.com/mikalv",
"followers_url": "https://api.github.com/users/mikalv/followers",
"following_url": "https://api.github.com/users/mikalv/following{/other_user}",
"gists_url": "https://api.github.com/users/mikalv/gists{/gist_id}",
"starred_url": "https://api.github.com/users/mikalv/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/mikalv/subscriptions",
"organizations_url": "https://api.github.com/users/mikalv/orgs",
"repos_url": "https://api.github.com/users/mikalv/repos",
"events_url": "https://api.github.com/users/mikalv/events{/privacy}",
"received_events_url": "https://api.github.com/users/mikalv/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2018-02-23T14:04:43Z",
"user": {
"login": "sardaukar",
"id": 153407,
"node_id": "MDQ6VXNlcjE1MzQwNw==",
"avatar_url": "https://avatars.githubusercontent.com/u/153407?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/sardaukar",
"html_url": "https://github.com/sardaukar",
"followers_url": "https://api.github.com/users/sardaukar/followers",
"following_url": "https://api.github.com/users/sardaukar/following{/other_user}",
"gists_url": "https://api.github.com/users/sardaukar/gists{/gist_id}",
"starred_url": "https://api.github.com/users/sardaukar/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/sardaukar/subscriptions",
"organizations_url": "https://api.github.com/users/sardaukar/orgs",
"repos_url": "https://api.github.com/users/sardaukar/repos",
"events_url": "https://api.github.com/users/sardaukar/events{/privacy}",
"received_events_url": "https://api.github.com/users/sardaukar/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2018-02-24T22:32:56Z",
"user": {
"login": "hexwaxwing",
"id": 26129437,
"node_id": "MDQ6VXNlcjI2MTI5NDM3",
"avatar_url": "https://avatars.githubusercontent.com/u/26129437?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/hexwaxwing",
"html_url": "https://github.com/hexwaxwing",
"followers_url": "https://api.github.com/users/hexwaxwing/followers",
"following_url": "https://api.github.com/users/hexwaxwing/following{/other_user}",
"gists_url": "https://api.github.com/users/hexwaxwing/gists{/gist_id}",
"starred_url": "https://api.github.com/users/hexwaxwing/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/hexwaxwing/subscriptions",
"organizations_url": "https://api.github.com/users/hexwaxwing/orgs",
"repos_url": "https://api.github.com/users/hexwaxwing/repos",
"events_url": "https://api.github.com/users/hexwaxwing/events{/privacy}",
"received_events_url": "https://api.github.com/users/hexwaxwing/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2018-03-09T13:48:37Z",
"user": {
"login": "yuanmai",
"id": 475195,
"node_id": "MDQ6VXNlcjQ3NTE5NQ==",
"avatar_url": "https://avatars.githubusercontent.com/u/475195?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/yuanmai",
"html_url": "https://github.com/yuanmai",
"followers_url": "https://api.github.com/users/yuanmai/followers",
"following_url": "https://api.github.com/users/yuanmai/following{/other_user}",
"gists_url": "https://api.github.com/users/yuanmai/gists{/gist_id}",
"starred_url": "https://api.github.com/users/yuanmai/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/yuanmai/subscriptions",
"organizations_url": "https://api.github.com/users/yuanmai/orgs",
"repos_url": "https://api.github.com/users/yuanmai/repos",
"events_url": "https://api.github.com/users/yuanmai/events{/privacy}",
"received_events_url": "https://api.github.com/users/yuanmai/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2018-03-12T22:22:35Z",
"user": {
"login": "yarec",
"id": 1519413,
"node_id": "MDQ6VXNlcjE1MTk0MTM=",
"avatar_url": "https://avatars.githubusercontent.com/u/1519413?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/yarec",
"html_url": "https://github.com/yarec",
"followers_url": "https://api.github.com/users/yarec/followers",
"following_url": "https://api.github.com/users/yarec/following{/other_user}",
"gists_url": "https://api.github.com/users/yarec/gists{/gist_id}",
"starred_url": "https://api.github.com/users/yarec/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/yarec/subscriptions",
"organizations_url": "https://api.github.com/users/yarec/orgs",
"repos_url": "https://api.github.com/users/yarec/repos",
"events_url": "https://api.github.com/users/yarec/events{/privacy}",
"received_events_url": "https://api.github.com/users/yarec/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2018-03-19T22:34:26Z",
"user": {
"login": "erwanor",
"id": 7871622,
"node_id": "MDQ6VXNlcjc4NzE2MjI=",
"avatar_url": "https://avatars.githubusercontent.com/u/7871622?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/erwanor",
"html_url": "https://github.com/erwanor",
"followers_url": "https://api.github.com/users/erwanor/followers",
"following_url": "https://api.github.com/users/erwanor/following{/other_user}",
"gists_url": "https://api.github.com/users/erwanor/gists{/gist_id}",
"starred_url": "https://api.github.com/users/erwanor/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/erwanor/subscriptions",
"organizations_url": "https://api.github.com/users/erwanor/orgs",
"repos_url": "https://api.github.com/users/erwanor/repos",
"events_url": "https://api.github.com/users/erwanor/events{/privacy}",
"received_events_url": "https://api.github.com/users/erwanor/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2018-03-29T02:34:12Z",
"user": {
"login": "taktoa",
"id": 553443,
"node_id": "MDQ6VXNlcjU1MzQ0Mw==",
"avatar_url": "https://avatars.githubusercontent.com/u/553443?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/taktoa",
"html_url": "https://github.com/taktoa",
"followers_url": "https://api.github.com/users/taktoa/followers",
"following_url": "https://api.github.com/users/taktoa/following{/other_user}",
"gists_url": "https://api.github.com/users/taktoa/gists{/gist_id}",
"starred_url": "https://api.github.com/users/taktoa/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/taktoa/subscriptions",
"organizations_url": "https://api.github.com/users/taktoa/orgs",
"repos_url": "https://api.github.com/users/taktoa/repos",
"events_url": "https://api.github.com/users/taktoa/events{/privacy}",
"received_events_url": "https://api.github.com/users/taktoa/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2018-04-06T12:01:06Z",
"user": {
"login": "xuqzab",
"id": 24831619,
"node_id": "MDQ6VXNlcjI0ODMxNjE5",
"avatar_url": "https://avatars.githubusercontent.com/u/24831619?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/xuqzab",
"html_url": "https://github.com/xuqzab",
"followers_url": "https://api.github.com/users/xuqzab/followers",
"following_url": "https://api.github.com/users/xuqzab/following{/other_user}",
"gists_url": "https://api.github.com/users/xuqzab/gists{/gist_id}",
"starred_url": "https://api.github.com/users/xuqzab/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/xuqzab/subscriptions",
"organizations_url": "https://api.github.com/users/xuqzab/orgs",
"repos_url": "https://api.github.com/users/xuqzab/repos",
"events_url": "https://api.github.com/users/xuqzab/events{/privacy}",
"received_events_url": "https://api.github.com/users/xuqzab/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2018-04-08T12:20:24Z",
"user": {
"login": "le-bananafish",
"id": 11536361,
"node_id": "MDQ6VXNlcjExNTM2MzYx",
"avatar_url": "https://avatars.githubusercontent.com/u/11536361?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/le-bananafish",
"html_url": "https://github.com/le-bananafish",
"followers_url": "https://api.github.com/users/le-bananafish/followers",
"following_url": "https://api.github.com/users/le-bananafish/following{/other_user}",
"gists_url": "https://api.github.com/users/le-bananafish/gists{/gist_id}",
"starred_url": "https://api.github.com/users/le-bananafish/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/le-bananafish/subscriptions",
"organizations_url": "https://api.github.com/users/le-bananafish/orgs",
"repos_url": "https://api.github.com/users/le-bananafish/repos",
"events_url": "https://api.github.com/users/le-bananafish/events{/privacy}",
"received_events_url": "https://api.github.com/users/le-bananafish/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2018-04-19T15:55:40Z",
"user": {
"login": "liamsi",
"id": 7441766,
"node_id": "MDQ6VXNlcjc0NDE3NjY=",
"avatar_url": "https://avatars.githubusercontent.com/u/7441766?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/liamsi",
"html_url": "https://github.com/liamsi",
"followers_url": "https://api.github.com/users/liamsi/followers",
"following_url": "https://api.github.com/users/liamsi/following{/other_user}",
"gists_url": "https://api.github.com/users/liamsi/gists{/gist_id}",
"starred_url": "https://api.github.com/users/liamsi/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/liamsi/subscriptions",
"organizations_url": "https://api.github.com/users/liamsi/orgs",
"repos_url": "https://api.github.com/users/liamsi/repos",
"events_url": "https://api.github.com/users/liamsi/events{/privacy}",
"received_events_url": "https://api.github.com/users/liamsi/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2018-04-23T17:40:35Z",
"user": {
"login": "tschoffelen",
"id": 666220,
"node_id": "MDQ6VXNlcjY2NjIyMA==",
"avatar_url": "https://avatars.githubusercontent.com/u/666220?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/tschoffelen",
"html_url": "https://github.com/tschoffelen",
"followers_url": "https://api.github.com/users/tschoffelen/followers",
"following_url": "https://api.github.com/users/tschoffelen/following{/other_user}",
"gists_url": "https://api.github.com/users/tschoffelen/gists{/gist_id}",
"starred_url": "https://api.github.com/users/tschoffelen/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/tschoffelen/subscriptions",
"organizations_url": "https://api.github.com/users/tschoffelen/orgs",
"repos_url": "https://api.github.com/users/tschoffelen/repos",
"events_url": "https://api.github.com/users/tschoffelen/events{/privacy}",
"received_events_url": "https://api.github.com/users/tschoffelen/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2018-04-26T19:10:31Z",
"user": {
"login": "squiddle",
"id": 98932,
"node_id": "MDQ6VXNlcjk4OTMy",
"avatar_url": "https://avatars.githubusercontent.com/u/98932?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/squiddle",
"html_url": "https://github.com/squiddle",
"followers_url": "https://api.github.com/users/squiddle/followers",
"following_url": "https://api.github.com/users/squiddle/following{/other_user}",
"gists_url": "https://api.github.com/users/squiddle/gists{/gist_id}",
"starred_url": "https://api.github.com/users/squiddle/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/squiddle/subscriptions",
"organizations_url": "https://api.github.com/users/squiddle/orgs",
"repos_url": "https://api.github.com/users/squiddle/repos",
"events_url": "https://api.github.com/users/squiddle/events{/privacy}",
"received_events_url": "https://api.github.com/users/squiddle/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2018-05-03T04:44:32Z",
"user": {
"login": "henrytill",
"id": 6430643,
"node_id": "MDQ6VXNlcjY0MzA2NDM=",
"avatar_url": "https://avatars.githubusercontent.com/u/6430643?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/henrytill",
"html_url": "https://github.com/henrytill",
"followers_url": "https://api.github.com/users/henrytill/followers",
"following_url": "https://api.github.com/users/henrytill/following{/other_user}",
"gists_url": "https://api.github.com/users/henrytill/gists{/gist_id}",
"starred_url": "https://api.github.com/users/henrytill/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/henrytill/subscriptions",
"organizations_url": "https://api.github.com/users/henrytill/orgs",
"repos_url": "https://api.github.com/users/henrytill/repos",
"events_url": "https://api.github.com/users/henrytill/events{/privacy}",
"received_events_url": "https://api.github.com/users/henrytill/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2018-08-04T14:24:10Z",
"user": {
"login": "chrish42",
"id": 632858,
"node_id": "MDQ6VXNlcjYzMjg1OA==",
"avatar_url": "https://avatars.githubusercontent.com/u/632858?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/chrish42",
"html_url": "https://github.com/chrish42",
"followers_url": "https://api.github.com/users/chrish42/followers",
"following_url": "https://api.github.com/users/chrish42/following{/other_user}",
"gists_url": "https://api.github.com/users/chrish42/gists{/gist_id}",
"starred_url": "https://api.github.com/users/chrish42/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/chrish42/subscriptions",
"organizations_url": "https://api.github.com/users/chrish42/orgs",
"repos_url": "https://api.github.com/users/chrish42/repos",
"events_url": "https://api.github.com/users/chrish42/events{/privacy}",
"received_events_url": "https://api.github.com/users/chrish42/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2018-08-31T00:47:50Z",
"user": {
"login": "jalcine",
"id": 452100,
"node_id": "MDQ6VXNlcjQ1MjEwMA==",
"avatar_url": "https://avatars.githubusercontent.com/u/452100?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/jalcine",
"html_url": "https://github.com/jalcine",
"followers_url": "https://api.github.com/users/jalcine/followers",
"following_url": "https://api.github.com/users/jalcine/following{/other_user}",
"gists_url": "https://api.github.com/users/jalcine/gists{/gist_id}",
"starred_url": "https://api.github.com/users/jalcine/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/jalcine/subscriptions",
"organizations_url": "https://api.github.com/users/jalcine/orgs",
"repos_url": "https://api.github.com/users/jalcine/repos",
"events_url": "https://api.github.com/users/jalcine/events{/privacy}",
"received_events_url": "https://api.github.com/users/jalcine/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2018-08-31T11:01:47Z",
"user": {
"login": "raucao",
"id": 842,
"node_id": "MDQ6VXNlcjg0Mg==",
"avatar_url": "https://avatars.githubusercontent.com/u/842?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/raucao",
"html_url": "https://github.com/raucao",
"followers_url": "https://api.github.com/users/raucao/followers",
"following_url": "https://api.github.com/users/raucao/following{/other_user}",
"gists_url": "https://api.github.com/users/raucao/gists{/gist_id}",
"starred_url": "https://api.github.com/users/raucao/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/raucao/subscriptions",
"organizations_url": "https://api.github.com/users/raucao/orgs",
"repos_url": "https://api.github.com/users/raucao/repos",
"events_url": "https://api.github.com/users/raucao/events{/privacy}",
"received_events_url": "https://api.github.com/users/raucao/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2018-09-05T08:29:12Z",
"user": {
"login": "scull7",
"id": 234352,
"node_id": "MDQ6VXNlcjIzNDM1Mg==",
"avatar_url": "https://avatars.githubusercontent.com/u/234352?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/scull7",
"html_url": "https://github.com/scull7",
"followers_url": "https://api.github.com/users/scull7/followers",
"following_url": "https://api.github.com/users/scull7/following{/other_user}",
"gists_url": "https://api.github.com/users/scull7/gists{/gist_id}",
"starred_url": "https://api.github.com/users/scull7/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/scull7/subscriptions",
"organizations_url": "https://api.github.com/users/scull7/orgs",
"repos_url": "https://api.github.com/users/scull7/repos",
"events_url": "https://api.github.com/users/scull7/events{/privacy}",
"received_events_url": "https://api.github.com/users/scull7/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2018-09-11T09:29:25Z",
"user": {
"login": "alanz",
"id": 409607,
"node_id": "MDQ6VXNlcjQwOTYwNw==",
"avatar_url": "https://avatars.githubusercontent.com/u/409607?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/alanz",
"html_url": "https://github.com/alanz",
"followers_url": "https://api.github.com/users/alanz/followers",
"following_url": "https://api.github.com/users/alanz/following{/other_user}",
"gists_url": "https://api.github.com/users/alanz/gists{/gist_id}",
"starred_url": "https://api.github.com/users/alanz/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/alanz/subscriptions",
"organizations_url": "https://api.github.com/users/alanz/orgs",
"repos_url": "https://api.github.com/users/alanz/repos",
"events_url": "https://api.github.com/users/alanz/events{/privacy}",
"received_events_url": "https://api.github.com/users/alanz/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2018-09-21T10:38:18Z",
"user": {
"login": "keeganpoppen",
"id": 179742,
"node_id": "MDQ6VXNlcjE3OTc0Mg==",
"avatar_url": "https://avatars.githubusercontent.com/u/179742?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/keeganpoppen",
"html_url": "https://github.com/keeganpoppen",
"followers_url": "https://api.github.com/users/keeganpoppen/followers",
"following_url": "https://api.github.com/users/keeganpoppen/following{/other_user}",
"gists_url": "https://api.github.com/users/keeganpoppen/gists{/gist_id}",
"starred_url": "https://api.github.com/users/keeganpoppen/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/keeganpoppen/subscriptions",
"organizations_url": "https://api.github.com/users/keeganpoppen/orgs",
"repos_url": "https://api.github.com/users/keeganpoppen/repos",
"events_url": "https://api.github.com/users/keeganpoppen/events{/privacy}",
"received_events_url": "https://api.github.com/users/keeganpoppen/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2018-09-25T10:49:11Z",
"user": {
"login": "kanarok",
"id": 11598337,
"node_id": "MDQ6VXNlcjExNTk4MzM3",
"avatar_url": "https://avatars.githubusercontent.com/u/11598337?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/kanarok",
"html_url": "https://github.com/kanarok",
"followers_url": "https://api.github.com/users/kanarok/followers",
"following_url": "https://api.github.com/users/kanarok/following{/other_user}",
"gists_url": "https://api.github.com/users/kanarok/gists{/gist_id}",
"starred_url": "https://api.github.com/users/kanarok/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/kanarok/subscriptions",
"organizations_url": "https://api.github.com/users/kanarok/orgs",
"repos_url": "https://api.github.com/users/kanarok/repos",
"events_url": "https://api.github.com/users/kanarok/events{/privacy}",
"received_events_url": "https://api.github.com/users/kanarok/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2018-10-01T13:53:09Z",
"user": {
"login": "no-identd",
"id": 1437795,
"node_id": "MDQ6VXNlcjE0Mzc3OTU=",
"avatar_url": "https://avatars.githubusercontent.com/u/1437795?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/no-identd",
"html_url": "https://github.com/no-identd",
"followers_url": "https://api.github.com/users/no-identd/followers",
"following_url": "https://api.github.com/users/no-identd/following{/other_user}",
"gists_url": "https://api.github.com/users/no-identd/gists{/gist_id}",
"starred_url": "https://api.github.com/users/no-identd/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/no-identd/subscriptions",
"organizations_url": "https://api.github.com/users/no-identd/orgs",
"repos_url": "https://api.github.com/users/no-identd/repos",
"events_url": "https://api.github.com/users/no-identd/events{/privacy}",
"received_events_url": "https://api.github.com/users/no-identd/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2018-10-05T16:46:25Z",
"user": {
"login": "mtnygard",
"id": 116714,
"node_id": "MDQ6VXNlcjExNjcxNA==",
"avatar_url": "https://avatars.githubusercontent.com/u/116714?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/mtnygard",
"html_url": "https://github.com/mtnygard",
"followers_url": "https://api.github.com/users/mtnygard/followers",
"following_url": "https://api.github.com/users/mtnygard/following{/other_user}",
"gists_url": "https://api.github.com/users/mtnygard/gists{/gist_id}",
"starred_url": "https://api.github.com/users/mtnygard/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/mtnygard/subscriptions",
"organizations_url": "https://api.github.com/users/mtnygard/orgs",
"repos_url": "https://api.github.com/users/mtnygard/repos",
"events_url": "https://api.github.com/users/mtnygard/events{/privacy}",
"received_events_url": "https://api.github.com/users/mtnygard/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2018-10-05T19:04:05Z",
"user": {
"login": "leorog",
"id": 5731508,
"node_id": "MDQ6VXNlcjU3MzE1MDg=",
"avatar_url": "https://avatars.githubusercontent.com/u/5731508?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/leorog",
"html_url": "https://github.com/leorog",
"followers_url": "https://api.github.com/users/leorog/followers",
"following_url": "https://api.github.com/users/leorog/following{/other_user}",
"gists_url": "https://api.github.com/users/leorog/gists{/gist_id}",
"starred_url": "https://api.github.com/users/leorog/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/leorog/subscriptions",
"organizations_url": "https://api.github.com/users/leorog/orgs",
"repos_url": "https://api.github.com/users/leorog/repos",
"events_url": "https://api.github.com/users/leorog/events{/privacy}",
"received_events_url": "https://api.github.com/users/leorog/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2018-10-05T20:58:58Z",
"user": {
"login": "adamnemecek",
"id": 182415,
"node_id": "MDQ6VXNlcjE4MjQxNQ==",
"avatar_url": "https://avatars.githubusercontent.com/u/182415?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/adamnemecek",
"html_url": "https://github.com/adamnemecek",
"followers_url": "https://api.github.com/users/adamnemecek/followers",
"following_url": "https://api.github.com/users/adamnemecek/following{/other_user}",
"gists_url": "https://api.github.com/users/adamnemecek/gists{/gist_id}",
"starred_url": "https://api.github.com/users/adamnemecek/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/adamnemecek/subscriptions",
"organizations_url": "https://api.github.com/users/adamnemecek/orgs",
"repos_url": "https://api.github.com/users/adamnemecek/repos",
"events_url": "https://api.github.com/users/adamnemecek/events{/privacy}",
"received_events_url": "https://api.github.com/users/adamnemecek/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2018-10-05T21:27:32Z",
"user": {
"login": "buko",
"id": 12692585,
"node_id": "MDQ6VXNlcjEyNjkyNTg1",
"avatar_url": "https://avatars.githubusercontent.com/u/12692585?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/buko",
"html_url": "https://github.com/buko",
"followers_url": "https://api.github.com/users/buko/followers",
"following_url": "https://api.github.com/users/buko/following{/other_user}",
"gists_url": "https://api.github.com/users/buko/gists{/gist_id}",
"starred_url": "https://api.github.com/users/buko/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/buko/subscriptions",
"organizations_url": "https://api.github.com/users/buko/orgs",
"repos_url": "https://api.github.com/users/buko/repos",
"events_url": "https://api.github.com/users/buko/events{/privacy}",
"received_events_url": "https://api.github.com/users/buko/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2018-10-05T21:40:24Z",
"user": {
"login": "crudbug",
"id": 1286818,
"node_id": "MDQ6VXNlcjEyODY4MTg=",
"avatar_url": "https://avatars.githubusercontent.com/u/1286818?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/crudbug",
"html_url": "https://github.com/crudbug",
"followers_url": "https://api.github.com/users/crudbug/followers",
"following_url": "https://api.github.com/users/crudbug/following{/other_user}",
"gists_url": "https://api.github.com/users/crudbug/gists{/gist_id}",
"starred_url": "https://api.github.com/users/crudbug/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/crudbug/subscriptions",
"organizations_url": "https://api.github.com/users/crudbug/orgs",
"repos_url": "https://api.github.com/users/crudbug/repos",
"events_url": "https://api.github.com/users/crudbug/events{/privacy}",
"received_events_url": "https://api.github.com/users/crudbug/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2018-10-06T01:07:55Z",
"user": {
"login": "msantos",
"id": 158059,
"node_id": "MDQ6VXNlcjE1ODA1OQ==",
"avatar_url": "https://avatars.githubusercontent.com/u/158059?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/msantos",
"html_url": "https://github.com/msantos",
"followers_url": "https://api.github.com/users/msantos/followers",
"following_url": "https://api.github.com/users/msantos/following{/other_user}",
"gists_url": "https://api.github.com/users/msantos/gists{/gist_id}",
"starred_url": "https://api.github.com/users/msantos/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/msantos/subscriptions",
"organizations_url": "https://api.github.com/users/msantos/orgs",
"repos_url": "https://api.github.com/users/msantos/repos",
"events_url": "https://api.github.com/users/msantos/events{/privacy}",
"received_events_url": "https://api.github.com/users/msantos/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2018-10-06T03:25:19Z",
"user": {
"login": "thanhtoan1196",
"id": 16433547,
"node_id": "MDQ6VXNlcjE2NDMzNTQ3",
"avatar_url": "https://avatars.githubusercontent.com/u/16433547?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/thanhtoan1196",
"html_url": "https://github.com/thanhtoan1196",
"followers_url": "https://api.github.com/users/thanhtoan1196/followers",
"following_url": "https://api.github.com/users/thanhtoan1196/following{/other_user}",
"gists_url": "https://api.github.com/users/thanhtoan1196/gists{/gist_id}",
"starred_url": "https://api.github.com/users/thanhtoan1196/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/thanhtoan1196/subscriptions",
"organizations_url": "https://api.github.com/users/thanhtoan1196/orgs",
"repos_url": "https://api.github.com/users/thanhtoan1196/repos",
"events_url": "https://api.github.com/users/thanhtoan1196/events{/privacy}",
"received_events_url": "https://api.github.com/users/thanhtoan1196/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2018-10-06T04:42:29Z",
"user": {
"login": "harshrc",
"id": 8365041,
"node_id": "MDQ6VXNlcjgzNjUwNDE=",
"avatar_url": "https://avatars.githubusercontent.com/u/8365041?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/harshrc",
"html_url": "https://github.com/harshrc",
"followers_url": "https://api.github.com/users/harshrc/followers",
"following_url": "https://api.github.com/users/harshrc/following{/other_user}",
"gists_url": "https://api.github.com/users/harshrc/gists{/gist_id}",
"starred_url": "https://api.github.com/users/harshrc/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/harshrc/subscriptions",
"organizations_url": "https://api.github.com/users/harshrc/orgs",
"repos_url": "https://api.github.com/users/harshrc/repos",
"events_url": "https://api.github.com/users/harshrc/events{/privacy}",
"received_events_url": "https://api.github.com/users/harshrc/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2018-10-06T08:29:24Z",
"user": {
"login": "cstorey",
"id": 743059,
"node_id": "MDQ6VXNlcjc0MzA1OQ==",
"avatar_url": "https://avatars.githubusercontent.com/u/743059?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/cstorey",
"html_url": "https://github.com/cstorey",
"followers_url": "https://api.github.com/users/cstorey/followers",
"following_url": "https://api.github.com/users/cstorey/following{/other_user}",
"gists_url": "https://api.github.com/users/cstorey/gists{/gist_id}",
"starred_url": "https://api.github.com/users/cstorey/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/cstorey/subscriptions",
"organizations_url": "https://api.github.com/users/cstorey/orgs",
"repos_url": "https://api.github.com/users/cstorey/repos",
"events_url": "https://api.github.com/users/cstorey/events{/privacy}",
"received_events_url": "https://api.github.com/users/cstorey/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2018-10-06T16:28:29Z",
"user": {
"login": "birlorg",
"id": 13758531,
"node_id": "MDQ6VXNlcjEzNzU4NTMx",
"avatar_url": "https://avatars.githubusercontent.com/u/13758531?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/birlorg",
"html_url": "https://github.com/birlorg",
"followers_url": "https://api.github.com/users/birlorg/followers",
"following_url": "https://api.github.com/users/birlorg/following{/other_user}",
"gists_url": "https://api.github.com/users/birlorg/gists{/gist_id}",
"starred_url": "https://api.github.com/users/birlorg/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/birlorg/subscriptions",
"organizations_url": "https://api.github.com/users/birlorg/orgs",
"repos_url": "https://api.github.com/users/birlorg/repos",
"events_url": "https://api.github.com/users/birlorg/events{/privacy}",
"received_events_url": "https://api.github.com/users/birlorg/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2018-10-06T19:12:04Z",
"user": {
"login": "iskedk",
"id": 204707,
"node_id": "MDQ6VXNlcjIwNDcwNw==",
"avatar_url": "https://avatars.githubusercontent.com/u/204707?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/iskedk",
"html_url": "https://github.com/iskedk",
"followers_url": "https://api.github.com/users/iskedk/followers",
"following_url": "https://api.github.com/users/iskedk/following{/other_user}",
"gists_url": "https://api.github.com/users/iskedk/gists{/gist_id}",
"starred_url": "https://api.github.com/users/iskedk/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/iskedk/subscriptions",
"organizations_url": "https://api.github.com/users/iskedk/orgs",
"repos_url": "https://api.github.com/users/iskedk/repos",
"events_url": "https://api.github.com/users/iskedk/events{/privacy}",
"received_events_url": "https://api.github.com/users/iskedk/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2018-10-06T19:59:05Z",
"user": {
"login": "graydon",
"id": 14097,
"node_id": "MDQ6VXNlcjE0MDk3",
"avatar_url": "https://avatars.githubusercontent.com/u/14097?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/graydon",
"html_url": "https://github.com/graydon",
"followers_url": "https://api.github.com/users/graydon/followers",
"following_url": "https://api.github.com/users/graydon/following{/other_user}",
"gists_url": "https://api.github.com/users/graydon/gists{/gist_id}",
"starred_url": "https://api.github.com/users/graydon/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/graydon/subscriptions",
"organizations_url": "https://api.github.com/users/graydon/orgs",
"repos_url": "https://api.github.com/users/graydon/repos",
"events_url": "https://api.github.com/users/graydon/events{/privacy}",
"received_events_url": "https://api.github.com/users/graydon/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2018-10-06T20:49:04Z",
"user": {
"login": "randombit",
"id": 469092,
"node_id": "MDQ6VXNlcjQ2OTA5Mg==",
"avatar_url": "https://avatars.githubusercontent.com/u/469092?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/randombit",
"html_url": "https://github.com/randombit",
"followers_url": "https://api.github.com/users/randombit/followers",
"following_url": "https://api.github.com/users/randombit/following{/other_user}",
"gists_url": "https://api.github.com/users/randombit/gists{/gist_id}",
"starred_url": "https://api.github.com/users/randombit/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/randombit/subscriptions",
"organizations_url": "https://api.github.com/users/randombit/orgs",
"repos_url": "https://api.github.com/users/randombit/repos",
"events_url": "https://api.github.com/users/randombit/events{/privacy}",
"received_events_url": "https://api.github.com/users/randombit/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2018-10-06T21:18:06Z",
"user": {
"login": "dd10-e",
"id": 6233039,
"node_id": "MDQ6VXNlcjYyMzMwMzk=",
"avatar_url": "https://avatars.githubusercontent.com/u/6233039?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/dd10-e",
"html_url": "https://github.com/dd10-e",
"followers_url": "https://api.github.com/users/dd10-e/followers",
"following_url": "https://api.github.com/users/dd10-e/following{/other_user}",
"gists_url": "https://api.github.com/users/dd10-e/gists{/gist_id}",
"starred_url": "https://api.github.com/users/dd10-e/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/dd10-e/subscriptions",
"organizations_url": "https://api.github.com/users/dd10-e/orgs",
"repos_url": "https://api.github.com/users/dd10-e/repos",
"events_url": "https://api.github.com/users/dd10-e/events{/privacy}",
"received_events_url": "https://api.github.com/users/dd10-e/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2018-10-07T02:25:37Z",
"user": {
"login": "qinhanlei",
"id": 1567080,
"node_id": "MDQ6VXNlcjE1NjcwODA=",
"avatar_url": "https://avatars.githubusercontent.com/u/1567080?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/qinhanlei",
"html_url": "https://github.com/qinhanlei",
"followers_url": "https://api.github.com/users/qinhanlei/followers",
"following_url": "https://api.github.com/users/qinhanlei/following{/other_user}",
"gists_url": "https://api.github.com/users/qinhanlei/gists{/gist_id}",
"starred_url": "https://api.github.com/users/qinhanlei/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/qinhanlei/subscriptions",
"organizations_url": "https://api.github.com/users/qinhanlei/orgs",
"repos_url": "https://api.github.com/users/qinhanlei/repos",
"events_url": "https://api.github.com/users/qinhanlei/events{/privacy}",
"received_events_url": "https://api.github.com/users/qinhanlei/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2018-10-07T14:11:50Z",
"user": {
"login": "codeslinger",
"id": 884,
"node_id": "MDQ6VXNlcjg4NA==",
"avatar_url": "https://avatars.githubusercontent.com/u/884?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/codeslinger",
"html_url": "https://github.com/codeslinger",
"followers_url": "https://api.github.com/users/codeslinger/followers",
"following_url": "https://api.github.com/users/codeslinger/following{/other_user}",
"gists_url": "https://api.github.com/users/codeslinger/gists{/gist_id}",
"starred_url": "https://api.github.com/users/codeslinger/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/codeslinger/subscriptions",
"organizations_url": "https://api.github.com/users/codeslinger/orgs",
"repos_url": "https://api.github.com/users/codeslinger/repos",
"events_url": "https://api.github.com/users/codeslinger/events{/privacy}",
"received_events_url": "https://api.github.com/users/codeslinger/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2018-10-07T16:12:57Z",
"user": {
"login": "0xYUANTI",
"id": 322460,
"node_id": "MDQ6VXNlcjMyMjQ2MA==",
"avatar_url": "https://avatars.githubusercontent.com/u/322460?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/0xYUANTI",
"html_url": "https://github.com/0xYUANTI",
"followers_url": "https://api.github.com/users/0xYUANTI/followers",
"following_url": "https://api.github.com/users/0xYUANTI/following{/other_user}",
"gists_url": "https://api.github.com/users/0xYUANTI/gists{/gist_id}",
"starred_url": "https://api.github.com/users/0xYUANTI/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/0xYUANTI/subscriptions",
"organizations_url": "https://api.github.com/users/0xYUANTI/orgs",
"repos_url": "https://api.github.com/users/0xYUANTI/repos",
"events_url": "https://api.github.com/users/0xYUANTI/events{/privacy}",
"received_events_url": "https://api.github.com/users/0xYUANTI/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2018-10-07T18:17:20Z",
"user": {
"login": "cyrildewit",
"id": 16477999,
"node_id": "MDQ6VXNlcjE2NDc3OTk5",
"avatar_url": "https://avatars.githubusercontent.com/u/16477999?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/cyrildewit",
"html_url": "https://github.com/cyrildewit",
"followers_url": "https://api.github.com/users/cyrildewit/followers",
"following_url": "https://api.github.com/users/cyrildewit/following{/other_user}",
"gists_url": "https://api.github.com/users/cyrildewit/gists{/gist_id}",
"starred_url": "https://api.github.com/users/cyrildewit/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/cyrildewit/subscriptions",
"organizations_url": "https://api.github.com/users/cyrildewit/orgs",
"repos_url": "https://api.github.com/users/cyrildewit/repos",
"events_url": "https://api.github.com/users/cyrildewit/events{/privacy}",
"received_events_url": "https://api.github.com/users/cyrildewit/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2018-10-08T11:32:35Z",
"user": {
"login": "Latrasis",
"id": 4656227,
"node_id": "MDQ6VXNlcjQ2NTYyMjc=",
"avatar_url": "https://avatars.githubusercontent.com/u/4656227?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/Latrasis",
"html_url": "https://github.com/Latrasis",
"followers_url": "https://api.github.com/users/Latrasis/followers",
"following_url": "https://api.github.com/users/Latrasis/following{/other_user}",
"gists_url": "https://api.github.com/users/Latrasis/gists{/gist_id}",
"starred_url": "https://api.github.com/users/Latrasis/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/Latrasis/subscriptions",
"organizations_url": "https://api.github.com/users/Latrasis/orgs",
"repos_url": "https://api.github.com/users/Latrasis/repos",
"events_url": "https://api.github.com/users/Latrasis/events{/privacy}",
"received_events_url": "https://api.github.com/users/Latrasis/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2018-10-08T13:09:31Z",
"user": {
"login": "tkersey",
"id": 217,
"node_id": "MDQ6VXNlcjIxNw==",
"avatar_url": "https://avatars.githubusercontent.com/u/217?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/tkersey",
"html_url": "https://github.com/tkersey",
"followers_url": "https://api.github.com/users/tkersey/followers",
"following_url": "https://api.github.com/users/tkersey/following{/other_user}",
"gists_url": "https://api.github.com/users/tkersey/gists{/gist_id}",
"starred_url": "https://api.github.com/users/tkersey/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/tkersey/subscriptions",
"organizations_url": "https://api.github.com/users/tkersey/orgs",
"repos_url": "https://api.github.com/users/tkersey/repos",
"events_url": "https://api.github.com/users/tkersey/events{/privacy}",
"received_events_url": "https://api.github.com/users/tkersey/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2018-10-08T14:50:00Z",
"user": {
"login": "f0rki",
"id": 617306,
"node_id": "MDQ6VXNlcjYxNzMwNg==",
"avatar_url": "https://avatars.githubusercontent.com/u/617306?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/f0rki",
"html_url": "https://github.com/f0rki",
"followers_url": "https://api.github.com/users/f0rki/followers",
"following_url": "https://api.github.com/users/f0rki/following{/other_user}",
"gists_url": "https://api.github.com/users/f0rki/gists{/gist_id}",
"starred_url": "https://api.github.com/users/f0rki/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/f0rki/subscriptions",
"organizations_url": "https://api.github.com/users/f0rki/orgs",
"repos_url": "https://api.github.com/users/f0rki/repos",
"events_url": "https://api.github.com/users/f0rki/events{/privacy}",
"received_events_url": "https://api.github.com/users/f0rki/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2018-10-24T16:12:12Z",
"user": {
"login": "Tomsketh",
"id": 44442536,
"node_id": "MDQ6VXNlcjQ0NDQyNTM2",
"avatar_url": "https://avatars.githubusercontent.com/u/44442536?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/Tomsketh",
"html_url": "https://github.com/Tomsketh",
"followers_url": "https://api.github.com/users/Tomsketh/followers",
"following_url": "https://api.github.com/users/Tomsketh/following{/other_user}",
"gists_url": "https://api.github.com/users/Tomsketh/gists{/gist_id}",
"starred_url": "https://api.github.com/users/Tomsketh/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/Tomsketh/subscriptions",
"organizations_url": "https://api.github.com/users/Tomsketh/orgs",
"repos_url": "https://api.github.com/users/Tomsketh/repos",
"events_url": "https://api.github.com/users/Tomsketh/events{/privacy}",
"received_events_url": "https://api.github.com/users/Tomsketh/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2018-10-31T19:34:51Z",
"user": {
"login": "patternspandemic",
"id": 15645854,
"node_id": "MDQ6VXNlcjE1NjQ1ODU0",
"avatar_url": "https://avatars.githubusercontent.com/u/15645854?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/patternspandemic",
"html_url": "https://github.com/patternspandemic",
"followers_url": "https://api.github.com/users/patternspandemic/followers",
"following_url": "https://api.github.com/users/patternspandemic/following{/other_user}",
"gists_url": "https://api.github.com/users/patternspandemic/gists{/gist_id}",
"starred_url": "https://api.github.com/users/patternspandemic/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/patternspandemic/subscriptions",
"organizations_url": "https://api.github.com/users/patternspandemic/orgs",
"repos_url": "https://api.github.com/users/patternspandemic/repos",
"events_url": "https://api.github.com/users/patternspandemic/events{/privacy}",
"received_events_url": "https://api.github.com/users/patternspandemic/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2018-11-05T21:06:34Z",
"user": {
"login": "rbrewer123",
"id": 743058,
"node_id": "MDQ6VXNlcjc0MzA1OA==",
"avatar_url": "https://avatars.githubusercontent.com/u/743058?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/rbrewer123",
"html_url": "https://github.com/rbrewer123",
"followers_url": "https://api.github.com/users/rbrewer123/followers",
"following_url": "https://api.github.com/users/rbrewer123/following{/other_user}",
"gists_url": "https://api.github.com/users/rbrewer123/gists{/gist_id}",
"starred_url": "https://api.github.com/users/rbrewer123/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/rbrewer123/subscriptions",
"organizations_url": "https://api.github.com/users/rbrewer123/orgs",
"repos_url": "https://api.github.com/users/rbrewer123/repos",
"events_url": "https://api.github.com/users/rbrewer123/events{/privacy}",
"received_events_url": "https://api.github.com/users/rbrewer123/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2018-11-08T09:05:14Z",
"user": {
"login": "ligurio",
"id": 1151557,
"node_id": "MDQ6VXNlcjExNTE1NTc=",
"avatar_url": "https://avatars.githubusercontent.com/u/1151557?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/ligurio",
"html_url": "https://github.com/ligurio",
"followers_url": "https://api.github.com/users/ligurio/followers",
"following_url": "https://api.github.com/users/ligurio/following{/other_user}",
"gists_url": "https://api.github.com/users/ligurio/gists{/gist_id}",
"starred_url": "https://api.github.com/users/ligurio/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/ligurio/subscriptions",
"organizations_url": "https://api.github.com/users/ligurio/orgs",
"repos_url": "https://api.github.com/users/ligurio/repos",
"events_url": "https://api.github.com/users/ligurio/events{/privacy}",
"received_events_url": "https://api.github.com/users/ligurio/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2018-11-12T17:33:41Z",
"user": {
"login": "PyroLagus",
"id": 4579165,
"node_id": "MDQ6VXNlcjQ1NzkxNjU=",
"avatar_url": "https://avatars.githubusercontent.com/u/4579165?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/PyroLagus",
"html_url": "https://github.com/PyroLagus",
"followers_url": "https://api.github.com/users/PyroLagus/followers",
"following_url": "https://api.github.com/users/PyroLagus/following{/other_user}",
"gists_url": "https://api.github.com/users/PyroLagus/gists{/gist_id}",
"starred_url": "https://api.github.com/users/PyroLagus/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/PyroLagus/subscriptions",
"organizations_url": "https://api.github.com/users/PyroLagus/orgs",
"repos_url": "https://api.github.com/users/PyroLagus/repos",
"events_url": "https://api.github.com/users/PyroLagus/events{/privacy}",
"received_events_url": "https://api.github.com/users/PyroLagus/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2018-11-20T12:10:24Z",
"user": {
"login": "hiway",
"id": 23116,
"node_id": "MDQ6VXNlcjIzMTE2",
"avatar_url": "https://avatars.githubusercontent.com/u/23116?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/hiway",
"html_url": "https://github.com/hiway",
"followers_url": "https://api.github.com/users/hiway/followers",
"following_url": "https://api.github.com/users/hiway/following{/other_user}",
"gists_url": "https://api.github.com/users/hiway/gists{/gist_id}",
"starred_url": "https://api.github.com/users/hiway/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/hiway/subscriptions",
"organizations_url": "https://api.github.com/users/hiway/orgs",
"repos_url": "https://api.github.com/users/hiway/repos",
"events_url": "https://api.github.com/users/hiway/events{/privacy}",
"received_events_url": "https://api.github.com/users/hiway/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2018-11-26T02:37:26Z",
"user": {
"login": "scivey",
"id": 4977409,
"node_id": "MDQ6VXNlcjQ5Nzc0MDk=",
"avatar_url": "https://avatars.githubusercontent.com/u/4977409?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/scivey",
"html_url": "https://github.com/scivey",
"followers_url": "https://api.github.com/users/scivey/followers",
"following_url": "https://api.github.com/users/scivey/following{/other_user}",
"gists_url": "https://api.github.com/users/scivey/gists{/gist_id}",
"starred_url": "https://api.github.com/users/scivey/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/scivey/subscriptions",
"organizations_url": "https://api.github.com/users/scivey/orgs",
"repos_url": "https://api.github.com/users/scivey/repos",
"events_url": "https://api.github.com/users/scivey/events{/privacy}",
"received_events_url": "https://api.github.com/users/scivey/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2018-11-29T23:01:13Z",
"user": {
"login": "shanev",
"id": 17361,
"node_id": "MDQ6VXNlcjE3MzYx",
"avatar_url": "https://avatars.githubusercontent.com/u/17361?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/shanev",
"html_url": "https://github.com/shanev",
"followers_url": "https://api.github.com/users/shanev/followers",
"following_url": "https://api.github.com/users/shanev/following{/other_user}",
"gists_url": "https://api.github.com/users/shanev/gists{/gist_id}",
"starred_url": "https://api.github.com/users/shanev/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/shanev/subscriptions",
"organizations_url": "https://api.github.com/users/shanev/orgs",
"repos_url": "https://api.github.com/users/shanev/repos",
"events_url": "https://api.github.com/users/shanev/events{/privacy}",
"received_events_url": "https://api.github.com/users/shanev/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2018-11-30T00:57:47Z",
"user": {
"login": "mwatts",
"id": 18381,
"node_id": "MDQ6VXNlcjE4Mzgx",
"avatar_url": "https://avatars.githubusercontent.com/u/18381?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/mwatts",
"html_url": "https://github.com/mwatts",
"followers_url": "https://api.github.com/users/mwatts/followers",
"following_url": "https://api.github.com/users/mwatts/following{/other_user}",
"gists_url": "https://api.github.com/users/mwatts/gists{/gist_id}",
"starred_url": "https://api.github.com/users/mwatts/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/mwatts/subscriptions",
"organizations_url": "https://api.github.com/users/mwatts/orgs",
"repos_url": "https://api.github.com/users/mwatts/repos",
"events_url": "https://api.github.com/users/mwatts/events{/privacy}",
"received_events_url": "https://api.github.com/users/mwatts/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2018-12-04T02:22:49Z",
"user": {
"login": "RAbraham",
"id": 214189,
"node_id": "MDQ6VXNlcjIxNDE4OQ==",
"avatar_url": "https://avatars.githubusercontent.com/u/214189?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/RAbraham",
"html_url": "https://github.com/RAbraham",
"followers_url": "https://api.github.com/users/RAbraham/followers",
"following_url": "https://api.github.com/users/RAbraham/following{/other_user}",
"gists_url": "https://api.github.com/users/RAbraham/gists{/gist_id}",
"starred_url": "https://api.github.com/users/RAbraham/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/RAbraham/subscriptions",
"organizations_url": "https://api.github.com/users/RAbraham/orgs",
"repos_url": "https://api.github.com/users/RAbraham/repos",
"events_url": "https://api.github.com/users/RAbraham/events{/privacy}",
"received_events_url": "https://api.github.com/users/RAbraham/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2018-12-04T06:01:40Z",
"user": {
"login": "brainmorsel",
"id": 382850,
"node_id": "MDQ6VXNlcjM4Mjg1MA==",
"avatar_url": "https://avatars.githubusercontent.com/u/382850?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/brainmorsel",
"html_url": "https://github.com/brainmorsel",
"followers_url": "https://api.github.com/users/brainmorsel/followers",
"following_url": "https://api.github.com/users/brainmorsel/following{/other_user}",
"gists_url": "https://api.github.com/users/brainmorsel/gists{/gist_id}",
"starred_url": "https://api.github.com/users/brainmorsel/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/brainmorsel/subscriptions",
"organizations_url": "https://api.github.com/users/brainmorsel/orgs",
"repos_url": "https://api.github.com/users/brainmorsel/repos",
"events_url": "https://api.github.com/users/brainmorsel/events{/privacy}",
"received_events_url": "https://api.github.com/users/brainmorsel/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2018-12-07T15:55:50Z",
"user": {
"login": "srdjan",
"id": 61190,
"node_id": "MDQ6VXNlcjYxMTkw",
"avatar_url": "https://avatars.githubusercontent.com/u/61190?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/srdjan",
"html_url": "https://github.com/srdjan",
"followers_url": "https://api.github.com/users/srdjan/followers",
"following_url": "https://api.github.com/users/srdjan/following{/other_user}",
"gists_url": "https://api.github.com/users/srdjan/gists{/gist_id}",
"starred_url": "https://api.github.com/users/srdjan/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/srdjan/subscriptions",
"organizations_url": "https://api.github.com/users/srdjan/orgs",
"repos_url": "https://api.github.com/users/srdjan/repos",
"events_url": "https://api.github.com/users/srdjan/events{/privacy}",
"received_events_url": "https://api.github.com/users/srdjan/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2018-12-19T18:09:04Z",
"user": {
"login": "Empowerful",
"id": 45366397,
"node_id": "MDQ6VXNlcjQ1MzY2Mzk3",
"avatar_url": "https://avatars.githubusercontent.com/u/45366397?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/Empowerful",
"html_url": "https://github.com/Empowerful",
"followers_url": "https://api.github.com/users/Empowerful/followers",
"following_url": "https://api.github.com/users/Empowerful/following{/other_user}",
"gists_url": "https://api.github.com/users/Empowerful/gists{/gist_id}",
"starred_url": "https://api.github.com/users/Empowerful/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/Empowerful/subscriptions",
"organizations_url": "https://api.github.com/users/Empowerful/orgs",
"repos_url": "https://api.github.com/users/Empowerful/repos",
"events_url": "https://api.github.com/users/Empowerful/events{/privacy}",
"received_events_url": "https://api.github.com/users/Empowerful/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2018-12-28T00:08:24Z",
"user": {
"login": "dalnefre",
"id": 1295117,
"node_id": "MDQ6VXNlcjEyOTUxMTc=",
"avatar_url": "https://avatars.githubusercontent.com/u/1295117?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/dalnefre",
"html_url": "https://github.com/dalnefre",
"followers_url": "https://api.github.com/users/dalnefre/followers",
"following_url": "https://api.github.com/users/dalnefre/following{/other_user}",
"gists_url": "https://api.github.com/users/dalnefre/gists{/gist_id}",
"starred_url": "https://api.github.com/users/dalnefre/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/dalnefre/subscriptions",
"organizations_url": "https://api.github.com/users/dalnefre/orgs",
"repos_url": "https://api.github.com/users/dalnefre/repos",
"events_url": "https://api.github.com/users/dalnefre/events{/privacy}",
"received_events_url": "https://api.github.com/users/dalnefre/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2019-01-21T21:36:25Z",
"user": {
"login": "maybe-joe",
"id": 3109300,
"node_id": "MDQ6VXNlcjMxMDkzMDA=",
"avatar_url": "https://avatars.githubusercontent.com/u/3109300?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/maybe-joe",
"html_url": "https://github.com/maybe-joe",
"followers_url": "https://api.github.com/users/maybe-joe/followers",
"following_url": "https://api.github.com/users/maybe-joe/following{/other_user}",
"gists_url": "https://api.github.com/users/maybe-joe/gists{/gist_id}",
"starred_url": "https://api.github.com/users/maybe-joe/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/maybe-joe/subscriptions",
"organizations_url": "https://api.github.com/users/maybe-joe/orgs",
"repos_url": "https://api.github.com/users/maybe-joe/repos",
"events_url": "https://api.github.com/users/maybe-joe/events{/privacy}",
"received_events_url": "https://api.github.com/users/maybe-joe/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2019-01-27T18:02:56Z",
"user": {
"login": "Matthewjarredondo",
"id": 39578966,
"node_id": "MDQ6VXNlcjM5NTc4OTY2",
"avatar_url": "https://avatars.githubusercontent.com/u/39578966?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/Matthewjarredondo",
"html_url": "https://github.com/Matthewjarredondo",
"followers_url": "https://api.github.com/users/Matthewjarredondo/followers",
"following_url": "https://api.github.com/users/Matthewjarredondo/following{/other_user}",
"gists_url": "https://api.github.com/users/Matthewjarredondo/gists{/gist_id}",
"starred_url": "https://api.github.com/users/Matthewjarredondo/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/Matthewjarredondo/subscriptions",
"organizations_url": "https://api.github.com/users/Matthewjarredondo/orgs",
"repos_url": "https://api.github.com/users/Matthewjarredondo/repos",
"events_url": "https://api.github.com/users/Matthewjarredondo/events{/privacy}",
"received_events_url": "https://api.github.com/users/Matthewjarredondo/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2019-01-30T09:35:16Z",
"user": {
"login": "cvic",
"id": 210864,
"node_id": "MDQ6VXNlcjIxMDg2NA==",
"avatar_url": "https://avatars.githubusercontent.com/u/210864?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/cvic",
"html_url": "https://github.com/cvic",
"followers_url": "https://api.github.com/users/cvic/followers",
"following_url": "https://api.github.com/users/cvic/following{/other_user}",
"gists_url": "https://api.github.com/users/cvic/gists{/gist_id}",
"starred_url": "https://api.github.com/users/cvic/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/cvic/subscriptions",
"organizations_url": "https://api.github.com/users/cvic/orgs",
"repos_url": "https://api.github.com/users/cvic/repos",
"events_url": "https://api.github.com/users/cvic/events{/privacy}",
"received_events_url": "https://api.github.com/users/cvic/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2019-02-04T17:56:50Z",
"user": {
"login": "NonSecwitter",
"id": 6634609,
"node_id": "MDQ6VXNlcjY2MzQ2MDk=",
"avatar_url": "https://avatars.githubusercontent.com/u/6634609?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/NonSecwitter",
"html_url": "https://github.com/NonSecwitter",
"followers_url": "https://api.github.com/users/NonSecwitter/followers",
"following_url": "https://api.github.com/users/NonSecwitter/following{/other_user}",
"gists_url": "https://api.github.com/users/NonSecwitter/gists{/gist_id}",
"starred_url": "https://api.github.com/users/NonSecwitter/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/NonSecwitter/subscriptions",
"organizations_url": "https://api.github.com/users/NonSecwitter/orgs",
"repos_url": "https://api.github.com/users/NonSecwitter/repos",
"events_url": "https://api.github.com/users/NonSecwitter/events{/privacy}",
"received_events_url": "https://api.github.com/users/NonSecwitter/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2019-02-07T22:13:27Z",
"user": {
"login": "JeffCarpenter",
"id": 178424,
"node_id": "MDQ6VXNlcjE3ODQyNA==",
"avatar_url": "https://avatars.githubusercontent.com/u/178424?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/JeffCarpenter",
"html_url": "https://github.com/JeffCarpenter",
"followers_url": "https://api.github.com/users/JeffCarpenter/followers",
"following_url": "https://api.github.com/users/JeffCarpenter/following{/other_user}",
"gists_url": "https://api.github.com/users/JeffCarpenter/gists{/gist_id}",
"starred_url": "https://api.github.com/users/JeffCarpenter/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/JeffCarpenter/subscriptions",
"organizations_url": "https://api.github.com/users/JeffCarpenter/orgs",
"repos_url": "https://api.github.com/users/JeffCarpenter/repos",
"events_url": "https://api.github.com/users/JeffCarpenter/events{/privacy}",
"received_events_url": "https://api.github.com/users/JeffCarpenter/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2019-02-08T21:39:35Z",
"user": {
"login": "kjproj84",
"id": 41346736,
"node_id": "MDQ6VXNlcjQxMzQ2NzM2",
"avatar_url": "https://avatars.githubusercontent.com/u/41346736?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/kjproj84",
"html_url": "https://github.com/kjproj84",
"followers_url": "https://api.github.com/users/kjproj84/followers",
"following_url": "https://api.github.com/users/kjproj84/following{/other_user}",
"gists_url": "https://api.github.com/users/kjproj84/gists{/gist_id}",
"starred_url": "https://api.github.com/users/kjproj84/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/kjproj84/subscriptions",
"organizations_url": "https://api.github.com/users/kjproj84/orgs",
"repos_url": "https://api.github.com/users/kjproj84/repos",
"events_url": "https://api.github.com/users/kjproj84/events{/privacy}",
"received_events_url": "https://api.github.com/users/kjproj84/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2019-02-15T16:44:15Z",
"user": {
"login": "bkfox",
"id": 635987,
"node_id": "MDQ6VXNlcjYzNTk4Nw==",
"avatar_url": "https://avatars.githubusercontent.com/u/635987?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/bkfox",
"html_url": "https://github.com/bkfox",
"followers_url": "https://api.github.com/users/bkfox/followers",
"following_url": "https://api.github.com/users/bkfox/following{/other_user}",
"gists_url": "https://api.github.com/users/bkfox/gists{/gist_id}",
"starred_url": "https://api.github.com/users/bkfox/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/bkfox/subscriptions",
"organizations_url": "https://api.github.com/users/bkfox/orgs",
"repos_url": "https://api.github.com/users/bkfox/repos",
"events_url": "https://api.github.com/users/bkfox/events{/privacy}",
"received_events_url": "https://api.github.com/users/bkfox/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2019-02-17T01:17:03Z",
"user": {
"login": "8h2a",
"id": 1588661,
"node_id": "MDQ6VXNlcjE1ODg2NjE=",
"avatar_url": "https://avatars.githubusercontent.com/u/1588661?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/8h2a",
"html_url": "https://github.com/8h2a",
"followers_url": "https://api.github.com/users/8h2a/followers",
"following_url": "https://api.github.com/users/8h2a/following{/other_user}",
"gists_url": "https://api.github.com/users/8h2a/gists{/gist_id}",
"starred_url": "https://api.github.com/users/8h2a/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/8h2a/subscriptions",
"organizations_url": "https://api.github.com/users/8h2a/orgs",
"repos_url": "https://api.github.com/users/8h2a/repos",
"events_url": "https://api.github.com/users/8h2a/events{/privacy}",
"received_events_url": "https://api.github.com/users/8h2a/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2019-03-05T18:30:48Z",
"user": {
"login": "englishm-llnw",
"id": 18221820,
"node_id": "MDQ6VXNlcjE4MjIxODIw",
"avatar_url": "https://avatars.githubusercontent.com/u/18221820?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/englishm-llnw",
"html_url": "https://github.com/englishm-llnw",
"followers_url": "https://api.github.com/users/englishm-llnw/followers",
"following_url": "https://api.github.com/users/englishm-llnw/following{/other_user}",
"gists_url": "https://api.github.com/users/englishm-llnw/gists{/gist_id}",
"starred_url": "https://api.github.com/users/englishm-llnw/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/englishm-llnw/subscriptions",
"organizations_url": "https://api.github.com/users/englishm-llnw/orgs",
"repos_url": "https://api.github.com/users/englishm-llnw/repos",
"events_url": "https://api.github.com/users/englishm-llnw/events{/privacy}",
"received_events_url": "https://api.github.com/users/englishm-llnw/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2019-03-21T15:50:21Z",
"user": {
"login": "cabmorris",
"id": 14362567,
"node_id": "MDQ6VXNlcjE0MzYyNTY3",
"avatar_url": "https://avatars.githubusercontent.com/u/14362567?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/cabmorris",
"html_url": "https://github.com/cabmorris",
"followers_url": "https://api.github.com/users/cabmorris/followers",
"following_url": "https://api.github.com/users/cabmorris/following{/other_user}",
"gists_url": "https://api.github.com/users/cabmorris/gists{/gist_id}",
"starred_url": "https://api.github.com/users/cabmorris/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/cabmorris/subscriptions",
"organizations_url": "https://api.github.com/users/cabmorris/orgs",
"repos_url": "https://api.github.com/users/cabmorris/repos",
"events_url": "https://api.github.com/users/cabmorris/events{/privacy}",
"received_events_url": "https://api.github.com/users/cabmorris/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2019-03-25T03:34:21Z",
"user": {
"login": "kpreid",
"id": 779501,
"node_id": "MDQ6VXNlcjc3OTUwMQ==",
"avatar_url": "https://avatars.githubusercontent.com/u/779501?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/kpreid",
"html_url": "https://github.com/kpreid",
"followers_url": "https://api.github.com/users/kpreid/followers",
"following_url": "https://api.github.com/users/kpreid/following{/other_user}",
"gists_url": "https://api.github.com/users/kpreid/gists{/gist_id}",
"starred_url": "https://api.github.com/users/kpreid/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/kpreid/subscriptions",
"organizations_url": "https://api.github.com/users/kpreid/orgs",
"repos_url": "https://api.github.com/users/kpreid/repos",
"events_url": "https://api.github.com/users/kpreid/events{/privacy}",
"received_events_url": "https://api.github.com/users/kpreid/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2019-04-02T02:32:31Z",
"user": {
"login": "mlinksva",
"id": 40415,
"node_id": "MDQ6VXNlcjQwNDE1",
"avatar_url": "https://avatars.githubusercontent.com/u/40415?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/mlinksva",
"html_url": "https://github.com/mlinksva",
"followers_url": "https://api.github.com/users/mlinksva/followers",
"following_url": "https://api.github.com/users/mlinksva/following{/other_user}",
"gists_url": "https://api.github.com/users/mlinksva/gists{/gist_id}",
"starred_url": "https://api.github.com/users/mlinksva/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/mlinksva/subscriptions",
"organizations_url": "https://api.github.com/users/mlinksva/orgs",
"repos_url": "https://api.github.com/users/mlinksva/repos",
"events_url": "https://api.github.com/users/mlinksva/events{/privacy}",
"received_events_url": "https://api.github.com/users/mlinksva/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": true
}
},
{
"starred_at": "2019-04-02T03:55:53Z",
"user": {
"login": "PtrTeixeira",
"id": 5621029,
"node_id": "MDQ6VXNlcjU2MjEwMjk=",
"avatar_url": "https://avatars.githubusercontent.com/u/5621029?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/PtrTeixeira",
"html_url": "https://github.com/PtrTeixeira",
"followers_url": "https://api.github.com/users/PtrTeixeira/followers",
"following_url": "https://api.github.com/users/PtrTeixeira/following{/other_user}",
"gists_url": "https://api.github.com/users/PtrTeixeira/gists{/gist_id}",
"starred_url": "https://api.github.com/users/PtrTeixeira/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/PtrTeixeira/subscriptions",
"organizations_url": "https://api.github.com/users/PtrTeixeira/orgs",
"repos_url": "https://api.github.com/users/PtrTeixeira/repos",
"events_url": "https://api.github.com/users/PtrTeixeira/events{/privacy}",
"received_events_url": "https://api.github.com/users/PtrTeixeira/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2019-04-02T06:05:09Z",
"user": {
"login": "artob",
"id": 4963,
"node_id": "MDQ6VXNlcjQ5NjM=",
"avatar_url": "https://avatars.githubusercontent.com/u/4963?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/artob",
"html_url": "https://github.com/artob",
"followers_url": "https://api.github.com/users/artob/followers",
"following_url": "https://api.github.com/users/artob/following{/other_user}",
"gists_url": "https://api.github.com/users/artob/gists{/gist_id}",
"starred_url": "https://api.github.com/users/artob/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/artob/subscriptions",
"organizations_url": "https://api.github.com/users/artob/orgs",
"repos_url": "https://api.github.com/users/artob/repos",
"events_url": "https://api.github.com/users/artob/events{/privacy}",
"received_events_url": "https://api.github.com/users/artob/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2019-04-10T10:14:02Z",
"user": {
"login": "fivejjs",
"id": 1405491,
"node_id": "MDQ6VXNlcjE0MDU0OTE=",
"avatar_url": "https://avatars.githubusercontent.com/u/1405491?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/fivejjs",
"html_url": "https://github.com/fivejjs",
"followers_url": "https://api.github.com/users/fivejjs/followers",
"following_url": "https://api.github.com/users/fivejjs/following{/other_user}",
"gists_url": "https://api.github.com/users/fivejjs/gists{/gist_id}",
"starred_url": "https://api.github.com/users/fivejjs/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/fivejjs/subscriptions",
"organizations_url": "https://api.github.com/users/fivejjs/orgs",
"repos_url": "https://api.github.com/users/fivejjs/repos",
"events_url": "https://api.github.com/users/fivejjs/events{/privacy}",
"received_events_url": "https://api.github.com/users/fivejjs/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2019-04-23T07:59:06Z",
"user": {
"login": "bugaevc",
"id": 10091584,
"node_id": "MDQ6VXNlcjEwMDkxNTg0",
"avatar_url": "https://avatars.githubusercontent.com/u/10091584?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/bugaevc",
"html_url": "https://github.com/bugaevc",
"followers_url": "https://api.github.com/users/bugaevc/followers",
"following_url": "https://api.github.com/users/bugaevc/following{/other_user}",
"gists_url": "https://api.github.com/users/bugaevc/gists{/gist_id}",
"starred_url": "https://api.github.com/users/bugaevc/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/bugaevc/subscriptions",
"organizations_url": "https://api.github.com/users/bugaevc/orgs",
"repos_url": "https://api.github.com/users/bugaevc/repos",
"events_url": "https://api.github.com/users/bugaevc/events{/privacy}",
"received_events_url": "https://api.github.com/users/bugaevc/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2019-04-29T09:52:29Z",
"user": {
"login": "kcchu",
"id": 800071,
"node_id": "MDQ6VXNlcjgwMDA3MQ==",
"avatar_url": "https://avatars.githubusercontent.com/u/800071?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/kcchu",
"html_url": "https://github.com/kcchu",
"followers_url": "https://api.github.com/users/kcchu/followers",
"following_url": "https://api.github.com/users/kcchu/following{/other_user}",
"gists_url": "https://api.github.com/users/kcchu/gists{/gist_id}",
"starred_url": "https://api.github.com/users/kcchu/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/kcchu/subscriptions",
"organizations_url": "https://api.github.com/users/kcchu/orgs",
"repos_url": "https://api.github.com/users/kcchu/repos",
"events_url": "https://api.github.com/users/kcchu/events{/privacy}",
"received_events_url": "https://api.github.com/users/kcchu/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2019-04-30T22:02:36Z",
"user": {
"login": "milosgajdos",
"id": 1392526,
"node_id": "MDQ6VXNlcjEzOTI1MjY=",
"avatar_url": "https://avatars.githubusercontent.com/u/1392526?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/milosgajdos",
"html_url": "https://github.com/milosgajdos",
"followers_url": "https://api.github.com/users/milosgajdos/followers",
"following_url": "https://api.github.com/users/milosgajdos/following{/other_user}",
"gists_url": "https://api.github.com/users/milosgajdos/gists{/gist_id}",
"starred_url": "https://api.github.com/users/milosgajdos/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/milosgajdos/subscriptions",
"organizations_url": "https://api.github.com/users/milosgajdos/orgs",
"repos_url": "https://api.github.com/users/milosgajdos/repos",
"events_url": "https://api.github.com/users/milosgajdos/events{/privacy}",
"received_events_url": "https://api.github.com/users/milosgajdos/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2019-05-01T04:18:53Z",
"user": {
"login": "ik5",
"id": 73091,
"node_id": "MDQ6VXNlcjczMDkx",
"avatar_url": "https://avatars.githubusercontent.com/u/73091?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/ik5",
"html_url": "https://github.com/ik5",
"followers_url": "https://api.github.com/users/ik5/followers",
"following_url": "https://api.github.com/users/ik5/following{/other_user}",
"gists_url": "https://api.github.com/users/ik5/gists{/gist_id}",
"starred_url": "https://api.github.com/users/ik5/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/ik5/subscriptions",
"organizations_url": "https://api.github.com/users/ik5/orgs",
"repos_url": "https://api.github.com/users/ik5/repos",
"events_url": "https://api.github.com/users/ik5/events{/privacy}",
"received_events_url": "https://api.github.com/users/ik5/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2019-05-08T05:10:26Z",
"user": {
"login": "colejhudson",
"id": 11510882,
"node_id": "MDQ6VXNlcjExNTEwODgy",
"avatar_url": "https://avatars.githubusercontent.com/u/11510882?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/colejhudson",
"html_url": "https://github.com/colejhudson",
"followers_url": "https://api.github.com/users/colejhudson/followers",
"following_url": "https://api.github.com/users/colejhudson/following{/other_user}",
"gists_url": "https://api.github.com/users/colejhudson/gists{/gist_id}",
"starred_url": "https://api.github.com/users/colejhudson/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/colejhudson/subscriptions",
"organizations_url": "https://api.github.com/users/colejhudson/orgs",
"repos_url": "https://api.github.com/users/colejhudson/repos",
"events_url": "https://api.github.com/users/colejhudson/events{/privacy}",
"received_events_url": "https://api.github.com/users/colejhudson/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2019-05-13T16:20:16Z",
"user": {
"login": "avesus",
"id": 4148259,
"node_id": "MDQ6VXNlcjQxNDgyNTk=",
"avatar_url": "https://avatars.githubusercontent.com/u/4148259?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/avesus",
"html_url": "https://github.com/avesus",
"followers_url": "https://api.github.com/users/avesus/followers",
"following_url": "https://api.github.com/users/avesus/following{/other_user}",
"gists_url": "https://api.github.com/users/avesus/gists{/gist_id}",
"starred_url": "https://api.github.com/users/avesus/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/avesus/subscriptions",
"organizations_url": "https://api.github.com/users/avesus/orgs",
"repos_url": "https://api.github.com/users/avesus/repos",
"events_url": "https://api.github.com/users/avesus/events{/privacy}",
"received_events_url": "https://api.github.com/users/avesus/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2019-05-18T19:21:12Z",
"user": {
"login": "axiom215",
"id": 22735300,
"node_id": "MDQ6VXNlcjIyNzM1MzAw",
"avatar_url": "https://avatars.githubusercontent.com/u/22735300?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/axiom215",
"html_url": "https://github.com/axiom215",
"followers_url": "https://api.github.com/users/axiom215/followers",
"following_url": "https://api.github.com/users/axiom215/following{/other_user}",
"gists_url": "https://api.github.com/users/axiom215/gists{/gist_id}",
"starred_url": "https://api.github.com/users/axiom215/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/axiom215/subscriptions",
"organizations_url": "https://api.github.com/users/axiom215/orgs",
"repos_url": "https://api.github.com/users/axiom215/repos",
"events_url": "https://api.github.com/users/axiom215/events{/privacy}",
"received_events_url": "https://api.github.com/users/axiom215/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2019-05-18T21:58:34Z",
"user": {
"login": "weskerfoot",
"id": 378351,
"node_id": "MDQ6VXNlcjM3ODM1MQ==",
"avatar_url": "https://avatars.githubusercontent.com/u/378351?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/weskerfoot",
"html_url": "https://github.com/weskerfoot",
"followers_url": "https://api.github.com/users/weskerfoot/followers",
"following_url": "https://api.github.com/users/weskerfoot/following{/other_user}",
"gists_url": "https://api.github.com/users/weskerfoot/gists{/gist_id}",
"starred_url": "https://api.github.com/users/weskerfoot/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/weskerfoot/subscriptions",
"organizations_url": "https://api.github.com/users/weskerfoot/orgs",
"repos_url": "https://api.github.com/users/weskerfoot/repos",
"events_url": "https://api.github.com/users/weskerfoot/events{/privacy}",
"received_events_url": "https://api.github.com/users/weskerfoot/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2019-05-23T05:49:39Z",
"user": {
"login": "discrete-void",
"id": 34796665,
"node_id": "MDQ6VXNlcjM0Nzk2NjY1",
"avatar_url": "https://avatars.githubusercontent.com/u/34796665?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/discrete-void",
"html_url": "https://github.com/discrete-void",
"followers_url": "https://api.github.com/users/discrete-void/followers",
"following_url": "https://api.github.com/users/discrete-void/following{/other_user}",
"gists_url": "https://api.github.com/users/discrete-void/gists{/gist_id}",
"starred_url": "https://api.github.com/users/discrete-void/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/discrete-void/subscriptions",
"organizations_url": "https://api.github.com/users/discrete-void/orgs",
"repos_url": "https://api.github.com/users/discrete-void/repos",
"events_url": "https://api.github.com/users/discrete-void/events{/privacy}",
"received_events_url": "https://api.github.com/users/discrete-void/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2019-05-24T00:00:04Z",
"user": {
"login": "binarygalwalkin",
"id": 44074053,
"node_id": "MDQ6VXNlcjQ0MDc0MDUz",
"avatar_url": "https://avatars.githubusercontent.com/u/44074053?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/binarygalwalkin",
"html_url": "https://github.com/binarygalwalkin",
"followers_url": "https://api.github.com/users/binarygalwalkin/followers",
"following_url": "https://api.github.com/users/binarygalwalkin/following{/other_user}",
"gists_url": "https://api.github.com/users/binarygalwalkin/gists{/gist_id}",
"starred_url": "https://api.github.com/users/binarygalwalkin/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/binarygalwalkin/subscriptions",
"organizations_url": "https://api.github.com/users/binarygalwalkin/orgs",
"repos_url": "https://api.github.com/users/binarygalwalkin/repos",
"events_url": "https://api.github.com/users/binarygalwalkin/events{/privacy}",
"received_events_url": "https://api.github.com/users/binarygalwalkin/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2019-05-27T04:02:17Z",
"user": {
"login": "tarvos21",
"id": 18745870,
"node_id": "MDQ6VXNlcjE4NzQ1ODcw",
"avatar_url": "https://avatars.githubusercontent.com/u/18745870?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/tarvos21",
"html_url": "https://github.com/tarvos21",
"followers_url": "https://api.github.com/users/tarvos21/followers",
"following_url": "https://api.github.com/users/tarvos21/following{/other_user}",
"gists_url": "https://api.github.com/users/tarvos21/gists{/gist_id}",
"starred_url": "https://api.github.com/users/tarvos21/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/tarvos21/subscriptions",
"organizations_url": "https://api.github.com/users/tarvos21/orgs",
"repos_url": "https://api.github.com/users/tarvos21/repos",
"events_url": "https://api.github.com/users/tarvos21/events{/privacy}",
"received_events_url": "https://api.github.com/users/tarvos21/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2019-05-27T05:26:11Z",
"user": {
"login": "tryprasannan",
"id": 1032873,
"node_id": "MDQ6VXNlcjEwMzI4NzM=",
"avatar_url": "https://avatars.githubusercontent.com/u/1032873?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/tryprasannan",
"html_url": "https://github.com/tryprasannan",
"followers_url": "https://api.github.com/users/tryprasannan/followers",
"following_url": "https://api.github.com/users/tryprasannan/following{/other_user}",
"gists_url": "https://api.github.com/users/tryprasannan/gists{/gist_id}",
"starred_url": "https://api.github.com/users/tryprasannan/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/tryprasannan/subscriptions",
"organizations_url": "https://api.github.com/users/tryprasannan/orgs",
"repos_url": "https://api.github.com/users/tryprasannan/repos",
"events_url": "https://api.github.com/users/tryprasannan/events{/privacy}",
"received_events_url": "https://api.github.com/users/tryprasannan/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2019-05-27T05:37:49Z",
"user": {
"login": "yosoyubik",
"id": 1033194,
"node_id": "MDQ6VXNlcjEwMzMxOTQ=",
"avatar_url": "https://avatars.githubusercontent.com/u/1033194?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/yosoyubik",
"html_url": "https://github.com/yosoyubik",
"followers_url": "https://api.github.com/users/yosoyubik/followers",
"following_url": "https://api.github.com/users/yosoyubik/following{/other_user}",
"gists_url": "https://api.github.com/users/yosoyubik/gists{/gist_id}",
"starred_url": "https://api.github.com/users/yosoyubik/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/yosoyubik/subscriptions",
"organizations_url": "https://api.github.com/users/yosoyubik/orgs",
"repos_url": "https://api.github.com/users/yosoyubik/repos",
"events_url": "https://api.github.com/users/yosoyubik/events{/privacy}",
"received_events_url": "https://api.github.com/users/yosoyubik/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2019-05-27T06:22:06Z",
"user": {
"login": "frabrunelle",
"id": 1114844,
"node_id": "MDQ6VXNlcjExMTQ4NDQ=",
"avatar_url": "https://avatars.githubusercontent.com/u/1114844?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/frabrunelle",
"html_url": "https://github.com/frabrunelle",
"followers_url": "https://api.github.com/users/frabrunelle/followers",
"following_url": "https://api.github.com/users/frabrunelle/following{/other_user}",
"gists_url": "https://api.github.com/users/frabrunelle/gists{/gist_id}",
"starred_url": "https://api.github.com/users/frabrunelle/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/frabrunelle/subscriptions",
"organizations_url": "https://api.github.com/users/frabrunelle/orgs",
"repos_url": "https://api.github.com/users/frabrunelle/repos",
"events_url": "https://api.github.com/users/frabrunelle/events{/privacy}",
"received_events_url": "https://api.github.com/users/frabrunelle/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2019-05-27T20:02:46Z",
"user": {
"login": "khimaros",
"id": 231498,
"node_id": "MDQ6VXNlcjIzMTQ5OA==",
"avatar_url": "https://avatars.githubusercontent.com/u/231498?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/khimaros",
"html_url": "https://github.com/khimaros",
"followers_url": "https://api.github.com/users/khimaros/followers",
"following_url": "https://api.github.com/users/khimaros/following{/other_user}",
"gists_url": "https://api.github.com/users/khimaros/gists{/gist_id}",
"starred_url": "https://api.github.com/users/khimaros/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/khimaros/subscriptions",
"organizations_url": "https://api.github.com/users/khimaros/orgs",
"repos_url": "https://api.github.com/users/khimaros/repos",
"events_url": "https://api.github.com/users/khimaros/events{/privacy}",
"received_events_url": "https://api.github.com/users/khimaros/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2019-06-12T21:55:26Z",
"user": {
"login": "jsanders",
"id": 38320,
"node_id": "MDQ6VXNlcjM4MzIw",
"avatar_url": "https://avatars.githubusercontent.com/u/38320?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/jsanders",
"html_url": "https://github.com/jsanders",
"followers_url": "https://api.github.com/users/jsanders/followers",
"following_url": "https://api.github.com/users/jsanders/following{/other_user}",
"gists_url": "https://api.github.com/users/jsanders/gists{/gist_id}",
"starred_url": "https://api.github.com/users/jsanders/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/jsanders/subscriptions",
"organizations_url": "https://api.github.com/users/jsanders/orgs",
"repos_url": "https://api.github.com/users/jsanders/repos",
"events_url": "https://api.github.com/users/jsanders/events{/privacy}",
"received_events_url": "https://api.github.com/users/jsanders/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2019-06-19T23:22:52Z",
"user": {
"login": "salotz",
"id": 7883146,
"node_id": "MDQ6VXNlcjc4ODMxNDY=",
"avatar_url": "https://avatars.githubusercontent.com/u/7883146?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/salotz",
"html_url": "https://github.com/salotz",
"followers_url": "https://api.github.com/users/salotz/followers",
"following_url": "https://api.github.com/users/salotz/following{/other_user}",
"gists_url": "https://api.github.com/users/salotz/gists{/gist_id}",
"starred_url": "https://api.github.com/users/salotz/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/salotz/subscriptions",
"organizations_url": "https://api.github.com/users/salotz/orgs",
"repos_url": "https://api.github.com/users/salotz/repos",
"events_url": "https://api.github.com/users/salotz/events{/privacy}",
"received_events_url": "https://api.github.com/users/salotz/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2019-07-06T13:56:19Z",
"user": {
"login": "tgrospic",
"id": 5306205,
"node_id": "MDQ6VXNlcjUzMDYyMDU=",
"avatar_url": "https://avatars.githubusercontent.com/u/5306205?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/tgrospic",
"html_url": "https://github.com/tgrospic",
"followers_url": "https://api.github.com/users/tgrospic/followers",
"following_url": "https://api.github.com/users/tgrospic/following{/other_user}",
"gists_url": "https://api.github.com/users/tgrospic/gists{/gist_id}",
"starred_url": "https://api.github.com/users/tgrospic/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/tgrospic/subscriptions",
"organizations_url": "https://api.github.com/users/tgrospic/orgs",
"repos_url": "https://api.github.com/users/tgrospic/repos",
"events_url": "https://api.github.com/users/tgrospic/events{/privacy}",
"received_events_url": "https://api.github.com/users/tgrospic/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2019-08-01T15:42:14Z",
"user": {
"login": "dbohdan",
"id": 3179832,
"node_id": "MDQ6VXNlcjMxNzk4MzI=",
"avatar_url": "https://avatars.githubusercontent.com/u/3179832?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/dbohdan",
"html_url": "https://github.com/dbohdan",
"followers_url": "https://api.github.com/users/dbohdan/followers",
"following_url": "https://api.github.com/users/dbohdan/following{/other_user}",
"gists_url": "https://api.github.com/users/dbohdan/gists{/gist_id}",
"starred_url": "https://api.github.com/users/dbohdan/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/dbohdan/subscriptions",
"organizations_url": "https://api.github.com/users/dbohdan/orgs",
"repos_url": "https://api.github.com/users/dbohdan/repos",
"events_url": "https://api.github.com/users/dbohdan/events{/privacy}",
"received_events_url": "https://api.github.com/users/dbohdan/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2019-09-01T13:44:08Z",
"user": {
"login": "zbalkan",
"id": 39981909,
"node_id": "MDQ6VXNlcjM5OTgxOTA5",
"avatar_url": "https://avatars.githubusercontent.com/u/39981909?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/zbalkan",
"html_url": "https://github.com/zbalkan",
"followers_url": "https://api.github.com/users/zbalkan/followers",
"following_url": "https://api.github.com/users/zbalkan/following{/other_user}",
"gists_url": "https://api.github.com/users/zbalkan/gists{/gist_id}",
"starred_url": "https://api.github.com/users/zbalkan/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/zbalkan/subscriptions",
"organizations_url": "https://api.github.com/users/zbalkan/orgs",
"repos_url": "https://api.github.com/users/zbalkan/repos",
"events_url": "https://api.github.com/users/zbalkan/events{/privacy}",
"received_events_url": "https://api.github.com/users/zbalkan/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2019-09-02T03:22:35Z",
"user": {
"login": "CaptainCalliope",
"id": 50292,
"node_id": "MDQ6VXNlcjUwMjky",
"avatar_url": "https://avatars.githubusercontent.com/u/50292?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/CaptainCalliope",
"html_url": "https://github.com/CaptainCalliope",
"followers_url": "https://api.github.com/users/CaptainCalliope/followers",
"following_url": "https://api.github.com/users/CaptainCalliope/following{/other_user}",
"gists_url": "https://api.github.com/users/CaptainCalliope/gists{/gist_id}",
"starred_url": "https://api.github.com/users/CaptainCalliope/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/CaptainCalliope/subscriptions",
"organizations_url": "https://api.github.com/users/CaptainCalliope/orgs",
"repos_url": "https://api.github.com/users/CaptainCalliope/repos",
"events_url": "https://api.github.com/users/CaptainCalliope/events{/privacy}",
"received_events_url": "https://api.github.com/users/CaptainCalliope/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2019-09-09T23:35:31Z",
"user": {
"login": "dan-1d",
"id": 4029020,
"node_id": "MDQ6VXNlcjQwMjkwMjA=",
"avatar_url": "https://avatars.githubusercontent.com/u/4029020?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/dan-1d",
"html_url": "https://github.com/dan-1d",
"followers_url": "https://api.github.com/users/dan-1d/followers",
"following_url": "https://api.github.com/users/dan-1d/following{/other_user}",
"gists_url": "https://api.github.com/users/dan-1d/gists{/gist_id}",
"starred_url": "https://api.github.com/users/dan-1d/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/dan-1d/subscriptions",
"organizations_url": "https://api.github.com/users/dan-1d/orgs",
"repos_url": "https://api.github.com/users/dan-1d/repos",
"events_url": "https://api.github.com/users/dan-1d/events{/privacy}",
"received_events_url": "https://api.github.com/users/dan-1d/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2019-09-11T21:49:55Z",
"user": {
"login": "miguelmota",
"id": 168240,
"node_id": "MDQ6VXNlcjE2ODI0MA==",
"avatar_url": "https://avatars.githubusercontent.com/u/168240?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/miguelmota",
"html_url": "https://github.com/miguelmota",
"followers_url": "https://api.github.com/users/miguelmota/followers",
"following_url": "https://api.github.com/users/miguelmota/following{/other_user}",
"gists_url": "https://api.github.com/users/miguelmota/gists{/gist_id}",
"starred_url": "https://api.github.com/users/miguelmota/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/miguelmota/subscriptions",
"organizations_url": "https://api.github.com/users/miguelmota/orgs",
"repos_url": "https://api.github.com/users/miguelmota/repos",
"events_url": "https://api.github.com/users/miguelmota/events{/privacy}",
"received_events_url": "https://api.github.com/users/miguelmota/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2019-09-28T17:53:47Z",
"user": {
"login": "saraheisa",
"id": 14318900,
"node_id": "MDQ6VXNlcjE0MzE4OTAw",
"avatar_url": "https://avatars.githubusercontent.com/u/14318900?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/saraheisa",
"html_url": "https://github.com/saraheisa",
"followers_url": "https://api.github.com/users/saraheisa/followers",
"following_url": "https://api.github.com/users/saraheisa/following{/other_user}",
"gists_url": "https://api.github.com/users/saraheisa/gists{/gist_id}",
"starred_url": "https://api.github.com/users/saraheisa/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/saraheisa/subscriptions",
"organizations_url": "https://api.github.com/users/saraheisa/orgs",
"repos_url": "https://api.github.com/users/saraheisa/repos",
"events_url": "https://api.github.com/users/saraheisa/events{/privacy}",
"received_events_url": "https://api.github.com/users/saraheisa/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2019-10-10T18:41:34Z",
"user": {
"login": "dtribble",
"id": 739213,
"node_id": "MDQ6VXNlcjczOTIxMw==",
"avatar_url": "https://avatars.githubusercontent.com/u/739213?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/dtribble",
"html_url": "https://github.com/dtribble",
"followers_url": "https://api.github.com/users/dtribble/followers",
"following_url": "https://api.github.com/users/dtribble/following{/other_user}",
"gists_url": "https://api.github.com/users/dtribble/gists{/gist_id}",
"starred_url": "https://api.github.com/users/dtribble/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/dtribble/subscriptions",
"organizations_url": "https://api.github.com/users/dtribble/orgs",
"repos_url": "https://api.github.com/users/dtribble/repos",
"events_url": "https://api.github.com/users/dtribble/events{/privacy}",
"received_events_url": "https://api.github.com/users/dtribble/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2019-10-27T05:15:12Z",
"user": {
"login": "bhattisatish",
"id": 116256,
"node_id": "MDQ6VXNlcjExNjI1Ng==",
"avatar_url": "https://avatars.githubusercontent.com/u/116256?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/bhattisatish",
"html_url": "https://github.com/bhattisatish",
"followers_url": "https://api.github.com/users/bhattisatish/followers",
"following_url": "https://api.github.com/users/bhattisatish/following{/other_user}",
"gists_url": "https://api.github.com/users/bhattisatish/gists{/gist_id}",
"starred_url": "https://api.github.com/users/bhattisatish/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/bhattisatish/subscriptions",
"organizations_url": "https://api.github.com/users/bhattisatish/orgs",
"repos_url": "https://api.github.com/users/bhattisatish/repos",
"events_url": "https://api.github.com/users/bhattisatish/events{/privacy}",
"received_events_url": "https://api.github.com/users/bhattisatish/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2019-11-13T22:53:16Z",
"user": {
"login": "aledomu",
"id": 31723328,
"node_id": "MDQ6VXNlcjMxNzIzMzI4",
"avatar_url": "https://avatars.githubusercontent.com/u/31723328?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/aledomu",
"html_url": "https://github.com/aledomu",
"followers_url": "https://api.github.com/users/aledomu/followers",
"following_url": "https://api.github.com/users/aledomu/following{/other_user}",
"gists_url": "https://api.github.com/users/aledomu/gists{/gist_id}",
"starred_url": "https://api.github.com/users/aledomu/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/aledomu/subscriptions",
"organizations_url": "https://api.github.com/users/aledomu/orgs",
"repos_url": "https://api.github.com/users/aledomu/repos",
"events_url": "https://api.github.com/users/aledomu/events{/privacy}",
"received_events_url": "https://api.github.com/users/aledomu/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2019-11-16T20:59:22Z",
"user": {
"login": "allison-null",
"id": 43866862,
"node_id": "MDQ6VXNlcjQzODY2ODYy",
"avatar_url": "https://avatars.githubusercontent.com/u/43866862?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/allison-null",
"html_url": "https://github.com/allison-null",
"followers_url": "https://api.github.com/users/allison-null/followers",
"following_url": "https://api.github.com/users/allison-null/following{/other_user}",
"gists_url": "https://api.github.com/users/allison-null/gists{/gist_id}",
"starred_url": "https://api.github.com/users/allison-null/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/allison-null/subscriptions",
"organizations_url": "https://api.github.com/users/allison-null/orgs",
"repos_url": "https://api.github.com/users/allison-null/repos",
"events_url": "https://api.github.com/users/allison-null/events{/privacy}",
"received_events_url": "https://api.github.com/users/allison-null/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2019-11-20T17:09:29Z",
"user": {
"login": "mihail-shishkov",
"id": 12325440,
"node_id": "MDQ6VXNlcjEyMzI1NDQw",
"avatar_url": "https://avatars.githubusercontent.com/u/12325440?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/mihail-shishkov",
"html_url": "https://github.com/mihail-shishkov",
"followers_url": "https://api.github.com/users/mihail-shishkov/followers",
"following_url": "https://api.github.com/users/mihail-shishkov/following{/other_user}",
"gists_url": "https://api.github.com/users/mihail-shishkov/gists{/gist_id}",
"starred_url": "https://api.github.com/users/mihail-shishkov/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/mihail-shishkov/subscriptions",
"organizations_url": "https://api.github.com/users/mihail-shishkov/orgs",
"repos_url": "https://api.github.com/users/mihail-shishkov/repos",
"events_url": "https://api.github.com/users/mihail-shishkov/events{/privacy}",
"received_events_url": "https://api.github.com/users/mihail-shishkov/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2019-11-22T13:45:50Z",
"user": {
"login": "layzhi",
"id": 11969148,
"node_id": "MDQ6VXNlcjExOTY5MTQ4",
"avatar_url": "https://avatars.githubusercontent.com/u/11969148?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/layzhi",
"html_url": "https://github.com/layzhi",
"followers_url": "https://api.github.com/users/layzhi/followers",
"following_url": "https://api.github.com/users/layzhi/following{/other_user}",
"gists_url": "https://api.github.com/users/layzhi/gists{/gist_id}",
"starred_url": "https://api.github.com/users/layzhi/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/layzhi/subscriptions",
"organizations_url": "https://api.github.com/users/layzhi/orgs",
"repos_url": "https://api.github.com/users/layzhi/repos",
"events_url": "https://api.github.com/users/layzhi/events{/privacy}",
"received_events_url": "https://api.github.com/users/layzhi/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2019-12-02T12:29:30Z",
"user": {
"login": "viktor-svub",
"id": 1300719,
"node_id": "MDQ6VXNlcjEzMDA3MTk=",
"avatar_url": "https://avatars.githubusercontent.com/u/1300719?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/viktor-svub",
"html_url": "https://github.com/viktor-svub",
"followers_url": "https://api.github.com/users/viktor-svub/followers",
"following_url": "https://api.github.com/users/viktor-svub/following{/other_user}",
"gists_url": "https://api.github.com/users/viktor-svub/gists{/gist_id}",
"starred_url": "https://api.github.com/users/viktor-svub/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/viktor-svub/subscriptions",
"organizations_url": "https://api.github.com/users/viktor-svub/orgs",
"repos_url": "https://api.github.com/users/viktor-svub/repos",
"events_url": "https://api.github.com/users/viktor-svub/events{/privacy}",
"received_events_url": "https://api.github.com/users/viktor-svub/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2019-12-14T14:30:01Z",
"user": {
"login": "bawerd",
"id": 625483,
"node_id": "MDQ6VXNlcjYyNTQ4Mw==",
"avatar_url": "https://avatars.githubusercontent.com/u/625483?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/bawerd",
"html_url": "https://github.com/bawerd",
"followers_url": "https://api.github.com/users/bawerd/followers",
"following_url": "https://api.github.com/users/bawerd/following{/other_user}",
"gists_url": "https://api.github.com/users/bawerd/gists{/gist_id}",
"starred_url": "https://api.github.com/users/bawerd/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/bawerd/subscriptions",
"organizations_url": "https://api.github.com/users/bawerd/orgs",
"repos_url": "https://api.github.com/users/bawerd/repos",
"events_url": "https://api.github.com/users/bawerd/events{/privacy}",
"received_events_url": "https://api.github.com/users/bawerd/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2019-12-28T14:53:19Z",
"user": {
"login": "tinkerware",
"id": 251725,
"node_id": "MDQ6VXNlcjI1MTcyNQ==",
"avatar_url": "https://avatars.githubusercontent.com/u/251725?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/tinkerware",
"html_url": "https://github.com/tinkerware",
"followers_url": "https://api.github.com/users/tinkerware/followers",
"following_url": "https://api.github.com/users/tinkerware/following{/other_user}",
"gists_url": "https://api.github.com/users/tinkerware/gists{/gist_id}",
"starred_url": "https://api.github.com/users/tinkerware/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/tinkerware/subscriptions",
"organizations_url": "https://api.github.com/users/tinkerware/orgs",
"repos_url": "https://api.github.com/users/tinkerware/repos",
"events_url": "https://api.github.com/users/tinkerware/events{/privacy}",
"received_events_url": "https://api.github.com/users/tinkerware/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2020-02-06T14:11:46Z",
"user": {
"login": "rottrevore",
"id": 60741843,
"node_id": "MDQ6VXNlcjYwNzQxODQz",
"avatar_url": "https://avatars.githubusercontent.com/u/60741843?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/rottrevore",
"html_url": "https://github.com/rottrevore",
"followers_url": "https://api.github.com/users/rottrevore/followers",
"following_url": "https://api.github.com/users/rottrevore/following{/other_user}",
"gists_url": "https://api.github.com/users/rottrevore/gists{/gist_id}",
"starred_url": "https://api.github.com/users/rottrevore/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/rottrevore/subscriptions",
"organizations_url": "https://api.github.com/users/rottrevore/orgs",
"repos_url": "https://api.github.com/users/rottrevore/repos",
"events_url": "https://api.github.com/users/rottrevore/events{/privacy}",
"received_events_url": "https://api.github.com/users/rottrevore/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2020-02-13T14:51:09Z",
"user": {
"login": "Rhymond",
"id": 3577968,
"node_id": "MDQ6VXNlcjM1Nzc5Njg=",
"avatar_url": "https://avatars.githubusercontent.com/u/3577968?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/Rhymond",
"html_url": "https://github.com/Rhymond",
"followers_url": "https://api.github.com/users/Rhymond/followers",
"following_url": "https://api.github.com/users/Rhymond/following{/other_user}",
"gists_url": "https://api.github.com/users/Rhymond/gists{/gist_id}",
"starred_url": "https://api.github.com/users/Rhymond/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/Rhymond/subscriptions",
"organizations_url": "https://api.github.com/users/Rhymond/orgs",
"repos_url": "https://api.github.com/users/Rhymond/repos",
"events_url": "https://api.github.com/users/Rhymond/events{/privacy}",
"received_events_url": "https://api.github.com/users/Rhymond/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2020-02-27T04:55:04Z",
"user": {
"login": "jhernandezb",
"id": 3452489,
"node_id": "MDQ6VXNlcjM0NTI0ODk=",
"avatar_url": "https://avatars.githubusercontent.com/u/3452489?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/jhernandezb",
"html_url": "https://github.com/jhernandezb",
"followers_url": "https://api.github.com/users/jhernandezb/followers",
"following_url": "https://api.github.com/users/jhernandezb/following{/other_user}",
"gists_url": "https://api.github.com/users/jhernandezb/gists{/gist_id}",
"starred_url": "https://api.github.com/users/jhernandezb/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/jhernandezb/subscriptions",
"organizations_url": "https://api.github.com/users/jhernandezb/orgs",
"repos_url": "https://api.github.com/users/jhernandezb/repos",
"events_url": "https://api.github.com/users/jhernandezb/events{/privacy}",
"received_events_url": "https://api.github.com/users/jhernandezb/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2020-03-08T20:32:18Z",
"user": {
"login": "AlexandruBurlacu",
"id": 16062020,
"node_id": "MDQ6VXNlcjE2MDYyMDIw",
"avatar_url": "https://avatars.githubusercontent.com/u/16062020?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/AlexandruBurlacu",
"html_url": "https://github.com/AlexandruBurlacu",
"followers_url": "https://api.github.com/users/AlexandruBurlacu/followers",
"following_url": "https://api.github.com/users/AlexandruBurlacu/following{/other_user}",
"gists_url": "https://api.github.com/users/AlexandruBurlacu/gists{/gist_id}",
"starred_url": "https://api.github.com/users/AlexandruBurlacu/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/AlexandruBurlacu/subscriptions",
"organizations_url": "https://api.github.com/users/AlexandruBurlacu/orgs",
"repos_url": "https://api.github.com/users/AlexandruBurlacu/repos",
"events_url": "https://api.github.com/users/AlexandruBurlacu/events{/privacy}",
"received_events_url": "https://api.github.com/users/AlexandruBurlacu/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2020-04-05T13:16:35Z",
"user": {
"login": "EmilEriksen",
"id": 6464323,
"node_id": "MDQ6VXNlcjY0NjQzMjM=",
"avatar_url": "https://avatars.githubusercontent.com/u/6464323?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/EmilEriksen",
"html_url": "https://github.com/EmilEriksen",
"followers_url": "https://api.github.com/users/EmilEriksen/followers",
"following_url": "https://api.github.com/users/EmilEriksen/following{/other_user}",
"gists_url": "https://api.github.com/users/EmilEriksen/gists{/gist_id}",
"starred_url": "https://api.github.com/users/EmilEriksen/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/EmilEriksen/subscriptions",
"organizations_url": "https://api.github.com/users/EmilEriksen/orgs",
"repos_url": "https://api.github.com/users/EmilEriksen/repos",
"events_url": "https://api.github.com/users/EmilEriksen/events{/privacy}",
"received_events_url": "https://api.github.com/users/EmilEriksen/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2020-04-12T01:40:14Z",
"user": {
"login": "kumavis",
"id": 1474978,
"node_id": "MDQ6VXNlcjE0NzQ5Nzg=",
"avatar_url": "https://avatars.githubusercontent.com/u/1474978?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/kumavis",
"html_url": "https://github.com/kumavis",
"followers_url": "https://api.github.com/users/kumavis/followers",
"following_url": "https://api.github.com/users/kumavis/following{/other_user}",
"gists_url": "https://api.github.com/users/kumavis/gists{/gist_id}",
"starred_url": "https://api.github.com/users/kumavis/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/kumavis/subscriptions",
"organizations_url": "https://api.github.com/users/kumavis/orgs",
"repos_url": "https://api.github.com/users/kumavis/repos",
"events_url": "https://api.github.com/users/kumavis/events{/privacy}",
"received_events_url": "https://api.github.com/users/kumavis/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2020-04-12T02:49:13Z",
"user": {
"login": "prm3theus",
"id": 51509961,
"node_id": "MDQ6VXNlcjUxNTA5OTYx",
"avatar_url": "https://avatars.githubusercontent.com/u/51509961?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/prm3theus",
"html_url": "https://github.com/prm3theus",
"followers_url": "https://api.github.com/users/prm3theus/followers",
"following_url": "https://api.github.com/users/prm3theus/following{/other_user}",
"gists_url": "https://api.github.com/users/prm3theus/gists{/gist_id}",
"starred_url": "https://api.github.com/users/prm3theus/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/prm3theus/subscriptions",
"organizations_url": "https://api.github.com/users/prm3theus/orgs",
"repos_url": "https://api.github.com/users/prm3theus/repos",
"events_url": "https://api.github.com/users/prm3theus/events{/privacy}",
"received_events_url": "https://api.github.com/users/prm3theus/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2020-04-12T03:38:50Z",
"user": {
"login": "dashed",
"id": 139499,
"node_id": "MDQ6VXNlcjEzOTQ5OQ==",
"avatar_url": "https://avatars.githubusercontent.com/u/139499?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/dashed",
"html_url": "https://github.com/dashed",
"followers_url": "https://api.github.com/users/dashed/followers",
"following_url": "https://api.github.com/users/dashed/following{/other_user}",
"gists_url": "https://api.github.com/users/dashed/gists{/gist_id}",
"starred_url": "https://api.github.com/users/dashed/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/dashed/subscriptions",
"organizations_url": "https://api.github.com/users/dashed/orgs",
"repos_url": "https://api.github.com/users/dashed/repos",
"events_url": "https://api.github.com/users/dashed/events{/privacy}",
"received_events_url": "https://api.github.com/users/dashed/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2020-04-12T14:49:17Z",
"user": {
"login": "nikitavoloboev",
"id": 6391776,
"node_id": "MDQ6VXNlcjYzOTE3NzY=",
"avatar_url": "https://avatars.githubusercontent.com/u/6391776?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/nikitavoloboev",
"html_url": "https://github.com/nikitavoloboev",
"followers_url": "https://api.github.com/users/nikitavoloboev/followers",
"following_url": "https://api.github.com/users/nikitavoloboev/following{/other_user}",
"gists_url": "https://api.github.com/users/nikitavoloboev/gists{/gist_id}",
"starred_url": "https://api.github.com/users/nikitavoloboev/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/nikitavoloboev/subscriptions",
"organizations_url": "https://api.github.com/users/nikitavoloboev/orgs",
"repos_url": "https://api.github.com/users/nikitavoloboev/repos",
"events_url": "https://api.github.com/users/nikitavoloboev/events{/privacy}",
"received_events_url": "https://api.github.com/users/nikitavoloboev/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2020-05-13T16:35:23Z",
"user": {
"login": "fabcotech",
"id": 43554404,
"node_id": "MDQ6VXNlcjQzNTU0NDA0",
"avatar_url": "https://avatars.githubusercontent.com/u/43554404?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/fabcotech",
"html_url": "https://github.com/fabcotech",
"followers_url": "https://api.github.com/users/fabcotech/followers",
"following_url": "https://api.github.com/users/fabcotech/following{/other_user}",
"gists_url": "https://api.github.com/users/fabcotech/gists{/gist_id}",
"starred_url": "https://api.github.com/users/fabcotech/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/fabcotech/subscriptions",
"organizations_url": "https://api.github.com/users/fabcotech/orgs",
"repos_url": "https://api.github.com/users/fabcotech/repos",
"events_url": "https://api.github.com/users/fabcotech/events{/privacy}",
"received_events_url": "https://api.github.com/users/fabcotech/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2020-05-15T10:26:47Z",
"user": {
"login": "nzpr",
"id": 1746367,
"node_id": "MDQ6VXNlcjE3NDYzNjc=",
"avatar_url": "https://avatars.githubusercontent.com/u/1746367?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/nzpr",
"html_url": "https://github.com/nzpr",
"followers_url": "https://api.github.com/users/nzpr/followers",
"following_url": "https://api.github.com/users/nzpr/following{/other_user}",
"gists_url": "https://api.github.com/users/nzpr/gists{/gist_id}",
"starred_url": "https://api.github.com/users/nzpr/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/nzpr/subscriptions",
"organizations_url": "https://api.github.com/users/nzpr/orgs",
"repos_url": "https://api.github.com/users/nzpr/repos",
"events_url": "https://api.github.com/users/nzpr/events{/privacy}",
"received_events_url": "https://api.github.com/users/nzpr/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2020-05-25T12:36:30Z",
"user": {
"login": "aschrijver",
"id": 5111931,
"node_id": "MDQ6VXNlcjUxMTE5MzE=",
"avatar_url": "https://avatars.githubusercontent.com/u/5111931?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/aschrijver",
"html_url": "https://github.com/aschrijver",
"followers_url": "https://api.github.com/users/aschrijver/followers",
"following_url": "https://api.github.com/users/aschrijver/following{/other_user}",
"gists_url": "https://api.github.com/users/aschrijver/gists{/gist_id}",
"starred_url": "https://api.github.com/users/aschrijver/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/aschrijver/subscriptions",
"organizations_url": "https://api.github.com/users/aschrijver/orgs",
"repos_url": "https://api.github.com/users/aschrijver/repos",
"events_url": "https://api.github.com/users/aschrijver/events{/privacy}",
"received_events_url": "https://api.github.com/users/aschrijver/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2020-05-28T07:49:39Z",
"user": {
"login": "fuzz-security",
"id": 65808801,
"node_id": "MDQ6VXNlcjY1ODA4ODAx",
"avatar_url": "https://avatars.githubusercontent.com/u/65808801?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/fuzz-security",
"html_url": "https://github.com/fuzz-security",
"followers_url": "https://api.github.com/users/fuzz-security/followers",
"following_url": "https://api.github.com/users/fuzz-security/following{/other_user}",
"gists_url": "https://api.github.com/users/fuzz-security/gists{/gist_id}",
"starred_url": "https://api.github.com/users/fuzz-security/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/fuzz-security/subscriptions",
"organizations_url": "https://api.github.com/users/fuzz-security/orgs",
"repos_url": "https://api.github.com/users/fuzz-security/repos",
"events_url": "https://api.github.com/users/fuzz-security/events{/privacy}",
"received_events_url": "https://api.github.com/users/fuzz-security/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2020-06-29T11:26:54Z",
"user": {
"login": "zarkone",
"id": 1899654,
"node_id": "MDQ6VXNlcjE4OTk2NTQ=",
"avatar_url": "https://avatars.githubusercontent.com/u/1899654?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/zarkone",
"html_url": "https://github.com/zarkone",
"followers_url": "https://api.github.com/users/zarkone/followers",
"following_url": "https://api.github.com/users/zarkone/following{/other_user}",
"gists_url": "https://api.github.com/users/zarkone/gists{/gist_id}",
"starred_url": "https://api.github.com/users/zarkone/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/zarkone/subscriptions",
"organizations_url": "https://api.github.com/users/zarkone/orgs",
"repos_url": "https://api.github.com/users/zarkone/repos",
"events_url": "https://api.github.com/users/zarkone/events{/privacy}",
"received_events_url": "https://api.github.com/users/zarkone/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2020-07-12T04:27:49Z",
"user": {
"login": "MathieuTricoire",
"id": 255766,
"node_id": "MDQ6VXNlcjI1NTc2Ng==",
"avatar_url": "https://avatars.githubusercontent.com/u/255766?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/MathieuTricoire",
"html_url": "https://github.com/MathieuTricoire",
"followers_url": "https://api.github.com/users/MathieuTricoire/followers",
"following_url": "https://api.github.com/users/MathieuTricoire/following{/other_user}",
"gists_url": "https://api.github.com/users/MathieuTricoire/gists{/gist_id}",
"starred_url": "https://api.github.com/users/MathieuTricoire/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/MathieuTricoire/subscriptions",
"organizations_url": "https://api.github.com/users/MathieuTricoire/orgs",
"repos_url": "https://api.github.com/users/MathieuTricoire/repos",
"events_url": "https://api.github.com/users/MathieuTricoire/events{/privacy}",
"received_events_url": "https://api.github.com/users/MathieuTricoire/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2020-07-16T18:15:23Z",
"user": {
"login": "denisdefreyne",
"id": 6269,
"node_id": "MDQ6VXNlcjYyNjk=",
"avatar_url": "https://avatars.githubusercontent.com/u/6269?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/denisdefreyne",
"html_url": "https://github.com/denisdefreyne",
"followers_url": "https://api.github.com/users/denisdefreyne/followers",
"following_url": "https://api.github.com/users/denisdefreyne/following{/other_user}",
"gists_url": "https://api.github.com/users/denisdefreyne/gists{/gist_id}",
"starred_url": "https://api.github.com/users/denisdefreyne/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/denisdefreyne/subscriptions",
"organizations_url": "https://api.github.com/users/denisdefreyne/orgs",
"repos_url": "https://api.github.com/users/denisdefreyne/repos",
"events_url": "https://api.github.com/users/denisdefreyne/events{/privacy}",
"received_events_url": "https://api.github.com/users/denisdefreyne/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2020-07-24T10:27:21Z",
"user": {
"login": "mconcat",
"id": 67312570,
"node_id": "MDQ6VXNlcjY3MzEyNTcw",
"avatar_url": "https://avatars.githubusercontent.com/u/67312570?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/mconcat",
"html_url": "https://github.com/mconcat",
"followers_url": "https://api.github.com/users/mconcat/followers",
"following_url": "https://api.github.com/users/mconcat/following{/other_user}",
"gists_url": "https://api.github.com/users/mconcat/gists{/gist_id}",
"starred_url": "https://api.github.com/users/mconcat/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/mconcat/subscriptions",
"organizations_url": "https://api.github.com/users/mconcat/orgs",
"repos_url": "https://api.github.com/users/mconcat/repos",
"events_url": "https://api.github.com/users/mconcat/events{/privacy}",
"received_events_url": "https://api.github.com/users/mconcat/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2020-07-28T14:09:53Z",
"user": {
"login": "theodesp",
"id": 328805,
"node_id": "MDQ6VXNlcjMyODgwNQ==",
"avatar_url": "https://avatars.githubusercontent.com/u/328805?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/theodesp",
"html_url": "https://github.com/theodesp",
"followers_url": "https://api.github.com/users/theodesp/followers",
"following_url": "https://api.github.com/users/theodesp/following{/other_user}",
"gists_url": "https://api.github.com/users/theodesp/gists{/gist_id}",
"starred_url": "https://api.github.com/users/theodesp/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/theodesp/subscriptions",
"organizations_url": "https://api.github.com/users/theodesp/orgs",
"repos_url": "https://api.github.com/users/theodesp/repos",
"events_url": "https://api.github.com/users/theodesp/events{/privacy}",
"received_events_url": "https://api.github.com/users/theodesp/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2020-08-03T03:03:24Z",
"user": {
"login": "YswStudio",
"id": 13163833,
"node_id": "MDQ6VXNlcjEzMTYzODMz",
"avatar_url": "https://avatars.githubusercontent.com/u/13163833?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/YswStudio",
"html_url": "https://github.com/YswStudio",
"followers_url": "https://api.github.com/users/YswStudio/followers",
"following_url": "https://api.github.com/users/YswStudio/following{/other_user}",
"gists_url": "https://api.github.com/users/YswStudio/gists{/gist_id}",
"starred_url": "https://api.github.com/users/YswStudio/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/YswStudio/subscriptions",
"organizations_url": "https://api.github.com/users/YswStudio/orgs",
"repos_url": "https://api.github.com/users/YswStudio/repos",
"events_url": "https://api.github.com/users/YswStudio/events{/privacy}",
"received_events_url": "https://api.github.com/users/YswStudio/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2020-08-13T04:24:25Z",
"user": {
"login": "warner",
"id": 27146,
"node_id": "MDQ6VXNlcjI3MTQ2",
"avatar_url": "https://avatars.githubusercontent.com/u/27146?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/warner",
"html_url": "https://github.com/warner",
"followers_url": "https://api.github.com/users/warner/followers",
"following_url": "https://api.github.com/users/warner/following{/other_user}",
"gists_url": "https://api.github.com/users/warner/gists{/gist_id}",
"starred_url": "https://api.github.com/users/warner/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/warner/subscriptions",
"organizations_url": "https://api.github.com/users/warner/orgs",
"repos_url": "https://api.github.com/users/warner/repos",
"events_url": "https://api.github.com/users/warner/events{/privacy}",
"received_events_url": "https://api.github.com/users/warner/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2020-08-13T05:25:10Z",
"user": {
"login": "mahmoud",
"id": 130193,
"node_id": "MDQ6VXNlcjEzMDE5Mw==",
"avatar_url": "https://avatars.githubusercontent.com/u/130193?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/mahmoud",
"html_url": "https://github.com/mahmoud",
"followers_url": "https://api.github.com/users/mahmoud/followers",
"following_url": "https://api.github.com/users/mahmoud/following{/other_user}",
"gists_url": "https://api.github.com/users/mahmoud/gists{/gist_id}",
"starred_url": "https://api.github.com/users/mahmoud/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/mahmoud/subscriptions",
"organizations_url": "https://api.github.com/users/mahmoud/orgs",
"repos_url": "https://api.github.com/users/mahmoud/repos",
"events_url": "https://api.github.com/users/mahmoud/events{/privacy}",
"received_events_url": "https://api.github.com/users/mahmoud/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2020-08-14T00:17:34Z",
"user": {
"login": "danfinlay",
"id": 542863,
"node_id": "MDQ6VXNlcjU0Mjg2Mw==",
"avatar_url": "https://avatars.githubusercontent.com/u/542863?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/danfinlay",
"html_url": "https://github.com/danfinlay",
"followers_url": "https://api.github.com/users/danfinlay/followers",
"following_url": "https://api.github.com/users/danfinlay/following{/other_user}",
"gists_url": "https://api.github.com/users/danfinlay/gists{/gist_id}",
"starred_url": "https://api.github.com/users/danfinlay/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/danfinlay/subscriptions",
"organizations_url": "https://api.github.com/users/danfinlay/orgs",
"repos_url": "https://api.github.com/users/danfinlay/repos",
"events_url": "https://api.github.com/users/danfinlay/events{/privacy}",
"received_events_url": "https://api.github.com/users/danfinlay/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2020-09-26T15:19:43Z",
"user": {
"login": "bitcard",
"id": 9978206,
"node_id": "MDQ6VXNlcjk5NzgyMDY=",
"avatar_url": "https://avatars.githubusercontent.com/u/9978206?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/bitcard",
"html_url": "https://github.com/bitcard",
"followers_url": "https://api.github.com/users/bitcard/followers",
"following_url": "https://api.github.com/users/bitcard/following{/other_user}",
"gists_url": "https://api.github.com/users/bitcard/gists{/gist_id}",
"starred_url": "https://api.github.com/users/bitcard/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/bitcard/subscriptions",
"organizations_url": "https://api.github.com/users/bitcard/orgs",
"repos_url": "https://api.github.com/users/bitcard/repos",
"events_url": "https://api.github.com/users/bitcard/events{/privacy}",
"received_events_url": "https://api.github.com/users/bitcard/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2020-10-01T12:47:41Z",
"user": {
"login": "jedevc",
"id": 7352848,
"node_id": "MDQ6VXNlcjczNTI4NDg=",
"avatar_url": "https://avatars.githubusercontent.com/u/7352848?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/jedevc",
"html_url": "https://github.com/jedevc",
"followers_url": "https://api.github.com/users/jedevc/followers",
"following_url": "https://api.github.com/users/jedevc/following{/other_user}",
"gists_url": "https://api.github.com/users/jedevc/gists{/gist_id}",
"starred_url": "https://api.github.com/users/jedevc/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/jedevc/subscriptions",
"organizations_url": "https://api.github.com/users/jedevc/orgs",
"repos_url": "https://api.github.com/users/jedevc/repos",
"events_url": "https://api.github.com/users/jedevc/events{/privacy}",
"received_events_url": "https://api.github.com/users/jedevc/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2020-10-10T17:22:16Z",
"user": {
"login": "bmiller59",
"id": 4733190,
"node_id": "MDQ6VXNlcjQ3MzMxOTA=",
"avatar_url": "https://avatars.githubusercontent.com/u/4733190?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/bmiller59",
"html_url": "https://github.com/bmiller59",
"followers_url": "https://api.github.com/users/bmiller59/followers",
"following_url": "https://api.github.com/users/bmiller59/following{/other_user}",
"gists_url": "https://api.github.com/users/bmiller59/gists{/gist_id}",
"starred_url": "https://api.github.com/users/bmiller59/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/bmiller59/subscriptions",
"organizations_url": "https://api.github.com/users/bmiller59/orgs",
"repos_url": "https://api.github.com/users/bmiller59/repos",
"events_url": "https://api.github.com/users/bmiller59/events{/privacy}",
"received_events_url": "https://api.github.com/users/bmiller59/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2020-10-22T21:01:10Z",
"user": {
"login": "brock-ff",
"id": 47756899,
"node_id": "MDQ6VXNlcjQ3NzU2ODk5",
"avatar_url": "https://avatars.githubusercontent.com/u/47756899?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/brock-ff",
"html_url": "https://github.com/brock-ff",
"followers_url": "https://api.github.com/users/brock-ff/followers",
"following_url": "https://api.github.com/users/brock-ff/following{/other_user}",
"gists_url": "https://api.github.com/users/brock-ff/gists{/gist_id}",
"starred_url": "https://api.github.com/users/brock-ff/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/brock-ff/subscriptions",
"organizations_url": "https://api.github.com/users/brock-ff/orgs",
"repos_url": "https://api.github.com/users/brock-ff/repos",
"events_url": "https://api.github.com/users/brock-ff/events{/privacy}",
"received_events_url": "https://api.github.com/users/brock-ff/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2020-10-27T23:26:01Z",
"user": {
"login": "cadorn",
"id": 18679,
"node_id": "MDQ6VXNlcjE4Njc5",
"avatar_url": "https://avatars.githubusercontent.com/u/18679?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/cadorn",
"html_url": "https://github.com/cadorn",
"followers_url": "https://api.github.com/users/cadorn/followers",
"following_url": "https://api.github.com/users/cadorn/following{/other_user}",
"gists_url": "https://api.github.com/users/cadorn/gists{/gist_id}",
"starred_url": "https://api.github.com/users/cadorn/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/cadorn/subscriptions",
"organizations_url": "https://api.github.com/users/cadorn/orgs",
"repos_url": "https://api.github.com/users/cadorn/repos",
"events_url": "https://api.github.com/users/cadorn/events{/privacy}",
"received_events_url": "https://api.github.com/users/cadorn/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2020-11-07T19:26:05Z",
"user": {
"login": "elgertam",
"id": 1118015,
"node_id": "MDQ6VXNlcjExMTgwMTU=",
"avatar_url": "https://avatars.githubusercontent.com/u/1118015?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/elgertam",
"html_url": "https://github.com/elgertam",
"followers_url": "https://api.github.com/users/elgertam/followers",
"following_url": "https://api.github.com/users/elgertam/following{/other_user}",
"gists_url": "https://api.github.com/users/elgertam/gists{/gist_id}",
"starred_url": "https://api.github.com/users/elgertam/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/elgertam/subscriptions",
"organizations_url": "https://api.github.com/users/elgertam/orgs",
"repos_url": "https://api.github.com/users/elgertam/repos",
"events_url": "https://api.github.com/users/elgertam/events{/privacy}",
"received_events_url": "https://api.github.com/users/elgertam/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2020-11-20T12:47:34Z",
"user": {
"login": "igor-prusov",
"id": 5375793,
"node_id": "MDQ6VXNlcjUzNzU3OTM=",
"avatar_url": "https://avatars.githubusercontent.com/u/5375793?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/igor-prusov",
"html_url": "https://github.com/igor-prusov",
"followers_url": "https://api.github.com/users/igor-prusov/followers",
"following_url": "https://api.github.com/users/igor-prusov/following{/other_user}",
"gists_url": "https://api.github.com/users/igor-prusov/gists{/gist_id}",
"starred_url": "https://api.github.com/users/igor-prusov/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/igor-prusov/subscriptions",
"organizations_url": "https://api.github.com/users/igor-prusov/orgs",
"repos_url": "https://api.github.com/users/igor-prusov/repos",
"events_url": "https://api.github.com/users/igor-prusov/events{/privacy}",
"received_events_url": "https://api.github.com/users/igor-prusov/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2020-12-02T04:01:22Z",
"user": {
"login": "bent-rasmussen",
"id": 2722728,
"node_id": "MDQ6VXNlcjI3MjI3Mjg=",
"avatar_url": "https://avatars.githubusercontent.com/u/2722728?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/bent-rasmussen",
"html_url": "https://github.com/bent-rasmussen",
"followers_url": "https://api.github.com/users/bent-rasmussen/followers",
"following_url": "https://api.github.com/users/bent-rasmussen/following{/other_user}",
"gists_url": "https://api.github.com/users/bent-rasmussen/gists{/gist_id}",
"starred_url": "https://api.github.com/users/bent-rasmussen/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/bent-rasmussen/subscriptions",
"organizations_url": "https://api.github.com/users/bent-rasmussen/orgs",
"repos_url": "https://api.github.com/users/bent-rasmussen/repos",
"events_url": "https://api.github.com/users/bent-rasmussen/events{/privacy}",
"received_events_url": "https://api.github.com/users/bent-rasmussen/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2020-12-09T02:09:05Z",
"user": {
"login": "adamrosey",
"id": 4750870,
"node_id": "MDQ6VXNlcjQ3NTA4NzA=",
"avatar_url": "https://avatars.githubusercontent.com/u/4750870?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/adamrosey",
"html_url": "https://github.com/adamrosey",
"followers_url": "https://api.github.com/users/adamrosey/followers",
"following_url": "https://api.github.com/users/adamrosey/following{/other_user}",
"gists_url": "https://api.github.com/users/adamrosey/gists{/gist_id}",
"starred_url": "https://api.github.com/users/adamrosey/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/adamrosey/subscriptions",
"organizations_url": "https://api.github.com/users/adamrosey/orgs",
"repos_url": "https://api.github.com/users/adamrosey/repos",
"events_url": "https://api.github.com/users/adamrosey/events{/privacy}",
"received_events_url": "https://api.github.com/users/adamrosey/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2020-12-10T11:56:04Z",
"user": {
"login": "anselbrandt",
"id": 6134165,
"node_id": "MDQ6VXNlcjYxMzQxNjU=",
"avatar_url": "https://avatars.githubusercontent.com/u/6134165?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/anselbrandt",
"html_url": "https://github.com/anselbrandt",
"followers_url": "https://api.github.com/users/anselbrandt/followers",
"following_url": "https://api.github.com/users/anselbrandt/following{/other_user}",
"gists_url": "https://api.github.com/users/anselbrandt/gists{/gist_id}",
"starred_url": "https://api.github.com/users/anselbrandt/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/anselbrandt/subscriptions",
"organizations_url": "https://api.github.com/users/anselbrandt/orgs",
"repos_url": "https://api.github.com/users/anselbrandt/repos",
"events_url": "https://api.github.com/users/anselbrandt/events{/privacy}",
"received_events_url": "https://api.github.com/users/anselbrandt/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2020-12-16T14:30:02Z",
"user": {
"login": "mucholove",
"id": 1546062,
"node_id": "MDQ6VXNlcjE1NDYwNjI=",
"avatar_url": "https://avatars.githubusercontent.com/u/1546062?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/mucholove",
"html_url": "https://github.com/mucholove",
"followers_url": "https://api.github.com/users/mucholove/followers",
"following_url": "https://api.github.com/users/mucholove/following{/other_user}",
"gists_url": "https://api.github.com/users/mucholove/gists{/gist_id}",
"starred_url": "https://api.github.com/users/mucholove/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/mucholove/subscriptions",
"organizations_url": "https://api.github.com/users/mucholove/orgs",
"repos_url": "https://api.github.com/users/mucholove/repos",
"events_url": "https://api.github.com/users/mucholove/events{/privacy}",
"received_events_url": "https://api.github.com/users/mucholove/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2020-12-22T10:16:57Z",
"user": {
"login": "shafqatevo",
"id": 5596095,
"node_id": "MDQ6VXNlcjU1OTYwOTU=",
"avatar_url": "https://avatars.githubusercontent.com/u/5596095?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/shafqatevo",
"html_url": "https://github.com/shafqatevo",
"followers_url": "https://api.github.com/users/shafqatevo/followers",
"following_url": "https://api.github.com/users/shafqatevo/following{/other_user}",
"gists_url": "https://api.github.com/users/shafqatevo/gists{/gist_id}",
"starred_url": "https://api.github.com/users/shafqatevo/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/shafqatevo/subscriptions",
"organizations_url": "https://api.github.com/users/shafqatevo/orgs",
"repos_url": "https://api.github.com/users/shafqatevo/repos",
"events_url": "https://api.github.com/users/shafqatevo/events{/privacy}",
"received_events_url": "https://api.github.com/users/shafqatevo/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2020-12-23T05:28:05Z",
"user": {
"login": "stormwatch",
"id": 824211,
"node_id": "MDQ6VXNlcjgyNDIxMQ==",
"avatar_url": "https://avatars.githubusercontent.com/u/824211?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/stormwatch",
"html_url": "https://github.com/stormwatch",
"followers_url": "https://api.github.com/users/stormwatch/followers",
"following_url": "https://api.github.com/users/stormwatch/following{/other_user}",
"gists_url": "https://api.github.com/users/stormwatch/gists{/gist_id}",
"starred_url": "https://api.github.com/users/stormwatch/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/stormwatch/subscriptions",
"organizations_url": "https://api.github.com/users/stormwatch/orgs",
"repos_url": "https://api.github.com/users/stormwatch/repos",
"events_url": "https://api.github.com/users/stormwatch/events{/privacy}",
"received_events_url": "https://api.github.com/users/stormwatch/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2021-01-10T21:37:01Z",
"user": {
"login": "tilgovi",
"id": 20818,
"node_id": "MDQ6VXNlcjIwODE4",
"avatar_url": "https://avatars.githubusercontent.com/u/20818?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/tilgovi",
"html_url": "https://github.com/tilgovi",
"followers_url": "https://api.github.com/users/tilgovi/followers",
"following_url": "https://api.github.com/users/tilgovi/following{/other_user}",
"gists_url": "https://api.github.com/users/tilgovi/gists{/gist_id}",
"starred_url": "https://api.github.com/users/tilgovi/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/tilgovi/subscriptions",
"organizations_url": "https://api.github.com/users/tilgovi/orgs",
"repos_url": "https://api.github.com/users/tilgovi/repos",
"events_url": "https://api.github.com/users/tilgovi/events{/privacy}",
"received_events_url": "https://api.github.com/users/tilgovi/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2021-01-28T16:43:07Z",
"user": {
"login": "tgrecojs",
"id": 6646552,
"node_id": "MDQ6VXNlcjY2NDY1NTI=",
"avatar_url": "https://avatars.githubusercontent.com/u/6646552?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/tgrecojs",
"html_url": "https://github.com/tgrecojs",
"followers_url": "https://api.github.com/users/tgrecojs/followers",
"following_url": "https://api.github.com/users/tgrecojs/following{/other_user}",
"gists_url": "https://api.github.com/users/tgrecojs/gists{/gist_id}",
"starred_url": "https://api.github.com/users/tgrecojs/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/tgrecojs/subscriptions",
"organizations_url": "https://api.github.com/users/tgrecojs/orgs",
"repos_url": "https://api.github.com/users/tgrecojs/repos",
"events_url": "https://api.github.com/users/tgrecojs/events{/privacy}",
"received_events_url": "https://api.github.com/users/tgrecojs/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2021-01-31T17:34:39Z",
"user": {
"login": "DianaNites",
"id": 5275194,
"node_id": "MDQ6VXNlcjUyNzUxOTQ=",
"avatar_url": "https://avatars.githubusercontent.com/u/5275194?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/DianaNites",
"html_url": "https://github.com/DianaNites",
"followers_url": "https://api.github.com/users/DianaNites/followers",
"following_url": "https://api.github.com/users/DianaNites/following{/other_user}",
"gists_url": "https://api.github.com/users/DianaNites/gists{/gist_id}",
"starred_url": "https://api.github.com/users/DianaNites/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/DianaNites/subscriptions",
"organizations_url": "https://api.github.com/users/DianaNites/orgs",
"repos_url": "https://api.github.com/users/DianaNites/repos",
"events_url": "https://api.github.com/users/DianaNites/events{/privacy}",
"received_events_url": "https://api.github.com/users/DianaNites/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2021-02-16T20:12:32Z",
"user": {
"login": "cmdcolin",
"id": 6511937,
"node_id": "MDQ6VXNlcjY1MTE5Mzc=",
"avatar_url": "https://avatars.githubusercontent.com/u/6511937?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/cmdcolin",
"html_url": "https://github.com/cmdcolin",
"followers_url": "https://api.github.com/users/cmdcolin/followers",
"following_url": "https://api.github.com/users/cmdcolin/following{/other_user}",
"gists_url": "https://api.github.com/users/cmdcolin/gists{/gist_id}",
"starred_url": "https://api.github.com/users/cmdcolin/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/cmdcolin/subscriptions",
"organizations_url": "https://api.github.com/users/cmdcolin/orgs",
"repos_url": "https://api.github.com/users/cmdcolin/repos",
"events_url": "https://api.github.com/users/cmdcolin/events{/privacy}",
"received_events_url": "https://api.github.com/users/cmdcolin/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2021-03-10T19:45:24Z",
"user": {
"login": "Zer0CoOLoL",
"id": 63714913,
"node_id": "MDQ6VXNlcjYzNzE0OTEz",
"avatar_url": "https://avatars.githubusercontent.com/u/63714913?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/Zer0CoOLoL",
"html_url": "https://github.com/Zer0CoOLoL",
"followers_url": "https://api.github.com/users/Zer0CoOLoL/followers",
"following_url": "https://api.github.com/users/Zer0CoOLoL/following{/other_user}",
"gists_url": "https://api.github.com/users/Zer0CoOLoL/gists{/gist_id}",
"starred_url": "https://api.github.com/users/Zer0CoOLoL/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/Zer0CoOLoL/subscriptions",
"organizations_url": "https://api.github.com/users/Zer0CoOLoL/orgs",
"repos_url": "https://api.github.com/users/Zer0CoOLoL/repos",
"events_url": "https://api.github.com/users/Zer0CoOLoL/events{/privacy}",
"received_events_url": "https://api.github.com/users/Zer0CoOLoL/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2021-03-29T18:56:52Z",
"user": {
"login": "ch1c0t",
"id": 858893,
"node_id": "MDQ6VXNlcjg1ODg5Mw==",
"avatar_url": "https://avatars.githubusercontent.com/u/858893?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/ch1c0t",
"html_url": "https://github.com/ch1c0t",
"followers_url": "https://api.github.com/users/ch1c0t/followers",
"following_url": "https://api.github.com/users/ch1c0t/following{/other_user}",
"gists_url": "https://api.github.com/users/ch1c0t/gists{/gist_id}",
"starred_url": "https://api.github.com/users/ch1c0t/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/ch1c0t/subscriptions",
"organizations_url": "https://api.github.com/users/ch1c0t/orgs",
"repos_url": "https://api.github.com/users/ch1c0t/repos",
"events_url": "https://api.github.com/users/ch1c0t/events{/privacy}",
"received_events_url": "https://api.github.com/users/ch1c0t/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2021-04-07T22:10:28Z",
"user": {
"login": "expede",
"id": 1052016,
"node_id": "MDQ6VXNlcjEwNTIwMTY=",
"avatar_url": "https://avatars.githubusercontent.com/u/1052016?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/expede",
"html_url": "https://github.com/expede",
"followers_url": "https://api.github.com/users/expede/followers",
"following_url": "https://api.github.com/users/expede/following{/other_user}",
"gists_url": "https://api.github.com/users/expede/gists{/gist_id}",
"starred_url": "https://api.github.com/users/expede/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/expede/subscriptions",
"organizations_url": "https://api.github.com/users/expede/orgs",
"repos_url": "https://api.github.com/users/expede/repos",
"events_url": "https://api.github.com/users/expede/events{/privacy}",
"received_events_url": "https://api.github.com/users/expede/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2021-04-07T22:11:06Z",
"user": {
"login": "diasbruno",
"id": 362368,
"node_id": "MDQ6VXNlcjM2MjM2OA==",
"avatar_url": "https://avatars.githubusercontent.com/u/362368?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/diasbruno",
"html_url": "https://github.com/diasbruno",
"followers_url": "https://api.github.com/users/diasbruno/followers",
"following_url": "https://api.github.com/users/diasbruno/following{/other_user}",
"gists_url": "https://api.github.com/users/diasbruno/gists{/gist_id}",
"starred_url": "https://api.github.com/users/diasbruno/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/diasbruno/subscriptions",
"organizations_url": "https://api.github.com/users/diasbruno/orgs",
"repos_url": "https://api.github.com/users/diasbruno/repos",
"events_url": "https://api.github.com/users/diasbruno/events{/privacy}",
"received_events_url": "https://api.github.com/users/diasbruno/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2021-04-12T14:32:28Z",
"user": {
"login": "cyborgshead",
"id": 1690657,
"node_id": "MDQ6VXNlcjE2OTA2NTc=",
"avatar_url": "https://avatars.githubusercontent.com/u/1690657?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/cyborgshead",
"html_url": "https://github.com/cyborgshead",
"followers_url": "https://api.github.com/users/cyborgshead/followers",
"following_url": "https://api.github.com/users/cyborgshead/following{/other_user}",
"gists_url": "https://api.github.com/users/cyborgshead/gists{/gist_id}",
"starred_url": "https://api.github.com/users/cyborgshead/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/cyborgshead/subscriptions",
"organizations_url": "https://api.github.com/users/cyborgshead/orgs",
"repos_url": "https://api.github.com/users/cyborgshead/repos",
"events_url": "https://api.github.com/users/cyborgshead/events{/privacy}",
"received_events_url": "https://api.github.com/users/cyborgshead/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2021-04-26T21:15:47Z",
"user": {
"login": "7h3kk1d",
"id": 995429,
"node_id": "MDQ6VXNlcjk5NTQyOQ==",
"avatar_url": "https://avatars.githubusercontent.com/u/995429?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/7h3kk1d",
"html_url": "https://github.com/7h3kk1d",
"followers_url": "https://api.github.com/users/7h3kk1d/followers",
"following_url": "https://api.github.com/users/7h3kk1d/following{/other_user}",
"gists_url": "https://api.github.com/users/7h3kk1d/gists{/gist_id}",
"starred_url": "https://api.github.com/users/7h3kk1d/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/7h3kk1d/subscriptions",
"organizations_url": "https://api.github.com/users/7h3kk1d/orgs",
"repos_url": "https://api.github.com/users/7h3kk1d/repos",
"events_url": "https://api.github.com/users/7h3kk1d/events{/privacy}",
"received_events_url": "https://api.github.com/users/7h3kk1d/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2021-04-28T15:15:10Z",
"user": {
"login": "Qdigital",
"id": 48498797,
"node_id": "MDQ6VXNlcjQ4NDk4Nzk3",
"avatar_url": "https://avatars.githubusercontent.com/u/48498797?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/Qdigital",
"html_url": "https://github.com/Qdigital",
"followers_url": "https://api.github.com/users/Qdigital/followers",
"following_url": "https://api.github.com/users/Qdigital/following{/other_user}",
"gists_url": "https://api.github.com/users/Qdigital/gists{/gist_id}",
"starred_url": "https://api.github.com/users/Qdigital/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/Qdigital/subscriptions",
"organizations_url": "https://api.github.com/users/Qdigital/orgs",
"repos_url": "https://api.github.com/users/Qdigital/repos",
"events_url": "https://api.github.com/users/Qdigital/events{/privacy}",
"received_events_url": "https://api.github.com/users/Qdigital/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2021-05-07T22:26:47Z",
"user": {
"login": "zenhack",
"id": 883774,
"node_id": "MDQ6VXNlcjg4Mzc3NA==",
"avatar_url": "https://avatars.githubusercontent.com/u/883774?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/zenhack",
"html_url": "https://github.com/zenhack",
"followers_url": "https://api.github.com/users/zenhack/followers",
"following_url": "https://api.github.com/users/zenhack/following{/other_user}",
"gists_url": "https://api.github.com/users/zenhack/gists{/gist_id}",
"starred_url": "https://api.github.com/users/zenhack/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/zenhack/subscriptions",
"organizations_url": "https://api.github.com/users/zenhack/orgs",
"repos_url": "https://api.github.com/users/zenhack/repos",
"events_url": "https://api.github.com/users/zenhack/events{/privacy}",
"received_events_url": "https://api.github.com/users/zenhack/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2021-05-09T03:06:02Z",
"user": {
"login": "jcmrva",
"id": 20140997,
"node_id": "MDQ6VXNlcjIwMTQwOTk3",
"avatar_url": "https://avatars.githubusercontent.com/u/20140997?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/jcmrva",
"html_url": "https://github.com/jcmrva",
"followers_url": "https://api.github.com/users/jcmrva/followers",
"following_url": "https://api.github.com/users/jcmrva/following{/other_user}",
"gists_url": "https://api.github.com/users/jcmrva/gists{/gist_id}",
"starred_url": "https://api.github.com/users/jcmrva/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/jcmrva/subscriptions",
"organizations_url": "https://api.github.com/users/jcmrva/orgs",
"repos_url": "https://api.github.com/users/jcmrva/repos",
"events_url": "https://api.github.com/users/jcmrva/events{/privacy}",
"received_events_url": "https://api.github.com/users/jcmrva/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2021-05-21T00:58:16Z",
"user": {
"login": "psytron",
"id": 7834453,
"node_id": "MDQ6VXNlcjc4MzQ0NTM=",
"avatar_url": "https://avatars.githubusercontent.com/u/7834453?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/psytron",
"html_url": "https://github.com/psytron",
"followers_url": "https://api.github.com/users/psytron/followers",
"following_url": "https://api.github.com/users/psytron/following{/other_user}",
"gists_url": "https://api.github.com/users/psytron/gists{/gist_id}",
"starred_url": "https://api.github.com/users/psytron/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/psytron/subscriptions",
"organizations_url": "https://api.github.com/users/psytron/orgs",
"repos_url": "https://api.github.com/users/psytron/repos",
"events_url": "https://api.github.com/users/psytron/events{/privacy}",
"received_events_url": "https://api.github.com/users/psytron/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2021-05-26T01:28:55Z",
"user": {
"login": "tomisme",
"id": 7482194,
"node_id": "MDQ6VXNlcjc0ODIxOTQ=",
"avatar_url": "https://avatars.githubusercontent.com/u/7482194?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/tomisme",
"html_url": "https://github.com/tomisme",
"followers_url": "https://api.github.com/users/tomisme/followers",
"following_url": "https://api.github.com/users/tomisme/following{/other_user}",
"gists_url": "https://api.github.com/users/tomisme/gists{/gist_id}",
"starred_url": "https://api.github.com/users/tomisme/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/tomisme/subscriptions",
"organizations_url": "https://api.github.com/users/tomisme/orgs",
"repos_url": "https://api.github.com/users/tomisme/repos",
"events_url": "https://api.github.com/users/tomisme/events{/privacy}",
"received_events_url": "https://api.github.com/users/tomisme/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2021-06-27T07:08:44Z",
"user": {
"login": "mnsc",
"id": 5869639,
"node_id": "MDQ6VXNlcjU4Njk2Mzk=",
"avatar_url": "https://avatars.githubusercontent.com/u/5869639?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/mnsc",
"html_url": "https://github.com/mnsc",
"followers_url": "https://api.github.com/users/mnsc/followers",
"following_url": "https://api.github.com/users/mnsc/following{/other_user}",
"gists_url": "https://api.github.com/users/mnsc/gists{/gist_id}",
"starred_url": "https://api.github.com/users/mnsc/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/mnsc/subscriptions",
"organizations_url": "https://api.github.com/users/mnsc/orgs",
"repos_url": "https://api.github.com/users/mnsc/repos",
"events_url": "https://api.github.com/users/mnsc/events{/privacy}",
"received_events_url": "https://api.github.com/users/mnsc/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2021-06-27T09:18:36Z",
"user": {
"login": "usmanakram232",
"id": 102169,
"node_id": "MDQ6VXNlcjEwMjE2OQ==",
"avatar_url": "https://avatars.githubusercontent.com/u/102169?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/usmanakram232",
"html_url": "https://github.com/usmanakram232",
"followers_url": "https://api.github.com/users/usmanakram232/followers",
"following_url": "https://api.github.com/users/usmanakram232/following{/other_user}",
"gists_url": "https://api.github.com/users/usmanakram232/gists{/gist_id}",
"starred_url": "https://api.github.com/users/usmanakram232/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/usmanakram232/subscriptions",
"organizations_url": "https://api.github.com/users/usmanakram232/orgs",
"repos_url": "https://api.github.com/users/usmanakram232/repos",
"events_url": "https://api.github.com/users/usmanakram232/events{/privacy}",
"received_events_url": "https://api.github.com/users/usmanakram232/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2021-07-07T06:37:54Z",
"user": {
"login": "zeroXbrock",
"id": 2791467,
"node_id": "MDQ6VXNlcjI3OTE0Njc=",
"avatar_url": "https://avatars.githubusercontent.com/u/2791467?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/zeroXbrock",
"html_url": "https://github.com/zeroXbrock",
"followers_url": "https://api.github.com/users/zeroXbrock/followers",
"following_url": "https://api.github.com/users/zeroXbrock/following{/other_user}",
"gists_url": "https://api.github.com/users/zeroXbrock/gists{/gist_id}",
"starred_url": "https://api.github.com/users/zeroXbrock/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/zeroXbrock/subscriptions",
"organizations_url": "https://api.github.com/users/zeroXbrock/orgs",
"repos_url": "https://api.github.com/users/zeroXbrock/repos",
"events_url": "https://api.github.com/users/zeroXbrock/events{/privacy}",
"received_events_url": "https://api.github.com/users/zeroXbrock/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2021-07-16T05:39:58Z",
"user": {
"login": "balaprasathr",
"id": 2309036,
"node_id": "MDQ6VXNlcjIzMDkwMzY=",
"avatar_url": "https://avatars.githubusercontent.com/u/2309036?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/balaprasathr",
"html_url": "https://github.com/balaprasathr",
"followers_url": "https://api.github.com/users/balaprasathr/followers",
"following_url": "https://api.github.com/users/balaprasathr/following{/other_user}",
"gists_url": "https://api.github.com/users/balaprasathr/gists{/gist_id}",
"starred_url": "https://api.github.com/users/balaprasathr/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/balaprasathr/subscriptions",
"organizations_url": "https://api.github.com/users/balaprasathr/orgs",
"repos_url": "https://api.github.com/users/balaprasathr/repos",
"events_url": "https://api.github.com/users/balaprasathr/events{/privacy}",
"received_events_url": "https://api.github.com/users/balaprasathr/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2021-07-21T09:06:04Z",
"user": {
"login": "dannyob",
"id": 227660,
"node_id": "MDQ6VXNlcjIyNzY2MA==",
"avatar_url": "https://avatars.githubusercontent.com/u/227660?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/dannyob",
"html_url": "https://github.com/dannyob",
"followers_url": "https://api.github.com/users/dannyob/followers",
"following_url": "https://api.github.com/users/dannyob/following{/other_user}",
"gists_url": "https://api.github.com/users/dannyob/gists{/gist_id}",
"starred_url": "https://api.github.com/users/dannyob/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/dannyob/subscriptions",
"organizations_url": "https://api.github.com/users/dannyob/orgs",
"repos_url": "https://api.github.com/users/dannyob/repos",
"events_url": "https://api.github.com/users/dannyob/events{/privacy}",
"received_events_url": "https://api.github.com/users/dannyob/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2021-07-26T02:33:57Z",
"user": {
"login": "itomsawyer",
"id": 1269823,
"node_id": "MDQ6VXNlcjEyNjk4MjM=",
"avatar_url": "https://avatars.githubusercontent.com/u/1269823?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/itomsawyer",
"html_url": "https://github.com/itomsawyer",
"followers_url": "https://api.github.com/users/itomsawyer/followers",
"following_url": "https://api.github.com/users/itomsawyer/following{/other_user}",
"gists_url": "https://api.github.com/users/itomsawyer/gists{/gist_id}",
"starred_url": "https://api.github.com/users/itomsawyer/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/itomsawyer/subscriptions",
"organizations_url": "https://api.github.com/users/itomsawyer/orgs",
"repos_url": "https://api.github.com/users/itomsawyer/repos",
"events_url": "https://api.github.com/users/itomsawyer/events{/privacy}",
"received_events_url": "https://api.github.com/users/itomsawyer/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2021-07-29T13:04:59Z",
"user": {
"login": "spydx",
"id": 16806653,
"node_id": "MDQ6VXNlcjE2ODA2NjUz",
"avatar_url": "https://avatars.githubusercontent.com/u/16806653?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/spydx",
"html_url": "https://github.com/spydx",
"followers_url": "https://api.github.com/users/spydx/followers",
"following_url": "https://api.github.com/users/spydx/following{/other_user}",
"gists_url": "https://api.github.com/users/spydx/gists{/gist_id}",
"starred_url": "https://api.github.com/users/spydx/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/spydx/subscriptions",
"organizations_url": "https://api.github.com/users/spydx/orgs",
"repos_url": "https://api.github.com/users/spydx/repos",
"events_url": "https://api.github.com/users/spydx/events{/privacy}",
"received_events_url": "https://api.github.com/users/spydx/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2021-07-31T21:15:57Z",
"user": {
"login": "parched",
"id": 5975405,
"node_id": "MDQ6VXNlcjU5NzU0MDU=",
"avatar_url": "https://avatars.githubusercontent.com/u/5975405?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/parched",
"html_url": "https://github.com/parched",
"followers_url": "https://api.github.com/users/parched/followers",
"following_url": "https://api.github.com/users/parched/following{/other_user}",
"gists_url": "https://api.github.com/users/parched/gists{/gist_id}",
"starred_url": "https://api.github.com/users/parched/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/parched/subscriptions",
"organizations_url": "https://api.github.com/users/parched/orgs",
"repos_url": "https://api.github.com/users/parched/repos",
"events_url": "https://api.github.com/users/parched/events{/privacy}",
"received_events_url": "https://api.github.com/users/parched/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2021-08-01T01:54:15Z",
"user": {
"login": "Evrey",
"id": 6483505,
"node_id": "MDQ6VXNlcjY0ODM1MDU=",
"avatar_url": "https://avatars.githubusercontent.com/u/6483505?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/Evrey",
"html_url": "https://github.com/Evrey",
"followers_url": "https://api.github.com/users/Evrey/followers",
"following_url": "https://api.github.com/users/Evrey/following{/other_user}",
"gists_url": "https://api.github.com/users/Evrey/gists{/gist_id}",
"starred_url": "https://api.github.com/users/Evrey/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/Evrey/subscriptions",
"organizations_url": "https://api.github.com/users/Evrey/orgs",
"repos_url": "https://api.github.com/users/Evrey/repos",
"events_url": "https://api.github.com/users/Evrey/events{/privacy}",
"received_events_url": "https://api.github.com/users/Evrey/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2021-08-11T03:22:46Z",
"user": {
"login": "vrish88",
"id": 36475,
"node_id": "MDQ6VXNlcjM2NDc1",
"avatar_url": "https://avatars.githubusercontent.com/u/36475?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/vrish88",
"html_url": "https://github.com/vrish88",
"followers_url": "https://api.github.com/users/vrish88/followers",
"following_url": "https://api.github.com/users/vrish88/following{/other_user}",
"gists_url": "https://api.github.com/users/vrish88/gists{/gist_id}",
"starred_url": "https://api.github.com/users/vrish88/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/vrish88/subscriptions",
"organizations_url": "https://api.github.com/users/vrish88/orgs",
"repos_url": "https://api.github.com/users/vrish88/repos",
"events_url": "https://api.github.com/users/vrish88/events{/privacy}",
"received_events_url": "https://api.github.com/users/vrish88/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2021-08-12T08:37:59Z",
"user": {
"login": "jasonyu1996",
"id": 6760768,
"node_id": "MDQ6VXNlcjY3NjA3Njg=",
"avatar_url": "https://avatars.githubusercontent.com/u/6760768?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/jasonyu1996",
"html_url": "https://github.com/jasonyu1996",
"followers_url": "https://api.github.com/users/jasonyu1996/followers",
"following_url": "https://api.github.com/users/jasonyu1996/following{/other_user}",
"gists_url": "https://api.github.com/users/jasonyu1996/gists{/gist_id}",
"starred_url": "https://api.github.com/users/jasonyu1996/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/jasonyu1996/subscriptions",
"organizations_url": "https://api.github.com/users/jasonyu1996/orgs",
"repos_url": "https://api.github.com/users/jasonyu1996/repos",
"events_url": "https://api.github.com/users/jasonyu1996/events{/privacy}",
"received_events_url": "https://api.github.com/users/jasonyu1996/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2021-09-03T19:39:08Z",
"user": {
"login": "defi-degaulle",
"id": 89699905,
"node_id": "MDQ6VXNlcjg5Njk5OTA1",
"avatar_url": "https://avatars.githubusercontent.com/u/89699905?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/defi-degaulle",
"html_url": "https://github.com/defi-degaulle",
"followers_url": "https://api.github.com/users/defi-degaulle/followers",
"following_url": "https://api.github.com/users/defi-degaulle/following{/other_user}",
"gists_url": "https://api.github.com/users/defi-degaulle/gists{/gist_id}",
"starred_url": "https://api.github.com/users/defi-degaulle/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/defi-degaulle/subscriptions",
"organizations_url": "https://api.github.com/users/defi-degaulle/orgs",
"repos_url": "https://api.github.com/users/defi-degaulle/repos",
"events_url": "https://api.github.com/users/defi-degaulle/events{/privacy}",
"received_events_url": "https://api.github.com/users/defi-degaulle/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2021-09-05T10:59:09Z",
"user": {
"login": "ahmedkhalaf",
"id": 1388964,
"node_id": "MDQ6VXNlcjEzODg5NjQ=",
"avatar_url": "https://avatars.githubusercontent.com/u/1388964?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/ahmedkhalaf",
"html_url": "https://github.com/ahmedkhalaf",
"followers_url": "https://api.github.com/users/ahmedkhalaf/followers",
"following_url": "https://api.github.com/users/ahmedkhalaf/following{/other_user}",
"gists_url": "https://api.github.com/users/ahmedkhalaf/gists{/gist_id}",
"starred_url": "https://api.github.com/users/ahmedkhalaf/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/ahmedkhalaf/subscriptions",
"organizations_url": "https://api.github.com/users/ahmedkhalaf/orgs",
"repos_url": "https://api.github.com/users/ahmedkhalaf/repos",
"events_url": "https://api.github.com/users/ahmedkhalaf/events{/privacy}",
"received_events_url": "https://api.github.com/users/ahmedkhalaf/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2021-09-06T13:26:28Z",
"user": {
"login": "menduz",
"id": 260114,
"node_id": "MDQ6VXNlcjI2MDExNA==",
"avatar_url": "https://avatars.githubusercontent.com/u/260114?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/menduz",
"html_url": "https://github.com/menduz",
"followers_url": "https://api.github.com/users/menduz/followers",
"following_url": "https://api.github.com/users/menduz/following{/other_user}",
"gists_url": "https://api.github.com/users/menduz/gists{/gist_id}",
"starred_url": "https://api.github.com/users/menduz/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/menduz/subscriptions",
"organizations_url": "https://api.github.com/users/menduz/orgs",
"repos_url": "https://api.github.com/users/menduz/repos",
"events_url": "https://api.github.com/users/menduz/events{/privacy}",
"received_events_url": "https://api.github.com/users/menduz/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2021-09-06T16:56:11Z",
"user": {
"login": "emaraschio",
"id": 988715,
"node_id": "MDQ6VXNlcjk4ODcxNQ==",
"avatar_url": "https://avatars.githubusercontent.com/u/988715?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/emaraschio",
"html_url": "https://github.com/emaraschio",
"followers_url": "https://api.github.com/users/emaraschio/followers",
"following_url": "https://api.github.com/users/emaraschio/following{/other_user}",
"gists_url": "https://api.github.com/users/emaraschio/gists{/gist_id}",
"starred_url": "https://api.github.com/users/emaraschio/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/emaraschio/subscriptions",
"organizations_url": "https://api.github.com/users/emaraschio/orgs",
"repos_url": "https://api.github.com/users/emaraschio/repos",
"events_url": "https://api.github.com/users/emaraschio/events{/privacy}",
"received_events_url": "https://api.github.com/users/emaraschio/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2021-09-07T12:02:18Z",
"user": {
"login": "rmdouglas",
"id": 48343776,
"node_id": "MDQ6VXNlcjQ4MzQzNzc2",
"avatar_url": "https://avatars.githubusercontent.com/u/48343776?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/rmdouglas",
"html_url": "https://github.com/rmdouglas",
"followers_url": "https://api.github.com/users/rmdouglas/followers",
"following_url": "https://api.github.com/users/rmdouglas/following{/other_user}",
"gists_url": "https://api.github.com/users/rmdouglas/gists{/gist_id}",
"starred_url": "https://api.github.com/users/rmdouglas/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/rmdouglas/subscriptions",
"organizations_url": "https://api.github.com/users/rmdouglas/orgs",
"repos_url": "https://api.github.com/users/rmdouglas/repos",
"events_url": "https://api.github.com/users/rmdouglas/events{/privacy}",
"received_events_url": "https://api.github.com/users/rmdouglas/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2021-09-17T22:12:34Z",
"user": {
"login": "richjensen3000",
"id": 318338,
"node_id": "MDQ6VXNlcjMxODMzOA==",
"avatar_url": "https://avatars.githubusercontent.com/u/318338?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/richjensen3000",
"html_url": "https://github.com/richjensen3000",
"followers_url": "https://api.github.com/users/richjensen3000/followers",
"following_url": "https://api.github.com/users/richjensen3000/following{/other_user}",
"gists_url": "https://api.github.com/users/richjensen3000/gists{/gist_id}",
"starred_url": "https://api.github.com/users/richjensen3000/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/richjensen3000/subscriptions",
"organizations_url": "https://api.github.com/users/richjensen3000/orgs",
"repos_url": "https://api.github.com/users/richjensen3000/repos",
"events_url": "https://api.github.com/users/richjensen3000/events{/privacy}",
"received_events_url": "https://api.github.com/users/richjensen3000/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2021-09-19T19:46:35Z",
"user": {
"login": "gregorynicholas",
"id": 407650,
"node_id": "MDQ6VXNlcjQwNzY1MA==",
"avatar_url": "https://avatars.githubusercontent.com/u/407650?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/gregorynicholas",
"html_url": "https://github.com/gregorynicholas",
"followers_url": "https://api.github.com/users/gregorynicholas/followers",
"following_url": "https://api.github.com/users/gregorynicholas/following{/other_user}",
"gists_url": "https://api.github.com/users/gregorynicholas/gists{/gist_id}",
"starred_url": "https://api.github.com/users/gregorynicholas/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/gregorynicholas/subscriptions",
"organizations_url": "https://api.github.com/users/gregorynicholas/orgs",
"repos_url": "https://api.github.com/users/gregorynicholas/repos",
"events_url": "https://api.github.com/users/gregorynicholas/events{/privacy}",
"received_events_url": "https://api.github.com/users/gregorynicholas/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2021-10-18T17:51:29Z",
"user": {
"login": "tyrchen",
"id": 473888,
"node_id": "MDQ6VXNlcjQ3Mzg4OA==",
"avatar_url": "https://avatars.githubusercontent.com/u/473888?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/tyrchen",
"html_url": "https://github.com/tyrchen",
"followers_url": "https://api.github.com/users/tyrchen/followers",
"following_url": "https://api.github.com/users/tyrchen/following{/other_user}",
"gists_url": "https://api.github.com/users/tyrchen/gists{/gist_id}",
"starred_url": "https://api.github.com/users/tyrchen/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/tyrchen/subscriptions",
"organizations_url": "https://api.github.com/users/tyrchen/orgs",
"repos_url": "https://api.github.com/users/tyrchen/repos",
"events_url": "https://api.github.com/users/tyrchen/events{/privacy}",
"received_events_url": "https://api.github.com/users/tyrchen/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2021-10-20T08:58:24Z",
"user": {
"login": "ChrisLinn",
"id": 3879614,
"node_id": "MDQ6VXNlcjM4Nzk2MTQ=",
"avatar_url": "https://avatars.githubusercontent.com/u/3879614?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/ChrisLinn",
"html_url": "https://github.com/ChrisLinn",
"followers_url": "https://api.github.com/users/ChrisLinn/followers",
"following_url": "https://api.github.com/users/ChrisLinn/following{/other_user}",
"gists_url": "https://api.github.com/users/ChrisLinn/gists{/gist_id}",
"starred_url": "https://api.github.com/users/ChrisLinn/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/ChrisLinn/subscriptions",
"organizations_url": "https://api.github.com/users/ChrisLinn/orgs",
"repos_url": "https://api.github.com/users/ChrisLinn/repos",
"events_url": "https://api.github.com/users/ChrisLinn/events{/privacy}",
"received_events_url": "https://api.github.com/users/ChrisLinn/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2021-11-02T13:28:48Z",
"user": {
"login": "hussienliban",
"id": 616972,
"node_id": "MDQ6VXNlcjYxNjk3Mg==",
"avatar_url": "https://avatars.githubusercontent.com/u/616972?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/hussienliban",
"html_url": "https://github.com/hussienliban",
"followers_url": "https://api.github.com/users/hussienliban/followers",
"following_url": "https://api.github.com/users/hussienliban/following{/other_user}",
"gists_url": "https://api.github.com/users/hussienliban/gists{/gist_id}",
"starred_url": "https://api.github.com/users/hussienliban/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/hussienliban/subscriptions",
"organizations_url": "https://api.github.com/users/hussienliban/orgs",
"repos_url": "https://api.github.com/users/hussienliban/repos",
"events_url": "https://api.github.com/users/hussienliban/events{/privacy}",
"received_events_url": "https://api.github.com/users/hussienliban/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2021-11-08T01:21:53Z",
"user": {
"login": "tmpfs",
"id": 238069,
"node_id": "MDQ6VXNlcjIzODA2OQ==",
"avatar_url": "https://avatars.githubusercontent.com/u/238069?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/tmpfs",
"html_url": "https://github.com/tmpfs",
"followers_url": "https://api.github.com/users/tmpfs/followers",
"following_url": "https://api.github.com/users/tmpfs/following{/other_user}",
"gists_url": "https://api.github.com/users/tmpfs/gists{/gist_id}",
"starred_url": "https://api.github.com/users/tmpfs/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/tmpfs/subscriptions",
"organizations_url": "https://api.github.com/users/tmpfs/orgs",
"repos_url": "https://api.github.com/users/tmpfs/repos",
"events_url": "https://api.github.com/users/tmpfs/events{/privacy}",
"received_events_url": "https://api.github.com/users/tmpfs/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2021-11-11T18:32:44Z",
"user": {
"login": "kevinbeal",
"id": 855252,
"node_id": "MDQ6VXNlcjg1NTI1Mg==",
"avatar_url": "https://avatars.githubusercontent.com/u/855252?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/kevinbeal",
"html_url": "https://github.com/kevinbeal",
"followers_url": "https://api.github.com/users/kevinbeal/followers",
"following_url": "https://api.github.com/users/kevinbeal/following{/other_user}",
"gists_url": "https://api.github.com/users/kevinbeal/gists{/gist_id}",
"starred_url": "https://api.github.com/users/kevinbeal/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/kevinbeal/subscriptions",
"organizations_url": "https://api.github.com/users/kevinbeal/orgs",
"repos_url": "https://api.github.com/users/kevinbeal/repos",
"events_url": "https://api.github.com/users/kevinbeal/events{/privacy}",
"received_events_url": "https://api.github.com/users/kevinbeal/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2021-12-04T16:25:56Z",
"user": {
"login": "CMD-reverse",
"id": 92409154,
"node_id": "U_kgDOBYINQg",
"avatar_url": "https://avatars.githubusercontent.com/u/92409154?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/CMD-reverse",
"html_url": "https://github.com/CMD-reverse",
"followers_url": "https://api.github.com/users/CMD-reverse/followers",
"following_url": "https://api.github.com/users/CMD-reverse/following{/other_user}",
"gists_url": "https://api.github.com/users/CMD-reverse/gists{/gist_id}",
"starred_url": "https://api.github.com/users/CMD-reverse/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/CMD-reverse/subscriptions",
"organizations_url": "https://api.github.com/users/CMD-reverse/orgs",
"repos_url": "https://api.github.com/users/CMD-reverse/repos",
"events_url": "https://api.github.com/users/CMD-reverse/events{/privacy}",
"received_events_url": "https://api.github.com/users/CMD-reverse/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2021-12-11T17:58:48Z",
"user": {
"login": "danielcieslinski",
"id": 33812650,
"node_id": "MDQ6VXNlcjMzODEyNjUw",
"avatar_url": "https://avatars.githubusercontent.com/u/33812650?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/danielcieslinski",
"html_url": "https://github.com/danielcieslinski",
"followers_url": "https://api.github.com/users/danielcieslinski/followers",
"following_url": "https://api.github.com/users/danielcieslinski/following{/other_user}",
"gists_url": "https://api.github.com/users/danielcieslinski/gists{/gist_id}",
"starred_url": "https://api.github.com/users/danielcieslinski/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/danielcieslinski/subscriptions",
"organizations_url": "https://api.github.com/users/danielcieslinski/orgs",
"repos_url": "https://api.github.com/users/danielcieslinski/repos",
"events_url": "https://api.github.com/users/danielcieslinski/events{/privacy}",
"received_events_url": "https://api.github.com/users/danielcieslinski/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2021-12-17T14:22:42Z",
"user": {
"login": "sofia-snow",
"id": 86526182,
"node_id": "MDQ6VXNlcjg2NTI2MTgy",
"avatar_url": "https://avatars.githubusercontent.com/u/86526182?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/sofia-snow",
"html_url": "https://github.com/sofia-snow",
"followers_url": "https://api.github.com/users/sofia-snow/followers",
"following_url": "https://api.github.com/users/sofia-snow/following{/other_user}",
"gists_url": "https://api.github.com/users/sofia-snow/gists{/gist_id}",
"starred_url": "https://api.github.com/users/sofia-snow/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/sofia-snow/subscriptions",
"organizations_url": "https://api.github.com/users/sofia-snow/orgs",
"repos_url": "https://api.github.com/users/sofia-snow/repos",
"events_url": "https://api.github.com/users/sofia-snow/events{/privacy}",
"received_events_url": "https://api.github.com/users/sofia-snow/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2021-12-23T01:09:41Z",
"user": {
"login": "erights",
"id": 273868,
"node_id": "MDQ6VXNlcjI3Mzg2OA==",
"avatar_url": "https://avatars.githubusercontent.com/u/273868?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/erights",
"html_url": "https://github.com/erights",
"followers_url": "https://api.github.com/users/erights/followers",
"following_url": "https://api.github.com/users/erights/following{/other_user}",
"gists_url": "https://api.github.com/users/erights/gists{/gist_id}",
"starred_url": "https://api.github.com/users/erights/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/erights/subscriptions",
"organizations_url": "https://api.github.com/users/erights/orgs",
"repos_url": "https://api.github.com/users/erights/repos",
"events_url": "https://api.github.com/users/erights/events{/privacy}",
"received_events_url": "https://api.github.com/users/erights/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2021-12-23T12:23:39Z",
"user": {
"login": "haneenmahd",
"id": 72091386,
"node_id": "MDQ6VXNlcjcyMDkxMzg2",
"avatar_url": "https://avatars.githubusercontent.com/u/72091386?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/haneenmahd",
"html_url": "https://github.com/haneenmahd",
"followers_url": "https://api.github.com/users/haneenmahd/followers",
"following_url": "https://api.github.com/users/haneenmahd/following{/other_user}",
"gists_url": "https://api.github.com/users/haneenmahd/gists{/gist_id}",
"starred_url": "https://api.github.com/users/haneenmahd/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/haneenmahd/subscriptions",
"organizations_url": "https://api.github.com/users/haneenmahd/orgs",
"repos_url": "https://api.github.com/users/haneenmahd/repos",
"events_url": "https://api.github.com/users/haneenmahd/events{/privacy}",
"received_events_url": "https://api.github.com/users/haneenmahd/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2021-12-27T17:01:26Z",
"user": {
"login": "fcbertoldi",
"id": 213208,
"node_id": "MDQ6VXNlcjIxMzIwOA==",
"avatar_url": "https://avatars.githubusercontent.com/u/213208?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/fcbertoldi",
"html_url": "https://github.com/fcbertoldi",
"followers_url": "https://api.github.com/users/fcbertoldi/followers",
"following_url": "https://api.github.com/users/fcbertoldi/following{/other_user}",
"gists_url": "https://api.github.com/users/fcbertoldi/gists{/gist_id}",
"starred_url": "https://api.github.com/users/fcbertoldi/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/fcbertoldi/subscriptions",
"organizations_url": "https://api.github.com/users/fcbertoldi/orgs",
"repos_url": "https://api.github.com/users/fcbertoldi/repos",
"events_url": "https://api.github.com/users/fcbertoldi/events{/privacy}",
"received_events_url": "https://api.github.com/users/fcbertoldi/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2021-12-27T21:08:50Z",
"user": {
"login": "oconnor0",
"id": 64384,
"node_id": "MDQ6VXNlcjY0Mzg0",
"avatar_url": "https://avatars.githubusercontent.com/u/64384?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/oconnor0",
"html_url": "https://github.com/oconnor0",
"followers_url": "https://api.github.com/users/oconnor0/followers",
"following_url": "https://api.github.com/users/oconnor0/following{/other_user}",
"gists_url": "https://api.github.com/users/oconnor0/gists{/gist_id}",
"starred_url": "https://api.github.com/users/oconnor0/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/oconnor0/subscriptions",
"organizations_url": "https://api.github.com/users/oconnor0/orgs",
"repos_url": "https://api.github.com/users/oconnor0/repos",
"events_url": "https://api.github.com/users/oconnor0/events{/privacy}",
"received_events_url": "https://api.github.com/users/oconnor0/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2022-01-02T21:46:01Z",
"user": {
"login": "garrison",
"id": 91987,
"node_id": "MDQ6VXNlcjkxOTg3",
"avatar_url": "https://avatars.githubusercontent.com/u/91987?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/garrison",
"html_url": "https://github.com/garrison",
"followers_url": "https://api.github.com/users/garrison/followers",
"following_url": "https://api.github.com/users/garrison/following{/other_user}",
"gists_url": "https://api.github.com/users/garrison/gists{/gist_id}",
"starred_url": "https://api.github.com/users/garrison/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/garrison/subscriptions",
"organizations_url": "https://api.github.com/users/garrison/orgs",
"repos_url": "https://api.github.com/users/garrison/repos",
"events_url": "https://api.github.com/users/garrison/events{/privacy}",
"received_events_url": "https://api.github.com/users/garrison/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2022-01-14T13:57:12Z",
"user": {
"login": "rongfengliang",
"id": 2312287,
"node_id": "MDQ6VXNlcjIzMTIyODc=",
"avatar_url": "https://avatars.githubusercontent.com/u/2312287?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/rongfengliang",
"html_url": "https://github.com/rongfengliang",
"followers_url": "https://api.github.com/users/rongfengliang/followers",
"following_url": "https://api.github.com/users/rongfengliang/following{/other_user}",
"gists_url": "https://api.github.com/users/rongfengliang/gists{/gist_id}",
"starred_url": "https://api.github.com/users/rongfengliang/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/rongfengliang/subscriptions",
"organizations_url": "https://api.github.com/users/rongfengliang/orgs",
"repos_url": "https://api.github.com/users/rongfengliang/repos",
"events_url": "https://api.github.com/users/rongfengliang/events{/privacy}",
"received_events_url": "https://api.github.com/users/rongfengliang/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2022-01-16T17:10:02Z",
"user": {
"login": "tarcieri",
"id": 797,
"node_id": "MDQ6VXNlcjc5Nw==",
"avatar_url": "https://avatars.githubusercontent.com/u/797?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/tarcieri",
"html_url": "https://github.com/tarcieri",
"followers_url": "https://api.github.com/users/tarcieri/followers",
"following_url": "https://api.github.com/users/tarcieri/following{/other_user}",
"gists_url": "https://api.github.com/users/tarcieri/gists{/gist_id}",
"starred_url": "https://api.github.com/users/tarcieri/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/tarcieri/subscriptions",
"organizations_url": "https://api.github.com/users/tarcieri/orgs",
"repos_url": "https://api.github.com/users/tarcieri/repos",
"events_url": "https://api.github.com/users/tarcieri/events{/privacy}",
"received_events_url": "https://api.github.com/users/tarcieri/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2022-01-17T02:34:29Z",
"user": {
"login": "longcpp",
"id": 5866465,
"node_id": "MDQ6VXNlcjU4NjY0NjU=",
"avatar_url": "https://avatars.githubusercontent.com/u/5866465?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/longcpp",
"html_url": "https://github.com/longcpp",
"followers_url": "https://api.github.com/users/longcpp/followers",
"following_url": "https://api.github.com/users/longcpp/following{/other_user}",
"gists_url": "https://api.github.com/users/longcpp/gists{/gist_id}",
"starred_url": "https://api.github.com/users/longcpp/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/longcpp/subscriptions",
"organizations_url": "https://api.github.com/users/longcpp/orgs",
"repos_url": "https://api.github.com/users/longcpp/repos",
"events_url": "https://api.github.com/users/longcpp/events{/privacy}",
"received_events_url": "https://api.github.com/users/longcpp/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2022-01-17T03:49:39Z",
"user": {
"login": "ur5us",
"id": 453776,
"node_id": "MDQ6VXNlcjQ1Mzc3Ng==",
"avatar_url": "https://avatars.githubusercontent.com/u/453776?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/ur5us",
"html_url": "https://github.com/ur5us",
"followers_url": "https://api.github.com/users/ur5us/followers",
"following_url": "https://api.github.com/users/ur5us/following{/other_user}",
"gists_url": "https://api.github.com/users/ur5us/gists{/gist_id}",
"starred_url": "https://api.github.com/users/ur5us/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/ur5us/subscriptions",
"organizations_url": "https://api.github.com/users/ur5us/orgs",
"repos_url": "https://api.github.com/users/ur5us/repos",
"events_url": "https://api.github.com/users/ur5us/events{/privacy}",
"received_events_url": "https://api.github.com/users/ur5us/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2022-01-17T10:25:47Z",
"user": {
"login": "SirCipher",
"id": 6685353,
"node_id": "MDQ6VXNlcjY2ODUzNTM=",
"avatar_url": "https://avatars.githubusercontent.com/u/6685353?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/SirCipher",
"html_url": "https://github.com/SirCipher",
"followers_url": "https://api.github.com/users/SirCipher/followers",
"following_url": "https://api.github.com/users/SirCipher/following{/other_user}",
"gists_url": "https://api.github.com/users/SirCipher/gists{/gist_id}",
"starred_url": "https://api.github.com/users/SirCipher/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/SirCipher/subscriptions",
"organizations_url": "https://api.github.com/users/SirCipher/orgs",
"repos_url": "https://api.github.com/users/SirCipher/repos",
"events_url": "https://api.github.com/users/SirCipher/events{/privacy}",
"received_events_url": "https://api.github.com/users/SirCipher/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2022-01-26T07:08:03Z",
"user": {
"login": "destructobeam",
"id": 646588,
"node_id": "MDQ6VXNlcjY0NjU4OA==",
"avatar_url": "https://avatars.githubusercontent.com/u/646588?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/destructobeam",
"html_url": "https://github.com/destructobeam",
"followers_url": "https://api.github.com/users/destructobeam/followers",
"following_url": "https://api.github.com/users/destructobeam/following{/other_user}",
"gists_url": "https://api.github.com/users/destructobeam/gists{/gist_id}",
"starred_url": "https://api.github.com/users/destructobeam/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/destructobeam/subscriptions",
"organizations_url": "https://api.github.com/users/destructobeam/orgs",
"repos_url": "https://api.github.com/users/destructobeam/repos",
"events_url": "https://api.github.com/users/destructobeam/events{/privacy}",
"received_events_url": "https://api.github.com/users/destructobeam/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2022-01-27T02:04:28Z",
"user": {
"login": "rheaplex",
"id": 21746,
"node_id": "MDQ6VXNlcjIxNzQ2",
"avatar_url": "https://avatars.githubusercontent.com/u/21746?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/rheaplex",
"html_url": "https://github.com/rheaplex",
"followers_url": "https://api.github.com/users/rheaplex/followers",
"following_url": "https://api.github.com/users/rheaplex/following{/other_user}",
"gists_url": "https://api.github.com/users/rheaplex/gists{/gist_id}",
"starred_url": "https://api.github.com/users/rheaplex/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/rheaplex/subscriptions",
"organizations_url": "https://api.github.com/users/rheaplex/orgs",
"repos_url": "https://api.github.com/users/rheaplex/repos",
"events_url": "https://api.github.com/users/rheaplex/events{/privacy}",
"received_events_url": "https://api.github.com/users/rheaplex/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2022-01-28T22:10:43Z",
"user": {
"login": "jochasinga",
"id": 2445163,
"node_id": "MDQ6VXNlcjI0NDUxNjM=",
"avatar_url": "https://avatars.githubusercontent.com/u/2445163?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/jochasinga",
"html_url": "https://github.com/jochasinga",
"followers_url": "https://api.github.com/users/jochasinga/followers",
"following_url": "https://api.github.com/users/jochasinga/following{/other_user}",
"gists_url": "https://api.github.com/users/jochasinga/gists{/gist_id}",
"starred_url": "https://api.github.com/users/jochasinga/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/jochasinga/subscriptions",
"organizations_url": "https://api.github.com/users/jochasinga/orgs",
"repos_url": "https://api.github.com/users/jochasinga/repos",
"events_url": "https://api.github.com/users/jochasinga/events{/privacy}",
"received_events_url": "https://api.github.com/users/jochasinga/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2022-02-03T02:44:21Z",
"user": {
"login": "ron-wolf",
"id": 7342888,
"node_id": "MDQ6VXNlcjczNDI4ODg=",
"avatar_url": "https://avatars.githubusercontent.com/u/7342888?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/ron-wolf",
"html_url": "https://github.com/ron-wolf",
"followers_url": "https://api.github.com/users/ron-wolf/followers",
"following_url": "https://api.github.com/users/ron-wolf/following{/other_user}",
"gists_url": "https://api.github.com/users/ron-wolf/gists{/gist_id}",
"starred_url": "https://api.github.com/users/ron-wolf/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/ron-wolf/subscriptions",
"organizations_url": "https://api.github.com/users/ron-wolf/orgs",
"repos_url": "https://api.github.com/users/ron-wolf/repos",
"events_url": "https://api.github.com/users/ron-wolf/events{/privacy}",
"received_events_url": "https://api.github.com/users/ron-wolf/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2022-02-05T15:16:38Z",
"user": {
"login": "mikecb",
"id": 421741,
"node_id": "MDQ6VXNlcjQyMTc0MQ==",
"avatar_url": "https://avatars.githubusercontent.com/u/421741?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/mikecb",
"html_url": "https://github.com/mikecb",
"followers_url": "https://api.github.com/users/mikecb/followers",
"following_url": "https://api.github.com/users/mikecb/following{/other_user}",
"gists_url": "https://api.github.com/users/mikecb/gists{/gist_id}",
"starred_url": "https://api.github.com/users/mikecb/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/mikecb/subscriptions",
"organizations_url": "https://api.github.com/users/mikecb/orgs",
"repos_url": "https://api.github.com/users/mikecb/repos",
"events_url": "https://api.github.com/users/mikecb/events{/privacy}",
"received_events_url": "https://api.github.com/users/mikecb/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2022-02-08T17:48:38Z",
"user": {
"login": "atarv",
"id": 32595622,
"node_id": "MDQ6VXNlcjMyNTk1NjIy",
"avatar_url": "https://avatars.githubusercontent.com/u/32595622?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/atarv",
"html_url": "https://github.com/atarv",
"followers_url": "https://api.github.com/users/atarv/followers",
"following_url": "https://api.github.com/users/atarv/following{/other_user}",
"gists_url": "https://api.github.com/users/atarv/gists{/gist_id}",
"starred_url": "https://api.github.com/users/atarv/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/atarv/subscriptions",
"organizations_url": "https://api.github.com/users/atarv/orgs",
"repos_url": "https://api.github.com/users/atarv/repos",
"events_url": "https://api.github.com/users/atarv/events{/privacy}",
"received_events_url": "https://api.github.com/users/atarv/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2022-02-15T02:38:03Z",
"user": {
"login": "Lj27ft",
"id": 83380572,
"node_id": "MDQ6VXNlcjgzMzgwNTcy",
"avatar_url": "https://avatars.githubusercontent.com/u/83380572?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/Lj27ft",
"html_url": "https://github.com/Lj27ft",
"followers_url": "https://api.github.com/users/Lj27ft/followers",
"following_url": "https://api.github.com/users/Lj27ft/following{/other_user}",
"gists_url": "https://api.github.com/users/Lj27ft/gists{/gist_id}",
"starred_url": "https://api.github.com/users/Lj27ft/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/Lj27ft/subscriptions",
"organizations_url": "https://api.github.com/users/Lj27ft/orgs",
"repos_url": "https://api.github.com/users/Lj27ft/repos",
"events_url": "https://api.github.com/users/Lj27ft/events{/privacy}",
"received_events_url": "https://api.github.com/users/Lj27ft/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2022-02-19T12:25:41Z",
"user": {
"login": "Mithileshraj123",
"id": 69758284,
"node_id": "MDQ6VXNlcjY5NzU4Mjg0",
"avatar_url": "https://avatars.githubusercontent.com/u/69758284?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/Mithileshraj123",
"html_url": "https://github.com/Mithileshraj123",
"followers_url": "https://api.github.com/users/Mithileshraj123/followers",
"following_url": "https://api.github.com/users/Mithileshraj123/following{/other_user}",
"gists_url": "https://api.github.com/users/Mithileshraj123/gists{/gist_id}",
"starred_url": "https://api.github.com/users/Mithileshraj123/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/Mithileshraj123/subscriptions",
"organizations_url": "https://api.github.com/users/Mithileshraj123/orgs",
"repos_url": "https://api.github.com/users/Mithileshraj123/repos",
"events_url": "https://api.github.com/users/Mithileshraj123/events{/privacy}",
"received_events_url": "https://api.github.com/users/Mithileshraj123/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2022-03-03T00:38:40Z",
"user": {
"login": "elimisteve",
"id": 139603,
"node_id": "MDQ6VXNlcjEzOTYwMw==",
"avatar_url": "https://avatars.githubusercontent.com/u/139603?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/elimisteve",
"html_url": "https://github.com/elimisteve",
"followers_url": "https://api.github.com/users/elimisteve/followers",
"following_url": "https://api.github.com/users/elimisteve/following{/other_user}",
"gists_url": "https://api.github.com/users/elimisteve/gists{/gist_id}",
"starred_url": "https://api.github.com/users/elimisteve/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/elimisteve/subscriptions",
"organizations_url": "https://api.github.com/users/elimisteve/orgs",
"repos_url": "https://api.github.com/users/elimisteve/repos",
"events_url": "https://api.github.com/users/elimisteve/events{/privacy}",
"received_events_url": "https://api.github.com/users/elimisteve/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2022-03-03T17:15:01Z",
"user": {
"login": "johnchristotle",
"id": 96313953,
"node_id": "U_kgDOBb2iYQ",
"avatar_url": "https://avatars.githubusercontent.com/u/96313953?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/johnchristotle",
"html_url": "https://github.com/johnchristotle",
"followers_url": "https://api.github.com/users/johnchristotle/followers",
"following_url": "https://api.github.com/users/johnchristotle/following{/other_user}",
"gists_url": "https://api.github.com/users/johnchristotle/gists{/gist_id}",
"starred_url": "https://api.github.com/users/johnchristotle/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/johnchristotle/subscriptions",
"organizations_url": "https://api.github.com/users/johnchristotle/orgs",
"repos_url": "https://api.github.com/users/johnchristotle/repos",
"events_url": "https://api.github.com/users/johnchristotle/events{/privacy}",
"received_events_url": "https://api.github.com/users/johnchristotle/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2022-03-21T20:00:13Z",
"user": {
"login": "ryanatkn",
"id": 2608646,
"node_id": "MDQ6VXNlcjI2MDg2NDY=",
"avatar_url": "https://avatars.githubusercontent.com/u/2608646?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/ryanatkn",
"html_url": "https://github.com/ryanatkn",
"followers_url": "https://api.github.com/users/ryanatkn/followers",
"following_url": "https://api.github.com/users/ryanatkn/following{/other_user}",
"gists_url": "https://api.github.com/users/ryanatkn/gists{/gist_id}",
"starred_url": "https://api.github.com/users/ryanatkn/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/ryanatkn/subscriptions",
"organizations_url": "https://api.github.com/users/ryanatkn/orgs",
"repos_url": "https://api.github.com/users/ryanatkn/repos",
"events_url": "https://api.github.com/users/ryanatkn/events{/privacy}",
"received_events_url": "https://api.github.com/users/ryanatkn/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2022-04-08T03:26:32Z",
"user": {
"login": "Gooberpatrol66",
"id": 5498361,
"node_id": "MDQ6VXNlcjU0OTgzNjE=",
"avatar_url": "https://avatars.githubusercontent.com/u/5498361?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/Gooberpatrol66",
"html_url": "https://github.com/Gooberpatrol66",
"followers_url": "https://api.github.com/users/Gooberpatrol66/followers",
"following_url": "https://api.github.com/users/Gooberpatrol66/following{/other_user}",
"gists_url": "https://api.github.com/users/Gooberpatrol66/gists{/gist_id}",
"starred_url": "https://api.github.com/users/Gooberpatrol66/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/Gooberpatrol66/subscriptions",
"organizations_url": "https://api.github.com/users/Gooberpatrol66/orgs",
"repos_url": "https://api.github.com/users/Gooberpatrol66/repos",
"events_url": "https://api.github.com/users/Gooberpatrol66/events{/privacy}",
"received_events_url": "https://api.github.com/users/Gooberpatrol66/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2022-04-30T21:50:16Z",
"user": {
"login": "mvayngrib",
"id": 83948,
"node_id": "MDQ6VXNlcjgzOTQ4",
"avatar_url": "https://avatars.githubusercontent.com/u/83948?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/mvayngrib",
"html_url": "https://github.com/mvayngrib",
"followers_url": "https://api.github.com/users/mvayngrib/followers",
"following_url": "https://api.github.com/users/mvayngrib/following{/other_user}",
"gists_url": "https://api.github.com/users/mvayngrib/gists{/gist_id}",
"starred_url": "https://api.github.com/users/mvayngrib/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/mvayngrib/subscriptions",
"organizations_url": "https://api.github.com/users/mvayngrib/orgs",
"repos_url": "https://api.github.com/users/mvayngrib/repos",
"events_url": "https://api.github.com/users/mvayngrib/events{/privacy}",
"received_events_url": "https://api.github.com/users/mvayngrib/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2022-05-20T13:12:03Z",
"user": {
"login": "ngould",
"id": 3130631,
"node_id": "MDQ6VXNlcjMxMzA2MzE=",
"avatar_url": "https://avatars.githubusercontent.com/u/3130631?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/ngould",
"html_url": "https://github.com/ngould",
"followers_url": "https://api.github.com/users/ngould/followers",
"following_url": "https://api.github.com/users/ngould/following{/other_user}",
"gists_url": "https://api.github.com/users/ngould/gists{/gist_id}",
"starred_url": "https://api.github.com/users/ngould/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/ngould/subscriptions",
"organizations_url": "https://api.github.com/users/ngould/orgs",
"repos_url": "https://api.github.com/users/ngould/repos",
"events_url": "https://api.github.com/users/ngould/events{/privacy}",
"received_events_url": "https://api.github.com/users/ngould/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2022-05-28T01:40:47Z",
"user": {
"login": "wikicliff",
"id": 593750,
"node_id": "MDQ6VXNlcjU5Mzc1MA==",
"avatar_url": "https://avatars.githubusercontent.com/u/593750?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/wikicliff",
"html_url": "https://github.com/wikicliff",
"followers_url": "https://api.github.com/users/wikicliff/followers",
"following_url": "https://api.github.com/users/wikicliff/following{/other_user}",
"gists_url": "https://api.github.com/users/wikicliff/gists{/gist_id}",
"starred_url": "https://api.github.com/users/wikicliff/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/wikicliff/subscriptions",
"organizations_url": "https://api.github.com/users/wikicliff/orgs",
"repos_url": "https://api.github.com/users/wikicliff/repos",
"events_url": "https://api.github.com/users/wikicliff/events{/privacy}",
"received_events_url": "https://api.github.com/users/wikicliff/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2022-06-29T05:03:52Z",
"user": {
"login": "TAT2FAIRY",
"id": 89474338,
"node_id": "MDQ6VXNlcjg5NDc0MzM4",
"avatar_url": "https://avatars.githubusercontent.com/u/89474338?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/TAT2FAIRY",
"html_url": "https://github.com/TAT2FAIRY",
"followers_url": "https://api.github.com/users/TAT2FAIRY/followers",
"following_url": "https://api.github.com/users/TAT2FAIRY/following{/other_user}",
"gists_url": "https://api.github.com/users/TAT2FAIRY/gists{/gist_id}",
"starred_url": "https://api.github.com/users/TAT2FAIRY/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/TAT2FAIRY/subscriptions",
"organizations_url": "https://api.github.com/users/TAT2FAIRY/orgs",
"repos_url": "https://api.github.com/users/TAT2FAIRY/repos",
"events_url": "https://api.github.com/users/TAT2FAIRY/events{/privacy}",
"received_events_url": "https://api.github.com/users/TAT2FAIRY/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2022-07-12T20:58:50Z",
"user": {
"login": "cmanderson1228",
"id": 85955897,
"node_id": "MDQ6VXNlcjg1OTU1ODk3",
"avatar_url": "https://avatars.githubusercontent.com/u/85955897?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/cmanderson1228",
"html_url": "https://github.com/cmanderson1228",
"followers_url": "https://api.github.com/users/cmanderson1228/followers",
"following_url": "https://api.github.com/users/cmanderson1228/following{/other_user}",
"gists_url": "https://api.github.com/users/cmanderson1228/gists{/gist_id}",
"starred_url": "https://api.github.com/users/cmanderson1228/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/cmanderson1228/subscriptions",
"organizations_url": "https://api.github.com/users/cmanderson1228/orgs",
"repos_url": "https://api.github.com/users/cmanderson1228/repos",
"events_url": "https://api.github.com/users/cmanderson1228/events{/privacy}",
"received_events_url": "https://api.github.com/users/cmanderson1228/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2022-07-21T17:45:22Z",
"user": {
"login": "jiangplus",
"id": 2041398,
"node_id": "MDQ6VXNlcjIwNDEzOTg=",
"avatar_url": "https://avatars.githubusercontent.com/u/2041398?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/jiangplus",
"html_url": "https://github.com/jiangplus",
"followers_url": "https://api.github.com/users/jiangplus/followers",
"following_url": "https://api.github.com/users/jiangplus/following{/other_user}",
"gists_url": "https://api.github.com/users/jiangplus/gists{/gist_id}",
"starred_url": "https://api.github.com/users/jiangplus/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/jiangplus/subscriptions",
"organizations_url": "https://api.github.com/users/jiangplus/orgs",
"repos_url": "https://api.github.com/users/jiangplus/repos",
"events_url": "https://api.github.com/users/jiangplus/events{/privacy}",
"received_events_url": "https://api.github.com/users/jiangplus/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2022-08-02T17:18:24Z",
"user": {
"login": "trvon",
"id": 6031322,
"node_id": "MDQ6VXNlcjYwMzEzMjI=",
"avatar_url": "https://avatars.githubusercontent.com/u/6031322?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/trvon",
"html_url": "https://github.com/trvon",
"followers_url": "https://api.github.com/users/trvon/followers",
"following_url": "https://api.github.com/users/trvon/following{/other_user}",
"gists_url": "https://api.github.com/users/trvon/gists{/gist_id}",
"starred_url": "https://api.github.com/users/trvon/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/trvon/subscriptions",
"organizations_url": "https://api.github.com/users/trvon/orgs",
"repos_url": "https://api.github.com/users/trvon/repos",
"events_url": "https://api.github.com/users/trvon/events{/privacy}",
"received_events_url": "https://api.github.com/users/trvon/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2022-08-14T12:41:59Z",
"user": {
"login": "prettyv",
"id": 1702205,
"node_id": "MDQ6VXNlcjE3MDIyMDU=",
"avatar_url": "https://avatars.githubusercontent.com/u/1702205?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/prettyv",
"html_url": "https://github.com/prettyv",
"followers_url": "https://api.github.com/users/prettyv/followers",
"following_url": "https://api.github.com/users/prettyv/following{/other_user}",
"gists_url": "https://api.github.com/users/prettyv/gists{/gist_id}",
"starred_url": "https://api.github.com/users/prettyv/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/prettyv/subscriptions",
"organizations_url": "https://api.github.com/users/prettyv/orgs",
"repos_url": "https://api.github.com/users/prettyv/repos",
"events_url": "https://api.github.com/users/prettyv/events{/privacy}",
"received_events_url": "https://api.github.com/users/prettyv/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2022-08-30T17:19:38Z",
"user": {
"login": "vr0n",
"id": 12860975,
"node_id": "MDQ6VXNlcjEyODYwOTc1",
"avatar_url": "https://avatars.githubusercontent.com/u/12860975?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/vr0n",
"html_url": "https://github.com/vr0n",
"followers_url": "https://api.github.com/users/vr0n/followers",
"following_url": "https://api.github.com/users/vr0n/following{/other_user}",
"gists_url": "https://api.github.com/users/vr0n/gists{/gist_id}",
"starred_url": "https://api.github.com/users/vr0n/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/vr0n/subscriptions",
"organizations_url": "https://api.github.com/users/vr0n/orgs",
"repos_url": "https://api.github.com/users/vr0n/repos",
"events_url": "https://api.github.com/users/vr0n/events{/privacy}",
"received_events_url": "https://api.github.com/users/vr0n/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2022-09-29T19:01:04Z",
"user": {
"login": "treyperry",
"id": 1042974,
"node_id": "MDQ6VXNlcjEwNDI5NzQ=",
"avatar_url": "https://avatars.githubusercontent.com/u/1042974?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/treyperry",
"html_url": "https://github.com/treyperry",
"followers_url": "https://api.github.com/users/treyperry/followers",
"following_url": "https://api.github.com/users/treyperry/following{/other_user}",
"gists_url": "https://api.github.com/users/treyperry/gists{/gist_id}",
"starred_url": "https://api.github.com/users/treyperry/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/treyperry/subscriptions",
"organizations_url": "https://api.github.com/users/treyperry/orgs",
"repos_url": "https://api.github.com/users/treyperry/repos",
"events_url": "https://api.github.com/users/treyperry/events{/privacy}",
"received_events_url": "https://api.github.com/users/treyperry/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2022-10-23T10:40:31Z",
"user": {
"login": "Break27",
"id": 12625901,
"node_id": "MDQ6VXNlcjEyNjI1OTAx",
"avatar_url": "https://avatars.githubusercontent.com/u/12625901?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/Break27",
"html_url": "https://github.com/Break27",
"followers_url": "https://api.github.com/users/Break27/followers",
"following_url": "https://api.github.com/users/Break27/following{/other_user}",
"gists_url": "https://api.github.com/users/Break27/gists{/gist_id}",
"starred_url": "https://api.github.com/users/Break27/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/Break27/subscriptions",
"organizations_url": "https://api.github.com/users/Break27/orgs",
"repos_url": "https://api.github.com/users/Break27/repos",
"events_url": "https://api.github.com/users/Break27/events{/privacy}",
"received_events_url": "https://api.github.com/users/Break27/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2022-11-03T01:25:39Z",
"user": {
"login": "devinivy",
"id": 3150233,
"node_id": "MDQ6VXNlcjMxNTAyMzM=",
"avatar_url": "https://avatars.githubusercontent.com/u/3150233?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/devinivy",
"html_url": "https://github.com/devinivy",
"followers_url": "https://api.github.com/users/devinivy/followers",
"following_url": "https://api.github.com/users/devinivy/following{/other_user}",
"gists_url": "https://api.github.com/users/devinivy/gists{/gist_id}",
"starred_url": "https://api.github.com/users/devinivy/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/devinivy/subscriptions",
"organizations_url": "https://api.github.com/users/devinivy/orgs",
"repos_url": "https://api.github.com/users/devinivy/repos",
"events_url": "https://api.github.com/users/devinivy/events{/privacy}",
"received_events_url": "https://api.github.com/users/devinivy/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2022-11-03T07:23:32Z",
"user": {
"login": "ocdtrekkie",
"id": 4399499,
"node_id": "MDQ6VXNlcjQzOTk0OTk=",
"avatar_url": "https://avatars.githubusercontent.com/u/4399499?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/ocdtrekkie",
"html_url": "https://github.com/ocdtrekkie",
"followers_url": "https://api.github.com/users/ocdtrekkie/followers",
"following_url": "https://api.github.com/users/ocdtrekkie/following{/other_user}",
"gists_url": "https://api.github.com/users/ocdtrekkie/gists{/gist_id}",
"starred_url": "https://api.github.com/users/ocdtrekkie/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/ocdtrekkie/subscriptions",
"organizations_url": "https://api.github.com/users/ocdtrekkie/orgs",
"repos_url": "https://api.github.com/users/ocdtrekkie/repos",
"events_url": "https://api.github.com/users/ocdtrekkie/events{/privacy}",
"received_events_url": "https://api.github.com/users/ocdtrekkie/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2022-12-01T00:34:07Z",
"user": {
"login": "0xpatrickdev",
"id": 11021913,
"node_id": "MDQ6VXNlcjExMDIxOTEz",
"avatar_url": "https://avatars.githubusercontent.com/u/11021913?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/0xpatrickdev",
"html_url": "https://github.com/0xpatrickdev",
"followers_url": "https://api.github.com/users/0xpatrickdev/followers",
"following_url": "https://api.github.com/users/0xpatrickdev/following{/other_user}",
"gists_url": "https://api.github.com/users/0xpatrickdev/gists{/gist_id}",
"starred_url": "https://api.github.com/users/0xpatrickdev/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/0xpatrickdev/subscriptions",
"organizations_url": "https://api.github.com/users/0xpatrickdev/orgs",
"repos_url": "https://api.github.com/users/0xpatrickdev/repos",
"events_url": "https://api.github.com/users/0xpatrickdev/events{/privacy}",
"received_events_url": "https://api.github.com/users/0xpatrickdev/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2022-12-16T14:49:18Z",
"user": {
"login": "omasanori",
"id": 167209,
"node_id": "MDQ6VXNlcjE2NzIwOQ==",
"avatar_url": "https://avatars.githubusercontent.com/u/167209?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/omasanori",
"html_url": "https://github.com/omasanori",
"followers_url": "https://api.github.com/users/omasanori/followers",
"following_url": "https://api.github.com/users/omasanori/following{/other_user}",
"gists_url": "https://api.github.com/users/omasanori/gists{/gist_id}",
"starred_url": "https://api.github.com/users/omasanori/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/omasanori/subscriptions",
"organizations_url": "https://api.github.com/users/omasanori/orgs",
"repos_url": "https://api.github.com/users/omasanori/repos",
"events_url": "https://api.github.com/users/omasanori/events{/privacy}",
"received_events_url": "https://api.github.com/users/omasanori/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2022-12-25T11:57:41Z",
"user": {
"login": "markhamj",
"id": 5257533,
"node_id": "MDQ6VXNlcjUyNTc1MzM=",
"avatar_url": "https://avatars.githubusercontent.com/u/5257533?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/markhamj",
"html_url": "https://github.com/markhamj",
"followers_url": "https://api.github.com/users/markhamj/followers",
"following_url": "https://api.github.com/users/markhamj/following{/other_user}",
"gists_url": "https://api.github.com/users/markhamj/gists{/gist_id}",
"starred_url": "https://api.github.com/users/markhamj/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/markhamj/subscriptions",
"organizations_url": "https://api.github.com/users/markhamj/orgs",
"repos_url": "https://api.github.com/users/markhamj/repos",
"events_url": "https://api.github.com/users/markhamj/events{/privacy}",
"received_events_url": "https://api.github.com/users/markhamj/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2023-01-03T05:55:04Z",
"user": {
"login": "Sandalots",
"id": 59518103,
"node_id": "MDQ6VXNlcjU5NTE4MTAz",
"avatar_url": "https://avatars.githubusercontent.com/u/59518103?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/Sandalots",
"html_url": "https://github.com/Sandalots",
"followers_url": "https://api.github.com/users/Sandalots/followers",
"following_url": "https://api.github.com/users/Sandalots/following{/other_user}",
"gists_url": "https://api.github.com/users/Sandalots/gists{/gist_id}",
"starred_url": "https://api.github.com/users/Sandalots/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/Sandalots/subscriptions",
"organizations_url": "https://api.github.com/users/Sandalots/orgs",
"repos_url": "https://api.github.com/users/Sandalots/repos",
"events_url": "https://api.github.com/users/Sandalots/events{/privacy}",
"received_events_url": "https://api.github.com/users/Sandalots/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2023-01-23T00:58:29Z",
"user": {
"login": "c-host",
"id": 119071752,
"node_id": "U_kgDOBxjkCA",
"avatar_url": "https://avatars.githubusercontent.com/u/119071752?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/c-host",
"html_url": "https://github.com/c-host",
"followers_url": "https://api.github.com/users/c-host/followers",
"following_url": "https://api.github.com/users/c-host/following{/other_user}",
"gists_url": "https://api.github.com/users/c-host/gists{/gist_id}",
"starred_url": "https://api.github.com/users/c-host/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/c-host/subscriptions",
"organizations_url": "https://api.github.com/users/c-host/orgs",
"repos_url": "https://api.github.com/users/c-host/repos",
"events_url": "https://api.github.com/users/c-host/events{/privacy}",
"received_events_url": "https://api.github.com/users/c-host/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2023-02-06T07:19:39Z",
"user": {
"login": "sandreae",
"id": 24291662,
"node_id": "MDQ6VXNlcjI0MjkxNjYy",
"avatar_url": "https://avatars.githubusercontent.com/u/24291662?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/sandreae",
"html_url": "https://github.com/sandreae",
"followers_url": "https://api.github.com/users/sandreae/followers",
"following_url": "https://api.github.com/users/sandreae/following{/other_user}",
"gists_url": "https://api.github.com/users/sandreae/gists{/gist_id}",
"starred_url": "https://api.github.com/users/sandreae/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/sandreae/subscriptions",
"organizations_url": "https://api.github.com/users/sandreae/orgs",
"repos_url": "https://api.github.com/users/sandreae/repos",
"events_url": "https://api.github.com/users/sandreae/events{/privacy}",
"received_events_url": "https://api.github.com/users/sandreae/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2023-02-06T12:38:52Z",
"user": {
"login": "decentral1se",
"id": 1991377,
"node_id": "MDQ6VXNlcjE5OTEzNzc=",
"avatar_url": "https://avatars.githubusercontent.com/u/1991377?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/decentral1se",
"html_url": "https://github.com/decentral1se",
"followers_url": "https://api.github.com/users/decentral1se/followers",
"following_url": "https://api.github.com/users/decentral1se/following{/other_user}",
"gists_url": "https://api.github.com/users/decentral1se/gists{/gist_id}",
"starred_url": "https://api.github.com/users/decentral1se/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/decentral1se/subscriptions",
"organizations_url": "https://api.github.com/users/decentral1se/orgs",
"repos_url": "https://api.github.com/users/decentral1se/repos",
"events_url": "https://api.github.com/users/decentral1se/events{/privacy}",
"received_events_url": "https://api.github.com/users/decentral1se/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2023-02-16T00:31:54Z",
"user": {
"login": "turbolent",
"id": 51661,
"node_id": "MDQ6VXNlcjUxNjYx",
"avatar_url": "https://avatars.githubusercontent.com/u/51661?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/turbolent",
"html_url": "https://github.com/turbolent",
"followers_url": "https://api.github.com/users/turbolent/followers",
"following_url": "https://api.github.com/users/turbolent/following{/other_user}",
"gists_url": "https://api.github.com/users/turbolent/gists{/gist_id}",
"starred_url": "https://api.github.com/users/turbolent/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/turbolent/subscriptions",
"organizations_url": "https://api.github.com/users/turbolent/orgs",
"repos_url": "https://api.github.com/users/turbolent/repos",
"events_url": "https://api.github.com/users/turbolent/events{/privacy}",
"received_events_url": "https://api.github.com/users/turbolent/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2023-02-19T07:08:48Z",
"user": {
"login": "hendursaga",
"id": 65990626,
"node_id": "MDQ6VXNlcjY1OTkwNjI2",
"avatar_url": "https://avatars.githubusercontent.com/u/65990626?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/hendursaga",
"html_url": "https://github.com/hendursaga",
"followers_url": "https://api.github.com/users/hendursaga/followers",
"following_url": "https://api.github.com/users/hendursaga/following{/other_user}",
"gists_url": "https://api.github.com/users/hendursaga/gists{/gist_id}",
"starred_url": "https://api.github.com/users/hendursaga/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/hendursaga/subscriptions",
"organizations_url": "https://api.github.com/users/hendursaga/orgs",
"repos_url": "https://api.github.com/users/hendursaga/repos",
"events_url": "https://api.github.com/users/hendursaga/events{/privacy}",
"received_events_url": "https://api.github.com/users/hendursaga/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2023-02-24T20:09:22Z",
"user": {
"login": "sisyphusSmiling",
"id": 108043524,
"node_id": "U_kgDOBnCdBA",
"avatar_url": "https://avatars.githubusercontent.com/u/108043524?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/sisyphusSmiling",
"html_url": "https://github.com/sisyphusSmiling",
"followers_url": "https://api.github.com/users/sisyphusSmiling/followers",
"following_url": "https://api.github.com/users/sisyphusSmiling/following{/other_user}",
"gists_url": "https://api.github.com/users/sisyphusSmiling/gists{/gist_id}",
"starred_url": "https://api.github.com/users/sisyphusSmiling/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/sisyphusSmiling/subscriptions",
"organizations_url": "https://api.github.com/users/sisyphusSmiling/orgs",
"repos_url": "https://api.github.com/users/sisyphusSmiling/repos",
"events_url": "https://api.github.com/users/sisyphusSmiling/events{/privacy}",
"received_events_url": "https://api.github.com/users/sisyphusSmiling/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2023-03-01T16:02:17Z",
"user": {
"login": "dckc",
"id": 150986,
"node_id": "MDQ6VXNlcjE1MDk4Ng==",
"avatar_url": "https://avatars.githubusercontent.com/u/150986?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/dckc",
"html_url": "https://github.com/dckc",
"followers_url": "https://api.github.com/users/dckc/followers",
"following_url": "https://api.github.com/users/dckc/following{/other_user}",
"gists_url": "https://api.github.com/users/dckc/gists{/gist_id}",
"starred_url": "https://api.github.com/users/dckc/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/dckc/subscriptions",
"organizations_url": "https://api.github.com/users/dckc/orgs",
"repos_url": "https://api.github.com/users/dckc/repos",
"events_url": "https://api.github.com/users/dckc/events{/privacy}",
"received_events_url": "https://api.github.com/users/dckc/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2023-03-01T18:40:40Z",
"user": {
"login": "zmughal",
"id": 94489,
"node_id": "MDQ6VXNlcjk0NDg5",
"avatar_url": "https://avatars.githubusercontent.com/u/94489?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/zmughal",
"html_url": "https://github.com/zmughal",
"followers_url": "https://api.github.com/users/zmughal/followers",
"following_url": "https://api.github.com/users/zmughal/following{/other_user}",
"gists_url": "https://api.github.com/users/zmughal/gists{/gist_id}",
"starred_url": "https://api.github.com/users/zmughal/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/zmughal/subscriptions",
"organizations_url": "https://api.github.com/users/zmughal/orgs",
"repos_url": "https://api.github.com/users/zmughal/repos",
"events_url": "https://api.github.com/users/zmughal/events{/privacy}",
"received_events_url": "https://api.github.com/users/zmughal/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2023-03-08T16:23:00Z",
"user": {
"login": "Jorge-Lopes",
"id": 109155000,
"node_id": "U_kgDOBoGSuA",
"avatar_url": "https://avatars.githubusercontent.com/u/109155000?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/Jorge-Lopes",
"html_url": "https://github.com/Jorge-Lopes",
"followers_url": "https://api.github.com/users/Jorge-Lopes/followers",
"following_url": "https://api.github.com/users/Jorge-Lopes/following{/other_user}",
"gists_url": "https://api.github.com/users/Jorge-Lopes/gists{/gist_id}",
"starred_url": "https://api.github.com/users/Jorge-Lopes/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/Jorge-Lopes/subscriptions",
"organizations_url": "https://api.github.com/users/Jorge-Lopes/orgs",
"repos_url": "https://api.github.com/users/Jorge-Lopes/repos",
"events_url": "https://api.github.com/users/Jorge-Lopes/events{/privacy}",
"received_events_url": "https://api.github.com/users/Jorge-Lopes/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2023-03-28T14:43:56Z",
"user": {
"login": "sergefdrv",
"id": 11386423,
"node_id": "MDQ6VXNlcjExMzg2NDIz",
"avatar_url": "https://avatars.githubusercontent.com/u/11386423?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/sergefdrv",
"html_url": "https://github.com/sergefdrv",
"followers_url": "https://api.github.com/users/sergefdrv/followers",
"following_url": "https://api.github.com/users/sergefdrv/following{/other_user}",
"gists_url": "https://api.github.com/users/sergefdrv/gists{/gist_id}",
"starred_url": "https://api.github.com/users/sergefdrv/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/sergefdrv/subscriptions",
"organizations_url": "https://api.github.com/users/sergefdrv/orgs",
"repos_url": "https://api.github.com/users/sergefdrv/repos",
"events_url": "https://api.github.com/users/sergefdrv/events{/privacy}",
"received_events_url": "https://api.github.com/users/sergefdrv/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2023-04-17T03:46:10Z",
"user": {
"login": "jollm",
"id": 88180,
"node_id": "MDQ6VXNlcjg4MTgw",
"avatar_url": "https://avatars.githubusercontent.com/u/88180?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/jollm",
"html_url": "https://github.com/jollm",
"followers_url": "https://api.github.com/users/jollm/followers",
"following_url": "https://api.github.com/users/jollm/following{/other_user}",
"gists_url": "https://api.github.com/users/jollm/gists{/gist_id}",
"starred_url": "https://api.github.com/users/jollm/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/jollm/subscriptions",
"organizations_url": "https://api.github.com/users/jollm/orgs",
"repos_url": "https://api.github.com/users/jollm/repos",
"events_url": "https://api.github.com/users/jollm/events{/privacy}",
"received_events_url": "https://api.github.com/users/jollm/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2023-06-05T21:07:31Z",
"user": {
"login": "borbe7",
"id": 135288306,
"node_id": "U_kgDOCBBV8g",
"avatar_url": "https://avatars.githubusercontent.com/u/135288306?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/borbe7",
"html_url": "https://github.com/borbe7",
"followers_url": "https://api.github.com/users/borbe7/followers",
"following_url": "https://api.github.com/users/borbe7/following{/other_user}",
"gists_url": "https://api.github.com/users/borbe7/gists{/gist_id}",
"starred_url": "https://api.github.com/users/borbe7/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/borbe7/subscriptions",
"organizations_url": "https://api.github.com/users/borbe7/orgs",
"repos_url": "https://api.github.com/users/borbe7/repos",
"events_url": "https://api.github.com/users/borbe7/events{/privacy}",
"received_events_url": "https://api.github.com/users/borbe7/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2023-06-25T21:58:59Z",
"user": {
"login": "subsidedmonster",
"id": 76004144,
"node_id": "MDQ6VXNlcjc2MDA0MTQ0",
"avatar_url": "https://avatars.githubusercontent.com/u/76004144?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/subsidedmonster",
"html_url": "https://github.com/subsidedmonster",
"followers_url": "https://api.github.com/users/subsidedmonster/followers",
"following_url": "https://api.github.com/users/subsidedmonster/following{/other_user}",
"gists_url": "https://api.github.com/users/subsidedmonster/gists{/gist_id}",
"starred_url": "https://api.github.com/users/subsidedmonster/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/subsidedmonster/subscriptions",
"organizations_url": "https://api.github.com/users/subsidedmonster/orgs",
"repos_url": "https://api.github.com/users/subsidedmonster/repos",
"events_url": "https://api.github.com/users/subsidedmonster/events{/privacy}",
"received_events_url": "https://api.github.com/users/subsidedmonster/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2023-07-22T01:47:36Z",
"user": {
"login": "Abhiroop",
"id": 3116588,
"node_id": "MDQ6VXNlcjMxMTY1ODg=",
"avatar_url": "https://avatars.githubusercontent.com/u/3116588?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/Abhiroop",
"html_url": "https://github.com/Abhiroop",
"followers_url": "https://api.github.com/users/Abhiroop/followers",
"following_url": "https://api.github.com/users/Abhiroop/following{/other_user}",
"gists_url": "https://api.github.com/users/Abhiroop/gists{/gist_id}",
"starred_url": "https://api.github.com/users/Abhiroop/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/Abhiroop/subscriptions",
"organizations_url": "https://api.github.com/users/Abhiroop/orgs",
"repos_url": "https://api.github.com/users/Abhiroop/repos",
"events_url": "https://api.github.com/users/Abhiroop/events{/privacy}",
"received_events_url": "https://api.github.com/users/Abhiroop/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2023-08-06T09:38:11Z",
"user": {
"login": "achou11",
"id": 18542095,
"node_id": "MDQ6VXNlcjE4NTQyMDk1",
"avatar_url": "https://avatars.githubusercontent.com/u/18542095?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/achou11",
"html_url": "https://github.com/achou11",
"followers_url": "https://api.github.com/users/achou11/followers",
"following_url": "https://api.github.com/users/achou11/following{/other_user}",
"gists_url": "https://api.github.com/users/achou11/gists{/gist_id}",
"starred_url": "https://api.github.com/users/achou11/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/achou11/subscriptions",
"organizations_url": "https://api.github.com/users/achou11/orgs",
"repos_url": "https://api.github.com/users/achou11/repos",
"events_url": "https://api.github.com/users/achou11/events{/privacy}",
"received_events_url": "https://api.github.com/users/achou11/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2023-08-06T10:34:49Z",
"user": {
"login": "ryanwild",
"id": 3329470,
"node_id": "MDQ6VXNlcjMzMjk0NzA=",
"avatar_url": "https://avatars.githubusercontent.com/u/3329470?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/ryanwild",
"html_url": "https://github.com/ryanwild",
"followers_url": "https://api.github.com/users/ryanwild/followers",
"following_url": "https://api.github.com/users/ryanwild/following{/other_user}",
"gists_url": "https://api.github.com/users/ryanwild/gists{/gist_id}",
"starred_url": "https://api.github.com/users/ryanwild/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/ryanwild/subscriptions",
"organizations_url": "https://api.github.com/users/ryanwild/orgs",
"repos_url": "https://api.github.com/users/ryanwild/repos",
"events_url": "https://api.github.com/users/ryanwild/events{/privacy}",
"received_events_url": "https://api.github.com/users/ryanwild/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2023-08-06T12:35:02Z",
"user": {
"login": "errbufferoverfl",
"id": 26612068,
"node_id": "MDQ6VXNlcjI2NjEyMDY4",
"avatar_url": "https://avatars.githubusercontent.com/u/26612068?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/errbufferoverfl",
"html_url": "https://github.com/errbufferoverfl",
"followers_url": "https://api.github.com/users/errbufferoverfl/followers",
"following_url": "https://api.github.com/users/errbufferoverfl/following{/other_user}",
"gists_url": "https://api.github.com/users/errbufferoverfl/gists{/gist_id}",
"starred_url": "https://api.github.com/users/errbufferoverfl/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/errbufferoverfl/subscriptions",
"organizations_url": "https://api.github.com/users/errbufferoverfl/orgs",
"repos_url": "https://api.github.com/users/errbufferoverfl/repos",
"events_url": "https://api.github.com/users/errbufferoverfl/events{/privacy}",
"received_events_url": "https://api.github.com/users/errbufferoverfl/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2023-08-06T13:19:49Z",
"user": {
"login": "amirouche",
"id": 7444897,
"node_id": "MDQ6VXNlcjc0NDQ4OTc=",
"avatar_url": "https://avatars.githubusercontent.com/u/7444897?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/amirouche",
"html_url": "https://github.com/amirouche",
"followers_url": "https://api.github.com/users/amirouche/followers",
"following_url": "https://api.github.com/users/amirouche/following{/other_user}",
"gists_url": "https://api.github.com/users/amirouche/gists{/gist_id}",
"starred_url": "https://api.github.com/users/amirouche/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/amirouche/subscriptions",
"organizations_url": "https://api.github.com/users/amirouche/orgs",
"repos_url": "https://api.github.com/users/amirouche/repos",
"events_url": "https://api.github.com/users/amirouche/events{/privacy}",
"received_events_url": "https://api.github.com/users/amirouche/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2023-08-06T13:22:12Z",
"user": {
"login": "lachenmayer",
"id": 38614,
"node_id": "MDQ6VXNlcjM4NjE0",
"avatar_url": "https://avatars.githubusercontent.com/u/38614?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/lachenmayer",
"html_url": "https://github.com/lachenmayer",
"followers_url": "https://api.github.com/users/lachenmayer/followers",
"following_url": "https://api.github.com/users/lachenmayer/following{/other_user}",
"gists_url": "https://api.github.com/users/lachenmayer/gists{/gist_id}",
"starred_url": "https://api.github.com/users/lachenmayer/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/lachenmayer/subscriptions",
"organizations_url": "https://api.github.com/users/lachenmayer/orgs",
"repos_url": "https://api.github.com/users/lachenmayer/repos",
"events_url": "https://api.github.com/users/lachenmayer/events{/privacy}",
"received_events_url": "https://api.github.com/users/lachenmayer/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2023-08-06T17:59:56Z",
"user": {
"login": "frznvm0",
"id": 1688398,
"node_id": "MDQ6VXNlcjE2ODgzOTg=",
"avatar_url": "https://avatars.githubusercontent.com/u/1688398?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/frznvm0",
"html_url": "https://github.com/frznvm0",
"followers_url": "https://api.github.com/users/frznvm0/followers",
"following_url": "https://api.github.com/users/frznvm0/following{/other_user}",
"gists_url": "https://api.github.com/users/frznvm0/gists{/gist_id}",
"starred_url": "https://api.github.com/users/frznvm0/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/frznvm0/subscriptions",
"organizations_url": "https://api.github.com/users/frznvm0/orgs",
"repos_url": "https://api.github.com/users/frznvm0/repos",
"events_url": "https://api.github.com/users/frznvm0/events{/privacy}",
"received_events_url": "https://api.github.com/users/frznvm0/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2023-08-06T22:33:18Z",
"user": {
"login": "rossjones",
"id": 118063,
"node_id": "MDQ6VXNlcjExODA2Mw==",
"avatar_url": "https://avatars.githubusercontent.com/u/118063?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/rossjones",
"html_url": "https://github.com/rossjones",
"followers_url": "https://api.github.com/users/rossjones/followers",
"following_url": "https://api.github.com/users/rossjones/following{/other_user}",
"gists_url": "https://api.github.com/users/rossjones/gists{/gist_id}",
"starred_url": "https://api.github.com/users/rossjones/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/rossjones/subscriptions",
"organizations_url": "https://api.github.com/users/rossjones/orgs",
"repos_url": "https://api.github.com/users/rossjones/repos",
"events_url": "https://api.github.com/users/rossjones/events{/privacy}",
"received_events_url": "https://api.github.com/users/rossjones/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2023-08-08T06:24:45Z",
"user": {
"login": "a12l",
"id": 38804798,
"node_id": "MDQ6VXNlcjM4ODA0Nzk4",
"avatar_url": "https://avatars.githubusercontent.com/u/38804798?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/a12l",
"html_url": "https://github.com/a12l",
"followers_url": "https://api.github.com/users/a12l/followers",
"following_url": "https://api.github.com/users/a12l/following{/other_user}",
"gists_url": "https://api.github.com/users/a12l/gists{/gist_id}",
"starred_url": "https://api.github.com/users/a12l/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/a12l/subscriptions",
"organizations_url": "https://api.github.com/users/a12l/orgs",
"repos_url": "https://api.github.com/users/a12l/repos",
"events_url": "https://api.github.com/users/a12l/events{/privacy}",
"received_events_url": "https://api.github.com/users/a12l/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2023-08-09T07:20:21Z",
"user": {
"login": "kaichaosun",
"id": 10568673,
"node_id": "MDQ6VXNlcjEwNTY4Njcz",
"avatar_url": "https://avatars.githubusercontent.com/u/10568673?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/kaichaosun",
"html_url": "https://github.com/kaichaosun",
"followers_url": "https://api.github.com/users/kaichaosun/followers",
"following_url": "https://api.github.com/users/kaichaosun/following{/other_user}",
"gists_url": "https://api.github.com/users/kaichaosun/gists{/gist_id}",
"starred_url": "https://api.github.com/users/kaichaosun/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/kaichaosun/subscriptions",
"organizations_url": "https://api.github.com/users/kaichaosun/orgs",
"repos_url": "https://api.github.com/users/kaichaosun/repos",
"events_url": "https://api.github.com/users/kaichaosun/events{/privacy}",
"received_events_url": "https://api.github.com/users/kaichaosun/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2023-08-09T20:50:21Z",
"user": {
"login": "walkah",
"id": 15350,
"node_id": "MDQ6VXNlcjE1MzUw",
"avatar_url": "https://avatars.githubusercontent.com/u/15350?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/walkah",
"html_url": "https://github.com/walkah",
"followers_url": "https://api.github.com/users/walkah/followers",
"following_url": "https://api.github.com/users/walkah/following{/other_user}",
"gists_url": "https://api.github.com/users/walkah/gists{/gist_id}",
"starred_url": "https://api.github.com/users/walkah/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/walkah/subscriptions",
"organizations_url": "https://api.github.com/users/walkah/orgs",
"repos_url": "https://api.github.com/users/walkah/repos",
"events_url": "https://api.github.com/users/walkah/events{/privacy}",
"received_events_url": "https://api.github.com/users/walkah/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2023-08-10T00:06:57Z",
"user": {
"login": "madprops",
"id": 206498,
"node_id": "MDQ6VXNlcjIwNjQ5OA==",
"avatar_url": "https://avatars.githubusercontent.com/u/206498?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/madprops",
"html_url": "https://github.com/madprops",
"followers_url": "https://api.github.com/users/madprops/followers",
"following_url": "https://api.github.com/users/madprops/following{/other_user}",
"gists_url": "https://api.github.com/users/madprops/gists{/gist_id}",
"starred_url": "https://api.github.com/users/madprops/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/madprops/subscriptions",
"organizations_url": "https://api.github.com/users/madprops/orgs",
"repos_url": "https://api.github.com/users/madprops/repos",
"events_url": "https://api.github.com/users/madprops/events{/privacy}",
"received_events_url": "https://api.github.com/users/madprops/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2023-08-13T08:15:16Z",
"user": {
"login": "hypotyposis",
"id": 32574270,
"node_id": "MDQ6VXNlcjMyNTc0Mjcw",
"avatar_url": "https://avatars.githubusercontent.com/u/32574270?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/hypotyposis",
"html_url": "https://github.com/hypotyposis",
"followers_url": "https://api.github.com/users/hypotyposis/followers",
"following_url": "https://api.github.com/users/hypotyposis/following{/other_user}",
"gists_url": "https://api.github.com/users/hypotyposis/gists{/gist_id}",
"starred_url": "https://api.github.com/users/hypotyposis/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/hypotyposis/subscriptions",
"organizations_url": "https://api.github.com/users/hypotyposis/orgs",
"repos_url": "https://api.github.com/users/hypotyposis/repos",
"events_url": "https://api.github.com/users/hypotyposis/events{/privacy}",
"received_events_url": "https://api.github.com/users/hypotyposis/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2023-08-18T23:11:48Z",
"user": {
"login": "osbyrne",
"id": 68084397,
"node_id": "MDQ6VXNlcjY4MDg0Mzk3",
"avatar_url": "https://avatars.githubusercontent.com/u/68084397?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/osbyrne",
"html_url": "https://github.com/osbyrne",
"followers_url": "https://api.github.com/users/osbyrne/followers",
"following_url": "https://api.github.com/users/osbyrne/following{/other_user}",
"gists_url": "https://api.github.com/users/osbyrne/gists{/gist_id}",
"starred_url": "https://api.github.com/users/osbyrne/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/osbyrne/subscriptions",
"organizations_url": "https://api.github.com/users/osbyrne/orgs",
"repos_url": "https://api.github.com/users/osbyrne/repos",
"events_url": "https://api.github.com/users/osbyrne/events{/privacy}",
"received_events_url": "https://api.github.com/users/osbyrne/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2023-08-24T01:17:26Z",
"user": {
"login": "alexesDev",
"id": 1255344,
"node_id": "MDQ6VXNlcjEyNTUzNDQ=",
"avatar_url": "https://avatars.githubusercontent.com/u/1255344?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/alexesDev",
"html_url": "https://github.com/alexesDev",
"followers_url": "https://api.github.com/users/alexesDev/followers",
"following_url": "https://api.github.com/users/alexesDev/following{/other_user}",
"gists_url": "https://api.github.com/users/alexesDev/gists{/gist_id}",
"starred_url": "https://api.github.com/users/alexesDev/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/alexesDev/subscriptions",
"organizations_url": "https://api.github.com/users/alexesDev/orgs",
"repos_url": "https://api.github.com/users/alexesDev/repos",
"events_url": "https://api.github.com/users/alexesDev/events{/privacy}",
"received_events_url": "https://api.github.com/users/alexesDev/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2023-08-28T05:15:01Z",
"user": {
"login": "kauruus",
"id": 59005238,
"node_id": "MDQ6VXNlcjU5MDA1MjM4",
"avatar_url": "https://avatars.githubusercontent.com/u/59005238?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/kauruus",
"html_url": "https://github.com/kauruus",
"followers_url": "https://api.github.com/users/kauruus/followers",
"following_url": "https://api.github.com/users/kauruus/following{/other_user}",
"gists_url": "https://api.github.com/users/kauruus/gists{/gist_id}",
"starred_url": "https://api.github.com/users/kauruus/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/kauruus/subscriptions",
"organizations_url": "https://api.github.com/users/kauruus/orgs",
"repos_url": "https://api.github.com/users/kauruus/repos",
"events_url": "https://api.github.com/users/kauruus/events{/privacy}",
"received_events_url": "https://api.github.com/users/kauruus/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2023-09-12T00:58:45Z",
"user": {
"login": "marcgreen",
"id": 669965,
"node_id": "MDQ6VXNlcjY2OTk2NQ==",
"avatar_url": "https://avatars.githubusercontent.com/u/669965?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/marcgreen",
"html_url": "https://github.com/marcgreen",
"followers_url": "https://api.github.com/users/marcgreen/followers",
"following_url": "https://api.github.com/users/marcgreen/following{/other_user}",
"gists_url": "https://api.github.com/users/marcgreen/gists{/gist_id}",
"starred_url": "https://api.github.com/users/marcgreen/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/marcgreen/subscriptions",
"organizations_url": "https://api.github.com/users/marcgreen/orgs",
"repos_url": "https://api.github.com/users/marcgreen/repos",
"events_url": "https://api.github.com/users/marcgreen/events{/privacy}",
"received_events_url": "https://api.github.com/users/marcgreen/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2023-09-15T01:27:55Z",
"user": {
"login": "codeck",
"id": 1709667,
"node_id": "MDQ6VXNlcjE3MDk2Njc=",
"avatar_url": "https://avatars.githubusercontent.com/u/1709667?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/codeck",
"html_url": "https://github.com/codeck",
"followers_url": "https://api.github.com/users/codeck/followers",
"following_url": "https://api.github.com/users/codeck/following{/other_user}",
"gists_url": "https://api.github.com/users/codeck/gists{/gist_id}",
"starred_url": "https://api.github.com/users/codeck/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/codeck/subscriptions",
"organizations_url": "https://api.github.com/users/codeck/orgs",
"repos_url": "https://api.github.com/users/codeck/repos",
"events_url": "https://api.github.com/users/codeck/events{/privacy}",
"received_events_url": "https://api.github.com/users/codeck/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2023-11-01T18:15:47Z",
"user": {
"login": "boneskull",
"id": 924465,
"node_id": "MDQ6VXNlcjkyNDQ2NQ==",
"avatar_url": "https://avatars.githubusercontent.com/u/924465?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/boneskull",
"html_url": "https://github.com/boneskull",
"followers_url": "https://api.github.com/users/boneskull/followers",
"following_url": "https://api.github.com/users/boneskull/following{/other_user}",
"gists_url": "https://api.github.com/users/boneskull/gists{/gist_id}",
"starred_url": "https://api.github.com/users/boneskull/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/boneskull/subscriptions",
"organizations_url": "https://api.github.com/users/boneskull/orgs",
"repos_url": "https://api.github.com/users/boneskull/repos",
"events_url": "https://api.github.com/users/boneskull/events{/privacy}",
"received_events_url": "https://api.github.com/users/boneskull/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2023-11-08T13:50:44Z",
"user": {
"login": "aebm",
"id": 1186256,
"node_id": "MDQ6VXNlcjExODYyNTY=",
"avatar_url": "https://avatars.githubusercontent.com/u/1186256?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/aebm",
"html_url": "https://github.com/aebm",
"followers_url": "https://api.github.com/users/aebm/followers",
"following_url": "https://api.github.com/users/aebm/following{/other_user}",
"gists_url": "https://api.github.com/users/aebm/gists{/gist_id}",
"starred_url": "https://api.github.com/users/aebm/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/aebm/subscriptions",
"organizations_url": "https://api.github.com/users/aebm/orgs",
"repos_url": "https://api.github.com/users/aebm/repos",
"events_url": "https://api.github.com/users/aebm/events{/privacy}",
"received_events_url": "https://api.github.com/users/aebm/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2023-11-13T10:38:11Z",
"user": {
"login": "spy-t",
"id": 42170899,
"node_id": "MDQ6VXNlcjQyMTcwODk5",
"avatar_url": "https://avatars.githubusercontent.com/u/42170899?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/spy-t",
"html_url": "https://github.com/spy-t",
"followers_url": "https://api.github.com/users/spy-t/followers",
"following_url": "https://api.github.com/users/spy-t/following{/other_user}",
"gists_url": "https://api.github.com/users/spy-t/gists{/gist_id}",
"starred_url": "https://api.github.com/users/spy-t/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/spy-t/subscriptions",
"organizations_url": "https://api.github.com/users/spy-t/orgs",
"repos_url": "https://api.github.com/users/spy-t/repos",
"events_url": "https://api.github.com/users/spy-t/events{/privacy}",
"received_events_url": "https://api.github.com/users/spy-t/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2023-11-13T13:31:34Z",
"user": {
"login": "metanivek",
"id": 87719817,
"node_id": "MDQ6VXNlcjg3NzE5ODE3",
"avatar_url": "https://avatars.githubusercontent.com/u/87719817?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/metanivek",
"html_url": "https://github.com/metanivek",
"followers_url": "https://api.github.com/users/metanivek/followers",
"following_url": "https://api.github.com/users/metanivek/following{/other_user}",
"gists_url": "https://api.github.com/users/metanivek/gists{/gist_id}",
"starred_url": "https://api.github.com/users/metanivek/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/metanivek/subscriptions",
"organizations_url": "https://api.github.com/users/metanivek/orgs",
"repos_url": "https://api.github.com/users/metanivek/repos",
"events_url": "https://api.github.com/users/metanivek/events{/privacy}",
"received_events_url": "https://api.github.com/users/metanivek/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2023-11-13T14:21:58Z",
"user": {
"login": "psy-q",
"id": 87557,
"node_id": "MDQ6VXNlcjg3NTU3",
"avatar_url": "https://avatars.githubusercontent.com/u/87557?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/psy-q",
"html_url": "https://github.com/psy-q",
"followers_url": "https://api.github.com/users/psy-q/followers",
"following_url": "https://api.github.com/users/psy-q/following{/other_user}",
"gists_url": "https://api.github.com/users/psy-q/gists{/gist_id}",
"starred_url": "https://api.github.com/users/psy-q/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/psy-q/subscriptions",
"organizations_url": "https://api.github.com/users/psy-q/orgs",
"repos_url": "https://api.github.com/users/psy-q/repos",
"events_url": "https://api.github.com/users/psy-q/events{/privacy}",
"received_events_url": "https://api.github.com/users/psy-q/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2023-11-13T23:34:53Z",
"user": {
"login": "walkr",
"id": 5104850,
"node_id": "MDQ6VXNlcjUxMDQ4NTA=",
"avatar_url": "https://avatars.githubusercontent.com/u/5104850?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/walkr",
"html_url": "https://github.com/walkr",
"followers_url": "https://api.github.com/users/walkr/followers",
"following_url": "https://api.github.com/users/walkr/following{/other_user}",
"gists_url": "https://api.github.com/users/walkr/gists{/gist_id}",
"starred_url": "https://api.github.com/users/walkr/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/walkr/subscriptions",
"organizations_url": "https://api.github.com/users/walkr/orgs",
"repos_url": "https://api.github.com/users/walkr/repos",
"events_url": "https://api.github.com/users/walkr/events{/privacy}",
"received_events_url": "https://api.github.com/users/walkr/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2023-11-14T12:54:09Z",
"user": {
"login": "alhassanaraouf",
"id": 56361750,
"node_id": "MDQ6VXNlcjU2MzYxNzUw",
"avatar_url": "https://avatars.githubusercontent.com/u/56361750?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/alhassanaraouf",
"html_url": "https://github.com/alhassanaraouf",
"followers_url": "https://api.github.com/users/alhassanaraouf/followers",
"following_url": "https://api.github.com/users/alhassanaraouf/following{/other_user}",
"gists_url": "https://api.github.com/users/alhassanaraouf/gists{/gist_id}",
"starred_url": "https://api.github.com/users/alhassanaraouf/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/alhassanaraouf/subscriptions",
"organizations_url": "https://api.github.com/users/alhassanaraouf/orgs",
"repos_url": "https://api.github.com/users/alhassanaraouf/repos",
"events_url": "https://api.github.com/users/alhassanaraouf/events{/privacy}",
"received_events_url": "https://api.github.com/users/alhassanaraouf/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2023-11-14T21:09:43Z",
"user": {
"login": "c5m",
"id": 5160123,
"node_id": "MDQ6VXNlcjUxNjAxMjM=",
"avatar_url": "https://avatars.githubusercontent.com/u/5160123?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/c5m",
"html_url": "https://github.com/c5m",
"followers_url": "https://api.github.com/users/c5m/followers",
"following_url": "https://api.github.com/users/c5m/following{/other_user}",
"gists_url": "https://api.github.com/users/c5m/gists{/gist_id}",
"starred_url": "https://api.github.com/users/c5m/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/c5m/subscriptions",
"organizations_url": "https://api.github.com/users/c5m/orgs",
"repos_url": "https://api.github.com/users/c5m/repos",
"events_url": "https://api.github.com/users/c5m/events{/privacy}",
"received_events_url": "https://api.github.com/users/c5m/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2023-11-15T10:54:18Z",
"user": {
"login": "ibrhmkoz",
"id": 56649553,
"node_id": "MDQ6VXNlcjU2NjQ5NTUz",
"avatar_url": "https://avatars.githubusercontent.com/u/56649553?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/ibrhmkoz",
"html_url": "https://github.com/ibrhmkoz",
"followers_url": "https://api.github.com/users/ibrhmkoz/followers",
"following_url": "https://api.github.com/users/ibrhmkoz/following{/other_user}",
"gists_url": "https://api.github.com/users/ibrhmkoz/gists{/gist_id}",
"starred_url": "https://api.github.com/users/ibrhmkoz/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/ibrhmkoz/subscriptions",
"organizations_url": "https://api.github.com/users/ibrhmkoz/orgs",
"repos_url": "https://api.github.com/users/ibrhmkoz/repos",
"events_url": "https://api.github.com/users/ibrhmkoz/events{/privacy}",
"received_events_url": "https://api.github.com/users/ibrhmkoz/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2023-11-16T20:14:05Z",
"user": {
"login": "erythronelumbo",
"id": 13280858,
"node_id": "MDQ6VXNlcjEzMjgwODU4",
"avatar_url": "https://avatars.githubusercontent.com/u/13280858?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/erythronelumbo",
"html_url": "https://github.com/erythronelumbo",
"followers_url": "https://api.github.com/users/erythronelumbo/followers",
"following_url": "https://api.github.com/users/erythronelumbo/following{/other_user}",
"gists_url": "https://api.github.com/users/erythronelumbo/gists{/gist_id}",
"starred_url": "https://api.github.com/users/erythronelumbo/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/erythronelumbo/subscriptions",
"organizations_url": "https://api.github.com/users/erythronelumbo/orgs",
"repos_url": "https://api.github.com/users/erythronelumbo/repos",
"events_url": "https://api.github.com/users/erythronelumbo/events{/privacy}",
"received_events_url": "https://api.github.com/users/erythronelumbo/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2023-11-17T07:04:03Z",
"user": {
"login": "gallypette",
"id": 329725,
"node_id": "MDQ6VXNlcjMyOTcyNQ==",
"avatar_url": "https://avatars.githubusercontent.com/u/329725?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/gallypette",
"html_url": "https://github.com/gallypette",
"followers_url": "https://api.github.com/users/gallypette/followers",
"following_url": "https://api.github.com/users/gallypette/following{/other_user}",
"gists_url": "https://api.github.com/users/gallypette/gists{/gist_id}",
"starred_url": "https://api.github.com/users/gallypette/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/gallypette/subscriptions",
"organizations_url": "https://api.github.com/users/gallypette/orgs",
"repos_url": "https://api.github.com/users/gallypette/repos",
"events_url": "https://api.github.com/users/gallypette/events{/privacy}",
"received_events_url": "https://api.github.com/users/gallypette/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2023-12-11T13:19:56Z",
"user": {
"login": "SMotaal",
"id": 849613,
"node_id": "MDQ6VXNlcjg0OTYxMw==",
"avatar_url": "https://avatars.githubusercontent.com/u/849613?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/SMotaal",
"html_url": "https://github.com/SMotaal",
"followers_url": "https://api.github.com/users/SMotaal/followers",
"following_url": "https://api.github.com/users/SMotaal/following{/other_user}",
"gists_url": "https://api.github.com/users/SMotaal/gists{/gist_id}",
"starred_url": "https://api.github.com/users/SMotaal/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/SMotaal/subscriptions",
"organizations_url": "https://api.github.com/users/SMotaal/orgs",
"repos_url": "https://api.github.com/users/SMotaal/repos",
"events_url": "https://api.github.com/users/SMotaal/events{/privacy}",
"received_events_url": "https://api.github.com/users/SMotaal/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2023-12-15T01:51:13Z",
"user": {
"login": "elofaso",
"id": 3916605,
"node_id": "MDQ6VXNlcjM5MTY2MDU=",
"avatar_url": "https://avatars.githubusercontent.com/u/3916605?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/elofaso",
"html_url": "https://github.com/elofaso",
"followers_url": "https://api.github.com/users/elofaso/followers",
"following_url": "https://api.github.com/users/elofaso/following{/other_user}",
"gists_url": "https://api.github.com/users/elofaso/gists{/gist_id}",
"starred_url": "https://api.github.com/users/elofaso/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/elofaso/subscriptions",
"organizations_url": "https://api.github.com/users/elofaso/orgs",
"repos_url": "https://api.github.com/users/elofaso/repos",
"events_url": "https://api.github.com/users/elofaso/events{/privacy}",
"received_events_url": "https://api.github.com/users/elofaso/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2023-12-17T16:57:46Z",
"user": {
"login": "jasonwbarnett",
"id": 862300,
"node_id": "MDQ6VXNlcjg2MjMwMA==",
"avatar_url": "https://avatars.githubusercontent.com/u/862300?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/jasonwbarnett",
"html_url": "https://github.com/jasonwbarnett",
"followers_url": "https://api.github.com/users/jasonwbarnett/followers",
"following_url": "https://api.github.com/users/jasonwbarnett/following{/other_user}",
"gists_url": "https://api.github.com/users/jasonwbarnett/gists{/gist_id}",
"starred_url": "https://api.github.com/users/jasonwbarnett/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/jasonwbarnett/subscriptions",
"organizations_url": "https://api.github.com/users/jasonwbarnett/orgs",
"repos_url": "https://api.github.com/users/jasonwbarnett/repos",
"events_url": "https://api.github.com/users/jasonwbarnett/events{/privacy}",
"received_events_url": "https://api.github.com/users/jasonwbarnett/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2024-02-07T08:24:18Z",
"user": {
"login": "megdtay86",
"id": 159226844,
"node_id": "U_kgDOCX2b3A",
"avatar_url": "https://avatars.githubusercontent.com/u/159226844?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/megdtay86",
"html_url": "https://github.com/megdtay86",
"followers_url": "https://api.github.com/users/megdtay86/followers",
"following_url": "https://api.github.com/users/megdtay86/following{/other_user}",
"gists_url": "https://api.github.com/users/megdtay86/gists{/gist_id}",
"starred_url": "https://api.github.com/users/megdtay86/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/megdtay86/subscriptions",
"organizations_url": "https://api.github.com/users/megdtay86/orgs",
"repos_url": "https://api.github.com/users/megdtay86/repos",
"events_url": "https://api.github.com/users/megdtay86/events{/privacy}",
"received_events_url": "https://api.github.com/users/megdtay86/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2024-02-16T22:00:56Z",
"user": {
"login": "LuqiPan",
"id": 4568282,
"node_id": "MDQ6VXNlcjQ1NjgyODI=",
"avatar_url": "https://avatars.githubusercontent.com/u/4568282?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/LuqiPan",
"html_url": "https://github.com/LuqiPan",
"followers_url": "https://api.github.com/users/LuqiPan/followers",
"following_url": "https://api.github.com/users/LuqiPan/following{/other_user}",
"gists_url": "https://api.github.com/users/LuqiPan/gists{/gist_id}",
"starred_url": "https://api.github.com/users/LuqiPan/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/LuqiPan/subscriptions",
"organizations_url": "https://api.github.com/users/LuqiPan/orgs",
"repos_url": "https://api.github.com/users/LuqiPan/repos",
"events_url": "https://api.github.com/users/LuqiPan/events{/privacy}",
"received_events_url": "https://api.github.com/users/LuqiPan/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2024-02-21T07:48:59Z",
"user": {
"login": "Hudi233",
"id": 20939673,
"node_id": "MDQ6VXNlcjIwOTM5Njcz",
"avatar_url": "https://avatars.githubusercontent.com/u/20939673?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/Hudi233",
"html_url": "https://github.com/Hudi233",
"followers_url": "https://api.github.com/users/Hudi233/followers",
"following_url": "https://api.github.com/users/Hudi233/following{/other_user}",
"gists_url": "https://api.github.com/users/Hudi233/gists{/gist_id}",
"starred_url": "https://api.github.com/users/Hudi233/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/Hudi233/subscriptions",
"organizations_url": "https://api.github.com/users/Hudi233/orgs",
"repos_url": "https://api.github.com/users/Hudi233/repos",
"events_url": "https://api.github.com/users/Hudi233/events{/privacy}",
"received_events_url": "https://api.github.com/users/Hudi233/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2024-02-21T09:29:37Z",
"user": {
"login": "druggo",
"id": 91356,
"node_id": "MDQ6VXNlcjkxMzU2",
"avatar_url": "https://avatars.githubusercontent.com/u/91356?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/druggo",
"html_url": "https://github.com/druggo",
"followers_url": "https://api.github.com/users/druggo/followers",
"following_url": "https://api.github.com/users/druggo/following{/other_user}",
"gists_url": "https://api.github.com/users/druggo/gists{/gist_id}",
"starred_url": "https://api.github.com/users/druggo/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/druggo/subscriptions",
"organizations_url": "https://api.github.com/users/druggo/orgs",
"repos_url": "https://api.github.com/users/druggo/repos",
"events_url": "https://api.github.com/users/druggo/events{/privacy}",
"received_events_url": "https://api.github.com/users/druggo/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2024-03-04T14:41:29Z",
"user": {
"login": "Nabil372",
"id": 25856224,
"node_id": "MDQ6VXNlcjI1ODU2MjI0",
"avatar_url": "https://avatars.githubusercontent.com/u/25856224?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/Nabil372",
"html_url": "https://github.com/Nabil372",
"followers_url": "https://api.github.com/users/Nabil372/followers",
"following_url": "https://api.github.com/users/Nabil372/following{/other_user}",
"gists_url": "https://api.github.com/users/Nabil372/gists{/gist_id}",
"starred_url": "https://api.github.com/users/Nabil372/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/Nabil372/subscriptions",
"organizations_url": "https://api.github.com/users/Nabil372/orgs",
"repos_url": "https://api.github.com/users/Nabil372/repos",
"events_url": "https://api.github.com/users/Nabil372/events{/privacy}",
"received_events_url": "https://api.github.com/users/Nabil372/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2024-03-06T11:21:26Z",
"user": {
"login": "abhi-go",
"id": 86805484,
"node_id": "MDQ6VXNlcjg2ODA1NDg0",
"avatar_url": "https://avatars.githubusercontent.com/u/86805484?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/abhi-go",
"html_url": "https://github.com/abhi-go",
"followers_url": "https://api.github.com/users/abhi-go/followers",
"following_url": "https://api.github.com/users/abhi-go/following{/other_user}",
"gists_url": "https://api.github.com/users/abhi-go/gists{/gist_id}",
"starred_url": "https://api.github.com/users/abhi-go/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/abhi-go/subscriptions",
"organizations_url": "https://api.github.com/users/abhi-go/orgs",
"repos_url": "https://api.github.com/users/abhi-go/repos",
"events_url": "https://api.github.com/users/abhi-go/events{/privacy}",
"received_events_url": "https://api.github.com/users/abhi-go/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2024-03-07T15:34:34Z",
"user": {
"login": "pnpolcher",
"id": 7134542,
"node_id": "MDQ6VXNlcjcxMzQ1NDI=",
"avatar_url": "https://avatars.githubusercontent.com/u/7134542?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/pnpolcher",
"html_url": "https://github.com/pnpolcher",
"followers_url": "https://api.github.com/users/pnpolcher/followers",
"following_url": "https://api.github.com/users/pnpolcher/following{/other_user}",
"gists_url": "https://api.github.com/users/pnpolcher/gists{/gist_id}",
"starred_url": "https://api.github.com/users/pnpolcher/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/pnpolcher/subscriptions",
"organizations_url": "https://api.github.com/users/pnpolcher/orgs",
"repos_url": "https://api.github.com/users/pnpolcher/repos",
"events_url": "https://api.github.com/users/pnpolcher/events{/privacy}",
"received_events_url": "https://api.github.com/users/pnpolcher/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2024-03-08T08:52:12Z",
"user": {
"login": "Astrotony",
"id": 110690146,
"node_id": "U_kgDOBpj_Yg",
"avatar_url": "https://avatars.githubusercontent.com/u/110690146?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/Astrotony",
"html_url": "https://github.com/Astrotony",
"followers_url": "https://api.github.com/users/Astrotony/followers",
"following_url": "https://api.github.com/users/Astrotony/following{/other_user}",
"gists_url": "https://api.github.com/users/Astrotony/gists{/gist_id}",
"starred_url": "https://api.github.com/users/Astrotony/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/Astrotony/subscriptions",
"organizations_url": "https://api.github.com/users/Astrotony/orgs",
"repos_url": "https://api.github.com/users/Astrotony/repos",
"events_url": "https://api.github.com/users/Astrotony/events{/privacy}",
"received_events_url": "https://api.github.com/users/Astrotony/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2024-03-13T15:17:20Z",
"user": {
"login": "lllleonnnn",
"id": 2438061,
"node_id": "MDQ6VXNlcjI0MzgwNjE=",
"avatar_url": "https://avatars.githubusercontent.com/u/2438061?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/lllleonnnn",
"html_url": "https://github.com/lllleonnnn",
"followers_url": "https://api.github.com/users/lllleonnnn/followers",
"following_url": "https://api.github.com/users/lllleonnnn/following{/other_user}",
"gists_url": "https://api.github.com/users/lllleonnnn/gists{/gist_id}",
"starred_url": "https://api.github.com/users/lllleonnnn/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/lllleonnnn/subscriptions",
"organizations_url": "https://api.github.com/users/lllleonnnn/orgs",
"repos_url": "https://api.github.com/users/lllleonnnn/repos",
"events_url": "https://api.github.com/users/lllleonnnn/events{/privacy}",
"received_events_url": "https://api.github.com/users/lllleonnnn/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2024-03-20T01:34:32Z",
"user": {
"login": "RustyCobalt36",
"id": 22773164,
"node_id": "MDQ6VXNlcjIyNzczMTY0",
"avatar_url": "https://avatars.githubusercontent.com/u/22773164?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/RustyCobalt36",
"html_url": "https://github.com/RustyCobalt36",
"followers_url": "https://api.github.com/users/RustyCobalt36/followers",
"following_url": "https://api.github.com/users/RustyCobalt36/following{/other_user}",
"gists_url": "https://api.github.com/users/RustyCobalt36/gists{/gist_id}",
"starred_url": "https://api.github.com/users/RustyCobalt36/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/RustyCobalt36/subscriptions",
"organizations_url": "https://api.github.com/users/RustyCobalt36/orgs",
"repos_url": "https://api.github.com/users/RustyCobalt36/repos",
"events_url": "https://api.github.com/users/RustyCobalt36/events{/privacy}",
"received_events_url": "https://api.github.com/users/RustyCobalt36/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2024-04-05T08:40:14Z",
"user": {
"login": "adom2245a",
"id": 161538813,
"node_id": "U_kgDOCaDi_Q",
"avatar_url": "https://avatars.githubusercontent.com/u/161538813?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/adom2245a",
"html_url": "https://github.com/adom2245a",
"followers_url": "https://api.github.com/users/adom2245a/followers",
"following_url": "https://api.github.com/users/adom2245a/following{/other_user}",
"gists_url": "https://api.github.com/users/adom2245a/gists{/gist_id}",
"starred_url": "https://api.github.com/users/adom2245a/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/adom2245a/subscriptions",
"organizations_url": "https://api.github.com/users/adom2245a/orgs",
"repos_url": "https://api.github.com/users/adom2245a/repos",
"events_url": "https://api.github.com/users/adom2245a/events{/privacy}",
"received_events_url": "https://api.github.com/users/adom2245a/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2024-04-15T19:46:30Z",
"user": {
"login": "DiegoAlpizar",
"id": 48010731,
"node_id": "MDQ6VXNlcjQ4MDEwNzMx",
"avatar_url": "https://avatars.githubusercontent.com/u/48010731?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/DiegoAlpizar",
"html_url": "https://github.com/DiegoAlpizar",
"followers_url": "https://api.github.com/users/DiegoAlpizar/followers",
"following_url": "https://api.github.com/users/DiegoAlpizar/following{/other_user}",
"gists_url": "https://api.github.com/users/DiegoAlpizar/gists{/gist_id}",
"starred_url": "https://api.github.com/users/DiegoAlpizar/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/DiegoAlpizar/subscriptions",
"organizations_url": "https://api.github.com/users/DiegoAlpizar/orgs",
"repos_url": "https://api.github.com/users/DiegoAlpizar/repos",
"events_url": "https://api.github.com/users/DiegoAlpizar/events{/privacy}",
"received_events_url": "https://api.github.com/users/DiegoAlpizar/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2024-04-17T03:39:32Z",
"user": {
"login": "1ort",
"id": 83316072,
"node_id": "MDQ6VXNlcjgzMzE2MDcy",
"avatar_url": "https://avatars.githubusercontent.com/u/83316072?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/1ort",
"html_url": "https://github.com/1ort",
"followers_url": "https://api.github.com/users/1ort/followers",
"following_url": "https://api.github.com/users/1ort/following{/other_user}",
"gists_url": "https://api.github.com/users/1ort/gists{/gist_id}",
"starred_url": "https://api.github.com/users/1ort/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/1ort/subscriptions",
"organizations_url": "https://api.github.com/users/1ort/orgs",
"repos_url": "https://api.github.com/users/1ort/repos",
"events_url": "https://api.github.com/users/1ort/events{/privacy}",
"received_events_url": "https://api.github.com/users/1ort/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2024-04-17T18:10:05Z",
"user": {
"login": "alumowa",
"id": 440196,
"node_id": "MDQ6VXNlcjQ0MDE5Ng==",
"avatar_url": "https://avatars.githubusercontent.com/u/440196?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/alumowa",
"html_url": "https://github.com/alumowa",
"followers_url": "https://api.github.com/users/alumowa/followers",
"following_url": "https://api.github.com/users/alumowa/following{/other_user}",
"gists_url": "https://api.github.com/users/alumowa/gists{/gist_id}",
"starred_url": "https://api.github.com/users/alumowa/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/alumowa/subscriptions",
"organizations_url": "https://api.github.com/users/alumowa/orgs",
"repos_url": "https://api.github.com/users/alumowa/repos",
"events_url": "https://api.github.com/users/alumowa/events{/privacy}",
"received_events_url": "https://api.github.com/users/alumowa/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2024-05-13T04:05:15Z",
"user": {
"login": "johnm",
"id": 8661,
"node_id": "MDQ6VXNlcjg2NjE=",
"avatar_url": "https://avatars.githubusercontent.com/u/8661?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/johnm",
"html_url": "https://github.com/johnm",
"followers_url": "https://api.github.com/users/johnm/followers",
"following_url": "https://api.github.com/users/johnm/following{/other_user}",
"gists_url": "https://api.github.com/users/johnm/gists{/gist_id}",
"starred_url": "https://api.github.com/users/johnm/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/johnm/subscriptions",
"organizations_url": "https://api.github.com/users/johnm/orgs",
"repos_url": "https://api.github.com/users/johnm/repos",
"events_url": "https://api.github.com/users/johnm/events{/privacy}",
"received_events_url": "https://api.github.com/users/johnm/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2024-05-13T05:47:48Z",
"user": {
"login": "graememcc",
"id": 1250026,
"node_id": "MDQ6VXNlcjEyNTAwMjY=",
"avatar_url": "https://avatars.githubusercontent.com/u/1250026?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/graememcc",
"html_url": "https://github.com/graememcc",
"followers_url": "https://api.github.com/users/graememcc/followers",
"following_url": "https://api.github.com/users/graememcc/following{/other_user}",
"gists_url": "https://api.github.com/users/graememcc/gists{/gist_id}",
"starred_url": "https://api.github.com/users/graememcc/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/graememcc/subscriptions",
"organizations_url": "https://api.github.com/users/graememcc/orgs",
"repos_url": "https://api.github.com/users/graememcc/repos",
"events_url": "https://api.github.com/users/graememcc/events{/privacy}",
"received_events_url": "https://api.github.com/users/graememcc/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2024-05-13T07:20:38Z",
"user": {
"login": "tyxieblub",
"id": 5111464,
"node_id": "MDQ6VXNlcjUxMTE0NjQ=",
"avatar_url": "https://avatars.githubusercontent.com/u/5111464?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/tyxieblub",
"html_url": "https://github.com/tyxieblub",
"followers_url": "https://api.github.com/users/tyxieblub/followers",
"following_url": "https://api.github.com/users/tyxieblub/following{/other_user}",
"gists_url": "https://api.github.com/users/tyxieblub/gists{/gist_id}",
"starred_url": "https://api.github.com/users/tyxieblub/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/tyxieblub/subscriptions",
"organizations_url": "https://api.github.com/users/tyxieblub/orgs",
"repos_url": "https://api.github.com/users/tyxieblub/repos",
"events_url": "https://api.github.com/users/tyxieblub/events{/privacy}",
"received_events_url": "https://api.github.com/users/tyxieblub/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2024-05-13T13:42:43Z",
"user": {
"login": "Nathan-Furnal",
"id": 45597572,
"node_id": "MDQ6VXNlcjQ1NTk3NTcy",
"avatar_url": "https://avatars.githubusercontent.com/u/45597572?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/Nathan-Furnal",
"html_url": "https://github.com/Nathan-Furnal",
"followers_url": "https://api.github.com/users/Nathan-Furnal/followers",
"following_url": "https://api.github.com/users/Nathan-Furnal/following{/other_user}",
"gists_url": "https://api.github.com/users/Nathan-Furnal/gists{/gist_id}",
"starred_url": "https://api.github.com/users/Nathan-Furnal/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/Nathan-Furnal/subscriptions",
"organizations_url": "https://api.github.com/users/Nathan-Furnal/orgs",
"repos_url": "https://api.github.com/users/Nathan-Furnal/repos",
"events_url": "https://api.github.com/users/Nathan-Furnal/events{/privacy}",
"received_events_url": "https://api.github.com/users/Nathan-Furnal/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2024-05-18T20:23:41Z",
"user": {
"login": "compwron",
"id": 578159,
"node_id": "MDQ6VXNlcjU3ODE1OQ==",
"avatar_url": "https://avatars.githubusercontent.com/u/578159?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/compwron",
"html_url": "https://github.com/compwron",
"followers_url": "https://api.github.com/users/compwron/followers",
"following_url": "https://api.github.com/users/compwron/following{/other_user}",
"gists_url": "https://api.github.com/users/compwron/gists{/gist_id}",
"starred_url": "https://api.github.com/users/compwron/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/compwron/subscriptions",
"organizations_url": "https://api.github.com/users/compwron/orgs",
"repos_url": "https://api.github.com/users/compwron/repos",
"events_url": "https://api.github.com/users/compwron/events{/privacy}",
"received_events_url": "https://api.github.com/users/compwron/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2024-05-24T21:01:08Z",
"user": {
"login": "burdiyan",
"id": 1793789,
"node_id": "MDQ6VXNlcjE3OTM3ODk=",
"avatar_url": "https://avatars.githubusercontent.com/u/1793789?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/burdiyan",
"html_url": "https://github.com/burdiyan",
"followers_url": "https://api.github.com/users/burdiyan/followers",
"following_url": "https://api.github.com/users/burdiyan/following{/other_user}",
"gists_url": "https://api.github.com/users/burdiyan/gists{/gist_id}",
"starred_url": "https://api.github.com/users/burdiyan/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/burdiyan/subscriptions",
"organizations_url": "https://api.github.com/users/burdiyan/orgs",
"repos_url": "https://api.github.com/users/burdiyan/repos",
"events_url": "https://api.github.com/users/burdiyan/events{/privacy}",
"received_events_url": "https://api.github.com/users/burdiyan/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2024-06-05T18:04:32Z",
"user": {
"login": "gregory-koenig",
"id": 38752983,
"node_id": "MDQ6VXNlcjM4NzUyOTgz",
"avatar_url": "https://avatars.githubusercontent.com/u/38752983?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/gregory-koenig",
"html_url": "https://github.com/gregory-koenig",
"followers_url": "https://api.github.com/users/gregory-koenig/followers",
"following_url": "https://api.github.com/users/gregory-koenig/following{/other_user}",
"gists_url": "https://api.github.com/users/gregory-koenig/gists{/gist_id}",
"starred_url": "https://api.github.com/users/gregory-koenig/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/gregory-koenig/subscriptions",
"organizations_url": "https://api.github.com/users/gregory-koenig/orgs",
"repos_url": "https://api.github.com/users/gregory-koenig/repos",
"events_url": "https://api.github.com/users/gregory-koenig/events{/privacy}",
"received_events_url": "https://api.github.com/users/gregory-koenig/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2024-06-13T11:51:02Z",
"user": {
"login": "xrockat",
"id": 172503508,
"node_id": "U_kgDOCkgx1A",
"avatar_url": "https://avatars.githubusercontent.com/u/172503508?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/xrockat",
"html_url": "https://github.com/xrockat",
"followers_url": "https://api.github.com/users/xrockat/followers",
"following_url": "https://api.github.com/users/xrockat/following{/other_user}",
"gists_url": "https://api.github.com/users/xrockat/gists{/gist_id}",
"starred_url": "https://api.github.com/users/xrockat/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/xrockat/subscriptions",
"organizations_url": "https://api.github.com/users/xrockat/orgs",
"repos_url": "https://api.github.com/users/xrockat/repos",
"events_url": "https://api.github.com/users/xrockat/events{/privacy}",
"received_events_url": "https://api.github.com/users/xrockat/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2024-06-25T19:08:24Z",
"user": {
"login": "Jovonni",
"id": 4885245,
"node_id": "MDQ6VXNlcjQ4ODUyNDU=",
"avatar_url": "https://avatars.githubusercontent.com/u/4885245?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/Jovonni",
"html_url": "https://github.com/Jovonni",
"followers_url": "https://api.github.com/users/Jovonni/followers",
"following_url": "https://api.github.com/users/Jovonni/following{/other_user}",
"gists_url": "https://api.github.com/users/Jovonni/gists{/gist_id}",
"starred_url": "https://api.github.com/users/Jovonni/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/Jovonni/subscriptions",
"organizations_url": "https://api.github.com/users/Jovonni/orgs",
"repos_url": "https://api.github.com/users/Jovonni/repos",
"events_url": "https://api.github.com/users/Jovonni/events{/privacy}",
"received_events_url": "https://api.github.com/users/Jovonni/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2024-07-04T00:42:22Z",
"user": {
"login": "spencerflem",
"id": 5193628,
"node_id": "MDQ6VXNlcjUxOTM2Mjg=",
"avatar_url": "https://avatars.githubusercontent.com/u/5193628?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/spencerflem",
"html_url": "https://github.com/spencerflem",
"followers_url": "https://api.github.com/users/spencerflem/followers",
"following_url": "https://api.github.com/users/spencerflem/following{/other_user}",
"gists_url": "https://api.github.com/users/spencerflem/gists{/gist_id}",
"starred_url": "https://api.github.com/users/spencerflem/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/spencerflem/subscriptions",
"organizations_url": "https://api.github.com/users/spencerflem/orgs",
"repos_url": "https://api.github.com/users/spencerflem/repos",
"events_url": "https://api.github.com/users/spencerflem/events{/privacy}",
"received_events_url": "https://api.github.com/users/spencerflem/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2024-07-22T06:23:27Z",
"user": {
"login": "mvz",
"id": 10898,
"node_id": "MDQ6VXNlcjEwODk4",
"avatar_url": "https://avatars.githubusercontent.com/u/10898?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/mvz",
"html_url": "https://github.com/mvz",
"followers_url": "https://api.github.com/users/mvz/followers",
"following_url": "https://api.github.com/users/mvz/following{/other_user}",
"gists_url": "https://api.github.com/users/mvz/gists{/gist_id}",
"starred_url": "https://api.github.com/users/mvz/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/mvz/subscriptions",
"organizations_url": "https://api.github.com/users/mvz/orgs",
"repos_url": "https://api.github.com/users/mvz/repos",
"events_url": "https://api.github.com/users/mvz/events{/privacy}",
"received_events_url": "https://api.github.com/users/mvz/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2024-07-23T02:38:01Z",
"user": {
"login": "fionn",
"id": 1897918,
"node_id": "MDQ6VXNlcjE4OTc5MTg=",
"avatar_url": "https://avatars.githubusercontent.com/u/1897918?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/fionn",
"html_url": "https://github.com/fionn",
"followers_url": "https://api.github.com/users/fionn/followers",
"following_url": "https://api.github.com/users/fionn/following{/other_user}",
"gists_url": "https://api.github.com/users/fionn/gists{/gist_id}",
"starred_url": "https://api.github.com/users/fionn/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/fionn/subscriptions",
"organizations_url": "https://api.github.com/users/fionn/orgs",
"repos_url": "https://api.github.com/users/fionn/repos",
"events_url": "https://api.github.com/users/fionn/events{/privacy}",
"received_events_url": "https://api.github.com/users/fionn/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2024-08-06T21:05:31Z",
"user": {
"login": "blaisep",
"id": 254456,
"node_id": "MDQ6VXNlcjI1NDQ1Ng==",
"avatar_url": "https://avatars.githubusercontent.com/u/254456?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/blaisep",
"html_url": "https://github.com/blaisep",
"followers_url": "https://api.github.com/users/blaisep/followers",
"following_url": "https://api.github.com/users/blaisep/following{/other_user}",
"gists_url": "https://api.github.com/users/blaisep/gists{/gist_id}",
"starred_url": "https://api.github.com/users/blaisep/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/blaisep/subscriptions",
"organizations_url": "https://api.github.com/users/blaisep/orgs",
"repos_url": "https://api.github.com/users/blaisep/repos",
"events_url": "https://api.github.com/users/blaisep/events{/privacy}",
"received_events_url": "https://api.github.com/users/blaisep/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2024-08-27T12:44:28Z",
"user": {
"login": "btbytes",
"id": 1047,
"node_id": "MDQ6VXNlcjEwNDc=",
"avatar_url": "https://avatars.githubusercontent.com/u/1047?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/btbytes",
"html_url": "https://github.com/btbytes",
"followers_url": "https://api.github.com/users/btbytes/followers",
"following_url": "https://api.github.com/users/btbytes/following{/other_user}",
"gists_url": "https://api.github.com/users/btbytes/gists{/gist_id}",
"starred_url": "https://api.github.com/users/btbytes/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/btbytes/subscriptions",
"organizations_url": "https://api.github.com/users/btbytes/orgs",
"repos_url": "https://api.github.com/users/btbytes/repos",
"events_url": "https://api.github.com/users/btbytes/events{/privacy}",
"received_events_url": "https://api.github.com/users/btbytes/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2024-09-09T16:32:01Z",
"user": {
"login": "grjte",
"id": 91497953,
"node_id": "MDQ6VXNlcjkxNDk3OTUz",
"avatar_url": "https://avatars.githubusercontent.com/u/91497953?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/grjte",
"html_url": "https://github.com/grjte",
"followers_url": "https://api.github.com/users/grjte/followers",
"following_url": "https://api.github.com/users/grjte/following{/other_user}",
"gists_url": "https://api.github.com/users/grjte/gists{/gist_id}",
"starred_url": "https://api.github.com/users/grjte/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/grjte/subscriptions",
"organizations_url": "https://api.github.com/users/grjte/orgs",
"repos_url": "https://api.github.com/users/grjte/repos",
"events_url": "https://api.github.com/users/grjte/events{/privacy}",
"received_events_url": "https://api.github.com/users/grjte/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2024-09-10T17:08:01Z",
"user": {
"login": "gio256",
"id": 102917377,
"node_id": "U_kgDOBiJlAQ",
"avatar_url": "https://avatars.githubusercontent.com/u/102917377?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/gio256",
"html_url": "https://github.com/gio256",
"followers_url": "https://api.github.com/users/gio256/followers",
"following_url": "https://api.github.com/users/gio256/following{/other_user}",
"gists_url": "https://api.github.com/users/gio256/gists{/gist_id}",
"starred_url": "https://api.github.com/users/gio256/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/gio256/subscriptions",
"organizations_url": "https://api.github.com/users/gio256/orgs",
"repos_url": "https://api.github.com/users/gio256/repos",
"events_url": "https://api.github.com/users/gio256/events{/privacy}",
"received_events_url": "https://api.github.com/users/gio256/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2024-09-12T09:24:43Z",
"user": {
"login": "anthonyjpratti",
"id": 25472966,
"node_id": "MDQ6VXNlcjI1NDcyOTY2",
"avatar_url": "https://avatars.githubusercontent.com/u/25472966?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/anthonyjpratti",
"html_url": "https://github.com/anthonyjpratti",
"followers_url": "https://api.github.com/users/anthonyjpratti/followers",
"following_url": "https://api.github.com/users/anthonyjpratti/following{/other_user}",
"gists_url": "https://api.github.com/users/anthonyjpratti/gists{/gist_id}",
"starred_url": "https://api.github.com/users/anthonyjpratti/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/anthonyjpratti/subscriptions",
"organizations_url": "https://api.github.com/users/anthonyjpratti/orgs",
"repos_url": "https://api.github.com/users/anthonyjpratti/repos",
"events_url": "https://api.github.com/users/anthonyjpratti/events{/privacy}",
"received_events_url": "https://api.github.com/users/anthonyjpratti/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2024-10-07T18:10:03Z",
"user": {
"login": "ilian",
"id": 25505957,
"node_id": "MDQ6VXNlcjI1NTA1OTU3",
"avatar_url": "https://avatars.githubusercontent.com/u/25505957?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/ilian",
"html_url": "https://github.com/ilian",
"followers_url": "https://api.github.com/users/ilian/followers",
"following_url": "https://api.github.com/users/ilian/following{/other_user}",
"gists_url": "https://api.github.com/users/ilian/gists{/gist_id}",
"starred_url": "https://api.github.com/users/ilian/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/ilian/subscriptions",
"organizations_url": "https://api.github.com/users/ilian/orgs",
"repos_url": "https://api.github.com/users/ilian/repos",
"events_url": "https://api.github.com/users/ilian/events{/privacy}",
"received_events_url": "https://api.github.com/users/ilian/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2024-10-29T16:07:20Z",
"user": {
"login": "tuonidugou",
"id": 43839455,
"node_id": "MDQ6VXNlcjQzODM5NDU1",
"avatar_url": "https://avatars.githubusercontent.com/u/43839455?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/tuonidugou",
"html_url": "https://github.com/tuonidugou",
"followers_url": "https://api.github.com/users/tuonidugou/followers",
"following_url": "https://api.github.com/users/tuonidugou/following{/other_user}",
"gists_url": "https://api.github.com/users/tuonidugou/gists{/gist_id}",
"starred_url": "https://api.github.com/users/tuonidugou/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/tuonidugou/subscriptions",
"organizations_url": "https://api.github.com/users/tuonidugou/orgs",
"repos_url": "https://api.github.com/users/tuonidugou/repos",
"events_url": "https://api.github.com/users/tuonidugou/events{/privacy}",
"received_events_url": "https://api.github.com/users/tuonidugou/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2024-11-04T23:38:54Z",
"user": {
"login": "jryans",
"id": 279572,
"node_id": "MDQ6VXNlcjI3OTU3Mg==",
"avatar_url": "https://avatars.githubusercontent.com/u/279572?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/jryans",
"html_url": "https://github.com/jryans",
"followers_url": "https://api.github.com/users/jryans/followers",
"following_url": "https://api.github.com/users/jryans/following{/other_user}",
"gists_url": "https://api.github.com/users/jryans/gists{/gist_id}",
"starred_url": "https://api.github.com/users/jryans/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/jryans/subscriptions",
"organizations_url": "https://api.github.com/users/jryans/orgs",
"repos_url": "https://api.github.com/users/jryans/repos",
"events_url": "https://api.github.com/users/jryans/events{/privacy}",
"received_events_url": "https://api.github.com/users/jryans/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2024-11-09T14:37:35Z",
"user": {
"login": "Sams-20",
"id": 187734698,
"node_id": "U_kgDOCzCaqg",
"avatar_url": "https://avatars.githubusercontent.com/u/187734698?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/Sams-20",
"html_url": "https://github.com/Sams-20",
"followers_url": "https://api.github.com/users/Sams-20/followers",
"following_url": "https://api.github.com/users/Sams-20/following{/other_user}",
"gists_url": "https://api.github.com/users/Sams-20/gists{/gist_id}",
"starred_url": "https://api.github.com/users/Sams-20/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/Sams-20/subscriptions",
"organizations_url": "https://api.github.com/users/Sams-20/orgs",
"repos_url": "https://api.github.com/users/Sams-20/repos",
"events_url": "https://api.github.com/users/Sams-20/events{/privacy}",
"received_events_url": "https://api.github.com/users/Sams-20/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2024-11-20T08:20:16Z",
"user": {
"login": "balusch",
"id": 23381018,
"node_id": "MDQ6VXNlcjIzMzgxMDE4",
"avatar_url": "https://avatars.githubusercontent.com/u/23381018?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/balusch",
"html_url": "https://github.com/balusch",
"followers_url": "https://api.github.com/users/balusch/followers",
"following_url": "https://api.github.com/users/balusch/following{/other_user}",
"gists_url": "https://api.github.com/users/balusch/gists{/gist_id}",
"starred_url": "https://api.github.com/users/balusch/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/balusch/subscriptions",
"organizations_url": "https://api.github.com/users/balusch/orgs",
"repos_url": "https://api.github.com/users/balusch/repos",
"events_url": "https://api.github.com/users/balusch/events{/privacy}",
"received_events_url": "https://api.github.com/users/balusch/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2024-11-24T00:10:55Z",
"user": {
"login": "luiskba40",
"id": 189466963,
"node_id": "U_kgDOC0sJUw",
"avatar_url": "https://avatars.githubusercontent.com/u/189466963?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/luiskba40",
"html_url": "https://github.com/luiskba40",
"followers_url": "https://api.github.com/users/luiskba40/followers",
"following_url": "https://api.github.com/users/luiskba40/following{/other_user}",
"gists_url": "https://api.github.com/users/luiskba40/gists{/gist_id}",
"starred_url": "https://api.github.com/users/luiskba40/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/luiskba40/subscriptions",
"organizations_url": "https://api.github.com/users/luiskba40/orgs",
"repos_url": "https://api.github.com/users/luiskba40/repos",
"events_url": "https://api.github.com/users/luiskba40/events{/privacy}",
"received_events_url": "https://api.github.com/users/luiskba40/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
},
{
"starred_at": "2024-12-04T21:33:29Z",
"user": {
"login": "boydfields",
"id": 46451679,
"node_id": "MDQ6VXNlcjQ2NDUxNjc5",
"avatar_url": "https://avatars.githubusercontent.com/u/46451679?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/boydfields",
"html_url": "https://github.com/boydfields",
"followers_url": "https://api.github.com/users/boydfields/followers",
"following_url": "https://api.github.com/users/boydfields/following{/other_user}",
"gists_url": "https://api.github.com/users/boydfields/gists{/gist_id}",
"starred_url": "https://api.github.com/users/boydfields/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/boydfields/subscriptions",
"organizations_url": "https://api.github.com/users/boydfields/orgs",
"repos_url": "https://api.github.com/users/boydfields/repos",
"events_url": "https://api.github.com/users/boydfields/events{/privacy}",
"received_events_url": "https://api.github.com/users/boydfields/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
}
}
]
Display the source blob
Display the rendered blob
Raw
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
version = 1
requires-python = ">=3.10"
resolution-markers = [
"python_full_version < '3.11'",
"python_full_version == '3.11.*'",
"python_full_version >= '3.12'",
]
[[package]]
name = "certifi"
version = "2024.8.30"
source = { registry = "https://pypi.org/simple" }
sdist = { url = "https://files.pythonhosted.org/packages/b0/ee/9b19140fe824b367c04c5e1b369942dd754c4c5462d5674002f75c4dedc1/certifi-2024.8.30.tar.gz", hash = "sha256:bec941d2aa8195e248a60b31ff9f0558284cf01a52591ceda73ea9afffd69fd9", size = 168507 }
wheels = [
{ url = "https://files.pythonhosted.org/packages/12/90/3c9ff0512038035f59d279fddeb79f5f1eccd8859f06d6163c58798b9487/certifi-2024.8.30-py3-none-any.whl", hash = "sha256:922820b53db7a7257ffbda3f597266d435245903d80737e34f8a45ff3e3230d8", size = 167321 },
]
[[package]]
name = "charset-normalizer"
version = "3.4.0"
source = { registry = "https://pypi.org/simple" }
sdist = { url = "https://files.pythonhosted.org/packages/f2/4f/e1808dc01273379acc506d18f1504eb2d299bd4131743b9fc54d7be4df1e/charset_normalizer-3.4.0.tar.gz", hash = "sha256:223217c3d4f82c3ac5e29032b3f1c2eb0fb591b72161f86d93f5719079dae93e", size = 106620 }
wheels = [
{ url = "https://files.pythonhosted.org/packages/69/8b/825cc84cf13a28bfbcba7c416ec22bf85a9584971be15b21dd8300c65b7f/charset_normalizer-3.4.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:4f9fc98dad6c2eaa32fc3af1417d95b5e3d08aff968df0cd320066def971f9a6", size = 196363 },
{ url = "https://files.pythonhosted.org/packages/23/81/d7eef6a99e42c77f444fdd7bc894b0ceca6c3a95c51239e74a722039521c/charset_normalizer-3.4.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:0de7b687289d3c1b3e8660d0741874abe7888100efe14bd0f9fd7141bcbda92b", size = 125639 },
{ url = "https://files.pythonhosted.org/packages/21/67/b4564d81f48042f520c948abac7079356e94b30cb8ffb22e747532cf469d/charset_normalizer-3.4.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:5ed2e36c3e9b4f21dd9422f6893dec0abf2cca553af509b10cd630f878d3eb99", size = 120451 },
{ url = "https://files.pythonhosted.org/packages/c2/72/12a7f0943dd71fb5b4e7b55c41327ac0a1663046a868ee4d0d8e9c369b85/charset_normalizer-3.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:40d3ff7fc90b98c637bda91c89d51264a3dcf210cade3a2c6f838c7268d7a4ca", size = 140041 },
{ url = "https://files.pythonhosted.org/packages/67/56/fa28c2c3e31217c4c52158537a2cf5d98a6c1e89d31faf476c89391cd16b/charset_normalizer-3.4.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1110e22af8ca26b90bd6364fe4c763329b0ebf1ee213ba32b68c73de5752323d", size = 150333 },
{ url = "https://files.pythonhosted.org/packages/f9/d2/466a9be1f32d89eb1554cf84073a5ed9262047acee1ab39cbaefc19635d2/charset_normalizer-3.4.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:86f4e8cca779080f66ff4f191a685ced73d2f72d50216f7112185dc02b90b9b7", size = 142921 },
{ url = "https://files.pythonhosted.org/packages/f8/01/344ec40cf5d85c1da3c1f57566c59e0c9b56bcc5566c08804a95a6cc8257/charset_normalizer-3.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7f683ddc7eedd742e2889d2bfb96d69573fde1d92fcb811979cdb7165bb9c7d3", size = 144785 },
{ url = "https://files.pythonhosted.org/packages/73/8b/2102692cb6d7e9f03b9a33a710e0164cadfce312872e3efc7cfe22ed26b4/charset_normalizer-3.4.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:27623ba66c183eca01bf9ff833875b459cad267aeeb044477fedac35e19ba907", size = 146631 },
{ url = "https://files.pythonhosted.org/packages/d8/96/cc2c1b5d994119ce9f088a9a0c3ebd489d360a2eb058e2c8049f27092847/charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:f606a1881d2663630ea5b8ce2efe2111740df4b687bd78b34a8131baa007f79b", size = 140867 },
{ url = "https://files.pythonhosted.org/packages/c9/27/cde291783715b8ec30a61c810d0120411844bc4c23b50189b81188b273db/charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:0b309d1747110feb25d7ed6b01afdec269c647d382c857ef4663bbe6ad95a912", size = 149273 },
{ url = "https://files.pythonhosted.org/packages/3a/a4/8633b0fc1a2d1834d5393dafecce4a1cc56727bfd82b4dc18fc92f0d3cc3/charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:136815f06a3ae311fae551c3df1f998a1ebd01ddd424aa5603a4336997629e95", size = 152437 },
{ url = "https://files.pythonhosted.org/packages/64/ea/69af161062166b5975ccbb0961fd2384853190c70786f288684490913bf5/charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:14215b71a762336254351b00ec720a8e85cada43b987da5a042e4ce3e82bd68e", size = 150087 },
{ url = "https://files.pythonhosted.org/packages/3b/fd/e60a9d9fd967f4ad5a92810138192f825d77b4fa2a557990fd575a47695b/charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:79983512b108e4a164b9c8d34de3992f76d48cadc9554c9e60b43f308988aabe", size = 145142 },
{ url = "https://files.pythonhosted.org/packages/6d/02/8cb0988a1e49ac9ce2eed1e07b77ff118f2923e9ebd0ede41ba85f2dcb04/charset_normalizer-3.4.0-cp310-cp310-win32.whl", hash = "sha256:c94057af19bc953643a33581844649a7fdab902624d2eb739738a30e2b3e60fc", size = 94701 },
{ url = "https://files.pythonhosted.org/packages/d6/20/f1d4670a8a723c46be695dff449d86d6092916f9e99c53051954ee33a1bc/charset_normalizer-3.4.0-cp310-cp310-win_amd64.whl", hash = "sha256:55f56e2ebd4e3bc50442fbc0888c9d8c94e4e06a933804e2af3e89e2f9c1c749", size = 102191 },
{ url = "https://files.pythonhosted.org/packages/9c/61/73589dcc7a719582bf56aae309b6103d2762b526bffe189d635a7fcfd998/charset_normalizer-3.4.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:0d99dd8ff461990f12d6e42c7347fd9ab2532fb70e9621ba520f9e8637161d7c", size = 193339 },
{ url = "https://files.pythonhosted.org/packages/77/d5/8c982d58144de49f59571f940e329ad6e8615e1e82ef84584c5eeb5e1d72/charset_normalizer-3.4.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:c57516e58fd17d03ebe67e181a4e4e2ccab1168f8c2976c6a334d4f819fe5944", size = 124366 },
{ url = "https://files.pythonhosted.org/packages/bf/19/411a64f01ee971bed3231111b69eb56f9331a769072de479eae7de52296d/charset_normalizer-3.4.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:6dba5d19c4dfab08e58d5b36304b3f92f3bd5d42c1a3fa37b5ba5cdf6dfcbcee", size = 118874 },
{ url = "https://files.pythonhosted.org/packages/4c/92/97509850f0d00e9f14a46bc751daabd0ad7765cff29cdfb66c68b6dad57f/charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bf4475b82be41b07cc5e5ff94810e6a01f276e37c2d55571e3fe175e467a1a1c", size = 138243 },
{ url = "https://files.pythonhosted.org/packages/e2/29/d227805bff72ed6d6cb1ce08eec707f7cfbd9868044893617eb331f16295/charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ce031db0408e487fd2775d745ce30a7cd2923667cf3b69d48d219f1d8f5ddeb6", size = 148676 },
{ url = "https://files.pythonhosted.org/packages/13/bc/87c2c9f2c144bedfa62f894c3007cd4530ba4b5351acb10dc786428a50f0/charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8ff4e7cdfdb1ab5698e675ca622e72d58a6fa2a8aa58195de0c0061288e6e3ea", size = 141289 },
{ url = "https://files.pythonhosted.org/packages/eb/5b/6f10bad0f6461fa272bfbbdf5d0023b5fb9bc6217c92bf068fa5a99820f5/charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3710a9751938947e6327ea9f3ea6332a09bf0ba0c09cae9cb1f250bd1f1549bc", size = 142585 },
{ url = "https://files.pythonhosted.org/packages/3b/a0/a68980ab8a1f45a36d9745d35049c1af57d27255eff8c907e3add84cf68f/charset_normalizer-3.4.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:82357d85de703176b5587dbe6ade8ff67f9f69a41c0733cf2425378b49954de5", size = 144408 },
{ url = "https://files.pythonhosted.org/packages/d7/a1/493919799446464ed0299c8eef3c3fad0daf1c3cd48bff9263c731b0d9e2/charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:47334db71978b23ebcf3c0f9f5ee98b8d65992b65c9c4f2d34c2eaf5bcaf0594", size = 139076 },
{ url = "https://files.pythonhosted.org/packages/fb/9d/9c13753a5a6e0db4a0a6edb1cef7aee39859177b64e1a1e748a6e3ba62c2/charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:8ce7fd6767a1cc5a92a639b391891bf1c268b03ec7e021c7d6d902285259685c", size = 146874 },
{ url = "https://files.pythonhosted.org/packages/75/d2/0ab54463d3410709c09266dfb416d032a08f97fd7d60e94b8c6ef54ae14b/charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:f1a2f519ae173b5b6a2c9d5fa3116ce16e48b3462c8b96dfdded11055e3d6365", size = 150871 },
{ url = "https://files.pythonhosted.org/packages/8d/c9/27e41d481557be53d51e60750b85aa40eaf52b841946b3cdeff363105737/charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:63bc5c4ae26e4bc6be6469943b8253c0fd4e4186c43ad46e713ea61a0ba49129", size = 148546 },
{ url = "https://files.pythonhosted.org/packages/ee/44/4f62042ca8cdc0cabf87c0fc00ae27cd8b53ab68be3605ba6d071f742ad3/charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:bcb4f8ea87d03bc51ad04add8ceaf9b0f085ac045ab4d74e73bbc2dc033f0236", size = 143048 },
{ url = "https://files.pythonhosted.org/packages/01/f8/38842422988b795220eb8038745d27a675ce066e2ada79516c118f291f07/charset_normalizer-3.4.0-cp311-cp311-win32.whl", hash = "sha256:9ae4ef0b3f6b41bad6366fb0ea4fc1d7ed051528e113a60fa2a65a9abb5b1d99", size = 94389 },
{ url = "https://files.pythonhosted.org/packages/0b/6e/b13bd47fa9023b3699e94abf565b5a2f0b0be6e9ddac9812182596ee62e4/charset_normalizer-3.4.0-cp311-cp311-win_amd64.whl", hash = "sha256:cee4373f4d3ad28f1ab6290684d8e2ebdb9e7a1b74fdc39e4c211995f77bec27", size = 101752 },
{ url = "https://files.pythonhosted.org/packages/d3/0b/4b7a70987abf9b8196845806198975b6aab4ce016632f817ad758a5aa056/charset_normalizer-3.4.0-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:0713f3adb9d03d49d365b70b84775d0a0d18e4ab08d12bc46baa6132ba78aaf6", size = 194445 },
{ url = "https://files.pythonhosted.org/packages/50/89/354cc56cf4dd2449715bc9a0f54f3aef3dc700d2d62d1fa5bbea53b13426/charset_normalizer-3.4.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:de7376c29d95d6719048c194a9cf1a1b0393fbe8488a22008610b0361d834ecf", size = 125275 },
{ url = "https://files.pythonhosted.org/packages/fa/44/b730e2a2580110ced837ac083d8ad222343c96bb6b66e9e4e706e4d0b6df/charset_normalizer-3.4.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:4a51b48f42d9358460b78725283f04bddaf44a9358197b889657deba38f329db", size = 119020 },
{ url = "https://files.pythonhosted.org/packages/9d/e4/9263b8240ed9472a2ae7ddc3e516e71ef46617fe40eaa51221ccd4ad9a27/charset_normalizer-3.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b295729485b06c1a0683af02a9e42d2caa9db04a373dc38a6a58cdd1e8abddf1", size = 139128 },
{ url = "https://files.pythonhosted.org/packages/6b/e3/9f73e779315a54334240353eaea75854a9a690f3f580e4bd85d977cb2204/charset_normalizer-3.4.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ee803480535c44e7f5ad00788526da7d85525cfefaf8acf8ab9a310000be4b03", size = 149277 },
{ url = "https://files.pythonhosted.org/packages/1a/cf/f1f50c2f295312edb8a548d3fa56a5c923b146cd3f24114d5adb7e7be558/charset_normalizer-3.4.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3d59d125ffbd6d552765510e3f31ed75ebac2c7470c7274195b9161a32350284", size = 142174 },
{ url = "https://files.pythonhosted.org/packages/16/92/92a76dc2ff3a12e69ba94e7e05168d37d0345fa08c87e1fe24d0c2a42223/charset_normalizer-3.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8cda06946eac330cbe6598f77bb54e690b4ca93f593dee1568ad22b04f347c15", size = 143838 },
{ url = "https://files.pythonhosted.org/packages/a4/01/2117ff2b1dfc61695daf2babe4a874bca328489afa85952440b59819e9d7/charset_normalizer-3.4.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:07afec21bbbbf8a5cc3651aa96b980afe2526e7f048fdfb7f1014d84acc8b6d8", size = 146149 },
{ url = "https://files.pythonhosted.org/packages/f6/9b/93a332b8d25b347f6839ca0a61b7f0287b0930216994e8bf67a75d050255/charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:6b40e8d38afe634559e398cc32b1472f376a4099c75fe6299ae607e404c033b2", size = 140043 },
{ url = "https://files.pythonhosted.org/packages/ab/f6/7ac4a01adcdecbc7a7587767c776d53d369b8b971382b91211489535acf0/charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:b8dcd239c743aa2f9c22ce674a145e0a25cb1566c495928440a181ca1ccf6719", size = 148229 },
{ url = "https://files.pythonhosted.org/packages/9d/be/5708ad18161dee7dc6a0f7e6cf3a88ea6279c3e8484844c0590e50e803ef/charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:84450ba661fb96e9fd67629b93d2941c871ca86fc38d835d19d4225ff946a631", size = 151556 },
{ url = "https://files.pythonhosted.org/packages/5a/bb/3d8bc22bacb9eb89785e83e6723f9888265f3a0de3b9ce724d66bd49884e/charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:44aeb140295a2f0659e113b31cfe92c9061622cadbc9e2a2f7b8ef6b1e29ef4b", size = 149772 },
{ url = "https://files.pythonhosted.org/packages/f7/fa/d3fc622de05a86f30beea5fc4e9ac46aead4731e73fd9055496732bcc0a4/charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:1db4e7fefefd0f548d73e2e2e041f9df5c59e178b4c72fbac4cc6f535cfb1565", size = 144800 },
{ url = "https://files.pythonhosted.org/packages/9a/65/bdb9bc496d7d190d725e96816e20e2ae3a6fa42a5cac99c3c3d6ff884118/charset_normalizer-3.4.0-cp312-cp312-win32.whl", hash = "sha256:5726cf76c982532c1863fb64d8c6dd0e4c90b6ece9feb06c9f202417a31f7dd7", size = 94836 },
{ url = "https://files.pythonhosted.org/packages/3e/67/7b72b69d25b89c0b3cea583ee372c43aa24df15f0e0f8d3982c57804984b/charset_normalizer-3.4.0-cp312-cp312-win_amd64.whl", hash = "sha256:b197e7094f232959f8f20541ead1d9862ac5ebea1d58e9849c1bf979255dfac9", size = 102187 },
{ url = "https://files.pythonhosted.org/packages/f3/89/68a4c86f1a0002810a27f12e9a7b22feb198c59b2f05231349fbce5c06f4/charset_normalizer-3.4.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:dd4eda173a9fcccb5f2e2bd2a9f423d180194b1bf17cf59e3269899235b2a114", size = 194617 },
{ url = "https://files.pythonhosted.org/packages/4f/cd/8947fe425e2ab0aa57aceb7807af13a0e4162cd21eee42ef5b053447edf5/charset_normalizer-3.4.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:e9e3c4c9e1ed40ea53acf11e2a386383c3304212c965773704e4603d589343ed", size = 125310 },
{ url = "https://files.pythonhosted.org/packages/5b/f0/b5263e8668a4ee9becc2b451ed909e9c27058337fda5b8c49588183c267a/charset_normalizer-3.4.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:92a7e36b000bf022ef3dbb9c46bfe2d52c047d5e3f3343f43204263c5addc250", size = 119126 },
{ url = "https://files.pythonhosted.org/packages/ff/6e/e445afe4f7fda27a533f3234b627b3e515a1b9429bc981c9a5e2aa5d97b6/charset_normalizer-3.4.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:54b6a92d009cbe2fb11054ba694bc9e284dad30a26757b1e372a1fdddaf21920", size = 139342 },
{ url = "https://files.pythonhosted.org/packages/a1/b2/4af9993b532d93270538ad4926c8e37dc29f2111c36f9c629840c57cd9b3/charset_normalizer-3.4.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1ffd9493de4c922f2a38c2bf62b831dcec90ac673ed1ca182fe11b4d8e9f2a64", size = 149383 },
{ url = "https://files.pythonhosted.org/packages/fb/6f/4e78c3b97686b871db9be6f31d64e9264e889f8c9d7ab33c771f847f79b7/charset_normalizer-3.4.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:35c404d74c2926d0287fbd63ed5d27eb911eb9e4a3bb2c6d294f3cfd4a9e0c23", size = 142214 },
{ url = "https://files.pythonhosted.org/packages/2b/c9/1c8fe3ce05d30c87eff498592c89015b19fade13df42850aafae09e94f35/charset_normalizer-3.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4796efc4faf6b53a18e3d46343535caed491776a22af773f366534056c4e1fbc", size = 144104 },
{ url = "https://files.pythonhosted.org/packages/ee/68/efad5dcb306bf37db7db338338e7bb8ebd8cf38ee5bbd5ceaaaa46f257e6/charset_normalizer-3.4.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e7fdd52961feb4c96507aa649550ec2a0d527c086d284749b2f582f2d40a2e0d", size = 146255 },
{ url = "https://files.pythonhosted.org/packages/0c/75/1ed813c3ffd200b1f3e71121c95da3f79e6d2a96120163443b3ad1057505/charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:92db3c28b5b2a273346bebb24857fda45601aef6ae1c011c0a997106581e8a88", size = 140251 },
{ url = "https://files.pythonhosted.org/packages/7d/0d/6f32255c1979653b448d3c709583557a4d24ff97ac4f3a5be156b2e6a210/charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:ab973df98fc99ab39080bfb0eb3a925181454d7c3ac8a1e695fddfae696d9e90", size = 148474 },
{ url = "https://files.pythonhosted.org/packages/ac/a0/c1b5298de4670d997101fef95b97ac440e8c8d8b4efa5a4d1ef44af82f0d/charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:4b67fdab07fdd3c10bb21edab3cbfe8cf5696f453afce75d815d9d7223fbe88b", size = 151849 },
{ url = "https://files.pythonhosted.org/packages/04/4f/b3961ba0c664989ba63e30595a3ed0875d6790ff26671e2aae2fdc28a399/charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:aa41e526a5d4a9dfcfbab0716c7e8a1b215abd3f3df5a45cf18a12721d31cb5d", size = 149781 },
{ url = "https://files.pythonhosted.org/packages/d8/90/6af4cd042066a4adad58ae25648a12c09c879efa4849c705719ba1b23d8c/charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:ffc519621dce0c767e96b9c53f09c5d215578e10b02c285809f76509a3931482", size = 144970 },
{ url = "https://files.pythonhosted.org/packages/cc/67/e5e7e0cbfefc4ca79025238b43cdf8a2037854195b37d6417f3d0895c4c2/charset_normalizer-3.4.0-cp313-cp313-win32.whl", hash = "sha256:f19c1585933c82098c2a520f8ec1227f20e339e33aca8fa6f956f6691b784e67", size = 94973 },
{ url = "https://files.pythonhosted.org/packages/65/97/fc9bbc54ee13d33dc54a7fcf17b26368b18505500fc01e228c27b5222d80/charset_normalizer-3.4.0-cp313-cp313-win_amd64.whl", hash = "sha256:707b82d19e65c9bd28b81dde95249b07bf9f5b90ebe1ef17d9b57473f8a64b7b", size = 102308 },
{ url = "https://files.pythonhosted.org/packages/bf/9b/08c0432272d77b04803958a4598a51e2a4b51c06640af8b8f0f908c18bf2/charset_normalizer-3.4.0-py3-none-any.whl", hash = "sha256:fe9f97feb71aa9896b81973a7bbada8c49501dc73e58a10fcef6663af95e5079", size = 49446 },
]
[[package]]
name = "contourpy"
version = "1.3.1"
source = { registry = "https://pypi.org/simple" }
dependencies = [
{ name = "numpy" },
]
sdist = { url = "https://files.pythonhosted.org/packages/25/c2/fc7193cc5383637ff390a712e88e4ded0452c9fbcf84abe3de5ea3df1866/contourpy-1.3.1.tar.gz", hash = "sha256:dfd97abd83335045a913e3bcc4a09c0ceadbe66580cf573fe961f4a825efa699", size = 13465753 }
wheels = [
{ url = "https://files.pythonhosted.org/packages/b2/a3/80937fe3efe0edacf67c9a20b955139a1a622730042c1ea991956f2704ad/contourpy-1.3.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:a045f341a77b77e1c5de31e74e966537bba9f3c4099b35bf4c2e3939dd54cdab", size = 268466 },
{ url = "https://files.pythonhosted.org/packages/82/1d/e3eaebb4aa2d7311528c048350ca8e99cdacfafd99da87bc0a5f8d81f2c2/contourpy-1.3.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:500360b77259914f7805af7462e41f9cb7ca92ad38e9f94d6c8641b089338124", size = 253314 },
{ url = "https://files.pythonhosted.org/packages/de/f3/d796b22d1a2b587acc8100ba8c07fb7b5e17fde265a7bb05ab967f4c935a/contourpy-1.3.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b2f926efda994cdf3c8d3fdb40b9962f86edbc4457e739277b961eced3d0b4c1", size = 312003 },
{ url = "https://files.pythonhosted.org/packages/bf/f5/0e67902bc4394daee8daa39c81d4f00b50e063ee1a46cb3938cc65585d36/contourpy-1.3.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:adce39d67c0edf383647a3a007de0a45fd1b08dedaa5318404f1a73059c2512b", size = 351896 },
{ url = "https://files.pythonhosted.org/packages/1f/d6/e766395723f6256d45d6e67c13bb638dd1fa9dc10ef912dc7dd3dcfc19de/contourpy-1.3.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:abbb49fb7dac584e5abc6636b7b2a7227111c4f771005853e7d25176daaf8453", size = 320814 },
{ url = "https://files.pythonhosted.org/packages/a9/57/86c500d63b3e26e5b73a28b8291a67c5608d4aa87ebd17bd15bb33c178bc/contourpy-1.3.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a0cffcbede75c059f535725c1680dfb17b6ba8753f0c74b14e6a9c68c29d7ea3", size = 324969 },
{ url = "https://files.pythonhosted.org/packages/b8/62/bb146d1289d6b3450bccc4642e7f4413b92ebffd9bf2e91b0404323704a7/contourpy-1.3.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:ab29962927945d89d9b293eabd0d59aea28d887d4f3be6c22deaefbb938a7277", size = 1265162 },
{ url = "https://files.pythonhosted.org/packages/18/04/9f7d132ce49a212c8e767042cc80ae390f728060d2eea47058f55b9eff1c/contourpy-1.3.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:974d8145f8ca354498005b5b981165b74a195abfae9a8129df3e56771961d595", size = 1324328 },
{ url = "https://files.pythonhosted.org/packages/46/23/196813901be3f97c83ababdab1382e13e0edc0bb4e7b49a7bff15fcf754e/contourpy-1.3.1-cp310-cp310-win32.whl", hash = "sha256:ac4578ac281983f63b400f7fe6c101bedc10651650eef012be1ccffcbacf3697", size = 173861 },
{ url = "https://files.pythonhosted.org/packages/e0/82/c372be3fc000a3b2005061ca623a0d1ecd2eaafb10d9e883a2fc8566e951/contourpy-1.3.1-cp310-cp310-win_amd64.whl", hash = "sha256:174e758c66bbc1c8576992cec9599ce8b6672b741b5d336b5c74e35ac382b18e", size = 218566 },
{ url = "https://files.pythonhosted.org/packages/12/bb/11250d2906ee2e8b466b5f93e6b19d525f3e0254ac8b445b56e618527718/contourpy-1.3.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3e8b974d8db2c5610fb4e76307e265de0edb655ae8169e8b21f41807ccbeec4b", size = 269555 },
{ url = "https://files.pythonhosted.org/packages/67/71/1e6e95aee21a500415f5d2dbf037bf4567529b6a4e986594d7026ec5ae90/contourpy-1.3.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:20914c8c973f41456337652a6eeca26d2148aa96dd7ac323b74516988bea89fc", size = 254549 },
{ url = "https://files.pythonhosted.org/packages/31/2c/b88986e8d79ac45efe9d8801ae341525f38e087449b6c2f2e6050468a42c/contourpy-1.3.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:19d40d37c1c3a4961b4619dd9d77b12124a453cc3d02bb31a07d58ef684d3d86", size = 313000 },
{ url = "https://files.pythonhosted.org/packages/c4/18/65280989b151fcf33a8352f992eff71e61b968bef7432fbfde3a364f0730/contourpy-1.3.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:113231fe3825ebf6f15eaa8bc1f5b0ddc19d42b733345eae0934cb291beb88b6", size = 352925 },
{ url = "https://files.pythonhosted.org/packages/f5/c7/5fd0146c93220dbfe1a2e0f98969293b86ca9bc041d6c90c0e065f4619ad/contourpy-1.3.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4dbbc03a40f916a8420e420d63e96a1258d3d1b58cbdfd8d1f07b49fcbd38e85", size = 323693 },
{ url = "https://files.pythonhosted.org/packages/85/fc/7fa5d17daf77306840a4e84668a48ddff09e6bc09ba4e37e85ffc8e4faa3/contourpy-1.3.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3a04ecd68acbd77fa2d39723ceca4c3197cb2969633836ced1bea14e219d077c", size = 326184 },
{ url = "https://files.pythonhosted.org/packages/ef/e7/104065c8270c7397c9571620d3ab880558957216f2b5ebb7e040f85eeb22/contourpy-1.3.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:c414fc1ed8ee1dbd5da626cf3710c6013d3d27456651d156711fa24f24bd1291", size = 1268031 },
{ url = "https://files.pythonhosted.org/packages/e2/4a/c788d0bdbf32c8113c2354493ed291f924d4793c4a2e85b69e737a21a658/contourpy-1.3.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:31c1b55c1f34f80557d3830d3dd93ba722ce7e33a0b472cba0ec3b6535684d8f", size = 1325995 },
{ url = "https://files.pythonhosted.org/packages/a6/e6/a2f351a90d955f8b0564caf1ebe4b1451a3f01f83e5e3a414055a5b8bccb/contourpy-1.3.1-cp311-cp311-win32.whl", hash = "sha256:f611e628ef06670df83fce17805c344710ca5cde01edfdc72751311da8585375", size = 174396 },
{ url = "https://files.pythonhosted.org/packages/a8/7e/cd93cab453720a5d6cb75588cc17dcdc08fc3484b9de98b885924ff61900/contourpy-1.3.1-cp311-cp311-win_amd64.whl", hash = "sha256:b2bdca22a27e35f16794cf585832e542123296b4687f9fd96822db6bae17bfc9", size = 219787 },
{ url = "https://files.pythonhosted.org/packages/37/6b/175f60227d3e7f5f1549fcb374592be311293132207e451c3d7c654c25fb/contourpy-1.3.1-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:0ffa84be8e0bd33410b17189f7164c3589c229ce5db85798076a3fa136d0e509", size = 271494 },
{ url = "https://files.pythonhosted.org/packages/6b/6a/7833cfae2c1e63d1d8875a50fd23371394f540ce809d7383550681a1fa64/contourpy-1.3.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:805617228ba7e2cbbfb6c503858e626ab528ac2a32a04a2fe88ffaf6b02c32bc", size = 255444 },
{ url = "https://files.pythonhosted.org/packages/7f/b3/7859efce66eaca5c14ba7619791b084ed02d868d76b928ff56890d2d059d/contourpy-1.3.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ade08d343436a94e633db932e7e8407fe7de8083967962b46bdfc1b0ced39454", size = 307628 },
{ url = "https://files.pythonhosted.org/packages/48/b2/011415f5e3f0a50b1e285a0bf78eb5d92a4df000553570f0851b6e309076/contourpy-1.3.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:47734d7073fb4590b4a40122b35917cd77be5722d80683b249dac1de266aac80", size = 347271 },
{ url = "https://files.pythonhosted.org/packages/84/7d/ef19b1db0f45b151ac78c65127235239a8cf21a59d1ce8507ce03e89a30b/contourpy-1.3.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2ba94a401342fc0f8b948e57d977557fbf4d515f03c67682dd5c6191cb2d16ec", size = 318906 },
{ url = "https://files.pythonhosted.org/packages/ba/99/6794142b90b853a9155316c8f470d2e4821fe6f086b03e372aca848227dd/contourpy-1.3.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:efa874e87e4a647fd2e4f514d5e91c7d493697127beb95e77d2f7561f6905bd9", size = 323622 },
{ url = "https://files.pythonhosted.org/packages/3c/0f/37d2c84a900cd8eb54e105f4fa9aebd275e14e266736778bb5dccbf3bbbb/contourpy-1.3.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:1bf98051f1045b15c87868dbaea84f92408337d4f81d0e449ee41920ea121d3b", size = 1266699 },
{ url = "https://files.pythonhosted.org/packages/3a/8a/deb5e11dc7d9cc8f0f9c8b29d4f062203f3af230ba83c30a6b161a6effc9/contourpy-1.3.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:61332c87493b00091423e747ea78200659dc09bdf7fd69edd5e98cef5d3e9a8d", size = 1326395 },
{ url = "https://files.pythonhosted.org/packages/1a/35/7e267ae7c13aaf12322ccc493531f1e7f2eb8fba2927b9d7a05ff615df7a/contourpy-1.3.1-cp312-cp312-win32.whl", hash = "sha256:e914a8cb05ce5c809dd0fe350cfbb4e881bde5e2a38dc04e3afe1b3e58bd158e", size = 175354 },
{ url = "https://files.pythonhosted.org/packages/a1/35/c2de8823211d07e8a79ab018ef03960716c5dff6f4d5bff5af87fd682992/contourpy-1.3.1-cp312-cp312-win_amd64.whl", hash = "sha256:08d9d449a61cf53033612cb368f3a1b26cd7835d9b8cd326647efe43bca7568d", size = 220971 },
{ url = "https://files.pythonhosted.org/packages/9a/e7/de62050dce687c5e96f946a93546910bc67e483fe05324439e329ff36105/contourpy-1.3.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:a761d9ccfc5e2ecd1bf05534eda382aa14c3e4f9205ba5b1684ecfe400716ef2", size = 271548 },
{ url = "https://files.pythonhosted.org/packages/78/4d/c2a09ae014ae984c6bdd29c11e74d3121b25eaa117eca0bb76340efd7e1c/contourpy-1.3.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:523a8ee12edfa36f6d2a49407f705a6ef4c5098de4f498619787e272de93f2d5", size = 255576 },
{ url = "https://files.pythonhosted.org/packages/ab/8a/915380ee96a5638bda80cd061ccb8e666bfdccea38d5741cb69e6dbd61fc/contourpy-1.3.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ece6df05e2c41bd46776fbc712e0996f7c94e0d0543af1656956d150c4ca7c81", size = 306635 },
{ url = "https://files.pythonhosted.org/packages/29/5c/c83ce09375428298acd4e6582aeb68b1e0d1447f877fa993d9bf6cd3b0a0/contourpy-1.3.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:573abb30e0e05bf31ed067d2f82500ecfdaec15627a59d63ea2d95714790f5c2", size = 345925 },
{ url = "https://files.pythonhosted.org/packages/29/63/5b52f4a15e80c66c8078a641a3bfacd6e07106835682454647aca1afc852/contourpy-1.3.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a9fa36448e6a3a1a9a2ba23c02012c43ed88905ec80163f2ffe2421c7192a5d7", size = 318000 },
{ url = "https://files.pythonhosted.org/packages/9a/e2/30ca086c692691129849198659bf0556d72a757fe2769eb9620a27169296/contourpy-1.3.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3ea9924d28fc5586bf0b42d15f590b10c224117e74409dd7a0be3b62b74a501c", size = 322689 },
{ url = "https://files.pythonhosted.org/packages/6b/77/f37812ef700f1f185d348394debf33f22d531e714cf6a35d13d68a7003c7/contourpy-1.3.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:5b75aa69cb4d6f137b36f7eb2ace9280cfb60c55dc5f61c731fdf6f037f958a3", size = 1268413 },
{ url = "https://files.pythonhosted.org/packages/3f/6d/ce84e79cdd128542ebeb268f84abb4b093af78e7f8ec504676673d2675bc/contourpy-1.3.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:041b640d4ec01922083645a94bb3b2e777e6b626788f4095cf21abbe266413c1", size = 1326530 },
{ url = "https://files.pythonhosted.org/packages/72/22/8282f4eae20c73c89bee7a82a19c4e27af9b57bb602ecaa00713d5bdb54d/contourpy-1.3.1-cp313-cp313-win32.whl", hash = "sha256:36987a15e8ace5f58d4d5da9dca82d498c2bbb28dff6e5d04fbfcc35a9cb3a82", size = 175315 },
{ url = "https://files.pythonhosted.org/packages/e3/d5/28bca491f65312b438fbf076589dcde7f6f966b196d900777f5811b9c4e2/contourpy-1.3.1-cp313-cp313-win_amd64.whl", hash = "sha256:a7895f46d47671fa7ceec40f31fae721da51ad34bdca0bee83e38870b1f47ffd", size = 220987 },
{ url = "https://files.pythonhosted.org/packages/2f/24/a4b285d6adaaf9746e4700932f579f1a7b6f9681109f694cfa233ae75c4e/contourpy-1.3.1-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:9ddeb796389dadcd884c7eb07bd14ef12408aaae358f0e2ae24114d797eede30", size = 285001 },
{ url = "https://files.pythonhosted.org/packages/48/1d/fb49a401b5ca4f06ccf467cd6c4f1fd65767e63c21322b29b04ec40b40b9/contourpy-1.3.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:19c1555a6801c2f084c7ddc1c6e11f02eb6a6016ca1318dd5452ba3f613a1751", size = 268553 },
{ url = "https://files.pythonhosted.org/packages/79/1e/4aef9470d13fd029087388fae750dccb49a50c012a6c8d1d634295caa644/contourpy-1.3.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:841ad858cff65c2c04bf93875e384ccb82b654574a6d7f30453a04f04af71342", size = 310386 },
{ url = "https://files.pythonhosted.org/packages/b0/34/910dc706ed70153b60392b5305c708c9810d425bde12499c9184a1100888/contourpy-1.3.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4318af1c925fb9a4fb190559ef3eec206845f63e80fb603d47f2d6d67683901c", size = 349806 },
{ url = "https://files.pythonhosted.org/packages/31/3c/faee6a40d66d7f2a87f7102236bf4780c57990dd7f98e5ff29881b1b1344/contourpy-1.3.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:14c102b0eab282427b662cb590f2e9340a9d91a1c297f48729431f2dcd16e14f", size = 321108 },
{ url = "https://files.pythonhosted.org/packages/17/69/390dc9b20dd4bb20585651d7316cc3054b7d4a7b4f8b710b2b698e08968d/contourpy-1.3.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:05e806338bfeaa006acbdeba0ad681a10be63b26e1b17317bfac3c5d98f36cda", size = 327291 },
{ url = "https://files.pythonhosted.org/packages/ef/74/7030b67c4e941fe1e5424a3d988080e83568030ce0355f7c9fc556455b01/contourpy-1.3.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:4d76d5993a34ef3df5181ba3c92fabb93f1eaa5729504fb03423fcd9f3177242", size = 1263752 },
{ url = "https://files.pythonhosted.org/packages/f0/ed/92d86f183a8615f13f6b9cbfc5d4298a509d6ce433432e21da838b4b63f4/contourpy-1.3.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:89785bb2a1980c1bd87f0cb1517a71cde374776a5f150936b82580ae6ead44a1", size = 1318403 },
{ url = "https://files.pythonhosted.org/packages/b3/0e/c8e4950c77dcfc897c71d61e56690a0a9df39543d2164040301b5df8e67b/contourpy-1.3.1-cp313-cp313t-win32.whl", hash = "sha256:8eb96e79b9f3dcadbad2a3891672f81cdcab7f95b27f28f1c67d75f045b6b4f1", size = 185117 },
{ url = "https://files.pythonhosted.org/packages/c1/31/1ae946f11dfbd229222e6d6ad8e7bd1891d3d48bde5fbf7a0beb9491f8e3/contourpy-1.3.1-cp313-cp313t-win_amd64.whl", hash = "sha256:287ccc248c9e0d0566934e7d606201abd74761b5703d804ff3df8935f523d546", size = 236668 },
{ url = "https://files.pythonhosted.org/packages/3e/4f/e56862e64b52b55b5ddcff4090085521fc228ceb09a88390a2b103dccd1b/contourpy-1.3.1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:b457d6430833cee8e4b8e9b6f07aa1c161e5e0d52e118dc102c8f9bd7dd060d6", size = 265605 },
{ url = "https://files.pythonhosted.org/packages/b0/2e/52bfeeaa4541889f23d8eadc6386b442ee2470bd3cff9baa67deb2dd5c57/contourpy-1.3.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cb76c1a154b83991a3cbbf0dfeb26ec2833ad56f95540b442c73950af2013750", size = 315040 },
{ url = "https://files.pythonhosted.org/packages/52/94/86bfae441707205634d80392e873295652fc313dfd93c233c52c4dc07874/contourpy-1.3.1-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:44a29502ca9c7b5ba389e620d44f2fbe792b1fb5734e8b931ad307071ec58c53", size = 218221 },
]
[[package]]
name = "cycler"
version = "0.12.1"
source = { registry = "https://pypi.org/simple" }
sdist = { url = "https://files.pythonhosted.org/packages/a9/95/a3dbbb5028f35eafb79008e7522a75244477d2838f38cbb722248dabc2a8/cycler-0.12.1.tar.gz", hash = "sha256:88bb128f02ba341da8ef447245a9e138fae777f6a23943da4540077d3601eb1c", size = 7615 }
wheels = [
{ url = "https://files.pythonhosted.org/packages/e7/05/c19819d5e3d95294a6f5947fb9b9629efb316b96de511b418c53d245aae6/cycler-0.12.1-py3-none-any.whl", hash = "sha256:85cef7cff222d8644161529808465972e51340599459b8ac3ccbac5a854e0d30", size = 8321 },
]
[[package]]
name = "fonttools"
version = "4.55.2"
source = { registry = "https://pypi.org/simple" }
sdist = { url = "https://files.pythonhosted.org/packages/f4/3a/6ab28db8f90c99e6b502436fb642912b590c352d5ba83e0b22b46db209da/fonttools-4.55.2.tar.gz", hash = "sha256:45947e7b3f9673f91df125d375eb57b9a23f2a603f438a1aebf3171bffa7a205", size = 3492954 }
wheels = [
{ url = "https://files.pythonhosted.org/packages/c2/76/c4f463c4bde3983a0c2f4a6a9cfc3d17028a3bddb86fd2113492ab6768cd/fonttools-4.55.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:bef0f8603834643b1a6419d57902f18e7d950ec1a998fb70410635c598dc1a1e", size = 2759007 },
{ url = "https://files.pythonhosted.org/packages/49/18/ec95143fcf6a03db383f0daea73c12dc5fdf9c3df0270fbcd139923ff52c/fonttools-4.55.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:944228b86d472612d3b48bcc83b31c25c2271e63fdc74539adfcfa7a96d487fb", size = 2288860 },
{ url = "https://files.pythonhosted.org/packages/3c/94/b1e43d401d0b9fa41e7ab73314f1f313bcf7f4710e9e8be66e0efba7274e/fonttools-4.55.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9f0e55f5da594b85f269cfbecd2f6bd3e07d0abba68870bc3f34854de4fa4678", size = 4565270 },
{ url = "https://files.pythonhosted.org/packages/41/b8/cb3627cbf322aabd288d0a8f44328c69071bbcb9082d41b46054d7c3c959/fonttools-4.55.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5b1a6e576db0c83c1b91925bf1363478c4bb968dbe8433147332fb5782ce6190", size = 4607444 },
{ url = "https://files.pythonhosted.org/packages/ae/2f/6d64b170e9a2da03ee853238df9b7630da910677a10567426bc5cbfba946/fonttools-4.55.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:616368b15716781bc84df5c2191dc0540137aaef56c2771eb4b89b90933f347a", size = 4559704 },
{ url = "https://files.pythonhosted.org/packages/0d/8a/8f50a44607466728905fe83e5dbb2a718cbbbfe1b5abf9730bd0dbb991e3/fonttools-4.55.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:7bbae4f3915225c2c37670da68e2bf18a21206060ad31dfb95fec91ef641caa7", size = 4731573 },
{ url = "https://files.pythonhosted.org/packages/ed/f9/fb5efdb62aa60d702dba7537061b70bb11ecec8a168df072bf1d1ff06148/fonttools-4.55.2-cp310-cp310-win32.whl", hash = "sha256:8b02b10648d69d67a7eb055f4d3eedf4a85deb22fb7a19fbd9acbae7c7538199", size = 2164139 },
{ url = "https://files.pythonhosted.org/packages/7d/4a/850e8a0af45ed8fa953a3b7ae340e9a5940f564862d53e4e73df0f55a064/fonttools-4.55.2-cp310-cp310-win_amd64.whl", hash = "sha256:bbea0ab841113ac8e8edde067e099b7288ffc6ac2dded538b131c2c0595d5f77", size = 2208448 },
{ url = "https://files.pythonhosted.org/packages/d4/9b/bce708f6293dce086d7e5ecc223da8e57474537a8d7172cd62af5337bb27/fonttools-4.55.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:d34525e8141286fa976e14806639d32294bfb38d28bbdb5f6be9f46a1cd695a6", size = 2760153 },
{ url = "https://files.pythonhosted.org/packages/d6/7c/45dc1e5dfa99636acbcd1613914c6892c3c9bd0fe1541070222f29ee72e6/fonttools-4.55.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:0ecd1c2b1c2ec46bb73685bc5473c72e16ed0930ef79bc2919ccadc43a99fb16", size = 2289801 },
{ url = "https://files.pythonhosted.org/packages/8c/8d/79e099350cb33fbf75903619e2a9933827b67a87f972400645a3eb222db9/fonttools-4.55.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9008438ad59e5a8e403a62fbefef2b2ff377eb3857d90a3f2a5f4d674ff441b2", size = 4866709 },
{ url = "https://files.pythonhosted.org/packages/ff/e3/46a0a2925d71ccf3d804df8a88c93ee645ad9f5d47327b229e4efdb354ed/fonttools-4.55.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:131591ac8d7a47043aaf29581aba755ae151d46e49d2bf49608601efd71e8b4d", size = 4895476 },
{ url = "https://files.pythonhosted.org/packages/40/2e/02607daff1b2e38aec0f321d691bdf835b39c950f90ce3fae1db3eec0871/fonttools-4.55.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:4c83381c3e3e3d9caa25527c4300543578341f21aae89e4fbbb4debdda8d82a2", size = 4877249 },
{ url = "https://files.pythonhosted.org/packages/f4/aa/6b3d069968ffb7fa7b3184c6951851fcd79f097f392fecf2b6df9973930d/fonttools-4.55.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:42aca564b575252fd9954ed0d91d97a24de24289a16ce8ff74ed0bdf5ecebf11", size = 5046125 },
{ url = "https://files.pythonhosted.org/packages/4c/dd/fb1f66fbac4c0f7bc3ef206d08b490f9b3dd5eb89879d1f1c1e41ef2937c/fonttools-4.55.2-cp311-cp311-win32.whl", hash = "sha256:c6457f650ebe15baa17fc06e256227f0a47f46f80f27ec5a0b00160de8dc2c13", size = 2162949 },
{ url = "https://files.pythonhosted.org/packages/86/b1/1198970a2b0ebccceae5fc8963e2e9c2a2aae23bd2f5a9be603dc3894f31/fonttools-4.55.2-cp311-cp311-win_amd64.whl", hash = "sha256:5cfa67414d7414442a5635ff634384101c54f53bb7b0e04aa6a61b013fcce194", size = 2209371 },
{ url = "https://files.pythonhosted.org/packages/3c/62/7ac990a52c2bb249e9de6de0036a24eba5a5a8e8446819ab5a5751a0a45e/fonttools-4.55.2-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:18f082445b8fe5e91c53e6184f4c1c73f3f965c8bcc614c6cd6effd573ce6c1a", size = 2754521 },
{ url = "https://files.pythonhosted.org/packages/4a/bd/a8034bf5d685f825cec0aca6759639277b1d3b0b1d38842b5f30edfb4176/fonttools-4.55.2-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:27c0f91adbbd706e8acd1db73e3e510118e62d0ffb651864567dccc5b2339f90", size = 2287092 },
{ url = "https://files.pythonhosted.org/packages/70/ad/edf4f4e0efdda8205893007d30d62da09f92d3f0b0f1a3faf85bd5df9952/fonttools-4.55.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3d8ccce035320d63dba0c35f52499322f5531dbe85bba1514c7cea26297e4c54", size = 4782490 },
{ url = "https://files.pythonhosted.org/packages/7a/5f/f757e5860cc4f187fdf8eacf53abc92613cdbc55355e13ba07e2c937d217/fonttools-4.55.2-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:96e126df9615df214ec7f04bebcf60076297fbc10b75c777ce58b702d7708ffb", size = 4854787 },
{ url = "https://files.pythonhosted.org/packages/92/1b/c647b89e5603f9ae9b8f14885dfaf523351eb9d0b5dcbafaf1512d0d4d97/fonttools-4.55.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:508ebb42956a7a931c4092dfa2d9b4ffd4f94cea09b8211199090d2bd082506b", size = 4763330 },
{ url = "https://files.pythonhosted.org/packages/57/09/117e2b5b2d2fcd607b360e241939a652505577c752f9ca15b2fb9e4fc540/fonttools-4.55.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:c1b9de46ef7b683d50400abf9f1578eaceee271ff51c36bf4b7366f2be29f498", size = 4990999 },
{ url = "https://files.pythonhosted.org/packages/b9/e5/9be5bd4bfb83187fb83f46b9be6676f653c08a430b975e0a3355fd248c37/fonttools-4.55.2-cp312-cp312-win32.whl", hash = "sha256:2df61d9fc15199cc86dad29f64dd686874a3a52dda0c2d8597d21f509f95c332", size = 2151234 },
{ url = "https://files.pythonhosted.org/packages/f3/c5/0eda5db19bd5fe3f6b8dc30ca5be512999b4923268b9b82fd14c211217b5/fonttools-4.55.2-cp312-cp312-win_amd64.whl", hash = "sha256:d337ec087da8216a828574aa0525d869df0a2ac217a2efc1890974ddd1fbc5b9", size = 2198133 },
{ url = "https://files.pythonhosted.org/packages/2d/94/f941fa68a1d4a0f2facd5e6476ae91c5683aea7b7cc30d3ef49187cbbc67/fonttools-4.55.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:10aff204e2edee1d312fa595c06f201adf8d528a3b659cfb34cd47eceaaa6a26", size = 2741975 },
{ url = "https://files.pythonhosted.org/packages/c5/61/00015fe3ccc8171b4d4afb0fa5155064f68948138ef5e1a5ac9cb49082c4/fonttools-4.55.2-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:09fe922a3eff181fd07dd724cdb441fb6b9fc355fd1c0f1aa79aca60faf1fbdd", size = 2280680 },
{ url = "https://files.pythonhosted.org/packages/4e/fe/9bb6cedc47a9e3872e138e4328475d4ff4faea7d87a2316dc5e5e4cd305e/fonttools-4.55.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:487e1e8b524143a799bda0169c48b44a23a6027c1bb1957d5a172a7d3a1dd704", size = 4760147 },
{ url = "https://files.pythonhosted.org/packages/a2/3a/5bbe1b2a01f6bdf911aca48941eb317a678b50fccf63a27298289af79023/fonttools-4.55.2-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9b1726872e09268bbedb14dc02e58b7ea31ecdd1204c6073eda4911746b44797", size = 4834697 },
{ url = "https://files.pythonhosted.org/packages/43/21/6bb77d4c90e0333db2f5059476fe2f74ad706d9117e82508756c78c7b9be/fonttools-4.55.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:6fc88cfb58b0cd7b48718c3e61dd0d0a3ee8e2c86b973342967ce09fbf1db6d4", size = 4743076 },
{ url = "https://files.pythonhosted.org/packages/90/0b/21392ffe6f9ffb1eefd06363401c68815434faed22cebf00337f513ee41f/fonttools-4.55.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:e857fe1859901ad8c5cab32e0eebc920adb09f413d2d73b74b677cf47b28590c", size = 4965579 },
{ url = "https://files.pythonhosted.org/packages/f6/c8/c5aed715d3816977451d2eaf4ab3aaad48e8d8a3e25d28a4d29a07b0f841/fonttools-4.55.2-cp313-cp313-win32.whl", hash = "sha256:81ccd2b3a420b8050c7d9db3be0555d71662973b3ef2a1d921a2880b58957db8", size = 2149187 },
{ url = "https://files.pythonhosted.org/packages/c4/07/36df0ee4ba78b8eb4880b8bbc0d96cc97b98d358ff4a74b469bda851f63e/fonttools-4.55.2-cp313-cp313-win_amd64.whl", hash = "sha256:d559eb1744c7dcfa90ae60cb1a4b3595e898e48f4198738c321468c01180cd83", size = 2195113 },
{ url = "https://files.pythonhosted.org/packages/69/94/c4d8dfe26a971e00e34df99b46e9518425f59918c8993830e904171e21f9/fonttools-4.55.2-py3-none-any.whl", hash = "sha256:8e2d89fbe9b08d96e22c7a81ec04a4e8d8439c31223e2dc6f2f9fc8ff14bdf9f", size = 1100792 },
]
[[package]]
name = "idna"
version = "3.10"
source = { registry = "https://pypi.org/simple" }
sdist = { url = "https://files.pythonhosted.org/packages/f1/70/7703c29685631f5a7590aa73f1f1d3fa9a380e654b86af429e0934a32f7d/idna-3.10.tar.gz", hash = "sha256:12f65c9b470abda6dc35cf8e63cc574b1c52b11df2c86030af0ac09b01b13ea9", size = 190490 }
wheels = [
{ url = "https://files.pythonhosted.org/packages/76/c6/c88e154df9c4e1a2a66ccf0005a88dfb2650c1dffb6f5ce603dfbd452ce3/idna-3.10-py3-none-any.whl", hash = "sha256:946d195a0d259cbba61165e88e65941f16e9b36ea6ddb97f00452bae8b1287d3", size = 70442 },
]
[[package]]
name = "kiwisolver"
version = "1.4.7"
source = { registry = "https://pypi.org/simple" }
sdist = { url = "https://files.pythonhosted.org/packages/85/4d/2255e1c76304cbd60b48cee302b66d1dde4468dc5b1160e4b7cb43778f2a/kiwisolver-1.4.7.tar.gz", hash = "sha256:9893ff81bd7107f7b685d3017cc6583daadb4fc26e4a888350df530e41980a60", size = 97286 }
wheels = [
{ url = "https://files.pythonhosted.org/packages/97/14/fc943dd65268a96347472b4fbe5dcc2f6f55034516f80576cd0dd3a8930f/kiwisolver-1.4.7-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:8a9c83f75223d5e48b0bc9cb1bf2776cf01563e00ade8775ffe13b0b6e1af3a6", size = 122440 },
{ url = "https://files.pythonhosted.org/packages/1e/46/e68fed66236b69dd02fcdb506218c05ac0e39745d696d22709498896875d/kiwisolver-1.4.7-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:58370b1ffbd35407444d57057b57da5d6549d2d854fa30249771775c63b5fe17", size = 65758 },
{ url = "https://files.pythonhosted.org/packages/ef/fa/65de49c85838681fc9cb05de2a68067a683717321e01ddafb5b8024286f0/kiwisolver-1.4.7-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:aa0abdf853e09aff551db11fce173e2177d00786c688203f52c87ad7fcd91ef9", size = 64311 },
{ url = "https://files.pythonhosted.org/packages/42/9c/cc8d90f6ef550f65443bad5872ffa68f3dee36de4974768628bea7c14979/kiwisolver-1.4.7-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:8d53103597a252fb3ab8b5845af04c7a26d5e7ea8122303dd7a021176a87e8b9", size = 1637109 },
{ url = "https://files.pythonhosted.org/packages/55/91/0a57ce324caf2ff5403edab71c508dd8f648094b18cfbb4c8cc0fde4a6ac/kiwisolver-1.4.7-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:88f17c5ffa8e9462fb79f62746428dd57b46eb931698e42e990ad63103f35e6c", size = 1617814 },
{ url = "https://files.pythonhosted.org/packages/12/5d/c36140313f2510e20207708adf36ae4919416d697ee0236b0ddfb6fd1050/kiwisolver-1.4.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:88a9ca9c710d598fd75ee5de59d5bda2684d9db36a9f50b6125eaea3969c2599", size = 1400881 },
{ url = "https://files.pythonhosted.org/packages/56/d0/786e524f9ed648324a466ca8df86298780ef2b29c25313d9a4f16992d3cf/kiwisolver-1.4.7-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f4d742cb7af1c28303a51b7a27aaee540e71bb8e24f68c736f6f2ffc82f2bf05", size = 1512972 },
{ url = "https://files.pythonhosted.org/packages/67/5a/77851f2f201e6141d63c10a0708e996a1363efaf9e1609ad0441b343763b/kiwisolver-1.4.7-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e28c7fea2196bf4c2f8d46a0415c77a1c480cc0724722f23d7410ffe9842c407", size = 1444787 },
{ url = "https://files.pythonhosted.org/packages/06/5f/1f5eaab84355885e224a6fc8d73089e8713dc7e91c121f00b9a1c58a2195/kiwisolver-1.4.7-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:e968b84db54f9d42046cf154e02911e39c0435c9801681e3fc9ce8a3c4130278", size = 2199212 },
{ url = "https://files.pythonhosted.org/packages/b5/28/9152a3bfe976a0ae21d445415defc9d1cd8614b2910b7614b30b27a47270/kiwisolver-1.4.7-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:0c18ec74c0472de033e1bebb2911c3c310eef5649133dd0bedf2a169a1b269e5", size = 2346399 },
{ url = "https://files.pythonhosted.org/packages/26/f6/453d1904c52ac3b400f4d5e240ac5fec25263716723e44be65f4d7149d13/kiwisolver-1.4.7-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:8f0ea6da6d393d8b2e187e6a5e3fb81f5862010a40c3945e2c6d12ae45cfb2ad", size = 2308688 },
{ url = "https://files.pythonhosted.org/packages/5a/9a/d4968499441b9ae187e81745e3277a8b4d7c60840a52dc9d535a7909fac3/kiwisolver-1.4.7-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:f106407dda69ae456dd1227966bf445b157ccc80ba0dff3802bb63f30b74e895", size = 2445493 },
{ url = "https://files.pythonhosted.org/packages/07/c9/032267192e7828520dacb64dfdb1d74f292765f179e467c1cba97687f17d/kiwisolver-1.4.7-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:84ec80df401cfee1457063732d90022f93951944b5b58975d34ab56bb150dfb3", size = 2262191 },
{ url = "https://files.pythonhosted.org/packages/6c/ad/db0aedb638a58b2951da46ddaeecf204be8b4f5454df020d850c7fa8dca8/kiwisolver-1.4.7-cp310-cp310-win32.whl", hash = "sha256:71bb308552200fb2c195e35ef05de12f0c878c07fc91c270eb3d6e41698c3bcc", size = 46644 },
{ url = "https://files.pythonhosted.org/packages/12/ca/d0f7b7ffbb0be1e7c2258b53554efec1fd652921f10d7d85045aff93ab61/kiwisolver-1.4.7-cp310-cp310-win_amd64.whl", hash = "sha256:44756f9fd339de0fb6ee4f8c1696cfd19b2422e0d70b4cefc1cc7f1f64045a8c", size = 55877 },
{ url = "https://files.pythonhosted.org/packages/97/6c/cfcc128672f47a3e3c0d918ecb67830600078b025bfc32d858f2e2d5c6a4/kiwisolver-1.4.7-cp310-cp310-win_arm64.whl", hash = "sha256:78a42513018c41c2ffd262eb676442315cbfe3c44eed82385c2ed043bc63210a", size = 48347 },
{ url = "https://files.pythonhosted.org/packages/e9/44/77429fa0a58f941d6e1c58da9efe08597d2e86bf2b2cce6626834f49d07b/kiwisolver-1.4.7-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:d2b0e12a42fb4e72d509fc994713d099cbb15ebf1103545e8a45f14da2dfca54", size = 122442 },
{ url = "https://files.pythonhosted.org/packages/e5/20/8c75caed8f2462d63c7fd65e16c832b8f76cda331ac9e615e914ee80bac9/kiwisolver-1.4.7-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:2a8781ac3edc42ea4b90bc23e7d37b665d89423818e26eb6df90698aa2287c95", size = 65762 },
{ url = "https://files.pythonhosted.org/packages/f4/98/fe010f15dc7230f45bc4cf367b012d651367fd203caaa992fd1f5963560e/kiwisolver-1.4.7-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:46707a10836894b559e04b0fd143e343945c97fd170d69a2d26d640b4e297935", size = 64319 },
{ url = "https://files.pythonhosted.org/packages/8b/1b/b5d618f4e58c0675654c1e5051bcf42c776703edb21c02b8c74135541f60/kiwisolver-1.4.7-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ef97b8df011141c9b0f6caf23b29379f87dd13183c978a30a3c546d2c47314cb", size = 1334260 },
{ url = "https://files.pythonhosted.org/packages/b8/01/946852b13057a162a8c32c4c8d2e9ed79f0bb5d86569a40c0b5fb103e373/kiwisolver-1.4.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3ab58c12a2cd0fc769089e6d38466c46d7f76aced0a1f54c77652446733d2d02", size = 1426589 },
{ url = "https://files.pythonhosted.org/packages/70/d1/c9f96df26b459e15cf8a965304e6e6f4eb291e0f7a9460b4ad97b047561e/kiwisolver-1.4.7-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:803b8e1459341c1bb56d1c5c010406d5edec8a0713a0945851290a7930679b51", size = 1541080 },
{ url = "https://files.pythonhosted.org/packages/d3/73/2686990eb8b02d05f3de759d6a23a4ee7d491e659007dd4c075fede4b5d0/kiwisolver-1.4.7-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f9a9e8a507420fe35992ee9ecb302dab68550dedc0da9e2880dd88071c5fb052", size = 1470049 },
{ url = "https://files.pythonhosted.org/packages/a7/4b/2db7af3ed3af7c35f388d5f53c28e155cd402a55432d800c543dc6deb731/kiwisolver-1.4.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:18077b53dc3bb490e330669a99920c5e6a496889ae8c63b58fbc57c3d7f33a18", size = 1426376 },
{ url = "https://files.pythonhosted.org/packages/05/83/2857317d04ea46dc5d115f0df7e676997bbd968ced8e2bd6f7f19cfc8d7f/kiwisolver-1.4.7-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:6af936f79086a89b3680a280c47ea90b4df7047b5bdf3aa5c524bbedddb9e545", size = 2222231 },
{ url = "https://files.pythonhosted.org/packages/0d/b5/866f86f5897cd4ab6d25d22e403404766a123f138bd6a02ecb2cdde52c18/kiwisolver-1.4.7-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:3abc5b19d24af4b77d1598a585b8a719beb8569a71568b66f4ebe1fb0449460b", size = 2368634 },
{ url = "https://files.pythonhosted.org/packages/c1/ee/73de8385403faba55f782a41260210528fe3273d0cddcf6d51648202d6d0/kiwisolver-1.4.7-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:933d4de052939d90afbe6e9d5273ae05fb836cc86c15b686edd4b3560cc0ee36", size = 2329024 },
{ url = "https://files.pythonhosted.org/packages/a1/e7/cd101d8cd2cdfaa42dc06c433df17c8303d31129c9fdd16c0ea37672af91/kiwisolver-1.4.7-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:65e720d2ab2b53f1f72fb5da5fb477455905ce2c88aaa671ff0a447c2c80e8e3", size = 2468484 },
{ url = "https://files.pythonhosted.org/packages/e1/72/84f09d45a10bc57a40bb58b81b99d8f22b58b2040c912b7eb97ebf625bf2/kiwisolver-1.4.7-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:3bf1ed55088f214ba6427484c59553123fdd9b218a42bbc8c6496d6754b1e523", size = 2284078 },
{ url = "https://files.pythonhosted.org/packages/d2/d4/71828f32b956612dc36efd7be1788980cb1e66bfb3706e6dec9acad9b4f9/kiwisolver-1.4.7-cp311-cp311-win32.whl", hash = "sha256:4c00336b9dd5ad96d0a558fd18a8b6f711b7449acce4c157e7343ba92dd0cf3d", size = 46645 },
{ url = "https://files.pythonhosted.org/packages/a1/65/d43e9a20aabcf2e798ad1aff6c143ae3a42cf506754bcb6a7ed8259c8425/kiwisolver-1.4.7-cp311-cp311-win_amd64.whl", hash = "sha256:929e294c1ac1e9f615c62a4e4313ca1823ba37326c164ec720a803287c4c499b", size = 56022 },
{ url = "https://files.pythonhosted.org/packages/35/b3/9f75a2e06f1b4ca00b2b192bc2b739334127d27f1d0625627ff8479302ba/kiwisolver-1.4.7-cp311-cp311-win_arm64.whl", hash = "sha256:e33e8fbd440c917106b237ef1a2f1449dfbb9b6f6e1ce17c94cd6a1e0d438376", size = 48536 },
{ url = "https://files.pythonhosted.org/packages/97/9c/0a11c714cf8b6ef91001c8212c4ef207f772dd84540104952c45c1f0a249/kiwisolver-1.4.7-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:5360cc32706dab3931f738d3079652d20982511f7c0ac5711483e6eab08efff2", size = 121808 },
{ url = "https://files.pythonhosted.org/packages/f2/d8/0fe8c5f5d35878ddd135f44f2af0e4e1d379e1c7b0716f97cdcb88d4fd27/kiwisolver-1.4.7-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:942216596dc64ddb25adb215c3c783215b23626f8d84e8eff8d6d45c3f29f75a", size = 65531 },
{ url = "https://files.pythonhosted.org/packages/80/c5/57fa58276dfdfa612241d640a64ca2f76adc6ffcebdbd135b4ef60095098/kiwisolver-1.4.7-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:48b571ecd8bae15702e4f22d3ff6a0f13e54d3d00cd25216d5e7f658242065ee", size = 63894 },
{ url = "https://files.pythonhosted.org/packages/8b/e9/26d3edd4c4ad1c5b891d8747a4f81b1b0aba9fb9721de6600a4adc09773b/kiwisolver-1.4.7-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ad42ba922c67c5f219097b28fae965e10045ddf145d2928bfac2eb2e17673640", size = 1369296 },
{ url = "https://files.pythonhosted.org/packages/b6/67/3f4850b5e6cffb75ec40577ddf54f7b82b15269cc5097ff2e968ee32ea7d/kiwisolver-1.4.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:612a10bdae23404a72941a0fc8fa2660c6ea1217c4ce0dbcab8a8f6543ea9e7f", size = 1461450 },
{ url = "https://files.pythonhosted.org/packages/52/be/86cbb9c9a315e98a8dc6b1d23c43cffd91d97d49318854f9c37b0e41cd68/kiwisolver-1.4.7-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9e838bba3a3bac0fe06d849d29772eb1afb9745a59710762e4ba3f4cb8424483", size = 1579168 },
{ url = "https://files.pythonhosted.org/packages/0f/00/65061acf64bd5fd34c1f4ae53f20b43b0a017a541f242a60b135b9d1e301/kiwisolver-1.4.7-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:22f499f6157236c19f4bbbd472fa55b063db77a16cd74d49afe28992dff8c258", size = 1507308 },
{ url = "https://files.pythonhosted.org/packages/21/e4/c0b6746fd2eb62fe702118b3ca0cb384ce95e1261cfada58ff693aeec08a/kiwisolver-1.4.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:693902d433cf585133699972b6d7c42a8b9f8f826ebcaf0132ff55200afc599e", size = 1464186 },
{ url = "https://files.pythonhosted.org/packages/0a/0f/529d0a9fffb4d514f2782c829b0b4b371f7f441d61aa55f1de1c614c4ef3/kiwisolver-1.4.7-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:4e77f2126c3e0b0d055f44513ed349038ac180371ed9b52fe96a32aa071a5107", size = 2247877 },
{ url = "https://files.pythonhosted.org/packages/d1/e1/66603ad779258843036d45adcbe1af0d1a889a07af4635f8b4ec7dccda35/kiwisolver-1.4.7-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:657a05857bda581c3656bfc3b20e353c232e9193eb167766ad2dc58b56504948", size = 2404204 },
{ url = "https://files.pythonhosted.org/packages/8d/61/de5fb1ca7ad1f9ab7970e340a5b833d735df24689047de6ae71ab9d8d0e7/kiwisolver-1.4.7-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:4bfa75a048c056a411f9705856abfc872558e33c055d80af6a380e3658766038", size = 2352461 },
{ url = "https://files.pythonhosted.org/packages/ba/d2/0edc00a852e369827f7e05fd008275f550353f1f9bcd55db9363d779fc63/kiwisolver-1.4.7-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:34ea1de54beef1c104422d210c47c7d2a4999bdecf42c7b5718fbe59a4cac383", size = 2501358 },
{ url = "https://files.pythonhosted.org/packages/84/15/adc15a483506aec6986c01fb7f237c3aec4d9ed4ac10b756e98a76835933/kiwisolver-1.4.7-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:90da3b5f694b85231cf93586dad5e90e2d71b9428f9aad96952c99055582f520", size = 2314119 },
{ url = "https://files.pythonhosted.org/packages/36/08/3a5bb2c53c89660863a5aa1ee236912269f2af8762af04a2e11df851d7b2/kiwisolver-1.4.7-cp312-cp312-win32.whl", hash = "sha256:18e0cca3e008e17fe9b164b55735a325140a5a35faad8de92dd80265cd5eb80b", size = 46367 },
{ url = "https://files.pythonhosted.org/packages/19/93/c05f0a6d825c643779fc3c70876bff1ac221f0e31e6f701f0e9578690d70/kiwisolver-1.4.7-cp312-cp312-win_amd64.whl", hash = "sha256:58cb20602b18f86f83a5c87d3ee1c766a79c0d452f8def86d925e6c60fbf7bfb", size = 55884 },
{ url = "https://files.pythonhosted.org/packages/d2/f9/3828d8f21b6de4279f0667fb50a9f5215e6fe57d5ec0d61905914f5b6099/kiwisolver-1.4.7-cp312-cp312-win_arm64.whl", hash = "sha256:f5a8b53bdc0b3961f8b6125e198617c40aeed638b387913bf1ce78afb1b0be2a", size = 48528 },
{ url = "https://files.pythonhosted.org/packages/c4/06/7da99b04259b0f18b557a4effd1b9c901a747f7fdd84cf834ccf520cb0b2/kiwisolver-1.4.7-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:2e6039dcbe79a8e0f044f1c39db1986a1b8071051efba3ee4d74f5b365f5226e", size = 121913 },
{ url = "https://files.pythonhosted.org/packages/97/f5/b8a370d1aa593c17882af0a6f6755aaecd643640c0ed72dcfd2eafc388b9/kiwisolver-1.4.7-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:a1ecf0ac1c518487d9d23b1cd7139a6a65bc460cd101ab01f1be82ecf09794b6", size = 65627 },
{ url = "https://files.pythonhosted.org/packages/2a/fc/6c0374f7503522539e2d4d1b497f5ebad3f8ed07ab51aed2af988dd0fb65/kiwisolver-1.4.7-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:7ab9ccab2b5bd5702ab0803676a580fffa2aa178c2badc5557a84cc943fcf750", size = 63888 },
{ url = "https://files.pythonhosted.org/packages/bf/3e/0b7172793d0f41cae5c923492da89a2ffcd1adf764c16159ca047463ebd3/kiwisolver-1.4.7-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f816dd2277f8d63d79f9c8473a79fe54047bc0467754962840782c575522224d", size = 1369145 },
{ url = "https://files.pythonhosted.org/packages/77/92/47d050d6f6aced2d634258123f2688fbfef8ded3c5baf2c79d94d91f1f58/kiwisolver-1.4.7-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cf8bcc23ceb5a1b624572a1623b9f79d2c3b337c8c455405ef231933a10da379", size = 1461448 },
{ url = "https://files.pythonhosted.org/packages/9c/1b/8f80b18e20b3b294546a1adb41701e79ae21915f4175f311a90d042301cf/kiwisolver-1.4.7-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dea0bf229319828467d7fca8c7c189780aa9ff679c94539eed7532ebe33ed37c", size = 1578750 },
{ url = "https://files.pythonhosted.org/packages/a4/fe/fe8e72f3be0a844f257cadd72689c0848c6d5c51bc1d60429e2d14ad776e/kiwisolver-1.4.7-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7c06a4c7cf15ec739ce0e5971b26c93638730090add60e183530d70848ebdd34", size = 1507175 },
{ url = "https://files.pythonhosted.org/packages/39/fa/cdc0b6105d90eadc3bee525fecc9179e2b41e1ce0293caaf49cb631a6aaf/kiwisolver-1.4.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:913983ad2deb14e66d83c28b632fd35ba2b825031f2fa4ca29675e665dfecbe1", size = 1463963 },
{ url = "https://files.pythonhosted.org/packages/6e/5c/0c03c4e542720c6177d4f408e56d1c8315899db72d46261a4e15b8b33a41/kiwisolver-1.4.7-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:5337ec7809bcd0f424c6b705ecf97941c46279cf5ed92311782c7c9c2026f07f", size = 2248220 },
{ url = "https://files.pythonhosted.org/packages/3d/ee/55ef86d5a574f4e767df7da3a3a7ff4954c996e12d4fbe9c408170cd7dcc/kiwisolver-1.4.7-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:4c26ed10c4f6fa6ddb329a5120ba3b6db349ca192ae211e882970bfc9d91420b", size = 2404463 },
{ url = "https://files.pythonhosted.org/packages/0f/6d/73ad36170b4bff4825dc588acf4f3e6319cb97cd1fb3eb04d9faa6b6f212/kiwisolver-1.4.7-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:c619b101e6de2222c1fcb0531e1b17bbffbe54294bfba43ea0d411d428618c27", size = 2352842 },
{ url = "https://files.pythonhosted.org/packages/0b/16/fa531ff9199d3b6473bb4d0f47416cdb08d556c03b8bc1cccf04e756b56d/kiwisolver-1.4.7-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:073a36c8273647592ea332e816e75ef8da5c303236ec0167196793eb1e34657a", size = 2501635 },
{ url = "https://files.pythonhosted.org/packages/78/7e/aa9422e78419db0cbe75fb86d8e72b433818f2e62e2e394992d23d23a583/kiwisolver-1.4.7-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:3ce6b2b0231bda412463e152fc18335ba32faf4e8c23a754ad50ffa70e4091ee", size = 2314556 },
{ url = "https://files.pythonhosted.org/packages/a8/b2/15f7f556df0a6e5b3772a1e076a9d9f6c538ce5f05bd590eca8106508e06/kiwisolver-1.4.7-cp313-cp313-win32.whl", hash = "sha256:f4c9aee212bc89d4e13f58be11a56cc8036cabad119259d12ace14b34476fd07", size = 46364 },
{ url = "https://files.pythonhosted.org/packages/0b/db/32e897e43a330eee8e4770bfd2737a9584b23e33587a0812b8e20aac38f7/kiwisolver-1.4.7-cp313-cp313-win_amd64.whl", hash = "sha256:8a3ec5aa8e38fc4c8af308917ce12c536f1c88452ce554027e55b22cbbfbff76", size = 55887 },
{ url = "https://files.pythonhosted.org/packages/c8/a4/df2bdca5270ca85fd25253049eb6708d4127be2ed0e5c2650217450b59e9/kiwisolver-1.4.7-cp313-cp313-win_arm64.whl", hash = "sha256:76c8094ac20ec259471ac53e774623eb62e6e1f56cd8690c67ce6ce4fcb05650", size = 48530 },
{ url = "https://files.pythonhosted.org/packages/ac/59/741b79775d67ab67ced9bb38552da688c0305c16e7ee24bba7a2be253fb7/kiwisolver-1.4.7-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:94252291e3fe68001b1dd747b4c0b3be12582839b95ad4d1b641924d68fd4643", size = 59491 },
{ url = "https://files.pythonhosted.org/packages/58/cc/fb239294c29a5656e99e3527f7369b174dd9cc7c3ef2dea7cb3c54a8737b/kiwisolver-1.4.7-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:5b7dfa3b546da08a9f622bb6becdb14b3e24aaa30adba66749d38f3cc7ea9706", size = 57648 },
{ url = "https://files.pythonhosted.org/packages/3b/ef/2f009ac1f7aab9f81efb2d837301d255279d618d27b6015780115ac64bdd/kiwisolver-1.4.7-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:bd3de6481f4ed8b734da5df134cd5a6a64fe32124fe83dde1e5b5f29fe30b1e6", size = 84257 },
{ url = "https://files.pythonhosted.org/packages/81/e1/c64f50987f85b68b1c52b464bb5bf73e71570c0f7782d626d1eb283ad620/kiwisolver-1.4.7-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a91b5f9f1205845d488c928e8570dcb62b893372f63b8b6e98b863ebd2368ff2", size = 80906 },
{ url = "https://files.pythonhosted.org/packages/fd/71/1687c5c0a0be2cee39a5c9c389e546f9c6e215e46b691d00d9f646892083/kiwisolver-1.4.7-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:40fa14dbd66b8b8f470d5fc79c089a66185619d31645f9b0773b88b19f7223c4", size = 79951 },
{ url = "https://files.pythonhosted.org/packages/ea/8b/d7497df4a1cae9367adf21665dd1f896c2a7aeb8769ad77b662c5e2bcce7/kiwisolver-1.4.7-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:eb542fe7933aa09d8d8f9d9097ef37532a7df6497819d16efe4359890a2f417a", size = 55715 },
]
[[package]]
name = "matplotlib"
version = "3.9.3"
source = { registry = "https://pypi.org/simple" }
dependencies = [
{ name = "contourpy" },
{ name = "cycler" },
{ name = "fonttools" },
{ name = "kiwisolver" },
{ name = "numpy" },
{ name = "packaging" },
{ name = "pillow" },
{ name = "pyparsing" },
{ name = "python-dateutil" },
]
sdist = { url = "https://files.pythonhosted.org/packages/75/9f/562ed484b11ac9f4bb4f9d2d7546954ec106a8c0f06cc755d6f63e519274/matplotlib-3.9.3.tar.gz", hash = "sha256:cd5dbbc8e25cad5f706845c4d100e2c8b34691b412b93717ce38d8ae803bcfa5", size = 36113438 }
wheels = [
{ url = "https://files.pythonhosted.org/packages/0b/09/c993dc1b2311228ddaaf3f963c57fed6f3e39957823fa269532896566dd7/matplotlib-3.9.3-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:41b016e3be4e740b66c79a031a0a6e145728dbc248142e751e8dab4f3188ca1d", size = 7877008 },
{ url = "https://files.pythonhosted.org/packages/18/a7/c1aa0bb4c9391d854e0abf55f75e1c46acb4f1b0fbc2692ad7f75ac44030/matplotlib-3.9.3-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:8e0143975fc2a6d7136c97e19c637321288371e8f09cff2564ecd73e865ea0b9", size = 7762521 },
{ url = "https://files.pythonhosted.org/packages/da/84/427a8ef8f3a00bc6f49edc82142c79f8fa0a1b2421dcfacede76b227cb64/matplotlib-3.9.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9f459c8ee2c086455744723628264e43c884be0c7d7b45d84b8cd981310b4815", size = 8192058 },
{ url = "https://files.pythonhosted.org/packages/4a/86/bb508f20bdda70b5e7afdc15065ea8a4a5ce12d5f5822fa58cf3bc31e8fc/matplotlib-3.9.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:687df7ceff57b8f070d02b4db66f75566370e7ae182a0782b6d3d21b0d6917dc", size = 8304632 },
{ url = "https://files.pythonhosted.org/packages/25/45/7a8bfa0e7365d1b9a767b1f0611c5c94e783bfdbc8fb0a7e9a4436fc790e/matplotlib-3.9.3-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:edd14cf733fdc4f6e6fe3f705af97676a7e52859bf0044aa2c84e55be739241c", size = 9082543 },
{ url = "https://files.pythonhosted.org/packages/3c/cc/5dad07bf804a6e0250301c95d36d4c972689fd72757b438c0fd319ea789e/matplotlib-3.9.3-cp310-cp310-win_amd64.whl", hash = "sha256:1c40c244221a1adbb1256692b1133c6fb89418df27bf759a31a333e7912a4010", size = 7820157 },
{ url = "https://files.pythonhosted.org/packages/12/ac/66ac58c42aad9ac0ed665746a8a36ecbd16a6c908527c305f9504c04fc2c/matplotlib-3.9.3-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:cf2a60daf6cecff6828bc608df00dbc794380e7234d2411c0ec612811f01969d", size = 7886350 },
{ url = "https://files.pythonhosted.org/packages/db/43/1274be2b1922858c7a43f0d6e00571fe24696788c7b5a8c980127af24a96/matplotlib-3.9.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:213d6dc25ce686516208d8a3e91120c6a4fdae4a3e06b8505ced5b716b50cc04", size = 7771966 },
{ url = "https://files.pythonhosted.org/packages/5f/89/f1bcc6b62707df427a5e6a34be59191da81d96e63d3f92cb61e948bcbca7/matplotlib-3.9.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c52f48eb75fcc119a4fdb68ba83eb5f71656999420375df7c94cc68e0e14686e", size = 8201827 },
{ url = "https://files.pythonhosted.org/packages/13/53/b178d51478109f7a700edc94757dd07112e9a0c7a158653b99434b74f9fb/matplotlib-3.9.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d3c93796b44fa111049b88a24105e947f03c01966b5c0cc782e2ee3887b790a3", size = 8314794 },
{ url = "https://files.pythonhosted.org/packages/d6/57/d0ef6cef13ed0f55e37472cc458f2f1f8c4fe9aac69f794be7ccd0702d03/matplotlib-3.9.3-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:cd1077b9a09b16d8c3c7075a8add5ffbfe6a69156a57e290c800ed4d435bef1d", size = 9091489 },
{ url = "https://files.pythonhosted.org/packages/33/97/40a1bed11f7817ba553afd2e7662e7364e3bac7ce4040835391eb558c86e/matplotlib-3.9.3-cp311-cp311-win_amd64.whl", hash = "sha256:c96eeeb8c68b662c7747f91a385688d4b449687d29b691eff7068a4602fe6dc4", size = 7829997 },
{ url = "https://files.pythonhosted.org/packages/74/d5/eb2338d21b2d36511f9417230413fa0c30fc82283b33dc0e3643969f3b50/matplotlib-3.9.3-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:0a361bd5583bf0bcc08841df3c10269617ee2a36b99ac39d455a767da908bbbc", size = 7883049 },
{ url = "https://files.pythonhosted.org/packages/e5/52/3910833a073e7182ab3ae03810ed418f71c7fdcd65e2862cda1c6a14ffc1/matplotlib-3.9.3-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:e14485bb1b83eeb3d55b6878f9560240981e7bbc7a8d4e1e8c38b9bd6ec8d2de", size = 7768285 },
{ url = "https://files.pythonhosted.org/packages/92/67/69df4b6636e40e964788b003535561ea3e98e33e46df4d96fa8c34ef99e6/matplotlib-3.9.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4a8d279f78844aad213c4935c18f8292a9432d51af2d88bca99072c903948045", size = 8192626 },
{ url = "https://files.pythonhosted.org/packages/40/d6/70a196b0cf62e0a5bc64ccab07816ab4f6c98db0414a55280331a481a5bf/matplotlib-3.9.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b6c12514329ac0d03128cf1dcceb335f4fbf7c11da98bca68dca8dcb983153a9", size = 8305687 },
{ url = "https://files.pythonhosted.org/packages/c3/43/ef6ab78dd2d8eb362c1e5a31f9cec5ece5761e6143a519153d716d85e590/matplotlib-3.9.3-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:6e9de2b390d253a508dd497e9b5579f3a851f208763ed67fdca5dc0c3ea6849c", size = 9087208 },
{ url = "https://files.pythonhosted.org/packages/30/cb/36844affc69490652b5a99296b9fcee530b96621e23d3143a4839f30fb22/matplotlib-3.9.3-cp312-cp312-win_amd64.whl", hash = "sha256:d796272408f8567ff7eaa00eb2856b3a00524490e47ad505b0b4ca6bb8a7411f", size = 7833105 },
{ url = "https://files.pythonhosted.org/packages/60/04/949640040982822416c471d9ebe4e9e6c69ca9f9bb6ba82ed30808863c02/matplotlib-3.9.3-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:203d18df84f5288973b2d56de63d4678cc748250026ca9e1ad8f8a0fd8a75d83", size = 7883417 },
{ url = "https://files.pythonhosted.org/packages/9f/90/ebd37143cd3150b6c650ee1580024df3dd649d176e68d346f826b8d24e37/matplotlib-3.9.3-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:b651b0d3642991259109dc0351fc33ad44c624801367bb8307be9bfc35e427ad", size = 7768720 },
{ url = "https://files.pythonhosted.org/packages/dc/84/6591e6b55d755d16dacdc113205067031867c1f5e3c08b32c01aad831420/matplotlib-3.9.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:66d7b171fecf96940ce069923a08ba3df33ef542de82c2ff4fe8caa8346fa95a", size = 8192723 },
{ url = "https://files.pythonhosted.org/packages/29/09/146a17d37e32313507f11ac984e65311f2d5805d731eb981d4f70eb928dc/matplotlib-3.9.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6be0ba61f6ff2e6b68e4270fb63b6813c9e7dec3d15fc3a93f47480444fd72f0", size = 8305801 },
{ url = "https://files.pythonhosted.org/packages/85/cb/d2690572c08f19ca7c0f44b1fb4d11c121d63467a57b508cc3656ff80b43/matplotlib-3.9.3-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:9d6b2e8856dec3a6db1ae51aec85c82223e834b228c1d3228aede87eee2b34f9", size = 9086564 },
{ url = "https://files.pythonhosted.org/packages/28/dd/0a5176027c1cb94fe75f69f76cb274180c8abf740df6fc0e6a1e4cbaec3f/matplotlib-3.9.3-cp313-cp313-win_amd64.whl", hash = "sha256:90a85a004fefed9e583597478420bf904bb1a065b0b0ee5b9d8d31b04b0f3f70", size = 7833257 },
{ url = "https://files.pythonhosted.org/packages/42/d4/e477d50a8e4b437c2afbb5c665cb8e5d79b06abe6fe3c6915d6f7f0c2ef2/matplotlib-3.9.3-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:3119b2f16de7f7b9212ba76d8fe6a0e9f90b27a1e04683cd89833a991682f639", size = 7911906 },
{ url = "https://files.pythonhosted.org/packages/ae/a1/ba5ab89666c42ace8e31b4ff5a2c76a17e4d6f91aefce476b064c56ff61d/matplotlib-3.9.3-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:87ad73763d93add1b6c1f9fcd33af662fd62ed70e620c52fcb79f3ac427cf3a6", size = 7801336 },
{ url = "https://files.pythonhosted.org/packages/77/59/4dcdb3a6695af6c698a95aec13016a550ef2f85144d22f61f81d1e064148/matplotlib-3.9.3-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:026bdf3137ab6022c866efa4813b6bbeddc2ed4c9e7e02f0e323a7bca380dfa0", size = 8218178 },
{ url = "https://files.pythonhosted.org/packages/4f/27/7c72db0d0ee35d9237572565ffa3c0eb25fc46a3f47e0f16412a587bc9d8/matplotlib-3.9.3-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:760a5e89ebbb172989e8273024a1024b0f084510b9105261b3b00c15e9c9f006", size = 8327768 },
{ url = "https://files.pythonhosted.org/packages/de/ad/213eee624feadba7b77e881c9d2c04c1e036efe69d19031e3fa927fdb5dc/matplotlib-3.9.3-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:a42b9dc42de2cfe357efa27d9c50c7833fc5ab9b2eb7252ccd5d5f836a84e1e4", size = 9094075 },
{ url = "https://files.pythonhosted.org/packages/19/1b/cb8e99a5fe2e2b14e3b8234cb1649a675be63f74a5224a648ae4ab61f60c/matplotlib-3.9.3-cp313-cp313t-win_amd64.whl", hash = "sha256:e0fcb7da73fbf67b5f4bdaa57d85bb585a4e913d4a10f3e15b32baea56a67f0a", size = 7888937 },
]
[[package]]
name = "numpy"
version = "2.2.0"
source = { registry = "https://pypi.org/simple" }
sdist = { url = "https://files.pythonhosted.org/packages/47/1b/1d565e0f6e156e1522ab564176b8b29d71e13d8caf003a08768df3d5cec5/numpy-2.2.0.tar.gz", hash = "sha256:140dd80ff8981a583a60980be1a655068f8adebf7a45a06a6858c873fcdcd4a0", size = 20225497 }
wheels = [
{ url = "https://files.pythonhosted.org/packages/c7/81/3882353e097204fe4d7a5fe026b694b0104b78f930c969faadeed1538e00/numpy-2.2.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:1e25507d85da11ff5066269d0bd25d06e0a0f2e908415534f3e603d2a78e4ffa", size = 21212476 },
{ url = "https://files.pythonhosted.org/packages/2c/64/5577dc71240272749e07fcacb47c0f29e31ba4fbd1613fefbd1aa88efc29/numpy-2.2.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:a62eb442011776e4036af5c8b1a00b706c5bc02dc15eb5344b0c750428c94219", size = 14351441 },
{ url = "https://files.pythonhosted.org/packages/c9/43/850c040481c19c1c2289203a606df1a202eeb3aa81440624bac891024f83/numpy-2.2.0-cp310-cp310-macosx_14_0_arm64.whl", hash = "sha256:b606b1aaf802e6468c2608c65ff7ece53eae1a6874b3765f69b8ceb20c5fa78e", size = 5390304 },
{ url = "https://files.pythonhosted.org/packages/73/96/a4c8a86300dbafc7e4f44d8986f8b64950b7f4640a2dc5c91e036afe28c6/numpy-2.2.0-cp310-cp310-macosx_14_0_x86_64.whl", hash = "sha256:36b2b43146f646642b425dd2027730f99bac962618ec2052932157e213a040e9", size = 6925476 },
{ url = "https://files.pythonhosted.org/packages/0c/0a/22129c3107c4fb237f97876df4399a5c3a83f3d95f86e0353ae6fbbd202f/numpy-2.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7fe8f3583e0607ad4e43a954e35c1748b553bfe9fdac8635c02058023277d1b3", size = 14329997 },
{ url = "https://files.pythonhosted.org/packages/4c/49/c2adeccc8a47bcd9335ec000dfcb4de34a7c34aeaa23af57cd504017e8c3/numpy-2.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:122fd2fcfafdefc889c64ad99c228d5a1f9692c3a83f56c292618a59aa60ae83", size = 16378908 },
{ url = "https://files.pythonhosted.org/packages/8d/85/b65f4596748cc5468c0a978a16b3be45f6bcec78339b0fe7bce71d121d89/numpy-2.2.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:3f2f5cddeaa4424a0a118924b988746db6ffa8565e5829b1841a8a3bd73eb59a", size = 15540949 },
{ url = "https://files.pythonhosted.org/packages/ff/b3/3b18321c94a6a6a1d972baf1b39a6de50e65c991002c014ffbcce7e09be8/numpy-2.2.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:7fe4bb0695fe986a9e4deec3b6857003b4cfe5c5e4aac0b95f6a658c14635e31", size = 18167677 },
{ url = "https://files.pythonhosted.org/packages/41/f0/fa2a76e893a05764e4474f6011575c4e4ccf32af9c95bfcc8ef4b8a99f69/numpy-2.2.0-cp310-cp310-win32.whl", hash = "sha256:b30042fe92dbd79f1ba7f6898fada10bdaad1847c44f2dff9a16147e00a93661", size = 6570288 },
{ url = "https://files.pythonhosted.org/packages/97/4e/0b7debcd013214db224997b0d3e39bb7b3656d37d06dfc31bb57d42d143b/numpy-2.2.0-cp310-cp310-win_amd64.whl", hash = "sha256:54dc1d6d66f8d37843ed281773c7174f03bf7ad826523f73435deb88ba60d2d4", size = 12912730 },
{ url = "https://files.pythonhosted.org/packages/80/1b/736023977a96e787c4e7653a1ac2d31d4f6ab6b4048f83c8359f7c0af2e3/numpy-2.2.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:9874bc2ff574c40ab7a5cbb7464bf9b045d617e36754a7bc93f933d52bd9ffc6", size = 21216607 },
{ url = "https://files.pythonhosted.org/packages/85/4f/5f0be4c5c93525e663573bab9e29bd88a71f85de3a0d01413ee05bce0c2f/numpy-2.2.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:0da8495970f6b101ddd0c38ace92edea30e7e12b9a926b57f5fabb1ecc25bb90", size = 14387756 },
{ url = "https://files.pythonhosted.org/packages/36/78/c38af7833c4f29999cdacdf12452b43b660cd25a1990ea9a7edf1fb01f17/numpy-2.2.0-cp311-cp311-macosx_14_0_arm64.whl", hash = "sha256:0557eebc699c1c34cccdd8c3778c9294e8196df27d713706895edc6f57d29608", size = 5388483 },
{ url = "https://files.pythonhosted.org/packages/e9/b5/306ac6ee3f8f0c51abd3664ee8a9b8e264cbf179a860674827151ecc0a9c/numpy-2.2.0-cp311-cp311-macosx_14_0_x86_64.whl", hash = "sha256:3579eaeb5e07f3ded59298ce22b65f877a86ba8e9fe701f5576c99bb17c283da", size = 6929721 },
{ url = "https://files.pythonhosted.org/packages/ea/15/e33a7d86d8ce91de82c34ce94a87f2b8df891e603675e83ec7039325ff10/numpy-2.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:40deb10198bbaa531509aad0cd2f9fadb26c8b94070831e2208e7df543562b74", size = 14334667 },
{ url = "https://files.pythonhosted.org/packages/52/33/10825f580f42a353f744abc450dcd2a4b1e6f1931abb0ccbd1d63bd3993c/numpy-2.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c2aed8fcf8abc3020d6a9ccb31dbc9e7d7819c56a348cc88fd44be269b37427e", size = 16390204 },
{ url = "https://files.pythonhosted.org/packages/b4/24/36cce77559572bdc6c8bcdd2f3e0db03c7079d14b9a1cd342476d7f451e8/numpy-2.2.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:a222d764352c773aa5ebde02dd84dba3279c81c6db2e482d62a3fa54e5ece69b", size = 15556123 },
{ url = "https://files.pythonhosted.org/packages/05/51/2d706d14adee8f5c70c5de3831673d4d57051fc9ac6f3f6bff8811d2f9bd/numpy-2.2.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:4e58666988605e251d42c2818c7d3d8991555381be26399303053b58a5bbf30d", size = 18179898 },
{ url = "https://files.pythonhosted.org/packages/8a/e7/ea8b7652564113f218e75b296e3545a256d88b233021f792fd08591e8f33/numpy-2.2.0-cp311-cp311-win32.whl", hash = "sha256:4723a50e1523e1de4fccd1b9a6dcea750c2102461e9a02b2ac55ffeae09a4410", size = 6568146 },
{ url = "https://files.pythonhosted.org/packages/d0/06/3d1ff6ed377cb0340baf90487a35f15f9dc1db8e0a07de2bf2c54a8e490f/numpy-2.2.0-cp311-cp311-win_amd64.whl", hash = "sha256:16757cf28621e43e252c560d25b15f18a2f11da94fea344bf26c599b9cf54b73", size = 12916677 },
{ url = "https://files.pythonhosted.org/packages/7f/bc/a20dc4e1d051149052762e7647455311865d11c603170c476d1e910a353e/numpy-2.2.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:cff210198bb4cae3f3c100444c5eaa573a823f05c253e7188e1362a5555235b3", size = 20909153 },
{ url = "https://files.pythonhosted.org/packages/60/3d/ac4fb63f36db94f4c7db05b45e3ecb3f88f778ca71850664460c78cfde41/numpy-2.2.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:58b92a5828bd4d9aa0952492b7de803135038de47343b2aa3cc23f3b71a3dc4e", size = 14095021 },
{ url = "https://files.pythonhosted.org/packages/41/6d/a654d519d24e4fcc7a83d4a51209cda086f26cf30722b3d8ffc1aa9b775e/numpy-2.2.0-cp312-cp312-macosx_14_0_arm64.whl", hash = "sha256:ebe5e59545401fbb1b24da76f006ab19734ae71e703cdb4a8b347e84a0cece67", size = 5125491 },
{ url = "https://files.pythonhosted.org/packages/e6/22/fab7e1510a62e5092f4e6507a279020052b89f11d9cfe52af7f52c243b04/numpy-2.2.0-cp312-cp312-macosx_14_0_x86_64.whl", hash = "sha256:e2b8cd48a9942ed3f85b95ca4105c45758438c7ed28fff1e4ce3e57c3b589d8e", size = 6658534 },
{ url = "https://files.pythonhosted.org/packages/fc/29/a3d938ddc5a534cd53df7ab79d20a68db8c67578de1df0ae0118230f5f54/numpy-2.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:57fcc997ffc0bef234b8875a54d4058afa92b0b0c4223fc1f62f24b3b5e86038", size = 14046306 },
{ url = "https://files.pythonhosted.org/packages/90/24/d0bbb56abdd8934f30384632e3c2ca1ebfeb5d17e150c6e366ba291de36b/numpy-2.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:85ad7d11b309bd132d74397fcf2920933c9d1dc865487128f5c03d580f2c3d03", size = 16095819 },
{ url = "https://files.pythonhosted.org/packages/99/9c/58a673faa9e8a0e77248e782f7a17410cf7259b326265646fd50ed49c4e1/numpy-2.2.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:cb24cca1968b21355cc6f3da1a20cd1cebd8a023e3c5b09b432444617949085a", size = 15243215 },
{ url = "https://files.pythonhosted.org/packages/9c/61/f311693f78cbf635cfb69ce9e1e857ff83937a27d93c96ac5932fd33e330/numpy-2.2.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:0798b138c291d792f8ea40fe3768610f3c7dd2574389e37c3f26573757c8f7ef", size = 17860175 },
{ url = "https://files.pythonhosted.org/packages/11/3e/491c34262cb1fc9dd13a00beb80d755ee0517b17db20e54cac7aa524533e/numpy-2.2.0-cp312-cp312-win32.whl", hash = "sha256:afe8fb968743d40435c3827632fd36c5fbde633b0423da7692e426529b1759b1", size = 6273281 },
{ url = "https://files.pythonhosted.org/packages/89/ea/00537f599eb230771157bc509f6ea5b2dddf05d4b09f9d2f1d7096a18781/numpy-2.2.0-cp312-cp312-win_amd64.whl", hash = "sha256:3a4199f519e57d517ebd48cb76b36c82da0360781c6a0353e64c0cac30ecaad3", size = 12613227 },
{ url = "https://files.pythonhosted.org/packages/bd/4c/0d1eef206545c994289e7a9de21b642880a11e0ed47a2b0c407c688c4f69/numpy-2.2.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:f8c8b141ef9699ae777c6278b52c706b653bf15d135d302754f6b2e90eb30367", size = 20895707 },
{ url = "https://files.pythonhosted.org/packages/16/cb/88f6c1e6df83002c421d5f854ccf134aa088aa997af786a5dac3f32ec99b/numpy-2.2.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:0f0986e917aca18f7a567b812ef7ca9391288e2acb7a4308aa9d265bd724bdae", size = 14110592 },
{ url = "https://files.pythonhosted.org/packages/b4/54/817e6894168a43f33dca74199ba0dd0f1acd99aa6323ed6d323d63d640a2/numpy-2.2.0-cp313-cp313-macosx_14_0_arm64.whl", hash = "sha256:1c92113619f7b272838b8d6702a7f8ebe5edea0df48166c47929611d0b4dea69", size = 5110858 },
{ url = "https://files.pythonhosted.org/packages/c7/99/00d8a1a8eb70425bba7880257ed73fed08d3e8d05da4202fb6b9a81d5ee4/numpy-2.2.0-cp313-cp313-macosx_14_0_x86_64.whl", hash = "sha256:5a145e956b374e72ad1dff82779177d4a3c62bc8248f41b80cb5122e68f22d13", size = 6645143 },
{ url = "https://files.pythonhosted.org/packages/34/86/5b9c2b7c56e7a9d9297a0a4be0b8433f498eba52a8f5892d9132b0f64627/numpy-2.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:18142b497d70a34b01642b9feabb70156311b326fdddd875a9981f34a369b671", size = 14042812 },
{ url = "https://files.pythonhosted.org/packages/df/54/13535f74391dbe5f479ceed96f1403267be302c840040700d4fd66688089/numpy-2.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a7d41d1612c1a82b64697e894b75db6758d4f21c3ec069d841e60ebe54b5b571", size = 16093419 },
{ url = "https://files.pythonhosted.org/packages/dd/37/dfb2056842ac61315f225aa56f455da369f5223e4c5a38b91d20da1b628b/numpy-2.2.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:a98f6f20465e7618c83252c02041517bd2f7ea29be5378f09667a8f654a5918d", size = 15238969 },
{ url = "https://files.pythonhosted.org/packages/5a/3d/d20d24ee313992f0b7e7b9d9eef642d9b545d39d5b91c4a2cc8c98776328/numpy-2.2.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:e09d40edfdb4e260cb1567d8ae770ccf3b8b7e9f0d9b5c2a9992696b30ce2742", size = 17855705 },
{ url = "https://files.pythonhosted.org/packages/5b/40/944c9ee264f875a2db6f79380944fd2b5bb9d712bb4a134d11f45ad5b693/numpy-2.2.0-cp313-cp313-win32.whl", hash = "sha256:3905a5fffcc23e597ee4d9fb3fcd209bd658c352657548db7316e810ca80458e", size = 6270078 },
{ url = "https://files.pythonhosted.org/packages/30/04/e1ee6f8b22034302d4c5c24e15782bdedf76d90b90f3874ed0b48525def0/numpy-2.2.0-cp313-cp313-win_amd64.whl", hash = "sha256:a184288538e6ad699cbe6b24859206e38ce5fba28f3bcfa51c90d0502c1582b2", size = 12605791 },
{ url = "https://files.pythonhosted.org/packages/ef/fb/51d458625cd6134d60ac15180ae50995d7d21b0f2f92a6286ae7b0792d19/numpy-2.2.0-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:7832f9e8eb00be32f15fdfb9a981d6955ea9adc8574c521d48710171b6c55e95", size = 20920160 },
{ url = "https://files.pythonhosted.org/packages/b4/34/162ae0c5d2536ea4be98c813b5161c980f0443cd5765fde16ddfe3450140/numpy-2.2.0-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:f0dd071b95bbca244f4cb7f70b77d2ff3aaaba7fa16dc41f58d14854a6204e6c", size = 14119064 },
{ url = "https://files.pythonhosted.org/packages/17/6c/4195dd0e1c41c55f466d516e17e9e28510f32af76d23061ea3da67438e3c/numpy-2.2.0-cp313-cp313t-macosx_14_0_arm64.whl", hash = "sha256:b0b227dcff8cdc3efbce66d4e50891f04d0a387cce282fe1e66199146a6a8fca", size = 5152778 },
{ url = "https://files.pythonhosted.org/packages/2f/47/ea804ae525832c8d05ed85b560dfd242d34e4bb0962bc269ccaa720fb934/numpy-2.2.0-cp313-cp313t-macosx_14_0_x86_64.whl", hash = "sha256:6ab153263a7c5ccaf6dfe7e53447b74f77789f28ecb278c3b5d49db7ece10d6d", size = 6667605 },
{ url = "https://files.pythonhosted.org/packages/76/99/34d20e50b3d894bb16b5374bfbee399ab8ff3a33bf1e1f0b8acfe7bbd70d/numpy-2.2.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e500aba968a48e9019e42c0c199b7ec0696a97fa69037bea163b55398e390529", size = 14013275 },
{ url = "https://files.pythonhosted.org/packages/69/8f/a1df7bd02d434ab82539517d1b98028985700cfc4300bc5496fb140ca648/numpy-2.2.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:440cfb3db4c5029775803794f8638fbdbf71ec702caf32735f53b008e1eaece3", size = 16074900 },
{ url = "https://files.pythonhosted.org/packages/04/94/b419e7a76bf21a00fcb03c613583f10e389fdc8dfe420412ff5710c8ad3d/numpy-2.2.0-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:a55dc7a7f0b6198b07ec0cd445fbb98b05234e8b00c5ac4874a63372ba98d4ab", size = 15219122 },
{ url = "https://files.pythonhosted.org/packages/65/d9/dddf398b2b6c5d750892a207a469c2854a8db0f033edaf72103af8cf05aa/numpy-2.2.0-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:4bddbaa30d78c86329b26bd6aaaea06b1e47444da99eddac7bf1e2fab717bd72", size = 17851668 },
{ url = "https://files.pythonhosted.org/packages/d4/dc/09a4e5819a9782a213c0eb4eecacdc1cd75ad8dac99279b04cfccb7eeb0a/numpy-2.2.0-cp313-cp313t-win32.whl", hash = "sha256:30bf971c12e4365153afb31fc73f441d4da157153f3400b82db32d04de1e4066", size = 6325288 },
{ url = "https://files.pythonhosted.org/packages/ce/e1/e0d06ec34036c92b43aef206efe99a5f5f04e12c776eab82a36e00c40afc/numpy-2.2.0-cp313-cp313t-win_amd64.whl", hash = "sha256:d35717333b39d1b6bb8433fa758a55f1081543de527171543a2b710551d40881", size = 12692303 },
{ url = "https://files.pythonhosted.org/packages/f3/18/6d4e1274f221073058b621f4df8050958b7564b24b4fa25be9f1b7639274/numpy-2.2.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:e12c6c1ce84628c52d6367863773f7c8c8241be554e8b79686e91a43f1733773", size = 21043901 },
{ url = "https://files.pythonhosted.org/packages/19/3e/2b20599e7ead7ae1b89a77bb34f88c5ec12e43fbb320576ed646388d2cb7/numpy-2.2.0-pp310-pypy310_pp73-macosx_14_0_x86_64.whl", hash = "sha256:b6207dc8fb3c8cb5668e885cef9ec7f70189bec4e276f0ff70d5aa078d32c88e", size = 6789122 },
{ url = "https://files.pythonhosted.org/packages/c9/5a/378954132c192fafa6c3d5c160092a427c7562e5bda0cc6ad9cc37008a7a/numpy-2.2.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a50aeff71d0f97b6450d33940c7181b08be1441c6c193e678211bff11aa725e7", size = 16194018 },
{ url = "https://files.pythonhosted.org/packages/67/17/209bda34fc83f3436834392f44643e66dcf3c77465f232102e7f1c7d8eae/numpy-2.2.0-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:df12a1f99b99f569a7c2ae59aa2d31724e8d835fc7f33e14f4792e3071d11221", size = 12819486 },
]
[[package]]
name = "packaging"
version = "24.2"
source = { registry = "https://pypi.org/simple" }
sdist = { url = "https://files.pythonhosted.org/packages/d0/63/68dbb6eb2de9cb10ee4c9c14a0148804425e13c4fb20d61cce69f53106da/packaging-24.2.tar.gz", hash = "sha256:c228a6dc5e932d346bc5739379109d49e8853dd8223571c7c5b55260edc0b97f", size = 163950 }
wheels = [
{ url = "https://files.pythonhosted.org/packages/88/ef/eb23f262cca3c0c4eb7ab1933c3b1f03d021f2c48f54763065b6f0e321be/packaging-24.2-py3-none-any.whl", hash = "sha256:09abb1bccd265c01f4a3aa3f7a7db064b36514d2cba19a2f694fe6150451a759", size = 65451 },
]
[[package]]
name = "pandas"
version = "2.2.3"
source = { registry = "https://pypi.org/simple" }
dependencies = [
{ name = "numpy" },
{ name = "python-dateutil" },
{ name = "pytz" },
{ name = "tzdata" },
]
sdist = { url = "https://files.pythonhosted.org/packages/9c/d6/9f8431bacc2e19dca897724cd097b1bb224a6ad5433784a44b587c7c13af/pandas-2.2.3.tar.gz", hash = "sha256:4f18ba62b61d7e192368b84517265a99b4d7ee8912f8708660fb4a366cc82667", size = 4399213 }
wheels = [
{ url = "https://files.pythonhosted.org/packages/aa/70/c853aec59839bceed032d52010ff5f1b8d87dc3114b762e4ba2727661a3b/pandas-2.2.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:1948ddde24197a0f7add2bdc4ca83bf2b1ef84a1bc8ccffd95eda17fd836ecb5", size = 12580827 },
{ url = "https://files.pythonhosted.org/packages/99/f2/c4527768739ffa4469b2b4fff05aa3768a478aed89a2f271a79a40eee984/pandas-2.2.3-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:381175499d3802cde0eabbaf6324cce0c4f5d52ca6f8c377c29ad442f50f6348", size = 11303897 },
{ url = "https://files.pythonhosted.org/packages/ed/12/86c1747ea27989d7a4064f806ce2bae2c6d575b950be087837bdfcabacc9/pandas-2.2.3-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:d9c45366def9a3dd85a6454c0e7908f2b3b8e9c138f5dc38fed7ce720d8453ed", size = 66480908 },
{ url = "https://files.pythonhosted.org/packages/44/50/7db2cd5e6373ae796f0ddad3675268c8d59fb6076e66f0c339d61cea886b/pandas-2.2.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:86976a1c5b25ae3f8ccae3a5306e443569ee3c3faf444dfd0f41cda24667ad57", size = 13064210 },
{ url = "https://files.pythonhosted.org/packages/61/61/a89015a6d5536cb0d6c3ba02cebed51a95538cf83472975275e28ebf7d0c/pandas-2.2.3-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:b8661b0238a69d7aafe156b7fa86c44b881387509653fdf857bebc5e4008ad42", size = 16754292 },
{ url = "https://files.pythonhosted.org/packages/ce/0d/4cc7b69ce37fac07645a94e1d4b0880b15999494372c1523508511b09e40/pandas-2.2.3-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:37e0aced3e8f539eccf2e099f65cdb9c8aa85109b0be6e93e2baff94264bdc6f", size = 14416379 },
{ url = "https://files.pythonhosted.org/packages/31/9e/6ebb433de864a6cd45716af52a4d7a8c3c9aaf3a98368e61db9e69e69a9c/pandas-2.2.3-cp310-cp310-win_amd64.whl", hash = "sha256:56534ce0746a58afaf7942ba4863e0ef81c9c50d3f0ae93e9497d6a41a057645", size = 11598471 },
{ url = "https://files.pythonhosted.org/packages/a8/44/d9502bf0ed197ba9bf1103c9867d5904ddcaf869e52329787fc54ed70cc8/pandas-2.2.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:66108071e1b935240e74525006034333f98bcdb87ea116de573a6a0dccb6c039", size = 12602222 },
{ url = "https://files.pythonhosted.org/packages/52/11/9eac327a38834f162b8250aab32a6781339c69afe7574368fffe46387edf/pandas-2.2.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:7c2875855b0ff77b2a64a0365e24455d9990730d6431b9e0ee18ad8acee13dbd", size = 11321274 },
{ url = "https://files.pythonhosted.org/packages/45/fb/c4beeb084718598ba19aa9f5abbc8aed8b42f90930da861fcb1acdb54c3a/pandas-2.2.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:cd8d0c3be0515c12fed0bdbae072551c8b54b7192c7b1fda0ba56059a0179698", size = 15579836 },
{ url = "https://files.pythonhosted.org/packages/cd/5f/4dba1d39bb9c38d574a9a22548c540177f78ea47b32f99c0ff2ec499fac5/pandas-2.2.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c124333816c3a9b03fbeef3a9f230ba9a737e9e5bb4060aa2107a86cc0a497fc", size = 13058505 },
{ url = "https://files.pythonhosted.org/packages/b9/57/708135b90391995361636634df1f1130d03ba456e95bcf576fada459115a/pandas-2.2.3-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:63cc132e40a2e084cf01adf0775b15ac515ba905d7dcca47e9a251819c575ef3", size = 16744420 },
{ url = "https://files.pythonhosted.org/packages/86/4a/03ed6b7ee323cf30404265c284cee9c65c56a212e0a08d9ee06984ba2240/pandas-2.2.3-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:29401dbfa9ad77319367d36940cd8a0b3a11aba16063e39632d98b0e931ddf32", size = 14440457 },
{ url = "https://files.pythonhosted.org/packages/ed/8c/87ddf1fcb55d11f9f847e3c69bb1c6f8e46e2f40ab1a2d2abadb2401b007/pandas-2.2.3-cp311-cp311-win_amd64.whl", hash = "sha256:3fc6873a41186404dad67245896a6e440baacc92f5b716ccd1bc9ed2995ab2c5", size = 11617166 },
{ url = "https://files.pythonhosted.org/packages/17/a3/fb2734118db0af37ea7433f57f722c0a56687e14b14690edff0cdb4b7e58/pandas-2.2.3-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:b1d432e8d08679a40e2a6d8b2f9770a5c21793a6f9f47fdd52c5ce1948a5a8a9", size = 12529893 },
{ url = "https://files.pythonhosted.org/packages/e1/0c/ad295fd74bfac85358fd579e271cded3ac969de81f62dd0142c426b9da91/pandas-2.2.3-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:a5a1595fe639f5988ba6a8e5bc9649af3baf26df3998a0abe56c02609392e0a4", size = 11363475 },
{ url = "https://files.pythonhosted.org/packages/c6/2a/4bba3f03f7d07207481fed47f5b35f556c7441acddc368ec43d6643c5777/pandas-2.2.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:5de54125a92bb4d1c051c0659e6fcb75256bf799a732a87184e5ea503965bce3", size = 15188645 },
{ url = "https://files.pythonhosted.org/packages/38/f8/d8fddee9ed0d0c0f4a2132c1dfcf0e3e53265055da8df952a53e7eaf178c/pandas-2.2.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fffb8ae78d8af97f849404f21411c95062db1496aeb3e56f146f0355c9989319", size = 12739445 },
{ url = "https://files.pythonhosted.org/packages/20/e8/45a05d9c39d2cea61ab175dbe6a2de1d05b679e8de2011da4ee190d7e748/pandas-2.2.3-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:6dfcb5ee8d4d50c06a51c2fffa6cff6272098ad6540aed1a76d15fb9318194d8", size = 16359235 },
{ url = "https://files.pythonhosted.org/packages/1d/99/617d07a6a5e429ff90c90da64d428516605a1ec7d7bea494235e1c3882de/pandas-2.2.3-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:062309c1b9ea12a50e8ce661145c6aab431b1e99530d3cd60640e255778bd43a", size = 14056756 },
{ url = "https://files.pythonhosted.org/packages/29/d4/1244ab8edf173a10fd601f7e13b9566c1b525c4f365d6bee918e68381889/pandas-2.2.3-cp312-cp312-win_amd64.whl", hash = "sha256:59ef3764d0fe818125a5097d2ae867ca3fa64df032331b7e0917cf5d7bf66b13", size = 11504248 },
{ url = "https://files.pythonhosted.org/packages/64/22/3b8f4e0ed70644e85cfdcd57454686b9057c6c38d2f74fe4b8bc2527214a/pandas-2.2.3-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:f00d1345d84d8c86a63e476bb4955e46458b304b9575dcf71102b5c705320015", size = 12477643 },
{ url = "https://files.pythonhosted.org/packages/e4/93/b3f5d1838500e22c8d793625da672f3eec046b1a99257666c94446969282/pandas-2.2.3-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:3508d914817e153ad359d7e069d752cdd736a247c322d932eb89e6bc84217f28", size = 11281573 },
{ url = "https://files.pythonhosted.org/packages/f5/94/6c79b07f0e5aab1dcfa35a75f4817f5c4f677931d4234afcd75f0e6a66ca/pandas-2.2.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:22a9d949bfc9a502d320aa04e5d02feab689d61da4e7764b62c30b991c42c5f0", size = 15196085 },
{ url = "https://files.pythonhosted.org/packages/e8/31/aa8da88ca0eadbabd0a639788a6da13bb2ff6edbbb9f29aa786450a30a91/pandas-2.2.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f3a255b2c19987fbbe62a9dfd6cff7ff2aa9ccab3fc75218fd4b7530f01efa24", size = 12711809 },
{ url = "https://files.pythonhosted.org/packages/ee/7c/c6dbdb0cb2a4344cacfb8de1c5808ca885b2e4dcfde8008266608f9372af/pandas-2.2.3-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:800250ecdadb6d9c78eae4990da62743b857b470883fa27f652db8bdde7f6659", size = 16356316 },
{ url = "https://files.pythonhosted.org/packages/57/b7/8b757e7d92023b832869fa8881a992696a0bfe2e26f72c9ae9f255988d42/pandas-2.2.3-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:6374c452ff3ec675a8f46fd9ab25c4ad0ba590b71cf0656f8b6daa5202bca3fb", size = 14022055 },
{ url = "https://files.pythonhosted.org/packages/3b/bc/4b18e2b8c002572c5a441a64826252ce5da2aa738855747247a971988043/pandas-2.2.3-cp313-cp313-win_amd64.whl", hash = "sha256:61c5ad4043f791b61dd4752191d9f07f0ae412515d59ba8f005832a532f8736d", size = 11481175 },
{ url = "https://files.pythonhosted.org/packages/76/a3/a5d88146815e972d40d19247b2c162e88213ef51c7c25993942c39dbf41d/pandas-2.2.3-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:3b71f27954685ee685317063bf13c7709a7ba74fc996b84fc6821c59b0f06468", size = 12615650 },
{ url = "https://files.pythonhosted.org/packages/9c/8c/f0fd18f6140ddafc0c24122c8a964e48294acc579d47def376fef12bcb4a/pandas-2.2.3-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:38cf8125c40dae9d5acc10fa66af8ea6fdf760b2714ee482ca691fc66e6fcb18", size = 11290177 },
{ url = "https://files.pythonhosted.org/packages/ed/f9/e995754eab9c0f14c6777401f7eece0943840b7a9fc932221c19d1abee9f/pandas-2.2.3-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:ba96630bc17c875161df3818780af30e43be9b166ce51c9a18c1feae342906c2", size = 14651526 },
{ url = "https://files.pythonhosted.org/packages/25/b0/98d6ae2e1abac4f35230aa756005e8654649d305df9a28b16b9ae4353bff/pandas-2.2.3-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1db71525a1538b30142094edb9adc10be3f3e176748cd7acc2240c2f2e5aa3a4", size = 11871013 },
{ url = "https://files.pythonhosted.org/packages/cc/57/0f72a10f9db6a4628744c8e8f0df4e6e21de01212c7c981d31e50ffc8328/pandas-2.2.3-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:15c0e1e02e93116177d29ff83e8b1619c93ddc9c49083f237d4312337a61165d", size = 15711620 },
{ url = "https://files.pythonhosted.org/packages/ab/5f/b38085618b950b79d2d9164a711c52b10aefc0ae6833b96f626b7021b2ed/pandas-2.2.3-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:ad5b65698ab28ed8d7f18790a0dc58005c7629f227be9ecc1072aa74c0c1d43a", size = 13098436 },
]
[[package]]
name = "pillow"
version = "11.0.0"
source = { registry = "https://pypi.org/simple" }
sdist = { url = "https://files.pythonhosted.org/packages/a5/26/0d95c04c868f6bdb0c447e3ee2de5564411845e36a858cfd63766bc7b563/pillow-11.0.0.tar.gz", hash = "sha256:72bacbaf24ac003fea9bff9837d1eedb6088758d41e100c1552930151f677739", size = 46737780 }
wheels = [
{ url = "https://files.pythonhosted.org/packages/98/fb/a6ce6836bd7fd93fbf9144bf54789e02babc27403b50a9e1583ee877d6da/pillow-11.0.0-cp310-cp310-macosx_10_10_x86_64.whl", hash = "sha256:6619654954dc4936fcff82db8eb6401d3159ec6be81e33c6000dfd76ae189947", size = 3154708 },
{ url = "https://files.pythonhosted.org/packages/6a/1d/1f51e6e912d8ff316bb3935a8cda617c801783e0b998bf7a894e91d3bd4c/pillow-11.0.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:b3c5ac4bed7519088103d9450a1107f76308ecf91d6dabc8a33a2fcfb18d0fba", size = 2979223 },
{ url = "https://files.pythonhosted.org/packages/90/83/e2077b0192ca8a9ef794dbb74700c7e48384706467067976c2a95a0f40a1/pillow-11.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a65149d8ada1055029fcb665452b2814fe7d7082fcb0c5bed6db851cb69b2086", size = 4183167 },
{ url = "https://files.pythonhosted.org/packages/0e/74/467af0146970a98349cdf39e9b79a6cc8a2e7558f2c01c28a7b6b85c5bda/pillow-11.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:88a58d8ac0cc0e7f3a014509f0455248a76629ca9b604eca7dc5927cc593c5e9", size = 4283912 },
{ url = "https://files.pythonhosted.org/packages/85/b1/d95d4f7ca3a6c1ae120959605875a31a3c209c4e50f0029dc1a87566cf46/pillow-11.0.0-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:c26845094b1af3c91852745ae78e3ea47abf3dbcd1cf962f16b9a5fbe3ee8488", size = 4195815 },
{ url = "https://files.pythonhosted.org/packages/41/c3/94f33af0762ed76b5a237c5797e088aa57f2b7fa8ee7932d399087be66a8/pillow-11.0.0-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:1a61b54f87ab5786b8479f81c4b11f4d61702830354520837f8cc791ebba0f5f", size = 4366117 },
{ url = "https://files.pythonhosted.org/packages/ba/3c/443e7ef01f597497268899e1cca95c0de947c9bbf77a8f18b3c126681e5d/pillow-11.0.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:674629ff60030d144b7bca2b8330225a9b11c482ed408813924619c6f302fdbb", size = 4278607 },
{ url = "https://files.pythonhosted.org/packages/26/95/1495304448b0081e60c0c5d63f928ef48bb290acee7385804426fa395a21/pillow-11.0.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:598b4e238f13276e0008299bd2482003f48158e2b11826862b1eb2ad7c768b97", size = 4410685 },
{ url = "https://files.pythonhosted.org/packages/45/da/861e1df971ef0de9870720cb309ca4d553b26a9483ec9be3a7bf1de4a095/pillow-11.0.0-cp310-cp310-win32.whl", hash = "sha256:9a0f748eaa434a41fccf8e1ee7a3eed68af1b690e75328fd7a60af123c193b50", size = 2249185 },
{ url = "https://files.pythonhosted.org/packages/d5/4e/78f7c5202ea2a772a5ab05069c1b82503e6353cd79c7e474d4945f4b82c3/pillow-11.0.0-cp310-cp310-win_amd64.whl", hash = "sha256:a5629742881bcbc1f42e840af185fd4d83a5edeb96475a575f4da50d6ede337c", size = 2566726 },
{ url = "https://files.pythonhosted.org/packages/77/e4/6e84eada35cbcc646fc1870f72ccfd4afacb0fae0c37ffbffe7f5dc24bf1/pillow-11.0.0-cp310-cp310-win_arm64.whl", hash = "sha256:ee217c198f2e41f184f3869f3e485557296d505b5195c513b2bfe0062dc537f1", size = 2254585 },
{ url = "https://files.pythonhosted.org/packages/f0/eb/f7e21b113dd48a9c97d364e0915b3988c6a0b6207652f5a92372871b7aa4/pillow-11.0.0-cp311-cp311-macosx_10_10_x86_64.whl", hash = "sha256:1c1d72714f429a521d8d2d018badc42414c3077eb187a59579f28e4270b4b0fc", size = 3154705 },
{ url = "https://files.pythonhosted.org/packages/25/b3/2b54a1d541accebe6bd8b1358b34ceb2c509f51cb7dcda8687362490da5b/pillow-11.0.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:499c3a1b0d6fc8213519e193796eb1a86a1be4b1877d678b30f83fd979811d1a", size = 2979222 },
{ url = "https://files.pythonhosted.org/packages/20/12/1a41eddad8265c5c19dda8fb6c269ce15ee25e0b9f8f26286e6202df6693/pillow-11.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c8b2351c85d855293a299038e1f89db92a2f35e8d2f783489c6f0b2b5f3fe8a3", size = 4190220 },
{ url = "https://files.pythonhosted.org/packages/a9/9b/8a8c4d07d77447b7457164b861d18f5a31ae6418ef5c07f6f878fa09039a/pillow-11.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6f4dba50cfa56f910241eb7f883c20f1e7b1d8f7d91c750cd0b318bad443f4d5", size = 4291399 },
{ url = "https://files.pythonhosted.org/packages/fc/e4/130c5fab4a54d3991129800dd2801feeb4b118d7630148cd67f0e6269d4c/pillow-11.0.0-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:5ddbfd761ee00c12ee1be86c9c0683ecf5bb14c9772ddbd782085779a63dd55b", size = 4202709 },
{ url = "https://files.pythonhosted.org/packages/39/63/b3fc299528d7df1f678b0666002b37affe6b8751225c3d9c12cf530e73ed/pillow-11.0.0-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:45c566eb10b8967d71bf1ab8e4a525e5a93519e29ea071459ce517f6b903d7fa", size = 4372556 },
{ url = "https://files.pythonhosted.org/packages/c6/a6/694122c55b855b586c26c694937d36bb8d3b09c735ff41b2f315c6e66a10/pillow-11.0.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:b4fd7bd29610a83a8c9b564d457cf5bd92b4e11e79a4ee4716a63c959699b306", size = 4287187 },
{ url = "https://files.pythonhosted.org/packages/ba/a9/f9d763e2671a8acd53d29b1e284ca298bc10a595527f6be30233cdb9659d/pillow-11.0.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:cb929ca942d0ec4fac404cbf520ee6cac37bf35be479b970c4ffadf2b6a1cad9", size = 4418468 },
{ url = "https://files.pythonhosted.org/packages/6e/0e/b5cbad2621377f11313a94aeb44ca55a9639adabcaaa073597a1925f8c26/pillow-11.0.0-cp311-cp311-win32.whl", hash = "sha256:006bcdd307cc47ba43e924099a038cbf9591062e6c50e570819743f5607404f5", size = 2249249 },
{ url = "https://files.pythonhosted.org/packages/dc/83/1470c220a4ff06cd75fc609068f6605e567ea51df70557555c2ab6516b2c/pillow-11.0.0-cp311-cp311-win_amd64.whl", hash = "sha256:52a2d8323a465f84faaba5236567d212c3668f2ab53e1c74c15583cf507a0291", size = 2566769 },
{ url = "https://files.pythonhosted.org/packages/52/98/def78c3a23acee2bcdb2e52005fb2810ed54305602ec1bfcfab2bda6f49f/pillow-11.0.0-cp311-cp311-win_arm64.whl", hash = "sha256:16095692a253047fe3ec028e951fa4221a1f3ed3d80c397e83541a3037ff67c9", size = 2254611 },
{ url = "https://files.pythonhosted.org/packages/1c/a3/26e606ff0b2daaf120543e537311fa3ae2eb6bf061490e4fea51771540be/pillow-11.0.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:d2c0a187a92a1cb5ef2c8ed5412dd8d4334272617f532d4ad4de31e0495bd923", size = 3147642 },
{ url = "https://files.pythonhosted.org/packages/4f/d5/1caabedd8863526a6cfa44ee7a833bd97f945dc1d56824d6d76e11731939/pillow-11.0.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:084a07ef0821cfe4858fe86652fffac8e187b6ae677e9906e192aafcc1b69903", size = 2978999 },
{ url = "https://files.pythonhosted.org/packages/d9/ff/5a45000826a1aa1ac6874b3ec5a856474821a1b59d838c4f6ce2ee518fe9/pillow-11.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8069c5179902dcdce0be9bfc8235347fdbac249d23bd90514b7a47a72d9fecf4", size = 4196794 },
{ url = "https://files.pythonhosted.org/packages/9d/21/84c9f287d17180f26263b5f5c8fb201de0f88b1afddf8a2597a5c9fe787f/pillow-11.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f02541ef64077f22bf4924f225c0fd1248c168f86e4b7abdedd87d6ebaceab0f", size = 4300762 },
{ url = "https://files.pythonhosted.org/packages/84/39/63fb87cd07cc541438b448b1fed467c4d687ad18aa786a7f8e67b255d1aa/pillow-11.0.0-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:fcb4621042ac4b7865c179bb972ed0da0218a076dc1820ffc48b1d74c1e37fe9", size = 4210468 },
{ url = "https://files.pythonhosted.org/packages/7f/42/6e0f2c2d5c60f499aa29be14f860dd4539de322cd8fb84ee01553493fb4d/pillow-11.0.0-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:00177a63030d612148e659b55ba99527803288cea7c75fb05766ab7981a8c1b7", size = 4381824 },
{ url = "https://files.pythonhosted.org/packages/31/69/1ef0fb9d2f8d2d114db982b78ca4eeb9db9a29f7477821e160b8c1253f67/pillow-11.0.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:8853a3bf12afddfdf15f57c4b02d7ded92c7a75a5d7331d19f4f9572a89c17e6", size = 4296436 },
{ url = "https://files.pythonhosted.org/packages/44/ea/dad2818c675c44f6012289a7c4f46068c548768bc6c7f4e8c4ae5bbbc811/pillow-11.0.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:3107c66e43bda25359d5ef446f59c497de2b5ed4c7fdba0894f8d6cf3822dafc", size = 4429714 },
{ url = "https://files.pythonhosted.org/packages/af/3a/da80224a6eb15bba7a0dcb2346e2b686bb9bf98378c0b4353cd88e62b171/pillow-11.0.0-cp312-cp312-win32.whl", hash = "sha256:86510e3f5eca0ab87429dd77fafc04693195eec7fd6a137c389c3eeb4cfb77c6", size = 2249631 },
{ url = "https://files.pythonhosted.org/packages/57/97/73f756c338c1d86bb802ee88c3cab015ad7ce4b838f8a24f16b676b1ac7c/pillow-11.0.0-cp312-cp312-win_amd64.whl", hash = "sha256:8ec4a89295cd6cd4d1058a5e6aec6bf51e0eaaf9714774e1bfac7cfc9051db47", size = 2567533 },
{ url = "https://files.pythonhosted.org/packages/0b/30/2b61876e2722374558b871dfbfcbe4e406626d63f4f6ed92e9c8e24cac37/pillow-11.0.0-cp312-cp312-win_arm64.whl", hash = "sha256:27a7860107500d813fcd203b4ea19b04babe79448268403172782754870dac25", size = 2254890 },
{ url = "https://files.pythonhosted.org/packages/63/24/e2e15e392d00fcf4215907465d8ec2a2f23bcec1481a8ebe4ae760459995/pillow-11.0.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:bcd1fb5bb7b07f64c15618c89efcc2cfa3e95f0e3bcdbaf4642509de1942a699", size = 3147300 },
{ url = "https://files.pythonhosted.org/packages/43/72/92ad4afaa2afc233dc44184adff289c2e77e8cd916b3ddb72ac69495bda3/pillow-11.0.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:0e038b0745997c7dcaae350d35859c9715c71e92ffb7e0f4a8e8a16732150f38", size = 2978742 },
{ url = "https://files.pythonhosted.org/packages/9e/da/c8d69c5bc85d72a8523fe862f05ababdc52c0a755cfe3d362656bb86552b/pillow-11.0.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0ae08bd8ffc41aebf578c2af2f9d8749d91f448b3bfd41d7d9ff573d74f2a6b2", size = 4194349 },
{ url = "https://files.pythonhosted.org/packages/cd/e8/686d0caeed6b998351d57796496a70185376ed9c8ec7d99e1d19ad591fc6/pillow-11.0.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d69bfd8ec3219ae71bcde1f942b728903cad25fafe3100ba2258b973bd2bc1b2", size = 4298714 },
{ url = "https://files.pythonhosted.org/packages/ec/da/430015cec620d622f06854be67fd2f6721f52fc17fca8ac34b32e2d60739/pillow-11.0.0-cp313-cp313-manylinux_2_28_aarch64.whl", hash = "sha256:61b887f9ddba63ddf62fd02a3ba7add935d053b6dd7d58998c630e6dbade8527", size = 4208514 },
{ url = "https://files.pythonhosted.org/packages/44/ae/7e4f6662a9b1cb5f92b9cc9cab8321c381ffbee309210940e57432a4063a/pillow-11.0.0-cp313-cp313-manylinux_2_28_x86_64.whl", hash = "sha256:c6a660307ca9d4867caa8d9ca2c2658ab685de83792d1876274991adec7b93fa", size = 4380055 },
{ url = "https://files.pythonhosted.org/packages/74/d5/1a807779ac8a0eeed57f2b92a3c32ea1b696e6140c15bd42eaf908a261cd/pillow-11.0.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:73e3a0200cdda995c7e43dd47436c1548f87a30bb27fb871f352a22ab8dcf45f", size = 4296751 },
{ url = "https://files.pythonhosted.org/packages/38/8c/5fa3385163ee7080bc13026d59656267daaaaf3c728c233d530e2c2757c8/pillow-11.0.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:fba162b8872d30fea8c52b258a542c5dfd7b235fb5cb352240c8d63b414013eb", size = 4430378 },
{ url = "https://files.pythonhosted.org/packages/ca/1d/ad9c14811133977ff87035bf426875b93097fb50af747793f013979facdb/pillow-11.0.0-cp313-cp313-win32.whl", hash = "sha256:f1b82c27e89fffc6da125d5eb0ca6e68017faf5efc078128cfaa42cf5cb38798", size = 2249588 },
{ url = "https://files.pythonhosted.org/packages/fb/01/3755ba287dac715e6afdb333cb1f6d69740a7475220b4637b5ce3d78cec2/pillow-11.0.0-cp313-cp313-win_amd64.whl", hash = "sha256:8ba470552b48e5835f1d23ecb936bb7f71d206f9dfeee64245f30c3270b994de", size = 2567509 },
{ url = "https://files.pythonhosted.org/packages/c0/98/2c7d727079b6be1aba82d195767d35fcc2d32204c7a5820f822df5330152/pillow-11.0.0-cp313-cp313-win_arm64.whl", hash = "sha256:846e193e103b41e984ac921b335df59195356ce3f71dcfd155aa79c603873b84", size = 2254791 },
{ url = "https://files.pythonhosted.org/packages/eb/38/998b04cc6f474e78b563716b20eecf42a2fa16a84589d23c8898e64b0ffd/pillow-11.0.0-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:4ad70c4214f67d7466bea6a08061eba35c01b1b89eaa098040a35272a8efb22b", size = 3150854 },
{ url = "https://files.pythonhosted.org/packages/13/8e/be23a96292113c6cb26b2aa3c8b3681ec62b44ed5c2bd0b258bd59503d3c/pillow-11.0.0-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:6ec0d5af64f2e3d64a165f490d96368bb5dea8b8f9ad04487f9ab60dc4bb6003", size = 2982369 },
{ url = "https://files.pythonhosted.org/packages/97/8a/3db4eaabb7a2ae8203cd3a332a005e4aba00067fc514aaaf3e9721be31f1/pillow-11.0.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c809a70e43c7977c4a42aefd62f0131823ebf7dd73556fa5d5950f5b354087e2", size = 4333703 },
{ url = "https://files.pythonhosted.org/packages/28/ac/629ffc84ff67b9228fe87a97272ab125bbd4dc462745f35f192d37b822f1/pillow-11.0.0-cp313-cp313t-manylinux_2_28_x86_64.whl", hash = "sha256:4b60c9520f7207aaf2e1d94de026682fc227806c6e1f55bba7606d1c94dd623a", size = 4412550 },
{ url = "https://files.pythonhosted.org/packages/d6/07/a505921d36bb2df6868806eaf56ef58699c16c388e378b0dcdb6e5b2fb36/pillow-11.0.0-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:1e2688958a840c822279fda0086fec1fdab2f95bf2b717b66871c4ad9859d7e8", size = 4461038 },
{ url = "https://files.pythonhosted.org/packages/d6/b9/fb620dd47fc7cc9678af8f8bd8c772034ca4977237049287e99dda360b66/pillow-11.0.0-cp313-cp313t-win32.whl", hash = "sha256:607bbe123c74e272e381a8d1957083a9463401f7bd01287f50521ecb05a313f8", size = 2253197 },
{ url = "https://files.pythonhosted.org/packages/df/86/25dde85c06c89d7fc5db17940f07aae0a56ac69aa9ccb5eb0f09798862a8/pillow-11.0.0-cp313-cp313t-win_amd64.whl", hash = "sha256:5c39ed17edea3bc69c743a8dd3e9853b7509625c2462532e62baa0732163a904", size = 2572169 },
{ url = "https://files.pythonhosted.org/packages/51/85/9c33f2517add612e17f3381aee7c4072779130c634921a756c97bc29fb49/pillow-11.0.0-cp313-cp313t-win_arm64.whl", hash = "sha256:75acbbeb05b86bc53cbe7b7e6fe00fbcf82ad7c684b3ad82e3d711da9ba287d3", size = 2256828 },
{ url = "https://files.pythonhosted.org/packages/36/57/42a4dd825eab762ba9e690d696d894ba366e06791936056e26e099398cda/pillow-11.0.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:1187739620f2b365de756ce086fdb3604573337cc28a0d3ac4a01ab6b2d2a6d2", size = 3119239 },
{ url = "https://files.pythonhosted.org/packages/98/f7/25f9f9e368226a1d6cf3507081a1a7944eddd3ca7821023377043f5a83c8/pillow-11.0.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:fbbcb7b57dc9c794843e3d1258c0fbf0f48656d46ffe9e09b63bbd6e8cd5d0a2", size = 2950803 },
{ url = "https://files.pythonhosted.org/packages/59/01/98ead48a6c2e31e6185d4c16c978a67fe3ccb5da5c2ff2ba8475379bb693/pillow-11.0.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5d203af30149ae339ad1b4f710d9844ed8796e97fda23ffbc4cc472968a47d0b", size = 3281098 },
{ url = "https://files.pythonhosted.org/packages/51/c0/570255b2866a0e4d500a14f950803a2ec273bac7badc43320120b9262450/pillow-11.0.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:21a0d3b115009ebb8ac3d2ebec5c2982cc693da935f4ab7bb5c8ebe2f47d36f2", size = 3323665 },
{ url = "https://files.pythonhosted.org/packages/0e/75/689b4ec0483c42bfc7d1aacd32ade7a226db4f4fac57c6fdcdf90c0731e3/pillow-11.0.0-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:73853108f56df97baf2bb8b522f3578221e56f646ba345a372c78326710d3830", size = 3310533 },
{ url = "https://files.pythonhosted.org/packages/3d/30/38bd6149cf53da1db4bad304c543ade775d225961c4310f30425995cb9ec/pillow-11.0.0-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:e58876c91f97b0952eb766123bfef372792ab3f4e3e1f1a2267834c2ab131734", size = 3414886 },
{ url = "https://files.pythonhosted.org/packages/ec/3d/c32a51d848401bd94cabb8767a39621496491ee7cd5199856b77da9b18ad/pillow-11.0.0-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:224aaa38177597bb179f3ec87eeefcce8e4f85e608025e9cfac60de237ba6316", size = 2567508 },
]
[[package]]
name = "pyparsing"
version = "3.2.0"
source = { registry = "https://pypi.org/simple" }
sdist = { url = "https://files.pythonhosted.org/packages/8c/d5/e5aeee5387091148a19e1145f63606619cb5f20b83fccb63efae6474e7b2/pyparsing-3.2.0.tar.gz", hash = "sha256:cbf74e27246d595d9a74b186b810f6fbb86726dbf3b9532efb343f6d7294fe9c", size = 920984 }
wheels = [
{ url = "https://files.pythonhosted.org/packages/be/ec/2eb3cd785efd67806c46c13a17339708ddc346cbb684eade7a6e6f79536a/pyparsing-3.2.0-py3-none-any.whl", hash = "sha256:93d9577b88da0bbea8cc8334ee8b918ed014968fd2ec383e868fb8afb1ccef84", size = 106921 },
]
[[package]]
name = "python-dateutil"
version = "2.9.0.post0"
source = { registry = "https://pypi.org/simple" }
dependencies = [
{ name = "six" },
]
sdist = { url = "https://files.pythonhosted.org/packages/66/c0/0c8b6ad9f17a802ee498c46e004a0eb49bc148f2fd230864601a86dcf6db/python-dateutil-2.9.0.post0.tar.gz", hash = "sha256:37dd54208da7e1cd875388217d5e00ebd4179249f90fb72437e91a35459a0ad3", size = 342432 }
wheels = [
{ url = "https://files.pythonhosted.org/packages/ec/57/56b9bcc3c9c6a792fcbaf139543cee77261f3651ca9da0c93f5c1221264b/python_dateutil-2.9.0.post0-py2.py3-none-any.whl", hash = "sha256:a8b2bc7bffae282281c8140a97d3aa9c14da0b136dfe83f850eea9a5f7470427", size = 229892 },
]
[[package]]
name = "pytz"
version = "2024.2"
source = { registry = "https://pypi.org/simple" }
sdist = { url = "https://files.pythonhosted.org/packages/3a/31/3c70bf7603cc2dca0f19bdc53b4537a797747a58875b552c8c413d963a3f/pytz-2024.2.tar.gz", hash = "sha256:2aa355083c50a0f93fa581709deac0c9ad65cca8a9e9beac660adcbd493c798a", size = 319692 }
wheels = [
{ url = "https://files.pythonhosted.org/packages/11/c3/005fcca25ce078d2cc29fd559379817424e94885510568bc1bc53d7d5846/pytz-2024.2-py2.py3-none-any.whl", hash = "sha256:31c7c1817eb7fae7ca4b8c7ee50c72f93aa2dd863de768e1ef4245d426aa0725", size = 508002 },
]
[[package]]
name = "requests"
version = "2.32.3"
source = { registry = "https://pypi.org/simple" }
dependencies = [
{ name = "certifi" },
{ name = "charset-normalizer" },
{ name = "idna" },
{ name = "urllib3" },
]
sdist = { url = "https://files.pythonhosted.org/packages/63/70/2bf7780ad2d390a8d301ad0b550f1581eadbd9a20f896afe06353c2a2913/requests-2.32.3.tar.gz", hash = "sha256:55365417734eb18255590a9ff9eb97e9e1da868d4ccd6402399eaf68af20a760", size = 131218 }
wheels = [
{ url = "https://files.pythonhosted.org/packages/f9/9b/335f9764261e915ed497fcdeb11df5dfd6f7bf257d4a6a2a686d80da4d54/requests-2.32.3-py3-none-any.whl", hash = "sha256:70761cfe03c773ceb22aa2f671b4757976145175cdfca038c02654d061d6dcc6", size = 64928 },
]
[[package]]
name = "sg"
version = "0.1.0"
source = { virtual = "." }
dependencies = [
{ name = "matplotlib" },
{ name = "pandas" },
{ name = "requests" },
]
[package.metadata]
requires-dist = [
{ name = "matplotlib", specifier = ">=3.9.3" },
{ name = "pandas", specifier = ">=2.2.3" },
{ name = "requests", specifier = ">=2.32.3" },
]
[[package]]
name = "six"
version = "1.17.0"
source = { registry = "https://pypi.org/simple" }
sdist = { url = "https://files.pythonhosted.org/packages/94/e7/b2c673351809dca68a0e064b6af791aa332cf192da575fd474ed7d6f16a2/six-1.17.0.tar.gz", hash = "sha256:ff70335d468e7eb6ec65b95b99d3a2836546063f63acc5171de367e834932a81", size = 34031 }
wheels = [
{ url = "https://files.pythonhosted.org/packages/b7/ce/149a00dd41f10bc29e5921b496af8b574d8413afcd5e30dfa0ed46c2cc5e/six-1.17.0-py2.py3-none-any.whl", hash = "sha256:4721f391ed90541fddacab5acf947aa0d3dc7d27b2e1e8eda2be8970586c3274", size = 11050 },
]
[[package]]
name = "tzdata"
version = "2024.2"
source = { registry = "https://pypi.org/simple" }
sdist = { url = "https://files.pythonhosted.org/packages/e1/34/943888654477a574a86a98e9896bae89c7aa15078ec29f490fef2f1e5384/tzdata-2024.2.tar.gz", hash = "sha256:7d85cc416e9382e69095b7bdf4afd9e3880418a2413feec7069d533d6b4e31cc", size = 193282 }
wheels = [
{ url = "https://files.pythonhosted.org/packages/a6/ab/7e5f53c3b9d14972843a647d8d7a853969a58aecc7559cb3267302c94774/tzdata-2024.2-py2.py3-none-any.whl", hash = "sha256:a48093786cdcde33cad18c2555e8532f34422074448fbc874186f0abd79565cd", size = 346586 },
]
[[package]]
name = "urllib3"
version = "2.2.3"
source = { registry = "https://pypi.org/simple" }
sdist = { url = "https://files.pythonhosted.org/packages/ed/63/22ba4ebfe7430b76388e7cd448d5478814d3032121827c12a2cc287e2260/urllib3-2.2.3.tar.gz", hash = "sha256:e7d814a81dad81e6caf2ec9fdedb284ecc9c73076b62654547cc64ccdcae26e9", size = 300677 }
wheels = [
{ url = "https://files.pythonhosted.org/packages/ce/d9/5f4c13cecde62396b0d3fe530a50ccea91e7dfc1ccf0e09c228841bb5ba8/urllib3-2.2.3-py3-none-any.whl", hash = "sha256:ca899ca043dcb1bafa3e262d73aa25c465bfb49e0bd9dd5d59f1d0acba2f8fac", size = 126338 },
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment