MongoDB SteemData quick tutorial 1 - Query the First Steem Post

in #programing7 years ago (edited)

This tutorial is for beginner developers who would want to take advantage of steem blockchain data to develop awesome apps.

SteemData


Steem blockchain data that has been parsed and converted to human readable documents(json). The documents are stored in large data storage system known as mongoDB which i have been told is pronounced mango DB. The purpose of this tutorial is to illustrate how the data can be retrieved and interpreted.
Robo1.PNG

Tool used: Robomongo software

-
https://robomongo.org. Do not worry its free, at least for now.

This tool works on Linux, Windows and Mac OS X. After you have downloaded and installed Robomongo create a database connection to SteemData with the following credentials:
*Host: mongo1.steemdata.com
*Port: 27017
*Database: SteemData
*Username: steemit
*Password: steemit
Robo1.PNG

Clicking the test button will display the diagnostics window. After successful diagnostics you can proceed and click the connect button.

Robo1.PNG

As you can see from the screenshot above we already have data from the default query.

db.getCollection('Accounts').find({})
db is a reference to the database currently in use in our case the SteemData database.
The documents are stored in collections. Think of a collection as a table with rows in this case a single raw is a json document.
Getting all the collections in the SteemData database we have:

  1. AccountOperations
  2. Accounts
  3. Blockchain
  4. Comments
  5. Operations
  6. Posts
  7. PriceHistory
  8. Settings
  9. Stats

For this tutorial we are interested with running a query to get the first ever steem post.
db.getCollection("Posts").findOne() Returns first ever Post. https://steemit.com/meta/@steemit/firstpost
db.getCollection("Posts").find().count() returns total number of Posts 633828.

Results from running db.getCollection("Posts").findOne().

Its a lot of data so ensure that you scroll down to reply, up vote or follow.

{
    "_id" : ObjectId("591c30930f44d6e209df74b6"),
    "author_rewards" : 3548,
    "allow_replies" : true,
    "tags" : [ 
        "meta"
    ],
    "author_reputation" : "12944616889",
    "children" : 41,
    "json_metadata" : {},
    "root_title" : "Welcome to Steem!",
    "last_payout" : ISODate("2016-08-24T19:59:42.000Z"),
    "pending_payout_value" : {
        "amount" : 0.0,
        "asset" : "SBD"
    },
    "parent_permlink" : "meta",
    "url" : "/meta/@steemit/firstpost",
    "parent_author" : "",
    "children_abs_rshares" : "11690712162",
    "root_identifier" : "@steemit/firstpost",
    "depth" : 0,
    "abs_rshares" : 0,
    "promoted" : {
        "amount" : 0.0,
        "asset" : "SBD"
    },
    "identifier" : "@steemit/firstpost",
    "reward_weight" : 10000,
    "curator_payout_value" : {
        "amount" : 0.756,
        "asset" : "SBD"
    },
    "patched" : false,
    "root_comment" : 0,
    "community" : "",
    "last_update" : ISODate("2016-03-30T18:30:18.000Z"),
    "cashout_time" : ISODate("1969-12-31T23:59:59.000Z"),
    "allow_curation_rewards" : true,
    "title" : "Welcome to Steem!",
    "allow_votes" : true,
    "author" : "steemit",
    "reblogged_by" : [],
    "total_payout_value" : {
        "amount" : 0.942,
        "asset" : "SBD"
    },
    "body_length" : 0,
    "total_pending_payout_value" : {
        "amount" : 0.0,
        "asset" : "STEEM"
    },
    "category" : "meta",
    "vote_rshares" : 0,
    "body" : "Steemit is a social media platform where anyone can earn STEEM points by posting. The more people who like a post, the more STEEM the poster earns. Anyone can sell their STEEM for cash or vest it to boost their voting power.",
    "max_cashout_time" : ISODate("1969-12-31T23:59:59.000Z"),
    "net_rshares" : 0,
    "active" : ISODate("2017-06-02T02:40:09.000Z"),
    "net_votes" : 90,
    "created" : ISODate("2016-03-30T18:30:18.000Z"),
    "id" : 0,
    "permlink" : "firstpost",
    "beneficiaries" : [],
    "total_vote_weight" : 0,
    "replies" : [],
    "active_votes" : [ 
        {
            "time" : "2016-04-07T19:15:36",
            "rshares" : 375241,
            "percent" : 100,
            "voter" : "dantheman",
            "reputation" : "241964348330332",
            "weight" : "32866333630"
        }, 
        {
            "time" : "2016-04-06T19:29:03",
            "rshares" : 886132,
            "percent" : 10000,
            "voter" : "mr11acdee",
            "reputation" : "190869539046",
            "weight" : "876019385955"
        }, 
        {
            "time" : "2016-03-30T20:13:00",
            "rshares" : 5100,
            "percent" : 10000,
            "voter" : "steemit78",
            "reputation" : 0,
            "weight" : "5100000000"
        }, 
        {
            "time" : "2016-04-09T17:34:36",
            "rshares" : 1259167,
            "percent" : 10000,
            "voter" : "anonymous",
            "reputation" : "85602757513",
            "weight" : "312616340416"
        }, 
        {
            "time" : "2016-04-15T10:12:36",
            "rshares" : 318519,
            "percent" : 10000,
            "voter" : "hello",
            "reputation" : 159370,
            "weight" : NumberLong(3369765102)
        }, 
        {
            "time" : "2016-04-15T10:12:30",
            "rshares" : 153384,
            "percent" : 10000,
            "voter" : "world",
            "reputation" : 0,
            "weight" : 472619298
        }, 
        {
            "time" : "2016-04-16T17:12:54",
            "rshares" : -936400,
            "percent" : -100,
            "voter" : "ned",
            "reputation" : "30534514700416",
            "weight" : 0
        }, 
        {
            "time" : "2016-04-15T10:12:39",
            "rshares" : 59412,
            "percent" : 10000,
            "voter" : "fufubar1",
            "reputation" : 18646364,
            "weight" : 21052793
        }, 
        {
            "time" : "2016-04-15T10:12:33",
            "rshares" : 14997,
            "percent" : 10000,
            "voter" : "anonymous1",
            "reputation" : 0,
            "weight" : 437001
        }, 
        {
            "time" : "2016-04-07T14:55:15",
            "rshares" : 1441,
            "percent" : 100,
            "voter" : "red",
            "reputation" : "1993860928264",
            "weight" : 3754
        }, 
        {
            "time" : "2016-06-08T23:31:54",
            "rshares" : "551390835500",
            "percent" : 10000,
            "voter" : "liondani",
            "reputation" : "51831736139725",
            "weight" : "7704121196"
        }, 
        {
            "time" : "2016-04-12T04:45:12",
            "rshares" : 82748,
            "percent" : 10000,
            "voter" : "roadscape",
            "reputation" : "11550380396031",
            "weight" : 83185649
        }, 
        {
            "time" : "2016-04-15T10:43:51",
            "rshares" : 10772,
            "percent" : 100,
            "voter" : "xeroc",
            "reputation" : "109438082097540",
            "weight" : 124628
        }, 
        {
            "time" : "2016-04-27T08:20:09",
            "rshares" : "7685088000",
            "percent" : 10000,
            "voter" : "markopaasila",
            "reputation" : "31466930440365",
            "weight" : 26856
        }, 
        {
            "time" : "2016-05-25T07:12:27",
            "rshares" : 454510724,
            "percent" : 10000,
            "voter" : "tshering-tamang",
            "reputation" : "11060970847334",
            "weight" : 5
        }, 
        {
            "time" : "2016-08-01T02:58:39",
            "rshares" : 681946946,
            "percent" : 10000,
            "voter" : "romangelsi",
            "reputation" : NumberLong(-1240425193333),
            "weight" : 0
        }, 
        {
            "time" : "2016-05-24T00:14:42",
            "rshares" : 504895891,
            "percent" : 10000,
            "voter" : "dedmatvey",
            "reputation" : "4743132955102",
            "weight" : 7
        }, 
        {
            "time" : "2016-05-29T05:58:51",
            "rshares" : 498863058,
            "percent" : 10000,
            "voter" : "joelinux",
            "reputation" : "4602761797775",
            "weight" : 7
        }, 
        {
            "time" : "2016-07-26T03:57:24",
            "rshares" : 9590417,
            "percent" : 0,
            "voter" : "piranhax",
            "reputation" : "999470084797",
            "weight" : 0
        }, 
        {
            "time" : "2016-05-24T00:42:18",
            "rshares" : 473258270,
            "percent" : 10000,
            "voter" : "ned-reddit-login",
            "reputation" : NumberLong(-681991178142),
            "weight" : 6
        }, 
        {
            "time" : "2016-09-15T17:56:36",
            "rshares" : 0,
            "percent" : 3600,
            "voter" : "fernando-sanz",
            "reputation" : "1042695246494",
            "weight" : 0
        }, 
        {
            "time" : "2016-07-21T22:38:21",
            "rshares" : 425903066,
            "percent" : 10000,
            "voter" : "gekko",
            "reputation" : "1185517433922",
            "weight" : 0
        }, 
        {
            "time" : "2016-07-30T05:29:48",
            "rshares" : 381805870,
            "percent" : 10000,
            "voter" : "gilang-ramadhan",
            "reputation" : NumberLong(-505275265856),
            "weight" : 0
        }, 
        {
            "time" : "2016-07-22T22:52:27",
            "rshares" : 392459059,
            "percent" : 10000,
            "voter" : "kamvreto",
            "reputation" : "14430883217",
            "weight" : 0
        }, 
        {
            "time" : "2016-05-24T00:47:03",
            "rshares" : 422984262,
            "percent" : 10000,
            "voter" : "acidyo",
            "reputation" : "133437137491508",
            "weight" : 4
        }, 
        {
            "time" : "2016-08-13T19:26:33",
            "rshares" : "47179379651",
            "percent" : 10000,
            "voter" : "tosch",
            "reputation" : "36682949837",
            "weight" : 0
        }, 
        {
            "time" : "2016-08-20T11:43:42",
            "rshares" : "7831667988",
            "percent" : 10000,
            "voter" : "klye",
            "reputation" : "145813831776337",
            "weight" : 0
        }, 
        {
            "time" : "2016-07-20T12:34:33",
            "rshares" : 1019950749,
            "percent" : 10000,
            "voter" : "coar",
            "reputation" : "1666248230334",
            "weight" : 0
        }, 
        {
            "time" : "2016-09-12T23:22:15",
            "rshares" : 1746058458,
            "percent" : 1509,
            "voter" : "murh",
            "reputation" : "8533084287961",
            "weight" : 0
        }, 
        {
            "time" : "2016-08-11T23:16:54",
            "rshares" : "22639073725",
            "percent" : 10000,
            "voter" : "drinkzya",
            "reputation" : "4291203382388",
            "weight" : 0
        }, 
        {
            "time" : "2016-08-28T06:07:48",
            "rshares" : 0,
            "percent" : 10000,
            "voter" : "hien-tran",
            "reputation" : "7514149403947",
            "weight" : 0
        }, 
        {
            "time" : "2017-02-21T04:24:45",
            "rshares" : 0,
            "percent" : 10000,
            "voter" : "noganoo",
            "reputation" : "25969696213432",
            "weight" : 0
        }, 
        {
            "time" : "2016-07-22T19:57:03",
            "rshares" : 742566481,
            "percent" : 10000,
            "voter" : "patrick-g",
            "reputation" : "1013326481658",
            "weight" : 0
        }, 
        {
            "time" : "2016-07-20T12:52:45",
            "rshares" : 40624969,
            "percent" : 10000,
            "voter" : "ben99",
            "reputation" : "2457670192450",
            "weight" : 0
        }, 
        {
            "time" : "2017-04-19T12:58:06",
            "rshares" : 0,
            "percent" : 10000,
            "voter" : "tskeene",
            "reputation" : "5255176562366",
            "weight" : 0
        }, 
        {
            "time" : "2016-08-09T06:08:36",
            "rshares" : 1742755097,
            "percent" : 10000,
            "voter" : "sunshinecrypto",
            "reputation" : "1828374716591",
            "weight" : 0
        }, 
        {
            "time" : "2016-11-28T20:51:12",
            "rshares" : 0,
            "percent" : 10000,
            "voter" : "roelandp",
            "reputation" : "109566442386087",
            "weight" : 0
        }, 
        {
            "time" : "2016-07-17T19:37:45",
            "rshares" : 108855472,
            "percent" : 10000,
            "voter" : "kingtylervvs",
            "reputation" : "353432699790",
            "weight" : 0
        }, 
        {
            "time" : "2016-10-12T18:20:09",
            "rshares" : 0,
            "percent" : 10000,
            "voter" : "picokernel",
            "reputation" : "16786557789109",
            "weight" : 0
        }, 
        {
            "time" : "2017-02-27T01:54:39",
            "rshares" : 0,
            "percent" : 10000,
            "voter" : "ausbitbank",
            "reputation" : "142971087281743",
            "weight" : 0
        }, 
        {
            "time" : "2016-07-23T14:53:48",
            "rshares" : 485112237,
            "percent" : 10000,
            "voter" : "marinabogumil",
            "reputation" : "17833687196874",
            "weight" : 0
        }, 
        {
            "time" : "2016-09-20T20:45:03",
            "rshares" : 0,
            "percent" : 10000,
            "voter" : "sebastien",
            "reputation" : "6849335154636",
            "weight" : 0
        }, 
        {
            "time" : "2016-07-24T22:18:57",
            "rshares" : 917398502,
            "percent" : 10000,
            "voter" : "decrypt",
            "reputation" : "987629623608",
            "weight" : 0
        }, 
        {
            "time" : "2016-07-21T00:26:18",
            "rshares" : "5067187498",
            "percent" : 10000,
            "voter" : "senseiteekay",
            "reputation" : "35245551316356",
            "weight" : 0
        }, 
        {
            "time" : "2016-08-01T11:09:54",
            "rshares" : "5154897955",
            "percent" : 10000,
            "voter" : "r33drum",
            "reputation" : "196800352745",
            "weight" : 0
        }, 
        {
            "time" : "2016-07-26T00:54:12",
            "rshares" : "5033902237",
            "percent" : 10000,
            "voter" : "cryptosi",
            "reputation" : "258126350783",
            "weight" : 0
        }, 
        {
            "time" : "2016-07-19T01:41:51",
            "rshares" : 1037079223,
            "percent" : 10000,
            "voter" : "condra",
            "reputation" : "34917229814212",
            "weight" : 0
        }, 
        {
            "time" : "2016-07-20T04:15:18",
            "rshares" : 233032838,
            "percent" : 10000,
            "voter" : "jearson",
            "reputation" : "1844860092549",
            "weight" : 0
        }, 
        {
            "time" : "2016-07-19T21:36:54",
            "rshares" : 240809500,
            "percent" : 10000,
            "voter" : "tritium",
            "reputation" : "25715360164",
            "weight" : 0
        }, 
        {
            "time" : "2016-07-21T05:43:45",
            "rshares" : 123321995,
            "percent" : 10000,
            "voter" : "allmonitors",
            "reputation" : "47934048861335",
            "weight" : 0
        }, 
        {
            "time" : "2016-07-20T23:38:57",
            "rshares" : 226074637,
            "percent" : 10000,
            "voter" : "artjedi",
            "reputation" : "29008237643",
            "weight" : 0
        }, 
        {
            "time" : "2016-07-22T09:41:48",
            "rshares" : 931542394,
            "percent" : 10000,
            "voter" : "anduweb",
            "reputation" : "11311190205233",
            "weight" : 0
        }, 
        {
            "time" : "2016-07-19T15:38:06",
            "rshares" : NumberLong(2292983350),
            "percent" : 10000,
            "voter" : "inertia",
            "reputation" : "93880147441133",
            "weight" : 0
        }, 
        {
            "time" : "2016-07-21T01:56:45",
            "rshares" : 128561059,
            "percent" : 10000,
            "voter" : "maximkichev",
            "reputation" : "3702445824186",
            "weight" : 0
        }, 
        {
            "time" : "2016-07-21T05:21:06",
            "rshares" : 183438273,
            "percent" : 10000,
            "voter" : "a9inchcock",
            "reputation" : "113908011659",
            "weight" : 0
        }, 
        {
            "time" : "2016-07-26T14:12:27",
            "rshares" : 266262926,
            "percent" : 10000,
            "voter" : "desmonid",
            "reputation" : "1783203406495",
            "weight" : 0
        }, 
        {
            "time" : "2016-07-17T18:20:57",
            "rshares" : 71498008,
            "percent" : 10000,
            "voter" : "madhatting",
            "reputation" : "1210942313867",
            "weight" : 0
        }, 
        {
            "time" : "2016-08-13T14:29:54",
            "rshares" : "23726644841",
            "percent" : 10000,
            "voter" : "ubg",
            "reputation" : "4242040597898",
            "weight" : 0
        }, 
        {
            "time" : "2016-07-21T08:16:33",
            "rshares" : NumberLong(3741408303),
            "percent" : 10000,
            "voter" : "royaltiffany",
            "reputation" : "14028360196644",
            "weight" : 0
        }, 
        {
            "time" : "2016-07-22T12:36:03",
            "rshares" : 131577259,
            "percent" : 10000,
            "voter" : "gribgo",
            "reputation" : "4854693818",
            "weight" : 0
        }, 
        {
            "time" : "2016-08-10T08:32:42",
            "rshares" : "12371398765",
            "percent" : 10000,
            "voter" : "deanliu",
            "reputation" : "83724888504482",
            "weight" : 0
        }, 
        {
            "time" : "2016-07-19T15:34:33",
            "rshares" : "28907874049",
            "percent" : 10000,
            "voter" : "orm",
            "reputation" : "2110839599820",
            "weight" : 0
        }, 
        {
            "time" : "2016-08-23T09:20:42",
            "rshares" : 528988007,
            "percent" : 10000,
            "voter" : "qonq99",
            "reputation" : "513397003244",
            "weight" : 0
        }, 
        {
            "time" : "2016-07-21T14:25:27",
            "rshares" : 129537329,
            "percent" : 10000,
            "voter" : "rd7783",
            "reputation" : "9853253860",
            "weight" : 0
        }, 
        {
            "time" : "2016-07-24T16:59:00",
            "rshares" : 615020728,
            "percent" : 10000,
            "voter" : "slava",
            "reputation" : "100161586091",
            "weight" : 0
        }, 
        {
            "time" : "2016-08-31T20:32:27",
            "rshares" : 0,
            "percent" : 10000,
            "voter" : "flyboyzombie",
            "reputation" : "5777944687646",
            "weight" : 0
        }, 
        {
            "time" : "2016-07-21T23:36:15",
            "rshares" : 100102503,
            "percent" : 10000,
            "voter" : "sictransitgloria",
            "reputation" : "281654528634",
            "weight" : 0
        }, 
        {
            "time" : "2016-07-19T04:40:30",
            "rshares" : 95219365,
            "percent" : 10000,
            "voter" : "curator",
            "reputation" : "153487518915",
            "weight" : 0
        }, 
        {
            "time" : "2016-07-31T19:55:21",
            "rshares" : 232295871,
            "percent" : 10000,
            "voter" : "dubovoy",
            "reputation" : NumberLong(-385939981493),
            "weight" : 0
        }, 
        {
            "time" : "2016-09-09T15:34:36",
            "rshares" : 0,
            "percent" : 10000,
            "voter" : "solos",
            "reputation" : 35204206,
            "weight" : 0
        }, 
        {
            "time" : "2016-07-19T20:29:33",
            "rshares" : 96945805,
            "percent" : 10000,
            "voter" : "creatorgalaxy",
            "reputation" : "5095600502",
            "weight" : 0
        }, 
        {
            "time" : "2016-07-21T12:24:27",
            "rshares" : 99813231,
            "percent" : 10000,
            "voter" : "trigonice29",
            "reputation" : NumberLong(3804816886),
            "weight" : 0
        }, 
        {
            "time" : "2016-08-28T16:49:57",
            "rshares" : 0,
            "percent" : 10000,
            "voter" : "blysards",
            "reputation" : "1498190059494",
            "weight" : 0
        }, 
        {
            "time" : "2016-08-16T10:07:39",
            "rshares" : NumberLong(3721016208),
            "percent" : 10000,
            "voter" : "uwe69",
            "reputation" : "30253051016018",
            "weight" : 0
        }, 
        {
            "time" : "2016-07-23T13:32:36",
            "rshares" : 1279854,
            "percent" : 10000,
            "voter" : "nigmat",
            "reputation" : NumberLong(3244009247),
            "weight" : 0
        }, 
        {
            "time" : "2016-08-07T05:23:48",
            "rshares" : "13974353753",
            "percent" : 10000,
            "voter" : "magicmonk",
            "reputation" : "9533699465813",
            "weight" : 0
        }, 
        {
            "time" : "2016-08-13T15:16:36",
            "rshares" : "4968585456",
            "percent" : 10000,
            "voter" : "satoshifpv",
            "reputation" : "4742007813508",
            "weight" : 0
        }, 
        {
            "time" : "2016-08-01T02:06:09",
            "rshares" : 1660613178,
            "percent" : 10000,
            "voter" : "naturalista",
            "reputation" : "7343319045457",
            "weight" : 0
        }, 
        {
            "time" : "2016-07-29T12:59:15",
            "rshares" : "10847083143",
            "percent" : 10000,
            "voter" : "metrox",
            "reputation" : "5644957066342",
            "weight" : 0
        }, 
        {
            "time" : "2016-07-26T03:55:21",
            "rshares" : 18340928,
            "percent" : 10000,
            "voter" : "bestmalik",
            "reputation" : "28131790010",
            "weight" : 0
        }, 
        {
            "time" : "2016-07-23T23:33:42",
            "rshares" : 59563315,
            "percent" : 10000,
            "voter" : "kolyan31",
            "reputation" : 169634730,
            "weight" : 0
        }, 
        {
            "time" : "2016-08-08T22:41:27",
            "rshares" : 710989138,
            "percent" : 10000,
            "voter" : "romancs",
            "reputation" : "6317751844090",
            "weight" : 0
        }, 
        {
            "time" : "2016-07-31T16:04:48",
            "rshares" : 59366614,
            "percent" : 10000,
            "voter" : "luke490",
            "reputation" : "189186325546",
            "weight" : 0
        }, 
        {
            "time" : "2016-07-25T12:00:33",
            "rshares" : 58762473,
            "percent" : 10000,
            "voter" : "bro66",
            "reputation" : 137324193,
            "weight" : 0
        }, 
        {
            "time" : "2016-08-17T22:15:42",
            "rshares" : 201822591,
            "percent" : 10000,
            "voter" : "future24",
            "reputation" : "112513571385894",
            "weight" : 0
        }, 
        {
            "time" : "2016-08-01T13:52:06",
            "rshares" : 58623688,
            "percent" : 10000,
            "voter" : "mythras",
            "reputation" : "2139914718864",
            "weight" : 0
        }, 
        {
            "time" : "2016-07-29T23:29:18",
            "rshares" : 56536509,
            "percent" : 10000,
            "voter" : "imarealboy777",
            "reputation" : NumberLong(-1119249624989),
            "weight" : 0
        }, 
        {
            "time" : "2016-08-29T22:03:33",
            "rshares" : 0,
            "percent" : 10000,
            "voter" : "matrixdweller",
            "reputation" : NumberLong(-19752195765183),
            "weight" : 0
        }, 
        {
            "time" : "2016-07-29T23:23:12",
            "rshares" : 48299362,
            "percent" : 10000,
            "voter" : "smartguylabcoat",
            "reputation" : NumberLong(-854187369344),
            "weight" : 0
        }, 
        {
            "time" : "2016-07-29T18:04:51",
            "rshares" : 59157099,
            "percent" : 10000,
            "voter" : "mabiturm",
            "reputation" : "34436412607",
            "weight" : 0
        }, 
        {
            "time" : "2016-07-29T23:24:39",
            "rshares" : 48283979,
            "percent" : 10000,
            "voter" : "captainamerica",
            "reputation" : NumberLong(-1328155342494),
            "weight" : 0
        }, 
        {
            "time" : "2016-08-01T18:10:51",
            "rshares" : 54761612,
            "percent" : 10000,
            "voter" : "edbriv",
            "reputation" : "469892435308",
            "weight" : 0
        }, 
        {
            "time" : "2016-10-04T23:25:54",
            "rshares" : 0,
            "percent" : 10000,
            "voter" : "anarchyhasnogods",
            "reputation" : "48180893494880",
            "weight" : 0
        }, 
        {
            "time" : "2016-08-24T02:52:24",
            "rshares" : 865125771,
            "percent" : 10000,
            "voter" : "rittr",
            "reputation" : "1228277364481",
            "weight" : 0
        }, 
        {
            "time" : "2016-08-07T21:52:57",
            "rshares" : 92614447,
            "percent" : 10000,
            "voter" : "jelloducky",
            "reputation" : "416108237939",
            "weight" : 0
        }, 
        {
            "time" : "2016-08-09T00:22:39",
            "rshares" : 52740989,
            "percent" : 10000,
            "voter" : "tcstix",
            "reputation" : "21467555148",
            "weight" : 0
        }, 
        {
            "time" : "2016-08-08T20:46:36",
            "rshares" : 49467477,
            "percent" : 10000,
            "voter" : "friedwater",
            "reputation" : 143728394,
            "weight" : 0
        }, 
        {
            "time" : "2016-08-15T04:40:21",
            "rshares" : 57366185,
            "percent" : 10000,
            "voter" : "denisdiaz",
            "reputation" : NumberLong(-32027729845),
            "weight" : 0
        }, 
        {
            "time" : "2017-01-18T01:24:00",
            "rshares" : 0,
            "percent" : 10000,
            "voter" : "gbonikz",
            "reputation" : "1852465095450",
            "weight" : 0
        }, 
        {
            "time" : "2016-08-12T06:11:39",
            "rshares" : 132070449,
            "percent" : 10000,
            "voter" : "loganarchy",
            "reputation" : "15246711253469",
            "weight" : 0
        }, 
        {
            "time" : "2016-08-07T21:23:06",
            "rshares" : 48811442,
            "percent" : 10000,
            "voter" : "love-spirit-nerd",
            "reputation" : NumberLong(-2745902956),
            "weight" : 0
        }, 
        {
            "time" : "2017-04-29T05:28:33",
            "rshares" : 0,
            "percent" : 10000,
            "voter" : "darkflame",
            "reputation" : "23659078857026",
            "weight" : 0
        }, 
        {
            "time" : "2016-10-01T23:11:54",
            "rshares" : 0,
            "percent" : 10000,
            "voter" : "jacobcards",
            "reputation" : "35261424411087",
            "weight" : 0
        }, 
        {
            "time" : "2016-08-09T21:45:06",
            "rshares" : 51549585,
            "percent" : 10000,
            "voter" : "dikanevn",
            "reputation" : "6900034272",
            "weight" : 0
        }, 
        {
            "time" : "2016-08-24T11:30:27",
            "rshares" : 54017869,
            "percent" : 10000,
            "voter" : "zelious",
            "reputation" : 221607742,
            "weight" : 0
        }, 
        {
            "time" : "2017-01-14T14:35:06",
            "rshares" : 0,
            "percent" : 0,
            "voter" : "allyouneedtoknow",
            "reputation" : "6959232601611",
            "weight" : 0
        }, 
        {
            "time" : "2016-08-21T17:15:24",
            "rshares" : 50129944,
            "percent" : 10000,
            "voter" : "freebornangel",
            "reputation" : "25723020451781",
            "weight" : 0
        }, 
        {
            "time" : "2016-08-21T10:40:15",
            "rshares" : 53196086,
            "percent" : 10000,
            "voter" : "f1111111",
            "reputation" : "35747770521",
            "weight" : 0
        }, 
        {
            "time" : "2016-08-29T03:42:21",
            "rshares" : 0,
            "percent" : 10000,
            "voter" : "anomaly",
            "reputation" : "11228385854549",
            "weight" : 0
        }, 
        {
            "time" : "2016-08-24T09:29:27",
            "rshares" : "52394017140",
            "percent" : 10000,
            "voter" : "jack8831",
            "reputation" : "7631663936789",
            "weight" : 0
        }, 
        {
            "time" : "2016-09-12T23:21:21",
            "rshares" : 0,
            "percent" : 10000,
            "voter" : "buckland",
            "reputation" : 145873323,
            "weight" : 0
        }, 
        {
            "time" : "2016-10-15T09:41:27",
            "rshares" : 0,
            "percent" : 10000,
            "voter" : "rarcntv",
            "reputation" : NumberLong(-113240639046),
            "weight" : 0
        }, 
        {
            "time" : "2016-10-20T17:18:51",
            "rshares" : 0,
            "percent" : 10000,
            "voter" : "nataleeoliver",
            "reputation" : "8079821281432",
            "weight" : 0
        }, 
        {
            "time" : "2016-09-14T06:54:00",
            "rshares" : 0,
            "percent" : 10000,
            "voter" : "goldmatters",
            "reputation" : "20569776341211",
            "weight" : 0
        }, 
        {
            "time" : "2016-12-07T07:49:57",
            "rshares" : 0,
            "percent" : 10000,
            "voter" : "gamer00",
            "reputation" : "8965294449464",
            "weight" : 0
        }, 
        {
            "time" : "2017-02-07T13:01:57",
            "rshares" : 0,
            "percent" : 10000,
            "voter" : "curiesea",
            "reputation" : "40172964656206",
            "weight" : 0
        }, 
        {
            "time" : "2016-09-23T12:42:15",
            "rshares" : 0,
            "percent" : 10000,
            "voter" : "missmarzipan",
            "reputation" : "338501754215",
            "weight" : 0
        }, 
        {
            "time" : "2017-05-14T04:29:00",
            "rshares" : 0,
            "percent" : 3000,
            "voter" : "thejohalfiles",
            "reputation" : "5463565835665",
            "weight" : 0
        }, 
        {
            "time" : "2016-11-02T20:53:12",
            "rshares" : 0,
            "percent" : 10000,
            "voter" : "steemwart",
            "reputation" : "6988232324763",
            "weight" : 0
        }, 
        {
            "time" : "2016-11-02T20:53:45",
            "rshares" : 0,
            "percent" : 10000,
            "voter" : "mapesa",
            "reputation" : "16237884003665",
            "weight" : 0
        }, 
        {
            "time" : "2016-10-10T20:50:06",
            "rshares" : 0,
            "percent" : 10000,
            "voter" : "max-max",
            "reputation" : "16302945972",
            "weight" : 0
        }, 
        {
            "time" : "2017-03-31T04:52:36",
            "rshares" : 0,
            "percent" : 10000,
            "voter" : "jumaidafajar",
            "reputation" : "37156067821647",
            "weight" : 0
        }, 
        {
            "time" : "2016-11-22T05:30:27",
            "rshares" : 0,
            "percent" : 10000,
            "voter" : "leolina1",
            "reputation" : 419129457,
            "weight" : 0
        }, 
        {
            "time" : "2017-05-10T06:23:57",
            "rshares" : 0,
            "percent" : 10000,
            "voter" : "rebatesteem",
            "reputation" : "8566924552497",
            "weight" : 0
        }, 
        {
            "time" : "2017-03-05T09:49:27",
            "rshares" : 0,
            "percent" : 10000,
            "voter" : "aidancloquell",
            "reputation" : "23948759841556",
            "weight" : 0
        }, 
        {
            "time" : "2016-12-09T13:49:30",
            "rshares" : 0,
            "percent" : 10000,
            "voter" : "alamyrjunior",
            "reputation" : "5089602050620",
            "weight" : 0
        }, 
        {
            "time" : "2016-12-13T01:41:39",
            "rshares" : 0,
            "percent" : 10000,
            "voter" : "networker5",
            "reputation" : "2441655609079",
            "weight" : 0
        }, 
        {
            "time" : "2017-05-15T08:46:30",
            "rshares" : 0,
            "percent" : 10000,
            "voter" : "askari",
            "reputation" : "1714051280724",
            "weight" : 0
        }, 
        {
            "time" : "2017-02-06T19:19:00",
            "rshares" : 0,
            "percent" : 10000,
            "voter" : "barvon",
            "reputation" : "17124721761686",
            "weight" : 0
        }, 
        {
            "time" : "2017-01-20T00:54:48",
            "rshares" : 0,
            "percent" : 10000,
            "voter" : "juandemarte",
            "reputation" : "4243469594147",
            "weight" : 0
        }, 
        {
            "time" : "2017-02-12T01:00:03",
            "rshares" : 0,
            "percent" : 10000,
            "voter" : "thedeplorable1",
            "reputation" : "14408229948239",
            "weight" : 0
        }, 
        {
            "time" : "2017-03-09T16:41:00",
            "rshares" : 0,
            "percent" : 10000,
            "voter" : "kalemandra",
            "reputation" : "31726499934903",
            "weight" : 0
        }, 
        {
            "time" : "2017-05-24T08:12:24",
            "rshares" : 0,
            "percent" : 10000,
            "voter" : "rizkiavonna",
            "reputation" : "11437107786012",
            "weight" : 0
        }, 
        {
            "time" : "2017-02-12T18:50:27",
            "rshares" : 0,
            "percent" : 10000,
            "voter" : "tohamy7",
            "reputation" : "5693120323715",
            "weight" : 0
        }, 
        {
            "time" : "2017-02-15T01:39:51",
            "rshares" : 0,
            "percent" : 10000,
            "voter" : "justinashby",
            "reputation" : "5075065352702",
            "weight" : 0
        }, 
        {
            "time" : "2017-05-07T19:22:03",
            "rshares" : 0,
            "percent" : 10000,
            "voter" : "thereikiforest",
            "reputation" : "13556962439786",
            "weight" : 0
        }, 
        {
            "time" : "2017-03-11T23:23:06",
            "rshares" : 0,
            "percent" : 10000,
            "voter" : "serendipitie",
            "reputation" : 1261235648,
            "weight" : 0
        }, 
        {
            "time" : "2017-05-16T19:36:30",
            "rshares" : 0,
            "percent" : 10000,
            "voter" : "anwarabdullah",
            "reputation" : "2832249671898",
            "weight" : 0
        }, 
        {
            "time" : "2017-03-25T17:08:00",
            "rshares" : 0,
            "percent" : 10000,
            "voter" : "jelkasmi",
            "reputation" : "1163165434352",
            "weight" : 0
        }, 
        {
            "time" : "2017-05-07T20:00:30",
            "rshares" : 0,
            "percent" : 10000,
            "voter" : "dimitrya123",
            "reputation" : "560236284398",
            "weight" : 0
        }, 
        {
            "time" : "2017-03-30T02:28:00",
            "rshares" : 0,
            "percent" : 10000,
            "voter" : "laodr",
            "reputation" : "202898849000",
            "weight" : 0
        }, 
        {
            "time" : "2017-04-10T21:18:54",
            "rshares" : 0,
            "percent" : 10000,
            "voter" : "tasartcraft",
            "reputation" : "643314324148",
            "weight" : 0
        }, 
        {
            "time" : "2017-04-30T05:01:54",
            "rshares" : 0,
            "percent" : 10000,
            "voter" : "urmokas",
            "reputation" : "190041765659",
            "weight" : 0
        }, 
        {
            "time" : "2017-05-16T18:27:57",
            "rshares" : 0,
            "percent" : 10000,
            "voter" : "contentguy",
            "reputation" : "27018861249",
            "weight" : 0
        }, 
        {
            "time" : "2017-06-02T02:37:45",
            "rshares" : 0,
            "percent" : 10000,
            "voter" : "hothelp1by1",
            "reputation" : "125072823954",
            "weight" : 0
        }, 
        {
            "time" : "2017-06-01T14:53:45",
            "rshares" : 0,
            "percent" : 10000,
            "voter" : "manuel78",
            "reputation" : "417919353752",
            "weight" : 0
        }, 
        {
            "time" : "2017-05-23T10:42:45",
            "rshares" : 0,
            "percent" : 10000,
            "voter" : "brado",
            "reputation" : "560219418408",
            "weight" : 0
        }, 
        {
            "time" : "2017-05-17T20:17:12",
            "rshares" : 0,
            "percent" : 10000,
            "voter" : "strateg",
            "reputation" : "18181019075",
            "weight" : 0
        }, 
        {
            "time" : "2017-06-01T21:14:48",
            "rshares" : 0,
            "percent" : 10000,
            "voter" : "laloelectrix",
            "reputation" : "148049653279",
            "weight" : 0
        }
    ],
    "percent_steem_dollars" : 10000,
    "max_accepted_payout" : {
        "amount" : 1000000.0,
        "asset" : "SBD"
    }
}```

Have a fun day.

Coin Marketplace

STEEM 0.19
TRX 0.13
JST 0.029
BTC 60796.54
ETH 3365.01
USDT 1.00
SBD 2.50