René's URL Explorer Experiment


Title: "Fillable" markers should be equal-area or equal-width for a given `markersize` · Issue #16623 · matplotlib/matplotlib · GitHub

Open Graph Title: "Fillable" markers should be equal-area or equal-width for a given `markersize` · Issue #16623 · matplotlib/matplotlib

X Title: "Fillable" markers should be equal-area or equal-width for a given `markersize` · Issue #16623 · matplotlib/matplotlib

Description: Bug report Currently, "markersize" means something quite heterogeneous for each different marker (see below). We could easily make it mean the same thing by scaling the "base" size of each marker's path so that it has unit area. This wou...

Open Graph Description: Bug report Currently, "markersize" means something quite heterogeneous for each different marker (see below). We could easily make it mean the same thing by scaling the "base" size of each marker's...

X Description: Bug report Currently, "markersize" means something quite heterogeneous for each different marker (see below). We could easily make it mean the same thing by scaling the "base" s...

Opengraph URL: https://github.com/matplotlib/matplotlib/issues/16623

X: @github

direct link

Domain: github.com


Hey, it has json ld scripts:
{"@context":"https://schema.org","@type":"DiscussionForumPosting","headline":"\"Fillable\" markers should be equal-area or equal-width for a given `markersize`","articleBody":"\u003c!--To help us understand and resolve your issue, please fill out the form to the best of your ability.--\u003e\r\n\u003c!--You can feel free to delete the sections that do not apply.--\u003e\r\n\r\n### Bug report\r\n\r\nCurrently, \"markersize\" means something quite heterogeneous for each different marker (see below). We could easily make it mean the same thing by scaling the \"base\" size of each marker's path so that it has unit area. This would have the upside of making plots with a constant `markersize` across different markers look perceptually uniform. And would fix a few ancient issues, like issue #1099.\r\n\r\nAn alternative would be to have markers be unit \"width\" (see below), which would fix all but the pentagon markers to at least be slightly more uniform. We could then use the actual areas of the unit marker sizes as a simple scaling factor in `Axes.scatter` to fix #1099. \r\n\r\n\u003c!--A short 1-2 sentences that succinctly describes the bug--\u003e\r\n\r\n**Code for reproduction**\r\n\r\n\u003c!--A minimum code snippet required to reproduce the bug.\r\nPlease make sure to minimize the number of dependencies required, and provide\r\nany necessary plotted data.\r\nAvoid using threads, as Matplotlib is (explicitly) not thread-safe.--\u003e\r\n\r\n```python\r\nimport numpy as np\r\nimport matplotlib as mpl\r\nimport matplotlib.pyplot as plt\r\nfor marker in mpl.markers.MarkerStyle.markers:\r\n    fig, ax = plt.subplots()\r\n    plt.xlim([-0.04, 0.04])\r\n    plt.ylim([-0.04, 0.04])\r\n    lines = ax.scatter(0, 0, s=100**2, marker=marker, clip_on=False)\r\n    plt.title(str(marker))\r\n\r\n    origin_px = ax.transData.transform((0,0))\r\n    top_right_px = origin_px + np.array([50, 50])\r\n    top_right_data = ax.transData.inverted().transform(top_right_px)\r\n    ax.plot([-1, 1], [top_right_data[1], top_right_data[1]])\r\n    ax.plot([-1, 1], [-top_right_data[1], -top_right_data[1]])\r\n    ax.plot([top_right_data[0], top_right_data[0]], [-1, 1])\r\n    ax.plot([-top_right_data[0], -top_right_data[0]], [-1, 1])\r\n```\r\n\r\n**Actual outcome**\r\n\r\n\u003c!--The output produced by the above code, which may be a screenshot, console output, etc.--\u003e\r\nThe `point` is *defined* to be a half-radius `circle`. I guess this is fine.\r\n![marker-test-point](https://user-images.githubusercontent.com/1475390/75636142-119cc280-5bd1-11ea-83bf-c651acdeccbb.png)\r\nThe `pixel` of course has a fixed meaning, so need not be updated.\r\n![marker-test-pixel](https://user-images.githubusercontent.com/1475390/75636161-3a24bc80-5bd1-11ea-88a8-075fc9286181.png)\r\n\r\nFor several markers, `markersize` means \"width\" or \"height\" (many omitted for clarity, but happy to edit this to include all here for reference):\r\n\u003c!-- ![marker-test-caretdown](https://user-images.githubusercontent.com/1475390/75636185-7b1cd100-5bd1-11ea-8562-5391619026d9.png) --\u003e\r\n\u003c!-- ![marker-test-caretdownbase](https://user-images.githubusercontent.com/1475390/75636187-7ce69480-5bd1-11ea-86ef-3ba4ba4f8e1a.png) --\u003e\r\n\u003c!-- ![marker-test-caretleft](https://user-images.githubusercontent.com/1475390/75636189-7f48ee80-5bd1-11ea-990c-4058ca6368a6.png) --\u003e\r\n\u003c!-- ![marker-test-caretleftbase](https://user-images.githubusercontent.com/1475390/75636191-8243df00-5bd1-11ea-9da4-1ae0ba761dc3.png) --\u003e\r\n\u003c!-- ![marker-test-caretright](https://user-images.githubusercontent.com/1475390/75636192-83750c00-5bd1-11ea-82f8-05ba48f0f47b.png) --\u003e\r\n\u003c!-- ![marker-test-caretrightbase](https://user-images.githubusercontent.com/1475390/75636193-84a63900-5bd1-11ea-8e0d-844621eb4973.png) --\u003e\r\n![marker-test-caretup](https://user-images.githubusercontent.com/1475390/75636195-866ffc80-5bd1-11ea-995e-79413b50553d.png)\r\n\u003c!-- ![marker-test-caretupbase](https://user-images.githubusercontent.com/1475390/75636196-8839c000-5bd1-11ea-930b-e64c2845fac8.png) --\u003e\r\n![marker-test-circle](https://user-images.githubusercontent.com/1475390/75636197-8a038380-5bd1-11ea-91c3-726bc4bc5702.png)\r\n![marker-test-hexagon1](https://user-images.githubusercontent.com/1475390/75636237-cafb9800-5bd1-11ea-9a89-96eeeca19d40.png)\r\n\u003c!-- ![marker-test-hexagon2](https://user-images.githubusercontent.com/1475390/75636238-ccc55b80-5bd1-11ea-8264-842326f67961.png) --\u003e\r\n\u003c!-- ![marker-test-hline](https://user-images.githubusercontent.com/1475390/75636241-cfc04c00-5bd1-11ea-8993-c29e349b7b7b.png) --\u003e\r\n\u003c!-- ![marker-test-pixel](https://user-images.githubusercontent.com/1475390/75636247-de0e6800-5bd1-11ea-817a-27ab3ae2cdd4.png) --\u003e\r\n\u003c!-- ![marker-test-plus](https://user-images.githubusercontent.com/1475390/75636249-e070c200-5bd1-11ea-8717-d34cd337c62b.png) --\u003e\r\n![marker-test-plus_filled](https://user-images.githubusercontent.com/1475390/75636250-e1a1ef00-5bd1-11ea-8035-7ddcb819b4c8.png)\r\n![marker-test-square](https://user-images.githubusercontent.com/1475390/75636252-e5357600-5bd1-11ea-97bb-bf63effd21d6.png)\r\n\u003c!-- ![marker-test-tickdown](https://user-images.githubusercontent.com/1475390/75636266-fd0cfa00-5bd1-11ea-804a-170ec0863dcc.png) --\u003e\r\n\u003c!-- ![marker-test-tickleft](https://user-images.githubusercontent.com/1475390/75636268-fed6bd80-5bd1-11ea-9266-d9e83ef5827e.png) --\u003e\r\n![marker-test-tickright](https://user-images.githubusercontent.com/1475390/75636269-ff6f5400-5bd1-11ea-8a58-07c7f1f978ef.png)\r\n\u003c!-- ![marker-test-tickup](https://user-images.githubusercontent.com/1475390/75636271-01391780-5bd2-11ea-9caf-112c380655eb.png) --\u003e\r\n\u003c!-- ![marker-test-triangle_down](https://user-images.githubusercontent.com/1475390/75636272-0302db00-5bd2-11ea-8e54-0ed8099c095f.png) --\u003e\r\n\u003c!-- ![marker-test-triangle_left](https://user-images.githubusercontent.com/1475390/75636274-04340800-5bd2-11ea-9f50-11ec192a04f9.png) --\u003e\r\n\u003c!-- ![marker-test-triangle_right](https://user-images.githubusercontent.com/1475390/75636275-05653500-5bd2-11ea-871c-b6d8ac8263ba.png) --\u003e\r\n\u003c!-- ![marker-test-triangle_up](https://user-images.githubusercontent.com/1475390/75636276-06966200-5bd2-11ea-9e75-1e08fb5b64f5.png) --\u003e\r\n\u003c!-- ![marker-test-vline](https://user-images.githubusercontent.com/1475390/75636293-2af23e80-5bd2-11ea-8dae-c28f5051dd22.png) --\u003e\r\n\u003c!-- ![marker-test-x](https://user-images.githubusercontent.com/1475390/75636295-2cbc0200-5bd2-11ea-9c28-861a6ddd7638.png) --\u003e\r\n![marker-test-x_filled](https://user-images.githubusercontent.com/1475390/75636296-30e81f80-5bd2-11ea-890c-176c75347e7e.png)\r\n\r\n\r\nFor some markers, `markersize` means \"width of square used to create me\", which seems pretty unexpected after all the above examples otherwise:\r\n![marker-test-diamond](https://user-images.githubusercontent.com/1475390/75636212-a8697f00-5bd1-11ea-9c91-f29ef7ec4c98.png)\r\n![marker-test-thin_diamond](https://user-images.githubusercontent.com/1475390/75636259-f1b9ce80-5bd1-11ea-80d7-89b82133c8bc.png)\r\n\r\nAnd for *only some* polygons (notice that there are many full-width triangles in the first list above), `markersize` means \"radius of the circumscribing circle\", which means it neither corresponds to the width/height NOR the area:\r\n![marker-test-octagon](https://user-images.githubusercontent.com/1475390/75636243-d64ec380-5bd1-11ea-9096-1e061d7c2954.png)\r\n![marker-test-pentagon](https://user-images.githubusercontent.com/1475390/75636244-d8188700-5bd1-11ea-9189-a082d13ddff6.png)\r\n![marker-test-star](https://user-images.githubusercontent.com/1475390/75636256-ec5c8400-5bd1-11ea-8e95-468d3be72653.png)\r\n![marker-test-tri_down](https://user-images.githubusercontent.com/1475390/75636285-2168d680-5bd2-11ea-80b9-e41105ff1e17.png)\r\n![marker-test-tri_left](https://user-images.githubusercontent.com/1475390/75636286-23329a00-5bd2-11ea-8547-7e9119e66611.png)\r\n![marker-test-tri_right](https://user-images.githubusercontent.com/1475390/75636290-24fc5d80-5bd2-11ea-848a-b95234e0ee3a.png)\r\n![marker-test-tri_up](https://user-images.githubusercontent.com/1475390/75636291-262d8a80-5bd2-11ea-989c-736a03fce6f1.png)\r\n\r\n\r\n\r\n**Expected outcome**\r\n\r\n\u003c!--A description of the expected outcome from the code snippet--\u003e\r\n\u003c!--If this used to work in an earlier version of Matplotlib, please note the version it used to work on--\u003e\r\n\r\n\u003c!--By my count, there are basically only two kinds of markers:--\u003e\r\n\r\n\u003c!--1) regular polygons and \"skeletons\" of regular polygons (e.g. '8'/'p', '1')--\u003e\r\n\u003c!--2) \"square-fittable\" shapes. that is, marker shapes where one might have a natural expectation that the base path aligns nicely with a unit square. for example, a--\u003e\r\n\r\nTwo proposals for fixing this: \r\n\r\n1) make all `markersize=1` markers have unit area. This is easy to do by scaling their paths appropriately. The non-fillable markers could be left as-is or scaled to the size at which their \"fillable\" counterpart would have unit area. (e.g. '1' would be scaled so that the equilateral triangle it draws the skeleton of would have unit area, 'x' and '+' would be scaled so that the squares they draw the skeleton of would have unit area).\r\n\r\n2) make all `markersize=1` markers have unit width/height (whichever is larger). This seems more in line with the current \"zeitgeist\" of marker design. It would only require changing a couple of markers:\r\n    a) 'd' (thin diamond) and 'D' (diamond) would be scaled to be of unit height instead of \"D\" being made from a rotated unit square (so a factor of 1/sqrt(2)).\r\n    b) '8' (octagon) and 'p'/'*' (pentagon/star) would be scaled up slightly to have unit width. Especially for octagon (see above) this would match MUCH better the current conventions for e.g. 'x'/'X'. \r\n    c) \"triangle skeletons\" (i.e. `'tri_left'` and friends) should be scaled to be the same width as the `'caret'` family, for consistency.\r\nEvery other marker could remain the same and this convention be matched.\r\n\r\nI am happy to make either of these into a PR (code is written for option 2 already, tbh). However, if we go with option (2), I think we should definitely fix the `s` argument to scatter to actually be a measurement of the area of the marker in px^2, since each marker in that case will still have a different base area measurement (also code already written, tbh).\r\n\r\n**Matplotlib version**\r\n\u003c!--Please specify your platform and versions of the relevant libraries you are using:--\u003e\r\n  * Operating system: Debian 9\r\n  * Matplotlib version: 3.1.3\r\n  * Matplotlib backend (`print(matplotlib.get_backend())`): N/A\r\n  * Python version: 3.7\r\n  * Jupyter version (if applicable): N/A\r\n  * Other libraries: N/A\r\n\r\n\u003c!--Please tell us how you installed matplotlib and python e.g., from source, pip, conda--\u003e\r\n\u003c!--If you installed from conda, please specify which channel you used if not the default--\u003e\r\n\r\n","author":{"url":"https://github.com/brunobeltran","@type":"Person","name":"brunobeltran"},"datePublished":"2020-03-01T23:58:32.000Z","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":2},"url":"https://github.com/16623/matplotlib/issues/16623"}

route-pattern/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)
route-controllervoltron_issues_fragments
route-actionissue_layout
fetch-noncev2:fece5b8c-6e76-7bae-bfce-86ed813e9dfc
current-catalog-service-hash81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114
request-idAE62:21AE3:2A8D230:3CE5CEE:6A51127D
html-safe-nonce568a49df8d6738bf6737c93af0db259a5ab7f9ca4cfc061b9e24b6379846f8a8
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJBRTYyOjIxQUUzOjJBOEQyMzA6M0NFNUNFRTo2QTUxMTI3RCIsInZpc2l0b3JfaWQiOiIzMjAwNTQwODU1NDUxNTg3MTk3IiwicmVnaW9uX2VkZ2UiOiJpYWQiLCJyZWdpb25fcmVuZGVyIjoiaWFkIn0=
visitor-hmacb1919f4edfa704177ce95262323e505e0f362370e94b7fc523f9a6ae47f51890
hovercard-subject-tagissue:573645364
github-keyboard-shortcutsrepository,issues,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///voltron/issues_fragments/issue_layout
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/_view_fragments/issues/show/matplotlib/matplotlib/16623/issue_layout
twitter:imagehttps://opengraph.githubassets.com/4ec6de20d399cf2c79e0b3d40c53ed52f723a32e0c06490cbf184ea89b176285/matplotlib/matplotlib/issues/16623
twitter:cardsummary_large_image
og:imagehttps://opengraph.githubassets.com/4ec6de20d399cf2c79e0b3d40c53ed52f723a32e0c06490cbf184ea89b176285/matplotlib/matplotlib/issues/16623
og:image:altBug report Currently, "markersize" means something quite heterogeneous for each different marker (see below). We could easily make it mean the same thing by scaling the "base" size of each marker's...
og:image:width1200
og:image:height600
og:site_nameGitHub
og:typeobject
og:author:usernamebrunobeltran
hostnamegithub.com
expected-hostnamegithub.com
Noneb076e100febaa00374cd89239f915d00dd3187f7c68b12bc2b7688181305344d
turbo-cache-controlno-preview
go-importgithub.com/matplotlib/matplotlib git https://github.com/matplotlib/matplotlib.git
octolytics-dimension-user_id215947
octolytics-dimension-user_loginmatplotlib
octolytics-dimension-repository_id1385122
octolytics-dimension-repository_nwomatplotlib/matplotlib
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id1385122
octolytics-dimension-repository_network_root_nwomatplotlib/matplotlib
turbo-body-classeslogged-out env-production page-responsive
disable-turbofalse
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
releasef9137f6d981cbbfd780af369f80ce890b2d0d2d4
ui-targetcanary-1
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/matplotlib/matplotlib/issues/16623#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fmatplotlib%2Fmatplotlib%2Fissues%2F16623
GitHub CopilotWrite better code with AIhttps://github.com/features/copilot
GitHub Copilot appDirect agents from issue to mergehttps://github.com/features/ai/github-app
MCP RegistryNewIntegrate external toolshttps://github.com/mcp
ActionsAutomate any workflowhttps://github.com/features/actions
CodespacesInstant dev environmentshttps://github.com/features/codespaces
IssuesPlan and track workhttps://github.com/features/issues
Code ReviewManage code changeshttps://github.com/features/code-review
GitHub Advanced SecurityFind and fix vulnerabilitieshttps://github.com/security/advanced-security
Code securitySecure your code as you buildhttps://github.com/security/advanced-security/code-security
Secret protectionStop leaks before they starthttps://github.com/security/advanced-security/secret-protection
Why GitHubhttps://github.com/why-github
Documentationhttps://docs.github.com
Bloghttps://github.blog
Changeloghttps://github.blog/changelog
Marketplacehttps://github.com/marketplace
View all featureshttps://github.com/features
Enterpriseshttps://github.com/enterprise
Small and medium teamshttps://github.com/team
Startupshttps://github.com/enterprise/startups
Nonprofitshttps://github.com/solutions/industry/nonprofits
App Modernizationhttps://github.com/solutions/use-case/app-modernization
DevSecOpshttps://github.com/solutions/use-case/devsecops
DevOpshttps://github.com/solutions/use-case/devops
CI/CDhttps://github.com/solutions/use-case/ci-cd
View all use caseshttps://github.com/solutions/use-case
Healthcarehttps://github.com/solutions/industry/healthcare
Financial serviceshttps://github.com/solutions/industry/financial-services
Manufacturinghttps://github.com/solutions/industry/manufacturing
Governmenthttps://github.com/solutions/industry/government
View all industrieshttps://github.com/solutions/industry
View all solutionshttps://github.com/solutions
AIhttps://github.com/resources/articles?topic=ai
Software Developmenthttps://github.com/resources/articles?topic=software-development
DevOpshttps://github.com/resources/articles?topic=devops
Securityhttps://github.com/resources/articles?topic=security
View all topicshttps://github.com/resources/articles
Customer storieshttps://github.com/customer-stories
Events & webinarshttps://github.com/resources/events
Ebooks & reportshttps://github.com/resources/whitepapers
Business insightshttps://github.com/solutions/executive-insights
GitHub Skillshttps://skills.github.com
Documentationhttps://docs.github.com
Customer supporthttps://support.github.com
Community forumhttps://github.com/orgs/community/discussions
Trust centerhttps://github.com/trust-center
Partnershttps://github.com/partners
View all resourceshttps://github.com/resources
GitHub SponsorsFund open source developershttps://github.com/open-source/sponsors
Security Labhttps://securitylab.github.com
Maintainer Communityhttps://maintainers.github.com
Acceleratorhttps://github.com/open-source/accelerator
GitHub Starshttps://stars.github.com
Archive Programhttps://archiveprogram.github.com
Topicshttps://github.com/topics
Trendinghttps://github.com/trending
Collectionshttps://github.com/collections
Enterprise platformAI-powered developer platformhttps://github.com/enterprise
GitHub Advanced SecurityEnterprise-grade security featureshttps://github.com/security/advanced-security
Copilot for BusinessEnterprise-grade AI featureshttps://github.com/features/copilot/copilot-business
Premium SupportEnterprise-grade 24/7 supporthttps://github.com/enterprise/premium-support
Pricinghttps://github.com/pricing
Search syntax tipshttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
documentationhttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fmatplotlib%2Fmatplotlib%2Fissues%2F16623
Sign up https://github.com/signup?ref_cta=Sign+up&ref_loc=header+logged+out&ref_page=%2F%3Cuser-name%3E%2F%3Crepo-name%3E%2Fvoltron%2Fissues_fragments%2Fissue_layout&source=header-repo&source_repo=matplotlib%2Fmatplotlib
Reloadhttps://github.com/matplotlib/matplotlib/issues/16623
Reloadhttps://github.com/matplotlib/matplotlib/issues/16623
Reloadhttps://github.com/matplotlib/matplotlib/issues/16623
Please reload this pagehttps://github.com/matplotlib/matplotlib/issues/16623
matplotlib https://github.com/matplotlib
matplotlibhttps://github.com/matplotlib/matplotlib
Please reload this pagehttps://github.com/matplotlib/matplotlib/issues/16623
Notifications https://github.com/login?return_to=%2Fmatplotlib%2Fmatplotlib
Fork 8.4k https://github.com/login?return_to=%2Fmatplotlib%2Fmatplotlib
Star 23k https://github.com/login?return_to=%2Fmatplotlib%2Fmatplotlib
Code https://github.com/matplotlib/matplotlib
Issues 1.1k https://github.com/matplotlib/matplotlib/issues
Pull requests 410 https://github.com/matplotlib/matplotlib/pulls
Actions https://github.com/matplotlib/matplotlib/actions
Projects https://github.com/matplotlib/matplotlib/projects
Wiki https://github.com/matplotlib/matplotlib/wiki
Security and quality 0 https://github.com/matplotlib/matplotlib/security
Insights https://github.com/matplotlib/matplotlib/pulse
Code https://github.com/matplotlib/matplotlib
Issues https://github.com/matplotlib/matplotlib/issues
Pull requests https://github.com/matplotlib/matplotlib/pulls
Actions https://github.com/matplotlib/matplotlib/actions
Projects https://github.com/matplotlib/matplotlib/projects
Wiki https://github.com/matplotlib/matplotlib/wiki
Security and quality https://github.com/matplotlib/matplotlib/security
Insights https://github.com/matplotlib/matplotlib/pulse
"Fillable" markers should be equal-area or equal-width for a given markersizehttps://github.com/matplotlib/matplotlib/issues/16623#top
https://github.com/brunobeltran
brunobeltranhttps://github.com/brunobeltran
on Mar 1, 2020https://github.com/matplotlib/matplotlib/issues/16623#issue-573645364
#1099https://github.com/matplotlib/matplotlib/issues/1099
#1099https://github.com/matplotlib/matplotlib/issues/1099
https://user-images.githubusercontent.com/1475390/75636142-119cc280-5bd1-11ea-83bf-c651acdeccbb.png
https://user-images.githubusercontent.com/1475390/75636161-3a24bc80-5bd1-11ea-88a8-075fc9286181.png
https://user-images.githubusercontent.com/1475390/75636195-866ffc80-5bd1-11ea-995e-79413b50553d.png
https://user-images.githubusercontent.com/1475390/75636197-8a038380-5bd1-11ea-91c3-726bc4bc5702.png
https://user-images.githubusercontent.com/1475390/75636237-cafb9800-5bd1-11ea-9a89-96eeeca19d40.png
https://user-images.githubusercontent.com/1475390/75636250-e1a1ef00-5bd1-11ea-8035-7ddcb819b4c8.png
https://user-images.githubusercontent.com/1475390/75636252-e5357600-5bd1-11ea-97bb-bf63effd21d6.png
https://user-images.githubusercontent.com/1475390/75636269-ff6f5400-5bd1-11ea-8a58-07c7f1f978ef.png
https://user-images.githubusercontent.com/1475390/75636296-30e81f80-5bd2-11ea-890c-176c75347e7e.png
https://user-images.githubusercontent.com/1475390/75636212-a8697f00-5bd1-11ea-9c91-f29ef7ec4c98.png
https://user-images.githubusercontent.com/1475390/75636259-f1b9ce80-5bd1-11ea-80d7-89b82133c8bc.png
https://user-images.githubusercontent.com/1475390/75636243-d64ec380-5bd1-11ea-9096-1e061d7c2954.png
https://user-images.githubusercontent.com/1475390/75636244-d8188700-5bd1-11ea-9189-a082d13ddff6.png
https://user-images.githubusercontent.com/1475390/75636256-ec5c8400-5bd1-11ea-8e95-468d3be72653.png
https://user-images.githubusercontent.com/1475390/75636285-2168d680-5bd2-11ea-80b9-e41105ff1e17.png
https://user-images.githubusercontent.com/1475390/75636286-23329a00-5bd2-11ea-8547-7e9119e66611.png
https://user-images.githubusercontent.com/1475390/75636290-24fc5d80-5bd2-11ea-848a-b95234e0ee3a.png
https://user-images.githubusercontent.com/1475390/75636291-262d8a80-5bd2-11ea-989c-736a03fce6f1.png
https://github.com
Termshttps://docs.github.com/site-policy/github-terms/github-terms-of-service
Privacyhttps://docs.github.com/site-policy/privacy-policies/github-privacy-statement
Securityhttps://github.com/security
Statushttps://www.githubstatus.com/
Communityhttps://github.community/
Docshttps://docs.github.com/
Contacthttps://support.github.com?tags=dotcom-footer

Viewport: width=device-width


URLs of crawlers that visited me.