[
    {
        "scope": "https://api.github.com:443",
        "method": "GET",
        "path": "/repositories/10828733/issues?access_token=2677d9b3ac8d3a41f9919aa2b923886396dd186b&page=2",
        "body": "",
        "status": 200,
        "response": [
            {
                "url": "https://api.github.com/repos/victorquinn/chancejs/issues/154",
                "repository_url": "https://api.github.com/repos/victorquinn/chancejs",
                "labels_url": "https://api.github.com/repos/victorquinn/chancejs/issues/154/labels{/name}",
                "comments_url": "https://api.github.com/repos/victorquinn/chancejs/issues/154/comments",
                "events_url": "https://api.github.com/repos/victorquinn/chancejs/issues/154/events",
                "html_url": "https://github.com/victorquinn/chancejs/issues/154",
                "id": 56184154,
                "number": 154,
                "title": "add RandExp functionality to library",
                "user": {
                    "login": "billymoon",
                    "id": 858868,
                    "avatar_url": "https://avatars.githubusercontent.com/u/858868?v=3",
                    "gravatar_id": "",
                    "url": "https://api.github.com/users/billymoon",
                    "html_url": "https://github.com/billymoon",
                    "followers_url": "https://api.github.com/users/billymoon/followers",
                    "following_url": "https://api.github.com/users/billymoon/following{/other_user}",
                    "gists_url": "https://api.github.com/users/billymoon/gists{/gist_id}",
                    "starred_url": "https://api.github.com/users/billymoon/starred{/owner}{/repo}",
                    "subscriptions_url": "https://api.github.com/users/billymoon/subscriptions",
                    "organizations_url": "https://api.github.com/users/billymoon/orgs",
                    "repos_url": "https://api.github.com/users/billymoon/repos",
                    "events_url": "https://api.github.com/users/billymoon/events{/privacy}",
                    "received_events_url": "https://api.github.com/users/billymoon/received_events",
                    "type": "User",
                    "site_admin": false
                },
                "labels": [],
                "state": "open",
                "locked": false,
                "assignee": null,
                "milestone": null,
                "comments": 0,
                "created_at": "2015-02-01T23:50:50Z",
                "updated_at": "2015-02-01T23:57:44Z",
                "closed_at": null,
                "body": "I made a tiny mixin to hook up RandExp with chance.js so that it becomes trivial to generate random strings that match a regex pattern definition, reproducibly (by providing seed to chance.js).\r\n\r\n    // mixin to return RandExp using: https://github.com/fent/randexp.js\r\n    // (must include randexp.js library before calling this mixin)\r\n    chance.mixin({\r\n        randexp: function (regex) {\r\n            var myRandExp = new RandExp(regex);\r\n            // redefine RandExp's random number generator to use chance's random function\r\n            myRandExp.randInt = function (a, b) {\r\n                return a + Math.floor(this.random() * (1 + b - a));\r\n            }.bind(this);\r\n            // return the randomly generated string, not the RandExp object\r\n            return myRandExp.gen();\r\n        }\r\n    });\r\n\r\n    for(var count = 10; count--;){\r\n       console.log( chance.randexp(/[0-1]{16} (cy|ro)bo(ts|rgs) bearing down on us/) );\r\n    }\r\n\r\nThis function alone satisfies my need for half of the functions available in chance.js (anything like a postcode or phone number etc... works great, but items relying on lists of data, like names are not so good) including half of all the times I want a function that is not already defined in chance.js - also, slightly more flexible to boot, making it easy to alter the regex definitions to something really specific.\r\n\r\nIt would be great to see this kind of functionality built into chance.js\r\n\r\n(see online demo here: http://jsfiddle.net/billymoon/Ltwk7pb8/2/)"
            },
            {
                "url": "https://api.github.com/repos/victorquinn/chancejs/issues/151",
                "repository_url": "https://api.github.com/repos/victorquinn/chancejs",
                "labels_url": "https://api.github.com/repos/victorquinn/chancejs/issues/151/labels{/name}",
                "comments_url": "https://api.github.com/repos/victorquinn/chancejs/issues/151/comments",
                "events_url": "https://api.github.com/repos/victorquinn/chancejs/issues/151/events",
                "html_url": "https://github.com/victorquinn/chancejs/issues/151",
                "id": 55704856,
                "number": 151,
                "title": "[feature] Unambiguous string/characters",
                "user": {
                    "login": "anthonator",
                    "id": 420061,
                    "avatar_url": "https://avatars.githubusercontent.com/u/420061?v=3",
                    "gravatar_id": "",
                    "url": "https://api.github.com/users/anthonator",
                    "html_url": "https://github.com/anthonator",
                    "followers_url": "https://api.github.com/users/anthonator/followers",
                    "following_url": "https://api.github.com/users/anthonator/following{/other_user}",
                    "gists_url": "https://api.github.com/users/anthonator/gists{/gist_id}",
                    "starred_url": "https://api.github.com/users/anthonator/starred{/owner}{/repo}",
                    "subscriptions_url": "https://api.github.com/users/anthonator/subscriptions",
                    "organizations_url": "https://api.github.com/users/anthonator/orgs",
                    "repos_url": "https://api.github.com/users/anthonator/repos",
                    "events_url": "https://api.github.com/users/anthonator/events{/privacy}",
                    "received_events_url": "https://api.github.com/users/anthonator/received_events",
                    "type": "User",
                    "site_admin": false
                },
                "labels": [],
                "state": "open",
                "locked": false,
                "assignee": null,
                "milestone": null,
                "comments": 3,
                "created_at": "2015-01-28T02:16:43Z",
                "updated_at": "2015-03-16T17:49:21Z",
                "closed_at": null,
                "body": "It would be awesome if we could generate strings/characters that are unambiguous.\r\n\r\nExample of ambiguous characters:\r\n\r\n```\r\n0 O D Q \r\n1 I L J\r\n8 B \r\n5 S\r\n2 Z\r\n```\r\n\r\nThis isn't a complete list but a good place to start."
            },
            {
                "url": "https://api.github.com/repos/victorquinn/chancejs/issues/142",
                "repository_url": "https://api.github.com/repos/victorquinn/chancejs",
                "labels_url": "https://api.github.com/repos/victorquinn/chancejs/issues/142/labels{/name}",
                "comments_url": "https://api.github.com/repos/victorquinn/chancejs/issues/142/comments",
                "events_url": "https://api.github.com/repos/victorquinn/chancejs/issues/142/events",
                "html_url": "https://github.com/victorquinn/chancejs/issues/142",
                "id": 54004333,
                "number": 142,
                "title": "CLI generators not so random",
                "user": {
                    "login": "mindjuice",
                    "id": 934638,
                    "avatar_url": "https://avatars.githubusercontent.com/u/934638?v=3",
                    "gravatar_id": "",
                    "url": "https://api.github.com/users/mindjuice",
                    "html_url": "https://github.com/mindjuice",
                    "followers_url": "https://api.github.com/users/mindjuice/followers",
                    "following_url": "https://api.github.com/users/mindjuice/following{/other_user}",
                    "gists_url": "https://api.github.com/users/mindjuice/gists{/gist_id}",
                    "starred_url": "https://api.github.com/users/mindjuice/starred{/owner}{/repo}",
                    "subscriptions_url": "https://api.github.com/users/mindjuice/subscriptions",
                    "organizations_url": "https://api.github.com/users/mindjuice/orgs",
                    "repos_url": "https://api.github.com/users/mindjuice/repos",
                    "events_url": "https://api.github.com/users/mindjuice/events{/privacy}",
                    "received_events_url": "https://api.github.com/users/mindjuice/received_events",
                    "type": "User",
                    "site_admin": false
                },
                "labels": [],
                "state": "open",
                "locked": false,
                "assignee": null,
                "milestone": null,
                "comments": 6,
                "created_at": "2015-01-11T20:49:07Z",
                "updated_at": "2015-12-02T01:07:19Z",
                "closed_at": null,
                "body": "When running generators from the new CLI feature, they are not very random.  Here is the output of calling \"chance word\" several times in a row:\r\n\r\nvapik\r\nteogefe\r\nsuvaflud\r\nut\r\ngibgewuga\r\ncim\r\ngendadel\r\nate\r\nrizjefjo\r\nro\r\ncim\r\ncof\r\ncim\r\nmi\r\ngibgewuga\r\ngibgewuga\r\ngendadel\r\nut\r\nteogefe\r\nalogikfur\r\n\r\nYou can see \"gibgewuga\" is repeated 3 times, as is \"cim\".  \"gendadel\" and \"teogefe\" are repeated twice.\r\n\r\nIt looks like this is not specific to \"word\", but rather systemic.  Similar results occur with \"chance name\":\r\n\r\nMadge Scott\r\nFlora Vaughn\r\nElsie Wallace\r\nVictoria Huff\r\nRicky Russell\r\nRodney Thornton\r\nBobby Swanson\r\nIda Carlson\r\nDennis Atkins\r\nEmily Bass\r\nMina Sims\r\nBettie Quinn\r\nJames Hamilton\r\nEsther Young\r\nAnne Weaver\r\nRodney Thornton\r\nAnne Weaver\r\nBernice Dunn\r\nLura Guzman\r\nCurtis Norris\r\nJesus Kim\r\nJesus Kim\r\nBernice Dunn\r\nBernice Dunn\r\nFrancis Ward\r\nBernice Dunn\r\nEmily Bass\r\nEsther Young\r\nBettie Quinn\r\n\r\nI haven't investigated yet, but I assume this is related to not having a true source of entropy at startup.  For the CLI to be useful, I think it needs a better source of entropy.  I'm sure even the CPU tick time would give better results."
            },
            {
                "url": "https://api.github.com/repos/victorquinn/chancejs/issues/140",
                "repository_url": "https://api.github.com/repos/victorquinn/chancejs",
                "labels_url": "https://api.github.com/repos/victorquinn/chancejs/issues/140/labels{/name}",
                "comments_url": "https://api.github.com/repos/victorquinn/chancejs/issues/140/comments",
                "events_url": "https://api.github.com/repos/victorquinn/chancejs/issues/140/events",
                "html_url": "https://github.com/victorquinn/chancejs/issues/140",
                "id": 53760415,
                "number": 140,
                "title": "Coordinates in a more usable form",
                "user": {
                    "login": "jtmarmon",
                    "id": 4528076,
                    "avatar_url": "https://avatars.githubusercontent.com/u/4528076?v=3",
                    "gravatar_id": "",
                    "url": "https://api.github.com/users/jtmarmon",
                    "html_url": "https://github.com/jtmarmon",
                    "followers_url": "https://api.github.com/users/jtmarmon/followers",
                    "following_url": "https://api.github.com/users/jtmarmon/following{/other_user}",
                    "gists_url": "https://api.github.com/users/jtmarmon/gists{/gist_id}",
                    "starred_url": "https://api.github.com/users/jtmarmon/starred{/owner}{/repo}",
                    "subscriptions_url": "https://api.github.com/users/jtmarmon/subscriptions",
                    "organizations_url": "https://api.github.com/users/jtmarmon/orgs",
                    "repos_url": "https://api.github.com/users/jtmarmon/repos",
                    "events_url": "https://api.github.com/users/jtmarmon/events{/privacy}",
                    "received_events_url": "https://api.github.com/users/jtmarmon/received_events",
                    "type": "User",
                    "site_admin": false
                },
                "labels": [],
                "state": "open",
                "locked": false,
                "assignee": null,
                "milestone": null,
                "comments": 4,
                "created_at": "2015-01-08T15:11:13Z",
                "updated_at": "2015-01-08T17:15:06Z",
                "closed_at": null,
                "body": "Currently `chance.coordinates()` gives you something like `'12.1237121, 64.123123'`. However, usually coordinates are stored as an array in `[lat, lon]` format. In all of my test cases, I have to write `chance.coordinates().split(', ')`. \r\n\r\nI think this should be the default format, but wanted to get some opinions before I do a PR"
            },
            {
                "url": "https://api.github.com/repos/victorquinn/chancejs/issues/133",
                "repository_url": "https://api.github.com/repos/victorquinn/chancejs",
                "labels_url": "https://api.github.com/repos/victorquinn/chancejs/issues/133/labels{/name}",
                "comments_url": "https://api.github.com/repos/victorquinn/chancejs/issues/133/comments",
                "events_url": "https://api.github.com/repos/victorquinn/chancejs/issues/133/events",
                "html_url": "https://github.com/victorquinn/chancejs/issues/133",
                "id": 51975859,
                "number": 133,
                "title": "UA generator [feature]",
                "user": {
                    "login": "VikramTiwari",
                    "id": 1330677,
                    "avatar_url": "https://avatars.githubusercontent.com/u/1330677?v=3",
                    "gravatar_id": "",
                    "url": "https://api.github.com/users/VikramTiwari",
                    "html_url": "https://github.com/VikramTiwari",
                    "followers_url": "https://api.github.com/users/VikramTiwari/followers",
                    "following_url": "https://api.github.com/users/VikramTiwari/following{/other_user}",
                    "gists_url": "https://api.github.com/users/VikramTiwari/gists{/gist_id}",
                    "starred_url": "https://api.github.com/users/VikramTiwari/starred{/owner}{/repo}",
                    "subscriptions_url": "https://api.github.com/users/VikramTiwari/subscriptions",
                    "organizations_url": "https://api.github.com/users/VikramTiwari/orgs",
                    "repos_url": "https://api.github.com/users/VikramTiwari/repos",
                    "events_url": "https://api.github.com/users/VikramTiwari/events{/privacy}",
                    "received_events_url": "https://api.github.com/users/VikramTiwari/received_events",
                    "type": "User",
                    "site_admin": false
                },
                "labels": [],
                "state": "open",
                "locked": false,
                "assignee": null,
                "milestone": null,
                "comments": 1,
                "created_at": "2014-12-15T11:34:28Z",
                "updated_at": "2015-03-02T03:07:29Z",
                "closed_at": null,
                "body": "Can we have random UA generator in Chance as well? The one I prefer is random-ua.\r\n\r\nPS: Kudos to the awesomeness! Love the product."
            },
            {
                "url": "https://api.github.com/repos/victorquinn/chancejs/issues/128",
                "repository_url": "https://api.github.com/repos/victorquinn/chancejs",
                "labels_url": "https://api.github.com/repos/victorquinn/chancejs/issues/128/labels{/name}",
                "comments_url": "https://api.github.com/repos/victorquinn/chancejs/issues/128/comments",
                "events_url": "https://api.github.com/repos/victorquinn/chancejs/issues/128/events",
                "html_url": "https://github.com/victorquinn/chancejs/issues/128",
                "id": 51084840,
                "number": 128,
                "title": "version option for guid() not documented",
                "user": {
                    "login": "oliversalzburg",
                    "id": 1658949,
                    "avatar_url": "https://avatars.githubusercontent.com/u/1658949?v=3",
                    "gravatar_id": "",
                    "url": "https://api.github.com/users/oliversalzburg",
                    "html_url": "https://github.com/oliversalzburg",
                    "followers_url": "https://api.github.com/users/oliversalzburg/followers",
                    "following_url": "https://api.github.com/users/oliversalzburg/following{/other_user}",
                    "gists_url": "https://api.github.com/users/oliversalzburg/gists{/gist_id}",
                    "starred_url": "https://api.github.com/users/oliversalzburg/starred{/owner}{/repo}",
                    "subscriptions_url": "https://api.github.com/users/oliversalzburg/subscriptions",
                    "organizations_url": "https://api.github.com/users/oliversalzburg/orgs",
                    "repos_url": "https://api.github.com/users/oliversalzburg/repos",
                    "events_url": "https://api.github.com/users/oliversalzburg/events{/privacy}",
                    "received_events_url": "https://api.github.com/users/oliversalzburg/received_events",
                    "type": "User",
                    "site_admin": false
                },
                "labels": [],
                "state": "open",
                "locked": false,
                "assignee": null,
                "milestone": null,
                "comments": 0,
                "created_at": "2014-12-05T10:39:37Z",
                "updated_at": "2014-12-05T10:39:37Z",
                "closed_at": null,
                "body": "The documentation does not mention that `guid()` accepts a `version` option."
            },
            {
                "url": "https://api.github.com/repos/victorquinn/chancejs/issues/95",
                "repository_url": "https://api.github.com/repos/victorquinn/chancejs",
                "labels_url": "https://api.github.com/repos/victorquinn/chancejs/issues/95/labels{/name}",
                "comments_url": "https://api.github.com/repos/victorquinn/chancejs/issues/95/comments",
                "events_url": "https://api.github.com/repos/victorquinn/chancejs/issues/95/events",
                "html_url": "https://github.com/victorquinn/chancejs/issues/95",
                "id": 47723805,
                "number": 95,
                "title": "Regexp parser for random strings",
                "user": {
                    "login": "gampleman",
                    "id": 69144,
                    "avatar_url": "https://avatars.githubusercontent.com/u/69144?v=3",
                    "gravatar_id": "",
                    "url": "https://api.github.com/users/gampleman",
                    "html_url": "https://github.com/gampleman",
                    "followers_url": "https://api.github.com/users/gampleman/followers",
                    "following_url": "https://api.github.com/users/gampleman/following{/other_user}",
                    "gists_url": "https://api.github.com/users/gampleman/gists{/gist_id}",
                    "starred_url": "https://api.github.com/users/gampleman/starred{/owner}{/repo}",
                    "subscriptions_url": "https://api.github.com/users/gampleman/subscriptions",
                    "organizations_url": "https://api.github.com/users/gampleman/orgs",
                    "repos_url": "https://api.github.com/users/gampleman/repos",
                    "events_url": "https://api.github.com/users/gampleman/events{/privacy}",
                    "received_events_url": "https://api.github.com/users/gampleman/received_events",
                    "type": "User",
                    "site_admin": false
                },
                "labels": [],
                "state": "open",
                "locked": false,
                "assignee": null,
                "milestone": null,
                "comments": 0,
                "created_at": "2014-11-04T15:15:26Z",
                "updated_at": "2014-11-04T15:15:26Z",
                "closed_at": null,
                "body": "Hi, I've written a library that provides random data generators. Mine are more oriented towards standard programming concepts, but I have a piece of code that parses regular expressions and creates a random string generator based on that, so I thought you might be interested:\r\n\r\nHere's the [annotated source code](http://code.gampleman.eu/quick_check.js/#section-37) and here's the [generated JavaScript](https://github.com/gampleman/quick_check.js/blob/master/dist/jasmine-quick-check.js#L484)."
            },
            {
                "url": "https://api.github.com/repos/victorquinn/chancejs/issues/87",
                "repository_url": "https://api.github.com/repos/victorquinn/chancejs",
                "labels_url": "https://api.github.com/repos/victorquinn/chancejs/issues/87/labels{/name}",
                "comments_url": "https://api.github.com/repos/victorquinn/chancejs/issues/87/comments",
                "events_url": "https://api.github.com/repos/victorquinn/chancejs/issues/87/events",
                "html_url": "https://github.com/victorquinn/chancejs/issues/87",
                "id": 42454461,
                "number": 87,
                "title": "Auto-clamp mode",
                "user": {
                    "login": "seiyria",
                    "id": 763609,
                    "avatar_url": "https://avatars.githubusercontent.com/u/763609?v=3",
                    "gravatar_id": "",
                    "url": "https://api.github.com/users/seiyria",
                    "html_url": "https://github.com/seiyria",
                    "followers_url": "https://api.github.com/users/seiyria/followers",
                    "following_url": "https://api.github.com/users/seiyria/following{/other_user}",
                    "gists_url": "https://api.github.com/users/seiyria/gists{/gist_id}",
                    "starred_url": "https://api.github.com/users/seiyria/starred{/owner}{/repo}",
                    "subscriptions_url": "https://api.github.com/users/seiyria/subscriptions",
                    "organizations_url": "https://api.github.com/users/seiyria/orgs",
                    "repos_url": "https://api.github.com/users/seiyria/repos",
                    "events_url": "https://api.github.com/users/seiyria/events{/privacy}",
                    "received_events_url": "https://api.github.com/users/seiyria/received_events",
                    "type": "User",
                    "site_admin": false
                },
                "labels": [],
                "state": "open",
                "locked": false,
                "assignee": null,
                "milestone": null,
                "comments": 3,
                "created_at": "2014-09-10T20:07:29Z",
                "updated_at": "2014-09-10T20:17:58Z",
                "closed_at": null,
                "body": "I would like to be able to specify an option to auto-clamp a value between min and max when doing chance.bool."
            },
            {
                "url": "https://api.github.com/repos/victorquinn/chancejs/issues/78",
                "repository_url": "https://api.github.com/repos/victorquinn/chancejs",
                "labels_url": "https://api.github.com/repos/victorquinn/chancejs/issues/78/labels{/name}",
                "comments_url": "https://api.github.com/repos/victorquinn/chancejs/issues/78/comments",
                "events_url": "https://api.github.com/repos/victorquinn/chancejs/issues/78/events",
                "html_url": "https://github.com/victorquinn/chancejs/issues/78",
                "id": 39751853,
                "number": 78,
                "title": "Random tree generation?",
                "user": {
                    "login": "Kallin",
                    "id": 158169,
                    "avatar_url": "https://avatars.githubusercontent.com/u/158169?v=3",
                    "gravatar_id": "",
                    "url": "https://api.github.com/users/Kallin",
                    "html_url": "https://github.com/Kallin",
                    "followers_url": "https://api.github.com/users/Kallin/followers",
                    "following_url": "https://api.github.com/users/Kallin/following{/other_user}",
                    "gists_url": "https://api.github.com/users/Kallin/gists{/gist_id}",
                    "starred_url": "https://api.github.com/users/Kallin/starred{/owner}{/repo}",
                    "subscriptions_url": "https://api.github.com/users/Kallin/subscriptions",
                    "organizations_url": "https://api.github.com/users/Kallin/orgs",
                    "repos_url": "https://api.github.com/users/Kallin/repos",
                    "events_url": "https://api.github.com/users/Kallin/events{/privacy}",
                    "received_events_url": "https://api.github.com/users/Kallin/received_events",
                    "type": "User",
                    "site_admin": false
                },
                "labels": [],
                "state": "open",
                "locked": false,
                "assignee": null,
                "milestone": null,
                "comments": 3,
                "created_at": "2014-08-07T18:04:57Z",
                "updated_at": "2015-03-02T15:58:51Z",
                "closed_at": null,
                "body": "Great looking library!\r\n\r\nI'm building some D3 visualizations, and they require generating random structured data.\r\nHere's one using random trees:\r\n\r\nhttp://codepen.io/Kallin/full/vzgnF/\r\n\r\nI was thinking of encapsulating the generation code into a more generic lib, then saw chance.js and thought maybe it would work well in there. Interested in me making a pull request to add some tree-generation? Could be other structures in the future as I explore more of D3. Let me know, I can try putting together a pull request!"
            },
            {
                "url": "https://api.github.com/repos/victorquinn/chancejs/issues/52",
                "repository_url": "https://api.github.com/repos/victorquinn/chancejs",
                "labels_url": "https://api.github.com/repos/victorquinn/chancejs/issues/52/labels{/name}",
                "comments_url": "https://api.github.com/repos/victorquinn/chancejs/issues/52/comments",
                "events_url": "https://api.github.com/repos/victorquinn/chancejs/issues/52/events",
                "html_url": "https://github.com/victorquinn/chancejs/issues/52",
                "id": 30323536,
                "number": 52,
                "title": "Consider splitting across multiple packages / modules?",
                "user": {
                    "login": "dashed",
                    "id": 139499,
                    "avatar_url": "https://avatars.githubusercontent.com/u/139499?v=3",
                    "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",
                    "site_admin": false
                },
                "labels": [],
                "state": "open",
                "locked": false,
                "assignee": null,
                "milestone": null,
                "comments": 7,
                "created_at": "2014-03-27T17:33:40Z",
                "updated_at": "2015-12-05T15:00:20Z",
                "closed_at": null,
                "body": "Any chance of splitting this library into multiple packages / modules?\r\n\r\nI'd like to see something like http://lodash.com/custom-builds"
            }
        ],
        "headers": {
            "server": "GitHub.com",
            "date": "Sun, 21 Feb 2016 23:23:19 GMT",
            "content-type": "application/json; charset=utf-8",
            "content-length": "21028",
            "connection": "close",
            "status": "200 OK",
            "x-ratelimit-limit": "5000",
            "x-ratelimit-remaining": "4780",
            "x-ratelimit-reset": "1456099911",
            "cache-control": "private, max-age=60, s-maxage=60",
            "etag": "\"ef18d8fe0737e4f0f9fdf74011616b45\"",
            "x-oauth-scopes": "user, repo, gist",
            "x-accepted-oauth-scopes": "repo",
            "vary": "Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding",
            "x-github-media-type": "github.v3; format=json",
            "link": "<https://api.github.com/repositories/10828733/issues?access_token=2677d9b3ac8d3a41f9919aa2b923886396dd186b&page=1>; rel=\"first\", <https://api.github.com/repositories/10828733/issues?access_token=2677d9b3ac8d3a41f9919aa2b923886396dd186b&page=1>; rel=\"prev\"",
            "access-control-allow-credentials": "true",
            "access-control-expose-headers": "ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval",
            "access-control-allow-origin": "*",
            "content-security-policy": "default-src 'none'",
            "strict-transport-security": "max-age=31536000; includeSubdomains; preload",
            "x-content-type-options": "nosniff",
            "x-frame-options": "deny",
            "x-xss-protection": "1; mode=block",
            "x-served-by": "07ff1c8a09e44b62e277fae50a1b1dc4",
            "x-github-request-id": "4F421F77:A4EB:1F42AFCC:56CA46E7"
        }
    }
]