Skip to content

Instantly share code, notes, and snippets.

@nitaku
Last active July 3, 2016 17:04
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nitaku/8272715 to your computer and use it in GitHub Desktop.
Save nitaku/8272715 to your computer and use it in GitHub Desktop.
Fractal treemap of Konanopii (1,724 leaves)

See this gist for the full code.

An example of an unambiguous fractal treemap. See this example discussing the unambiguous representation of unordered trees, and also this other example from which the random tree Konanopii (1,724 leaves) has been taken from.

ipython
run gosper_regions_depth.py
gosperify('konanopii_1724.json','/data/_workspace/hexes.wkt.csv','regions','depth.json')
Ctrl+D

topojson --cartesian --no-quantization -p depth -p label -o regions_depth.topo.json depth.json regions/0.json regions/1.json regions/2.json regions/3.json regions/4.json regions/5.json regions/6.json regions/7.json

gosper_regions_depth.py produces both the treemap's regions and depth levels as GeoJSON (then converted into TopoJSON as usual). A python generator is used to enumerate the leaves without creating a copy of them (similar to the code found in this StackOverflow question).

Only the first two levels are shown, to avoid cluttering. Labels are naively placed at the centroid of the corresponding region, leading to unoptimal placement in many cases (e.g. "Sebo").

The color scale, supporting trees with a maximum of ten levels, is adapted from Gretchen N. Peterson's Cartographer's Toolkit (page 40 - the scale have been reversed and blended with white). The font is Lacuna, by Peter Hoffmann, and was chosen because of its good readability at small sizes.

The halo around labels is implemented with a SASS mixin that defines multiple text-shadows. White blending leverages the possibility of leaving the hue of white undefined in d3's HCL representation, producing a correct HCL interpolation (see this discussion for more info).

from __future__ import print_function
from itertools import izip
import csv
import json
from shapely.geometry.polygon import Polygon
import shapely.wkt
from fiona import collection
from shapely.geometry import mapping
import re
import os
# yield the leaves of the tree, also computing each leaf path
def leafify(node, path=()):
if 'c' not in node:
node['path'] = path + (node,)
yield node
else:
for c in node['c']:
for l in leafify(c, path + (node,)):
yield l
def gosperify(tree_path, hexes_path, output_regions_dir_path, depth_filename):
leaves_done = 0
layers = {}
depth_levels = {}
print('Reading the tree...')
with open(tree_path, 'rb') as tree_file:
tree = json.loads(tree_file.read())
print('Reading hexes...')
# iterate over the hexes taken from the file
with open(hexes_path, 'rb') as hexes_file:
hexes_reader = csv.reader(hexes_file, delimiter=';', quotechar='#')
for leaf, hexes_row in izip(leafify(tree), hexes_reader):
path = leaf['path']
hex = shapely.wkt.loads(hexes_row[0])
for depth in xrange(len(path)):
# add the hex to its political regions
ancestor_or_self = path[depth]
if depth not in layers:
layers[depth] = {}
if id(ancestor_or_self) not in layers[depth]:
layers[depth][id(ancestor_or_self)] = {
'geometry': hex,
'node': ancestor_or_self
}
else:
layers[depth][id(ancestor_or_self)]['geometry'] = layers[depth][id(ancestor_or_self)]['geometry'].union(hex)
# add the hex to all the depth levels with d <= depth
if depth not in depth_levels:
depth_levels[depth] = hex
else:
depth_levels[depth] = depth_levels[depth].union(hex)
# logging
leaves_done += 1
print('%d leaves done' % leaves_done, end='\r')
print('Writing political regions...')
schema = {'geometry': 'Polygon', 'properties': {'label': 'str'}}
if not os.path.exists(output_regions_dir_path):
os.makedirs(output_regions_dir_path)
for depth, regions in layers.items():
with collection(output_regions_dir_path+'/'+str(depth)+'.json', 'w', 'GeoJSON', schema) as output:
for _, region_obj in regions.items():
output.write({
'properties': {
'label': region_obj['node']['l']
},
'geometry': mapping(region_obj['geometry'])
})
print('Writing depth_levels...')
schema = {'geometry': 'Polygon', 'properties': {'depth': 'int'}}
with collection(depth_filename, 'w', 'GeoJSON', schema) as output:
for depth, region in depth_levels.items():
output.write({
'properties': {
'depth': depth
},
'geometry': mapping(region)
})
concat = (a) -> a.reduce ((a,o) -> a.concat(o)), []
window.main = () ->
### "globals" ###
vis = null
width = 960
height = 500
svg = d3.select('body').append('svg')
.attr('width', width)
.attr('height', height)
### ZOOM and PAN ###
### create container elements ###
container = svg.append('g')
.attr('transform','translate(560, 54)')
container.call(d3.behavior.zoom().scaleExtent([1, 49]).on('zoom', (() -> vis.attr('transform', "translate(#{d3.event.translate})scale(#{d3.event.scale})"))))
vis = container.append('g')
### create a rectangular overlay to catch events ###
### WARNING rect size is huge but not infinite. this is a dirty hack ###
vis.append('rect')
.attr('class', 'overlay')
.attr('x', -500000)
.attr('y', -500000)
.attr('width', 1000000)
.attr('height', 1000000)
### END ZOOM and PAN ###
### custom projection to make hexagons appear regular (y axis is also flipped) ###
radius = 6
dx = radius * 2 * Math.sin(Math.PI / 3)
dy = radius * 1.5
path_generator = d3.geo.path()
.projection d3.geo.transform({
point: (x,y) ->
this.stream.point(x * dx / 2, -(y - (2 - (y & 1)) / 3) * dy / 2)
})
### depth scale ###
whiteness = 0.6
whiten = (color) -> d3.interpolateHcl(color, d3.hcl(undefined,0,100))(whiteness)
colorify = d3.scale.quantize()
.domain([0..9])
.range(['#396353','#0DB14B','#6DC067','#ABD69B','#DAEAC1','#DFCCE4','#C7B2D6','#9474B4','#754098','#504971'].map(whiten))
# .range(['#59A80F','#9ED54C','#C4ED68','#E2FF9E','#F0F2DD','#F8CA8C','#E9A189','#D47384','#AC437B','#8C286E'])
# .range(['#FFFCF6','#FFF7DB','#FFF4C2','#FEECAE','#F8CA8C','#F0A848','#C07860','#A86060','#784860','#604860'])
### legend ###
legend = svg.append('g')
.attr('id','legend')
.attr('transform', 'translate(30,20)')
scale = [colorify.domain()[0]..colorify.domain()[1]]
categories = legend.selectAll('.category')
.data(scale)
.enter().append('g')
.attr('class', 'category')
.attr('transform', (d,i) -> "translate(0,#{i*22})")
categories.append('rect')
.attr('x', 0).attr('y', 0)
.attr('width', 22).attr('height', 22)
.attr('fill', (d) -> colorify(d))
categories.append('text')
.attr('y', 11)
.attr('dx', -4)
.attr('dy', '0.35em')
.text((d) -> d)
### load topoJSON data ###
d3.json 'regions_depth.topo.json', (error, data) ->
### write the name of the land ###
title = svg.append('text')
.attr('class', 'title')
.text(topojson.feature(data, data.objects['0']).features[0].properties.label)
.attr('transform', 'translate(80,40)')
### define the level zero region (the land) ###
defs = svg.append('defs')
defs.append('path')
.datum(topojson.feature(data, data.objects['0']).features[0])
.attr('id', 'land')
.attr('d', path_generator)
### faux land glow (using filters takes too much resources) ###
vis.append('use')
.attr('class', 'land-glow-outer')
.attr('xlink:href', '#land')
vis.append('use')
.attr('class', 'land-glow-inner')
.attr('xlink:href', '#land')
### draw the depth levels ###
vis.selectAll('.contour')
.data(topojson.feature(data, data.objects.depth).features)
.enter().append('path')
.attr('class', 'contour')
.attr('d', path_generator)
.attr('fill', (d) -> colorify(d.properties.depth))
### draw the political boundaries ###
for depth in [1..2]
vis.append('path')
.datum(topojson.mesh(data, data.objects[depth], ((a,b) -> a isnt b)))
.attr('d', path_generator)
.attr('class', 'boundary')
.style('stroke-width', "#{1.8/depth}px")
### draw the land border ###
vis.append('use')
.attr('class', 'land-fill')
.attr('xlink:href', '#land')
### draw the other labels ###
vis.selectAll('.label')
.data(concat((topojson.feature(data, data.objects[depth]).features.map((d) -> {feature: d, depth: depth}) for depth in [2..1])))
.enter().append('text')
.attr('class', 'label')
.attr('dy','0.35em')
.attr('transform', ((d) ->
centroid = path_generator.centroid(d.feature)
area = path_generator.area(d.feature)
return "translate(#{centroid[0]},#{centroid[1]}) scale(#{10/d.depth})"
))
.text((d) -> d.feature.properties.label)
#land {
fill: none;
}
.land-glow-outer {
stroke: #eeeeee;
stroke-width: 16px;
}
.land-glow-inner {
stroke: #dddddd;
stroke-width: 8px;
}
.land-fill {
stroke: #444444;
stroke-width: 2px;
}
.contour {
stroke: none;
}
.category text {
text-anchor: end;
fill: #444444;
font-family: sans-serif;
font-weight: bold;
font-size: 14px;
pointer-events: none;
text-shadow: -1px 0 white, 0 1px white, 1px 0 white, 0 -1px white;
}
.boundary {
stroke: #444444;
fill: none;
pointer-events: none;
}
@font-face {
font-family: "Lacuna";
src: url("lacuna.ttf");
}
.label {
text-transform: capitalize;
text-anchor: middle;
font-size: 2.5px;
fill: #444444;
pointer-events: none;
font-family: "Lacuna";
text-shadow: -2px 0 white, 0 2px white, 2px 0 white, 0 -2px white, -1px -1px white, 1px -1px white, 1px 1px white, -1px 1px white;
}
.title {
text-transform: capitalize;
text-anchor: start;
font-size: 24pt;
fill: #444444;
pointer-events: none;
font-family: "Lacuna";
text-shadow: -1px 0 white, 0 1px white, 1px 0 white, 0 -1px white;
}
.overlay {
fill: transparent;
}
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Fractal treemap - Konanopii (1,724)</title>
<link type="text/css" href="index.css" rel="stylesheet"/>
<script src="http://d3js.org/d3.v3.min.js"></script>
<script src="http://d3js.org/topojson.v1.min.js"></script>
<script src="index.js"></script>
</head>
<body onload="main()">
</body>
</html>
(function() {
var concat;
concat = function(a) {
return a.reduce((function(a, o) {
return a.concat(o);
}), []);
};
window.main = function() {
/* "globals"
*/
var categories, colorify, container, dx, dy, height, legend, path_generator, radius, scale, svg, vis, whiten, whiteness, width, _i, _ref, _ref2, _results;
vis = null;
width = 960;
height = 500;
svg = d3.select('body').append('svg').attr('width', width).attr('height', height);
/* ZOOM and PAN
*/
/* create container elements
*/
container = svg.append('g').attr('transform', 'translate(560, 54)');
container.call(d3.behavior.zoom().scaleExtent([1, 49]).on('zoom', (function() {
return vis.attr('transform', "translate(" + d3.event.translate + ")scale(" + d3.event.scale + ")");
})));
vis = container.append('g');
/* create a rectangular overlay to catch events
*/
/* WARNING rect size is huge but not infinite. this is a dirty hack
*/
vis.append('rect').attr('class', 'overlay').attr('x', -500000).attr('y', -500000).attr('width', 1000000).attr('height', 1000000);
/* END ZOOM and PAN
*/
/* custom projection to make hexagons appear regular (y axis is also flipped)
*/
radius = 6;
dx = radius * 2 * Math.sin(Math.PI / 3);
dy = radius * 1.5;
path_generator = d3.geo.path().projection(d3.geo.transform({
point: function(x, y) {
return this.stream.point(x * dx / 2, -(y - (2 - (y & 1)) / 3) * dy / 2);
}
}));
/* depth scale
*/
whiteness = 0.6;
whiten = function(color) {
return d3.interpolateHcl(color, d3.hcl(void 0, 0, 100))(whiteness);
};
colorify = d3.scale.quantize().domain([0, 1, 2, 3, 4, 5, 6, 7, 8, 9]).range(['#396353', '#0DB14B', '#6DC067', '#ABD69B', '#DAEAC1', '#DFCCE4', '#C7B2D6', '#9474B4', '#754098', '#504971'].map(whiten));
/* legend
*/
legend = svg.append('g').attr('id', 'legend').attr('transform', 'translate(30,20)');
scale = (function() {
_results = [];
for (var _i = _ref = colorify.domain()[0], _ref2 = colorify.domain()[1]; _ref <= _ref2 ? _i <= _ref2 : _i >= _ref2; _ref <= _ref2 ? _i++ : _i--){ _results.push(_i); }
return _results;
}).apply(this);
categories = legend.selectAll('.category').data(scale).enter().append('g').attr('class', 'category').attr('transform', function(d, i) {
return "translate(0," + (i * 22) + ")";
});
categories.append('rect').attr('x', 0).attr('y', 0).attr('width', 22).attr('height', 22).attr('fill', function(d) {
return colorify(d);
});
categories.append('text').attr('y', 11).attr('dx', -4).attr('dy', '0.35em').text(function(d) {
return d;
});
/* load topoJSON data
*/
return d3.json('regions_depth.topo.json', function(error, data) {
/* write the name of the land
*/
var defs, depth, title;
title = svg.append('text').attr('class', 'title').text(topojson.feature(data, data.objects['0']).features[0].properties.label).attr('transform', 'translate(80,40)');
/* define the level zero region (the land)
*/
defs = svg.append('defs');
defs.append('path').datum(topojson.feature(data, data.objects['0']).features[0]).attr('id', 'land').attr('d', path_generator);
/* faux land glow (using filters takes too much resources)
*/
vis.append('use').attr('class', 'land-glow-outer').attr('xlink:href', '#land');
vis.append('use').attr('class', 'land-glow-inner').attr('xlink:href', '#land');
/* draw the depth levels
*/
vis.selectAll('.contour').data(topojson.feature(data, data.objects.depth).features).enter().append('path').attr('class', 'contour').attr('d', path_generator).attr('fill', function(d) {
return colorify(d.properties.depth);
});
/* draw the political boundaries
*/
for (depth = 1; depth <= 2; depth++) {
vis.append('path').datum(topojson.mesh(data, data.objects[depth], (function(a, b) {
return a !== b;
}))).attr('d', path_generator).attr('class', 'boundary').style('stroke-width', "" + (1.8 / depth) + "px");
}
/* draw the land border
*/
vis.append('use').attr('class', 'land-fill').attr('xlink:href', '#land');
/* draw the other labels
*/
return vis.selectAll('.label').data(concat((function() {
var _results2;
_results2 = [];
for (depth = 2; depth >= 1; depth--) {
_results2.push(topojson.feature(data, data.objects[depth]).features.map(function(d) {
return {
feature: d,
depth: depth
};
}));
}
return _results2;
})())).enter().append('text').attr('class', 'label').attr('dy', '0.35em').attr('transform', (function(d) {
var area, centroid;
centroid = path_generator.centroid(d.feature);
area = path_generator.area(d.feature);
return "translate(" + centroid[0] + "," + centroid[1] + ") scale(" + (10 / d.depth) + ")";
})).text(function(d) {
return d.feature.properties.label;
});
});
};
}).call(this);
@mixin halo($color)
text-shadow: -1px 0 $color, 0 1px $color, 1px 0 $color, 0 -1px $color
@mixin halo_double($color)
text-shadow: -2px 0 $color, 0 2px $color, 2px 0 $color, 0 -2px $color, -1px -1px $color, 1px -1px $color, 1px 1px $color, -1px 1px $color
#land
fill: none
.land-glow-outer
stroke: #EEE
stroke-width: 16px
.land-glow-inner
stroke: #DDD
stroke-width: 8px
.land-fill
stroke: #444
stroke-width: 2px
.contour
stroke: none
.category text
text-anchor: end
fill: #444
font-family: sans-serif
font-weight: bold
font-size: 14px
pointer-events: none
@include halo(white)
.boundary
stroke: #444
fill: none
// avoid blinking when hovering regions
pointer-events: none
@font-face
font-family: 'Lacuna'
src: url('lacuna.ttf')
.label
text-transform: capitalize
text-anchor: middle
font-size: 2.5px
fill: #444
pointer-events: none
font-family: 'Lacuna'
@include halo_double(white)
.title
text-transform: capitalize
text-anchor: start
font-size: 24pt
fill: #444
pointer-events: none
font-family: 'Lacuna'
@include halo(white)
// zoom and pan
.overlay
fill: transparent
{"c": [{"c": [{"c": [{"l": "fotrifle"}, {"l": "nasukyamana"}, {"c": [{"c": [{"c": [{"c": [{"l": "sukanenear"}, {"l": "pako"}, {"l": "espeesespa"}, {"l": "mabu"}], "l": "makyaesle"}, {"l": "zogotana"}, {"l": "goboes"}, {"l": "silusego"}, {"l": "sezonabo"}], "l": "boboobu"}, {"l": "suzoar"}, {"l": "fonesuine"}, {"l": "paar"}, {"l": "esbiesnofo"}, {"l": "flofopi"}, {"l": "arpeflesi"}], "l": "natase"}, {"l": "fleka"}], "l": "bukyuisu"}, {"c": [{"c": [{"l": "fuiflo"}, {"l": "nefo"}, {"c": [{"l": "pitabuta"}, {"l": "naanfose"}, {"l": "manopi"}, {"c": [{"l": "buesflo"}, {"l": "peio"}, {"l": "kyakyakofusu"}], "l": "zosibooar"}], "l": "angopapi"}, {"l": "fozo"}, {"c": [{"l": "lubosi"}], "l": "maflofle"}, {"l": "bifletao"}, {"c": [{"c": [{"l": "ine"}, {"l": "espaarbina"}, {"l": "arlutatama"}], "l": "ozono"}, {"c": [{"l": "kyatasuse"}], "l": "gokoan"}, {"l": "natasefono"}, {"l": "nazoko"}], "l": "tagofokakyu"}], "l": "netri"}, {"c": [{"l": "nape"}], "l": "netrimapene"}], "l": "anlelutaar"}, {"l": "bukopaselu"}], "l": "flokyutrizo"}, {"c": [{"c": [{"l": "fubioigo"}, {"c": [{"l": "suoneitri"}], "l": "lusubibu"}, {"c": [{"l": "funeannotri"}], "l": "zona"}, {"c": [{"l": "bokasupaes"}, {"l": "onogobopa"}, {"c": [{"l": "oflo"}, {"l": "nonolepa"}, {"l": "zofusibole"}, {"l": "isese"}, {"l": "floarlubifo"}, {"c": [{"l": "sisebifu"}, {"l": "pefose"}], "l": "zokyakya"}], "l": "kyamabisebu"}, {"c": [{"l": "fopa"}, {"c": [{"l": "kamaflearke"}, {"l": "nai"}, {"l": "bulemanolu"}, {"l": "sebokepeno"}], "l": "flopefuse"}, {"l": "letasu"}], "l": "manoozo"}, {"l": "sefu"}, {"l": "zokaarmalu"}], "l": "konoma"}, {"l": "lebies"}, {"c": [{"l": "anpilugo"}, {"c": [{"l": "lenekefuse"}, {"c": [{"l": "fleibigofle"}], "l": "ansine"}, {"c": [{"l": "bikoar"}, {"l": "kyukopine"}, {"l": "koan"}, {"l": "pasetakyu"}, {"l": "kyukyunoarke"}], "l": "kekyamata"}, {"c": [{"l": "luzo"}, {"l": "pibukyubule"}, {"l": "kokyuse"}, {"l": "tribole"}], "l": "takyu"}, {"c": [{"l": "fopesu"}, {"l": "leno"}, {"l": "koesmazo"}, {"l": "gotritrile"}, {"l": "kyuna"}], "l": "koanke"}], "l": "kyusuleka"}, {"c": [{"l": "kokees"}, {"l": "papi"}], "l": "nekyupipa"}, {"l": "pelusenepa"}], "l": "lekya"}], "l": "lesutrifle"}], "l": "kapaankya"}], "l": "arsifubo"}, {"c": [{"c": [{"c": [{"l": "sukyakase"}, {"c": [{"l": "kyukyusiflo"}, {"c": [{"l": "penekyasu"}, {"l": "kyazo"}, {"c": [{"l": "kyutana"}, {"l": "oleipafu"}, {"l": "pape"}, {"l": "lukokasu"}, {"l": "gotrianlees"}, {"l": "bofugoko"}, {"l": "flogo"}], "l": "peletakokyu"}, {"c": [{"l": "subi"}, {"l": "arsies"}, {"l": "onazoii"}, {"l": "pabopisubi"}, {"l": "sinokya"}], "l": "pafloke"}], "l": "ankyu"}, {"l": "osifleseta"}, {"l": "kees"}, {"l": "bosu"}, {"l": "esanokya"}, {"l": "kyaarbine"}], "l": "fobolebi"}, {"l": "boookono"}, {"l": "kepefuna"}, {"c": [{"l": "zotri"}, {"l": "osu"}, {"c": [{"c": [{"l": "sekono"}, {"l": "fleluseo"}], "l": "zokyakofono"}, {"l": "seonese"}, {"l": "kobo"}], "l": "pipago"}, {"l": "lusipi"}, {"l": "floiopabo"}], "l": "sisikenose"}], "l": "flear"}, {"l": "flefloflebi"}], "l": "boka"}, {"c": [{"l": "leta"}, {"c": [{"c": [{"l": "kapapenole"}, {"l": "luarar"}, {"l": "leseno"}, {"l": "naan"}, {"c": [{"l": "bukyubi"}, {"l": "anlusiar"}, {"l": "kese"}, {"l": "anfokebu"}, {"l": "nana"}], "l": "kyafuiflose"}, {"l": "biose"}, {"c": [{"l": "kosiko"}, {"l": "fuarno"}, {"l": "neke"}], "l": "okei"}], "l": "fuiikyase"}, {"l": "pasi"}, {"c": [{"c": [{"l": "manaiko"}, {"c": [{"l": "flonaka"}, {"l": "antrinobo"}, {"l": "fukakota"}, {"l": "nemaflepapa"}, {"l": "okeflese"}], "l": "fuanta"}, {"l": "butrifloeske"}, {"c": [{"l": "nakyaleta"}, {"l": "osuanma"}, {"l": "sipa"}, {"l": "fupekoanbi"}, {"l": "flefleflebogo"}, {"l": "trisearpe"}, {"l": "ankya"}], "l": "fuflefo"}, {"l": "anesne"}], "l": "bisees"}, {"c": [{"l": "ole"}, {"l": "pinoopi"}, {"l": "anpaka"}], "l": "estrikyafo"}, {"l": "onope"}, {"c": [{"c": [{"l": "silele"}, {"l": "lukosutri"}, {"l": "anfu"}], "l": "flonao"}], "l": "pile"}, {"l": "paanfosu"}, {"c": [{"l": "mata"}, {"c": [{"l": "fopeta"}, {"l": "pebolebi"}, {"l": "fomafu"}, {"l": "lekafloarko"}, {"l": "anflosikean"}, {"l": "fusupafuo"}, {"l": "kyuflookyubi"}], "l": "pifleanbi"}, {"c": [{"l": "siflemanapa"}, {"l": "flekyubi"}, {"l": "pepifle"}, {"l": "kano"}, {"l": "pagokole"}, {"l": "sutaarna"}, {"l": "kepe"}], "l": "ookyunaes"}, {"l": "ikogo"}, {"l": "buarbo"}, {"l": "antrisi"}], "l": "kanafuesbi"}], "l": "kena"}], "l": "ketabono"}, {"l": "lezo"}, {"c": [{"l": "kaboluna"}, {"l": "foan"}, {"l": "sego"}, {"l": "lefosuflo"}, {"l": "sesuesbu"}, {"l": "eszotrii"}], "l": "oika"}, {"c": [{"l": "noesta"}, {"c": [{"l": "bukyuar"}, {"l": "kyusu"}, {"l": "sibo"}, {"l": "argofleanlu"}, {"l": "goannesipe"}], "l": "boanpe"}], "l": "maflotrilefo"}, {"c": [{"l": "kefusigo"}, {"c": [{"l": "kekyupei"}], "l": "pizokasu"}], "l": "flokyu"}], "l": "kyata"}, {"c": [{"c": [{"l": "kakyabotaar"}, {"l": "noartritaan"}, {"l": "fopa"}], "l": "kyuiar"}, {"l": "fonanakaan"}, {"l": "kezoluarflo"}, {"c": [{"l": "kepebu"}], "l": "anfletabika"}, {"c": [{"l": "esfo"}, {"l": "kyukata"}, {"l": "koartaneko"}, {"l": "fukesi"}], "l": "kaboka"}, {"l": "sibo"}, {"c": [{"c": [{"c": [{"c": [{"l": "mapigoanne"}, {"l": "mafle"}, {"l": "bigonakasi"}, {"l": "kyaessese"}, {"l": "tribune"}, {"l": "subisefuse"}, {"l": "fopisibubo"}], "l": "gofuesna"}, {"l": "boarflokyune"}, {"l": "buansekoka"}, {"c": [{"l": "sike"}, {"l": "pipipakya"}, {"l": "fopaesko"}], "l": "kyabiine"}, {"l": "kyaleflepema"}, {"l": "lelenesu"}], "l": "oarpa"}], "l": "napesule"}, {"l": "letrinazokyu"}, {"l": "zomatriar"}, {"c": [{"l": "komako"}], "l": "esgopebone"}], "l": "kyupape"}], "l": "pii"}, {"c": [{"l": "supepi"}, {"l": "flolumase"}, {"c": [{"c": [{"c": [{"l": "kyakekyukya"}], "l": "zoifu"}, {"l": "kosise"}, {"l": "kaansufu"}, {"l": "okokyapama"}, {"c": [{"l": "arkekya"}, {"l": "kyui"}, {"l": "eslenopiko"}, {"l": "kaararle"}, {"l": "koosu"}, {"l": "arsubo"}, {"l": "oesan"}], "l": "lekyafobo"}, {"l": "fofotane"}, {"l": "kabukyu"}], "l": "sefo"}, {"c": [{"l": "nebuesmale"}, {"l": "estrinoano"}, {"l": "sioflose"}], "l": "nalu"}, {"c": [{"l": "luflo"}, {"c": [{"l": "sumape"}, {"c": [{"l": "sezo"}], "l": "lenokya"}, {"l": "kyupi"}, {"l": "lukapenata"}], "l": "lubupa"}], "l": "bifo"}, {"c": [{"c": [{"l": "nofo"}, {"l": "kear"}, {"c": [{"l": "naozo"}, {"l": "letatata"}], "l": "sionearna"}, {"l": "palekya"}, {"l": "anpebupi"}], "l": "tako"}, {"l": "flematri"}], "l": "esfofoma"}], "l": "letrikya"}, {"c": [{"c": [{"l": "nobu"}, {"l": "nele"}], "l": "lefu"}, {"c": [{"l": "eslune"}], "l": "peanes"}, {"c": [{"c": [{"c": [{"l": "flegoes"}, {"l": "fleoke"}, {"l": "flelu"}], "l": "lulenegoma"}, {"l": "fokogole"}, {"l": "flono"}, {"c": [{"l": "zomafuarbu"}, {"l": "noletri"}, {"l": "pepimaar"}], "l": "anfotapi"}, {"l": "searpe"}], "l": "pebo"}, {"c": [{"c": [{"l": "buluanta"}, {"l": "pitakyai"}, {"l": "pimapigo"}, {"l": "nogo"}], "l": "anzokyubo"}, {"l": "gobi"}, {"l": "fosizonafo"}], "l": "fope"}, {"l": "goan"}, {"l": "peflotabu"}, {"l": "neota"}, {"c": [{"l": "kyanoanka"}, {"l": "fule"}, {"l": "goke"}, {"l": "pepi"}, {"l": "panokobupi"}], "l": "papeesbu"}, {"l": "biflonasi"}], "l": "triozopipi"}, {"c": [{"c": [{"l": "trifle"}, {"c": [{"l": "biar"}, {"l": "kapase"}, {"l": "susu"}, {"l": "triarsebi"}], "l": "kepakasefle"}, {"l": "kyuzoesno"}, {"l": "siantale"}], "l": "flebunefoflo"}, {"l": "pelufloi"}], "l": "paka"}, {"c": [{"l": "nezopa"}, {"l": "tata"}, {"l": "flear"}, {"l": "suzofune"}, {"l": "nokya"}, {"l": "zopi"}, {"l": "opi"}], "l": "esi"}, {"c": [{"l": "foseneflena"}, {"c": [{"l": "funokyu"}, {"l": "pikyubu"}], "l": "takebi"}, {"l": "bulekaes"}, {"c": [{"l": "bian"}], "l": "arbu"}, {"l": "esfo"}], "l": "buar"}], "l": "kaka"}], "l": "olusu"}, {"c": [{"c": [{"c": [{"l": "koaro"}, {"l": "lufupake"}, {"c": [{"l": "espepapi"}, {"c": [{"l": "anneflefuar"}, {"l": "kyaleooan"}, {"l": "sikekyu"}, {"l": "trileta"}], "l": "oketai"}, {"c": [{"l": "naflenapapi"}, {"l": "kei"}, {"l": "fopa"}], "l": "kyakegokafo"}], "l": "bipii"}, {"l": "pabutri"}, {"c": [{"l": "kyukyukyabulu"}, {"l": "nanape"}], "l": "kyuarsizo"}], "l": "bifo"}, {"c": [{"l": "kokyukyufle"}, {"l": "kyata"}, {"l": "kake"}, {"c": [{"l": "nalu"}, {"c": [{"l": "futaozo"}, {"l": "kyapile"}, {"l": "nabufulu"}, {"l": "kyunano"}, {"l": "arse"}, {"l": "lebikefufo"}], "l": "nale"}, {"l": "suopa"}, {"l": "opikyaanke"}, {"l": "legolukene"}, {"c": [{"l": "inepi"}, {"l": "kyuno"}, {"l": "kaokyalu"}], "l": "arneananzo"}, {"l": "ketakakakyu"}], "l": "zokatakogo"}, {"l": "fukearpi"}], "l": "kakyafufuan"}], "l": "nekyuzobi"}, {"c": [{"c": [{"l": "oflotagoo"}, {"l": "kyamakyaar"}, {"l": "ofues"}, {"l": "gofu"}, {"l": "bikagokolu"}], "l": "sunelear"}, {"c": [{"l": "natri"}, {"l": "sefo"}, {"l": "butrigo"}, {"c": [{"l": "lepi"}, {"l": "fupapi"}, {"c": [{"l": "sebi"}, {"l": "luselule"}, {"l": "nobinole"}, {"l": "flolu"}], "l": "triluanflelu"}], "l": "trikyubo"}, {"c": [{"l": "bisefo"}, {"l": "zoi"}, {"c": [{"l": "iotrinezo"}, {"l": "flofleankena"}, {"l": "sepalutri"}, {"l": "arketa"}, {"l": "fonooes"}], "l": "flego"}, {"l": "kepilufofu"}], "l": "goessi"}], "l": "pesinepa"}], "l": "esnanekabi"}, {"l": "lesuzopi"}, {"c": [{"c": [{"l": "sibusekopa"}, {"l": "flene"}, {"l": "iansu"}, {"c": [{"l": "mabiarfleta"}, {"l": "lufleessu"}, {"c": [{"l": "sisi"}, {"l": "taifopi"}], "l": "ansezosile"}], "l": "flotri"}, {"c": [{"l": "kolele"}, {"l": "noes"}, {"l": "kyupeo"}], "l": "sisepafu"}], "l": "sunabilupe"}, {"c": [{"c": [{"l": "nopakooma"}, {"l": "piessu"}, {"l": "senelu"}, {"l": "pita"}, {"l": "gonanesisu"}, {"l": "papiarlupi"}, {"l": "zopigo"}], "l": "naarna"}], "l": "sikaarka"}, {"l": "flokekotri"}, {"l": "flogosusi"}, {"l": "luflopa"}, {"c": [{"l": "peankobui"}, {"c": [{"l": "lefosego"}], "l": "pisuestri"}, {"c": [{"l": "fleflena"}], "l": "flebukyaflono"}], "l": "flebi"}], "l": "lees"}, {"c": [{"l": "inebo"}, {"c": [{"c": [{"l": "esanbi"}], "l": "susekakya"}, {"c": [{"l": "piko"}, {"c": [{"l": "bipi"}, {"l": "kyusuanpaka"}], "l": "zofueses"}, {"l": "flenaikyu"}, {"l": "kakyaanflona"}], "l": "pinotrine"}, {"c": [{"l": "gopepipabo"}, {"l": "pakaluboan"}, {"l": "triflofotrine"}, {"l": "kolegofu"}], "l": "kokobukano"}, {"l": "ketri"}], "l": "nei"}, {"l": "neneomao"}, {"c": [{"l": "anpa"}, {"l": "kyapisiima"}, {"l": "arkafoko"}], "l": "sefle"}], "l": "kokyukekose"}], "l": "gosule"}, {"l": "ikyui"}], "l": "naseifono"}, {"c": [{"c": [{"l": "bitrileanne"}, {"c": [{"c": [{"l": "nefo"}, {"l": "tafopa"}, {"l": "tritanake"}, {"c": [{"l": "flolekya"}], "l": "kyabu"}, {"l": "fuflekya"}], "l": "bufu"}, {"c": [{"l": "kyako"}], "l": "fomai"}, {"c": [{"l": "kokatakofo"}, {"l": "pabunakokya"}, {"l": "kyuanesbo"}, {"l": "kyazopeone"}], "l": "kana"}, {"c": [{"c": [{"c": [{"l": "kole"}, {"l": "bopiiko"}, {"l": "noseflosufo"}, {"l": "luesobo"}, {"l": "bugosi"}], "l": "fogobi"}, {"l": "flotaanar"}, {"l": "kyapiko"}, {"l": "ipazobio"}, {"l": "lukyuflo"}, {"c": [{"l": "okyakabi"}, {"l": "nakyuosune"}], "l": "pebusi"}, {"l": "iarzoarkyu"}], "l": "eslu"}, {"l": "paneopelu"}, {"c": [{"l": "floeslufle"}], "l": "gobinei"}, {"l": "sesepakafo"}, {"c": [{"l": "gokoartrine"}, {"l": "flefuan"}, {"l": "pian"}, {"l": "pakapeko"}], "l": "pisukyunoan"}], "l": "flekape"}, {"c": [{"l": "fopibo"}, {"l": "kaluno"}, {"l": "nasego"}, {"c": [{"c": [{"l": "floika"}, {"l": "kazokyaflo"}, {"l": "zozole"}, {"l": "selufopeta"}, {"l": "trilu"}, {"l": "esfonopego"}], "l": "bule"}, {"c": [{"l": "sisiflesizo"}, {"l": "pianbu"}, {"l": "pifukozokyu"}, {"l": "ike"}, {"l": "bupi"}], "l": "pitrilefle"}], "l": "siseseoi"}, {"l": "biarpapatri"}], "l": "noianbuke"}, {"c": [{"l": "tribika"}, {"l": "noibo"}, {"l": "luko"}], "l": "fofletaflo"}, {"c": [{"l": "buflekotri"}, {"l": "luzomakago"}, {"l": "kabueska"}, {"l": "suka"}, {"c": [{"l": "espaka"}, {"l": "triflo"}, {"c": [{"l": "leflepilesi"}, {"l": "kekyukyu"}, {"l": "bufloflopi"}, {"l": "itapa"}, {"l": "pafuesesne"}, {"l": "tapepe"}], "l": "fupagosu"}], "l": "zokata"}, {"l": "pefo"}], "l": "opetrisubi"}], "l": "maobo"}, {"l": "kanakazo"}, {"l": "seesgonese"}, {"c": [{"c": [{"l": "zonebu"}, {"l": "maannasile"}], "l": "leinaarfle"}, {"l": "pekyu"}, {"c": [{"c": [{"l": "anbunoan"}, {"l": "mamakyasisu"}], "l": "kyapisipafo"}, {"l": "kyuanfu"}, {"c": [{"l": "suflekyu"}], "l": "nesukolu"}, {"c": [{"l": "masufopile"}, {"l": "ookyubu"}, {"l": "tapabubi"}, {"l": "kyukogo"}], "l": "foarbipi"}, {"l": "trinazoitri"}], "l": "sefoanoke"}], "l": "ango"}, {"c": [{"l": "aroes"}, {"c": [{"l": "peflenoo"}, {"c": [{"l": "zoko"}, {"l": "booita"}, {"c": [{"l": "kepenenama"}, {"l": "kotri"}, {"l": "kyafle"}], "l": "arkatri"}, {"l": "ozoanfle"}], "l": "suestri"}], "l": "flonema"}, {"c": [{"c": [{"c": [{"l": "eskyu"}, {"l": "peflobubina"}, {"l": "nokonopapa"}, {"l": "ibuflo"}, {"l": "luneflelubi"}, {"l": "lekya"}], "l": "kyatrikya"}, {"c": [{"l": "flekyao"}, {"l": "sekenabu"}, {"l": "fupe"}, {"l": "flebuzogogo"}], "l": "esflenena"}, {"l": "bikeeslu"}, {"c": [{"l": "tapikeka"}, {"l": "lubui"}, {"l": "anfleonosu"}, {"l": "supifona"}], "l": "zoboar"}, {"l": "piflo"}, {"l": "kema"}, {"c": [{"l": "bosetale"}, {"l": "iflokyubo"}, {"l": "goko"}, {"l": "nanebi"}], "l": "tasuar"}], "l": "susenane"}, {"l": "flebinasuflo"}], "l": "sipaes"}, {"c": [{"c": [{"l": "tanearpe"}, {"l": "anlenotri"}, {"c": [{"l": "tribi"}, {"l": "flear"}, {"l": "okyataokya"}, {"l": "pasu"}, {"l": "bose"}, {"l": "gokyatriseka"}], "l": "bukear"}, {"l": "letrianleka"}], "l": "buesi"}, {"c": [{"c": [{"l": "bukyafleeska"}, {"l": "naarflofobu"}, {"l": "flenosu"}], "l": "manoarlu"}], "l": "gono"}, {"l": "biika"}, {"c": [{"l": "kakyu"}, {"l": "flesi"}, {"l": "kyakobi"}, {"l": "esbisu"}, {"l": "kyaflekyatakyu"}], "l": "tasinetrifu"}, {"l": "kalezo"}, {"l": "pibu"}, {"l": "anmakekyata"}], "l": "pabu"}, {"l": "sinagoluna"}, {"l": "fopapa"}], "l": "aran"}, {"l": "fusuan"}], "l": "floes"}, {"c": [{"c": [{"l": "arneke"}], "l": "trisima"}, {"c": [{"l": "fopeesikyu"}], "l": "kyakya"}, {"l": "botrinata"}, {"c": [{"c": [{"c": [{"l": "kyupe"}, {"l": "kesisesipe"}, {"l": "flebopago"}, {"c": [{"l": "takya"}, {"l": "flei"}, {"l": "noflesebo"}, {"l": "kyanazo"}, {"l": "kekyuflo"}, {"l": "arflomake"}, {"l": "taflo"}], "l": "flokelufoke"}], "l": "zomaka"}, {"l": "nepika"}], "l": "pineno"}, {"c": [{"c": [{"l": "flolukole"}, {"l": "luma"}], "l": "lesu"}, {"l": "lezo"}, {"l": "pekebikees"}, {"c": [{"l": "bofleneka"}], "l": "naka"}], "l": "sisies"}, {"c": [{"l": "pelefu"}, {"c": [{"l": "kao"}, {"l": "kyupipekeo"}, {"l": "nokatrima"}, {"l": "kyapa"}, {"c": [{"l": "sufle"}, {"l": "fuzofu"}], "l": "buananno"}], "l": "boko"}, {"c": [{"l": "bole"}, {"c": [{"l": "kyabogolu"}, {"l": "kyale"}, {"l": "zone"}, {"l": "lufufobo"}, {"l": "kobu"}, {"l": "taope"}, {"l": "arsi"}], "l": "bubueskyu"}], "l": "luneitape"}, {"c": [{"l": "sukya"}, {"l": "mano"}, {"l": "eso"}, {"l": "keilu"}], "l": "bisukama"}, {"c": [{"l": "kees"}, {"c": [{"l": "kakoflogo"}, {"l": "nebimasi"}, {"l": "anesbukyues"}, {"l": "bobu"}, {"l": "ies"}, {"l": "gokekyusifle"}, {"l": "pabibu"}], "l": "pilutri"}, {"l": "kakopile"}, {"l": "kyuketribukya"}, {"c": [{"l": "bonegokao"}, {"l": "kopifuo"}, {"l": "nokepesuar"}, {"l": "kyubu"}, {"l": "gope"}, {"l": "siobuko"}, {"l": "kebibuar"}], "l": "tafoneka"}, {"l": "bopisino"}, {"l": "lesi"}], "l": "anfokobine"}, {"l": "nenotapa"}, {"l": "esfle"}], "l": "arose"}, {"c": [{"l": "tafukyape"}, {"l": "pago"}, {"l": "koko"}, {"l": "kyaifonesu"}, {"l": "lekekenale"}], "l": "nozosususu"}, {"c": [{"l": "trikokofu"}, {"l": "namaes"}], "l": "kyabisifleko"}], "l": "tribo"}, {"c": [{"l": "flozonene"}, {"c": [{"c": [{"l": "pako"}, {"l": "lenatrian"}], "l": "peflepi"}, {"c": [{"l": "konefunone"}], "l": "kakyupa"}], "l": "sunapa"}], "l": "bufle"}], "l": "susu"}, {"l": "ankyuzoessi"}, {"c": [{"c": [{"l": "kyusezotake"}, {"c": [{"l": "sefusesii"}, {"l": "ozogozone"}, {"l": "lekeketafo"}, {"l": "papakyufulu"}, {"c": [{"c": [{"l": "bupelefle"}, {"l": "notalu"}, {"l": "tata"}, {"l": "fupi"}], "l": "nepepafle"}, {"l": "bofupe"}], "l": "flelegokapi"}, {"c": [{"l": "nenapepasu"}, {"l": "fopasi"}, {"l": "kyuzoi"}, {"c": [{"l": "osufu"}, {"l": "nemata"}, {"l": "taar"}, {"l": "masikekoi"}, {"l": "takesukyune"}], "l": "kyasuta"}, {"c": [{"l": "oseboko"}, {"l": "kokatrifle"}, {"l": "foboar"}, {"l": "paifutaes"}, {"l": "isepe"}, {"l": "kyukafu"}], "l": "armakasui"}], "l": "kapego"}], "l": "sibifo"}, {"l": "kaflope"}, {"l": "ananse"}, {"l": "leko"}, {"c": [{"c": [{"c": [{"l": "fonofle"}, {"l": "trifule"}, {"l": "eskaarogo"}, {"l": "arsibuanfo"}, {"l": "tripeflookya"}], "l": "flokezo"}, {"l": "trizo"}, {"l": "tripano"}, {"c": [{"l": "gobosipefle"}, {"l": "kobusebu"}, {"l": "bikyufu"}, {"l": "kafu"}], "l": "ipa"}, {"l": "bobo"}], "l": "boestale"}, {"l": "bukesikyu"}, {"l": "sipipezo"}, {"c": [{"l": "fonetribo"}, {"l": "gobi"}, {"l": "foar"}, {"c": [{"l": "tale"}, {"l": "kyunebu"}, {"l": "makyusile"}, {"l": "gosimabo"}, {"l": "iflesepi"}, {"l": "bigo"}], "l": "sene"}, {"l": "gobuzosu"}, {"l": "siflogo"}], "l": "gofle"}, {"c": [{"l": "noseke"}, {"l": "piotritrino"}, {"l": "subi"}], "l": "pafofle"}, {"c": [{"l": "flone"}], "l": "fosupiar"}], "l": "tasekokaflo"}], "l": "buflo"}, {"c": [{"l": "gookebone"}, {"l": "eskegosu"}, {"c": [{"l": "fleflofukyao"}, {"l": "kyaesfobo"}, {"l": "kepanetaan"}, {"c": [{"l": "kyuikeigo"}, {"c": [{"l": "fonozo"}, {"l": "anzo"}, {"l": "pale"}, {"l": "lesepesifu"}, {"l": "bokyuko"}, {"l": "zoessesu"}], "l": "ine"}, {"l": "obo"}, {"l": "palukyufle"}, {"l": "nebita"}, {"l": "kebo"}], "l": "naflele"}, {"l": "arkeka"}, {"c": [{"l": "bone"}, {"l": "bunolesikyu"}, {"l": "kabifle"}, {"c": [{"l": "sekaarnozo"}, {"l": "onake"}, {"l": "leflopako"}, {"l": "arbukepei"}], "l": "fleno"}, {"l": "kegoibulu"}, {"l": "fonaoarsu"}, {"l": "netrikyuzono"}], "l": "flokyaluflo"}], "l": "luka"}, {"c": [{"c": [{"l": "kyuflosi"}, {"l": "leikene"}], "l": "gone"}], "l": "flomano"}], "l": "pikokanake"}, {"c": [{"c": [{"l": "kesi"}, {"c": [{"l": "bike"}, {"l": "seflone"}, {"c": [{"l": "esmafues"}, {"l": "trike"}, {"l": "bofokyape"}, {"l": "sefletalufo"}, {"l": "kyafle"}], "l": "goluflolego"}, {"l": "iarfu"}, {"c": [{"l": "onebo"}], "l": "zokepibukya"}, {"l": "itribueses"}, {"l": "bimanaiflo"}], "l": "anta"}, {"l": "ansiarno"}, {"l": "goespakozo"}, {"l": "arno"}, {"l": "bokyupenazo"}, {"l": "koo"}], "l": "pafu"}, {"l": "lubitagosi"}], "l": "napifogota"}, {"l": "zobukoo"}, {"c": [{"c": [{"l": "pies"}], "l": "fokyukyu"}, {"c": [{"c": [{"l": "taflopeole"}, {"c": [{"l": "gokobone"}, {"l": "kesukobuan"}, {"l": "supa"}, {"l": "fosu"}, {"l": "kelepa"}, {"l": "fopi"}, {"l": "naflobubolu"}], "l": "zotakyu"}, {"l": "osunabo"}, {"c": [{"l": "neoi"}, {"l": "obosipibu"}, {"l": "bokyu"}, {"l": "lusepinabo"}, {"l": "nokaesbu"}], "l": "lekomafu"}, {"l": "esseflo"}, {"l": "talupibona"}], "l": "oflopibupi"}, {"l": "triflosees"}, {"c": [{"l": "noanboo"}, {"l": "lelefui"}, {"l": "paanesma"}, {"l": "kakyasibu"}, {"l": "flono"}], "l": "kopefusepi"}, {"l": "flei"}], "l": "siar"}, {"c": [{"l": "zona"}, {"c": [{"c": [{"l": "bufuifu"}, {"l": "kopeko"}, {"l": "neesfufleta"}, {"l": "luta"}, {"l": "matri"}, {"l": "fukyu"}, {"l": "gobibimafle"}], "l": "sikyatri"}, {"c": [{"l": "fufuno"}, {"l": "bikofoi"}, {"l": "trisita"}, {"l": "nakyanofo"}, {"l": "flokyazono"}, {"l": "anarsipeflo"}, {"l": "flesueslu"}], "l": "zoflesi"}, {"l": "fupikyanobi"}, {"l": "kagokyatri"}, {"c": [{"l": "pazosinota"}, {"l": "pakanago"}, {"l": "iannale"}], "l": "fuarfues"}, {"l": "sunataflota"}, {"c": [{"l": "pibuma"}, {"l": "mabupeoar"}, {"l": "pamapeke"}, {"l": "kyakya"}, {"l": "pipebu"}, {"l": "neesogo"}], "l": "flebopa"}], "l": "tataes"}, {"l": "ipebifloka"}, {"l": "pibubi"}, {"l": "sinapa"}, {"c": [{"c": [{"l": "kyumakeessi"}], "l": "kyaarzopi"}, {"c": [{"l": "pakenago"}, {"l": "essetazoka"}], "l": "bukyufuikya"}], "l": "nearkyubu"}], "l": "bokyukobiko"}, {"l": "futritrioma"}, {"c": [{"c": [{"l": "fleotri"}, {"l": "zoflei"}, {"c": [{"l": "ileko"}, {"l": "fupiarse"}, {"l": "nalekyakoflo"}, {"l": "lebu"}, {"l": "zoolekya"}], "l": "buno"}, {"l": "kafono"}, {"l": "sufobo"}], "l": "floka"}, {"l": "trinegokalu"}, {"c": [{"c": [{"l": "kabina"}, {"l": "triarfloi"}], "l": "fufletrineflo"}], "l": "sekyafo"}, {"c": [{"l": "gobufo"}, {"c": [{"l": "zoanpi"}, {"l": "gone"}, {"l": "foes"}, {"l": "masikyasuse"}, {"l": "esnaolu"}, {"l": "antriarfui"}], "l": "fokase"}], "l": "nakyu"}, {"l": "kyaigo"}, {"l": "trino"}], "l": "pekobilulu"}, {"l": "neta"}], "l": "ararkanofo"}], "l": "fopisinofu"}], "l": "fuse"}, {"c": [{"c": [{"l": "biluokyufu"}], "l": "paneflo"}, {"c": [{"l": "noka"}, {"c": [{"l": "busi"}, {"c": [{"l": "foonegosi"}, {"l": "susukyazo"}, {"l": "fupana"}, {"c": [{"c": [{"l": "arpabuzoo"}, {"l": "leflonoanar"}, {"l": "kyuse"}, {"l": "semapebubu"}, {"l": "koka"}, {"l": "kyano"}, {"l": "fukyafo"}], "l": "arsusupe"}, {"l": "arpi"}, {"l": "eszo"}], "l": "kyaflokyatriar"}], "l": "tafuarpa"}, {"c": [{"l": "kyakabo"}, {"c": [{"l": "busi"}], "l": "flokeseboan"}, {"l": "lunatakyaar"}, {"l": "iosina"}, {"l": "lefupizosu"}, {"c": [{"l": "sisipe"}, {"l": "bonama"}, {"l": "flenearzo"}], "l": "tagoesna"}], "l": "sutagoi"}, {"l": "flego"}, {"c": [{"l": "arestri"}, {"c": [{"c": [{"l": "zonosuna"}, {"l": "fuzone"}, {"l": "sipa"}], "l": "kokyapisesi"}, {"l": "goluo"}, {"c": [{"l": "kesibipi"}, {"l": "lebofle"}, {"l": "pees"}, {"l": "triespa"}], "l": "suketai"}], "l": "kekeisupi"}, {"l": "masitribono"}, {"l": "botribopaka"}, {"l": "neotrisi"}], "l": "neflozokyugo"}], "l": "nopa"}], "l": "gopigopeflo"}, {"c": [{"c": [{"c": [{"c": [{"l": "lekyuneta"}, {"c": [{"l": "pesugo"}, {"l": "lele"}, {"l": "netrikoluta"}, {"l": "pibilebi"}, {"l": "floke"}, {"l": "tanoflenego"}, {"l": "nofusiflozo"}], "l": "inobi"}, {"l": "sukabiogo"}, {"c": [{"l": "gokoma"}, {"l": "flolesi"}], "l": "pafo"}], "l": "annapipi"}, {"l": "bona"}], "l": "onefulefle"}, {"c": [{"l": "fufle"}, {"c": [{"c": [{"l": "kyupafobi"}, {"l": "funefleifu"}, {"l": "anarkamaka"}], "l": "trikokolu"}], "l": "tafosekapa"}, {"l": "bifu"}, {"l": "buzo"}], "l": "bies"}, {"c": [{"l": "bikopa"}, {"c": [{"c": [{"l": "fukape"}], "l": "flotri"}, {"l": "nezokyu"}, {"c": [{"l": "naarkofofo"}, {"l": "kyukya"}, {"l": "lepe"}, {"l": "nefle"}], "l": "ipena"}, {"l": "nasema"}, {"l": "anlelufle"}, {"l": "matriflefu"}, {"l": "arinoar"}], "l": "nagoannefle"}, {"l": "fleareskyuflo"}, {"c": [{"l": "flese"}, {"c": [{"l": "koboanno"}, {"l": "pizokyunelu"}, {"l": "kyule"}], "l": "flepena"}], "l": "naboanflean"}, {"l": "pabuan"}, {"c": [{"l": "lunabu"}, {"l": "tritribi"}, {"c": [{"l": "artribu"}, {"l": "flebukoko"}, {"l": "nano"}], "l": "gosekyuneka"}, {"c": [{"l": "fopi"}], "l": "oibies"}, {"l": "buta"}], "l": "anfu"}], "l": "neko"}, {"c": [{"l": "neboesike"}, {"l": "kegoan"}, {"l": "fubo"}, {"c": [{"l": "taisiflebi"}, {"c": [{"l": "panonefui"}], "l": "ofle"}, {"l": "buse"}, {"l": "luflefo"}], "l": "kyulukase"}], "l": "sususego"}, {"l": "taoka"}, {"l": "nabo"}, {"l": "pakeesfo"}], "l": "nakatritrike"}, {"c": [{"l": "kyulearar"}, {"l": "biboke"}, {"l": "netribu"}, {"l": "kamafu"}, {"c": [{"l": "fuse"}, {"l": "aresfo"}, {"l": "nogoi"}, {"c": [{"c": [{"l": "kyuzoflenoke"}, {"l": "ikyasu"}], "l": "luneka"}, {"l": "lukyakya"}, {"l": "flone"}, {"c": [{"l": "nofle"}, {"l": "magofu"}, {"l": "fokyubuke"}, {"l": "manabo"}, {"l": "flepinapefo"}], "l": "luankomama"}, {"c": [{"l": "zobokabu"}, {"l": "sekaselefo"}, {"l": "pafuflopaan"}, {"l": "gotri"}, {"l": "bieskebopa"}], "l": "suarkya"}, {"l": "okabiipa"}, {"c": [{"l": "taosise"}, {"l": "iko"}, {"l": "kobogo"}], "l": "luzo"}], "l": "sesi"}, {"l": "pekobu"}, {"l": "tabunobu"}], "l": "maibuna"}], "l": "kekeesesbo"}, {"l": "zonole"}], "l": "opi"}, {"c": [{"c": [{"l": "pine"}, {"c": [{"l": "konelu"}, {"c": [{"l": "anlean"}, {"l": "fuano"}, {"l": "fukagopi"}, {"l": "anpe"}, {"l": "trita"}, {"l": "bopaarzose"}], "l": "pako"}], "l": "fozoflepa"}, {"c": [{"l": "anlu"}, {"l": "aro"}, {"c": [{"l": "pepaestabu"}, {"l": "iilezona"}, {"l": "piko"}, {"c": [{"l": "essugo"}, {"l": "ikyuflo"}, {"l": "noesflesi"}], "l": "neka"}], "l": "ofufulugo"}, {"c": [{"l": "zobi"}, {"c": [{"l": "kaarpabino"}, {"l": "pioflobu"}, {"l": "supaflesi"}, {"l": "tapezo"}, {"l": "trisepibubu"}], "l": "ibiibikya"}, {"l": "trino"}], "l": "futri"}, {"c": [{"l": "pakalu"}, {"l": "anlupale"}, {"l": "pitafle"}, {"l": "bitriesse"}, {"c": [{"l": "nakyaflobio"}, {"l": "lego"}, {"l": "kobukyu"}, {"l": "paokaies"}, {"l": "arzo"}, {"l": "namale"}], "l": "tapipi"}, {"c": [{"l": "manalefobo"}, {"l": "malugookya"}, {"l": "kyai"}, {"l": "lui"}], "l": "kaii"}], "l": "fulu"}, {"c": [{"c": [{"l": "nabi"}], "l": "foonetripe"}, {"l": "arkyalu"}, {"l": "binopeisi"}, {"l": "ansuzoiko"}], "l": "kafu"}, {"c": [{"l": "fletama"}, {"l": "mana"}, {"l": "kebukees"}, {"l": "ika"}, {"c": [{"l": "anka"}, {"l": "takope"}], "l": "sego"}, {"c": [{"l": "fopipi"}, {"l": "nopa"}, {"l": "sipipeka"}, {"l": "talekyuesta"}], "l": "nakyazotri"}], "l": "piko"}], "l": "pianmaoke"}, {"c": [{"l": "pina"}, {"l": "zopego"}, {"l": "neleboflo"}, {"c": [{"l": "nonapi"}, {"l": "flekosearlu"}, {"l": "kelebi"}, {"c": [{"l": "nefu"}], "l": "gonofokyuse"}, {"l": "neesfle"}, {"l": "peke"}], "l": "botanatama"}, {"c": [{"c": [{"l": "sizofota"}, {"l": "keantrikya"}, {"l": "pikokyao"}], "l": "flefo"}], "l": "kyubo"}, {"c": [{"c": [{"l": "fleflene"}, {"l": "omafosu"}, {"l": "flonopi"}, {"l": "sio"}, {"l": "trikoke"}, {"l": "paesogoka"}, {"l": "boke"}], "l": "siobibi"}, {"l": "flosian"}, {"l": "kefu"}, {"c": [{"l": "flefupipa"}, {"l": "ogoartriko"}, {"l": "boan"}, {"l": "sunoflese"}, {"l": "arfoko"}, {"l": "ies"}, {"l": "sinaestrizo"}], "l": "kyubutrinobo"}, {"l": "gota"}], "l": "lugo"}], "l": "keestatritri"}], "l": "bukyubofo"}, {"l": "tatri"}, {"c": [{"c": [{"c": [{"c": [{"l": "espiantriko"}, {"l": "paio"}, {"l": "zoarzotaflo"}], "l": "onobipego"}, {"l": "pisepi"}, {"l": "antri"}], "l": "oo"}, {"l": "gobosinekyu"}, {"c": [{"l": "sibokyunepe"}, {"c": [{"l": "arpeigo"}, {"l": "arke"}, {"l": "panopakyu"}, {"l": "trita"}, {"l": "floanoka"}, {"l": "pipefle"}], "l": "obifotama"}, {"c": [{"l": "igo"}, {"l": "nafloflei"}, {"l": "biflees"}, {"l": "fusukyamatri"}, {"l": "kakeflepabu"}, {"l": "pepa"}], "l": "onopa"}, {"l": "nolekyakobu"}, {"c": [{"l": "kanena"}, {"l": "esi"}], "l": "iozoar"}, {"c": [{"l": "kosego"}, {"l": "pakepa"}, {"l": "anpinape"}, {"l": "eskyasikobu"}], "l": "pakafufoflo"}, {"l": "pakyufono"}], "l": "ogo"}, {"l": "triflotrisi"}], "l": "kyusio"}, {"c": [{"c": [{"l": "kaarmakya"}], "l": "sizo"}, {"c": [{"l": "lusisisune"}], "l": "arma"}, {"l": "pikya"}, {"l": "esfokyuzo"}, {"c": [{"l": "inonoar"}, {"l": "esarkema"}, {"l": "pezoma"}, {"l": "paseo"}], "l": "ankokoar"}, {"l": "kyulufokyafu"}, {"l": "kafukabi"}], "l": "mamaneka"}, {"c": [{"c": [{"l": "lego"}, {"l": "kaflo"}, {"c": [{"l": "nebootaan"}, {"l": "ikyulepi"}, {"l": "naeskyu"}, {"l": "antriluta"}], "l": "taanfoes"}, {"c": [{"l": "ise"}, {"l": "bobobukale"}], "l": "sunemanopi"}, {"l": "supi"}], "l": "flokyubu"}, {"l": "pekya"}, {"c": [{"l": "koflolubi"}, {"l": "kyuma"}, {"c": [{"l": "lekyupi"}, {"l": "okabokasi"}], "l": "kepi"}, {"l": "zonei"}], "l": "fotriikeo"}, {"l": "boletrizo"}, {"l": "fopibies"}], "l": "flofutaar"}, {"c": [{"c": [{"l": "taanbifle"}, {"l": "bioesfo"}, {"c": [{"l": "gosikogo"}, {"l": "siflo"}, {"l": "zosusu"}, {"l": "pefufo"}, {"l": "argo"}], "l": "kefolupane"}, {"l": "sululesebu"}], "l": "pizosikyu"}], "l": "kyubo"}, {"c": [{"l": "kesi"}, {"c": [{"l": "kaotasese"}, {"l": "kagosetata"}], "l": "ikyukama"}, {"c": [{"l": "lusu"}], "l": "pegole"}, {"l": "anfloko"}, {"l": "takoseopi"}, {"l": "zofle"}, {"c": [{"c": [{"l": "sutase"}, {"l": "kyubipe"}, {"l": "binepeflo"}, {"l": "nefo"}, {"l": "triizotribo"}, {"l": "kalu"}], "l": "kokyukyafupa"}, {"c": [{"l": "kobogoflobi"}, {"l": "floka"}, {"l": "kyusizobuke"}], "l": "ozolu"}, {"l": "goisikyu"}], "l": "flefono"}], "l": "lulepako"}, {"l": "sinelekyule"}], "l": "ofomafobi"}, {"l": "gobui"}, {"c": [{"l": "nefo"}, {"c": [{"c": [{"c": [{"l": "nasepa"}], "l": "kafusuo"}, {"l": "ibose"}, {"c": [{"l": "lees"}, {"l": "nozo"}, {"l": "suanar"}, {"l": "oeso"}], "l": "biflo"}, {"c": [{"l": "maartakyuan"}, {"l": "fukyaflebipi"}, {"l": "eskyapatri"}, {"l": "kyafueskya"}], "l": "kofloflo"}, {"l": "kalu"}], "l": "sile"}, {"l": "panapipa"}, {"c": [{"c": [{"l": "pemakyasile"}, {"l": "luflekoi"}, {"l": "kesi"}, {"l": "kenono"}], "l": "eszo"}, {"c": [{"l": "foes"}, {"l": "pena"}], "l": "kaan"}], "l": "maleo"}, {"l": "arse"}, {"l": "bupinoargo"}, {"c": [{"l": "seluka"}], "l": "neflobies"}, {"l": "pibuflekofu"}], "l": "pike"}, {"c": [{"l": "fuies"}, {"c": [{"l": "fosuflekepi"}, {"l": "aresfufle"}, {"l": "setane"}, {"l": "flokamakaflo"}, {"l": "trisui"}], "l": "tazo"}], "l": "sulebifoar"}, {"l": "nanefufo"}], "l": "peartrikyake"}], "l": "gosubuoi"}, {"c": [{"c": [{"c": [{"c": [{"l": "pelu"}, {"l": "kosutano"}, {"c": [{"l": "naleesfu"}, {"l": "fuargo"}], "l": "nopaflofoke"}, {"l": "kapepa"}], "l": "fopean"}, {"l": "kego"}, {"c": [{"l": "oflo"}, {"l": "fupabine"}, {"l": "kako"}, {"l": "iananno"}, {"l": "izo"}, {"c": [{"l": "lunaeskyu"}, {"l": "kyaflo"}, {"l": "paarsekyu"}, {"l": "sikofle"}, {"l": "annefuian"}, {"l": "tagoanbizo"}, {"l": "koona"}], "l": "senokyu"}], "l": "bigoflosefle"}, {"c": [{"l": "kyase"}, {"l": "anolu"}, {"l": "gokyufufle"}, {"l": "arkyaankabu"}], "l": "seikyasepe"}, {"l": "siflepesu"}, {"l": "zono"}, {"l": "bogoar"}], "l": "neoesbi"}], "l": "nolu"}, {"c": [{"c": [{"l": "zoka"}, {"l": "matrikaestri"}, {"l": "ike"}, {"l": "kyutasu"}, {"l": "nolesi"}], "l": "lupeo"}, {"c": [{"c": [{"c": [{"l": "nobupikaflo"}], "l": "triesnebuo"}], "l": "lefoflose"}, {"l": "bone"}, {"l": "bukemaarbi"}, {"l": "kapapi"}, {"c": [{"l": "taarnofose"}, {"c": [{"l": "suoopisu"}, {"l": "kafloneke"}, {"l": "pazokyu"}, {"l": "lekokyapi"}, {"l": "kanokya"}, {"l": "ota"}], "l": "kefupaankya"}, {"l": "letama"}], "l": "flebo"}, {"l": "keno"}, {"c": [{"l": "fopekyu"}, {"c": [{"l": "bimasenafo"}, {"l": "buseno"}, {"l": "pesifu"}, {"l": "nanetri"}, {"l": "bikya"}, {"l": "supai"}], "l": "nopi"}, {"l": "lufo"}, {"l": "buanpianbu"}, {"l": "eszoesessu"}], "l": "esfle"}], "l": "suleko"}, {"l": "sufufleflozo"}, {"c": [{"l": "lemana"}, {"l": "luesarbigo"}, {"c": [{"c": [{"l": "paflobo"}, {"l": "zopinole"}, {"l": "selu"}, {"l": "kole"}, {"l": "taar"}, {"l": "kyubiseke"}, {"l": "anzosunafo"}], "l": "flefle"}, {"l": "noestri"}, {"l": "nefleanse"}, {"c": [{"l": "suna"}, {"l": "nebutanakyu"}, {"l": "siflopesutri"}], "l": "tataan"}, {"l": "bukyapi"}], "l": "seno"}, {"c": [{"l": "sufo"}, {"l": "fleboarkyakyu"}, {"l": "napibibibo"}], "l": "flofotale"}], "l": "pibosu"}, {"l": "izokyu"}, {"l": "fubisikaar"}], "l": "pipibibine"}, {"c": [{"c": [{"l": "tripitripibi"}, {"l": "subopifo"}, {"l": "pikyapa"}], "l": "fotri"}, {"c": [{"c": [{"l": "arpipatrisu"}], "l": "kyatri"}, {"l": "nasu"}, {"c": [{"l": "napiflonono"}], "l": "lubile"}, {"l": "koanlezona"}, {"c": [{"l": "gopi"}, {"l": "gobiole"}, {"c": [{"l": "mafofusuar"}, {"l": "luma"}, {"l": "lufoluanar"}, {"l": "takyuogope"}, {"l": "pigobu"}], "l": "fufosizo"}, {"l": "pata"}], "l": "anmai"}], "l": "fulu"}, {"c": [{"l": "lubi"}, {"c": [{"l": "flosukyakyapi"}, {"l": "nonafupifu"}, {"l": "arpisuko"}, {"l": "tribukyabi"}, {"l": "bui"}, {"c": [{"l": "suseanbues"}, {"l": "zoka"}, {"l": "annefu"}], "l": "kyuboes"}, {"c": [{"l": "zoeskopekya"}, {"l": "trigobosu"}], "l": "leflo"}], "l": "neflosukyubi"}, {"c": [{"l": "pasufuselu"}, {"l": "floboma"}, {"l": "zope"}, {"c": [{"l": "fufleflo"}, {"l": "gokyaboesflo"}, {"l": "nabo"}, {"l": "tamakoflo"}, {"l": "anarkosi"}, {"l": "bulu"}, {"l": "patrikaflotri"}], "l": "pafle"}, {"l": "suma"}, {"l": "kobi"}, {"l": "gonaesko"}], "l": "arkenefui"}, {"l": "petrifufuflo"}, {"l": "flofupagoar"}, {"l": "peleta"}], "l": "pefufleflo"}, {"c": [{"c": [{"l": "anlefleluko"}], "l": "sunetafleka"}, {"l": "boesfokyasu"}, {"l": "kokyanepi"}, {"l": "kyalu"}, {"c": [{"l": "kasu"}, {"c": [{"l": "kebubies"}], "l": "flekoanse"}], "l": "nekyuflone"}], "l": "kyusimafu"}, {"l": "lesubo"}, {"c": [{"c": [{"l": "lugo"}], "l": "sitakoar"}], "l": "futrizo"}], "l": "mapepa"}, {"l": "fupaes"}], "l": "subise"}, {"c": [{"l": "trifope"}, {"c": [{"c": [{"l": "tata"}, {"c": [{"l": "nonanoflopi"}, {"l": "koflosipe"}, {"l": "zoarpepe"}, {"l": "mano"}], "l": "keo"}, {"l": "kekyutago"}, {"l": "makyako"}, {"c": [{"l": "nokoboansi"}, {"l": "esnokatri"}, {"l": "bibupena"}, {"l": "arpago"}], "l": "anfletasu"}, {"c": [{"l": "naflesi"}], "l": "kefutrizoke"}], "l": "fomafu"}], "l": "ikyupelear"}, {"l": "kanepa"}], "l": "koarfu"}], "l": "tazoes"}, {"c": [{"c": [{"c": [{"c": [{"l": "floi"}, {"l": "futagofufle"}, {"c": [{"l": "foi"}, {"l": "luzo"}, {"l": "bifleananne"}, {"l": "kaflemakyabu"}, {"l": "bofulumabo"}], "l": "ile"}, {"l": "bilupabu"}, {"l": "espipekabi"}, {"l": "ipi"}], "l": "konelu"}, {"c": [{"c": [{"c": [{"l": "supi"}, {"l": "opa"}, {"l": "suse"}, {"l": "bikyukyu"}, {"l": "lukeketrisu"}], "l": "zoluiar"}], "l": "ipapikyu"}, {"c": [{"c": [{"l": "esseluan"}, {"l": "kakyunezoka"}], "l": "mase"}], "l": "supisugobu"}, {"c": [{"l": "arpeesta"}, {"c": [{"l": "tama"}, {"l": "zofukobiflo"}, {"l": "trikyu"}, {"l": "triokanakyu"}, {"l": "trisubi"}, {"l": "magokyu"}], "l": "bikyabo"}, {"l": "takefo"}, {"l": "sipele"}, {"c": [{"l": "masunaka"}, {"l": "lekya"}], "l": "pigo"}, {"l": "natrise"}, {"l": "triestabo"}], "l": "lepilubu"}], "l": "pekyaflebono"}], "l": "nekamakyazo"}], "l": "ianflotriflo"}, {"c": [{"c": [{"l": "fuflesufle"}, {"c": [{"l": "armabo"}, {"c": [{"l": "pananebo"}, {"l": "lena"}, {"c": [{"l": "pipiokata"}, {"l": "kamapebu"}, {"l": "letrifuse"}, {"l": "kanosupe"}, {"l": "kobuko"}, {"l": "ikatri"}], "l": "bomafloka"}, {"l": "ketanogoko"}, {"l": "leflositaes"}], "l": "goespiseke"}], "l": "lenosubu"}, {"l": "leflotrima"}, {"l": "futrilefozo"}, {"c": [{"c": [{"l": "kyagobi"}], "l": "bokaestrina"}, {"l": "learno"}], "l": "noflebikeka"}], "l": "kasukyuke"}, {"c": [{"c": [{"l": "gofu"}, {"c": [{"l": "kokesunei"}, {"l": "sekyupio"}, {"l": "mazomaar"}, {"l": "bipe"}, {"c": [{"l": "zope"}, {"l": "kafle"}, {"l": "funasi"}, {"l": "gomafuarkyu"}, {"l": "nobufo"}], "l": "kafuluboes"}], "l": "sifo"}, {"l": "napepe"}, {"c": [{"c": [{"l": "nofo"}], "l": "zokyasuo"}], "l": "nagokokyu"}, {"c": [{"l": "tafobofloes"}, {"l": "ilekyufle"}, {"l": "espitatafu"}, {"l": "kebukekya"}], "l": "sikyakolefo"}, {"c": [{"l": "kyukepi"}, {"l": "lukosikyuke"}, {"l": "futaanko"}, {"l": "sibiflo"}, {"l": "artribiboes"}], "l": "fubopano"}], "l": "sikakatasi"}, {"c": [{"c": [{"c": [{"l": "bigozofobo"}, {"l": "kefu"}, {"l": "kyupies"}, {"l": "pakebolese"}], "l": "makatripi"}, {"l": "fues"}, {"l": "kyafuta"}, {"c": [{"l": "peflekafle"}, {"l": "kagonenaes"}, {"l": "bui"}, {"l": "obi"}], "l": "kozo"}], "l": "keannaflose"}, {"l": "piflo"}, {"l": "kanogofu"}, {"l": "sezota"}], "l": "talelepaka"}, {"l": "lupa"}, {"c": [{"l": "sebu"}, {"c": [{"l": "onebu"}], "l": "bolefose"}, {"c": [{"l": "funo"}, {"l": "paipikase"}, {"l": "fusiananse"}, {"l": "flezobu"}, {"c": [{"l": "kyago"}, {"l": "opisu"}, {"l": "fuzokoko"}], "l": "pamapikogo"}, {"l": "takyapesu"}], "l": "bofulefle"}, {"l": "sitri"}, {"c": [{"l": "nefleko"}, {"l": "onapapa"}, {"l": "pimapema"}, {"l": "bikaespe"}, {"c": [{"l": "nopa"}, {"l": "flobo"}, {"l": "nanai"}, {"l": "olesenofu"}, {"l": "letatri"}, {"l": "pafleine"}, {"l": "kobuko"}], "l": "fuzo"}, {"l": "kake"}], "l": "esankyuar"}], "l": "sebike"}, {"c": [{"c": [{"l": "kaflotrisitri"}, {"l": "flobo"}], "l": "triseo"}, {"l": "kagoino"}, {"l": "pazosi"}, {"l": "flekasego"}], "l": "kepiko"}, {"l": "luzosuta"}], "l": "fuflofu"}, {"l": "flekogo"}, {"c": [{"c": [{"c": [{"l": "papepafo"}, {"l": "ilusu"}, {"c": [{"l": "bokona"}, {"l": "oma"}, {"l": "kyusenefulu"}], "l": "kyalekaolu"}, {"l": "iarkope"}, {"l": "sisuse"}, {"l": "trian"}, {"c": [{"l": "sebi"}], "l": "ile"}], "l": "susebi"}], "l": "obukyatrifu"}, {"c": [{"l": "fuoan"}, {"c": [{"l": "foanbope"}, {"l": "nobues"}, {"c": [{"l": "fuarsita"}, {"l": "kabotrifu"}, {"l": "bipi"}, {"l": "leflefuta"}], "l": "nafugobo"}, {"l": "antrikyu"}, {"l": "keboseofle"}], "l": "espe"}, {"l": "nelei"}, {"l": "panakyapigo"}, {"c": [{"l": "kobunosizo"}, {"l": "trimabu"}, {"l": "masiarzo"}], "l": "noi"}, {"l": "keopitaka"}], "l": "ibi"}, {"c": [{"l": "oespa"}, {"c": [{"l": "fui"}, {"c": [{"l": "buleigotri"}, {"l": "zobuflefu"}, {"l": "nepebi"}, {"l": "pikyuanfokyu"}, {"l": "lepafobugo"}, {"l": "maesesar"}, {"l": "boespi"}], "l": "gonokapafle"}, {"c": [{"l": "pibitako"}, {"l": "flefusibofo"}, {"l": "gogo"}, {"l": "ipekya"}], "l": "ipika"}], "l": "paanankya"}, {"l": "ikyu"}, {"c": [{"l": "sefugo"}, {"c": [{"l": "paono"}, {"l": "flozoke"}, {"l": "espimaita"}, {"l": "sutribose"}, {"l": "nokyanapeta"}, {"l": "butrifufle"}], "l": "kyakofle"}, {"l": "bisupe"}], "l": "tripakoi"}], "l": "noesnepi"}, {"c": [{"c": [{"l": "kyapa"}], "l": "isugo"}, {"l": "pakelu"}, {"c": [{"l": "pafu"}, {"c": [{"l": "fukese"}, {"l": "oflema"}, {"l": "neluanno"}], "l": "pikobibu"}], "l": "bugose"}, {"l": "bokofunale"}, {"l": "floi"}, {"l": "esfleta"}], "l": "tafleesse"}, {"l": "zobuflo"}], "l": "boeskelena"}, {"c": [{"l": "zoluka"}, {"c": [{"c": [{"c": [{"l": "lukaboiar"}, {"l": "kyagokaselu"}, {"l": "lukearzose"}, {"l": "eskyabomalu"}, {"l": "maansi"}], "l": "luma"}, {"l": "kepebupisi"}, {"c": [{"l": "flokoan"}, {"l": "boanpa"}], "l": "okyugotri"}, {"l": "nekazoes"}, {"l": "fotrifle"}, {"l": "flenolebino"}, {"l": "flobu"}], "l": "fupi"}, {"c": [{"l": "kyubi"}, {"l": "fuflezo"}], "l": "pabo"}], "l": "papelukyapa"}, {"c": [{"l": "nasu"}, {"l": "sekyafobu"}], "l": "luzotripifu"}], "l": "sunefle"}], "l": "kole"}, {"c": [{"l": "kebokyumaes"}], "l": "zole"}, {"c": [{"l": "lenogo"}, {"c": [{"c": [{"l": "pekatrisusi"}, {"l": "makyale"}, {"c": [{"l": "triflosezo"}], "l": "futriarbu"}, {"l": "luseflekyues"}], "l": "koleogo"}, {"l": "pamakoar"}, {"l": "pisunepabu"}], "l": "bilupa"}, {"c": [{"l": "flotrinoflo"}, {"c": [{"c": [{"l": "leko"}, {"l": "ilebi"}], "l": "gofleflo"}, {"l": "ifuflena"}, {"l": "anpi"}, {"c": [{"l": "arke"}, {"c": [{"l": "kyafloarflema"}, {"l": "kozopapefu"}], "l": "anmape"}], "l": "sui"}, {"c": [{"c": [{"l": "patapakyu"}, {"l": "pefuinoma"}, {"l": "zozono"}, {"l": "sukokyubipi"}], "l": "fokyu"}, {"l": "bolu"}, {"l": "gooboan"}, {"l": "fulu"}, {"c": [{"l": "lelu"}, {"l": "kyuanpifu"}, {"l": "fufotripa"}, {"l": "kolunoseno"}], "l": "eskaes"}], "l": "zoo"}], "l": "kyunobui"}, {"l": "ankyase"}, {"l": "kyakebui"}, {"c": [{"l": "tripekya"}, {"c": [{"c": [{"l": "anpiflei"}, {"l": "fofoke"}, {"l": "tamapane"}], "l": "gobu"}, {"l": "zonepakebu"}, {"l": "fopenoka"}, {"l": "okosifu"}, {"l": "mapaesfo"}, {"l": "nozoobima"}], "l": "selegono"}, {"l": "lukyu"}, {"l": "futribii"}, {"l": "kotri"}], "l": "espego"}, {"l": "noi"}], "l": "esleiflo"}, {"c": [{"l": "bisuka"}, {"c": [{"c": [{"l": "pafukyanata"}], "l": "sipi"}], "l": "netrino"}, {"c": [{"c": [{"l": "bitri"}], "l": "triletriko"}, {"l": "tabu"}, {"c": [{"l": "sisuan"}], "l": "kaokyakokyu"}, {"l": "nepe"}, {"l": "pafu"}], "l": "naanobupa"}, {"l": "piargoko"}], "l": "nasefu"}, {"c": [{"l": "siboes"}, {"c": [{"l": "flefupisuse"}, {"l": "pele"}, {"l": "kyaikane"}], "l": "kyusufobo"}, {"c": [{"l": "butri"}, {"c": [{"l": "iarkyafuno"}, {"l": "lutrisi"}, {"l": "pefo"}, {"l": "siikya"}, {"l": "ipe"}, {"l": "obonosi"}, {"l": "noflo"}], "l": "fukakya"}, {"c": [{"l": "noespaflele"}, {"l": "sueskyubu"}, {"l": "fofopi"}, {"l": "kyasi"}, {"l": "lubifu"}, {"l": "goflobilu"}], "l": "suiestafo"}, {"c": [{"c": [{"l": "anpakase"}, {"l": "lusi"}, {"l": "bikyazoilu"}], "l": "anfleanpatri"}, {"l": "arzolego"}, {"l": "ieszo"}, {"l": "anbioes"}, {"c": [{"l": "pepi"}, {"l": "bipaflotri"}, {"l": "goboianno"}, {"l": "pase"}, {"l": "anpakya"}], "l": "eszo"}], "l": "anbuespa"}, {"c": [{"l": "naike"}, {"l": "kyunana"}, {"l": "nakeieske"}, {"l": "anpase"}, {"c": [{"l": "lukotaar"}], "l": "suoarmakyu"}, {"l": "trise"}, {"c": [{"l": "seke"}, {"l": "sisu"}, {"l": "tagonokole"}, {"l": "anpasiolu"}, {"l": "fuogogokyu"}, {"l": "esbifle"}, {"l": "estapinear"}], "l": "zopa"}], "l": "ibufle"}, {"l": "kobofubi"}], "l": "zokya"}, {"l": "sebiikya"}, {"l": "sukeflekeke"}, {"l": "nosubu"}, {"c": [{"c": [{"l": "ankofotries"}, {"l": "kobikoi"}, {"l": "konone"}], "l": "konearkya"}, {"l": "pafoboko"}, {"c": [{"c": [{"l": "esta"}, {"l": "zofukya"}, {"l": "mapipe"}, {"l": "nako"}, {"l": "nakokyakoo"}, {"l": "nopaarbian"}], "l": "funatalesi"}], "l": "papaan"}], "l": "pikya"}], "l": "kyaio"}], "l": "trikya"}, {"c": [{"l": "petrimane"}, {"l": "lukyananai"}, {"l": "keoanse"}, {"c": [{"l": "natrikakyabo"}, {"c": [{"c": [{"l": "kenofuanke"}, {"l": "fokosuiflo"}, {"l": "kofloimapa"}, {"c": [{"l": "bukoko"}, {"l": "ile"}], "l": "kyule"}, {"c": [{"l": "oka"}, {"l": "kyufose"}, {"l": "antrikoar"}], "l": "nakeflesear"}, {"l": "flogo"}, {"l": "nelufotase"}], "l": "pakyufope"}, {"l": "pimanabu"}, {"l": "eske"}, {"c": [{"l": "pepeko"}, {"l": "palesinoke"}, {"l": "near"}, {"l": "kofufle"}, {"l": "flokebu"}], "l": "floo"}, {"l": "kaflokyabose"}, {"l": "mapi"}, {"l": "anko"}], "l": "bobo"}, {"l": "okozolubo"}, {"l": "eske"}, {"c": [{"l": "okoarfu"}], "l": "arnatai"}, {"l": "sina"}, {"c": [{"l": "seta"}, {"l": "nazokyubi"}], "l": "suantri"}], "l": "kyaesar"}], "l": "biike"}, {"l": "espe"}, {"l": "peno"}], "l": "sebo"}, {"c": [{"c": [{"c": [{"c": [{"c": [{"l": "fone"}, {"l": "kabi"}], "l": "zofletai"}, {"l": "bipaflokafu"}, {"c": [{"l": "essui"}, {"c": [{"l": "kesikase"}], "l": "suanpe"}, {"l": "lufupi"}, {"l": "imasi"}], "l": "lepeokekyu"}, {"l": "ibikasule"}, {"l": "esflesu"}], "l": "sulukei"}, {"c": [{"l": "kyuleka"}, {"l": "esketri"}, {"c": [{"l": "penabumafle"}, {"l": "fofonesu"}, {"c": [{"l": "obibo"}, {"l": "zozo"}], "l": "arbuar"}, {"c": [{"l": "pekyakebuan"}, {"l": "fusepakefle"}, {"l": "nabi"}, {"l": "lubutri"}, {"l": "fopeflene"}], "l": "olekya"}, {"l": "pesi"}, {"l": "kyasi"}], "l": "artriflopesi"}, {"c": [{"l": "bubuanfle"}, {"l": "essina"}, {"l": "kasiflosukya"}, {"l": "leansiflean"}], "l": "nao"}, {"l": "foko"}, {"l": "kesefleibo"}], "l": "kone"}], "l": "seiluluan"}, {"l": "tasino"}, {"c": [{"c": [{"l": "nepi"}], "l": "simapi"}, {"c": [{"l": "nakasu"}, {"c": [{"c": [{"l": "nosu"}, {"l": "kyuarkelu"}, {"l": "sefopebuta"}, {"l": "sueslees"}], "l": "trilefukeka"}], "l": "kanaes"}, {"c": [{"l": "binoanbi"}, {"l": "ifloke"}, {"l": "triar"}], "l": "bokalu"}, {"l": "arkyulefo"}, {"l": "antalena"}], "l": "boflegogosu"}, {"c": [{"c": [{"l": "noluiiar"}, {"l": "setabifo"}, {"c": [{"l": "ari"}, {"l": "noarkopi"}], "l": "flelearbo"}, {"l": "lean"}, {"l": "nokyanasika"}, {"c": [{"l": "bibikyu"}], "l": "osusinear"}, {"l": "pifumakope"}], "l": "esflosu"}], "l": "bopatrikyale"}, {"c": [{"c": [{"c": [{"l": "estrise"}, {"l": "takyu"}, {"l": "kobi"}, {"l": "opekyubu"}, {"l": "olufleke"}, {"l": "goka"}, {"l": "bianpekei"}], "l": "nabine"}], "l": "kogolean"}, {"l": "foflo"}, {"l": "folezo"}], "l": "piko"}, {"c": [{"l": "gomanona"}, {"c": [{"l": "sukeno"}, {"l": "nanaopa"}, {"l": "legolepa"}, {"l": "isipema"}], "l": "lefotriine"}, {"l": "taoar"}], "l": "butrizobi"}, {"c": [{"l": "fleo"}, {"l": "bugo"}, {"l": "kyaoboes"}], "l": "maflozoflobu"}, {"c": [{"l": "ipeleflene"}, {"l": "espe"}, {"c": [{"l": "paflozo"}, {"l": "bona"}, {"c": [{"l": "isulu"}, {"l": "kyuta"}, {"l": "netatrino"}, {"l": "kebu"}, {"l": "opisi"}, {"l": "floluta"}], "l": "anle"}, {"l": "trisees"}, {"l": "gobuboeso"}], "l": "goise"}], "l": "sepinoflo"}], "l": "kyuiari"}, {"c": [{"c": [{"l": "floan"}, {"c": [{"l": "leleflofo"}], "l": "zoar"}, {"l": "flonobulu"}, {"l": "bugokyafu"}, {"c": [{"c": [{"l": "patrizo"}, {"l": "pamaolefo"}, {"l": "bibu"}, {"l": "bifle"}], "l": "nakyabofloko"}, {"l": "bupileleno"}, {"l": "pafu"}, {"l": "bisuarbogo"}, {"l": "tribona"}, {"c": [{"l": "tripafu"}, {"l": "seeses"}, {"l": "ianpian"}, {"l": "fleoi"}, {"l": "senakoes"}, {"l": "kobuzopao"}, {"l": "sifoolu"}], "l": "isunasene"}], "l": "keanpino"}, {"l": "piflepego"}], "l": "sizobu"}, {"l": "seko"}, {"l": "anbulekya"}, {"l": "seta"}, {"l": "kotritri"}, {"l": "sekyusebita"}], "l": "oka"}, {"c": [{"l": "leleneko"}, {"c": [{"l": "maipeka"}, {"l": "naikake"}, {"l": "pimaanko"}, {"c": [{"l": "kyupamanolu"}, {"l": "piesgofoma"}, {"l": "kyupeessu"}, {"l": "kyamaluzono"}], "l": "arbi"}, {"l": "floflopaflees"}], "l": "triseartri"}, {"l": "lesema"}], "l": "biko"}, {"c": [{"c": [{"l": "namanaopi"}, {"c": [{"l": "nogoesflees"}, {"c": [{"l": "okyaonazo"}, {"l": "boitriesna"}], "l": "nonao"}, {"c": [{"l": "luko"}, {"l": "kosu"}, {"l": "kapagoi"}, {"l": "piarbita"}, {"l": "anbo"}, {"l": "sikyunaflear"}, {"l": "peeske"}], "l": "bunopiflofu"}, {"c": [{"l": "trikyu"}], "l": "bofubolulu"}, {"l": "naantriarbu"}, {"l": "kyutri"}, {"l": "bukogofuzo"}], "l": "kaesfota"}, {"l": "nasusekaar"}, {"c": [{"c": [{"l": "foluzobuna"}, {"l": "kekonobopa"}, {"l": "gogoarka"}, {"l": "arkokyufoo"}, {"l": "pegofule"}, {"l": "sigo"}, {"l": "anflego"}], "l": "flekanogole"}, {"l": "goleo"}, {"l": "espe"}, {"l": "ofupikya"}, {"l": "kalupa"}, {"l": "bofoo"}, {"l": "takyuesna"}], "l": "paogogo"}, {"l": "kyubosumabu"}], "l": "lepapipi"}, {"l": "kyupi"}], "l": "pileika"}, {"c": [{"l": "nanaarar"}, {"c": [{"l": "kyubutasu"}, {"l": "essukane"}], "l": "fletrikyusees"}], "l": "flekyukota"}], "l": "sufuan"}, {"l": "patrikyaseke"}], "l": "bita"}, {"c": [{"l": "arzofubikya"}, {"c": [{"c": [{"c": [{"l": "pefle"}, {"l": "esopeta"}, {"l": "oneesfopi"}], "l": "aran"}, {"c": [{"l": "zobubole"}, {"c": [{"c": [{"l": "mazo"}, {"l": "kanono"}, {"l": "zobizotrio"}], "l": "kyabiarke"}, {"l": "sezobo"}, {"c": [{"l": "pipepeleta"}, {"l": "kozo"}, {"l": "esestrigo"}, {"l": "kobuflo"}, {"l": "nekyule"}, {"l": "bisilekyupi"}], "l": "fofofota"}], "l": "paanpe"}, {"l": "flozogope"}, {"c": [{"c": [{"l": "fotasiibi"}, {"l": "sine"}, {"l": "zogoesfu"}], "l": "luarkyunoar"}, {"c": [{"l": "pitasuma"}, {"l": "sitri"}], "l": "zoesfopape"}, {"l": "eskekaluko"}], "l": "bupasetrian"}, {"l": "pibipesi"}], "l": "suikyuarfo"}, {"l": "eskoflokyuflo"}, {"c": [{"l": "zogo"}, {"c": [{"c": [{"l": "leta"}, {"l": "tata"}, {"l": "flezobifoar"}], "l": "lubunalupe"}, {"l": "kapapi"}, {"l": "bupekyubosu"}, {"l": "kyubosipi"}], "l": "kyabu"}, {"l": "supai"}, {"c": [{"l": "goartale"}, {"l": "anessutri"}, {"l": "tamakyu"}, {"c": [{"l": "binaflokyao"}, {"l": "esflean"}, {"l": "pile"}, {"l": "lekemaanpa"}], "l": "lukefupa"}, {"l": "pafukeflotri"}, {"l": "iko"}], "l": "bubuanlefle"}, {"l": "nanetapabo"}], "l": "fleeszo"}], "l": "zolusu"}], "l": "nabo"}], "l": "lubitrifu"}], "l": "konanopii"}
Display the source blob
Display the rendered blob
Raw
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment