{
  "observedAt": "2026-09-17T23:58:00+00:00",
  "observedAtNote": "All timestamps in this file are UTC with an explicit +00:00 offset. The observation window ran from 2026-09-17T23:58Z to 2026-09-18T00:20Z, which is the morning of 18 September 2026 in Australia/Melbourne, the operator timezone. Calendar dates in the essay and in presentation.json are UTC unless explicitly labelled otherwise.",
  "endpoint": "https://artblocks-mainnet.hasura.app/v1/graphql",
  "projectQueryFields": "projects_metadata: id, project_id, contract_address, slug, name, artist_name, artist_address, invocations, max_invocations, complete, completed_at, activated_at, first_token_minted_at, second_token_minted_at, license, link_to_license, script_type_and_version, price_per_token_in_wei, currency_symbol, curation_status, website, artist_interview, external_asset_dependency_count, script_count, aspect_ratio, display_static, start_datetime, updated_at, chain_id, script, scripts{index script}, description",
  "query": "query($s:String!){projects_metadata(where:{slug:{_eq:$s}}){id project_id contract_address slug name artist_name artist_address invocations max_invocations complete completed_at activated_at first_token_minted_at second_token_minted_at license link_to_license script_type_and_version price_per_token_in_wei currency_symbol curation_status website artist_interview external_asset_dependency_count script_count aspect_ratio display_static start_datetime updated_at chain_id script scripts{index script} description}}",
  "variables": {
    "s": "70s-pop-series-two-by-daniel-catt"
  },
  "method": "HTTP POST, Content-Type application/json",
  "identityFilter": "slug equals 70s-pop-series-two-by-daniel-catt, corroborated against contract_address 0xa7d8d9ef8d8ce8992df33d8b8cf4aebabd5bd270 and project_id 85 in the same response",
  "projectObservation": {
    "id": "0xa7d8d9ef8d8ce8992df33d8b8cf4aebabd5bd270-85",
    "project_id": "85",
    "contract_address": "0xa7d8d9ef8d8ce8992df33d8b8cf4aebabd5bd270",
    "chain_id": 1,
    "slug": "70s-pop-series-two-by-daniel-catt",
    "name": "70s Pop Series Two",
    "artist_name": "Daniel Catt",
    "artist_address": "0x29b2f895343cadfb3f5101bef6484b1f01c83dc9",
    "invocations": 256,
    "max_invocations": 256,
    "complete": true,
    "activated_at": "2021-06-12T21:37:38+00:00",
    "completed_at": "2021-06-13T17:08:56+00:00",
    "first_token_minted_at": "2021-06-08T21:06:09+00:00",
    "second_token_minted_at": "2021-06-13T16:59:26+00:00",
    "start_datetime": "2021-06-13T16:59:26+00:00",
    "updated_at": "2021-06-23T21:16:30.872609",
    "updated_atNote": "Reproduced exactly as the index returns it. This is the only value in this file carrying no timezone offset, because the platform stores it without one; it has not been converted or assumed to be UTC.",
    "license": "NIFTY",
    "link_to_license": null,
    "script_type_and_version": "p5@1.0.0",
    "price_per_token_in_wei": "95000000000000000",
    "currency_symbol": "ETH",
    "curation_status": "factory",
    "website": "https://70sPop.love",
    "artist_interview": null,
    "external_asset_dependency_count": 0,
    "script_count": 1,
    "aspect_ratio": 1,
    "display_static": false
  },
  "codeSha256": "91f5e411a74c949c3d05e83c93ee0b444bc3cec18e593ba97354aa814daad237",
  "codeBytes": 12155,
  "codeRetrieval": {
    "selection": "projects_metadata / script, cross-checked against projects_metadata / scripts{index script}",
    "fragmentsConcatenatedMatchSingleField": true,
    "digestMethod": "SHA-256 over UTF-8 bytes via Web Crypto API in the browser",
    "chainBlock": null,
    "note": "Index retrieval, not a direct read of contract storage. Script content is not redistributed in this package, and the embedded third-party poem is neither quoted nor paraphrased."
  },
  "codeFindings": {
    "prng": "four-word xorshift seeded from four eight-character hexadecimal slices of the token hash; full 32-bit output, unlike the quantised generator shared by three other projects in this batch",
    "drawingApi": "Canvas 2D only; p5 is instantiated but used solely for HSB colour mode, colour objects and interpolation",
    "p5SideEffect": "p5 instantiation creates an unused 200 by 200 default canvas that remains in the document alongside the artwork canvas",
    "tileGrid": "between 4 and 15 tiles per side, with a boost mechanism and corrective clamps when tile and line counts are both high",
    "tileContent": "concentric quarter-arc or straight bands, Truchet style, band ends aligned to tile edges so neighbours join into continuous pipes",
    "sizeModifiers": [
      "a tile may merge with its three neighbours into one double-size tile",
      "a tile may split into four quarter-size sub-tiles with offsets"
    ],
    "formatModes": [
      "Normal",
      "Outer",
      "Middle",
      "Bottom-up",
      "Top-down"
    ],
    "palettes": "eleven hand-written HSB palettes in a first set, six in a second, and a third mode generating three hues at random; a palette is interpolated into a ramp sized from the line count and then mirrored",
    "fillModes": [
      "Flat",
      "Stripes",
      "Single Grad",
      "Zap Grad",
      "Metallic",
      "Rainbow",
      "Ninja"
    ],
    "rainbowMechanism": "recomputes a six-stop spectrum gradient from elapsed wall-clock time on every frame",
    "ninjaMechanism": "reached only at a line count of at most two; sets a single white colour and then inverts the finished canvas with a difference composite fill",
    "animationFlag": "set only when fill is Rainbow or TickTock is not None; otherwise the draw routine runs once and schedules no further frames",
    "tickTockAssignment": "only when neither merging nor splitting occurred and the fill is not Rainbow, which makes the Rainbow and TickTock populations mutually exclusive",
    "tickTockModes": {
      "Chess": "alternates by checkerboard parity on a two second cycle",
      "Wipe": "advances by column",
      "Sweep": "advances by row",
      "Chaser1": "steps tile by tile through the whole grid",
      "Chaser4": "steps tile by tile on a one second interval"
    },
    "canvasSizing": "the smaller of the window's two dimensions, with a resize handler that re-renders",
    "eventListeners": [
      "DOMContentLoaded",
      "window resize"
    ],
    "audioReferences": 0,
    "embeddedText": "the first statement assigns Howard Moss's poem \"Painting a Wave\" to a constant that is never read by the program. The constant is named after the poem and the author is credited inline. Recorded as a finding; the text is not reproduced."
  },
  "tokenQuery": {
    "query": "query($ids:[String!]){tokens_metadata(where:{id:{_in:$ids}}){id token_id invocation project_id owner_address minted_at hash media_url primary_asset_url live_view_url features}}",
    "method": "HTTP POST, Content-Type application/json",
    "identifiersRequested": [
      "0xa7d8d9ef8d8ce8992df33d8b8cf4aebabd5bd270-85000000",
      "0xa7d8d9ef8d8ce8992df33d8b8cf4aebabd5bd270-85000001",
      "0xa7d8d9ef8d8ce8992df33d8b8cf4aebabd5bd270-85000010",
      "0xa7d8d9ef8d8ce8992df33d8b8cf4aebabd5bd270-85000020",
      "0xa7d8d9ef8d8ce8992df33d8b8cf4aebabd5bd270-85000228"
    ]
  },
  "tokenObservations": [
    {
      "token_id": "85000000",
      "owner_address": "0x7eb9693402e49a781ac616a0e5b939ba22bb43a6",
      "hash": "0x2cba0134994219a3d8a4789b819855a38d918e450bf8933b51d92afdffcfbe50",
      "minted_at": "2021-06-08T21:06:09+00:00"
    },
    {
      "token_id": "85000010",
      "owner_address": "0x2f68a3bab7172b3d1b5b23e71d44e220665953d7",
      "hash": "0x09374bd820c28936c06670c8e13ebdb8e4cbf73ef3f0a7cd4c92eb67dc1716fe",
      "minted_at": "2021-06-13T16:59:49+00:00"
    },
    {
      "token_id": "85000228",
      "owner_address": "0xdd19308a9731cdecb67e0d80ca6823394208c045",
      "hash": "0x0f8f79cb168a376b61e62cc337868218980e1b91c8b0561b5b6e59929a743e6a",
      "minted_at": "2021-06-13T17:07:24+00:00"
    },
    {
      "token_id": "85000248",
      "owner_address": "0xaf1c0bace177288e0ebc8956242b30ede92111bc",
      "hash": "0x0fb06a558852a55ad3a8c1bf89f02e0a67291fbb989864266a8e544ea3373874",
      "minted_at": "2021-06-13T17:08:44+00:00"
    }
  ],
  "editionSweep": {
    "query": "query{tokens_metadata(where:{project_id:{_eq:\"0xa7d8d9ef8d8ce8992df33d8b8cf4aebabd5bd270-85\"}},order_by:{invocation:asc},limit:600){token_id invocation hash owner_address minted_at features}}",
    "rowsReturned": 256,
    "emptyTraitTokens": [],
    "fillDistribution": {
      "Stripes": 94,
      "Flat": 81,
      "Zap Grad": 28,
      "Rainbow": 24,
      "Single Grad": 20,
      "Metallic": 8,
      "Ninja": 1
    },
    "tickTockDistribution": {
      "None": 230,
      "Chaser4": 9,
      "Chess": 7,
      "Chaser1": 6,
      "Wipe": 3,
      "Sweep": 1
    },
    "tickTockInvocations": [
      {
        "inv": 8,
        "mode": "Chaser1"
      },
      {
        "inv": 9,
        "mode": "Chaser4"
      },
      {
        "inv": 30,
        "mode": "Wipe"
      },
      {
        "inv": 50,
        "mode": "Chaser4"
      },
      {
        "inv": 53,
        "mode": "Wipe"
      },
      {
        "inv": 56,
        "mode": "Chaser1"
      },
      {
        "inv": 65,
        "mode": "Chaser4"
      },
      {
        "inv": 78,
        "mode": "Chaser4"
      },
      {
        "inv": 85,
        "mode": "Chess"
      },
      {
        "inv": 86,
        "mode": "Chaser4"
      },
      {
        "inv": 88,
        "mode": "Chaser4"
      },
      {
        "inv": 91,
        "mode": "Chess"
      },
      {
        "inv": 114,
        "mode": "Chess"
      },
      {
        "inv": 118,
        "mode": "Chaser4"
      },
      {
        "inv": 145,
        "mode": "Wipe"
      },
      {
        "inv": 146,
        "mode": "Chess"
      },
      {
        "inv": 156,
        "mode": "Chess"
      },
      {
        "inv": 158,
        "mode": "Sweep"
      },
      {
        "inv": 169,
        "mode": "Chaser1"
      },
      {
        "inv": 189,
        "mode": "Chaser1"
      },
      {
        "inv": 198,
        "mode": "Chess"
      },
      {
        "inv": 204,
        "mode": "Chaser1"
      },
      {
        "inv": 228,
        "mode": "Chaser4"
      },
      {
        "inv": 244,
        "mode": "Chaser4"
      },
      {
        "inv": 254,
        "mode": "Chess"
      },
      {
        "inv": 255,
        "mode": "Chaser1"
      }
    ],
    "ninjaInvocations": [
      248
    ],
    "rainbowCount": 24,
    "tickTockCount": 26,
    "overlapBetweenRainbowAndTickTock": 0,
    "animatedTotal": 50,
    "staticTotal": 206,
    "tilesDistribution": {
      "4x4": 8,
      "5x5": 20,
      "6x6": 35,
      "7x7": 36,
      "8x8": 43,
      "9x9": 38,
      "10x10": 36,
      "11x11": 16,
      "12x12": 8,
      "13x13": 9,
      "14x14": 3,
      "15x15": 4
    },
    "formatDistribution": {
      "Normal": 86,
      "Outer": 59,
      "Middle": 45,
      "Bottom-up": 44,
      "Top-down": 22
    },
    "boostedDistribution": {
      "-3": 2,
      "-2": 18,
      "-1": 23,
      "0": 171,
      "1": 22,
      "2": 18,
      "3": 2
    },
    "distinctPaletteNames": 16
  },
  "licenceCensus": {
    "query": "query{projects_metadata(where:{contract_address:{_eq:\"0xa7d8d9ef8d8ce8992df33d8b8cf4aebabd5bd270\"}},limit:600){project_id license link_to_license}}",
    "projectsReturned": 359,
    "distinctLabelStrings": 34,
    "projectsWithLicenceLink": 87
  },
  "tokenPageChecks": [
    {
      "url": "https://www.artblocks.io/token/1/0xa7d8d9ef8d8ce8992df33d8b8cf4aebabd5bd270/85000000",
      "status": 200,
      "method": "Independent HTTP GET; availability only, not visual inspection",
      "observedAt": "2026-09-18T01:44:07.022251+00:00"
    },
    {
      "url": "https://www.artblocks.io/token/1/0xa7d8d9ef8d8ce8992df33d8b8cf4aebabd5bd270/85000010",
      "status": 200,
      "method": "Independent HTTP GET; availability only, not visual inspection",
      "observedAt": "2026-09-18T01:44:07.111880+00:00"
    },
    {
      "url": "https://www.artblocks.io/token/1/0xa7d8d9ef8d8ce8992df33d8b8cf4aebabd5bd270/85000228",
      "status": 200,
      "method": "Independent HTTP GET; availability only, not visual inspection",
      "observedAt": "2026-09-18T01:44:07.564656+00:00"
    },
    {
      "url": "https://www.artblocks.io/token/1/0xa7d8d9ef8d8ce8992df33d8b8cf4aebabd5bd270/85000248",
      "status": 200,
      "method": "Independent HTTP GET; availability only, not visual inspection",
      "observedAt": "2026-09-18T01:44:06.964214+00:00"
    }
  ],
  "visualObservations": [
    {
      "tokenId": "85000000",
      "naturalSize": "2400x2400",
      "observedAt": "2026-09-18T00:02:00+00:00",
      "observation": "Eight by eight grid at nine lines. Deep green and near-black striped bands with thin black outlines, forming a dense interlace of loops and long straight runs. Several double-size tiles produce wide sweeping curves crossing most of the frame."
    },
    {
      "tokenId": "85000010",
      "naturalSize": "2400x2400",
      "observedAt": "2026-09-18T00:02:00+00:00",
      "observation": "Eleven by eleven grid at three lines, Flat fill. Single pale blue shapes on black outlines, so the pipes read as flat ribbons rather than striped ones. Larger tiles concentrated in a horizontal band across the centre, consistent with the Middle format."
    },
    {
      "tokenId": "85000228",
      "naturalSize": "2400x2400",
      "observedAt": "2026-09-18T00:02:00+00:00",
      "observation": "Seven by seven grid at nine lines in red, white and navy. Larger tiles pushed toward the edges leaving a busier centre of tight concentric targets, consistent with the Outer format."
    },
    {
      "tokenId": "85000248",
      "naturalSize": "2400x2400",
      "observedAt": "2026-09-18T00:02:00+00:00",
      "observation": "Pure black and white, no colour. A very fine grid at minimal line count rendered as white pipework on black, the whole image inverted. The only token in the edition where the composite operation changes."
    }
  ],
  "motionObservations": [
    {
      "tokenId": "85000228",
      "rendererUrl": "https://generator.artblocks.io/1/0xa7d8d9ef8d8ce8992df33d8b8cf4aebabd5bd270/85000228",
      "observedAt": "2026-09-18T00:04:53+00:00",
      "canvas": "1324x1324",
      "cssSize": "662px",
      "sketchState": {
        "fill": "Stripes",
        "tiles": 7,
        "lines": 9,
        "ticktock": "Chaser4",
        "needsAnimating": true,
        "drawCounter": 4202
      },
      "samples": 10,
      "sampleIntervalSeconds": 3,
      "distinctSignatures": 10,
      "audio": "no audio or video element in the document",
      "interaction": "no pointer or keyboard handlers in the script",
      "conclusion": "animated; tiles rotate through their orientations in a chase across the grid, with no end state"
    },
    {
      "tokenId": "85000000",
      "rendererUrl": "https://generator.artblocks.io/1/0xa7d8d9ef8d8ce8992df33d8b8cf4aebabd5bd270/85000000",
      "observedAt": "2026-09-18T00:05:28+00:00",
      "canvas": "1324x1324",
      "sketchState": {
        "fill": "Stripes",
        "ticktock": "None",
        "needsAnimating": false,
        "drawCounter": 1
      },
      "samples": 3,
      "sampleIntervalSeconds": 4,
      "distinctSignatures": 1,
      "nonTransparentPixelsSampled": 160000,
      "canvasesInDocument": [
        {
          "id": "canv",
          "size": "1324x1324",
          "role": "artwork"
        },
        {
          "id": "defaultCanvas0",
          "size": "200x200",
          "role": "unused p5 default canvas"
        }
      ],
      "conclusion": "static; the draw routine ran exactly once and scheduled no further frames"
    }
  ],
  "holdingCheck": {
    "walletSetSource": "https://www.artblocks.io/profile/ab5d, with the linked address set read from the Art Blocks GraphQL index via user_profiles where username equals ab5d",
    "query": "query{user_profiles(where:{username:{_eq:\"ab5d\"}}){id username name linked_accounts{public_address display_name}}}",
    "wallets": [
      "0xce6dc14c5494d8a4325a81d3b257d130fa2039d1",
      "0x2247247ee0eee59557e6cd14f7e047f6a9309b5c",
      "0xdd19308a9731cdecb67e0d80ca6823394208c045"
    ],
    "observedAt": "2026-09-17T23:24:29+00:00",
    "outcome": "token 85000228, invocation 228, held by 0xdd19308a9731cdecb67e0d80ca6823394208c045, verified current; it is one of the 26 TickTock tokens in the edition"
  },
  "submittedTokenObservations": [
    {
      "token_id": "85000000",
      "invocation": 0,
      "hash": "0x2cba0134994219a3d8a4789b819855a38d918e450bf8933b51d92afdffcfbe50",
      "minted_at": "2021-06-08T21:06:09+00:00",
      "owner_address": "0x7eb9693402e49a781ac616a0e5b939ba22bb43a6",
      "features": {
        "Fill": "Stripes",
        "Lines": 9,
        "Tiles": "8x8",
        "Format": "Normal",
        "Series": "Two",
        "Boosted": 1,
        "Palette": "Matrix",
        "TickTock": "None",
        "Biggering": "true",
        "Smallanator": "false",
        "Chill Factor": 5,
        "Noodle Level": 0
      },
      "observedAt": "2026-09-18T00:03:37+00:00"
    },
    {
      "token_id": "85000001",
      "invocation": 1,
      "hash": "0xe2d12ee7bb8e93c9ebf54ec8f5c5efa802091656517e8db8601b4d4dc5fdf259",
      "minted_at": "2021-06-13T16:59:26+00:00",
      "owner_address": "0x207b3c1083a62e282d375a11f52730879cbfbbbb",
      "features": {
        "Fill": "Stripes",
        "Lines": 6,
        "Tiles": "10x10",
        "Format": "Normal",
        "Series": "Two",
        "Boosted": 1,
        "Palette": "Citrus Prom",
        "TickTock": "None",
        "Biggering": "true",
        "Smallanator": "true",
        "Chill Factor": 6,
        "Noodle Level": 60
      },
      "observedAt": "2026-09-18T00:03:37+00:00"
    },
    {
      "token_id": "85000010",
      "invocation": 10,
      "hash": "0x09374bd820c28936c06670c8e13ebdb8e4cbf73ef3f0a7cd4c92eb67dc1716fe",
      "minted_at": "2021-06-13T16:59:49+00:00",
      "owner_address": "0x2f68a3bab7172b3d1b5b23e71d44e220665953d7",
      "features": {
        "Fill": "Flat",
        "Lines": 3,
        "Tiles": "11x11",
        "Format": "Middle",
        "Series": "Two",
        "Boosted": 0,
        "Palette": "Flatomatic",
        "TickTock": "None",
        "Biggering": "true",
        "Smallanator": "false",
        "Chill Factor": 18,
        "Noodle Level": 0
      },
      "observedAt": "2026-09-18T00:03:37+00:00"
    },
    {
      "token_id": "85000020",
      "invocation": 20,
      "hash": "0x6f894e5b551faa2f13451403e11f84c359ef42be26ede4d5c3a0ea08b5e1cca6",
      "minted_at": "2021-06-13T17:00:06+00:00",
      "owner_address": "0x2c81cee7050c9d03295560851ffde123bdf9696a",
      "features": {
        "Fill": "Stripes",
        "Lines": 11,
        "Tiles": "7x7",
        "Format": "Normal",
        "Series": "Two",
        "Boosted": 1,
        "Palette": "Fruit Salad Chews",
        "TickTock": "None",
        "Biggering": "false",
        "Smallanator": "false",
        "Chill Factor": 0,
        "Noodle Level": 0
      },
      "observedAt": "2026-09-18T00:03:37+00:00"
    },
    {
      "token_id": "85000228",
      "invocation": 228,
      "hash": "0x0f8f79cb168a376b61e62cc337868218980e1b91c8b0561b5b6e59929a743e6a",
      "minted_at": "2021-06-13T17:07:24+00:00",
      "owner_address": "0xdd19308a9731cdecb67e0d80ca6823394208c045",
      "media_url": "https://media-proxy.artblocks.io/1/0xa7d8d9ef8d8ce8992df33d8b8cf4aebabd5bd270/85000228.png",
      "live_view_url": "https://generator.artblocks.io/1/0xa7d8d9ef8d8ce8992df33d8b8cf4aebabd5bd270/85000228",
      "features": {
        "Fill": "Stripes",
        "Lines": 9,
        "Tiles": "7x7",
        "Format": "Outer",
        "Series": "Two",
        "Boosted": 0,
        "Palette": "Signal",
        "TickTock": "Chaser4",
        "Biggering": "false",
        "Smallanator": "false",
        "Chill Factor": 0,
        "Noodle Level": 0
      },
      "observedAt": "2026-09-18T00:03:37+00:00"
    }
  ],
  "independentIndexCheck": {
    "observedAt": "2026-09-18T01:43:40.758066+00:00",
    "slug": "70s-pop-series-two-by-daniel-catt",
    "project": {
      "project_id": "85",
      "contract_address": "0xa7d8d9ef8d8ce8992df33d8b8cf4aebabd5bd270",
      "invocations": 256,
      "max_invocations": 256,
      "license": "NIFTY"
    },
    "scriptSha256": "91f5e411a74c949c3d05e83c93ee0b444bc3cec18e593ba97354aa814daad237",
    "matchesSubmittedDigest": true,
    "tokens": [
      {
        "token_id": "85000000",
        "owner_address": "0x7eb9693402e49a781ac616a0e5b939ba22bb43a6",
        "hash": "0x2cba0134994219a3d8a4789b819855a38d918e450bf8933b51d92afdffcfbe50",
        "minted_at": "2021-06-08T21:06:09+00:00"
      },
      {
        "token_id": "85000010",
        "owner_address": "0x2f68a3bab7172b3d1b5b23e71d44e220665953d7",
        "hash": "0x09374bd820c28936c06670c8e13ebdb8e4cbf73ef3f0a7cd4c92eb67dc1716fe",
        "minted_at": "2021-06-13T16:59:49+00:00"
      },
      {
        "token_id": "85000228",
        "owner_address": "0xdd19308a9731cdecb67e0d80ca6823394208c045",
        "hash": "0x0f8f79cb168a376b61e62cc337868218980e1b91c8b0561b5b6e59929a743e6a",
        "minted_at": "2021-06-13T17:07:24+00:00"
      },
      {
        "token_id": "85000248",
        "owner_address": "0xaf1c0bace177288e0ebc8956242b30ede92111bc",
        "hash": "0x0fb06a558852a55ad3a8c1bf89f02e0a67291fbb989864266a8e544ea3373874",
        "minted_at": "2021-06-13T17:08:44+00:00"
      }
    ]
  },
  "submittedTokenPageChecks": [
    {
      "url": "https://www.artblocks.io/token/1/0xa7d8d9ef8d8ce8992df33d8b8cf4aebabd5bd270/85000000",
      "status": 200,
      "outcome": "loaded",
      "observedAt": "2026-09-18T00:03:37+00:00"
    },
    {
      "url": "https://www.artblocks.io/token/1/0xa7d8d9ef8d8ce8992df33d8b8cf4aebabd5bd270/85000001",
      "status": 200,
      "outcome": "loaded",
      "observedAt": "2026-09-18T00:03:37+00:00"
    },
    {
      "url": "https://www.artblocks.io/token/1/0xa7d8d9ef8d8ce8992df33d8b8cf4aebabd5bd270/85000010",
      "status": 200,
      "outcome": "loaded",
      "observedAt": "2026-09-18T00:03:37+00:00"
    },
    {
      "url": "https://www.artblocks.io/token/1/0xa7d8d9ef8d8ce8992df33d8b8cf4aebabd5bd270/85000020",
      "status": 200,
      "outcome": "loaded",
      "observedAt": "2026-09-18T00:03:37+00:00"
    },
    {
      "url": "https://www.artblocks.io/token/1/0xa7d8d9ef8d8ce8992df33d8b8cf4aebabd5bd270/85000228",
      "status": 200,
      "outcome": "loaded",
      "observedAt": "2026-09-18T00:03:37+00:00"
    },
    {
      "url": "https://www.artblocks.io/collection/70s-pop-series-two-by-daniel-catt",
      "status": 200,
      "outcome": "loaded, project details panel expanded; no licence field and no animated badge present",
      "observedAt": "2026-09-18T00:03:37+00:00"
    },
    {
      "url": "https://generator.artblocks.io/1/0xa7d8d9ef8d8ce8992df33d8b8cf4aebabd5bd270/85000228",
      "status": 200,
      "outcome": "renderer executed; animated, ten distinct canvas states over twenty-seven seconds",
      "observedAt": "2026-09-18T00:04:53+00:00"
    },
    {
      "url": "https://generator.artblocks.io/1/0xa7d8d9ef8d8ce8992df33d8b8cf4aebabd5bd270/85000000",
      "status": 200,
      "outcome": "renderer executed; static, draw counter 1, three identical canvas states over eight seconds",
      "observedAt": "2026-09-18T00:05:28+00:00"
    },
    {
      "url": "https://70sPop.love",
      "status": 200,
      "outcome": "failed in substance: WordPress fatal error page, PHP parse error in a backup plugin, no project content reachable",
      "observedAt": "2026-09-18T00:10:00+00:00"
    },
    {
      "url": "https://newsletter.revdancatt.com/archive",
      "status": 200,
      "outcome": "archive listing read; a targeted attempt to open one 2021 issue at a guessed URL returned the site's page-not-found state and was abandoned",
      "observedAt": "2026-09-18T00:14:00+00:00"
    }
  ],
  "submittedSections": [
    {
      "id": "work-context",
      "heading": "The work and its context",
      "bodyMarkdown": "70s Pop Series Two is Art Blocks project 85 on the contract at `0xa7d8d9ef8d8ce8992df33d8b8cf4aebabd5bd270`, on Ethereum mainnet, credited to Daniel Catt by both the index and the live project page. The indexed record returns 256 invocations against a maximum of 256, a declared dependency of `p5@1.0.0`, a square aspect ratio, a curation status of factory, and a static display flag of false [^S02]. The AB5D atlas position 86 is a catalogue index and is not the project ID.\n\nThe title is not incidental. This is a sequel, and the artist's mint-page statement says so in its first clause: \"Series Two of the popular 70s Pop\" [^S01]. Every token in the edition carries a Series trait whose value is the string Two, on all 256 of them [^S04], which is a deliberate marker rather than a variable feature. The rest of the statement is pure register-setting: a shag-carpet-lined Chevy van on Lake Shore Drive, \"Barbarella meets Saturday Night Fever\" [^S01]. It tells a reader what the work is meant to feel like and nothing about how it works.\n\nThe page describes a \"Fixed edition of 256 unique artworks\" in \"the Factory category\" and lists nine attributes: Tiles, Lines, Boosted, Format, Biggering, Smallanator, Fill, TickTock and Palette [^S01]. The indexed token records carry twelve, adding Series, Chill Factor and Noodle Level [^S04]. The trait names are part of the work's voice, and the joke names conceal real parameters: Biggering and Smallanator govern whether tiles merge into double-size blocks or subdivide into quarters, and TickTock governs whether the piece animates at all.\n\nThat last point matters more than the name suggests, and it is the finding this dossier leads with. The project page does not label the work as animated, and most of the edition is not. But 50 of the 256 tokens do move, by two entirely different mechanisms, and the split can be computed exactly from the code and confirmed against the edition. The numbers are in the examples section.\n\nThe release date shown on the page is a timezone artefact. Read from a machine in UTC+10 it says \"Released on 14 June 2021\" [^S01]; the underlying second-mint timestamp is 2021-06-13T16:59:26Z, which is 13 June in UTC [^S02]."
    },
    {
      "id": "conception",
      "heading": "Conception and development",
      "bodyMarkdown": "The documentary position here is mixed: the artist is well documented as a practitioner and almost undocumented on this specific project.\n\nThe mint-page statement is the only primary text about the work itself [^S01], and it is written in character rather than as description. The indexed record carries a null value for `artist_interview` and no interview for this project was located [^S02].\n\nThe artist website recorded on the project, `70sPop.love`, is broken. It returns a page, but the page is a WordPress fatal error: a PHP parse error raised inside a backup plugin, which also discloses a server filesystem path [^S11]. Whatever the artist published there about the series is not currently reachable, and the coordinator should not link the URL from a dossier in its present state.\n\nWhat is available is the artist's ongoing newsletter, which has run since April 2021 and is still publishing [^S10]. Its archive establishes two things relevant here. First, that the Pop series continued well beyond this project: an April 2023 issue carries an \"80s Pop: Roxy update\" and a December 2024 issue is subtitled \"A little detour into my upcoming ArtBlocks drop\" for an 80s Pop Roxy bonus pack [^S10]. Series Two was therefore a middle instalment of a longer sequence, not a one-off sequel. Second, that the artist's public practice has since moved substantially toward pen plotting and physical drawing machines, which is what most of the newsletter now concerns [^S10]. An attempt to open one specific 2021 issue failed at the guessed URL and no 70s Pop development narrative was retrieved; that failure is recorded in the research notes rather than dressed up as a finding.\n\nOne further piece of evidence about the artist's disposition sits inside the script itself, and it is unusual enough to belong in this section. The first statement in the program assigns a short poem to a constant, and nothing in the program ever reads that constant. The poem is \"Painting a Wave\" by the American poet Howard Moss, who is named in the code as its author; the constant itself is named after the poem. It is dead code placed at the very top of a script that was about to be written permanently to a blockchain.\n\nThe poem is four lines spoken by a painter, and its argument is that a system will get you the debris that washes up but never the wave itself. Placing that at the head of a generative program, immediately above a pseudo-random number generator and several hundred lines of rule-driven drawing, is a pointed thing to do. Whether it was meant as an epigraph, a private joke or a caution to the artist's future self is not established, because the artist has said nothing about it anywhere located here. The presence and identity of the constant are direct script findings; the reading is not, and is offered as one. The poem's text is not reproduced in this package, and its rights status is raised in the rights section."
    },
    {
      "id": "construction",
      "heading": "How the work was constructed",
      "bodyMarkdown": "The executable program uses a four-word xorshift state, initialised from four eight-character hexadecimal chunks following the hash prefix. Each update changes the state through shifts and exclusive-or operations and returns an unsigned state value divided by 2 to the power 32. This identifies the implemented mechanism without ranking it as better than unrelated artists' generators or claiming a statistical audit. [^S02]\n\nThe visible drawing uses the browser's Canvas 2D paths, arcs, fills, strokes and gradients. p5 supplies colour operations, including interpolation. That is an important part of the appearance even though p5 is not issuing the final drawing commands. The palette conversion also deserves care: values obtained through p5's HSB colour methods are inserted into CSS hsl strings. Replacing this sequence with a conventional colour-space conversion could change the result. [^S02]\n\nThe initial tile count is derived from two random values, then may receive boosts of two and four. The expression permits counts from four through seventeen; an observed edition range would require a separate census. Line count is coupled to those values and subsequently adjusted by several conditions. Density therefore emerges from related decisions, not two independently selected counts. [^S02]\n\nEach occupied tile receives either paired quarter-arc constructions or paired straight constructions. Coloured bands are separated by black strokes. Their endpoints allow adjacent tiles to make longer apparent routes across the grid. A large tile occupies a two-by-two block and marks its three neighbours as skipped; a small tile contains four subtiles at half scale. These operations alter the scale of a route locally while preserving the square structure of the whole. [^S02]\n\nBiggering and Smallanator correspond to flags permitting those changes. The Format value affects row-dependent probabilities for their placement. A format name alone does not prove that any particular tile was enlarged: the relevant flag and subsequent decisions must also permit it. In particular, fewer than eight tiles per side disables the large-tile flag. Describing an Outer-format seven-by-seven work as necessarily having enlarged edge tiles would therefore be incorrect. [^S02]\n\nThe palette tables contain eleven entries in one group and six in another, including repeated entries; a further branch generates hue values. Colours are interpolated, sampled and mirrored into a band sequence. Flat reduces the result to one colour. Stripes retains a colour sequence; other branches introduce gradients, including white-to-black Metallic and a spectrum for Rainbow. These rules connect the palette to line count and tile subdivision rather than simply applying one fixed swatch to the picture. [^S02]\n\nRainbow shifts its gradient hues according to elapsed wall-clock time. The Ninja branch, reached under a small-line-count condition and an additional random decision, supplies white and then fills the completed canvas with white using difference compositing. The program resets to source-over at the beginning of each drawing pass. These are distinct operations: one changes colour with time, while the other changes the final colour relationship through compositing. [^S02]\n\nA needsAnimating flag becomes true for Rainbow or a non-None TickTock value. TickTock is assigned only when the large- and small-tile flags are both off and the fill is not Rainbow. The conditions therefore separate the two animation mechanisms in this program. Whether the minted feature records match that separation is an additional question, answered by the edition query rather than by code reading alone. [^S02][^S04]\n\nTickTock schedules changes to tile type using timestamps. Arc types advance through four corner configurations, while straight types alternate between two orientations. Chess offsets alternating tiles by a second on a two-second recurrence. Wipe and Sweep stagger columns and rows. Chaser1 and Chaser4 share an initial tile-by-tile delay but use different recurrence intervals: Chaser1 depends on the square of the tile count, whereas Chaser4 uses a shorter tile-count-based interval plus four seconds. The names should not be collapsed into one identical timer. [^S02]\n\nDrawing checks whether each scheduled action is due and advances it by one interval. This is different from recomputing an orientation directly from total elapsed time, so long interruptions deserve testing in preservation work. The normal animated path requests another browser animation frame; the static path does not. Actual frame rate is a runtime property and was not established by this inspection. [^S02]\n\nThe resize routine removes existing canvas elements, creates a new artwork canvas and sizes it to the smaller window dimension, accounting for device pixel ratio. It retains the existing tile holders and redraws the static case on resize. Consequently, an unused canvas observed in one session should not be described as guaranteed to remain for the page's entire lifetime. No artist-defined keyboard or pointer controls, or audio mechanism, were found in the executable drawing code. [^S02]"
    },
    {
      "id": "mint",
      "heading": "The mint",
      "bodyMarkdown": "The indexed record separates four events [^S02]. The first token was minted at 2021-06-08T21:06:09Z. The project was activated at 2021-06-12T21:37:38Z. The second token was minted at 2021-06-13T16:59:26Z, and `start_datetime` carries that same value. The project completed at 2021-06-13T17:08:56Z. In UTC those are 8 June, 12 June, 13 June and 13 June 2021.\n\nThe four day gap between the first mint and activation is consistent with a proof minted well ahead of the sale, and the token record for invocation 0 confirms the timestamp [^S03]. The current owner of that token is not the artist address on the project, so present ownership establishes nothing about the original recipient.\n\nThe interval from the second indexed mint to completion is 9 minutes and 30 seconds, covering invocations 1 through 255. That is by a wide margin the fastest mint in this batch, and it is consistent with the sampled mint times: invocation 1 at 16:59:26Z, invocation 10 at 16:59:49Z, invocation 20 at 17:00:06Z, and the token discussed below, invocation 228, at 17:07:24Z [^S03]. Two hundred and twenty-eight invocations were consumed inside about eight minutes.\n\nThe usual caution applies and is not a formality here. The index does not establish when minting opened to the public, and `start_datetime` duplicates `second_token_minted_at` rather than marking an opening independently, so the nine and a half minutes is an indexed interval and not a verified public sellout time. The nineteen hour gap between activation and the second mint makes the point concrete: activation plainly did not open the sale, since nothing was minted for most of a day afterwards.\n\nThe record reports a price of 95000000000000000 wei, that is 0.095 ETH [^S02], recorded as the currently configured value rather than as the price paid at mint; no primary announcement of an original price was located."
    },
    {
      "id": "rights",
      "heading": "Copyright and licensing",
      "bodyMarkdown": "The indexed record reports a licence label of \"NIFTY\" for the artwork, with a null link to the licence [^S02]. The live project page publishes no licence statement at all; its expanded details panel lists edition size, artist website, library, aspect ratio, blockchain, token standard, contract type and attribute names, and nothing about copyright [^S01].\n\n\"NIFTY\" is a label, not a document. A contemporaneous explainer published in the Art Blocks community publication on 10 June 2021, three days before this project completed, identifies NIFTY as shorthand for NFT License 2.0, a licence developed by Dapper Labs permitting personal non-commercial use and merchandising up to a stated annual ceiling while prohibiting modification, third-party marketing use and trademark claims [^S09]. That is a third-party interpretation of a platform label rather than a grant by this artist.\n\nThe label carries less weight than it appears to. A census of the `license` field across all 359 projects on this contract returns 34 distinct strings, including at least eight spellings that appear to denote the NIFTY or NFT License family, plus whitespace and case variants, a label that is a bare URL and a label that is a whole sentence; only 87 of the 359 carry any licence link [^S08]. The field is unvalidated free text.\n\nArtwork rights are therefore recorded as an uncontrolled \"NIFTY\" label with no operative terms, status reported rather than verified, category custom, and the missing terms raised as an editorial exception.\n\nThis project has one rights question the others in the batch do not, and it is specific enough to need its own handling. The script's first statement assigns \"Painting a Wave\", a short poem by the American poet Howard Moss, to a constant. Moss died in 1987, so the poem is very unlikely to be in the public domain in any relevant jurisdiction. The text is stored on-chain as part of the artist script, which is itself stored on an immutable contract. Nothing located in this research indicates whether permission was sought or granted, and no attribution appears anywhere on the project page or in the mint statement; the credit to Moss exists only inside the code, visible to anyone who reads it.\n\nThis dossier makes no allegation and draws no legal conclusion. It records four things: that a named third-party literary work is embedded in the on-chain script, that it is credited there to its author, that it is never executed or displayed by the artwork, and that no licence or permission for it was located. The work is named and described here because naming a source is ordinary scholarly practice; its text is not reproduced, and should not be reproduced downstream, because reproduction is the part that would need permission. The matter is raised as an editorial exception for the coordinator.\n\nCode rights are unknown and kept separate. No licence statement accompanies the script, and the page's description of the contract as fully on-chain establishes readability, not permission. The declared p5 dependency carries its own upstream licensing, not inspected here. Ownership of a token is not an artwork licence."
    },
    {
      "id": "examples",
      "heading": "Close reading of examples",
      "bodyMarkdown": "Five tokens were confirmed as real records on the exact contract before use, and the full edition of 256 was swept [^S03][^S04]. All five token pages and the collection page returned HTTP 200 at 2026-09-18T00:03:37Z [^S12]. Four preview images were viewed at their native 2400 by 2400 pixels [^S07], and two tokens were run in the live renderer, one from each side of the animation split [^S05][^S06].\n\nThe animation split is the central result, so take it first. The script animates only when the fill is Rainbow or when TickTock is not None, and TickTock is only ever assigned when the fill is not Rainbow. The prediction is therefore that the two animated populations are disjoint and that everything else is a single static render. The edition sweep returns 24 Rainbow tokens and 26 tokens with a TickTock mode, with zero overlap between the two sets, giving 50 animated tokens and 206 static ones [^S04]. The prediction holds exactly.\n\nThat was then tested at the renderer rather than left as arithmetic. Invocation 0, whose traits give Stripes fill and TickTock None, reported an animation flag of false and a draw counter of exactly 1; three canvas signatures taken eight seconds apart were byte-identical [^S06]. It renders once and stops. Invocation 228, whose traits give Stripes fill and a Chaser4 TickTock mode, reported an animation flag of true, a draw counter already past four thousand frames, and ten distinct canvas signatures across twenty-seven seconds of observation [^S05]. Same project, same fill, opposite behaviour, determined by one parameter.\n\nThe TickTock modes are not evenly distributed. Across the 26 animated tokens the sweep returns nine Chaser4, seven Chess, six Chaser1, three Wipe and a single Sweep, at invocation 158 [^S04]. One token in the edition sweeps.\n\nOn the visual side, the four images viewed share an unmistakable construction. Each is a square grid of tiles filled with concentric quarter-arcs and straight bands, drawn so that band ends align at tile boundaries and neighbouring tiles join into continuous rounded pipes. Every band carries a thin black outline, which is what gives the work its airbrushed-decal look and its period reference.\n\nInvocation 0 is an eight by eight grid at nine lines in the Matrix palette: deep green and near-black bands, a dense interlace of loops and long straight runs, with several double-size tiles producing wide sweeping curves that cross most of the frame. Invocation 10 is a very different case, an eleven by eleven grid at only three lines with a Flat fill: single pale blue shapes on black outlines, so the pipes read as flat ribbons rather than striped ones, and the Middle format concentrates the larger tiles in a horizontal band across the centre.\n\nInvocation 228 is the AB5D holding and the work this dossier recommends as the header, hash beginning `0x0f8f79cb`, minted 2021-06-13T17:07:24Z, held by `0xdd19308a9731cdecb67e0d80ca6823394208c045`, one of the three addresses currently linked to the AB5D profile [^S03][^S13]. It is a seven by seven grid at nine lines in an Outer format, in a red, white and navy palette named Signal. The Outer format pushes the larger tiles toward the edges, leaving a busier centre of tight concentric targets. It is one of the 26 tokens that animate, and it animates in the Chaser4 mode, so its pipes reroute themselves tile by tile in a slow chase across the grid. Choosing it as the header means the dossier's featured work demonstrates the rarest behaviour in the project rather than the common one.\n\nInvocation 248 is the single Ninja token in the edition [^S04]. It is worth a close look because it is the only place in the project where the composite operation changes. The image is pure black and white with no colour at all: a very fine grid at minimal line count, drawn as a white field of pipework on black, the whole canvas inverted by a difference operation applied after everything else has been painted. Against 255 tokens of saturated period colour it reads as a photographic negative of the project's own idea.\n\nNeither renderer session contained an audio or video element and the script contains no audio, so no sound was heard and browser autoplay policy was never engaged [^S05][^S06]. The script registers no keyboard or pointer handlers and the page documents no controls; the only event listener is a window resize handler that re-renders the piece at the new size. Nothing responds to input."
    },
    {
      "id": "significance",
      "heading": "Significance and limitations",
      "bodyMarkdown": "The substantive result in this package is that 70s Pop Series Two is two projects wearing one coat. Two hundred and six of its tokens are single-pass static images. Fifty are animated, and those fifty divide again into 24 that cycle a spectrum continuously and 26 whose tiles reroute themselves on a timer. The division is governed by one flag, computed from two conditions that are mutually exclusive by construction, and the edition matches the construction exactly with no overlap [^S04]. A collector holding a TickTock token and a collector holding a Stripes token own objects that behave differently in kind, not in degree, and nothing on the project page tells them so.\n\nThat is the practical point for the archive. The platform does not label this work as animated, which is right for four fifths of it and wrong for the rest [^S01]. Anyone cataloguing the project from its page, or from preview stills, will describe a static work; the two renderer sessions in this package show the same project rendering once and stopping in one token and still running after four thousand frames in another [^S05][^S06].\n\nThe second finding worth carrying forward is smaller and more suggestive. The declared library is not the renderer. Every mark is Canvas 2D; p5 is present as a colour-interpolation utility and leaves a stray unused canvas in the document as evidence of its own irrelevance to the drawing [^S06]. Dependency metadata on this platform describes what was loaded, not what did the work.\n\nThe limitations are real. Everything about intent rests on one mint-page paragraph written in character. The artist website of record is broken and serving a PHP fatal error, so whatever documentation existed there is unavailable [^S11]. No interview exists in the index and none was located. The newsletter establishes the artist's continuing practice and the continuation of the Pop series into an 80s Pop project, but a targeted attempt to retrieve a specific 2021 issue failed and no development narrative for this project was recovered [^S10]. The original mint price is not established, and the nine and a half minute indexed interval is not a verified sellout time.\n\nThe rights position needs the coordinator rather than a conclusion from here. Beyond the usual gap, which is an uncontrolled \"NIFTY\" label with no published terms on a contract carrying 34 distinct licence strings [^S08], this project has a specific issue: Howard Moss's poem \"Painting a Wave\" is embedded in its on-chain script, credited to Moss inside the code, never used by the artwork, and unaccompanied by any located permission. That is stated as an observation and nothing more. The work is named; its text is not reproduced here and should not be reproduced downstream."
    }
  ],
  "coordinatorCodeReview": {
    "reviewer": "OpenAI Codex",
    "recordedAt": "2026-09-18T02:41:39.279148+00:00",
    "sha256": "91f5e411a74c949c3d05e83c93ee0b444bc3cec18e593ba97354aa814daad237",
    "bytes": 12155,
    "scope": "Complete executable code read following initial unused string assignment; assignment structure checked, literary text not transcribed or independently authenticated",
    "executed": false,
    "findings": [
      "Tile expression permits 4 through 17 including boosts",
      "Below8 disables hasBig; Outer format alone does not imply big tiles",
      "p5 HSB getters feed CSS hsl strings; dependency contributes appearance",
      "Straight tiles alternate 2 orientations, arcs4",
      "Chaser1 and Chaser4 differ in recurrence periods",
      "resize removes all existing canvases; unused canvas not guaranteed permanent",
      "Rainbow and non-None TickTock mutually exclusive by feature generation conditions"
    ],
    "remaining": []
  },
  "coordinatorFreshCheck": {
    "endpoint": "https://artblocks-mainnet.hasura.app/v1/graphql",
    "query": "query{user_profiles(where:{username:{_eq:\"ab5d\"}}){linked_accounts{public_address}} projects_metadata(where:{slug:{_eq:\"70s-pop-series-two-by-daniel-catt\"}}){project_id contract_address invocations max_invocations first_token_minted_at second_token_minted_at activated_at completed_at price_per_token_in_wei license link_to_license script_type_and_version} tokens_metadata(where:{project_id:{_eq:\"0xa7d8d9ef8d8ce8992df33d8b8cf4aebabd5bd270-85\"}},order_by:{invocation:asc},limit:600){token_id invocation hash owner_address features minted_at}}",
    "variables": {},
    "retrievedAt": "2026-09-18T02:41:57.969574+00:00",
    "response": {
      "data": {
        "user_profiles": [
          {
            "linked_accounts": [
              {
                "public_address": "0xce6dc14c5494d8a4325a81d3b257d130fa2039d1"
              },
              {
                "public_address": "0x2247247ee0eee59557e6cd14f7e047f6a9309b5c"
              },
              {
                "public_address": "0xdd19308a9731cdecb67e0d80ca6823394208c045"
              }
            ]
          }
        ],
        "projects_metadata": [
          {
            "project_id": "85",
            "contract_address": "0xa7d8d9ef8d8ce8992df33d8b8cf4aebabd5bd270",
            "invocations": 256,
            "max_invocations": 256,
            "first_token_minted_at": "2021-06-08T21:06:09+00:00",
            "second_token_minted_at": "2021-06-13T16:59:26+00:00",
            "activated_at": "2021-06-12T21:37:38+00:00",
            "completed_at": "2021-06-13T17:08:56+00:00",
            "price_per_token_in_wei": "95000000000000000",
            "license": "NIFTY",
            "link_to_license": null,
            "script_type_and_version": "p5@1.0.0"
          }
        ],
        "tokens_metadata": [
          {
            "token_id": "85000000",
            "invocation": 0,
            "hash": "0x2cba0134994219a3d8a4789b819855a38d918e450bf8933b51d92afdffcfbe50",
            "owner_address": "0x7eb9693402e49a781ac616a0e5b939ba22bb43a6",
            "features": {
              "Fill": "Stripes",
              "Lines": 9,
              "Tiles": "8x8",
              "Format": "Normal",
              "Series": "Two",
              "Boosted": 1,
              "Palette": "Matrix",
              "TickTock": "None",
              "Biggering": "true",
              "Smallanator": "false",
              "Chill Factor": 5,
              "Noodle Level": 0
            },
            "minted_at": "2021-06-08T21:06:09+00:00"
          },
          {
            "token_id": "85000001",
            "invocation": 1,
            "hash": "0xe2d12ee7bb8e93c9ebf54ec8f5c5efa802091656517e8db8601b4d4dc5fdf259",
            "owner_address": "0x207b3c1083a62e282d375a11f52730879cbfbbbb",
            "features": {
              "Fill": "Stripes",
              "Lines": 6,
              "Tiles": "10x10",
              "Format": "Normal",
              "Series": "Two",
              "Boosted": 1,
              "Palette": "Citrus Prom",
              "TickTock": "None",
              "Biggering": "true",
              "Smallanator": "true",
              "Chill Factor": 6,
              "Noodle Level": 60
            },
            "minted_at": "2021-06-13T16:59:26+00:00"
          },
          {
            "token_id": "85000002",
            "invocation": 2,
            "hash": "0x2bb05b99f0f8ed5a5f59fa8de84c105a92655a0ca5369c89569c7d6f9d748728",
            "owner_address": "0xf7d4cc70520404126ef1eabfe227d8ab8ec22f9f",
            "features": {
              "Fill": "Stripes",
              "Lines": 14,
              "Tiles": "4x4",
              "Format": "Outer",
              "Series": "Two",
              "Boosted": 2,
              "Palette": "Frank-N-Furter",
              "TickTock": "None",
              "Biggering": "false",
              "Smallanator": "true",
              "Chill Factor": 0,
              "Noodle Level": 28
            },
            "minted_at": "2021-06-13T16:59:26+00:00"
          },
          {
            "token_id": "85000003",
            "invocation": 3,
            "hash": "0x727412b27344cdc7845939168e8f23ac4c525d7798b1ce85d92e17b2933c8edf",
            "owner_address": "0x7fd6c3844264cd50ad2183afd058e3983dcea1af",
            "features": {
              "Fill": "Flat",
              "Lines": 7,
              "Tiles": "9x9",
              "Format": "Outer",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Flatomatic",
              "TickTock": "None",
              "Biggering": "true",
              "Smallanator": "false",
              "Chill Factor": 12,
              "Noodle Level": 0
            },
            "minted_at": "2021-06-13T16:59:26+00:00"
          },
          {
            "token_id": "85000004",
            "invocation": 4,
            "hash": "0x7c4b81619f14939c0a9e0b63be07f69b4479903610f218afcc4ff948da6cc256",
            "owner_address": "0x6ad8fe4e495e9709be1a2cc8a04646078e6b1ab0",
            "features": {
              "Fill": "Stripes",
              "Lines": 9,
              "Tiles": "8x8",
              "Format": "Normal",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Indian Summer",
              "TickTock": "None",
              "Biggering": "true",
              "Smallanator": "false",
              "Chill Factor": 4,
              "Noodle Level": 0
            },
            "minted_at": "2021-06-13T16:59:26+00:00"
          },
          {
            "token_id": "85000005",
            "invocation": 5,
            "hash": "0x52fe166cc368928f1e4c03498ca4680c80735e42914828103837dab98167bf34",
            "owner_address": "0x50d12e66195a67c80531f251ceac41e7e5e67340",
            "features": {
              "Fill": "Stripes",
              "Lines": 13,
              "Tiles": "6x6",
              "Format": "Normal",
              "Series": "Two",
              "Boosted": 2,
              "Palette": "Signal",
              "TickTock": "None",
              "Biggering": "false",
              "Smallanator": "false",
              "Chill Factor": 0,
              "Noodle Level": 0
            },
            "minted_at": "2021-06-13T16:59:26+00:00"
          },
          {
            "token_id": "85000006",
            "invocation": 6,
            "hash": "0x5863bed8703c09ec98cd2c5b5ef67b1acea2d54d5e952906b20c70c87395e6fc",
            "owner_address": "0xf2cd7d1f9f49e472534d1d8c46b0b56f66463bf9",
            "features": {
              "Fill": "Zap Grad",
              "Lines": 8,
              "Tiles": "8x8",
              "Format": "Middle",
              "Series": "Two",
              "Boosted": 2,
              "Palette": "Get out of the van",
              "TickTock": "None",
              "Biggering": "true",
              "Smallanator": "false",
              "Chill Factor": 10,
              "Noodle Level": 0
            },
            "minted_at": "2021-06-13T16:59:26+00:00"
          },
          {
            "token_id": "85000007",
            "invocation": 7,
            "hash": "0xfd636ee6408a5ffc2588280d30946324474f3540d3e92f39b43630ecba1c7245",
            "owner_address": "0xf2ed74a2b911f5139a1be79be0780177b33e257a",
            "features": {
              "Fill": "Flat",
              "Lines": 14,
              "Tiles": "4x4",
              "Format": "Outer",
              "Series": "Two",
              "Boosted": -1,
              "Palette": "Flatomatic",
              "TickTock": "None",
              "Biggering": "false",
              "Smallanator": "true",
              "Chill Factor": 0,
              "Noodle Level": 28
            },
            "minted_at": "2021-06-13T16:59:49+00:00"
          },
          {
            "token_id": "85000008",
            "invocation": 8,
            "hash": "0x8379380e5a777124ff5c4cdabbb0c0f9bc7695acbaa87822cdf4a3c1d5c9f27c",
            "owner_address": "0x4666fd1f89576e2d6fb3f2ecec5eefd3e1ba6b59",
            "features": {
              "Fill": "Flat",
              "Lines": 13,
              "Tiles": "5x5",
              "Format": "Bottom-up",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Flatomatic",
              "TickTock": "Chaser1",
              "Biggering": "false",
              "Smallanator": "false",
              "Chill Factor": 0,
              "Noodle Level": 0
            },
            "minted_at": "2021-06-13T16:59:49+00:00"
          },
          {
            "token_id": "85000009",
            "invocation": 9,
            "hash": "0x772da98cafc4caa53893dcb1b66bbfd5b8461561721b3f94e41260f86d1c6999",
            "owner_address": "0xe436c6457debb8787e0f980a578ea7236148e13a",
            "features": {
              "Fill": "Flat",
              "Lines": 11,
              "Tiles": "5x5",
              "Format": "Top-down",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Flatomatic",
              "TickTock": "Chaser4",
              "Biggering": "false",
              "Smallanator": "false",
              "Chill Factor": 0,
              "Noodle Level": 0
            },
            "minted_at": "2021-06-13T16:59:49+00:00"
          },
          {
            "token_id": "85000010",
            "invocation": 10,
            "hash": "0x09374bd820c28936c06670c8e13ebdb8e4cbf73ef3f0a7cd4c92eb67dc1716fe",
            "owner_address": "0x2f68a3bab7172b3d1b5b23e71d44e220665953d7",
            "features": {
              "Fill": "Flat",
              "Lines": 3,
              "Tiles": "11x11",
              "Format": "Middle",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Flatomatic",
              "TickTock": "None",
              "Biggering": "true",
              "Smallanator": "false",
              "Chill Factor": 18,
              "Noodle Level": 0
            },
            "minted_at": "2021-06-13T16:59:49+00:00"
          },
          {
            "token_id": "85000011",
            "invocation": 11,
            "hash": "0xadb07355041c580b435009df3624849b6812d124582d3f12a621fb0762ced05b",
            "owner_address": "0xe03a5189dac8182085e4adf66281f679fff2291d",
            "features": {
              "Fill": "Zap Grad",
              "Lines": 6,
              "Tiles": "11x11",
              "Format": "Middle",
              "Series": "Two",
              "Boosted": -1,
              "Palette": "Arctica",
              "TickTock": "None",
              "Biggering": "true",
              "Smallanator": "true",
              "Chill Factor": 15,
              "Noodle Level": 200
            },
            "minted_at": "2021-06-13T16:59:50+00:00"
          },
          {
            "token_id": "85000012",
            "invocation": 12,
            "hash": "0x88b52eebcc421c30ca67aad284f0cc540522b333a8f9a9b81cfcf9118a402799",
            "owner_address": "0x7eb9693402e49a781ac616a0e5b939ba22bb43a6",
            "features": {
              "Fill": "Stripes",
              "Lines": 8,
              "Tiles": "8x8",
              "Format": "Outer",
              "Series": "Two",
              "Boosted": -1,
              "Palette": "Frank-N-Furter",
              "TickTock": "None",
              "Biggering": "true",
              "Smallanator": "true",
              "Chill Factor": 8,
              "Noodle Level": 92
            },
            "minted_at": "2021-06-13T16:59:50+00:00"
          },
          {
            "token_id": "85000013",
            "invocation": 13,
            "hash": "0x22f4ab6cd28d3de3fbcfc6f57dea7c5b7f3f08cb68468ce92375eba1c0bf988b",
            "owner_address": "0x4dd5a4d1fcb6f8938aa8ad070aefe1b19e8f9c0c",
            "features": {
              "Fill": "Flat",
              "Lines": 5,
              "Tiles": "12x12",
              "Format": "Bottom-up",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Flatomatic",
              "TickTock": "None",
              "Biggering": "true",
              "Smallanator": "false",
              "Chill Factor": 17,
              "Noodle Level": 0
            },
            "minted_at": "2021-06-13T16:59:50+00:00"
          },
          {
            "token_id": "85000014",
            "invocation": 14,
            "hash": "0xf4a4b506300308463fa700d219496bdee8bee516651e69c6b31ee4d91e95bff7",
            "owner_address": "0xb1c51fbecee5a397177c934b76acd080c105d648",
            "features": {
              "Fill": "Rainbow",
              "Lines": 12,
              "Tiles": "7x7",
              "Format": "Bottom-up",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Citrus Prom",
              "TickTock": "None",
              "Biggering": "false",
              "Smallanator": "true",
              "Chill Factor": 0,
              "Noodle Level": 168
            },
            "minted_at": "2021-06-13T16:59:50+00:00"
          },
          {
            "token_id": "85000015",
            "invocation": 15,
            "hash": "0xb8c761fb3e421d06b048f6019efc625d729a2b68527f3e30314a21009e6450d4",
            "owner_address": "0xfa15a0a2ad06aececbbf8e2307512bb90e08f7d3",
            "features": {
              "Fill": "Stripes",
              "Lines": 6,
              "Tiles": "9x9",
              "Format": "Normal",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Get out of the van",
              "TickTock": "None",
              "Biggering": "true",
              "Smallanator": "false",
              "Chill Factor": 6,
              "Noodle Level": 0
            },
            "minted_at": "2021-06-13T16:59:58+00:00"
          },
          {
            "token_id": "85000016",
            "invocation": 16,
            "hash": "0x82bfa39a3d6e3d25d50d873ae393f4497c45b3384136e9cc33ac732ec9cb9df3",
            "owner_address": "0x7eb9693402e49a781ac616a0e5b939ba22bb43a6",
            "features": {
              "Fill": "Zap Grad",
              "Lines": 8,
              "Tiles": "8x8",
              "Format": "Middle",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Signal",
              "TickTock": "None",
              "Biggering": "true",
              "Smallanator": "true",
              "Chill Factor": 6,
              "Noodle Level": 120
            },
            "minted_at": "2021-06-13T16:59:58+00:00"
          },
          {
            "token_id": "85000017",
            "invocation": 17,
            "hash": "0xea39873cc288ea1fa23fc31232f6fb41a414016b1297bf8c924cb491e522b8d9",
            "owner_address": "0x49d62955a8eee8cb8575a8d0671ba1ee1fcc0906",
            "features": {
              "Fill": "Stripes",
              "Lines": 10,
              "Tiles": "8x8",
              "Format": "Normal",
              "Series": "Two",
              "Boosted": 2,
              "Palette": "Fallen Leaves",
              "TickTock": "None",
              "Biggering": "true",
              "Smallanator": "true",
              "Chill Factor": 4,
              "Noodle Level": 64
            },
            "minted_at": "2021-06-13T16:59:58+00:00"
          },
          {
            "token_id": "85000018",
            "invocation": 18,
            "hash": "0xb78b6ffe1426b2322d4470d923eee5395463d9cb6632cd6ef3508bd70ed9f669",
            "owner_address": "0xd9bb15ad632d9b254735e596c70711e27603e2d1",
            "features": {
              "Fill": "Single Grad",
              "Lines": 6,
              "Tiles": "8x8",
              "Format": "Normal",
              "Series": "Two",
              "Boosted": -2,
              "Palette": "Get in the van",
              "TickTock": "None",
              "Biggering": "false",
              "Smallanator": "true",
              "Chill Factor": 0,
              "Noodle Level": 76
            },
            "minted_at": "2021-06-13T16:59:58+00:00"
          },
          {
            "token_id": "85000019",
            "invocation": 19,
            "hash": "0x05d083361c052410b0d3bb7e51037e60997e76edf873b81eff63a3dbde8ce38e",
            "owner_address": "0x89bde316a5aa59d9995fc82b217308abae60257c",
            "features": {
              "Fill": "Zap Grad",
              "Lines": 9,
              "Tiles": "10x10",
              "Format": "Normal",
              "Series": "Two",
              "Boosted": 2,
              "Palette": "Overlook",
              "TickTock": "None",
              "Biggering": "true",
              "Smallanator": "false",
              "Chill Factor": 6,
              "Noodle Level": 0
            },
            "minted_at": "2021-06-13T16:59:58+00:00"
          },
          {
            "token_id": "85000020",
            "invocation": 20,
            "hash": "0x6f894e5b551faa2f13451403e11f84c359ef42be26ede4d5c3a0ea08b5e1cca6",
            "owner_address": "0x2c81cee7050c9d03295560851ffde123bdf9696a",
            "features": {
              "Fill": "Stripes",
              "Lines": 11,
              "Tiles": "7x7",
              "Format": "Normal",
              "Series": "Two",
              "Boosted": 1,
              "Palette": "Fruit Salad Chews",
              "TickTock": "None",
              "Biggering": "false",
              "Smallanator": "false",
              "Chill Factor": 0,
              "Noodle Level": 0
            },
            "minted_at": "2021-06-13T17:00:06+00:00"
          },
          {
            "token_id": "85000021",
            "invocation": 21,
            "hash": "0xd9e24648c83933c1f257c6fe792a812d4b02551820271a2229c9d02d2e049c25",
            "owner_address": "0xf969293ffb9a7a54c9e813fcae79c1de9846e2d5",
            "features": {
              "Fill": "Stripes",
              "Lines": 10,
              "Tiles": "8x8",
              "Format": "Bottom-up",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Frank-N-Furter",
              "TickTock": "None",
              "Biggering": "true",
              "Smallanator": "true",
              "Chill Factor": 4,
              "Noodle Level": 124
            },
            "minted_at": "2021-06-13T17:00:06+00:00"
          },
          {
            "token_id": "85000022",
            "invocation": 22,
            "hash": "0xbb0c468af384dc6c7a30978891b8cb8f58660a2d829a61742f9a5907990d5316",
            "owner_address": "0xa303f4b3d13e3effb4823d2bbb3c8bad9abac46c",
            "features": {
              "Fill": "Stripes",
              "Lines": 10,
              "Tiles": "6x6",
              "Format": "Outer",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Playful",
              "TickTock": "None",
              "Biggering": "false",
              "Smallanator": "true",
              "Chill Factor": 0,
              "Noodle Level": 64
            },
            "minted_at": "2021-06-13T17:00:06+00:00"
          },
          {
            "token_id": "85000023",
            "invocation": 23,
            "hash": "0x66caeffd031b15e34b873226d15d6b95f08aed71aabb37bd7dba0c4a8ab51dab",
            "owner_address": "0x203930c13aae69e3adadc4809e8af3377f646718",
            "features": {
              "Fill": "Stripes",
              "Lines": 8,
              "Tiles": "8x8",
              "Format": "Normal",
              "Series": "Two",
              "Boosted": -1,
              "Palette": "Indian Summer",
              "TickTock": "None",
              "Biggering": "true",
              "Smallanator": "true",
              "Chill Factor": 3,
              "Noodle Level": 68
            },
            "minted_at": "2021-06-13T17:00:06+00:00"
          },
          {
            "token_id": "85000024",
            "invocation": 24,
            "hash": "0xa9d30e2a215c5844f93cdd1b3faa612fa1d9a6833d24d932cb8a2e283bd8949b",
            "owner_address": "0xa8c18e2a80abdc6ca63088951ce943a618d3bef7",
            "features": {
              "Fill": "Flat",
              "Lines": 7,
              "Tiles": "10x10",
              "Format": "Middle",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Flatomatic",
              "TickTock": "None",
              "Biggering": "true",
              "Smallanator": "false",
              "Chill Factor": 12,
              "Noodle Level": 0
            },
            "minted_at": "2021-06-13T17:00:06+00:00"
          },
          {
            "token_id": "85000025",
            "invocation": 25,
            "hash": "0xe386e91ff398eab468bf70912cb1e89f5070eab4821cb0d9ec3ac05579712e0e",
            "owner_address": "0x7eb9693402e49a781ac616a0e5b939ba22bb43a6",
            "features": {
              "Fill": "Stripes",
              "Lines": 6,
              "Tiles": "10x10",
              "Format": "Normal",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Frank-N-Furter",
              "TickTock": "None",
              "Biggering": "true",
              "Smallanator": "true",
              "Chill Factor": 5,
              "Noodle Level": 96
            },
            "minted_at": "2021-06-13T17:00:06+00:00"
          },
          {
            "token_id": "85000026",
            "invocation": 26,
            "hash": "0x95fb5b5a04b6099f2e2f8e707c349e99505faa916b8454429be1243bb0c017b1",
            "owner_address": "0x3469d08eefe5546ce09806bb2c68e03d2ca526ce",
            "features": {
              "Fill": "Flat",
              "Lines": 4,
              "Tiles": "13x13",
              "Format": "Top-down",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Flatomatic",
              "TickTock": "None",
              "Biggering": "true",
              "Smallanator": "false",
              "Chill Factor": 29,
              "Noodle Level": 0
            },
            "minted_at": "2021-06-13T17:00:06+00:00"
          },
          {
            "token_id": "85000027",
            "invocation": 27,
            "hash": "0x5b516f5e038b675e4bd81f797695d6596a264fdc78a16fa12b3dc582e04ab591",
            "owner_address": "0xe553fe5b71a236a8d6b03cbddde8be48c5fc5402",
            "features": {
              "Fill": "Stripes",
              "Lines": 6,
              "Tiles": "13x13",
              "Format": "Normal",
              "Series": "Two",
              "Boosted": -1,
              "Palette": "Fruit Salad Chews",
              "TickTock": "None",
              "Biggering": "true",
              "Smallanator": "true",
              "Chill Factor": 10,
              "Noodle Level": 144
            },
            "minted_at": "2021-06-13T17:00:06+00:00"
          },
          {
            "token_id": "85000028",
            "invocation": 28,
            "hash": "0x879cff871acf5fa7602a897093f0b31acd2eeb16d73eb885059f53944477c0cc",
            "owner_address": "0xa8c18e2a80abdc6ca63088951ce943a618d3bef7",
            "features": {
              "Fill": "Flat",
              "Lines": 4,
              "Tiles": "10x10",
              "Format": "Outer",
              "Series": "Two",
              "Boosted": -1,
              "Palette": "Flatomatic",
              "TickTock": "None",
              "Biggering": "true",
              "Smallanator": "true",
              "Chill Factor": 12,
              "Noodle Level": 132
            },
            "minted_at": "2021-06-13T17:00:06+00:00"
          },
          {
            "token_id": "85000029",
            "invocation": 29,
            "hash": "0xdb5fd776211bb9ebfe8f9f744eca82cc37e6a0c05541723b8c244c5c76e47a05",
            "owner_address": "0xe03a5189dac8182085e4adf66281f679fff2291d",
            "features": {
              "Fill": "Flat",
              "Lines": 5,
              "Tiles": "10x10",
              "Format": "Outer",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Flatomatic",
              "TickTock": "None",
              "Biggering": "true",
              "Smallanator": "false",
              "Chill Factor": 14,
              "Noodle Level": 0
            },
            "minted_at": "2021-06-13T17:00:17+00:00"
          },
          {
            "token_id": "85000030",
            "invocation": 30,
            "hash": "0xbec34000a1781ee40871e992286d6ab38bdc3bc6ebcdf830b3b5afef8b76beba",
            "owner_address": "0x7eb9693402e49a781ac616a0e5b939ba22bb43a6",
            "features": {
              "Fill": "Flat",
              "Lines": 13,
              "Tiles": "6x6",
              "Format": "Middle",
              "Series": "Two",
              "Boosted": 2,
              "Palette": "Flatomatic",
              "TickTock": "Wipe",
              "Biggering": "false",
              "Smallanator": "false",
              "Chill Factor": 0,
              "Noodle Level": 0
            },
            "minted_at": "2021-06-13T17:00:17+00:00"
          },
          {
            "token_id": "85000031",
            "invocation": 31,
            "hash": "0xff9792fa00891f5aac25e4837f8f64ce12ce068f6a03da45a31c098ea034caca",
            "owner_address": "0xc40df87e16339f21fbb2e59fb38bf2a957a16ffd",
            "features": {
              "Fill": "Rainbow",
              "Lines": 9,
              "Tiles": "7x7",
              "Format": "Outer",
              "Series": "Two",
              "Boosted": -2,
              "Palette": "Indian Summer",
              "TickTock": "None",
              "Biggering": "false",
              "Smallanator": "false",
              "Chill Factor": 0,
              "Noodle Level": 0
            },
            "minted_at": "2021-06-13T17:00:17+00:00"
          },
          {
            "token_id": "85000032",
            "invocation": 32,
            "hash": "0xa18f56dff20115e040bb0c0b05cf5dcc98b1f8cbbc3f82fd24e1701cbde64fbc",
            "owner_address": "0x9eab4b2feed9483838d2e9b7c1ad407a18624df4",
            "features": {
              "Fill": "Zap Grad",
              "Lines": 8,
              "Tiles": "7x7",
              "Format": "Bottom-up",
              "Series": "Two",
              "Boosted": -2,
              "Palette": "Overlook",
              "TickTock": "None",
              "Biggering": "false",
              "Smallanator": "true",
              "Chill Factor": 0,
              "Noodle Level": 180
            },
            "minted_at": "2021-06-13T17:00:17+00:00"
          },
          {
            "token_id": "85000033",
            "invocation": 33,
            "hash": "0xbd0f44030ff3a62236af432028b0d0986c507a64d15aee298e5093b042e26de4",
            "owner_address": "0x7eb9693402e49a781ac616a0e5b939ba22bb43a6",
            "features": {
              "Fill": "Flat",
              "Lines": 9,
              "Tiles": "8x8",
              "Format": "Middle",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Flatomatic",
              "TickTock": "None",
              "Biggering": "true",
              "Smallanator": "false",
              "Chill Factor": 7,
              "Noodle Level": 0
            },
            "minted_at": "2021-06-13T17:00:47+00:00"
          },
          {
            "token_id": "85000034",
            "invocation": 34,
            "hash": "0xbdd80a7225f67927ee67213feadf79ea80fda84e9c55cf61088ef3840a71c2cc",
            "owner_address": "0xd6dd6961d3224958fcd306b76a991ab974ec1ebc",
            "features": {
              "Fill": "Stripes",
              "Lines": 11,
              "Tiles": "8x8",
              "Format": "Middle",
              "Series": "Two",
              "Boosted": 1,
              "Palette": "Fallen Leaves",
              "TickTock": "None",
              "Biggering": "true",
              "Smallanator": "false",
              "Chill Factor": 11,
              "Noodle Level": 0
            },
            "minted_at": "2021-06-13T17:00:47+00:00"
          },
          {
            "token_id": "85000035",
            "invocation": 35,
            "hash": "0x5a50dd09ccf301275720b23a42fc6d91dcf4650eb377cc7f7198369d3e7bddd4",
            "owner_address": "0x3b1bc5cce8ba91a59a0baea7a2ed17942f8f12e3",
            "features": {
              "Fill": "Stripes",
              "Lines": 8,
              "Tiles": "10x10",
              "Format": "Normal",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Playful",
              "TickTock": "None",
              "Biggering": "true",
              "Smallanator": "true",
              "Chill Factor": 3,
              "Noodle Level": 124
            },
            "minted_at": "2021-06-13T17:00:47+00:00"
          },
          {
            "token_id": "85000036",
            "invocation": 36,
            "hash": "0x25670504ec202ce4e07cda8dd68cae5103b65371f692414cd5df05f7c669e004",
            "owner_address": "0x207b3c1083a62e282d375a11f52730879cbfbbbb",
            "features": {
              "Fill": "Zap Grad",
              "Lines": 12,
              "Tiles": "4x4",
              "Format": "Normal",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Citrus Prom",
              "TickTock": "None",
              "Biggering": "false",
              "Smallanator": "true",
              "Chill Factor": 0,
              "Noodle Level": 8
            },
            "minted_at": "2021-06-13T17:00:47+00:00"
          },
          {
            "token_id": "85000037",
            "invocation": 37,
            "hash": "0x1aafecc0e35a4988264b7b358408d1f0222281c161bf864a71c05c7dbc9e4cea",
            "owner_address": "0x5316909738e83c293b2f8cb445a4ec5e9550bece",
            "features": {
              "Fill": "Stripes",
              "Lines": 9,
              "Tiles": "10x10",
              "Format": "Middle",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Matrix",
              "TickTock": "None",
              "Biggering": "true",
              "Smallanator": "false",
              "Chill Factor": 14,
              "Noodle Level": 0
            },
            "minted_at": "2021-06-13T17:00:47+00:00"
          },
          {
            "token_id": "85000038",
            "invocation": 38,
            "hash": "0x9e3acf28d4d75f1525192ca1bfdbe68aae5d8f072b185b923bdf047a452ee204",
            "owner_address": "0x207b3c1083a62e282d375a11f52730879cbfbbbb",
            "features": {
              "Fill": "Stripes",
              "Lines": 12,
              "Tiles": "5x5",
              "Format": "Normal",
              "Series": "Two",
              "Boosted": -1,
              "Palette": "Overlook",
              "TickTock": "None",
              "Biggering": "false",
              "Smallanator": "true",
              "Chill Factor": 0,
              "Noodle Level": 20
            },
            "minted_at": "2021-06-13T17:00:54+00:00"
          },
          {
            "token_id": "85000039",
            "invocation": 39,
            "hash": "0x323c6b3a80c042bc7ff1e828c5df1e79a5f5c4b1caa8edd40b009775aee6bb0b",
            "owner_address": "0x60ca911a33a85987e8979d8738e8f44317e39e0f",
            "features": {
              "Fill": "Stripes",
              "Lines": 10,
              "Tiles": "6x6",
              "Format": "Normal",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Wisteria",
              "TickTock": "None",
              "Biggering": "false",
              "Smallanator": "true",
              "Chill Factor": 0,
              "Noodle Level": 52
            },
            "minted_at": "2021-06-13T17:00:54+00:00"
          },
          {
            "token_id": "85000040",
            "invocation": 40,
            "hash": "0x290685a4bc5590fff073f900d7541972730e1b219378ec59326c00c3f16db3ce",
            "owner_address": "0x9eab4b2feed9483838d2e9b7c1ad407a18624df4",
            "features": {
              "Fill": "Zap Grad",
              "Lines": 10,
              "Tiles": "8x8",
              "Format": "Normal",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Get in the van",
              "TickTock": "None",
              "Biggering": "false",
              "Smallanator": "true",
              "Chill Factor": 0,
              "Noodle Level": 84
            },
            "minted_at": "2021-06-13T17:00:54+00:00"
          },
          {
            "token_id": "85000041",
            "invocation": 41,
            "hash": "0x7c54d43d9920422dad2116a55df72b9b0fedeb484529ffadd014a34f1ffe7bce",
            "owner_address": "0xf969293ffb9a7a54c9e813fcae79c1de9846e2d5",
            "features": {
              "Fill": "Stripes",
              "Lines": 10,
              "Tiles": "7x7",
              "Format": "Outer",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Fruit Salad Chews",
              "TickTock": "None",
              "Biggering": "false",
              "Smallanator": "true",
              "Chill Factor": 0,
              "Noodle Level": 88
            },
            "minted_at": "2021-06-13T17:00:54+00:00"
          },
          {
            "token_id": "85000042",
            "invocation": 42,
            "hash": "0x60287af73094c3a4bf35f8bfb8753067f6d0e5e0789abc6b44c4737d2d5161b4",
            "owner_address": "0x5e6b2d56bee063809e8023f5c1ba787adc6fbdde",
            "features": {
              "Fill": "Single Grad",
              "Lines": 6,
              "Tiles": "10x10",
              "Format": "Normal",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Frank-N-Furter",
              "TickTock": "None",
              "Biggering": "true",
              "Smallanator": "true",
              "Chill Factor": 6,
              "Noodle Level": 108
            },
            "minted_at": "2021-06-13T17:00:54+00:00"
          },
          {
            "token_id": "85000043",
            "invocation": 43,
            "hash": "0x6e1f80c469f7bec04471fcc0eef400bad902c1402b236e42785b3df3f85e16a3",
            "owner_address": "0xd26d6e324b40f4f0f533e3d6a781f6e602bc2549",
            "features": {
              "Fill": "Metallic",
              "Lines": 7,
              "Tiles": "9x9",
              "Format": "Outer",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Frank-N-Furter",
              "TickTock": "None",
              "Biggering": "true",
              "Smallanator": "false",
              "Chill Factor": 14,
              "Noodle Level": 0
            },
            "minted_at": "2021-06-13T17:00:54+00:00"
          },
          {
            "token_id": "85000044",
            "invocation": 44,
            "hash": "0x3b7fa59fa9b95924c103b2255cbe9fa1d77f2f80966a6a9163396b44acfb18e9",
            "owner_address": "0x4b6760682191de7e476b801b7ab42d8e8a5b041a",
            "features": {
              "Fill": "Flat",
              "Lines": 5,
              "Tiles": "10x10",
              "Format": "Outer",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Flatomatic",
              "TickTock": "None",
              "Biggering": "true",
              "Smallanator": "false",
              "Chill Factor": 15,
              "Noodle Level": 0
            },
            "minted_at": "2021-06-13T17:00:54+00:00"
          },
          {
            "token_id": "85000045",
            "invocation": 45,
            "hash": "0x7764af22e7e58452e80c6fed84e8dae230eb0064a380db59fee7847cbaccc02c",
            "owner_address": "0x6ad8fe4e495e9709be1a2cc8a04646078e6b1ab0",
            "features": {
              "Fill": "Flat",
              "Lines": 4,
              "Tiles": "11x11",
              "Format": "Outer",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Flatomatic",
              "TickTock": "None",
              "Biggering": "true",
              "Smallanator": "true",
              "Chill Factor": 14,
              "Noodle Level": 188
            },
            "minted_at": "2021-06-13T17:00:54+00:00"
          },
          {
            "token_id": "85000046",
            "invocation": 46,
            "hash": "0xbfdff86f8f8410556363123f9406a60dd6276bc014a36e374e833bd2846f1208",
            "owner_address": "0xd2ba592032a550b4ce5584a44db62744fa73210e",
            "features": {
              "Fill": "Flat",
              "Lines": 8,
              "Tiles": "10x10",
              "Format": "Middle",
              "Series": "Two",
              "Boosted": 1,
              "Palette": "Flatomatic",
              "TickTock": "None",
              "Biggering": "true",
              "Smallanator": "true",
              "Chill Factor": 10,
              "Noodle Level": 184
            },
            "minted_at": "2021-06-13T17:00:54+00:00"
          },
          {
            "token_id": "85000047",
            "invocation": 47,
            "hash": "0xfb7bf9d64c72327779ba973f9e562fdbeedd883f2301ad08278b65dee6b5b2ba",
            "owner_address": "0x268c0f22fc8325a5ebbde2ef9d3438d57550e8d8",
            "features": {
              "Fill": "Single Grad",
              "Lines": 7,
              "Tiles": "9x9",
              "Format": "Normal",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Overlook",
              "TickTock": "None",
              "Biggering": "false",
              "Smallanator": "false",
              "Chill Factor": 0,
              "Noodle Level": 0
            },
            "minted_at": "2021-06-13T17:00:57+00:00"
          },
          {
            "token_id": "85000048",
            "invocation": 48,
            "hash": "0x99ff0c2c4c53beafd1132ee698b6c687330b636d32e116be98c5c79acfa4f5f7",
            "owner_address": "0x2c348f40c50ea7cd12076c9193963ec5fc69f3ce",
            "features": {
              "Fill": "Flat",
              "Lines": 4,
              "Tiles": "11x11",
              "Format": "Bottom-up",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Flatomatic",
              "TickTock": "None",
              "Biggering": "true",
              "Smallanator": "true",
              "Chill Factor": 11,
              "Noodle Level": 224
            },
            "minted_at": "2021-06-13T17:00:57+00:00"
          },
          {
            "token_id": "85000049",
            "invocation": 49,
            "hash": "0x59ff6cfea8dd12b828b264dc304a547e470d35466d680b37d0c76c11397e5ec9",
            "owner_address": "0x464f6d584b8ef16e0206420d175e2a0694760d63",
            "features": {
              "Fill": "Zap Grad",
              "Lines": 6,
              "Tiles": "11x11",
              "Format": "Normal",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Monochrome",
              "TickTock": "None",
              "Biggering": "false",
              "Smallanator": "true",
              "Chill Factor": 0,
              "Noodle Level": 140
            },
            "minted_at": "2021-06-13T17:01:04+00:00"
          },
          {
            "token_id": "85000050",
            "invocation": 50,
            "hash": "0xe0a3fff92b8f3c367969ff61ff6ac9169c5c2f2da3dfd4c73e26f554eb33475f",
            "owner_address": "0xdbdb4649dfa2266fb3f38c737ff0d7ed05b2feae",
            "features": {
              "Fill": "Stripes",
              "Lines": 12,
              "Tiles": "6x6",
              "Format": "Normal",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Signal",
              "TickTock": "Chaser4",
              "Biggering": "false",
              "Smallanator": "false",
              "Chill Factor": 0,
              "Noodle Level": 0
            },
            "minted_at": "2021-06-13T17:01:04+00:00"
          },
          {
            "token_id": "85000051",
            "invocation": 51,
            "hash": "0xd9ba456ade0705eb974a5ffb8782bf04a806f9e675561822e4cfcbdfcbb5304d",
            "owner_address": "0x5445092634581774a680e4dedd4ec9bfc35a26fd",
            "features": {
              "Fill": "Flat",
              "Lines": 8,
              "Tiles": "7x7",
              "Format": "Middle",
              "Series": "Two",
              "Boosted": -2,
              "Palette": "Flatomatic",
              "TickTock": "None",
              "Biggering": "false",
              "Smallanator": "true",
              "Chill Factor": 0,
              "Noodle Level": 116
            },
            "minted_at": "2021-06-13T17:01:04+00:00"
          },
          {
            "token_id": "85000052",
            "invocation": 52,
            "hash": "0x6178a234178180ef145e3575321409099a9be08507410f774906e04295ae3052",
            "owner_address": "0xa6523f5c5121b848006815a7ef7f2d959ae681f3",
            "features": {
              "Fill": "Rainbow",
              "Lines": 12,
              "Tiles": "6x6",
              "Format": "Outer",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Macha Strawberry",
              "TickTock": "None",
              "Biggering": "false",
              "Smallanator": "true",
              "Chill Factor": 0,
              "Noodle Level": 60
            },
            "minted_at": "2021-06-13T17:01:04+00:00"
          },
          {
            "token_id": "85000053",
            "invocation": 53,
            "hash": "0x5f773ddf18e73af97e68389210acf91e547b5c9f7a25dea9699173cf3f2bcb21",
            "owner_address": "0x6c3e007377effd74afe237ce3b0aeef969b63c91",
            "features": {
              "Fill": "Stripes",
              "Lines": 9,
              "Tiles": "8x8",
              "Format": "Normal",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Indian Summer",
              "TickTock": "Wipe",
              "Biggering": "false",
              "Smallanator": "false",
              "Chill Factor": 0,
              "Noodle Level": 0
            },
            "minted_at": "2021-06-13T17:01:04+00:00"
          },
          {
            "token_id": "85000054",
            "invocation": 54,
            "hash": "0x5995b8904807f582fcf2d96607e49381d7234e5c4e6806d3d1b228443b992e7d",
            "owner_address": "0x7eb9693402e49a781ac616a0e5b939ba22bb43a6",
            "features": {
              "Fill": "Stripes",
              "Lines": 12,
              "Tiles": "6x6",
              "Format": "Middle",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Get in the van",
              "TickTock": "None",
              "Biggering": "false",
              "Smallanator": "true",
              "Chill Factor": 0,
              "Noodle Level": 76
            },
            "minted_at": "2021-06-13T17:01:04+00:00"
          },
          {
            "token_id": "85000055",
            "invocation": 55,
            "hash": "0xa8277cd8c9c72bfa0e3e0fe92e0c2d2b1f0dca4a9d16a4a388d222d4590d8d67",
            "owner_address": "0x566f193d80c76a324cf5e521d62657f4c4d4ccc5",
            "features": {
              "Fill": "Stripes",
              "Lines": 10,
              "Tiles": "8x8",
              "Format": "Normal",
              "Series": "Two",
              "Boosted": -1,
              "Palette": "Get in the van",
              "TickTock": "None",
              "Biggering": "true",
              "Smallanator": "true",
              "Chill Factor": 3,
              "Noodle Level": 52
            },
            "minted_at": "2021-06-13T17:01:04+00:00"
          },
          {
            "token_id": "85000056",
            "invocation": 56,
            "hash": "0x3fea20e5871dbd932ece59b4f40c00a1e4dbfa31bed90c78c534605c0787d386",
            "owner_address": "0xd136f36d780df4e2c629839f5b68ffb4dd3a1cde",
            "features": {
              "Fill": "Stripes",
              "Lines": 10,
              "Tiles": "5x5",
              "Format": "Normal",
              "Series": "Two",
              "Boosted": -1,
              "Palette": "Overlook",
              "TickTock": "Chaser1",
              "Biggering": "false",
              "Smallanator": "false",
              "Chill Factor": 0,
              "Noodle Level": 0
            },
            "minted_at": "2021-06-13T17:01:04+00:00"
          },
          {
            "token_id": "85000057",
            "invocation": 57,
            "hash": "0x4f0da9361a2e528e53d5e4b048000ccfdfd4ad3d70b317ff187461f1b16c9c81",
            "owner_address": "0xe03a5189dac8182085e4adf66281f679fff2291d",
            "features": {
              "Fill": "Stripes",
              "Lines": 10,
              "Tiles": "7x7",
              "Format": "Middle",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Signal",
              "TickTock": "None",
              "Biggering": "false",
              "Smallanator": "true",
              "Chill Factor": 0,
              "Noodle Level": 104
            },
            "minted_at": "2021-06-13T17:01:16+00:00"
          },
          {
            "token_id": "85000058",
            "invocation": 58,
            "hash": "0x0f6e5c441283fb18188d311d5406b0c408e22b4bc54b07226f54c9ff7d410d7b",
            "owner_address": "0x9c815f1bb7ac2d54e473b58a15345c9dc2630ffa",
            "features": {
              "Fill": "Flat",
              "Lines": 10,
              "Tiles": "8x8",
              "Format": "Middle",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Flatomatic",
              "TickTock": "None",
              "Biggering": "false",
              "Smallanator": "true",
              "Chill Factor": 0,
              "Noodle Level": 148
            },
            "minted_at": "2021-06-13T17:01:16+00:00"
          },
          {
            "token_id": "85000059",
            "invocation": 59,
            "hash": "0xc8e32e281089749d320d1c0ce46690a460c33d30b4f0f44ecfa485f21e3b5a77",
            "owner_address": "0x3fae65391149e987298b87ba8f1578fb5bd3fe36",
            "features": {
              "Fill": "Stripes",
              "Lines": 14,
              "Tiles": "5x5",
              "Format": "Normal",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Signal",
              "TickTock": "None",
              "Biggering": "false",
              "Smallanator": "false",
              "Chill Factor": 0,
              "Noodle Level": 0
            },
            "minted_at": "2021-06-13T17:01:16+00:00"
          },
          {
            "token_id": "85000060",
            "invocation": 60,
            "hash": "0x4be0ccdfb11a0ad6dae80892e82b4667ba7dbe74eab5d1abd7948165b6b997df",
            "owner_address": "0x7fe822ea7bdd68199d768a45bd1cd048e94d7f99",
            "features": {
              "Fill": "Stripes",
              "Lines": 11,
              "Tiles": "5x5",
              "Format": "Middle",
              "Series": "Two",
              "Boosted": 2,
              "Palette": "Matrix",
              "TickTock": "None",
              "Biggering": "false",
              "Smallanator": "false",
              "Chill Factor": 0,
              "Noodle Level": 0
            },
            "minted_at": "2021-06-13T17:01:16+00:00"
          },
          {
            "token_id": "85000061",
            "invocation": 61,
            "hash": "0x4ee4ab2d0cf8e09bd495e6580cbd7f96f7b75f5e43425a5ff8527abd89bece27",
            "owner_address": "0x43b3a12cdc49003c9537d0ab92800a97c0a8959e",
            "features": {
              "Fill": "Flat",
              "Lines": 8,
              "Tiles": "9x9",
              "Format": "Top-down",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Flatomatic",
              "TickTock": "None",
              "Biggering": "true",
              "Smallanator": "true",
              "Chill Factor": 11,
              "Noodle Level": 104
            },
            "minted_at": "2021-06-13T17:01:16+00:00"
          },
          {
            "token_id": "85000062",
            "invocation": 62,
            "hash": "0xaf8d50cd697bca45c24e2951881c4df28e12cd0b7a473c1cafc6ebc19633abd0",
            "owner_address": "0x29b2f895343cadfb3f5101bef6484b1f01c83dc9",
            "features": {
              "Fill": "Single Grad",
              "Lines": 7,
              "Tiles": "9x9",
              "Format": "Middle",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Get in the van",
              "TickTock": "None",
              "Biggering": "true",
              "Smallanator": "false",
              "Chill Factor": 14,
              "Noodle Level": 0
            },
            "minted_at": "2021-06-13T17:01:16+00:00"
          },
          {
            "token_id": "85000063",
            "invocation": 63,
            "hash": "0x21455a5f2112df1f1808e99b944d7cede2220f0967cbe13f23a2c27ad687f248",
            "owner_address": "0x50c946cb9757d6de490099c0ec185a0dfe29974b",
            "features": {
              "Fill": "Zap Grad",
              "Lines": 14,
              "Tiles": "5x5",
              "Format": "Outer",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Get out of the van",
              "TickTock": "None",
              "Biggering": "false",
              "Smallanator": "true",
              "Chill Factor": 0,
              "Noodle Level": 48
            },
            "minted_at": "2021-06-13T17:01:16+00:00"
          },
          {
            "token_id": "85000064",
            "invocation": 64,
            "hash": "0xc63c1672e21caa45e1cf2fda3e665f661b97b629769ff8a54a727de05c5f9132",
            "owner_address": "0x6782db7603b861471c2a2822168fe34a683b190d",
            "features": {
              "Fill": "Rainbow",
              "Lines": 13,
              "Tiles": "5x5",
              "Format": "Outer",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Citrus Prom",
              "TickTock": "None",
              "Biggering": "false",
              "Smallanator": "false",
              "Chill Factor": 0,
              "Noodle Level": 0
            },
            "minted_at": "2021-06-13T17:01:16+00:00"
          },
          {
            "token_id": "85000065",
            "invocation": 65,
            "hash": "0xa79c735da6d300c4b523488abd9de5fba0047e96cef73faa018e8e2de9424943",
            "owner_address": "0xf969293ffb9a7a54c9e813fcae79c1de9846e2d5",
            "features": {
              "Fill": "Stripes",
              "Lines": 11,
              "Tiles": "6x6",
              "Format": "Normal",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Overlook",
              "TickTock": "Chaser4",
              "Biggering": "false",
              "Smallanator": "false",
              "Chill Factor": 0,
              "Noodle Level": 0
            },
            "minted_at": "2021-06-13T17:01:16+00:00"
          },
          {
            "token_id": "85000066",
            "invocation": 66,
            "hash": "0x7a06de0ea782323729f0904cd7653c58e5be3b8f9a8f6094b270630500559935",
            "owner_address": "0x9c815f1bb7ac2d54e473b58a15345c9dc2630ffa",
            "features": {
              "Fill": "Stripes",
              "Lines": 10,
              "Tiles": "8x8",
              "Format": "Outer",
              "Series": "Two",
              "Boosted": 2,
              "Palette": "Wisteria",
              "TickTock": "None",
              "Biggering": "true",
              "Smallanator": "false",
              "Chill Factor": 12,
              "Noodle Level": 0
            },
            "minted_at": "2021-06-13T17:01:16+00:00"
          },
          {
            "token_id": "85000067",
            "invocation": 67,
            "hash": "0x9005432e31aefe871cdc3ff8e6f6e38bb27e5cc4b1ab125cc075e7b1a57a82df",
            "owner_address": "0x2d20653c0c4e736f653643040312780edbad54f2",
            "features": {
              "Fill": "Rainbow",
              "Lines": 12,
              "Tiles": "6x6",
              "Format": "Middle",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Citrus Prom",
              "TickTock": "None",
              "Biggering": "false",
              "Smallanator": "true",
              "Chill Factor": 0,
              "Noodle Level": 80
            },
            "minted_at": "2021-06-13T17:01:28+00:00"
          },
          {
            "token_id": "85000068",
            "invocation": 68,
            "hash": "0xcbd1efcc010ffe595948837ab9ee8431c076974c8d2bb840248305727dc6c32f",
            "owner_address": "0x99c63b3f73d8cf8a56a4621c74d0ac5fda357f8a",
            "features": {
              "Fill": "Flat",
              "Lines": 7,
              "Tiles": "9x9",
              "Format": "Bottom-up",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Flatomatic",
              "TickTock": "None",
              "Biggering": "true",
              "Smallanator": "false",
              "Chill Factor": 11,
              "Noodle Level": 0
            },
            "minted_at": "2021-06-13T17:01:28+00:00"
          },
          {
            "token_id": "85000069",
            "invocation": 69,
            "hash": "0x4a020ae3ddbe200efb35b98638b05b0b3af09ac35a045ce43f5de5499951789d",
            "owner_address": "0x43b3a12cdc49003c9537d0ab92800a97c0a8959e",
            "features": {
              "Fill": "Flat",
              "Lines": 10,
              "Tiles": "8x8",
              "Format": "Bottom-up",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Flatomatic",
              "TickTock": "None",
              "Biggering": "true",
              "Smallanator": "true",
              "Chill Factor": 4,
              "Noodle Level": 108
            },
            "minted_at": "2021-06-13T17:01:28+00:00"
          },
          {
            "token_id": "85000070",
            "invocation": 70,
            "hash": "0x25c2629b18d8f583708bf1cd3ae0ebb7683c876b822196e12fb12da6fd7b42db",
            "owner_address": "0x968bc51de9ba389a4fe99f66aeb004b5902bbe06",
            "features": {
              "Fill": "Stripes",
              "Lines": 10,
              "Tiles": "7x7",
              "Format": "Normal",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Fruit Salad Chews",
              "TickTock": "None",
              "Biggering": "false",
              "Smallanator": "true",
              "Chill Factor": 0,
              "Noodle Level": 72
            },
            "minted_at": "2021-06-13T17:01:28+00:00"
          },
          {
            "token_id": "85000071",
            "invocation": 71,
            "hash": "0x376f7f20016adbd394ee8b069c2ec2c1fdefdfdcc346b4a568aaea760e443793",
            "owner_address": "0xe2c77765bf2c3b790b9524fc808a0b807a210138",
            "features": {
              "Fill": "Flat",
              "Lines": 2,
              "Tiles": "11x11",
              "Format": "Top-down",
              "Series": "Two",
              "Boosted": -1,
              "Palette": "Flatomatic",
              "TickTock": "None",
              "Biggering": "true",
              "Smallanator": "true",
              "Chill Factor": 17,
              "Noodle Level": 148
            },
            "minted_at": "2021-06-13T17:01:28+00:00"
          },
          {
            "token_id": "85000072",
            "invocation": 72,
            "hash": "0x19b3678d139a34c246454f46502e2868c8b6c618cf53f45d2cac47048580ff42",
            "owner_address": "0x66f832bd2c82fc78a3843e3bb82260e59a1fbfd5",
            "features": {
              "Fill": "Stripes",
              "Lines": 10,
              "Tiles": "7x7",
              "Format": "Normal",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Wisteria",
              "TickTock": "None",
              "Biggering": "false",
              "Smallanator": "true",
              "Chill Factor": 0,
              "Noodle Level": 60
            },
            "minted_at": "2021-06-13T17:01:28+00:00"
          },
          {
            "token_id": "85000073",
            "invocation": 73,
            "hash": "0x18d8b8f24916cf034052ef8f0d3306b2bbe23d6bafe5f79593db8340c0fd62f9",
            "owner_address": "0xf969293ffb9a7a54c9e813fcae79c1de9846e2d5",
            "features": {
              "Fill": "Zap Grad",
              "Lines": 11,
              "Tiles": "7x7",
              "Format": "Normal",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Get out of the van",
              "TickTock": "None",
              "Biggering": "false",
              "Smallanator": "false",
              "Chill Factor": 0,
              "Noodle Level": 0
            },
            "minted_at": "2021-06-13T17:01:45+00:00"
          },
          {
            "token_id": "85000074",
            "invocation": 74,
            "hash": "0x066eb7d5ab119674be337bf0410f60847619aa7669b634281eb960f8c92c4a3a",
            "owner_address": "0xd24a2f1feae9d9af52fd7e0f85f20190e85a1fc1",
            "features": {
              "Fill": "Stripes",
              "Lines": 6,
              "Tiles": "9x9",
              "Format": "Outer",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Overlook",
              "TickTock": "None",
              "Biggering": "true",
              "Smallanator": "true",
              "Chill Factor": 7,
              "Noodle Level": 128
            },
            "minted_at": "2021-06-13T17:01:45+00:00"
          },
          {
            "token_id": "85000075",
            "invocation": 75,
            "hash": "0xd680462776ecdf9609325d09727dabbebdb511fd05ad0bfadc09a4323d472e30",
            "owner_address": "0xecba5f51925e6ccec26da38dcd7d5305f6bdfbcb",
            "features": {
              "Fill": "Zap Grad",
              "Lines": 10,
              "Tiles": "8x8",
              "Format": "Outer",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Fruit Salad Chews",
              "TickTock": "None",
              "Biggering": "true",
              "Smallanator": "false",
              "Chill Factor": 11,
              "Noodle Level": 0
            },
            "minted_at": "2021-06-13T17:01:45+00:00"
          },
          {
            "token_id": "85000076",
            "invocation": 76,
            "hash": "0x76fb131a08b5506457c995f457b64ee1177df3818604b91b4d5eb3ca08570fba",
            "owner_address": "0x6301add4fb128de9778b8651a2a9278b86761423",
            "features": {
              "Fill": "Flat",
              "Lines": 5,
              "Tiles": "11x11",
              "Format": "Bottom-up",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Flatomatic",
              "TickTock": "None",
              "Biggering": "true",
              "Smallanator": "false",
              "Chill Factor": 16,
              "Noodle Level": 0
            },
            "minted_at": "2021-06-13T17:01:45+00:00"
          },
          {
            "token_id": "85000077",
            "invocation": 77,
            "hash": "0x6ccc3d860cc089fdc5d5520feb5d8dcf4956f647994835748523787083c2086e",
            "owner_address": "0x74737325789e0485dd0f4c5c4a097fbc7b02c8c6",
            "features": {
              "Fill": "Single Grad",
              "Lines": 6,
              "Tiles": "13x13",
              "Format": "Normal",
              "Series": "Two",
              "Boosted": 1,
              "Palette": "Get in the van",
              "TickTock": "None",
              "Biggering": "true",
              "Smallanator": "false",
              "Chill Factor": 6,
              "Noodle Level": 0
            },
            "minted_at": "2021-06-13T17:01:45+00:00"
          },
          {
            "token_id": "85000078",
            "invocation": 78,
            "hash": "0xe76d54c9891b6129e6b091b043bc4c154f9ab18acad83a392f7c270eed5322c0",
            "owner_address": "0x59ff2f4c87142d0686a02b7ddeb3316c3e9cdd26",
            "features": {
              "Fill": "Stripes",
              "Lines": 10,
              "Tiles": "7x7",
              "Format": "Normal",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Overlook",
              "TickTock": "Chaser4",
              "Biggering": "false",
              "Smallanator": "false",
              "Chill Factor": 0,
              "Noodle Level": 0
            },
            "minted_at": "2021-06-13T17:01:45+00:00"
          },
          {
            "token_id": "85000079",
            "invocation": 79,
            "hash": "0x706e3c9bcf64cc9b80829ba22b9324b5b4bdc5d7036c11b09f8174ae0cfba891",
            "owner_address": "0xf2cd7d1f9f49e472534d1d8c46b0b56f66463bf9",
            "features": {
              "Fill": "Flat",
              "Lines": 3,
              "Tiles": "13x13",
              "Format": "Middle",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Flatomatic",
              "TickTock": "None",
              "Biggering": "true",
              "Smallanator": "false",
              "Chill Factor": 25,
              "Noodle Level": 0
            },
            "minted_at": "2021-06-13T17:01:45+00:00"
          },
          {
            "token_id": "85000080",
            "invocation": 80,
            "hash": "0x4740ae85ebf474537907e7cf996cc008895fd2b8d7f512a6c47d3167a6480f09",
            "owner_address": "0x59ff2f4c87142d0686a02b7ddeb3316c3e9cdd26",
            "features": {
              "Fill": "Stripes",
              "Lines": 7,
              "Tiles": "10x10",
              "Format": "Bottom-up",
              "Series": "Two",
              "Boosted": 1,
              "Palette": "Signal",
              "TickTock": "None",
              "Biggering": "true",
              "Smallanator": "false",
              "Chill Factor": 16,
              "Noodle Level": 0
            },
            "minted_at": "2021-06-13T17:02:02+00:00"
          },
          {
            "token_id": "85000081",
            "invocation": 81,
            "hash": "0x791ebf7b41cfef9ceae3f04ee02a63001058868bc9019befe10c8765c4bb0678",
            "owner_address": "0x5f1c528dff93643d004d9e0b20b25ceb2c596833",
            "features": {
              "Fill": "Rainbow",
              "Lines": 13,
              "Tiles": "5x5",
              "Format": "Top-down",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Matrix",
              "TickTock": "None",
              "Biggering": "false",
              "Smallanator": "false",
              "Chill Factor": 0,
              "Noodle Level": 0
            },
            "minted_at": "2021-06-13T17:02:02+00:00"
          },
          {
            "token_id": "85000082",
            "invocation": 82,
            "hash": "0x87af7d0e600700c6265360bdac3afed74081ed8829c93eebed8895865995966b",
            "owner_address": "0x1b2965dc3b1697dd10b7126ec7393d79cda2cf91",
            "features": {
              "Fill": "Stripes",
              "Lines": 8,
              "Tiles": "8x8",
              "Format": "Middle",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Get out of the van",
              "TickTock": "None",
              "Biggering": "true",
              "Smallanator": "true",
              "Chill Factor": 6,
              "Noodle Level": 116
            },
            "minted_at": "2021-06-13T17:02:02+00:00"
          },
          {
            "token_id": "85000083",
            "invocation": 83,
            "hash": "0x66569578e0ae8f030418656031fdca08a6011df17b770377fc0f005d124d1066",
            "owner_address": "0x68a7ac13477aad590982293feeeb786a00276cf2",
            "features": {
              "Fill": "Flat",
              "Lines": 4,
              "Tiles": "13x13",
              "Format": "Outer",
              "Series": "Two",
              "Boosted": -1,
              "Palette": "Flatomatic",
              "TickTock": "None",
              "Biggering": "false",
              "Smallanator": "true",
              "Chill Factor": 0,
              "Noodle Level": 352
            },
            "minted_at": "2021-06-13T17:02:02+00:00"
          },
          {
            "token_id": "85000084",
            "invocation": 84,
            "hash": "0x4b0739a437a3a936a8be9014fe737b308e95ab711a3cbede6fb825d01384a48e",
            "owner_address": "0x1b2965dc3b1697dd10b7126ec7393d79cda2cf91",
            "features": {
              "Fill": "Rainbow",
              "Lines": 12,
              "Tiles": "6x6",
              "Format": "Normal",
              "Series": "Two",
              "Boosted": -1,
              "Palette": "Indian Summer",
              "TickTock": "None",
              "Biggering": "false",
              "Smallanator": "true",
              "Chill Factor": 0,
              "Noodle Level": 52
            },
            "minted_at": "2021-06-13T17:02:07+00:00"
          },
          {
            "token_id": "85000085",
            "invocation": 85,
            "hash": "0x1227d1bdff8b15d6c10396bec12717abd998d9013a17b498a3cd187efb54e51a",
            "owner_address": "0xf969293ffb9a7a54c9e813fcae79c1de9846e2d5",
            "features": {
              "Fill": "Stripes",
              "Lines": 11,
              "Tiles": "5x5",
              "Format": "Normal",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Frank-N-Furter",
              "TickTock": "Chess",
              "Biggering": "false",
              "Smallanator": "false",
              "Chill Factor": 0,
              "Noodle Level": 0
            },
            "minted_at": "2021-06-13T17:02:07+00:00"
          },
          {
            "token_id": "85000086",
            "invocation": 86,
            "hash": "0xa1f39e9f1a631fa80c8c0343aafbb9cbb82e7f25f5c7c5ac525b58a2eec6e125",
            "owner_address": "0x6301add4fb128de9778b8651a2a9278b86761423",
            "features": {
              "Fill": "Stripes",
              "Lines": 8,
              "Tiles": "7x7",
              "Format": "Normal",
              "Series": "Two",
              "Boosted": -2,
              "Palette": "Overlook",
              "TickTock": "Chaser4",
              "Biggering": "false",
              "Smallanator": "false",
              "Chill Factor": 0,
              "Noodle Level": 0
            },
            "minted_at": "2021-06-13T17:02:07+00:00"
          },
          {
            "token_id": "85000087",
            "invocation": 87,
            "hash": "0x5e20c7c9d944faf8b09986a5fd41a26e582b8a01b7de566fe318314cd8baebe2",
            "owner_address": "0xf7d4cc70520404126ef1eabfe227d8ab8ec22f9f",
            "features": {
              "Fill": "Zap Grad",
              "Lines": 14,
              "Tiles": "5x5",
              "Format": "Normal",
              "Series": "Two",
              "Boosted": 1,
              "Palette": "Playful",
              "TickTock": "None",
              "Biggering": "false",
              "Smallanator": "true",
              "Chill Factor": 0,
              "Noodle Level": 36
            },
            "minted_at": "2021-06-13T17:02:07+00:00"
          },
          {
            "token_id": "85000088",
            "invocation": 88,
            "hash": "0x6dbd939eb4dd4f6f964fc9b31079475cc3b1234730be1db39c04089ea6758609",
            "owner_address": "0xae1ebee3e66dbdf20833ffa828a31f204e9116cd",
            "features": {
              "Fill": "Flat",
              "Lines": 13,
              "Tiles": "5x5",
              "Format": "Top-down",
              "Series": "Two",
              "Boosted": -1,
              "Palette": "Flatomatic",
              "TickTock": "Chaser4",
              "Biggering": "false",
              "Smallanator": "false",
              "Chill Factor": 0,
              "Noodle Level": 0
            },
            "minted_at": "2021-06-13T17:02:07+00:00"
          },
          {
            "token_id": "85000089",
            "invocation": 89,
            "hash": "0xf0ba99a86f10e5dca7c092d879cfcfbc6c7eb6cc2a20932ef4a1d2e131124d49",
            "owner_address": "0xc22fc546bc557e9994f23a5c2ca8c1e45ef0291f",
            "features": {
              "Fill": "Flat",
              "Lines": 5,
              "Tiles": "9x9",
              "Format": "Top-down",
              "Series": "Two",
              "Boosted": -1,
              "Palette": "Flatomatic",
              "TickTock": "None",
              "Biggering": "true",
              "Smallanator": "false",
              "Chill Factor": 13,
              "Noodle Level": 0
            },
            "minted_at": "2021-06-13T17:02:07+00:00"
          },
          {
            "token_id": "85000090",
            "invocation": 90,
            "hash": "0x033fbf27f95c31644ef3da3745efeb3e767d5c1885875e731aab477cb492c292",
            "owner_address": "0x9c815f1bb7ac2d54e473b58a15345c9dc2630ffa",
            "features": {
              "Fill": "Flat",
              "Lines": 10,
              "Tiles": "6x6",
              "Format": "Outer",
              "Series": "Two",
              "Boosted": 1,
              "Palette": "Flatomatic",
              "TickTock": "None",
              "Biggering": "false",
              "Smallanator": "true",
              "Chill Factor": 0,
              "Noodle Level": 68
            },
            "minted_at": "2021-06-13T17:02:07+00:00"
          },
          {
            "token_id": "85000091",
            "invocation": 91,
            "hash": "0xbae977a67e2f04e23fadd9f0490c3bf0e30196361f1f8f31cd4912314484bf5b",
            "owner_address": "0x60ca911a33a85987e8979d8738e8f44317e39e0f",
            "features": {
              "Fill": "Flat",
              "Lines": 13,
              "Tiles": "5x5",
              "Format": "Outer",
              "Series": "Two",
              "Boosted": 1,
              "Palette": "Flatomatic",
              "TickTock": "Chess",
              "Biggering": "false",
              "Smallanator": "false",
              "Chill Factor": 0,
              "Noodle Level": 0
            },
            "minted_at": "2021-06-13T17:02:07+00:00"
          },
          {
            "token_id": "85000092",
            "invocation": 92,
            "hash": "0x5ba532257d53cd72711e8e29a95b0721b152e56726ae198f5756466a0236792b",
            "owner_address": "0x91364516d3cad16e1666261dbdbb39c881dbe9ee",
            "features": {
              "Fill": "Rainbow",
              "Lines": 12,
              "Tiles": "6x6",
              "Format": "Normal",
              "Series": "Two",
              "Boosted": -1,
              "Palette": "Get out of the van",
              "TickTock": "None",
              "Biggering": "false",
              "Smallanator": "true",
              "Chill Factor": 0,
              "Noodle Level": 48
            },
            "minted_at": "2021-06-13T17:02:07+00:00"
          },
          {
            "token_id": "85000093",
            "invocation": 93,
            "hash": "0x26368a9960dfd6712e33a5092e397d6ec11af031907732c1b414100781f4e9bd",
            "owner_address": "0xf969293ffb9a7a54c9e813fcae79c1de9846e2d5",
            "features": {
              "Fill": "Stripes",
              "Lines": 10,
              "Tiles": "7x7",
              "Format": "Outer",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Indian Summer",
              "TickTock": "None",
              "Biggering": "false",
              "Smallanator": "true",
              "Chill Factor": 0,
              "Noodle Level": 100
            },
            "minted_at": "2021-06-13T17:02:29+00:00"
          },
          {
            "token_id": "85000094",
            "invocation": 94,
            "hash": "0xe800c2277a46ce76286b9e27a348fb024624590006d0932a8afd67e4e7216a6e",
            "owner_address": "0x5a77b2d05afb67eacd8f9c7e98692dd1e2883cb3",
            "features": {
              "Fill": "Rainbow",
              "Lines": 9,
              "Tiles": "8x8",
              "Format": "Normal",
              "Series": "Two",
              "Boosted": 1,
              "Palette": "Signal",
              "TickTock": "None",
              "Biggering": "true",
              "Smallanator": "false",
              "Chill Factor": 4,
              "Noodle Level": 0
            },
            "minted_at": "2021-06-13T17:02:29+00:00"
          },
          {
            "token_id": "85000095",
            "invocation": 95,
            "hash": "0x71563cfea789887ec0c3f0d8192657fb0f7f79411a2cb643d04c0f91109d4174",
            "owner_address": "0x40b767d119dbc81547cc13c6c55b6ed40a6506f1",
            "features": {
              "Fill": "Stripes",
              "Lines": 10,
              "Tiles": "6x6",
              "Format": "Top-down",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Citrus Prom",
              "TickTock": "None",
              "Biggering": "false",
              "Smallanator": "true",
              "Chill Factor": 0,
              "Noodle Level": 128
            },
            "minted_at": "2021-06-13T17:02:29+00:00"
          },
          {
            "token_id": "85000096",
            "invocation": 96,
            "hash": "0x2dd7490dff9867ef72401c041b0fb13d14edb19a1a7eeb4be2131cb4a5d74a6b",
            "owner_address": "0x4b6760682191de7e476b801b7ab42d8e8a5b041a",
            "features": {
              "Fill": "Flat",
              "Lines": 4,
              "Tiles": "12x12",
              "Format": "Bottom-up",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Flatomatic",
              "TickTock": "None",
              "Biggering": "true",
              "Smallanator": "false",
              "Chill Factor": 20,
              "Noodle Level": 0
            },
            "minted_at": "2021-06-13T17:02:29+00:00"
          },
          {
            "token_id": "85000097",
            "invocation": 97,
            "hash": "0xdf699e782b778e9a58ac9a8117fc2a1e18fee44ac23fd9955ac987fa61710cfa",
            "owner_address": "0x1f0c9ac7439d28dadc8f638df5d50f5afb11675e",
            "features": {
              "Fill": "Stripes",
              "Lines": 9,
              "Tiles": "10x10",
              "Format": "Middle",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Signal",
              "TickTock": "None",
              "Biggering": "true",
              "Smallanator": "false",
              "Chill Factor": 13,
              "Noodle Level": 0
            },
            "minted_at": "2021-06-13T17:02:29+00:00"
          },
          {
            "token_id": "85000098",
            "invocation": 98,
            "hash": "0x6f93e0385fa5a6b3934b487b83da22bde00fde36b57df9a58103d25d051d6f2a",
            "owner_address": "0xb86480be80064e9adda8410eb5538bbc23aab7c8",
            "features": {
              "Fill": "Rainbow",
              "Lines": 9,
              "Tiles": "10x10",
              "Format": "Normal",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Get in the van",
              "TickTock": "None",
              "Biggering": "true",
              "Smallanator": "false",
              "Chill Factor": 7,
              "Noodle Level": 0
            },
            "minted_at": "2021-06-13T17:02:29+00:00"
          },
          {
            "token_id": "85000099",
            "invocation": 99,
            "hash": "0x1bf265a6f79cf427d030144a19714b2699c100032e157c9d7af0a1f0f2a8be76",
            "owner_address": "0x1b052edc4df735f0a5e62c1335c94667e7fdc55e",
            "features": {
              "Fill": "Rainbow",
              "Lines": 8,
              "Tiles": "8x8",
              "Format": "Normal",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Fruit Salad Chews",
              "TickTock": "None",
              "Biggering": "false",
              "Smallanator": "true",
              "Chill Factor": 0,
              "Noodle Level": 76
            },
            "minted_at": "2021-06-13T17:02:29+00:00"
          },
          {
            "token_id": "85000100",
            "invocation": 100,
            "hash": "0x14473c0c09c452287a2a10b48a9530b727bd5069c4c093233ec0a938e130308b",
            "owner_address": "0xa4711c27924a900625bda3c63dc1eb86b44c48a6",
            "features": {
              "Fill": "Stripes",
              "Lines": 10,
              "Tiles": "7x7",
              "Format": "Normal",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Monochrome",
              "TickTock": "None",
              "Biggering": "false",
              "Smallanator": "true",
              "Chill Factor": 0,
              "Noodle Level": 60
            },
            "minted_at": "2021-06-13T17:02:29+00:00"
          },
          {
            "token_id": "85000101",
            "invocation": 101,
            "hash": "0x58ba57ddee2fdc17735f91bec9ebcb3df245e0f68b9baf023125888b4b3396e6",
            "owner_address": "0x60ca911a33a85987e8979d8738e8f44317e39e0f",
            "features": {
              "Fill": "Stripes",
              "Lines": 10,
              "Tiles": "9x9",
              "Format": "Bottom-up",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Get in the van",
              "TickTock": "None",
              "Biggering": "true",
              "Smallanator": "true",
              "Chill Factor": 7,
              "Noodle Level": 144
            },
            "minted_at": "2021-06-13T17:02:29+00:00"
          },
          {
            "token_id": "85000102",
            "invocation": 102,
            "hash": "0x723b8d6e01e5172677b0c2482ec4518795e585a81a613b3710704eab8be6e31f",
            "owner_address": "0x02e67cad0e29ff8a5fb7abd28c219373cd787535",
            "features": {
              "Fill": "Flat",
              "Lines": 4,
              "Tiles": "11x11",
              "Format": "Top-down",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Flatomatic",
              "TickTock": "None",
              "Biggering": "true",
              "Smallanator": "true",
              "Chill Factor": 13,
              "Noodle Level": 200
            },
            "minted_at": "2021-06-13T17:02:51+00:00"
          },
          {
            "token_id": "85000103",
            "invocation": 103,
            "hash": "0x45e959c50e91a776b88e86b067babfe15a951c38366dbe74aa7228ef4fb8e495",
            "owner_address": "0x26d39fc7341567c8b0bb96382fc54f367f4298ea",
            "features": {
              "Fill": "Flat",
              "Lines": 7,
              "Tiles": "9x9",
              "Format": "Top-down",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Flatomatic",
              "TickTock": "None",
              "Biggering": "true",
              "Smallanator": "false",
              "Chill Factor": 12,
              "Noodle Level": 0
            },
            "minted_at": "2021-06-13T17:02:51+00:00"
          },
          {
            "token_id": "85000104",
            "invocation": 104,
            "hash": "0x12cfc4bbffb8c867a4662b035a1924d0d4362d90ae0757e39fa2618e3204cbf0",
            "owner_address": "0x59a2add327fd2229a644721e68214949d4a2a490",
            "features": {
              "Fill": "Flat",
              "Lines": 9,
              "Tiles": "8x8",
              "Format": "Outer",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Flatomatic",
              "TickTock": "None",
              "Biggering": "true",
              "Smallanator": "false",
              "Chill Factor": 10,
              "Noodle Level": 0
            },
            "minted_at": "2021-06-13T17:02:51+00:00"
          },
          {
            "token_id": "85000105",
            "invocation": 105,
            "hash": "0xcd2a19a310f6aecf6e5b6a3cb42d3bb7f49b7b1f8522725e395d4d0dfd490f07",
            "owner_address": "0x91364516d3cad16e1666261dbdbb39c881dbe9ee",
            "features": {
              "Fill": "Stripes",
              "Lines": 12,
              "Tiles": "6x6",
              "Format": "Top-down",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Arctica",
              "TickTock": "None",
              "Biggering": "false",
              "Smallanator": "true",
              "Chill Factor": 0,
              "Noodle Level": 128
            },
            "minted_at": "2021-06-13T17:02:51+00:00"
          },
          {
            "token_id": "85000106",
            "invocation": 106,
            "hash": "0xd7c1f195f1394e59d33af5c53859e2358c5191095740ffc084c760d1cef05d2a",
            "owner_address": "0xecba5f51925e6ccec26da38dcd7d5305f6bdfbcb",
            "features": {
              "Fill": "Rainbow",
              "Lines": 7,
              "Tiles": "11x11",
              "Format": "Outer",
              "Series": "Two",
              "Boosted": -3,
              "Palette": "Citrus Prom",
              "TickTock": "None",
              "Biggering": "true",
              "Smallanator": "false",
              "Chill Factor": 18,
              "Noodle Level": 0
            },
            "minted_at": "2021-06-13T17:02:51+00:00"
          },
          {
            "token_id": "85000107",
            "invocation": 107,
            "hash": "0x6b3fcc4cfe65388e2cff8ea840a31d6e51a04e030dd40254f3b13490798d1af1",
            "owner_address": "0x6fcade9de3ab9a1e57eab1684cf30e2ceba234fb",
            "features": {
              "Fill": "Flat",
              "Lines": 4,
              "Tiles": "10x10",
              "Format": "Outer",
              "Series": "Two",
              "Boosted": -2,
              "Palette": "Flatomatic",
              "TickTock": "None",
              "Biggering": "true",
              "Smallanator": "true",
              "Chill Factor": 14,
              "Noodle Level": 104
            },
            "minted_at": "2021-06-13T17:02:51+00:00"
          },
          {
            "token_id": "85000108",
            "invocation": 108,
            "hash": "0xed45c71413ddb06bc754abd0f52c2ec5d1b77896a18fcf878473e00185becc5e",
            "owner_address": "0x0d46780cfbccae5c959ee0fa93755bd02e30a1be",
            "features": {
              "Fill": "Stripes",
              "Lines": 10,
              "Tiles": "6x6",
              "Format": "Outer",
              "Series": "Two",
              "Boosted": -2,
              "Palette": "Monochrome",
              "TickTock": "None",
              "Biggering": "false",
              "Smallanator": "true",
              "Chill Factor": 0,
              "Noodle Level": 72
            },
            "minted_at": "2021-06-13T17:03:00+00:00"
          },
          {
            "token_id": "85000109",
            "invocation": 109,
            "hash": "0x8695cd134b0e97f72fb9d59962fe8e3a83eac04362c73bb17ff794c46893c64c",
            "owner_address": "0xa23deaf742997b604b8a7733036b209bac53958d",
            "features": {
              "Fill": "Metallic",
              "Lines": 10,
              "Tiles": "9x9",
              "Format": "Bottom-up",
              "Series": "Two",
              "Boosted": 2,
              "Palette": "Arctica",
              "TickTock": "None",
              "Biggering": "true",
              "Smallanator": "true",
              "Chill Factor": 8,
              "Noodle Level": 128
            },
            "minted_at": "2021-06-13T17:03:00+00:00"
          },
          {
            "token_id": "85000110",
            "invocation": 110,
            "hash": "0xbe698a511e76c53c74ff317fe34bb3f340eeb4f657d005751c1f4532246b2dc6",
            "owner_address": "0xc142995f05436c91bba172b7d17522a301323236",
            "features": {
              "Fill": "Single Grad",
              "Lines": 6,
              "Tiles": "10x10",
              "Format": "Top-down",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Get in the van",
              "TickTock": "None",
              "Biggering": "true",
              "Smallanator": "false",
              "Chill Factor": 17,
              "Noodle Level": 0
            },
            "minted_at": "2021-06-13T17:03:00+00:00"
          },
          {
            "token_id": "85000111",
            "invocation": 111,
            "hash": "0x86bdbe239c31e11a2fd1914fcce4504d115bb5a454f40e19ee61d8b134c4bdca",
            "owner_address": "0xacb0d824d137fc5d80c894024ed7ee6521236c05",
            "features": {
              "Fill": "Rainbow",
              "Lines": 8,
              "Tiles": "8x8",
              "Format": "Normal",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Playful",
              "TickTock": "None",
              "Biggering": "true",
              "Smallanator": "true",
              "Chill Factor": 2,
              "Noodle Level": 88
            },
            "minted_at": "2021-06-13T17:03:00+00:00"
          },
          {
            "token_id": "85000112",
            "invocation": 112,
            "hash": "0x1f6eef74db209e2d8f27132b2557e456af27d144f16e369a63a80025bfc79b22",
            "owner_address": "0x59ff2f4c87142d0686a02b7ddeb3316c3e9cdd26",
            "features": {
              "Fill": "Single Grad",
              "Lines": 6,
              "Tiles": "8x8",
              "Format": "Normal",
              "Series": "Two",
              "Boosted": -2,
              "Palette": "Overlook",
              "TickTock": "None",
              "Biggering": "false",
              "Smallanator": "true",
              "Chill Factor": 0,
              "Noodle Level": 72
            },
            "minted_at": "2021-06-13T17:03:05+00:00"
          },
          {
            "token_id": "85000113",
            "invocation": 113,
            "hash": "0x55d0c0e3d95e657b4706acbb0725203525e96765379c08d117f6e58a9c769d00",
            "owner_address": "0xf969293ffb9a7a54c9e813fcae79c1de9846e2d5",
            "features": {
              "Fill": "Stripes",
              "Lines": 8,
              "Tiles": "8x8",
              "Format": "Outer",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Fruit Salad Chews",
              "TickTock": "None",
              "Biggering": "true",
              "Smallanator": "false",
              "Chill Factor": 10,
              "Noodle Level": 0
            },
            "minted_at": "2021-06-13T17:03:05+00:00"
          },
          {
            "token_id": "85000114",
            "invocation": 114,
            "hash": "0x02807a810f9823ed4e655f11b6070484df67289d4655722a0785960e7503f128",
            "owner_address": "0x5400a7c562e21e50f048b0e99a016ffaf82a6de3",
            "features": {
              "Fill": "Stripes",
              "Lines": 9,
              "Tiles": "7x7",
              "Format": "Normal",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Get out of the van",
              "TickTock": "Chess",
              "Biggering": "false",
              "Smallanator": "false",
              "Chill Factor": 0,
              "Noodle Level": 0
            },
            "minted_at": "2021-06-13T17:03:05+00:00"
          },
          {
            "token_id": "85000115",
            "invocation": 115,
            "hash": "0x7990b221ecda4580ddf0a4481b224fde404bcad5c02cece22080eebef5f92ecc",
            "owner_address": "0x89bde316a5aa59d9995fc82b217308abae60257c",
            "features": {
              "Fill": "Zap Grad",
              "Lines": 12,
              "Tiles": "7x7",
              "Format": "Bottom-up",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Frank-N-Furter",
              "TickTock": "None",
              "Biggering": "false",
              "Smallanator": "true",
              "Chill Factor": 0,
              "Noodle Level": 184
            },
            "minted_at": "2021-06-13T17:03:05+00:00"
          },
          {
            "token_id": "85000116",
            "invocation": 116,
            "hash": "0xac1a5cbed8c1efdc86dde51f255f34eacc831ff90b8d517f36315fefe5c16030",
            "owner_address": "0x1b2965dc3b1697dd10b7126ec7393d79cda2cf91",
            "features": {
              "Fill": "Stripes",
              "Lines": 10,
              "Tiles": "7x7",
              "Format": "Outer",
              "Series": "Two",
              "Boosted": 1,
              "Palette": "Get in the van",
              "TickTock": "None",
              "Biggering": "false",
              "Smallanator": "true",
              "Chill Factor": 0,
              "Noodle Level": 104
            },
            "minted_at": "2021-06-13T17:03:05+00:00"
          },
          {
            "token_id": "85000117",
            "invocation": 117,
            "hash": "0x1628520bbc6ac44731b000ad74dd1a0dfe994dca019a50e3437960a31125095a",
            "owner_address": "0x49d62955a8eee8cb8575a8d0671ba1ee1fcc0906",
            "features": {
              "Fill": "Stripes",
              "Lines": 6,
              "Tiles": "9x9",
              "Format": "Middle",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Fallen Leaves",
              "TickTock": "None",
              "Biggering": "true",
              "Smallanator": "true",
              "Chill Factor": 8,
              "Noodle Level": 152
            },
            "minted_at": "2021-06-13T17:03:23+00:00"
          },
          {
            "token_id": "85000118",
            "invocation": 118,
            "hash": "0x2d501b4e0fd63ddbbe223522c5159a24f40986ee9937c374b228014558198189",
            "owner_address": "0x9c815f1bb7ac2d54e473b58a15345c9dc2630ffa",
            "features": {
              "Fill": "Stripes",
              "Lines": 12,
              "Tiles": "6x6",
              "Format": "Normal",
              "Series": "Two",
              "Boosted": -1,
              "Palette": "Citrus Prom",
              "TickTock": "Chaser4",
              "Biggering": "false",
              "Smallanator": "false",
              "Chill Factor": 0,
              "Noodle Level": 0
            },
            "minted_at": "2021-06-13T17:03:23+00:00"
          },
          {
            "token_id": "85000119",
            "invocation": 119,
            "hash": "0xf67438dc1a1c5f081624c016968bd62da15b153117a849e850a2a008fe8deaf0",
            "owner_address": "0xdc9ab2deb079083836c217b067c7b3f397083869",
            "features": {
              "Fill": "Flat",
              "Lines": 6,
              "Tiles": "10x10",
              "Format": "Bottom-up",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Flatomatic",
              "TickTock": "None",
              "Biggering": "true",
              "Smallanator": "false",
              "Chill Factor": 15,
              "Noodle Level": 0
            },
            "minted_at": "2021-06-13T17:03:23+00:00"
          },
          {
            "token_id": "85000120",
            "invocation": 120,
            "hash": "0x87d25d7681c09d12dc09cd44f2a9c2ed70ad9d675e496c6cabf2ad92504c74cc",
            "owner_address": "0xdf5edabd1530e79fc48e356dd62295b2a3c35e40",
            "features": {
              "Fill": "Single Grad",
              "Lines": 7,
              "Tiles": "9x9",
              "Format": "Normal",
              "Series": "Two",
              "Boosted": 2,
              "Palette": "Overlook",
              "TickTock": "None",
              "Biggering": "true",
              "Smallanator": "false",
              "Chill Factor": 7,
              "Noodle Level": 0
            },
            "minted_at": "2021-06-13T17:03:23+00:00"
          },
          {
            "token_id": "85000121",
            "invocation": 121,
            "hash": "0x495874c3b7643ad3d2a9bfb81cc78227de83e77a716635a45db026bce2aabb1d",
            "owner_address": "0x99c63b3f73d8cf8a56a4621c74d0ac5fda357f8a",
            "features": {
              "Fill": "Flat",
              "Lines": 10,
              "Tiles": "6x6",
              "Format": "Outer",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Flatomatic",
              "TickTock": "None",
              "Biggering": "false",
              "Smallanator": "true",
              "Chill Factor": 0,
              "Noodle Level": 44
            },
            "minted_at": "2021-06-13T17:03:23+00:00"
          },
          {
            "token_id": "85000122",
            "invocation": 122,
            "hash": "0x6db11ed2eb20d49f23938d7e1e636c201776eb7a02bbedb4ac408d935a6ac863",
            "owner_address": "0xf565d79c35758c752d3debfdd380d4eb16a3c6e3",
            "features": {
              "Fill": "Flat",
              "Lines": 4,
              "Tiles": "11x11",
              "Format": "Bottom-up",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Flatomatic",
              "TickTock": "None",
              "Biggering": "true",
              "Smallanator": "true",
              "Chill Factor": 10,
              "Noodle Level": 204
            },
            "minted_at": "2021-06-13T17:03:23+00:00"
          },
          {
            "token_id": "85000123",
            "invocation": 123,
            "hash": "0xfada04e29a882daab70cc5bda989301b46308b6f5ce77711023dc87ca93992eb",
            "owner_address": "0xf7a5aa94fdd3049d1fd78b69863282c4f4ff686b",
            "features": {
              "Fill": "Zap Grad",
              "Lines": 10,
              "Tiles": "6x6",
              "Format": "Bottom-up",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Macha Strawberry",
              "TickTock": "None",
              "Biggering": "false",
              "Smallanator": "true",
              "Chill Factor": 0,
              "Noodle Level": 124
            },
            "minted_at": "2021-06-13T17:03:23+00:00"
          },
          {
            "token_id": "85000124",
            "invocation": 124,
            "hash": "0x770d1b9f9a098543743fa0fa2d1f55ae08f21ae6be3b2b086b8f90866e7c7d91",
            "owner_address": "0x568045d8d22e6abc023e302a95ed1ed90af39b46",
            "features": {
              "Fill": "Single Grad",
              "Lines": 6,
              "Tiles": "9x9",
              "Format": "Bottom-up",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Signal",
              "TickTock": "None",
              "Biggering": "false",
              "Smallanator": "true",
              "Chill Factor": 0,
              "Noodle Level": 292
            },
            "minted_at": "2021-06-13T17:03:33+00:00"
          },
          {
            "token_id": "85000125",
            "invocation": 125,
            "hash": "0xaec3ec732c98b66b37590a9ea8245e34bee0a95e5d31b6f8522ea0c58bb12037",
            "owner_address": "0x35074bd786406731d4e391e6882054da595532b3",
            "features": {
              "Fill": "Stripes",
              "Lines": 14,
              "Tiles": "5x5",
              "Format": "Normal",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Citrus Prom",
              "TickTock": "None",
              "Biggering": "false",
              "Smallanator": "true",
              "Chill Factor": 0,
              "Noodle Level": 12
            },
            "minted_at": "2021-06-13T17:03:33+00:00"
          },
          {
            "token_id": "85000126",
            "invocation": 126,
            "hash": "0x88679284c5f85e1e5273421407817e6dd700805414a3ae2a72c3105fa64e5b65",
            "owner_address": "0x0a3c24e08abbc92257c105d39c84cd188cda1cc6",
            "features": {
              "Fill": "Flat",
              "Lines": 5,
              "Tiles": "11x11",
              "Format": "Middle",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Flatomatic",
              "TickTock": "None",
              "Biggering": "true",
              "Smallanator": "false",
              "Chill Factor": 18,
              "Noodle Level": 0
            },
            "minted_at": "2021-06-13T17:03:33+00:00"
          },
          {
            "token_id": "85000127",
            "invocation": 127,
            "hash": "0x430feb74b08a7395ca5150b2f63b584cf3cd28e37ea092de08493dd368a404dc",
            "owner_address": "0x49d62955a8eee8cb8575a8d0671ba1ee1fcc0906",
            "features": {
              "Fill": "Rainbow",
              "Lines": 8,
              "Tiles": "7x7",
              "Format": "Outer",
              "Series": "Two",
              "Boosted": -2,
              "Palette": "Fallen Leaves",
              "TickTock": "None",
              "Biggering": "false",
              "Smallanator": "true",
              "Chill Factor": 0,
              "Noodle Level": 80
            },
            "minted_at": "2021-06-13T17:03:33+00:00"
          },
          {
            "token_id": "85000128",
            "invocation": 128,
            "hash": "0xaa667d3e2684ba9324f5a4e110fa09101c86d5aa0fab2f2137bd025f59716a2e",
            "owner_address": "0xb99a6171df6ecd6b90abef6af6452fef0ffef9c9",
            "features": {
              "Fill": "Single Grad",
              "Lines": 6,
              "Tiles": "9x9",
              "Format": "Normal",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Arctica",
              "TickTock": "None",
              "Biggering": "false",
              "Smallanator": "true",
              "Chill Factor": 0,
              "Noodle Level": 88
            },
            "minted_at": "2021-06-13T17:03:33+00:00"
          },
          {
            "token_id": "85000129",
            "invocation": 129,
            "hash": "0x30f88f9fc156af6a4b398b86a502c5d9acfd30c1fb59fa976d96a378b9f30556",
            "owner_address": "0x7fd6c3844264cd50ad2183afd058e3983dcea1af",
            "features": {
              "Fill": "Flat",
              "Lines": 12,
              "Tiles": "6x6",
              "Format": "Top-down",
              "Series": "Two",
              "Boosted": 1,
              "Palette": "Flatomatic",
              "TickTock": "None",
              "Biggering": "false",
              "Smallanator": "true",
              "Chill Factor": 0,
              "Noodle Level": 140
            },
            "minted_at": "2021-06-13T17:03:47+00:00"
          },
          {
            "token_id": "85000130",
            "invocation": 130,
            "hash": "0x021469b65853a06b2d0d6b2dddd64a2b4d7caf6a88e34d8b62b1974843a71148",
            "owner_address": "0x0f0eae91990140c560d4156db4f00c854dc8f09e",
            "features": {
              "Fill": "Stripes",
              "Lines": 7,
              "Tiles": "8x8",
              "Format": "Middle",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Playful",
              "TickTock": "None",
              "Biggering": "true",
              "Smallanator": "false",
              "Chill Factor": 10,
              "Noodle Level": 0
            },
            "minted_at": "2021-06-13T17:03:47+00:00"
          },
          {
            "token_id": "85000131",
            "invocation": 131,
            "hash": "0x2ec7cb925c6c9ac383349ae27c9acc187f49cbacdfa0441e866db0beb4bd48c9",
            "owner_address": "0x4ed0095d4f8e2b4acb3b66aa83f2d94cce0eebe5",
            "features": {
              "Fill": "Flat",
              "Lines": 5,
              "Tiles": "14x14",
              "Format": "Outer",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Flatomatic",
              "TickTock": "None",
              "Biggering": "true",
              "Smallanator": "false",
              "Chill Factor": 29,
              "Noodle Level": 0
            },
            "minted_at": "2021-06-13T17:03:47+00:00"
          },
          {
            "token_id": "85000132",
            "invocation": 132,
            "hash": "0xd6a8a3a64d836723e0ae2a491afe6fdf6bf2bb9e905822006dac005673269d3d",
            "owner_address": "0x1b2965dc3b1697dd10b7126ec7393d79cda2cf91",
            "features": {
              "Fill": "Flat",
              "Lines": 7,
              "Tiles": "9x9",
              "Format": "Bottom-up",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Flatomatic",
              "TickTock": "None",
              "Biggering": "true",
              "Smallanator": "false",
              "Chill Factor": 9,
              "Noodle Level": 0
            },
            "minted_at": "2021-06-13T17:03:47+00:00"
          },
          {
            "token_id": "85000133",
            "invocation": 133,
            "hash": "0x373a69720c2280ff3ed1785dd8750f82b740cea562287c75f342f676e9c9539b",
            "owner_address": "0x4131add9e6341682e0bbf6d707f8913ed426b073",
            "features": {
              "Fill": "Metallic",
              "Lines": 7,
              "Tiles": "9x9",
              "Format": "Normal",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Overlook",
              "TickTock": "None",
              "Biggering": "true",
              "Smallanator": "false",
              "Chill Factor": 7,
              "Noodle Level": 0
            },
            "minted_at": "2021-06-13T17:03:47+00:00"
          },
          {
            "token_id": "85000134",
            "invocation": 134,
            "hash": "0x37c3e1120bbe6a65492cf7d87d29d4a9aa2faf0e6cdf6522144f9ea4f3b2d0ae",
            "owner_address": "0x953cc221d2d43ba9b7eb9bdf17617aea39cea774",
            "features": {
              "Fill": "Flat",
              "Lines": 4,
              "Tiles": "11x11",
              "Format": "Middle",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Flatomatic",
              "TickTock": "None",
              "Biggering": "true",
              "Smallanator": "false",
              "Chill Factor": 19,
              "Noodle Level": 0
            },
            "minted_at": "2021-06-13T17:03:47+00:00"
          },
          {
            "token_id": "85000135",
            "invocation": 135,
            "hash": "0x018a481d8d628aee985bf315e4a940208b17a109c33d406e57f235b63bcf607e",
            "owner_address": "0x7fd6c3844264cd50ad2183afd058e3983dcea1af",
            "features": {
              "Fill": "Flat",
              "Lines": 7,
              "Tiles": "9x9",
              "Format": "Bottom-up",
              "Series": "Two",
              "Boosted": -1,
              "Palette": "Flatomatic",
              "TickTock": "None",
              "Biggering": "true",
              "Smallanator": "false",
              "Chill Factor": 10,
              "Noodle Level": 0
            },
            "minted_at": "2021-06-13T17:03:47+00:00"
          },
          {
            "token_id": "85000136",
            "invocation": 136,
            "hash": "0x945d7fc29e5d830566ca91f31c9d5ffacc06a662c61e5aefadadee962cc5a874",
            "owner_address": "0x40d775827365ae4d54cbc08a1a1c4f586b2c1d0a",
            "features": {
              "Fill": "Stripes",
              "Lines": 10,
              "Tiles": "5x5",
              "Format": "Normal",
              "Series": "Two",
              "Boosted": -2,
              "Palette": "Frank-N-Furter",
              "TickTock": "None",
              "Biggering": "false",
              "Smallanator": "false",
              "Chill Factor": 0,
              "Noodle Level": 0
            },
            "minted_at": "2021-06-13T17:03:47+00:00"
          },
          {
            "token_id": "85000137",
            "invocation": 137,
            "hash": "0xf45a23809cb886e15e3ab33d17521d7834ad003140c4e2bcf9a95245b7d765bf",
            "owner_address": "0x2901a2b2e8069d9e9bc378957645279ee0b8828f",
            "features": {
              "Fill": "Rainbow",
              "Lines": 8,
              "Tiles": "8x8",
              "Format": "Normal",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Overlook",
              "TickTock": "None",
              "Biggering": "true",
              "Smallanator": "false",
              "Chill Factor": 6,
              "Noodle Level": 0
            },
            "minted_at": "2021-06-13T17:03:47+00:00"
          },
          {
            "token_id": "85000138",
            "invocation": 138,
            "hash": "0x8612029d3c703db1ef31443cf09e19b537cef2c265afb48015142437495d8501",
            "owner_address": "0x5445092634581774a680e4dedd4ec9bfc35a26fd",
            "features": {
              "Fill": "Stripes",
              "Lines": 6,
              "Tiles": "9x9",
              "Format": "Outer",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Get out of the van",
              "TickTock": "None",
              "Biggering": "true",
              "Smallanator": "true",
              "Chill Factor": 9,
              "Noodle Level": 124
            },
            "minted_at": "2021-06-13T17:03:56+00:00"
          },
          {
            "token_id": "85000139",
            "invocation": 139,
            "hash": "0x5112cdfc5d61dc935aeca0231da1b2e445260bbd6180c78720af198020abc7ad",
            "owner_address": "0x1854a7a0b4f9466dbeeb3279e247d4d0b0a06e3b",
            "features": {
              "Fill": "Flat",
              "Lines": 4,
              "Tiles": "10x10",
              "Format": "Outer",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Flatomatic",
              "TickTock": "None",
              "Biggering": "true",
              "Smallanator": "false",
              "Chill Factor": 14,
              "Noodle Level": 0
            },
            "minted_at": "2021-06-13T17:03:56+00:00"
          },
          {
            "token_id": "85000140",
            "invocation": 140,
            "hash": "0x63b3f6e2c67eccad3c4ced20d45f5446bd2614cf0891b0bb0c936b60a311b894",
            "owner_address": "0x356cd07b0b96860ac6c592de434772de9bd5b60f",
            "features": {
              "Fill": "Flat",
              "Lines": 5,
              "Tiles": "9x9",
              "Format": "Outer",
              "Series": "Two",
              "Boosted": -2,
              "Palette": "Flatomatic",
              "TickTock": "None",
              "Biggering": "true",
              "Smallanator": "false",
              "Chill Factor": 11,
              "Noodle Level": 0
            },
            "minted_at": "2021-06-13T17:03:56+00:00"
          },
          {
            "token_id": "85000141",
            "invocation": 141,
            "hash": "0xc2b5eaa37d10d47d068cabe7fcb50d6072d6f600d14b5b4835de0dba7a151916",
            "owner_address": "0x91364516d3cad16e1666261dbdbb39c881dbe9ee",
            "features": {
              "Fill": "Rainbow",
              "Lines": 8,
              "Tiles": "10x10",
              "Format": "Normal",
              "Series": "Two",
              "Boosted": 1,
              "Palette": "Overlook",
              "TickTock": "None",
              "Biggering": "true",
              "Smallanator": "true",
              "Chill Factor": 4,
              "Noodle Level": 92
            },
            "minted_at": "2021-06-13T17:03:56+00:00"
          },
          {
            "token_id": "85000142",
            "invocation": 142,
            "hash": "0x4c74968b8fa37b3b565dea4069b237589ec5eafd32be240560cb9d854d753fa8",
            "owner_address": "0x1ff2875cd548eeae6d22f26bae2d72a50fd143c7",
            "features": {
              "Fill": "Flat",
              "Lines": 5,
              "Tiles": "10x10",
              "Format": "Bottom-up",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Flatomatic",
              "TickTock": "None",
              "Biggering": "true",
              "Smallanator": "false",
              "Chill Factor": 14,
              "Noodle Level": 0
            },
            "minted_at": "2021-06-13T17:03:56+00:00"
          },
          {
            "token_id": "85000143",
            "invocation": 143,
            "hash": "0x7ce0dc9ab9134d7ca4a56adf962b9c5b3a1ec1314b66feeb91838d81281e35ac",
            "owner_address": "0xfca9139eaeb1486b2c855df8649f0ebc352e58e7",
            "features": {
              "Fill": "Flat",
              "Lines": 4,
              "Tiles": "13x13",
              "Format": "Bottom-up",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Flatomatic",
              "TickTock": "None",
              "Biggering": "true",
              "Smallanator": "true",
              "Chill Factor": 16,
              "Noodle Level": 280
            },
            "minted_at": "2021-06-13T17:03:56+00:00"
          },
          {
            "token_id": "85000144",
            "invocation": 144,
            "hash": "0xde130de2091c757d196166016662ca1194542c0483e470b7b2f6bc83ee53ecde",
            "owner_address": "0x57524efc73e194e4f19dc1606fb7a3e1dbf719b3",
            "features": {
              "Fill": "Single Grad",
              "Lines": 6,
              "Tiles": "12x12",
              "Format": "Middle",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Matrix",
              "TickTock": "None",
              "Biggering": "false",
              "Smallanator": "true",
              "Chill Factor": 0,
              "Noodle Level": 312
            },
            "minted_at": "2021-06-13T17:03:56+00:00"
          },
          {
            "token_id": "85000145",
            "invocation": 145,
            "hash": "0x89364155942df4816ac417ff3e06a868058a396869e001412da698e7d78011f9",
            "owner_address": "0x12bd6121197848f93f40bd82d4c80db4e3198990",
            "features": {
              "Fill": "Flat",
              "Lines": 11,
              "Tiles": "6x6",
              "Format": "Outer",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Flatomatic",
              "TickTock": "Wipe",
              "Biggering": "false",
              "Smallanator": "false",
              "Chill Factor": 0,
              "Noodle Level": 0
            },
            "minted_at": "2021-06-13T17:03:56+00:00"
          },
          {
            "token_id": "85000146",
            "invocation": 146,
            "hash": "0xba92c40df1fcfa18ea7a7b782d579f759e65e0f20bc239e75625f42a712ab298",
            "owner_address": "0xacb0d824d137fc5d80c894024ed7ee6521236c05",
            "features": {
              "Fill": "Stripes",
              "Lines": 8,
              "Tiles": "11x11",
              "Format": "Normal",
              "Series": "Two",
              "Boosted": 2,
              "Palette": "Citrus Prom",
              "TickTock": "Chess",
              "Biggering": "false",
              "Smallanator": "false",
              "Chill Factor": 0,
              "Noodle Level": 0
            },
            "minted_at": "2021-06-13T17:03:56+00:00"
          },
          {
            "token_id": "85000147",
            "invocation": 147,
            "hash": "0xbee382767b6cbcbdcab1b35991319aaf6d2dbad3307be0613bba208a21209184",
            "owner_address": "0x3ae72034f05af89cc7249d05887a2c70d0c22b41",
            "features": {
              "Fill": "Metallic",
              "Lines": 8,
              "Tiles": "8x8",
              "Format": "Outer",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Citrus Prom",
              "TickTock": "None",
              "Biggering": "true",
              "Smallanator": "true",
              "Chill Factor": 6,
              "Noodle Level": 120
            },
            "minted_at": "2021-06-13T17:03:56+00:00"
          },
          {
            "token_id": "85000148",
            "invocation": 148,
            "hash": "0x81ac8880af260258a43ca082cc8d24351b5093c4861b2cdf4cb42ed580ccf1e3",
            "owner_address": "0xecba5f51925e6ccec26da38dcd7d5305f6bdfbcb",
            "features": {
              "Fill": "Flat",
              "Lines": 5,
              "Tiles": "10x10",
              "Format": "Outer",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Flatomatic",
              "TickTock": "None",
              "Biggering": "true",
              "Smallanator": "false",
              "Chill Factor": 16,
              "Noodle Level": 0
            },
            "minted_at": "2021-06-13T17:03:56+00:00"
          },
          {
            "token_id": "85000149",
            "invocation": 149,
            "hash": "0x845f25686f28b714757efe869a1fe9fa9aa7ef3ef44881ef9bad9b00598e11a4",
            "owner_address": "0x9716681214aea16d140a0c2d37fd2b9ce64a730b",
            "features": {
              "Fill": "Single Grad",
              "Lines": 6,
              "Tiles": "10x10",
              "Format": "Normal",
              "Series": "Two",
              "Boosted": -1,
              "Palette": "Get in the van",
              "TickTock": "None",
              "Biggering": "true",
              "Smallanator": "true",
              "Chill Factor": 3,
              "Noodle Level": 96
            },
            "minted_at": "2021-06-13T17:04:07+00:00"
          },
          {
            "token_id": "85000150",
            "invocation": 150,
            "hash": "0x44519a77c55e1b5de9fd63335d081791d3a4cfd5e470c195089c5f18a0e9648c",
            "owner_address": "0x577ebc5de943e35cdf9ecb5bbe1f7d7cb6c7c647",
            "features": {
              "Fill": "Stripes",
              "Lines": 11,
              "Tiles": "7x7",
              "Format": "Middle",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Fruit Salad Chews",
              "TickTock": "None",
              "Biggering": "false",
              "Smallanator": "false",
              "Chill Factor": 0,
              "Noodle Level": 0
            },
            "minted_at": "2021-06-13T17:04:07+00:00"
          },
          {
            "token_id": "85000151",
            "invocation": 151,
            "hash": "0xc66587ce2f3bcd42fd4808513d157e6d92ced051c4cc1049a4d564ebc935ba10",
            "owner_address": "0xad8966a062dc3082f588e964d21bd5f61639b1a3",
            "features": {
              "Fill": "Single Grad",
              "Lines": 7,
              "Tiles": "10x10",
              "Format": "Outer",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Macha Strawberry",
              "TickTock": "None",
              "Biggering": "true",
              "Smallanator": "false",
              "Chill Factor": 17,
              "Noodle Level": 0
            },
            "minted_at": "2021-06-13T17:04:07+00:00"
          },
          {
            "token_id": "85000152",
            "invocation": 152,
            "hash": "0x097063a665cff92ec600322192d8f6d993b029f0f06f1a36e38984492dd5a478",
            "owner_address": "0xa0393a76b132526a70450273cafeceb45eea6dee",
            "features": {
              "Fill": "Stripes",
              "Lines": 11,
              "Tiles": "6x6",
              "Format": "Normal",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Fruit Salad Chews",
              "TickTock": "None",
              "Biggering": "false",
              "Smallanator": "false",
              "Chill Factor": 0,
              "Noodle Level": 0
            },
            "minted_at": "2021-06-13T17:04:22+00:00"
          },
          {
            "token_id": "85000153",
            "invocation": 153,
            "hash": "0x7706bb06730acf3d6ac5ae779814849c7e5d2708e67e990b2b02fb4e723b529d",
            "owner_address": "0xf61a2d94436451ffd96809fdba924bbe9c768359",
            "features": {
              "Fill": "Stripes",
              "Lines": 10,
              "Tiles": "9x9",
              "Format": "Bottom-up",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Macha Strawberry",
              "TickTock": "None",
              "Biggering": "false",
              "Smallanator": "true",
              "Chill Factor": 0,
              "Noodle Level": 300
            },
            "minted_at": "2021-06-13T17:04:37+00:00"
          },
          {
            "token_id": "85000154",
            "invocation": 154,
            "hash": "0xf85d717f18d1cf183b0072094a74963574e15e07381eb324cd96f477026ffe27",
            "owner_address": "0x8a5a244b08678a7de0605494fe4e76c552935d38",
            "features": {
              "Fill": "Single Grad",
              "Lines": 7,
              "Tiles": "9x9",
              "Format": "Middle",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Get out of the van",
              "TickTock": "None",
              "Biggering": "true",
              "Smallanator": "false",
              "Chill Factor": 11,
              "Noodle Level": 0
            },
            "minted_at": "2021-06-13T17:04:37+00:00"
          },
          {
            "token_id": "85000155",
            "invocation": 155,
            "hash": "0xad5829366480f64adc65678ef0022177544672cee95035ce24705759b9db7242",
            "owner_address": "0x9c815f1bb7ac2d54e473b58a15345c9dc2630ffa",
            "features": {
              "Fill": "Stripes",
              "Lines": 8,
              "Tiles": "9x9",
              "Format": "Outer",
              "Series": "Two",
              "Boosted": 2,
              "Palette": "Citrus Prom",
              "TickTock": "None",
              "Biggering": "true",
              "Smallanator": "false",
              "Chill Factor": 14,
              "Noodle Level": 0
            },
            "minted_at": "2021-06-13T17:04:37+00:00"
          },
          {
            "token_id": "85000156",
            "invocation": 156,
            "hash": "0xb8255e4b006e8f4700e47cef1f9a6fbc08cac319793b614296ee739000705012",
            "owner_address": "0xe03a5189dac8182085e4adf66281f679fff2291d",
            "features": {
              "Fill": "Stripes",
              "Lines": 11,
              "Tiles": "7x7",
              "Format": "Bottom-up",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Playful",
              "TickTock": "Chess",
              "Biggering": "false",
              "Smallanator": "false",
              "Chill Factor": 0,
              "Noodle Level": 0
            },
            "minted_at": "2021-06-13T17:04:37+00:00"
          },
          {
            "token_id": "85000157",
            "invocation": 157,
            "hash": "0x4b9560bb4c5ac7a03ea9e6ff341e7c92fda1f072a2026d97273d94759e7134d0",
            "owner_address": "0x38039da6bc26c101316af426cbf7f43834957c46",
            "features": {
              "Fill": "Stripes",
              "Lines": 12,
              "Tiles": "4x4",
              "Format": "Normal",
              "Series": "Two",
              "Boosted": 2,
              "Palette": "Overlook",
              "TickTock": "None",
              "Biggering": "false",
              "Smallanator": "true",
              "Chill Factor": 0,
              "Noodle Level": 12
            },
            "minted_at": "2021-06-13T17:04:37+00:00"
          },
          {
            "token_id": "85000158",
            "invocation": 158,
            "hash": "0x0ed81d9d844b580cb2b56110090100fb7c429ff7fe9fcf9d7d4d170e32b71742",
            "owner_address": "0x60ca911a33a85987e8979d8738e8f44317e39e0f",
            "features": {
              "Fill": "Zap Grad",
              "Lines": 15,
              "Tiles": "4x4",
              "Format": "Middle",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Get in the van",
              "TickTock": "Sweep",
              "Biggering": "false",
              "Smallanator": "false",
              "Chill Factor": 0,
              "Noodle Level": 0
            },
            "minted_at": "2021-06-13T17:04:48+00:00"
          },
          {
            "token_id": "85000159",
            "invocation": 159,
            "hash": "0x0e28136ad0f10c11efcc33af370be3ae822d754c07f8296721716da75412f106",
            "owner_address": "0x7eb9693402e49a781ac616a0e5b939ba22bb43a6",
            "features": {
              "Fill": "Stripes",
              "Lines": 9,
              "Tiles": "8x8",
              "Format": "Top-down",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Frank-N-Furter",
              "TickTock": "None",
              "Biggering": "true",
              "Smallanator": "false",
              "Chill Factor": 11,
              "Noodle Level": 0
            },
            "minted_at": "2021-06-13T17:04:48+00:00"
          },
          {
            "token_id": "85000160",
            "invocation": 160,
            "hash": "0x087020601f16b52c25facb829ea2440324eee21f62188c222dff5482b155c7b4",
            "owner_address": "0x1b2965dc3b1697dd10b7126ec7393d79cda2cf91",
            "features": {
              "Fill": "Flat",
              "Lines": 1,
              "Tiles": "15x15",
              "Format": "Bottom-up",
              "Series": "Two",
              "Boosted": -3,
              "Palette": "Flatomatic",
              "TickTock": "None",
              "Biggering": "true",
              "Smallanator": "false",
              "Chill Factor": 32,
              "Noodle Level": 0
            },
            "minted_at": "2021-06-13T17:04:48+00:00"
          },
          {
            "token_id": "85000161",
            "invocation": 161,
            "hash": "0x030ceeeac250674d35215b75bf0c451332d474118de99d0a1f9e7445b4d8a072",
            "owner_address": "0x75fd9837724bcc96a515d051951bc16c27f47693",
            "features": {
              "Fill": "Zap Grad",
              "Lines": 8,
              "Tiles": "9x9",
              "Format": "Bottom-up",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Fruit Salad Chews",
              "TickTock": "None",
              "Biggering": "true",
              "Smallanator": "true",
              "Chill Factor": 8,
              "Noodle Level": 124
            },
            "minted_at": "2021-06-13T17:04:48+00:00"
          },
          {
            "token_id": "85000162",
            "invocation": 162,
            "hash": "0xe12057fda6d2a3697ba955083820c054507d932225766e815ef96df06991fccc",
            "owner_address": "0x6ad8fe4e495e9709be1a2cc8a04646078e6b1ab0",
            "features": {
              "Fill": "Flat",
              "Lines": 4,
              "Tiles": "12x12",
              "Format": "Middle",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Flatomatic",
              "TickTock": "None",
              "Biggering": "false",
              "Smallanator": "true",
              "Chill Factor": 0,
              "Noodle Level": 348
            },
            "minted_at": "2021-06-13T17:04:48+00:00"
          },
          {
            "token_id": "85000163",
            "invocation": 163,
            "hash": "0xeaacb2f933132989ffbb34cf99b08c22815c97e8fd9ccedb50d18b55a63203f7",
            "owner_address": "0xec8419cde6bb6c6885e68e335e1ab195b3cea682",
            "features": {
              "Fill": "Flat",
              "Lines": 5,
              "Tiles": "10x10",
              "Format": "Bottom-up",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Flatomatic",
              "TickTock": "None",
              "Biggering": "true",
              "Smallanator": "false",
              "Chill Factor": 15,
              "Noodle Level": 0
            },
            "minted_at": "2021-06-13T17:04:48+00:00"
          },
          {
            "token_id": "85000164",
            "invocation": 164,
            "hash": "0xb3c68be9c691614bb2bede94ea105e5a10626a2156a7776ea1bbee43509c9420",
            "owner_address": "0x953cc221d2d43ba9b7eb9bdf17617aea39cea774",
            "features": {
              "Fill": "Stripes",
              "Lines": 8,
              "Tiles": "9x9",
              "Format": "Middle",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Citrus Prom",
              "TickTock": "None",
              "Biggering": "true",
              "Smallanator": "false",
              "Chill Factor": 10,
              "Noodle Level": 0
            },
            "minted_at": "2021-06-13T17:04:48+00:00"
          },
          {
            "token_id": "85000165",
            "invocation": 165,
            "hash": "0xd2ae94cd52b2715bd39e7c10a090d8240a02d8e45018abe5bc6a0e43954cd803",
            "owner_address": "0x7fd6c3844264cd50ad2183afd058e3983dcea1af",
            "features": {
              "Fill": "Flat",
              "Lines": 2,
              "Tiles": "14x14",
              "Format": "Middle",
              "Series": "Two",
              "Boosted": -2,
              "Palette": "Flatomatic",
              "TickTock": "None",
              "Biggering": "true",
              "Smallanator": "true",
              "Chill Factor": 24,
              "Noodle Level": 292
            },
            "minted_at": "2021-06-13T17:04:48+00:00"
          },
          {
            "token_id": "85000166",
            "invocation": 166,
            "hash": "0x238da462335fd735d77a2f2b11286e63e440bdb96bff947cc19ea4d92ef68d13",
            "owner_address": "0x5445092634581774a680e4dedd4ec9bfc35a26fd",
            "features": {
              "Fill": "Flat",
              "Lines": 8,
              "Tiles": "8x8",
              "Format": "Outer",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Flatomatic",
              "TickTock": "None",
              "Biggering": "true",
              "Smallanator": "true",
              "Chill Factor": 7,
              "Noodle Level": 100
            },
            "minted_at": "2021-06-13T17:04:52+00:00"
          },
          {
            "token_id": "85000167",
            "invocation": 167,
            "hash": "0x116b62fdf56e89a8ab3e60cbc189d3db8298bcd3fd6500bf3c82855409239a73",
            "owner_address": "0x78ddf370f363e5cca36e889c1ed5c47f37f5e8ef",
            "features": {
              "Fill": "Zap Grad",
              "Lines": 14,
              "Tiles": "5x5",
              "Format": "Bottom-up",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Overlook",
              "TickTock": "None",
              "Biggering": "false",
              "Smallanator": "false",
              "Chill Factor": 0,
              "Noodle Level": 0
            },
            "minted_at": "2021-06-13T17:05:11+00:00"
          },
          {
            "token_id": "85000168",
            "invocation": 168,
            "hash": "0x8ef40a0bf412b3a4429ff0d36d72f0c6acf7fa901fc7ec5d304a4c828a0beba0",
            "owner_address": "0xc01a9c301e2d8a5171c7720a5602727a4222b98a",
            "features": {
              "Fill": "Flat",
              "Lines": 2,
              "Tiles": "15x15",
              "Format": "Middle",
              "Series": "Two",
              "Boosted": -1,
              "Palette": "Flatomatic",
              "TickTock": "None",
              "Biggering": "true",
              "Smallanator": "true",
              "Chill Factor": 24,
              "Noodle Level": 412
            },
            "minted_at": "2021-06-13T17:05:11+00:00"
          },
          {
            "token_id": "85000169",
            "invocation": 169,
            "hash": "0x53e876edbe04efa08d0ac89eb242b39b9219ac514081c9fcbb335361ff38fb8f",
            "owner_address": "0xc896866e927e6f8a416ba209976115e79fa0a66f",
            "features": {
              "Fill": "Zap Grad",
              "Lines": 10,
              "Tiles": "6x6",
              "Format": "Middle",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Overlook",
              "TickTock": "Chaser1",
              "Biggering": "false",
              "Smallanator": "false",
              "Chill Factor": 0,
              "Noodle Level": 0
            },
            "minted_at": "2021-06-13T17:05:24+00:00"
          },
          {
            "token_id": "85000170",
            "invocation": 170,
            "hash": "0x18c87dda4f2470bfb95a207ed93b22676c0ac888f30654da89b72cbf78385d5d",
            "owner_address": "0x7eb9693402e49a781ac616a0e5b939ba22bb43a6",
            "features": {
              "Fill": "Stripes",
              "Lines": 12,
              "Tiles": "6x6",
              "Format": "Normal",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Citrus Prom",
              "TickTock": "None",
              "Biggering": "false",
              "Smallanator": "true",
              "Chill Factor": 0,
              "Noodle Level": 20
            },
            "minted_at": "2021-06-13T17:05:24+00:00"
          },
          {
            "token_id": "85000171",
            "invocation": 171,
            "hash": "0xc1f87b31eebdbca5b090d9a782e944becf594129f058875a2b37d852e62f74b5",
            "owner_address": "0x75adba2acf773af03bea9b84ed8cf082b09aabbe",
            "features": {
              "Fill": "Metallic",
              "Lines": 12,
              "Tiles": "5x5",
              "Format": "Bottom-up",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Wisteria",
              "TickTock": "None",
              "Biggering": "false",
              "Smallanator": "true",
              "Chill Factor": 0,
              "Noodle Level": 92
            },
            "minted_at": "2021-06-13T17:05:24+00:00"
          },
          {
            "token_id": "85000172",
            "invocation": 172,
            "hash": "0x4ac5f7ecdadfe15d12a47ab77515aea9e43124c44cf01b91046de2f6acde0703",
            "owner_address": "0x60ca911a33a85987e8979d8738e8f44317e39e0f",
            "features": {
              "Fill": "Zap Grad",
              "Lines": 12,
              "Tiles": "7x7",
              "Format": "Middle",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Fruit Salad Chews",
              "TickTock": "None",
              "Biggering": "false",
              "Smallanator": "true",
              "Chill Factor": 0,
              "Noodle Level": 120
            },
            "minted_at": "2021-06-13T17:05:24+00:00"
          },
          {
            "token_id": "85000173",
            "invocation": 173,
            "hash": "0xd273f4e8ba319617b6c8638847b9aa1e67431cd41b59db54ed9b1903cfdd724e",
            "owner_address": "0xf1c54f5a9d3f2349793c4f78fec79bcda2a2c982",
            "features": {
              "Fill": "Stripes",
              "Lines": 9,
              "Tiles": "10x10",
              "Format": "Normal",
              "Series": "Two",
              "Boosted": 3,
              "Palette": "Overlook",
              "TickTock": "None",
              "Biggering": "true",
              "Smallanator": "false",
              "Chill Factor": 3,
              "Noodle Level": 0
            },
            "minted_at": "2021-06-13T17:05:24+00:00"
          },
          {
            "token_id": "85000174",
            "invocation": 174,
            "hash": "0x59df3bee37a64a11d0b2afee39d92a8bdee7154d6d74fc6cd52f2c53b1840e26",
            "owner_address": "0x91364516d3cad16e1666261dbdbb39c881dbe9ee",
            "features": {
              "Fill": "Stripes",
              "Lines": 8,
              "Tiles": "9x9",
              "Format": "Normal",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Get in the van",
              "TickTock": "None",
              "Biggering": "false",
              "Smallanator": "false",
              "Chill Factor": 0,
              "Noodle Level": 0
            },
            "minted_at": "2021-06-13T17:05:24+00:00"
          },
          {
            "token_id": "85000175",
            "invocation": 175,
            "hash": "0xdefd50324ea25e614b23407af66785c0f60fd7d0816517d00d6a6aedf2ace6d9",
            "owner_address": "0xa95b89fcde6ce00623f4daa28940a10d04bdc94d",
            "features": {
              "Fill": "Flat",
              "Lines": 7,
              "Tiles": "9x9",
              "Format": "Bottom-up",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Flatomatic",
              "TickTock": "None",
              "Biggering": "true",
              "Smallanator": "false",
              "Chill Factor": 13,
              "Noodle Level": 0
            },
            "minted_at": "2021-06-13T17:05:24+00:00"
          },
          {
            "token_id": "85000176",
            "invocation": 176,
            "hash": "0x49add62d86bac225cf07a9085b0f412c02d22c2d0f831038e88bb500d76f64e4",
            "owner_address": "0x50c946cb9757d6de490099c0ec185a0dfe29974b",
            "features": {
              "Fill": "Rainbow",
              "Lines": 8,
              "Tiles": "8x8",
              "Format": "Normal",
              "Series": "Two",
              "Boosted": 1,
              "Palette": "Fallen Leaves",
              "TickTock": "None",
              "Biggering": "false",
              "Smallanator": "true",
              "Chill Factor": 0,
              "Noodle Level": 68
            },
            "minted_at": "2021-06-13T17:05:24+00:00"
          },
          {
            "token_id": "85000177",
            "invocation": 177,
            "hash": "0xce1054e6288828b3c9ed1cd9e13152d1424485f2840f623905a2f026a3f5a341",
            "owner_address": "0x000000000000000000000000000000000000dead",
            "features": {
              "Fill": "Flat",
              "Lines": 5,
              "Tiles": "11x11",
              "Format": "Top-down",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Flatomatic",
              "TickTock": "None",
              "Biggering": "true",
              "Smallanator": "false",
              "Chill Factor": 21,
              "Noodle Level": 0
            },
            "minted_at": "2021-06-13T17:05:28+00:00"
          },
          {
            "token_id": "85000178",
            "invocation": 178,
            "hash": "0x593b5826a3e4a43bd3447ec29b1a7cebef65336317d8469cc1573e6cf4118fa8",
            "owner_address": "0x1ff2875cd548eeae6d22f26bae2d72a50fd143c7",
            "features": {
              "Fill": "Zap Grad",
              "Lines": 13,
              "Tiles": "4x4",
              "Format": "Normal",
              "Series": "Two",
              "Boosted": 1,
              "Palette": "Signal",
              "TickTock": "None",
              "Biggering": "false",
              "Smallanator": "false",
              "Chill Factor": 0,
              "Noodle Level": 0
            },
            "minted_at": "2021-06-13T17:05:28+00:00"
          },
          {
            "token_id": "85000179",
            "invocation": 179,
            "hash": "0xa96dd1db0b1f9a19aa4905f4e6bc9f8ca32ec2a04f5b855007229e103dda03ce",
            "owner_address": "0x203930c13aae69e3adadc4809e8af3377f646718",
            "features": {
              "Fill": "Flat",
              "Lines": 5,
              "Tiles": "10x10",
              "Format": "Middle",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Flatomatic",
              "TickTock": "None",
              "Biggering": "true",
              "Smallanator": "false",
              "Chill Factor": 16,
              "Noodle Level": 0
            },
            "minted_at": "2021-06-13T17:05:28+00:00"
          },
          {
            "token_id": "85000180",
            "invocation": 180,
            "hash": "0x8444bc28b0a367d56c462dfaee004993fc57046c8993ac35c785bfc91571d57f",
            "owner_address": "0x7eb9693402e49a781ac616a0e5b939ba22bb43a6",
            "features": {
              "Fill": "Flat",
              "Lines": 10,
              "Tiles": "8x8",
              "Format": "Middle",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Flatomatic",
              "TickTock": "None",
              "Biggering": "false",
              "Smallanator": "true",
              "Chill Factor": 0,
              "Noodle Level": 168
            },
            "minted_at": "2021-06-13T17:05:28+00:00"
          },
          {
            "token_id": "85000181",
            "invocation": 181,
            "hash": "0x7482c88a442ffe2247b143c49813460a1b80cfd55ef715055c1d1c0bfa063ce6",
            "owner_address": "0x5445092634581774a680e4dedd4ec9bfc35a26fd",
            "features": {
              "Fill": "Stripes",
              "Lines": 12,
              "Tiles": "6x6",
              "Format": "Normal",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Macha Strawberry",
              "TickTock": "None",
              "Biggering": "false",
              "Smallanator": "true",
              "Chill Factor": 0,
              "Noodle Level": 52
            },
            "minted_at": "2021-06-13T17:05:28+00:00"
          },
          {
            "token_id": "85000182",
            "invocation": 182,
            "hash": "0xa52829623b7367ddb7e5c2aeff691146ca739e91e9d0b1c6c8fe97eeee13b151",
            "owner_address": "0x21f6e6b5db1fee9ed1565bdf36c323452d09070d",
            "features": {
              "Fill": "Flat",
              "Lines": 2,
              "Tiles": "10x10",
              "Format": "Outer",
              "Series": "Two",
              "Boosted": -2,
              "Palette": "Flatomatic",
              "TickTock": "None",
              "Biggering": "true",
              "Smallanator": "true",
              "Chill Factor": 10,
              "Noodle Level": 176
            },
            "minted_at": "2021-06-13T17:05:28+00:00"
          },
          {
            "token_id": "85000183",
            "invocation": 183,
            "hash": "0xb4524075c9be666176a4764a4c46ffb9f6bd188e2f09b5309120224900283edd",
            "owner_address": "0x7ad9dd852fc4f6d5b88cb06909a91cad82c66e39",
            "features": {
              "Fill": "Single Grad",
              "Lines": 6,
              "Tiles": "11x11",
              "Format": "Normal",
              "Series": "Two",
              "Boosted": 1,
              "Palette": "Overlook",
              "TickTock": "None",
              "Biggering": "true",
              "Smallanator": "true",
              "Chill Factor": 7,
              "Noodle Level": 100
            },
            "minted_at": "2021-06-13T17:05:28+00:00"
          },
          {
            "token_id": "85000184",
            "invocation": 184,
            "hash": "0x86b3670eeb67e241308d6912aedce7044475c436a88846beefaffe07f81e3b10",
            "owner_address": "0x566f193d80c76a324cf5e521d62657f4c4d4ccc5",
            "features": {
              "Fill": "Metallic",
              "Lines": 9,
              "Tiles": "9x9",
              "Format": "Normal",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Get out of the van",
              "TickTock": "None",
              "Biggering": "true",
              "Smallanator": "false",
              "Chill Factor": 3,
              "Noodle Level": 0
            },
            "minted_at": "2021-06-13T17:05:41+00:00"
          },
          {
            "token_id": "85000185",
            "invocation": 185,
            "hash": "0x50f14d178a674d8b25067e6c59eae85e02f564dca4ea22041dcd679fe88c9c2a",
            "owner_address": "0xf565d79c35758c752d3debfdd380d4eb16a3c6e3",
            "features": {
              "Fill": "Flat",
              "Lines": 10,
              "Tiles": "9x9",
              "Format": "Outer",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Flatomatic",
              "TickTock": "None",
              "Biggering": "true",
              "Smallanator": "true",
              "Chill Factor": 7,
              "Noodle Level": 124
            },
            "minted_at": "2021-06-13T17:05:41+00:00"
          },
          {
            "token_id": "85000186",
            "invocation": 186,
            "hash": "0x8d8344a4636d379fe4243783578e442e0d3002d7418fbab195849271c8311340",
            "owner_address": "0x7fd6c3844264cd50ad2183afd058e3983dcea1af",
            "features": {
              "Fill": "Flat",
              "Lines": 9,
              "Tiles": "8x8",
              "Format": "Top-down",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Flatomatic",
              "TickTock": "None",
              "Biggering": "true",
              "Smallanator": "false",
              "Chill Factor": 10,
              "Noodle Level": 0
            },
            "minted_at": "2021-06-13T17:05:41+00:00"
          },
          {
            "token_id": "85000187",
            "invocation": 187,
            "hash": "0x7f1ed0d8dc6473d7633f49636142a4b7fa9603b5ec072ffb12773ca1f88755bd",
            "owner_address": "0x000000000000000000000000000000000000dead",
            "features": {
              "Fill": "Stripes",
              "Lines": 9,
              "Tiles": "7x7",
              "Format": "Normal",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Overlook",
              "TickTock": "None",
              "Biggering": "false",
              "Smallanator": "false",
              "Chill Factor": 0,
              "Noodle Level": 0
            },
            "minted_at": "2021-06-13T17:05:44+00:00"
          },
          {
            "token_id": "85000188",
            "invocation": 188,
            "hash": "0xda109cef1059fdd56facc2e2177231f5576a92b81d8e42b855203951e316bb0f",
            "owner_address": "0xef80395b4943e1741c92a6f2119eba58cfed889a",
            "features": {
              "Fill": "Zap Grad",
              "Lines": 12,
              "Tiles": "7x7",
              "Format": "Normal",
              "Series": "Two",
              "Boosted": 2,
              "Palette": "Get in the van",
              "TickTock": "None",
              "Biggering": "false",
              "Smallanator": "true",
              "Chill Factor": 0,
              "Noodle Level": 48
            },
            "minted_at": "2021-06-13T17:05:44+00:00"
          },
          {
            "token_id": "85000189",
            "invocation": 189,
            "hash": "0x892a60bf67a86724e136eb47ac10a972b6db5b8df87cfc2c3a1c7f3d4f55ef05",
            "owner_address": "0x6782db7603b861471c2a2822168fe34a683b190d",
            "features": {
              "Fill": "Flat",
              "Lines": 11,
              "Tiles": "5x5",
              "Format": "Bottom-up",
              "Series": "Two",
              "Boosted": 1,
              "Palette": "Flatomatic",
              "TickTock": "Chaser1",
              "Biggering": "false",
              "Smallanator": "false",
              "Chill Factor": 0,
              "Noodle Level": 0
            },
            "minted_at": "2021-06-13T17:05:44+00:00"
          },
          {
            "token_id": "85000190",
            "invocation": 190,
            "hash": "0x764c8aab97d8a992400cd870e9c1955e78172f8fbf6b885e71d1f70a80327256",
            "owner_address": "0x918453d249a22b6a8535c81e21f7530cd6ab59f1",
            "features": {
              "Fill": "Rainbow",
              "Lines": 14,
              "Tiles": "5x5",
              "Format": "Outer",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Arctica",
              "TickTock": "None",
              "Biggering": "false",
              "Smallanator": "true",
              "Chill Factor": 0,
              "Noodle Level": 36
            },
            "minted_at": "2021-06-13T17:05:44+00:00"
          },
          {
            "token_id": "85000191",
            "invocation": 191,
            "hash": "0xdad7d548f5216cf2cdf2ccee546db96cbdb8d7dc236e6c66bc19497fd9640d98",
            "owner_address": "0x4e6d2af4931681a024da8feaa4faba2bf8bbdc65",
            "features": {
              "Fill": "Flat",
              "Lines": 8,
              "Tiles": "9x9",
              "Format": "Top-down",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Flatomatic",
              "TickTock": "None",
              "Biggering": "false",
              "Smallanator": "true",
              "Chill Factor": 0,
              "Noodle Level": 288
            },
            "minted_at": "2021-06-13T17:06:20+00:00"
          },
          {
            "token_id": "85000192",
            "invocation": 192,
            "hash": "0x2c19f2a2c0e35c4042a0dfd34d297a10cdfc5764ecf806f3321a0eb7f4050830",
            "owner_address": "0x4936b9c84bf1a3b6b33e6b82e64ae42bcc57c7d9",
            "features": {
              "Fill": "Stripes",
              "Lines": 9,
              "Tiles": "10x10",
              "Format": "Top-down",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Get in the van",
              "TickTock": "None",
              "Biggering": "true",
              "Smallanator": "false",
              "Chill Factor": 18,
              "Noodle Level": 0
            },
            "minted_at": "2021-06-13T17:06:20+00:00"
          },
          {
            "token_id": "85000193",
            "invocation": 193,
            "hash": "0x5e8cedb9fc4f4627639721903047873d9b5ac43e7ca3c9ffcb00722ce493b4b7",
            "owner_address": "0x4f775d5947f5127fed0e1f3eeda7d2dec3f2462d",
            "features": {
              "Fill": "Single Grad",
              "Lines": 7,
              "Tiles": "8x8",
              "Format": "Outer",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Overlook",
              "TickTock": "None",
              "Biggering": "true",
              "Smallanator": "false",
              "Chill Factor": 9,
              "Noodle Level": 0
            },
            "minted_at": "2021-06-13T17:06:20+00:00"
          },
          {
            "token_id": "85000194",
            "invocation": 194,
            "hash": "0xf8f3261d5232498cb12607a4f360eac30ef97f1370e5b3040d201a9e832bd98b",
            "owner_address": "0x91364516d3cad16e1666261dbdbb39c881dbe9ee",
            "features": {
              "Fill": "Flat",
              "Lines": 3,
              "Tiles": "12x12",
              "Format": "Bottom-up",
              "Series": "Two",
              "Boosted": -1,
              "Palette": "Flatomatic",
              "TickTock": "None",
              "Biggering": "true",
              "Smallanator": "false",
              "Chill Factor": 18,
              "Noodle Level": 0
            },
            "minted_at": "2021-06-13T17:06:20+00:00"
          },
          {
            "token_id": "85000195",
            "invocation": 195,
            "hash": "0xec9473179063db7bef745cc9036faff4ccd552fb5d918e2b79f7f7dc62ba52c3",
            "owner_address": "0xd9bb15ad632d9b254735e596c70711e27603e2d1",
            "features": {
              "Fill": "Zap Grad",
              "Lines": 8,
              "Tiles": "8x8",
              "Format": "Outer",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Indian Summer",
              "TickTock": "None",
              "Biggering": "true",
              "Smallanator": "true",
              "Chill Factor": 7,
              "Noodle Level": 88
            },
            "minted_at": "2021-06-13T17:06:20+00:00"
          },
          {
            "token_id": "85000196",
            "invocation": 196,
            "hash": "0xbdd53c81c3333ba1b0950e532eb9670ab73f1ef6684f33dbbaaf1e42d7bc2cad",
            "owner_address": "0x8b97f27090681ef6aed10de6f986e51b9eac1526",
            "features": {
              "Fill": "Rainbow",
              "Lines": 14,
              "Tiles": "5x5",
              "Format": "Outer",
              "Series": "Two",
              "Boosted": 2,
              "Palette": "Citrus Prom",
              "TickTock": "None",
              "Biggering": "false",
              "Smallanator": "true",
              "Chill Factor": 0,
              "Noodle Level": 48
            },
            "minted_at": "2021-06-13T17:06:20+00:00"
          },
          {
            "token_id": "85000197",
            "invocation": 197,
            "hash": "0xea27809ea724cc7b1bb1826fff1101e7b973a1a9e7cdac1e5d9bcd4967e76f46",
            "owner_address": "0xf969293ffb9a7a54c9e813fcae79c1de9846e2d5",
            "features": {
              "Fill": "Stripes",
              "Lines": 7,
              "Tiles": "9x9",
              "Format": "Normal",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Frank-N-Furter",
              "TickTock": "None",
              "Biggering": "true",
              "Smallanator": "false",
              "Chill Factor": 3,
              "Noodle Level": 0
            },
            "minted_at": "2021-06-13T17:06:21+00:00"
          },
          {
            "token_id": "85000198",
            "invocation": 198,
            "hash": "0x58650b561200dbdd07add54a3bd202bf6643a82467e161e9c9fa5906ee4b99a2",
            "owner_address": "0x60133cd90271bc54c81b97ae16aff9ddf1e4a3d5",
            "features": {
              "Fill": "Flat",
              "Lines": 11,
              "Tiles": "7x7",
              "Format": "Outer",
              "Series": "Two",
              "Boosted": -1,
              "Palette": "Flatomatic",
              "TickTock": "Chess",
              "Biggering": "false",
              "Smallanator": "false",
              "Chill Factor": 0,
              "Noodle Level": 0
            },
            "minted_at": "2021-06-13T17:06:21+00:00"
          },
          {
            "token_id": "85000199",
            "invocation": 199,
            "hash": "0x2c0cea071c1e838ab8045178263874ba45880d577686c09884325dfc7634b643",
            "owner_address": "0x45a94b6b788671584ae47034250ed26cf1a53eab",
            "features": {
              "Fill": "Flat",
              "Lines": 5,
              "Tiles": "10x10",
              "Format": "Middle",
              "Series": "Two",
              "Boosted": -1,
              "Palette": "Flatomatic",
              "TickTock": "None",
              "Biggering": "true",
              "Smallanator": "false",
              "Chill Factor": 15,
              "Noodle Level": 0
            },
            "minted_at": "2021-06-13T17:06:21+00:00"
          },
          {
            "token_id": "85000200",
            "invocation": 200,
            "hash": "0xbe3ae6305bf5d2e7179204a5302612e6d14a9f3a67d09c834835ecf4168ce40c",
            "owner_address": "0x5a8a2b03354647f0fa332248f89f3c52f176e103",
            "features": {
              "Fill": "Single Grad",
              "Lines": 7,
              "Tiles": "10x10",
              "Format": "Normal",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Overlook",
              "TickTock": "None",
              "Biggering": "true",
              "Smallanator": "false",
              "Chill Factor": 7,
              "Noodle Level": 0
            },
            "minted_at": "2021-06-13T17:06:21+00:00"
          },
          {
            "token_id": "85000201",
            "invocation": 201,
            "hash": "0xdef0f8ee8a9ca6fe40c334d9f9ac944ee1e89e55bed1576a53929a35e8450e91",
            "owner_address": "0x41583c6630442d3b6785000a73d63169d09e5d64",
            "features": {
              "Fill": "Stripes",
              "Lines": 10,
              "Tiles": "7x7",
              "Format": "Normal",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Citrus Prom",
              "TickTock": "None",
              "Biggering": "false",
              "Smallanator": "false",
              "Chill Factor": 0,
              "Noodle Level": 0
            },
            "minted_at": "2021-06-13T17:06:21+00:00"
          },
          {
            "token_id": "85000202",
            "invocation": 202,
            "hash": "0xc68c6d48a5f259607bd01cf0f93c72486875b39c664cb38ba3a6aa5d7ac3e660",
            "owner_address": "0x953cc221d2d43ba9b7eb9bdf17617aea39cea774",
            "features": {
              "Fill": "Flat",
              "Lines": 3,
              "Tiles": "13x13",
              "Format": "Bottom-up",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Flatomatic",
              "TickTock": "None",
              "Biggering": "true",
              "Smallanator": "false",
              "Chill Factor": 23,
              "Noodle Level": 0
            },
            "minted_at": "2021-06-13T17:06:21+00:00"
          },
          {
            "token_id": "85000203",
            "invocation": 203,
            "hash": "0x1425d45cd6fc7aa6f0a0b5a3c7010c68cc5f3e12d61092fe12fec882c895a78d",
            "owner_address": "0x86ad68874399b09a2428162e323f65b566f662e3",
            "features": {
              "Fill": "Flat",
              "Lines": 3,
              "Tiles": "15x15",
              "Format": "Outer",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Flatomatic",
              "TickTock": "None",
              "Biggering": "true",
              "Smallanator": "false",
              "Chill Factor": 34,
              "Noodle Level": 0
            },
            "minted_at": "2021-06-13T17:06:21+00:00"
          },
          {
            "token_id": "85000204",
            "invocation": 204,
            "hash": "0xf4181d5bfb170e909d29a103a0dc4002f8a33c325bc44cf9311d173bf90966d8",
            "owner_address": "0x207b3c1083a62e282d375a11f52730879cbfbbbb",
            "features": {
              "Fill": "Stripes",
              "Lines": 15,
              "Tiles": "4x4",
              "Format": "Top-down",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Matrix",
              "TickTock": "Chaser1",
              "Biggering": "false",
              "Smallanator": "false",
              "Chill Factor": 0,
              "Noodle Level": 0
            },
            "minted_at": "2021-06-13T17:06:21+00:00"
          },
          {
            "token_id": "85000205",
            "invocation": 205,
            "hash": "0x9c52227a4bca12118a127d0ce50e8f02503dcd43629e7ca8bf930f08cfedd216",
            "owner_address": "0xdae48d7b5c73a95f74caae08f7f92d3b7927f449",
            "features": {
              "Fill": "Flat",
              "Lines": 9,
              "Tiles": "8x8",
              "Format": "Top-down",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Flatomatic",
              "TickTock": "None",
              "Biggering": "true",
              "Smallanator": "false",
              "Chill Factor": 11,
              "Noodle Level": 0
            },
            "minted_at": "2021-06-13T17:06:21+00:00"
          },
          {
            "token_id": "85000206",
            "invocation": 206,
            "hash": "0x667d53768c117fae294ae008126b9101034431d74b021ca37fcac028e6ca8ff0",
            "owner_address": "0xf2cd7d1f9f49e472534d1d8c46b0b56f66463bf9",
            "features": {
              "Fill": "Stripes",
              "Lines": 8,
              "Tiles": "8x8",
              "Format": "Normal",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Get out of the van",
              "TickTock": "None",
              "Biggering": "true",
              "Smallanator": "false",
              "Chill Factor": 5,
              "Noodle Level": 0
            },
            "minted_at": "2021-06-13T17:06:23+00:00"
          },
          {
            "token_id": "85000207",
            "invocation": 207,
            "hash": "0x64ccc35e7c2edd4e64374a3a0a5f5a345410b94ab3f6bab16c97072fdbdf9912",
            "owner_address": "0x5445092634581774a680e4dedd4ec9bfc35a26fd",
            "features": {
              "Fill": "Flat",
              "Lines": 4,
              "Tiles": "9x9",
              "Format": "Outer",
              "Series": "Two",
              "Boosted": -2,
              "Palette": "Flatomatic",
              "TickTock": "None",
              "Biggering": "true",
              "Smallanator": "false",
              "Chill Factor": 14,
              "Noodle Level": 0
            },
            "minted_at": "2021-06-13T17:06:23+00:00"
          },
          {
            "token_id": "85000208",
            "invocation": 208,
            "hash": "0x642f3ad218c12f678ad0d8748f438a8b337232debea8ce4eb84688a31218dc1f",
            "owner_address": "0x7fd6c3844264cd50ad2183afd058e3983dcea1af",
            "features": {
              "Fill": "Flat",
              "Lines": 5,
              "Tiles": "12x12",
              "Format": "Bottom-up",
              "Series": "Two",
              "Boosted": -1,
              "Palette": "Flatomatic",
              "TickTock": "None",
              "Biggering": "true",
              "Smallanator": "false",
              "Chill Factor": 19,
              "Noodle Level": 0
            },
            "minted_at": "2021-06-13T17:06:23+00:00"
          },
          {
            "token_id": "85000209",
            "invocation": 209,
            "hash": "0x18d1b4d92afe246327e527524efaff68c478ad75ec13d5a899208815e7adfd77",
            "owner_address": "0xc896866e927e6f8a416ba209976115e79fa0a66f",
            "features": {
              "Fill": "Stripes",
              "Lines": 8,
              "Tiles": "12x12",
              "Format": "Normal",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Overlook",
              "TickTock": "None",
              "Biggering": "true",
              "Smallanator": "true",
              "Chill Factor": 10,
              "Noodle Level": 160
            },
            "minted_at": "2021-06-13T17:06:23+00:00"
          },
          {
            "token_id": "85000210",
            "invocation": 210,
            "hash": "0x9f0a2fb44a66215247df3e4157990d5223c4983fb5f7a58b4a406a6353901fa5",
            "owner_address": "0x43b3a12cdc49003c9537d0ab92800a97c0a8959e",
            "features": {
              "Fill": "Flat",
              "Lines": 8,
              "Tiles": "9x9",
              "Format": "Middle",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Flatomatic",
              "TickTock": "None",
              "Biggering": "true",
              "Smallanator": "false",
              "Chill Factor": 12,
              "Noodle Level": 0
            },
            "minted_at": "2021-06-13T17:06:23+00:00"
          },
          {
            "token_id": "85000211",
            "invocation": 211,
            "hash": "0xfa07512c4190fec1c635f5bb42ebcf0cca16d790a278eb8fafa08ae92e342220",
            "owner_address": "0x091b7b47abdddab99b4beac015521dc1ebef45e8",
            "features": {
              "Fill": "Stripes",
              "Lines": 7,
              "Tiles": "10x10",
              "Format": "Normal",
              "Series": "Two",
              "Boosted": 1,
              "Palette": "Overlook",
              "TickTock": "None",
              "Biggering": "false",
              "Smallanator": "false",
              "Chill Factor": 0,
              "Noodle Level": 0
            },
            "minted_at": "2021-06-13T17:06:23+00:00"
          },
          {
            "token_id": "85000212",
            "invocation": 212,
            "hash": "0x501bc76c2c3189f77763f3f557fb5dd239cb7be9988cb7a804e95a31f7c36a32",
            "owner_address": "0x9c815f1bb7ac2d54e473b58a15345c9dc2630ffa",
            "features": {
              "Fill": "Stripes",
              "Lines": 9,
              "Tiles": "10x10",
              "Format": "Outer",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Get in the van",
              "TickTock": "None",
              "Biggering": "true",
              "Smallanator": "false",
              "Chill Factor": 16,
              "Noodle Level": 0
            },
            "minted_at": "2021-06-13T17:07:00+00:00"
          },
          {
            "token_id": "85000213",
            "invocation": 213,
            "hash": "0x72315969b7711a223b6e9c21c5ceb6f39f101327de88c207e811dbb8959711d9",
            "owner_address": "0x0f0eae91990140c560d4156db4f00c854dc8f09e",
            "features": {
              "Fill": "Stripes",
              "Lines": 9,
              "Tiles": "7x7",
              "Format": "Normal",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Indian Summer",
              "TickTock": "None",
              "Biggering": "false",
              "Smallanator": "false",
              "Chill Factor": 0,
              "Noodle Level": 0
            },
            "minted_at": "2021-06-13T17:07:00+00:00"
          },
          {
            "token_id": "85000214",
            "invocation": 214,
            "hash": "0x11df9a2b5868fbb6dcbac732ee0c6748eafe39d494765f195c6d8d9c23316ebe",
            "owner_address": "0x6d1db4a7e83dae0eee7e95d421722d46d2a7e94b",
            "features": {
              "Fill": "Stripes",
              "Lines": 12,
              "Tiles": "6x6",
              "Format": "Normal",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Indian Summer",
              "TickTock": "None",
              "Biggering": "false",
              "Smallanator": "false",
              "Chill Factor": 0,
              "Noodle Level": 0
            },
            "minted_at": "2021-06-13T17:07:00+00:00"
          },
          {
            "token_id": "85000215",
            "invocation": 215,
            "hash": "0xa93660b81763cd5523aaf4e51be69f29b1791290bfaabfb2ddd8279d1b754c39",
            "owner_address": "0x9c815f1bb7ac2d54e473b58a15345c9dc2630ffa",
            "features": {
              "Fill": "Stripes",
              "Lines": 11,
              "Tiles": "6x6",
              "Format": "Normal",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Macha Strawberry",
              "TickTock": "None",
              "Biggering": "false",
              "Smallanator": "false",
              "Chill Factor": 0,
              "Noodle Level": 0
            },
            "minted_at": "2021-06-13T17:07:00+00:00"
          },
          {
            "token_id": "85000216",
            "invocation": 216,
            "hash": "0x14283661f7139eacbdc0c29da7dc2346456cd6d4ac3c26cea5db959a7c40352b",
            "owner_address": "0x7eb9693402e49a781ac616a0e5b939ba22bb43a6",
            "features": {
              "Fill": "Stripes",
              "Lines": 11,
              "Tiles": "6x6",
              "Format": "Normal",
              "Series": "Two",
              "Boosted": -2,
              "Palette": "Fruit Salad Chews",
              "TickTock": "None",
              "Biggering": "false",
              "Smallanator": "false",
              "Chill Factor": 0,
              "Noodle Level": 0
            },
            "minted_at": "2021-06-13T17:07:00+00:00"
          },
          {
            "token_id": "85000217",
            "invocation": 217,
            "hash": "0x562401a65cba5a846db32d71399fe0747a8011abe4b6bea2e7a49229ad8e40d0",
            "owner_address": "0x6ad8fe4e495e9709be1a2cc8a04646078e6b1ab0",
            "features": {
              "Fill": "Flat",
              "Lines": 5,
              "Tiles": "12x12",
              "Format": "Middle",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Flatomatic",
              "TickTock": "None",
              "Biggering": "true",
              "Smallanator": "false",
              "Chill Factor": 23,
              "Noodle Level": 0
            },
            "minted_at": "2021-06-13T17:07:16+00:00"
          },
          {
            "token_id": "85000218",
            "invocation": 218,
            "hash": "0x9c276d1511b0390c904af69b1baefc260d6a2860eeccc0fecf814f28b007efb9",
            "owner_address": "0x95318bb3496ad4c07ef8e67c1c3429b389551410",
            "features": {
              "Fill": "Metallic",
              "Lines": 7,
              "Tiles": "9x9",
              "Format": "Normal",
              "Series": "Two",
              "Boosted": 2,
              "Palette": "Macha Strawberry",
              "TickTock": "None",
              "Biggering": "true",
              "Smallanator": "false",
              "Chill Factor": 6,
              "Noodle Level": 0
            },
            "minted_at": "2021-06-13T17:07:16+00:00"
          },
          {
            "token_id": "85000219",
            "invocation": 219,
            "hash": "0x26422b184cf17f1396106a010a12a7835092e25013f10dc166531181a6f762ae",
            "owner_address": "0x7eb9693402e49a781ac616a0e5b939ba22bb43a6",
            "features": {
              "Fill": "Stripes",
              "Lines": 10,
              "Tiles": "7x7",
              "Format": "Middle",
              "Series": "Two",
              "Boosted": 1,
              "Palette": "Frank-N-Furter",
              "TickTock": "None",
              "Biggering": "false",
              "Smallanator": "true",
              "Chill Factor": 0,
              "Noodle Level": 112
            },
            "minted_at": "2021-06-13T17:07:16+00:00"
          },
          {
            "token_id": "85000220",
            "invocation": 220,
            "hash": "0x9b1c010edc136e60c4621d58b74378cb43de5a122fc3784319e3acb7e00df934",
            "owner_address": "0xf7d4cc70520404126ef1eabfe227d8ab8ec22f9f",
            "features": {
              "Fill": "Rainbow",
              "Lines": 8,
              "Tiles": "8x8",
              "Format": "Bottom-up",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Fruit Salad Chews",
              "TickTock": "None",
              "Biggering": "true",
              "Smallanator": "false",
              "Chill Factor": 9,
              "Noodle Level": 0
            },
            "minted_at": "2021-06-13T17:07:16+00:00"
          },
          {
            "token_id": "85000221",
            "invocation": 221,
            "hash": "0xf443476b98e8e0297cdfca09458205aff2fa90e69fbf2c1c626d74d668119c45",
            "owner_address": "0x9c815f1bb7ac2d54e473b58a15345c9dc2630ffa",
            "features": {
              "Fill": "Zap Grad",
              "Lines": 9,
              "Tiles": "11x11",
              "Format": "Normal",
              "Series": "Two",
              "Boosted": 2,
              "Palette": "Fruit Salad Chews",
              "TickTock": "None",
              "Biggering": "true",
              "Smallanator": "false",
              "Chill Factor": 9,
              "Noodle Level": 0
            },
            "minted_at": "2021-06-13T17:07:16+00:00"
          },
          {
            "token_id": "85000222",
            "invocation": 222,
            "hash": "0xf831560e68b8a273dc715782969d1c7df267efc63e5ddd8cb5f34c17b6b1d455",
            "owner_address": "0xf2cd7d1f9f49e472534d1d8c46b0b56f66463bf9",
            "features": {
              "Fill": "Flat",
              "Lines": 5,
              "Tiles": "13x13",
              "Format": "Outer",
              "Series": "Two",
              "Boosted": -2,
              "Palette": "Flatomatic",
              "TickTock": "None",
              "Biggering": "true",
              "Smallanator": "false",
              "Chill Factor": 29,
              "Noodle Level": 0
            },
            "minted_at": "2021-06-13T17:07:16+00:00"
          },
          {
            "token_id": "85000223",
            "invocation": 223,
            "hash": "0xd03834429b6dbd98ed3d1535073dc1a15d2819bc8c7b84907531f39fab568bab",
            "owner_address": "0xf969293ffb9a7a54c9e813fcae79c1de9846e2d5",
            "features": {
              "Fill": "Metallic",
              "Lines": 11,
              "Tiles": "7x7",
              "Format": "Outer",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Get out of the van",
              "TickTock": "None",
              "Biggering": "false",
              "Smallanator": "false",
              "Chill Factor": 0,
              "Noodle Level": 0
            },
            "minted_at": "2021-06-13T17:07:19+00:00"
          },
          {
            "token_id": "85000224",
            "invocation": 224,
            "hash": "0x7f19e5e8c96aeddac06b7dafafb7746604d9562e3d9099b392860a6ad886d9ec",
            "owner_address": "0x7eb9693402e49a781ac616a0e5b939ba22bb43a6",
            "features": {
              "Fill": "Stripes",
              "Lines": 10,
              "Tiles": "6x6",
              "Format": "Middle",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Get out of the van",
              "TickTock": "None",
              "Biggering": "false",
              "Smallanator": "true",
              "Chill Factor": 0,
              "Noodle Level": 84
            },
            "minted_at": "2021-06-13T17:07:19+00:00"
          },
          {
            "token_id": "85000225",
            "invocation": 225,
            "hash": "0xe1eb4997f878655cf21497e14b6d8f1a8c252d221d8c75952bc105388d8d80b4",
            "owner_address": "0x68a7ac13477aad590982293feeeb786a00276cf2",
            "features": {
              "Fill": "Stripes",
              "Lines": 10,
              "Tiles": "6x6",
              "Format": "Outer",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Get in the van",
              "TickTock": "None",
              "Biggering": "false",
              "Smallanator": "true",
              "Chill Factor": 0,
              "Noodle Level": 64
            },
            "minted_at": "2021-06-13T17:07:24+00:00"
          },
          {
            "token_id": "85000226",
            "invocation": 226,
            "hash": "0x428ce56168c04d7b2a41bac57c950dbcafa013313d8aaeace2b58fb0eeee1052",
            "owner_address": "0x0be316ce2e6a0bdb979ea3459d3862043e048dbc",
            "features": {
              "Fill": "Zap Grad",
              "Lines": 8,
              "Tiles": "8x8",
              "Format": "Outer",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Citrus Prom",
              "TickTock": "None",
              "Biggering": "true",
              "Smallanator": "true",
              "Chill Factor": 8,
              "Noodle Level": 84
            },
            "minted_at": "2021-06-13T17:07:24+00:00"
          },
          {
            "token_id": "85000227",
            "invocation": 227,
            "hash": "0x47e9931b03244961a1bccd5246761c79c5cdef6367935146ed67c64934063a5f",
            "owner_address": "0x9c815f1bb7ac2d54e473b58a15345c9dc2630ffa",
            "features": {
              "Fill": "Stripes",
              "Lines": 12,
              "Tiles": "6x6",
              "Format": "Normal",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Overlook",
              "TickTock": "None",
              "Biggering": "false",
              "Smallanator": "true",
              "Chill Factor": 0,
              "Noodle Level": 32
            },
            "minted_at": "2021-06-13T17:07:24+00:00"
          },
          {
            "token_id": "85000228",
            "invocation": 228,
            "hash": "0x0f8f79cb168a376b61e62cc337868218980e1b91c8b0561b5b6e59929a743e6a",
            "owner_address": "0xdd19308a9731cdecb67e0d80ca6823394208c045",
            "features": {
              "Fill": "Stripes",
              "Lines": 9,
              "Tiles": "7x7",
              "Format": "Outer",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Signal",
              "TickTock": "Chaser4",
              "Biggering": "false",
              "Smallanator": "false",
              "Chill Factor": 0,
              "Noodle Level": 0
            },
            "minted_at": "2021-06-13T17:07:24+00:00"
          },
          {
            "token_id": "85000229",
            "invocation": 229,
            "hash": "0xcd27672ae5ef5a5a68a519c72ba0426153bedeeb4aae600acc5276eda588ccfe",
            "owner_address": "0x96d2ae6327803eaa347949cb00b64ba91bdff778",
            "features": {
              "Fill": "Zap Grad",
              "Lines": 12,
              "Tiles": "6x6",
              "Format": "Top-down",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Monochrome",
              "TickTock": "None",
              "Biggering": "false",
              "Smallanator": "true",
              "Chill Factor": 0,
              "Noodle Level": 120
            },
            "minted_at": "2021-06-13T17:07:24+00:00"
          },
          {
            "token_id": "85000230",
            "invocation": 230,
            "hash": "0xf8aafd985eb8a7c7ab935b9b30f21ebf48635dbed5382b242aa7bb8dc055d828",
            "owner_address": "0xae739abe93ab972fd43e92baa68ad49fe0f052b9",
            "features": {
              "Fill": "Stripes",
              "Lines": 9,
              "Tiles": "9x9",
              "Format": "Bottom-up",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Overlook",
              "TickTock": "None",
              "Biggering": "true",
              "Smallanator": "false",
              "Chill Factor": 10,
              "Noodle Level": 0
            },
            "minted_at": "2021-06-13T17:07:49+00:00"
          },
          {
            "token_id": "85000231",
            "invocation": 231,
            "hash": "0x4aacef360808fd98c461cfd3fd203136ab9b8e9a52cd931c5ef1c94f3239ca78",
            "owner_address": "0xc3cc969750b2337ffd08c056349dd0416228adc9",
            "features": {
              "Fill": "Stripes",
              "Lines": 9,
              "Tiles": "7x7",
              "Format": "Outer",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Overlook",
              "TickTock": "None",
              "Biggering": "false",
              "Smallanator": "false",
              "Chill Factor": 0,
              "Noodle Level": 0
            },
            "minted_at": "2021-06-13T17:07:49+00:00"
          },
          {
            "token_id": "85000232",
            "invocation": 232,
            "hash": "0xd021aef95dfb81553e35e3b192ad62429b201a1da345aaaf190c21cf271c03e1",
            "owner_address": "0x4e6d2af4931681a024da8feaa4faba2bf8bbdc65",
            "features": {
              "Fill": "Stripes",
              "Lines": 9,
              "Tiles": "8x8",
              "Format": "Outer",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Fruit Salad Chews",
              "TickTock": "None",
              "Biggering": "true",
              "Smallanator": "false",
              "Chill Factor": 9,
              "Noodle Level": 0
            },
            "minted_at": "2021-06-13T17:07:49+00:00"
          },
          {
            "token_id": "85000233",
            "invocation": 233,
            "hash": "0x9b3f14878980690cef90e0a57b1e9a746283d58924ee223a1b17c53651d81d86",
            "owner_address": "0x3397a5092005920c83a89b335117105da9375446",
            "features": {
              "Fill": "Rainbow",
              "Lines": 13,
              "Tiles": "6x6",
              "Format": "Top-down",
              "Series": "Two",
              "Boosted": -2,
              "Palette": "Fruit Salad Chews",
              "TickTock": "None",
              "Biggering": "false",
              "Smallanator": "false",
              "Chill Factor": 0,
              "Noodle Level": 0
            },
            "minted_at": "2021-06-13T17:07:50+00:00"
          },
          {
            "token_id": "85000234",
            "invocation": 234,
            "hash": "0xae8eea7271dce4c4ac8bd7c1b8f7bc722daf073bd486aeccbe0823cb117f6e90",
            "owner_address": "0xc896866e927e6f8a416ba209976115e79fa0a66f",
            "features": {
              "Fill": "Flat",
              "Lines": 12,
              "Tiles": "7x7",
              "Format": "Middle",
              "Series": "Two",
              "Boosted": 1,
              "Palette": "Flatomatic",
              "TickTock": "None",
              "Biggering": "false",
              "Smallanator": "true",
              "Chill Factor": 0,
              "Noodle Level": 124
            },
            "minted_at": "2021-06-13T17:07:58+00:00"
          },
          {
            "token_id": "85000235",
            "invocation": 235,
            "hash": "0x6bc02c26bf2ca3985f1cfc23c52859498e88770a04e13af59619f548f9bc61cb",
            "owner_address": "0xf7d4cc70520404126ef1eabfe227d8ab8ec22f9f",
            "features": {
              "Fill": "Rainbow",
              "Lines": 12,
              "Tiles": "7x7",
              "Format": "Bottom-up",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Fruit Salad Chews",
              "TickTock": "None",
              "Biggering": "false",
              "Smallanator": "true",
              "Chill Factor": 0,
              "Noodle Level": 180
            },
            "minted_at": "2021-06-13T17:07:58+00:00"
          },
          {
            "token_id": "85000236",
            "invocation": 236,
            "hash": "0xb6a1963befb3cbdfaa8b84a572dcbf00c460927652a8a3c7ecc9f1ec522f98d2",
            "owner_address": "0x23fed2634fdc629c1a82eb6ed3391efad2a58670",
            "features": {
              "Fill": "Rainbow",
              "Lines": 15,
              "Tiles": "4x4",
              "Format": "Middle",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Get out of the van",
              "TickTock": "None",
              "Biggering": "false",
              "Smallanator": "false",
              "Chill Factor": 0,
              "Noodle Level": 0
            },
            "minted_at": "2021-06-13T17:08:13+00:00"
          },
          {
            "token_id": "85000237",
            "invocation": 237,
            "hash": "0x3e32c45609e48e8467197551a3e3117c05fcb1ba8d36fe6d454ff534b705da0b",
            "owner_address": "0x8c778a46752a46d09b50aeab6425dcc39360e248",
            "features": {
              "Fill": "Zap Grad",
              "Lines": 9,
              "Tiles": "7x7",
              "Format": "Normal",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Frank-N-Furter",
              "TickTock": "None",
              "Biggering": "false",
              "Smallanator": "false",
              "Chill Factor": 0,
              "Noodle Level": 0
            },
            "minted_at": "2021-06-13T17:08:13+00:00"
          },
          {
            "token_id": "85000238",
            "invocation": 238,
            "hash": "0x70f81cdc334cfdbef1baaa3431f0f5d80224997b4fe69646d83a57a58da9d21b",
            "owner_address": "0x65e6d2ce4c7d095a84433b6e10b4ee98507fb1e1",
            "features": {
              "Fill": "Stripes",
              "Lines": 9,
              "Tiles": "8x8",
              "Format": "Bottom-up",
              "Series": "Two",
              "Boosted": 3,
              "Palette": "Get out of the van",
              "TickTock": "None",
              "Biggering": "true",
              "Smallanator": "false",
              "Chill Factor": 9,
              "Noodle Level": 0
            },
            "minted_at": "2021-06-13T17:08:13+00:00"
          },
          {
            "token_id": "85000239",
            "invocation": 239,
            "hash": "0x435ac7d532db804bc924267d9df92eee50c39ce0ae47f5f3386361f4846f3e41",
            "owner_address": "0x717a578e4a157ea52ee989be75f15957f294d1a9",
            "features": {
              "Fill": "Zap Grad",
              "Lines": 8,
              "Tiles": "7x7",
              "Format": "Middle",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Monochrome",
              "TickTock": "None",
              "Biggering": "false",
              "Smallanator": "true",
              "Chill Factor": 0,
              "Noodle Level": 124
            },
            "minted_at": "2021-06-13T17:08:13+00:00"
          },
          {
            "token_id": "85000240",
            "invocation": 240,
            "hash": "0x7a81f21853693929765cff58a08cdc428e885c0ba63f763205e0f95627a99606",
            "owner_address": "0x91364516d3cad16e1666261dbdbb39c881dbe9ee",
            "features": {
              "Fill": "Single Grad",
              "Lines": 7,
              "Tiles": "8x8",
              "Format": "Normal",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Wisteria",
              "TickTock": "None",
              "Biggering": "false",
              "Smallanator": "false",
              "Chill Factor": 0,
              "Noodle Level": 0
            },
            "minted_at": "2021-06-13T17:08:13+00:00"
          },
          {
            "token_id": "85000241",
            "invocation": 241,
            "hash": "0x6701fd1fcb2bdc6590041e6703df78b31a158825678bb0e123e3f1180147e2ce",
            "owner_address": "0x312b7b6e5e2c96c7b47f06a18f15cb00b7cd4aec",
            "features": {
              "Fill": "Flat",
              "Lines": 4,
              "Tiles": "13x13",
              "Format": "Middle",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Flatomatic",
              "TickTock": "None",
              "Biggering": "true",
              "Smallanator": "false",
              "Chill Factor": 26,
              "Noodle Level": 0
            },
            "minted_at": "2021-06-13T17:08:13+00:00"
          },
          {
            "token_id": "85000242",
            "invocation": 242,
            "hash": "0x609f2c87e437e4990049f09e5bc58a126b523c11cc5055c4fa79c5303a98c8b9",
            "owner_address": "0x42e250824bdf98f3e450784b0c1cdc3ac2f157e2",
            "features": {
              "Fill": "Flat",
              "Lines": 4,
              "Tiles": "10x10",
              "Format": "Bottom-up",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Flatomatic",
              "TickTock": "None",
              "Biggering": "true",
              "Smallanator": "true",
              "Chill Factor": 9,
              "Noodle Level": 176
            },
            "minted_at": "2021-06-13T17:08:13+00:00"
          },
          {
            "token_id": "85000243",
            "invocation": 243,
            "hash": "0x5300f6a8faae77d13b948d520a454a120057924b001496b1e48006ff1012d320",
            "owner_address": "0x49d62955a8eee8cb8575a8d0671ba1ee1fcc0906",
            "features": {
              "Fill": "Rainbow",
              "Lines": 7,
              "Tiles": "8x8",
              "Format": "Bottom-up",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Get in the van",
              "TickTock": "None",
              "Biggering": "true",
              "Smallanator": "false",
              "Chill Factor": 8,
              "Noodle Level": 0
            },
            "minted_at": "2021-06-13T17:08:13+00:00"
          },
          {
            "token_id": "85000244",
            "invocation": 244,
            "hash": "0xeaa0cba636b82e463ced847be60a73f7357543bd524518d074bf03099de4f37f",
            "owner_address": "0x23fed2634fdc629c1a82eb6ed3391efad2a58670",
            "features": {
              "Fill": "Stripes",
              "Lines": 12,
              "Tiles": "6x6",
              "Format": "Normal",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Playful",
              "TickTock": "Chaser4",
              "Biggering": "false",
              "Smallanator": "false",
              "Chill Factor": 0,
              "Noodle Level": 0
            },
            "minted_at": "2021-06-13T17:08:44+00:00"
          },
          {
            "token_id": "85000245",
            "invocation": 245,
            "hash": "0x605040af406d7da9c6288808b9fdc594abd093d9bc0643445a39d74ab84886d8",
            "owner_address": "0x54be3a794282c030b15e43ae2bb182e14c409c5e",
            "features": {
              "Fill": "Flat",
              "Lines": 3,
              "Tiles": "15x15",
              "Format": "Bottom-up",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Flatomatic",
              "TickTock": "None",
              "Biggering": "true",
              "Smallanator": "false",
              "Chill Factor": 36,
              "Noodle Level": 0
            },
            "minted_at": "2021-06-13T17:08:44+00:00"
          },
          {
            "token_id": "85000246",
            "invocation": 246,
            "hash": "0x95c5dc40aa38d4dff5979d2581e6209da57152893e571d8f7068ba143b6e455e",
            "owner_address": "0x60ca911a33a85987e8979d8738e8f44317e39e0f",
            "features": {
              "Fill": "Stripes",
              "Lines": 11,
              "Tiles": "6x6",
              "Format": "Bottom-up",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Indian Summer",
              "TickTock": "None",
              "Biggering": "false",
              "Smallanator": "false",
              "Chill Factor": 0,
              "Noodle Level": 0
            },
            "minted_at": "2021-06-13T17:08:44+00:00"
          },
          {
            "token_id": "85000247",
            "invocation": 247,
            "hash": "0x6fbbae2d17666f159e7ee98e308783703ee6953303f106696a574810aa4e2f4b",
            "owner_address": "0x9c815f1bb7ac2d54e473b58a15345c9dc2630ffa",
            "features": {
              "Fill": "Stripes",
              "Lines": 8,
              "Tiles": "9x9",
              "Format": "Outer",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Fallen Leaves",
              "TickTock": "None",
              "Biggering": "true",
              "Smallanator": "true",
              "Chill Factor": 9,
              "Noodle Level": 124
            },
            "minted_at": "2021-06-13T17:08:44+00:00"
          },
          {
            "token_id": "85000248",
            "invocation": 248,
            "hash": "0x0fb06a558852a55ad3a8c1bf89f02e0a67291fbb989864266a8e544ea3373874",
            "owner_address": "0xaf1c0bace177288e0ebc8956242b30ede92111bc",
            "features": {
              "Fill": "Ninja",
              "Lines": 2,
              "Tiles": "14x14",
              "Format": "Bottom-up",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Monochrome",
              "TickTock": "None",
              "Biggering": "true",
              "Smallanator": "true",
              "Chill Factor": 19,
              "Noodle Level": 328
            },
            "minted_at": "2021-06-13T17:08:44+00:00"
          },
          {
            "token_id": "85000249",
            "invocation": 249,
            "hash": "0x6e6484fd2c8a3cfbedb7862facf5c103938924af7f4df3ca181c8d84ca9cfa96",
            "owner_address": "0x7db2a7c18b2cdc2d7cf76f24be7e08f56d399592",
            "features": {
              "Fill": "Flat",
              "Lines": 8,
              "Tiles": "10x10",
              "Format": "Bottom-up",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Flatomatic",
              "TickTock": "None",
              "Biggering": "true",
              "Smallanator": "true",
              "Chill Factor": 9,
              "Noodle Level": 172
            },
            "minted_at": "2021-06-13T17:08:50+00:00"
          },
          {
            "token_id": "85000250",
            "invocation": 250,
            "hash": "0x5dd159aae94a316815be067cb89718f7c50496bedbe84c9f6aac920ccfbcb8f7",
            "owner_address": "0x2672125fbbbfc8b5a9e22d4146ac918732f0948c",
            "features": {
              "Fill": "Flat",
              "Lines": 5,
              "Tiles": "10x10",
              "Format": "Outer",
              "Series": "Two",
              "Boosted": -2,
              "Palette": "Flatomatic",
              "TickTock": "None",
              "Biggering": "true",
              "Smallanator": "false",
              "Chill Factor": 17,
              "Noodle Level": 0
            },
            "minted_at": "2021-06-13T17:08:50+00:00"
          },
          {
            "token_id": "85000251",
            "invocation": 251,
            "hash": "0x936d339abcddeef8d85035fc657eff9485b055841ee703ca53276ee40706226f",
            "owner_address": "0xc896866e927e6f8a416ba209976115e79fa0a66f",
            "features": {
              "Fill": "Single Grad",
              "Lines": 6,
              "Tiles": "9x9",
              "Format": "Normal",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Frank-N-Furter",
              "TickTock": "None",
              "Biggering": "true",
              "Smallanator": "true",
              "Chill Factor": 4,
              "Noodle Level": 84
            },
            "minted_at": "2021-06-13T17:08:50+00:00"
          },
          {
            "token_id": "85000252",
            "invocation": 252,
            "hash": "0xfdd1d280d18760e7902ed361f3140aa11be763e391eb83c647584a0defcdece2",
            "owner_address": "0x02e67cad0e29ff8a5fb7abd28c219373cd787535",
            "features": {
              "Fill": "Stripes",
              "Lines": 12,
              "Tiles": "7x7",
              "Format": "Normal",
              "Series": "Two",
              "Boosted": 2,
              "Palette": "Macha Strawberry",
              "TickTock": "None",
              "Biggering": "false",
              "Smallanator": "true",
              "Chill Factor": 0,
              "Noodle Level": 56
            },
            "minted_at": "2021-06-13T17:08:50+00:00"
          },
          {
            "token_id": "85000253",
            "invocation": 253,
            "hash": "0x5810d0a3e85f3019bb5cd5e2663a5dbcf34586d4d1b97812a22f69e84b990f9a",
            "owner_address": "0x2d20653c0c4e736f653643040312780edbad54f2",
            "features": {
              "Fill": "Single Grad",
              "Lines": 6,
              "Tiles": "10x10",
              "Format": "Normal",
              "Series": "Two",
              "Boosted": 1,
              "Palette": "Get in the van",
              "TickTock": "None",
              "Biggering": "true",
              "Smallanator": "true",
              "Chill Factor": 5,
              "Noodle Level": 108
            },
            "minted_at": "2021-06-13T17:08:50+00:00"
          },
          {
            "token_id": "85000254",
            "invocation": 254,
            "hash": "0x20ae612218fbacd27b3769232a14a9604d43c4b06489d62589c0d9ea864f38a4",
            "owner_address": "0x54be3a794282c030b15e43ae2bb182e14c409c5e",
            "features": {
              "Fill": "Stripes",
              "Lines": 11,
              "Tiles": "6x6",
              "Format": "Normal",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Frank-N-Furter",
              "TickTock": "Chess",
              "Biggering": "false",
              "Smallanator": "false",
              "Chill Factor": 0,
              "Noodle Level": 0
            },
            "minted_at": "2021-06-13T17:08:56+00:00"
          },
          {
            "token_id": "85000255",
            "invocation": 255,
            "hash": "0x498a4bcdceecffe1d904a87f5b5b5ff95ee9c3c8cb7127e77954f6d94ea15df6",
            "owner_address": "0xc40df87e16339f21fbb2e59fb38bf2a957a16ffd",
            "features": {
              "Fill": "Zap Grad",
              "Lines": 9,
              "Tiles": "7x7",
              "Format": "Normal",
              "Series": "Two",
              "Boosted": 0,
              "Palette": "Indian Summer",
              "TickTock": "Chaser1",
              "Biggering": "false",
              "Smallanator": "false",
              "Chill Factor": 0,
              "Noodle Level": 0
            },
            "minted_at": "2021-06-13T17:08:56+00:00"
          }
        ]
      }
    }
  },
  "coordinatorEditionSummary": {
    "Fill": {
      "Stripes": 94,
      "Flat": 81,
      "Zap Grad": 28,
      "Rainbow": 24,
      "Single Grad": 20,
      "Metallic": 8,
      "Ninja": 1
    },
    "TickTock": {
      "None": 230,
      "Chaser1": 6,
      "Chaser4": 9,
      "Wipe": 3,
      "Chess": 7,
      "Sweep": 1
    }
  },
  "coordinatorVisualReview": {
    "observer": "OpenAI Codex",
    "recordedAt": "2026-09-18T02:43:13.473713+00:00",
    "observations": [
      {
        "tokenId": "85000228",
        "url": "https://generator.artblocks.io/1/0xa7d8d9ef8d8ce8992df33d8b8cf4aebabd5bd270/85000228",
        "method": "Original-renderer screenshot observation",
        "observation": "Red/coral, pale and black outlined concentric bands with small blue centres, filling a uniform tile grid. Between two screenshots, upper-left and upper-middle routes changed from horizontal connections into rounded returns, while lower circular targets remained recognisable. No frame count or exact elapsed interval measured."
      },
      {
        "tokenId": "85000000",
        "url": "https://generator.artblocks.io/1/0xa7d8d9ef8d8ce8992df33d8b8cf4aebabd5bd270/85000000",
        "method": "Original-renderer screenshot observation",
        "observation": "Dense green and black bands; broad turns and smaller nested loops. Strong long vertical strip down middle, horizontal run across upper-left/middle. Two screenshots unchanged visibly; no pixel signature measured."
      },
      {
        "tokenId": "85000010",
        "url": "https://generator.artblocks.io/1/0xa7d8d9ef8d8ce8992df33d8b8cf4aebabd5bd270/85000010",
        "method": "Original-renderer screenshot observation",
        "observation": "Pale blue filled ribbons separated by black outlines. Larger curves among smaller turns; strong horizontal bars near upper-right and lower-left. Single original-renderer screenshot."
      },
      {
        "tokenId": "85000248",
        "url": "https://generator.artblocks.io/1/0xa7d8d9ef8d8ce8992df33d8b8cf4aebabd5bd270/85000248",
        "method": "Original-renderer screenshot observation",
        "observation": "White narrow lines on black, combining small loops and crossings with much larger turns lower half. Uniform white line character makes differently sized paths particularly visible. Single original-renderer screenshot."
      }
    ],
    "limits": "No audio audition, pixel signatures, exact frame counts or timed cycle measurements."
  },
  "coordinatorAnimationClassification": {
    "rainbow": 24,
    "ticktock": 26,
    "overlap": 0,
    "union": 50,
    "basis": "Fresh indexed features combined with inspected animation condition; not runtime testing of all256"
  },
  "coordinatorArtistSourceReview": {
    "sourceId": "S14",
    "scope": "Actual Plotter Art section read including Series1/2 and later physical plot distinctions",
    "finding": "Direct retrospective development account found, correcting submitted claim that no project narrative was available."
  },
  "removedSourceRecords": [
    {
      "id": "S08",
      "title": "Census of the licence field across all projects on the Art Blocks contract (GraphQL projects_metadata)",
      "url": "https://artblocks-mainnet.hasura.app/v1/graphql",
      "author": "Art Blocks public GraphQL index",
      "publisher": "Art Blocks public GraphQL index",
      "publicationDate": null,
      "accessedAt": "2026-09-18",
      "accessOutcome": "inspected",
      "accessMethod": "HTTP POST, application/json",
      "archiveUrl": null,
      "evidenceLocators": [
        "query: query{projects_metadata(where:{contract_address:{_eq:\"0xa7d8d9ef8d8ce8992df33d8b8cf4aebabd5bd270\"}},limit:600){project_id license link_to_license}}",
        "359 projects returning 34 distinct licence label strings",
        "NIFTY family variants on the same contract: NIFTY, NIFTY License, NIFTY license, Nifty, Nifty License, Nifty license, NIFTY License Version 2.0",
        "87 of 359 projects carry any value in link_to_license"
      ],
      "submittedAuthor": null,
      "submittedAccessOutcome": "HTTP 200, 359 rows returned",
      "inspectionAttribution": "Submitted Claude research; independent coordinator verification pending."
    },
    {
      "id": "S09",
      "title": "Licensing Cheat Sheet",
      "url": "https://medium.com/the-link-art-blocks/licensing-cheat-sheet-54223616ea50",
      "author": "Druid",
      "publisher": "The Link, Art Blocks community publication, on Medium",
      "publicationDate": "2021-06-10",
      "accessedAt": "2026-09-18",
      "accessOutcome": "inspected",
      "accessMethod": "fetch and read",
      "archiveUrl": null,
      "evidenceLocators": [
        "NIFTY described as shorthand for NFT License 2.0, developed by Dapper Labs",
        "permits personal non-commercial use and merchandising up to a stated annual ceiling",
        "prohibits modifying the art, third-party marketing use and trademark claims"
      ],
      "submittedAuthor": "Druid",
      "submittedAccessOutcome": "HTTP 200, article read",
      "inspectionAttribution": "Submitted Claude research; independent coordinator verification pending."
    },
    {
      "id": "S10",
      "title": "Drawing Machines and Notes from Art Studio Robots, newsletter archive",
      "url": "https://newsletter.revdancatt.com/archive",
      "author": "Daniel Catt",
      "publisher": "Substack",
      "publicationDate": null,
      "accessedAt": "2026-09-18",
      "accessOutcome": "inspected",
      "accessMethod": "browser pane on operator device, text extraction from the archive listing",
      "archiveUrl": null,
      "evidenceLocators": [
        "newsletter running from April 2021 to the access date",
        "issue #14, April 2023, subtitled in part 'a quick 80s Pop: Roxy update'",
        "issue #051 Mini, December 2024, '80s Pop Roxy Bonus Pack', described as a detour into an upcoming Art Blocks drop",
        "issue #004, May 2021, headline figure for funds raised for Women Who Code",
        "later issues predominantly concern pen plotting and physical drawing machines"
      ],
      "submittedAuthor": "Daniel Catt",
      "submittedAccessOutcome": "HTTP 200, archive listing read; individual 2021 issues were not opened",
      "inspectionAttribution": "Submitted Claude research; independent coordinator verification pending."
    },
    {
      "id": "S11",
      "title": "70sPop.love, artist website recorded on the project",
      "url": "https://70sPop.love",
      "author": "Daniel Catt",
      "publisher": "70spop.love",
      "publicationDate": null,
      "accessedAt": "2026-09-18",
      "accessOutcome": "inspected",
      "accessMethod": "browser pane on operator device",
      "archiveUrl": null,
      "evidenceLocators": [
        "page title 'WordPress › Error'",
        "'There has been a critical error on this website.'",
        "a PHP parse error in a backup plugin file"
      ],
      "submittedAuthor": "Daniel Catt",
      "submittedAccessOutcome": "HTTP 200 but the site is broken: the response is a WordPress fatal error page reporting a PHP parse error raised inside a backup plugin, which also discloses a server filesystem path. No project content is reachable.",
      "inspectionAttribution": "Submitted Claude research; independent coordinator verification pending."
    },
    {
      "id": "S12",
      "title": "Canonical token page checks for 70s Pop Series Two sampled tokens",
      "url": "https://www.artblocks.io/token/1/0xa7d8d9ef8d8ce8992df33d8b8cf4aebabd5bd270/85000228",
      "author": "Art Blocks",
      "publisher": "Art Blocks",
      "publicationDate": null,
      "accessedAt": "2026-09-18",
      "accessOutcome": "inspected",
      "accessMethod": "scripted HTTP GET from the browser context on the operator device",
      "archiveUrl": null,
      "evidenceLocators": [
        "five token URLs and one collection URL, each returning status 200"
      ],
      "submittedAuthor": null,
      "submittedAccessOutcome": "HTTP 200 for token pages 85000000, 85000001, 85000010, 85000020 and 85000228, and for the collection page, observed 2026-09-18T00:03:37+00:00",
      "inspectionAttribution": "Submitted Claude research; independent coordinator verification pending."
    }
  ],
  "submittedRights": {
    "artwork": {
      "reportedLabel": "NIFTY",
      "category": "custom",
      "termsUrl": null,
      "observedAt": "2026-09-18",
      "sourceIds": [
        "S02",
        "S01",
        "S08",
        "S09"
      ],
      "note": "Label reported by the Art Blocks index with link_to_license null. The live project page publishes no licence statement. A contemporaneous community explainer identifies NIFTY as shorthand for NFT License 2.0, but that is a third-party interpretation of an unvalidated free-text field carrying 34 distinct strings across this contract. Recorded as reported, not verified. NFT ownership is not an artwork permission.",
      "unresolvedConflicts": [
        "The index carries NIFTY, NIFTY License, Nifty, NFT License, NFT License 2.0 and further variants as separate strings on the same contract, so the label alone does not identify a document or version."
      ]
    },
    "code": {
      "reportedLabel": null,
      "category": "unknown",
      "termsUrl": null,
      "observedAt": "2026-09-18",
      "sourceIds": [
        "S02",
        "S01"
      ],
      "note": "No licence statement accompanies the artist script. Fully on-chain storage establishes readability, not redistribution rights.",
      "unresolvedConflicts": []
    },
    "thirdParty": [
      {
        "component": "Embedded literary text",
        "reportedLabel": null,
        "category": "unknown",
        "termsUrl": null,
        "observedAt": "2026-09-18",
        "sourceIds": [
          "S02"
        ],
        "note": "The script's first statement assigns \"Painting a Wave\", a poem by Howard Moss, to a constant that is never read by the program. Moss died in 1987, so the text is very unlikely to be in the public domain in any relevant jurisdiction. It is stored on-chain as part of the artist script, credited to its author inside the code and nowhere on the project page. No permission or licence for it was located in this research. No allegation is made and no legal conclusion is drawn. Per coordinator instruction the work is named and described in the essay; its text is not reproduced in this package and should not be reproduced downstream."
      },
      {
        "component": "p5.js",
        "reportedLabel": null,
        "category": "unknown",
        "termsUrl": null,
        "observedAt": "2026-09-18",
        "sourceIds": [
          "S02",
          "S06"
        ],
        "note": "Declared dependency p5@1.0.0, used only for colour mode, colour objects and interpolation; no drawing is done with it. Upstream licensing not inspected."
      }
    ]
  },
  "submittedFacts": [
    {
      "id": "edition-size",
      "topic": "work-context",
      "value": 256,
      "observedAt": "2026-09-18",
      "sourceIds": [
        "S02",
        "S01"
      ],
      "status": "verified",
      "note": "Indexed invocations 256 against max_invocations 256; page states a fixed edition of 256."
    },
    {
      "id": "project-id",
      "topic": "work-context",
      "value": 85,
      "observedAt": "2026-09-18",
      "sourceIds": [
        "S02"
      ],
      "status": "verified",
      "note": "On-chain project id. The AB5D atlas position 86 is a catalogue index, not this."
    },
    {
      "id": "series-marker",
      "topic": "work-context",
      "value": "Series trait reads Two on all 256 tokens",
      "observedAt": "2026-09-18",
      "sourceIds": [
        "S04",
        "S01"
      ],
      "status": "verified",
      "note": "A fixed marker rather than a variable feature, consistent with the mint statement calling this Series Two."
    },
    {
      "id": "script-bytes",
      "topic": "construction",
      "value": 12155,
      "observedAt": "2026-09-18",
      "sourceIds": [
        "S02"
      ],
      "status": "verified",
      "note": "Single script fragment."
    },
    {
      "id": "renderer-is-canvas2d",
      "topic": "construction",
      "value": "Artwork drawing uses Canvas 2D; p5 contributes colour operations",
      "observedAt": "2026-09-18",
      "sourceIds": [
        "S02",
        "S06"
      ],
      "status": "verified",
      "note": "Executable code inspected; resize removes existing canvases. No claim that an unused default canvas remains permanently."
    },
    {
      "id": "tile-construction",
      "topic": "construction",
      "value": "Arc and straight-band tiles; base and boost expression permits 4 through 17 tiles per side",
      "observedAt": "2026-09-18",
      "sourceIds": [
        "S02",
        "S04"
      ],
      "status": "verified",
      "note": "Larger tiles combine cells; smaller tiles subdivide them. Actual token flags govern these branches."
    },
    {
      "id": "animation-rule",
      "topic": "construction",
      "value": "animates only when Fill is Rainbow or TickTock is not None, and the two are mutually exclusive by construction",
      "observedAt": "2026-09-18",
      "sourceIds": [
        "S02"
      ],
      "status": "verified",
      "note": "Direct script finding. TickTock is assigned only when the grid is uniform and the fill is not Rainbow."
    },
    {
      "id": "animated-population",
      "topic": "examples",
      "value": "50 of 256 classified for animation: 24 Rainbow and 26 non-None TickTock, zero overlap",
      "observedAt": "2026-09-18",
      "sourceIds": [
        "S04",
        "S02"
      ],
      "status": "inferred",
      "note": "Computed from complete indexed feature census and inspected animation condition. This is not a runtime test of all 256 outputs."
    },
    {
      "id": "ticktock-distribution",
      "topic": "examples",
      "value": "Chaser4 9, Chess 7, Chaser1 6, Wipe 3, Sweep 1",
      "observedAt": "2026-09-18",
      "sourceIds": [
        "S04"
      ],
      "status": "verified",
      "note": "The single Sweep token is invocation 158."
    },
    {
      "id": "ninja-token",
      "topic": "examples",
      "value": "one Ninja token, invocation 248",
      "observedAt": "2026-09-18",
      "sourceIds": [
        "S04",
        "S07"
      ],
      "status": "verified",
      "note": "The only branch in the script that changes the canvas composite operation, inverting the finished image."
    },
    {
      "id": "embedded-poem",
      "topic": "rights",
      "value": "Howard Moss, \"Painting a Wave\", assigned to a constant at the top of the script and never used",
      "observedAt": "2026-09-18",
      "sourceIds": [
        "S02"
      ],
      "status": "verified",
      "note": "Direct script finding. A named third-party literary work stored on-chain, credited to its author inside the code only, never executed or displayed by the artwork. No permission was located. The work is named; its text is not reproduced in this package."
    },
    {
      "id": "first-token-minted",
      "topic": "mint",
      "value": "2021-06-08T21:06:09+00:00",
      "observedAt": "2026-09-18",
      "sourceIds": [
        "S02",
        "S03"
      ],
      "status": "verified",
      "note": "First indexed token. Its allocation type is not established."
    },
    {
      "id": "activated",
      "topic": "mint",
      "value": "2021-06-12T21:37:38+00:00",
      "observedAt": "2026-09-18",
      "sourceIds": [
        "S02"
      ],
      "status": "verified",
      "note": "Indexed activation; no inference about public sale availability from the gap before the second mint."
    },
    {
      "id": "second-token-minted",
      "topic": "mint",
      "value": "2021-06-13T16:59:26+00:00",
      "observedAt": "2026-09-18",
      "sourceIds": [
        "S02",
        "S03"
      ],
      "status": "verified",
      "note": "Second indexed mint; distinct from first mint and activation."
    },
    {
      "id": "completed",
      "topic": "mint",
      "value": "2021-06-13T17:08:56+00:00",
      "observedAt": "2026-09-18",
      "sourceIds": [
        "S02"
      ],
      "status": "verified",
      "note": "Calendar date 13 June 2021 in UTC."
    },
    {
      "id": "second-to-complete-interval",
      "topic": "mint",
      "value": "9 minutes 30 seconds",
      "observedAt": "2026-09-18",
      "sourceIds": [
        "S02"
      ],
      "status": "inferred",
      "note": "Arithmetic between indexed second mint and completion. Not a verified public sellout duration."
    },
    {
      "id": "current-price",
      "topic": "mint",
      "value": "95000000000000000 wei (0.095 ETH)",
      "observedAt": "2026-09-18",
      "sourceIds": [
        "S02"
      ],
      "status": "reported",
      "note": "Currently configured price on a completed project. Not proof of the price paid at mint."
    },
    {
      "id": "page-omits-animated-badge",
      "topic": "work-context",
      "value": "project page shows no animated label",
      "observedAt": "2026-09-18",
      "sourceIds": [
        "S01",
        "S05"
      ],
      "status": "verified",
      "note": "Correct for 206 tokens and wrong for 50. The index display_static flag is false."
    },
    {
      "id": "artist-website-broken",
      "topic": "conception",
      "value": "70sPop.love returns a WordPress fatal error",
      "observedAt": "2026-09-18",
      "sourceIds": [],
      "status": "verified",
      "note": "HTTP 200 but no content: a PHP parse error inside a backup plugin, which also discloses a server path. Should not be linked from a published dossier in this state."
    },
    {
      "id": "series-continued",
      "topic": "conception",
      "value": "the Pop series continued into an 80s Pop project",
      "observedAt": "2026-09-18",
      "sourceIds": [],
      "status": "reported",
      "note": "From the artist's newsletter archive: an April 2023 issue carries an 80s Pop Roxy update and a December 2024 issue concerns an upcoming Art Blocks drop for it."
    },
    {
      "id": "audio",
      "topic": "examples",
      "value": "No audio instructions found in inspected executable script",
      "observedAt": "2026-09-18",
      "sourceIds": [
        "S05",
        "S06",
        "S02"
      ],
      "status": "verified",
      "note": "Code inspection only; sound was not auditioned."
    },
    {
      "id": "interaction",
      "topic": "examples",
      "value": "Resize handler; no keyboard or pointer controls found in executable script",
      "observedAt": "2026-09-18",
      "sourceIds": [
        "S02",
        "S01"
      ],
      "status": "verified",
      "note": "Code inspection. No comprehensive interaction test claimed."
    }
  ],
  "submittedEditorialExceptions": [
    {
      "id": "embedded-third-party-text",
      "status": "pending",
      "reviewer": "publication coordinator",
      "reason": "Howard Moss's poem \"Painting a Wave\", first published in the twentieth century and still very unlikely to be out of copyright, is embedded in the on-chain artist script as an unused constant, credited inside the code and nowhere on the project page, with no located permission. Recorded as an observation only. Per coordinator instruction of 18 September 2026 the essay names and describes the work; its text is not reproduced anywhere in this package and must not be reproduced downstream. Coordinator to confirm that position at publication."
    },
    {
      "id": "rights-terms-missing",
      "status": "pending",
      "reviewer": "publication coordinator",
      "reason": "Current index reports NIFTY with no terms URL. Operative artwork terms remain unverified; no unrestricted permission inferred."
    },
    {
      "id": "code-rights-unknown",
      "status": "pending",
      "reviewer": "publication coordinator",
      "reason": "No licence statement was located for the artist script."
    },
    {
      "id": "artist-website-broken",
      "status": "pending",
      "reviewer": "publication coordinator",
      "reason": "The artist website of record, 70sPop.love, serves a WordPress fatal error disclosing a server path. Do not link it from a published dossier in this state; consider notifying the artist."
    },
    {
      "id": "artist-record-gap",
      "status": "pending",
      "reviewer": "publication coordinator",
      "reason": "No interview exists in the index and none was located. A targeted attempt to retrieve a specific 2021 newsletter issue failed at the guessed URL. All statements of intent rest on one mint-page paragraph written in character."
    },
    {
      "id": "original-price-unverified",
      "status": "pending",
      "reviewer": "publication coordinator",
      "reason": "The 0.095 ETH figure is the currently configured project price, not a verified original mint price."
    },
    {
      "id": "platform-page-omits-animated-badge",
      "status": "pending",
      "reviewer": "publication coordinator",
      "reason": "The project page carries no animated label although 50 of 256 tokens animate. Any description drawn from the page alone will be wrong for those tokens."
    }
  ],
  "submittedCodeInspection": {
    "url": "https://artblocks-mainnet.hasura.app/v1/graphql",
    "locator": "POST projects_metadata where slug _eq 70s-pop-series-two-by-daniel-catt, selecting script and scripts{index script}; identity corroborated by contract_address 0xa7d8d9ef8d8ce8992df33d8b8cf4aebabd5bd270 and project_id 85",
    "sha256": "91f5e411a74c949c3d05e83c93ee0b444bc3cec18e593ba97354aa814daad237",
    "retrievedAt": "2026-09-18T02:41:39.279148+00:00",
    "method": "Independent index retrieval and matching SHA-256; coordinator read the complete executable program following the initial unused string assignment. Literary text was not independently authenticated. Original generator was separately opened for visual observations; see evidence.coordinatorVisualReview.",
    "executed": true,
    "chainBlock": null
  },
  "submittedProvenance": {
    "operator": "Phil (AB5D coordinator), via the Claude desktop application",
    "agent": "Claude in Cowork mode, Claude Agent SDK session",
    "model": "claude-opus-5",
    "modelVersion": "claude-opus-5 (session-reported exact model id; the routing label on this batch was 'claude', which is not a model identifier)",
    "tools": [
      "Art Blocks public GraphQL index over HTTP POST",
      "browser pane on the operator's computer for page rendering, text extraction, image inspection, live renderer execution and canvas sampling",
      "SHA-256 over the retrieved script bytes computed in the browser using the Web Crypto API",
      "web search for artist material",
      "local shell and file tools for package assembly and validation"
    ],
    "humanEditorialInvolvement": "None. No human reviewed, edited or fact-checked the prose before submission. Status is draft-for-human-review.",
    "originalProseLicense": "CC0-1.0",
    "revisions": [
      {
        "reviewer": "OpenAI Codex",
        "recordedAt": "2026-09-18T02:46:46.594992+00:00",
        "scope": "Independent executable-code review, full token feature census, linked-wallet ownership, four original-renderer observations, artist newsletter and library licence review; substantial prose and metadata corrections. Original model credit retained as submitted.",
        "usage": null,
        "usageNote": "No separately metered revision usage available."
      }
    ]
  },
  "submittedPresentation": {
    "editionSize": 256,
    "maximumEdition": 256,
    "factsSourceIds": [
      "S02",
      "S01"
    ],
    "mintEvent": "first indexed mint",
    "mintTimestamp": "2021-06-08T21:06:09+00:00",
    "mintCalendarDateForHeader": "8 June 2021",
    "mintCalendarDateNote": "Timezone: UTC. Activation was 12 June 2021 UTC, the second mint 13 June 2021 UTC, and completion later the same UTC day. The Art Blocks project page renders the second-mint timestamp in the viewer's local timezone and shows 14 June 2021 from a UTC+10 browser. Do not take the date from that page.",
    "heldArtwork": {
      "chainId": 1,
      "contract": "0xa7d8d9ef8d8ce8992df33d8b8cf4aebabd5bd270",
      "tokenId": "85000228",
      "edition": 228,
      "title": "70s Pop Series Two #228",
      "artist": "Daniel Catt",
      "canonicalUrl": "https://www.artblocks.io/token/1/0xa7d8d9ef8d8ce8992df33d8b8cf4aebabd5bd270/85000228",
      "owner": "0xdd19308a9731cdecb67e0d80ca6823394208c045",
      "ownershipObservedAt": "2026-09-18T02:41:57.969574+00:00",
      "ownershipSource": "Art Blocks public GraphQL index, tokens_metadata filtered on the three wallet addresses currently linked to the AB5D profile",
      "mediaUrl": "https://generator.artblocks.io/1/0xa7d8d9ef8d8ce8992df33d8b8cf4aebabd5bd270/85000228",
      "mediaType": "text/html, live renderer",
      "fallbackStillUrl": "https://media-proxy.artblocks.io/1/0xa7d8d9ef8d8ce8992df33d8b8cf4aebabd5bd270/85000228.png",
      "motionObservation": "Original renderer inspected at two observed states: upper-left and upper-middle routes changed. Chaser4 behaviour corroborated by code and indexed features. No exact elapsed interval or full-cycle measurement claimed; audio not auditioned.",
      "caption": "70s Pop Series Two #228 by Daniel Catt. Copyright: NIFTY (reported label; specific terms unverified). AB5D collection.",
      "alt": "Coral-red, pale and black curved bands with small blue centres, forming loops and circular targets.",
      "copyrightLabel": "NIFTY (as reported by the Art Blocks index)",
      "copyrightTermsUrl": null,
      "rightsSourceIds": [
        "S02"
      ],
      "displayBasis": "remote platform media, embedded from the Art Blocks live renderer; nothing redistributed in this package"
    },
    "holdingCheck": {
      "walletSetSource": "https://www.artblocks.io/profile/ab5d plus the Art Blocks GraphQL index user_profiles linked_accounts for username ab5d",
      "wallets": [
        "0xce6dc14c5494d8a4325a81d3b257d130fa2039d1",
        "0x2247247ee0eee59557e6cd14f7e047f6a9309b5c",
        "0xdd19308a9731cdecb67e0d80ca6823394208c045"
      ],
      "observedAt": "2026-09-18T02:41:57.969574+00:00",
      "source": "Art Blocks public GraphQL index, tokens_metadata filtered on owner_address in the linked wallet set",
      "outcome": "holding verified current"
    },
    "requiredHeldArtworkFields": [
      "chainId",
      "contract",
      "tokenId",
      "edition",
      "title",
      "artist",
      "canonicalUrl",
      "owner",
      "ownershipObservedAt",
      "ownershipSource",
      "mediaUrl",
      "mediaType",
      "motionObservation",
      "caption",
      "alt",
      "copyrightLabel",
      "copyrightTermsUrl",
      "rightsSourceIds",
      "displayBasis"
    ],
    "remoteMediaRecommendations": [
      {
        "role": "header",
        "tokenId": "85000228",
        "mediaUrl": "https://generator.artblocks.io/1/0xa7d8d9ef8d8ce8992df33d8b8cf4aebabd5bd270/85000228",
        "mediaType": "text/html",
        "motionObservation": "autoplays on load with no play control; the chase is slow, so allow at least thirty seconds of viewing for the motion to be apparent",
        "note": "Embed the live renderer. This holding is one of the 26 animated tokens, so a still would misrepresent it. The motion is gradual rather than continuous shimmer: individual tiles flip one at a time.",
        "displayBasis": "remote platform media"
      },
      {
        "role": "example",
        "tokenId": "85000248",
        "mediaUrl": "https://media-proxy.artblocks.io/1/0xa7d8d9ef8d8ce8992df33d8b8cf4aebabd5bd270/85000248.png",
        "mediaType": "image/png",
        "naturalSize": "2400x2400",
        "motionObservation": "static; this token has no TickTock mode and a non-Rainbow fill, so it renders once and stops",
        "caption": "70s Pop Series Two #248, Daniel Catt, the edition's single Ninja token. Copyright status: NIFTY label reported with no published terms.",
        "alt": "A dense field of white rounded pipework on black, the image inverted so that no colour remains.",
        "canonicalUrl": "https://www.artblocks.io/token/1/0xa7d8d9ef8d8ce8992df33d8b8cf4aebabd5bd270/85000248",
        "displayBasis": "remote platform media"
      },
      {
        "role": "example",
        "tokenId": "85000010",
        "mediaUrl": "https://media-proxy.artblocks.io/1/0xa7d8d9ef8d8ce8992df33d8b8cf4aebabd5bd270/85000010.png",
        "mediaType": "image/png",
        "naturalSize": "2400x2400",
        "motionObservation": "static; renders once and stops",
        "caption": "70s Pop Series Two #10, Daniel Catt. Copyright status: NIFTY label reported with no published terms.",
        "alt": "An eleven by eleven grid of flat pale blue rounded pipes outlined in black, with larger tiles banded across the centre.",
        "canonicalUrl": "https://www.artblocks.io/token/1/0xa7d8d9ef8d8ce8992df33d8b8cf4aebabd5bd270/85000010",
        "displayBasis": "remote platform media"
      }
    ],
    "rendererNote": "Mixed behaviour within one edition: 206 tokens render once and stop, 24 cycle a spectrum continuously, and 26 animate their tile orientations. The Art Blocks project page carries no animated badge. Any general statement the dossier makes about motion must be scoped to the token being discussed. The AB5D holding is one of the animated minority, so use the live renderer for the header."
  },
  "coordinatorReconciliation": {
    "recordedAt": "2026-09-18T02:46:46.594992+00:00",
    "scope": "Removed unsupported historical inference, stale source claims and overbroad motion/audio assertions; retained original submission records for attribution. Artist development source recovered. Rights and original price remain researched unknowns."
  }
}
