123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982 |
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- export default {
- "series": [
- {
- "name": "Les Miserables",
- "type": "graph",
- "layout": "none",
- "data": [
- {
- "id": "0",
- "name": "Myriel",
- "label": {
- "normal": {
- "formatter": "Myriel",
- "show": false
- }
- },
- "symbolSize": 28.685715,
- "x": -266.82776,
- "y": 299.6904,
- "attributes": {
- "modularity_class": 0
- },
- "value": 28.685715,
- "category": 0
- },
- {
- "id": "1",
- "name": "Napoleon",
- "label": {
- "normal": {
- "formatter": "Napoleon",
- "show": false
- }
- },
- "symbolSize": 4,
- "x": -418.08344,
- "y": 446.8853,
- "attributes": {
- "modularity_class": 0
- },
- "value": 4,
- "category": 0
- },
- {
- "id": "2",
- "name": "MlleBaptistine",
- "label": {
- "normal": {
- "formatter": "MlleBaptistine",
- "show": false
- }
- },
- "symbolSize": 9.485714,
- "x": -212.76357,
- "y": 245.29176,
- "attributes": {
- "modularity_class": 1
- },
- "value": 9.485714,
- "category": 1
- },
- {
- "id": "3",
- "name": "MmeMagloire",
- "label": {
- "normal": {
- "formatter": "MmeMagloire",
- "show": false
- }
- },
- "symbolSize": 9.485714,
- "x": -242.82404,
- "y": 235.26283,
- "attributes": {
- "modularity_class": 1
- },
- "value": 9.485714,
- "category": 1
- },
- {
- "id": "4",
- "name": "CountessDeLo",
- "label": {
- "normal": {
- "formatter": "CountessDeLo",
- "show": false
- }
- },
- "symbolSize": 4,
- "x": -379.30386,
- "y": 429.06424,
- "attributes": {
- "modularity_class": 0
- },
- "value": 4,
- "category": 0
- },
- {
- "id": "5",
- "name": "Geborand",
- "label": {
- "normal": {
- "formatter": "Geborand",
- "show": false
- }
- },
- "symbolSize": 4,
- "x": -417.26337,
- "y": 406.03506,
- "attributes": {
- "modularity_class": 0
- },
- "value": 4,
- "category": 0
- },
- {
- "id": "6",
- "name": "Champtercier",
- "label": {
- "normal": {
- "formatter": "Champtercier",
- "show": false
- }
- },
- "symbolSize": 4,
- "x": -332.6012,
- "y": 485.16974,
- "attributes": {
- "modularity_class": 0
- },
- "value": 4,
- "category": 0
- },
- {
- "id": "7",
- "name": "Cravatte",
- "label": {
- "normal": {
- "formatter": "Cravatte",
- "show": false
- }
- },
- "symbolSize": 4,
- "x": -382.69568,
- "y": 475.09113,
- "attributes": {
- "modularity_class": 0
- },
- "value": 4,
- "category": 0
- },
- {
- "id": "8",
- "name": "Count",
- "label": {
- "normal": {
- "formatter": "Count",
- "show": false
- }
- },
- "symbolSize": 4,
- "x": -320.384,
- "y": 387.17325,
- "attributes": {
- "modularity_class": 0
- },
- "value": 4,
- "category": 0
- },
- {
- "id": "9",
- "name": "OldMan",
- "label": {
- "normal": {
- "formatter": "OldMan",
- "show": false
- }
- },
- "symbolSize": 4,
- "x": -344.39832,
- "y": 451.16772,
- "attributes": {
- "modularity_class": 0
- },
- "value": 4,
- "category": 0
- },
- {
- "id": "10",
- "name": "Labarre",
- "label": {
- "normal": {
- "formatter": "Labarre",
- "show": false
- }
- },
- "symbolSize": 4,
- "x": -89.34107,
- "y": 234.56128,
- "attributes": {
- "modularity_class": 1
- },
- "value": 4,
- "category": 1
- },
- {
- "id": "11",
- "name": "Valjean",
- "label": {
- "normal": {
- "formatter": "Valjean",
- "show": false
- }
- },
- "symbolSize": 100,
- "x": -87.93029,
- "y": -6.8120565,
- "attributes": {
- "modularity_class": 1
- },
- "value": 100,
- "category": 1
- },
- {
- "id": "12",
- "name": "Marguerite",
- "label": {
- "normal": {
- "formatter": "Marguerite",
- "show": false
- }
- },
- "symbolSize": 6.742859,
- "x": -339.77908,
- "y": -184.69139,
- "attributes": {
- "modularity_class": 1
- },
- "value": 6.742859,
- "category": 1
- },
- {
- "id": "13",
- "name": "MmeDeR",
- "label": {
- "normal": {
- "formatter": "MmeDeR",
- "show": false
- }
- },
- "symbolSize": 4,
- "x": -194.31313,
- "y": 178.55301,
- "attributes": {
- "modularity_class": 1
- },
- "value": 4,
- "category": 1
- },
- {
- "id": "14",
- "name": "Isabeau",
- "label": {
- "normal": {
- "formatter": "Isabeau",
- "show": false
- }
- },
- "symbolSize": 4,
- "x": -158.05168,
- "y": 201.99768,
- "attributes": {
- "modularity_class": 1
- },
- "value": 4,
- "category": 1
- },
- {
- "id": "15",
- "name": "Gervais",
- "label": {
- "normal": {
- "formatter": "Gervais",
- "show": false
- }
- },
- "symbolSize": 4,
- "x": -127.701546,
- "y": 242.55057,
- "attributes": {
- "modularity_class": 1
- },
- "value": 4,
- "category": 1
- },
- {
- "id": "16",
- "name": "Tholomyes",
- "label": {
- "normal": {
- "formatter": "Tholomyes",
- "show": false
- }
- },
- "symbolSize": 25.942856,
- "x": -385.2226,
- "y": -393.5572,
- "attributes": {
- "modularity_class": 2
- },
- "value": 25.942856,
- "category": 2
- },
- {
- "id": "17",
- "name": "Listolier",
- "label": {
- "normal": {
- "formatter": "Listolier",
- "show": false
- }
- },
- "symbolSize": 20.457146,
- "x": -516.55884,
- "y": -393.98975,
- "attributes": {
- "modularity_class": 2
- },
- "value": 20.457146,
- "category": 2
- },
- {
- "id": "18",
- "name": "Fameuil",
- "label": {
- "normal": {
- "formatter": "Fameuil",
- "show": false
- }
- },
- "symbolSize": 20.457146,
- "x": -464.79382,
- "y": -493.57944,
- "attributes": {
- "modularity_class": 2
- },
- "value": 20.457146,
- "category": 2
- },
- {
- "id": "19",
- "name": "Blacheville",
- "label": {
- "normal": {
- "formatter": "Blacheville",
- "show": false
- }
- },
- "symbolSize": 20.457146,
- "x": -515.1624,
- "y": -456.9891,
- "attributes": {
- "modularity_class": 2
- },
- "value": 20.457146,
- "category": 2
- },
- {
- "id": "20",
- "name": "Favourite",
- "label": {
- "normal": {
- "formatter": "Favourite",
- "show": false
- }
- },
- "symbolSize": 20.457146,
- "x": -408.12122,
- "y": -464.5048,
- "attributes": {
- "modularity_class": 2
- },
- "value": 20.457146,
- "category": 2
- },
- {
- "id": "21",
- "name": "Dahlia",
- "label": {
- "normal": {
- "formatter": "Dahlia",
- "show": false
- }
- },
- "symbolSize": 20.457146,
- "x": -456.44113,
- "y": -425.13303,
- "attributes": {
- "modularity_class": 2
- },
- "value": 20.457146,
- "category": 2
- },
- {
- "id": "22",
- "name": "Zephine",
- "label": {
- "normal": {
- "formatter": "Zephine",
- "show": false
- }
- },
- "symbolSize": 20.457146,
- "x": -459.1107,
- "y": -362.5133,
- "attributes": {
- "modularity_class": 2
- },
- "value": 20.457146,
- "category": 2
- },
- {
- "id": "23",
- "name": "Fantine",
- "label": {
- "normal": {
- "formatter": "Fantine",
- "show": false
- }
- },
- "symbolSize": 42.4,
- "x": -313.42786,
- "y": -289.44803,
- "attributes": {
- "modularity_class": 2
- },
- "value": 42.4,
- "category": 2
- },
- {
- "id": "24",
- "name": "MmeThenardier",
- "label": {
- "normal": {
- "formatter": "MmeThenardier",
- "show": false
- }
- },
- "symbolSize": 31.428574,
- "x": 4.6313396,
- "y": -273.8517,
- "attributes": {
- "modularity_class": 7
- },
- "value": 31.428574,
- "category": 7
- },
- {
- "id": "25",
- "name": "Thenardier",
- "label": {
- "normal": {
- "formatter": "Thenardier",
- "show": false
- }
- },
- "symbolSize": 45.142853,
- "x": 82.80825,
- "y": -203.1144,
- "attributes": {
- "modularity_class": 7
- },
- "value": 45.142853,
- "category": 7
- },
- {
- "id": "26",
- "name": "Cosette",
- "label": {
- "normal": {
- "formatter": "Cosette",
- "show": false
- }
- },
- "symbolSize": 31.428574,
- "x": 78.64646,
- "y": -31.512747,
- "attributes": {
- "modularity_class": 6
- },
- "value": 31.428574,
- "category": 6
- },
- {
- "id": "27",
- "name": "Javert",
- "label": {
- "normal": {
- "formatter": "Javert",
- "show": false
- }
- },
- "symbolSize": 47.88571,
- "x": -81.46074,
- "y": -204.20204,
- "attributes": {
- "modularity_class": 7
- },
- "value": 47.88571,
- "category": 7
- },
- {
- "id": "28",
- "name": "Fauchelevent",
- "label": {
- "normal": {
- "formatter": "Fauchelevent",
- "show": false
- }
- },
- "symbolSize": 12.228573,
- "x": -225.73984,
- "y": 82.41631,
- "attributes": {
- "modularity_class": 4
- },
- "value": 12.228573,
- "category": 4
- },
- {
- "id": "29",
- "name": "Bamatabois",
- "label": {
- "normal": {
- "formatter": "Bamatabois",
- "show": false
- }
- },
- "symbolSize": 23.2,
- "x": -385.6842,
- "y": -20.206686,
- "attributes": {
- "modularity_class": 3
- },
- "value": 23.2,
- "category": 3
- },
- {
- "id": "30",
- "name": "Perpetue",
- "label": {
- "normal": {
- "formatter": "Perpetue",
- "show": false
- }
- },
- "symbolSize": 6.742859,
- "x": -403.92447,
- "y": -197.69823,
- "attributes": {
- "modularity_class": 2
- },
- "value": 6.742859,
- "category": 2
- },
- {
- "id": "31",
- "name": "Simplice",
- "label": {
- "normal": {
- "formatter": "Simplice",
- "show": false
- }
- },
- "symbolSize": 12.228573,
- "x": -281.4253,
- "y": -158.45137,
- "attributes": {
- "modularity_class": 2
- },
- "value": 12.228573,
- "category": 2
- },
- {
- "id": "32",
- "name": "Scaufflaire",
- "label": {
- "normal": {
- "formatter": "Scaufflaire",
- "show": false
- }
- },
- "symbolSize": 4,
- "x": -122.41348,
- "y": 210.37503,
- "attributes": {
- "modularity_class": 1
- },
- "value": 4,
- "category": 1
- },
- {
- "id": "33",
- "name": "Woman1",
- "label": {
- "normal": {
- "formatter": "Woman1",
- "show": false
- }
- },
- "symbolSize": 6.742859,
- "x": -234.6001,
- "y": -113.15067,
- "attributes": {
- "modularity_class": 1
- },
- "value": 6.742859,
- "category": 1
- },
- {
- "id": "34",
- "name": "Judge",
- "label": {
- "normal": {
- "formatter": "Judge",
- "show": false
- }
- },
- "symbolSize": 17.714287,
- "x": -387.84915,
- "y": 58.7059,
- "attributes": {
- "modularity_class": 3
- },
- "value": 17.714287,
- "category": 3
- },
- {
- "id": "35",
- "name": "Champmathieu",
- "label": {
- "normal": {
- "formatter": "Champmathieu",
- "show": false
- }
- },
- "symbolSize": 17.714287,
- "x": -338.2307,
- "y": 87.48405,
- "attributes": {
- "modularity_class": 3
- },
- "value": 17.714287,
- "category": 3
- },
- {
- "id": "36",
- "name": "Brevet",
- "label": {
- "normal": {
- "formatter": "Brevet",
- "show": false
- }
- },
- "symbolSize": 17.714287,
- "x": -453.26874,
- "y": 58.94648,
- "attributes": {
- "modularity_class": 3
- },
- "value": 17.714287,
- "category": 3
- },
- {
- "id": "37",
- "name": "Chenildieu",
- "label": {
- "normal": {
- "formatter": "Chenildieu",
- "show": false
- }
- },
- "symbolSize": 17.714287,
- "x": -386.44904,
- "y": 140.05937,
- "attributes": {
- "modularity_class": 3
- },
- "value": 17.714287,
- "category": 3
- },
- {
- "id": "38",
- "name": "Cochepaille",
- "label": {
- "normal": {
- "formatter": "Cochepaille",
- "show": false
- }
- },
- "symbolSize": 17.714287,
- "x": -446.7876,
- "y": 123.38005,
- "attributes": {
- "modularity_class": 3
- },
- "value": 17.714287,
- "category": 3
- },
- {
- "id": "39",
- "name": "Pontmercy",
- "label": {
- "normal": {
- "formatter": "Pontmercy",
- "show": false
- }
- },
- "symbolSize": 9.485714,
- "x": 336.49738,
- "y": -269.55914,
- "attributes": {
- "modularity_class": 6
- },
- "value": 9.485714,
- "category": 6
- },
- {
- "id": "40",
- "name": "Boulatruelle",
- "label": {
- "normal": {
- "formatter": "Boulatruelle",
- "show": false
- }
- },
- "symbolSize": 4,
- "x": 29.187843,
- "y": -460.13132,
- "attributes": {
- "modularity_class": 7
- },
- "value": 4,
- "category": 7
- },
- {
- "id": "41",
- "name": "Eponine",
- "label": {
- "normal": {
- "formatter": "Eponine",
- "show": false
- }
- },
- "symbolSize": 31.428574,
- "x": 238.36697,
- "y": -210.00926,
- "attributes": {
- "modularity_class": 7
- },
- "value": 31.428574,
- "category": 7
- },
- {
- "id": "42",
- "name": "Anzelma",
- "label": {
- "normal": {
- "formatter": "Anzelma",
- "show": false
- }
- },
- "symbolSize": 9.485714,
- "x": 189.69513,
- "y": -346.50662,
- "attributes": {
- "modularity_class": 7
- },
- "value": 9.485714,
- "category": 7
- },
- {
- "id": "43",
- "name": "Woman2",
- "label": {
- "normal": {
- "formatter": "Woman2",
- "show": false
- }
- },
- "symbolSize": 9.485714,
- "x": -187.00418,
- "y": -145.02663,
- "attributes": {
- "modularity_class": 6
- },
- "value": 9.485714,
- "category": 6
- },
- {
- "id": "44",
- "name": "MotherInnocent",
- "label": {
- "normal": {
- "formatter": "MotherInnocent",
- "show": false
- }
- },
- "symbolSize": 6.742859,
- "x": -252.99521,
- "y": 129.87549,
- "attributes": {
- "modularity_class": 4
- },
- "value": 6.742859,
- "category": 4
- },
- {
- "id": "45",
- "name": "Gribier",
- "label": {
- "normal": {
- "formatter": "Gribier",
- "show": false
- }
- },
- "symbolSize": 4,
- "x": -296.07935,
- "y": 163.11964,
- "attributes": {
- "modularity_class": 4
- },
- "value": 4,
- "category": 4
- },
- {
- "id": "46",
- "name": "Jondrette",
- "label": {
- "normal": {
- "formatter": "Jondrette",
- "show": false
- }
- },
- "symbolSize": 4,
- "x": 550.3201,
- "y": 522.4031,
- "attributes": {
- "modularity_class": 5
- },
- "value": 4,
- "category": 5
- },
- {
- "id": "47",
- "name": "MmeBurgon",
- "label": {
- "normal": {
- "formatter": "MmeBurgon",
- "show": false
- }
- },
- "symbolSize": 6.742859,
- "x": 488.13535,
- "y": 356.8573,
- "attributes": {
- "modularity_class": 5
- },
- "value": 6.742859,
- "category": 5
- },
- {
- "id": "48",
- "name": "Gavroche",
- "label": {
- "normal": {
- "formatter": "Gavroche",
- "show": false
- }
- },
- "symbolSize": 61.600006,
- "x": 387.89572,
- "y": 110.462326,
- "attributes": {
- "modularity_class": 8
- },
- "value": 61.600006,
- "category": 8
- },
- {
- "id": "49",
- "name": "Gillenormand",
- "label": {
- "normal": {
- "formatter": "Gillenormand",
- "show": false
- }
- },
- "symbolSize": 20.457146,
- "x": 126.4831,
- "y": 68.10622,
- "attributes": {
- "modularity_class": 6
- },
- "value": 20.457146,
- "category": 6
- },
- {
- "id": "50",
- "name": "Magnon",
- "label": {
- "normal": {
- "formatter": "Magnon",
- "show": false
- }
- },
- "symbolSize": 6.742859,
- "x": 127.07365,
- "y": -113.05923,
- "attributes": {
- "modularity_class": 6
- },
- "value": 6.742859,
- "category": 6
- },
- {
- "id": "51",
- "name": "MlleGillenormand",
- "label": {
- "normal": {
- "formatter": "MlleGillenormand",
- "show": false
- }
- },
- "symbolSize": 20.457146,
- "x": 162.63559,
- "y": 117.6565,
- "attributes": {
- "modularity_class": 6
- },
- "value": 20.457146,
- "category": 6
- },
- {
- "id": "52",
- "name": "MmePontmercy",
- "label": {
- "normal": {
- "formatter": "MmePontmercy",
- "show": false
- }
- },
- "symbolSize": 6.742859,
- "x": 353.66415,
- "y": -205.89165,
- "attributes": {
- "modularity_class": 6
- },
- "value": 6.742859,
- "category": 6
- },
- {
- "id": "53",
- "name": "MlleVaubois",
- "label": {
- "normal": {
- "formatter": "MlleVaubois",
- "show": false
- }
- },
- "symbolSize": 4,
- "x": 165.43939,
- "y": 339.7736,
- "attributes": {
- "modularity_class": 6
- },
- "value": 4,
- "category": 6
- },
- {
- "id": "54",
- "name": "LtGillenormand",
- "label": {
- "normal": {
- "formatter": "LtGillenormand",
- "show": false
- }
- },
- "symbolSize": 12.228573,
- "x": 137.69348,
- "y": 196.1069,
- "attributes": {
- "modularity_class": 6
- },
- "value": 12.228573,
- "category": 6
- },
- {
- "id": "55",
- "name": "Marius",
- "label": {
- "normal": {
- "formatter": "Marius",
- "show": false
- }
- },
- "symbolSize": 53.37143,
- "x": 206.44687,
- "y": -13.805411,
- "attributes": {
- "modularity_class": 6
- },
- "value": 53.37143,
- "category": 6
- },
- {
- "id": "56",
- "name": "BaronessT",
- "label": {
- "normal": {
- "formatter": "BaronessT",
- "show": false
- }
- },
- "symbolSize": 6.742859,
- "x": 194.82993,
- "y": 224.78036,
- "attributes": {
- "modularity_class": 6
- },
- "value": 6.742859,
- "category": 6
- },
- {
- "id": "57",
- "name": "Mabeuf",
- "label": {
- "normal": {
- "formatter": "Mabeuf",
- "show": false
- }
- },
- "symbolSize": 31.428574,
- "x": 597.6618,
- "y": 135.18481,
- "attributes": {
- "modularity_class": 8
- },
- "value": 31.428574,
- "category": 8
- },
- {
- "id": "58",
- "name": "Enjolras",
- "label": {
- "normal": {
- "formatter": "Enjolras",
- "show": false
- }
- },
- "symbolSize": 42.4,
- "x": 355.78366,
- "y": -74.882454,
- "attributes": {
- "modularity_class": 8
- },
- "value": 42.4,
- "category": 8
- },
- {
- "id": "59",
- "name": "Combeferre",
- "label": {
- "normal": {
- "formatter": "Combeferre",
- "show": false
- }
- },
- "symbolSize": 31.428574,
- "x": 515.2961,
- "y": -46.167564,
- "attributes": {
- "modularity_class": 8
- },
- "value": 31.428574,
- "category": 8
- },
- {
- "id": "60",
- "name": "Prouvaire",
- "label": {
- "normal": {
- "formatter": "Prouvaire",
- "show": false
- }
- },
- "symbolSize": 25.942856,
- "x": 614.29285,
- "y": -69.3104,
- "attributes": {
- "modularity_class": 8
- },
- "value": 25.942856,
- "category": 8
- },
- {
- "id": "61",
- "name": "Feuilly",
- "label": {
- "normal": {
- "formatter": "Feuilly",
- "show": false
- }
- },
- "symbolSize": 31.428574,
- "x": 550.1917,
- "y": -128.17537,
- "attributes": {
- "modularity_class": 8
- },
- "value": 31.428574,
- "category": 8
- },
- {
- "id": "62",
- "name": "Courfeyrac",
- "label": {
- "normal": {
- "formatter": "Courfeyrac",
- "show": false
- }
- },
- "symbolSize": 36.91429,
- "x": 436.17184,
- "y": -12.7286825,
- "attributes": {
- "modularity_class": 8
- },
- "value": 36.91429,
- "category": 8
- },
- {
- "id": "63",
- "name": "Bahorel",
- "label": {
- "normal": {
- "formatter": "Bahorel",
- "show": false
- }
- },
- "symbolSize": 34.17143,
- "x": 602.55225,
- "y": 16.421427,
- "attributes": {
- "modularity_class": 8
- },
- "value": 34.17143,
- "category": 8
- },
- {
- "id": "64",
- "name": "Bossuet",
- "label": {
- "normal": {
- "formatter": "Bossuet",
- "show": false
- }
- },
- "symbolSize": 36.91429,
- "x": 455.81955,
- "y": -115.45826,
- "attributes": {
- "modularity_class": 8
- },
- "value": 36.91429,
- "category": 8
- },
- {
- "id": "65",
- "name": "Joly",
- "label": {
- "normal": {
- "formatter": "Joly",
- "show": false
- }
- },
- "symbolSize": 34.17143,
- "x": 516.40784,
- "y": 47.242233,
- "attributes": {
- "modularity_class": 8
- },
- "value": 34.17143,
- "category": 8
- },
- {
- "id": "66",
- "name": "Grantaire",
- "label": {
- "normal": {
- "formatter": "Grantaire",
- "show": false
- }
- },
- "symbolSize": 28.685715,
- "x": 646.4313,
- "y": -151.06331,
- "attributes": {
- "modularity_class": 8
- },
- "value": 28.685715,
- "category": 8
- },
- {
- "id": "67",
- "name": "MotherPlutarch",
- "label": {
- "normal": {
- "formatter": "MotherPlutarch",
- "show": false
- }
- },
- "symbolSize": 4,
- "x": 668.9568,
- "y": 204.65488,
- "attributes": {
- "modularity_class": 8
- },
- "value": 4,
- "category": 8
- },
- {
- "id": "68",
- "name": "Gueulemer",
- "label": {
- "normal": {
- "formatter": "Gueulemer",
- "show": false
- }
- },
- "symbolSize": 28.685715,
- "x": 78.4799,
- "y": -347.15146,
- "attributes": {
- "modularity_class": 7
- },
- "value": 28.685715,
- "category": 7
- },
- {
- "id": "69",
- "name": "Babet",
- "label": {
- "normal": {
- "formatter": "Babet",
- "show": false
- }
- },
- "symbolSize": 28.685715,
- "x": 150.35959,
- "y": -298.50797,
- "attributes": {
- "modularity_class": 7
- },
- "value": 28.685715,
- "category": 7
- },
- {
- "id": "70",
- "name": "Claquesous",
- "label": {
- "normal": {
- "formatter": "Claquesous",
- "show": false
- }
- },
- "symbolSize": 28.685715,
- "x": 137.3717,
- "y": -410.2809,
- "attributes": {
- "modularity_class": 7
- },
- "value": 28.685715,
- "category": 7
- },
- {
- "id": "71",
- "name": "Montparnasse",
- "label": {
- "normal": {
- "formatter": "Montparnasse",
- "show": false
- }
- },
- "symbolSize": 25.942856,
- "x": 234.87747,
- "y": -400.85983,
- "attributes": {
- "modularity_class": 7
- },
- "value": 25.942856,
- "category": 7
- },
- {
- "id": "72",
- "name": "Toussaint",
- "label": {
- "normal": {
- "formatter": "Toussaint",
- "show": false
- }
- },
- "symbolSize": 9.485714,
- "x": 40.942253,
- "y": 113.78272,
- "attributes": {
- "modularity_class": 1
- },
- "value": 9.485714,
- "category": 1
- },
- {
- "id": "73",
- "name": "Child1",
- "label": {
- "normal": {
- "formatter": "Child1",
- "show": false
- }
- },
- "symbolSize": 6.742859,
- "x": 437.939,
- "y": 291.58234,
- "attributes": {
- "modularity_class": 8
- },
- "value": 6.742859,
- "category": 8
- },
- {
- "id": "74",
- "name": "Child2",
- "label": {
- "normal": {
- "formatter": "Child2",
- "show": false
- }
- },
- "symbolSize": 6.742859,
- "x": 466.04922,
- "y": 283.3606,
- "attributes": {
- "modularity_class": 8
- },
- "value": 6.742859,
- "category": 8
- },
- {
- "id": "75",
- "name": "Brujon",
- "label": {
- "normal": {
- "formatter": "Brujon",
- "show": false
- }
- },
- "symbolSize": 20.457146,
- "x": 238.79364,
- "y": -314.06345,
- "attributes": {
- "modularity_class": 7
- },
- "value": 20.457146,
- "category": 7
- },
- {
- "id": "76",
- "name": "MmeHucheloup",
- "label": {
- "normal": {
- "formatter": "MmeHucheloup",
- "show": false
- }
- },
- "symbolSize": 20.457146,
- "x": 712.18353,
- "y": 4.8131495,
- "attributes": {
- "modularity_class": 8
- },
- "value": 20.457146,
- "category": 8
- }
- ],
- "links": [
- {
- "id": "0",
- "name": null,
- "source": "1",
- "target": "0"
- },
- {
- "id": "1",
- "name": null,
- "source": "2",
- "target": "0"
- },
- {
- "id": "2",
- "name": null,
- "source": "3",
- "target": "0"
- },
- {
- "id": "3",
- "name": null,
- "source": "3",
- "target": "2"
- },
- {
- "id": "4",
- "name": null,
- "source": "4",
- "target": "0"
- },
- {
- "id": "5",
- "name": null,
- "source": "5",
- "target": "0"
- },
- {
- "id": "6",
- "name": null,
- "source": "6",
- "target": "0"
- },
- {
- "id": "7",
- "name": null,
- "source": "7",
- "target": "0"
- },
- {
- "id": "8",
- "name": null,
- "source": "8",
- "target": "0"
- },
- {
- "id": "9",
- "name": null,
- "source": "9",
- "target": "0"
- },
- {
- "id": "13",
- "name": null,
- "source": "11",
- "target": "0"
- },
- {
- "id": null,
- "name": null,
- "source": "11",
- "target": "2"
- },
- {
- "id": "11",
- "name": null,
- "source": "11",
- "target": "3"
- },
- {
- "id": "10",
- "name": null,
- "source": "11",
- "target": "10"
- },
- {
- "id": "14",
- "name": null,
- "source": "12",
- "target": "11"
- },
- {
- "id": "15",
- "name": null,
- "source": "13",
- "target": "11"
- },
- {
- "id": "16",
- "name": null,
- "source": "14",
- "target": "11"
- },
- {
- "id": "17",
- "name": null,
- "source": "15",
- "target": "11"
- },
- {
- "id": "18",
- "name": null,
- "source": "17",
- "target": "16"
- },
- {
- "id": "19",
- "name": null,
- "source": "18",
- "target": "16"
- },
- {
- "id": "20",
- "name": null,
- "source": "18",
- "target": "17"
- },
- {
- "id": "21",
- "name": null,
- "source": "19",
- "target": "16"
- },
- {
- "id": "22",
- "name": null,
- "source": "19",
- "target": "17"
- },
- {
- "id": "23",
- "name": null,
- "source": "19",
- "target": "18"
- },
- {
- "id": "24",
- "name": null,
- "source": "20",
- "target": "16"
- },
- {
- "id": "25",
- "name": null,
- "source": "20",
- "target": "17"
- },
- {
- "id": "26",
- "name": null,
- "source": "20",
- "target": "18"
- },
- {
- "id": "27",
- "name": null,
- "source": "20",
- "target": "19"
- },
- {
- "id": "28",
- "name": null,
- "source": "21",
- "target": "16"
- },
- {
- "id": "29",
- "name": null,
- "source": "21",
- "target": "17"
- },
- {
- "id": "30",
- "name": null,
- "source": "21",
- "target": "18"
- },
- {
- "id": "31",
- "name": null,
- "source": "21",
- "target": "19"
- },
- {
- "id": "32",
- "name": null,
- "source": "21",
- "target": "20"
- },
- {
- "id": "33",
- "name": null,
- "source": "22",
- "target": "16"
- },
- {
- "id": "34",
- "name": null,
- "source": "22",
- "target": "17"
- },
- {
- "id": "35",
- "name": null,
- "source": "22",
- "target": "18"
- },
- {
- "id": "36",
- "name": null,
- "source": "22",
- "target": "19"
- },
- {
- "id": "37",
- "name": null,
- "source": "22",
- "target": "20"
- },
- {
- "id": "38",
- "name": null,
- "source": "22",
- "target": "21"
- },
- {
- "id": "47",
- "name": null,
- "source": "23",
- "target": "11"
- },
- {
- "id": "46",
- "name": null,
- "source": "23",
- "target": "12"
- },
- {
- "id": "39",
- "name": null,
- "source": "23",
- "target": "16"
- },
- {
- "id": "40",
- "name": null,
- "source": "23",
- "target": "17"
- },
- {
- "id": "41",
- "name": null,
- "source": "23",
- "target": "18"
- },
- {
- "id": "42",
- "name": null,
- "source": "23",
- "target": "19"
- },
- {
- "id": "43",
- "name": null,
- "source": "23",
- "target": "20"
- },
- {
- "id": "44",
- "name": null,
- "source": "23",
- "target": "21"
- },
- {
- "id": "45",
- "name": null,
- "source": "23",
- "target": "22"
- },
- {
- "id": null,
- "name": null,
- "source": "24",
- "target": "11"
- },
- {
- "id": "48",
- "name": null,
- "source": "24",
- "target": "23"
- },
- {
- "id": "52",
- "name": null,
- "source": "25",
- "target": "11"
- },
- {
- "id": "51",
- "name": null,
- "source": "25",
- "target": "23"
- },
- {
- "id": "50",
- "name": null,
- "source": "25",
- "target": "24"
- },
- {
- "id": null,
- "name": null,
- "source": "26",
- "target": "11"
- },
- {
- "id": null,
- "name": null,
- "source": "26",
- "target": "16"
- },
- {
- "id": "53",
- "name": null,
- "source": "26",
- "target": "24"
- },
- {
- "id": "56",
- "name": null,
- "source": "26",
- "target": "25"
- },
- {
- "id": "57",
- "name": null,
- "source": "27",
- "target": "11"
- },
- {
- "id": "58",
- "name": null,
- "source": "27",
- "target": "23"
- },
- {
- "id": null,
- "name": null,
- "source": "27",
- "target": "24"
- },
- {
- "id": "59",
- "name": null,
- "source": "27",
- "target": "25"
- },
- {
- "id": "61",
- "name": null,
- "source": "27",
- "target": "26"
- },
- {
- "id": "62",
- "name": null,
- "source": "28",
- "target": "11"
- },
- {
- "id": "63",
- "name": null,
- "source": "28",
- "target": "27"
- },
- {
- "id": "66",
- "name": null,
- "source": "29",
- "target": "11"
- },
- {
- "id": "64",
- "name": null,
- "source": "29",
- "target": "23"
- },
- {
- "id": "65",
- "name": null,
- "source": "29",
- "target": "27"
- },
- {
- "id": "67",
- "name": null,
- "source": "30",
- "target": "23"
- },
- {
- "id": null,
- "name": null,
- "source": "31",
- "target": "11"
- },
- {
- "id": null,
- "name": null,
- "source": "31",
- "target": "23"
- },
- {
- "id": null,
- "name": null,
- "source": "31",
- "target": "27"
- },
- {
- "id": "68",
- "name": null,
- "source": "31",
- "target": "30"
- },
- {
- "id": "72",
- "name": null,
- "source": "32",
- "target": "11"
- },
- {
- "id": "73",
- "name": null,
- "source": "33",
- "target": "11"
- },
- {
- "id": "74",
- "name": null,
- "source": "33",
- "target": "27"
- },
- {
- "id": "75",
- "name": null,
- "source": "34",
- "target": "11"
- },
- {
- "id": "76",
- "name": null,
- "source": "34",
- "target": "29"
- },
- {
- "id": "77",
- "name": null,
- "source": "35",
- "target": "11"
- },
- {
- "id": null,
- "name": null,
- "source": "35",
- "target": "29"
- },
- {
- "id": "78",
- "name": null,
- "source": "35",
- "target": "34"
- },
- {
- "id": "82",
- "name": null,
- "source": "36",
- "target": "11"
- },
- {
- "id": "83",
- "name": null,
- "source": "36",
- "target": "29"
- },
- {
- "id": "80",
- "name": null,
- "source": "36",
- "target": "34"
- },
- {
- "id": "81",
- "name": null,
- "source": "36",
- "target": "35"
- },
- {
- "id": "87",
- "name": null,
- "source": "37",
- "target": "11"
- },
- {
- "id": "88",
- "name": null,
- "source": "37",
- "target": "29"
- },
- {
- "id": "84",
- "name": null,
- "source": "37",
- "target": "34"
- },
- {
- "id": "85",
- "name": null,
- "source": "37",
- "target": "35"
- },
- {
- "id": "86",
- "name": null,
- "source": "37",
- "target": "36"
- },
- {
- "id": "93",
- "name": null,
- "source": "38",
- "target": "11"
- },
- {
- "id": "94",
- "name": null,
- "source": "38",
- "target": "29"
- },
- {
- "id": "89",
- "name": null,
- "source": "38",
- "target": "34"
- },
- {
- "id": "90",
- "name": null,
- "source": "38",
- "target": "35"
- },
- {
- "id": "91",
- "name": null,
- "source": "38",
- "target": "36"
- },
- {
- "id": "92",
- "name": null,
- "source": "38",
- "target": "37"
- },
- {
- "id": "95",
- "name": null,
- "source": "39",
- "target": "25"
- },
- {
- "id": "96",
- "name": null,
- "source": "40",
- "target": "25"
- },
- {
- "id": "97",
- "name": null,
- "source": "41",
- "target": "24"
- },
- {
- "id": "98",
- "name": null,
- "source": "41",
- "target": "25"
- },
- {
- "id": "101",
- "name": null,
- "source": "42",
- "target": "24"
- },
- {
- "id": "100",
- "name": null,
- "source": "42",
- "target": "25"
- },
- {
- "id": "99",
- "name": null,
- "source": "42",
- "target": "41"
- },
- {
- "id": "102",
- "name": null,
- "source": "43",
- "target": "11"
- },
- {
- "id": "103",
- "name": null,
- "source": "43",
- "target": "26"
- },
- {
- "id": "104",
- "name": null,
- "source": "43",
- "target": "27"
- },
- {
- "id": null,
- "name": null,
- "source": "44",
- "target": "11"
- },
- {
- "id": "105",
- "name": null,
- "source": "44",
- "target": "28"
- },
- {
- "id": "107",
- "name": null,
- "source": "45",
- "target": "28"
- },
- {
- "id": "108",
- "name": null,
- "source": "47",
- "target": "46"
- },
- {
- "id": "112",
- "name": null,
- "source": "48",
- "target": "11"
- },
- {
- "id": "110",
- "name": null,
- "source": "48",
- "target": "25"
- },
- {
- "id": "111",
- "name": null,
- "source": "48",
- "target": "27"
- },
- {
- "id": "109",
- "name": null,
- "source": "48",
- "target": "47"
- },
- {
- "id": null,
- "name": null,
- "source": "49",
- "target": "11"
- },
- {
- "id": "113",
- "name": null,
- "source": "49",
- "target": "26"
- },
- {
- "id": null,
- "name": null,
- "source": "50",
- "target": "24"
- },
- {
- "id": "115",
- "name": null,
- "source": "50",
- "target": "49"
- },
- {
- "id": "119",
- "name": null,
- "source": "51",
- "target": "11"
- },
- {
- "id": "118",
- "name": null,
- "source": "51",
- "target": "26"
- },
- {
- "id": "117",
- "name": null,
- "source": "51",
- "target": "49"
- },
- {
- "id": null,
- "name": null,
- "source": "52",
- "target": "39"
- },
- {
- "id": "120",
- "name": null,
- "source": "52",
- "target": "51"
- },
- {
- "id": "122",
- "name": null,
- "source": "53",
- "target": "51"
- },
- {
- "id": "125",
- "name": null,
- "source": "54",
- "target": "26"
- },
- {
- "id": "124",
- "name": null,
- "source": "54",
- "target": "49"
- },
- {
- "id": "123",
- "name": null,
- "source": "54",
- "target": "51"
- },
- {
- "id": "131",
- "name": null,
- "source": "55",
- "target": "11"
- },
- {
- "id": "132",
- "name": null,
- "source": "55",
- "target": "16"
- },
- {
- "id": "133",
- "name": null,
- "source": "55",
- "target": "25"
- },
- {
- "id": null,
- "name": null,
- "source": "55",
- "target": "26"
- },
- {
- "id": "128",
- "name": null,
- "source": "55",
- "target": "39"
- },
- {
- "id": "134",
- "name": null,
- "source": "55",
- "target": "41"
- },
- {
- "id": "135",
- "name": null,
- "source": "55",
- "target": "48"
- },
- {
- "id": "127",
- "name": null,
- "source": "55",
- "target": "49"
- },
- {
- "id": "126",
- "name": null,
- "source": "55",
- "target": "51"
- },
- {
- "id": "129",
- "name": null,
- "source": "55",
- "target": "54"
- },
- {
- "id": "136",
- "name": null,
- "source": "56",
- "target": "49"
- },
- {
- "id": "137",
- "name": null,
- "source": "56",
- "target": "55"
- },
- {
- "id": null,
- "name": null,
- "source": "57",
- "target": "41"
- },
- {
- "id": null,
- "name": null,
- "source": "57",
- "target": "48"
- },
- {
- "id": "138",
- "name": null,
- "source": "57",
- "target": "55"
- },
- {
- "id": "145",
- "name": null,
- "source": "58",
- "target": "11"
- },
- {
- "id": null,
- "name": null,
- "source": "58",
- "target": "27"
- },
- {
- "id": "142",
- "name": null,
- "source": "58",
- "target": "48"
- },
- {
- "id": "141",
- "name": null,
- "source": "58",
- "target": "55"
- },
- {
- "id": "144",
- "name": null,
- "source": "58",
- "target": "57"
- },
- {
- "id": "148",
- "name": null,
- "source": "59",
- "target": "48"
- },
- {
- "id": "147",
- "name": null,
- "source": "59",
- "target": "55"
- },
- {
- "id": null,
- "name": null,
- "source": "59",
- "target": "57"
- },
- {
- "id": "146",
- "name": null,
- "source": "59",
- "target": "58"
- },
- {
- "id": "150",
- "name": null,
- "source": "60",
- "target": "48"
- },
- {
- "id": "151",
- "name": null,
- "source": "60",
- "target": "58"
- },
- {
- "id": "152",
- "name": null,
- "source": "60",
- "target": "59"
- },
- {
- "id": "153",
- "name": null,
- "source": "61",
- "target": "48"
- },
- {
- "id": "158",
- "name": null,
- "source": "61",
- "target": "55"
- },
- {
- "id": "157",
- "name": null,
- "source": "61",
- "target": "57"
- },
- {
- "id": "154",
- "name": null,
- "source": "61",
- "target": "58"
- },
- {
- "id": "156",
- "name": null,
- "source": "61",
- "target": "59"
- },
- {
- "id": "155",
- "name": null,
- "source": "61",
- "target": "60"
- },
- {
- "id": "164",
- "name": null,
- "source": "62",
- "target": "41"
- },
- {
- "id": "162",
- "name": null,
- "source": "62",
- "target": "48"
- },
- {
- "id": "159",
- "name": null,
- "source": "62",
- "target": "55"
- },
- {
- "id": null,
- "name": null,
- "source": "62",
- "target": "57"
- },
- {
- "id": "160",
- "name": null,
- "source": "62",
- "target": "58"
- },
- {
- "id": "161",
- "name": null,
- "source": "62",
- "target": "59"
- },
- {
- "id": null,
- "name": null,
- "source": "62",
- "target": "60"
- },
- {
- "id": "165",
- "name": null,
- "source": "62",
- "target": "61"
- },
- {
- "id": null,
- "name": null,
- "source": "63",
- "target": "48"
- },
- {
- "id": "174",
- "name": null,
- "source": "63",
- "target": "55"
- },
- {
- "id": null,
- "name": null,
- "source": "63",
- "target": "57"
- },
- {
- "id": null,
- "name": null,
- "source": "63",
- "target": "58"
- },
- {
- "id": "167",
- "name": null,
- "source": "63",
- "target": "59"
- },
- {
- "id": null,
- "name": null,
- "source": "63",
- "target": "60"
- },
- {
- "id": "172",
- "name": null,
- "source": "63",
- "target": "61"
- },
- {
- "id": "169",
- "name": null,
- "source": "63",
- "target": "62"
- },
- {
- "id": "184",
- "name": null,
- "source": "64",
- "target": "11"
- },
- {
- "id": null,
- "name": null,
- "source": "64",
- "target": "48"
- },
- {
- "id": "175",
- "name": null,
- "source": "64",
- "target": "55"
- },
- {
- "id": "183",
- "name": null,
- "source": "64",
- "target": "57"
- },
- {
- "id": "179",
- "name": null,
- "source": "64",
- "target": "58"
- },
- {
- "id": "182",
- "name": null,
- "source": "64",
- "target": "59"
- },
- {
- "id": "181",
- "name": null,
- "source": "64",
- "target": "60"
- },
- {
- "id": "180",
- "name": null,
- "source": "64",
- "target": "61"
- },
- {
- "id": "176",
- "name": null,
- "source": "64",
- "target": "62"
- },
- {
- "id": "178",
- "name": null,
- "source": "64",
- "target": "63"
- },
- {
- "id": "187",
- "name": null,
- "source": "65",
- "target": "48"
- },
- {
- "id": "194",
- "name": null,
- "source": "65",
- "target": "55"
- },
- {
- "id": "193",
- "name": null,
- "source": "65",
- "target": "57"
- },
- {
- "id": null,
- "name": null,
- "source": "65",
- "target": "58"
- },
- {
- "id": "192",
- "name": null,
- "source": "65",
- "target": "59"
- },
- {
- "id": null,
- "name": null,
- "source": "65",
- "target": "60"
- },
- {
- "id": "190",
- "name": null,
- "source": "65",
- "target": "61"
- },
- {
- "id": "188",
- "name": null,
- "source": "65",
- "target": "62"
- },
- {
- "id": "185",
- "name": null,
- "source": "65",
- "target": "63"
- },
- {
- "id": "186",
- "name": null,
- "source": "65",
- "target": "64"
- },
- {
- "id": "200",
- "name": null,
- "source": "66",
- "target": "48"
- },
- {
- "id": "196",
- "name": null,
- "source": "66",
- "target": "58"
- },
- {
- "id": "197",
- "name": null,
- "source": "66",
- "target": "59"
- },
- {
- "id": "203",
- "name": null,
- "source": "66",
- "target": "60"
- },
- {
- "id": "202",
- "name": null,
- "source": "66",
- "target": "61"
- },
- {
- "id": "198",
- "name": null,
- "source": "66",
- "target": "62"
- },
- {
- "id": "201",
- "name": null,
- "source": "66",
- "target": "63"
- },
- {
- "id": "195",
- "name": null,
- "source": "66",
- "target": "64"
- },
- {
- "id": "199",
- "name": null,
- "source": "66",
- "target": "65"
- },
- {
- "id": "204",
- "name": null,
- "source": "67",
- "target": "57"
- },
- {
- "id": null,
- "name": null,
- "source": "68",
- "target": "11"
- },
- {
- "id": null,
- "name": null,
- "source": "68",
- "target": "24"
- },
- {
- "id": "205",
- "name": null,
- "source": "68",
- "target": "25"
- },
- {
- "id": "208",
- "name": null,
- "source": "68",
- "target": "27"
- },
- {
- "id": null,
- "name": null,
- "source": "68",
- "target": "41"
- },
- {
- "id": "209",
- "name": null,
- "source": "68",
- "target": "48"
- },
- {
- "id": "213",
- "name": null,
- "source": "69",
- "target": "11"
- },
- {
- "id": "214",
- "name": null,
- "source": "69",
- "target": "24"
- },
- {
- "id": "211",
- "name": null,
- "source": "69",
- "target": "25"
- },
- {
- "id": null,
- "name": null,
- "source": "69",
- "target": "27"
- },
- {
- "id": "217",
- "name": null,
- "source": "69",
- "target": "41"
- },
- {
- "id": "216",
- "name": null,
- "source": "69",
- "target": "48"
- },
- {
- "id": "212",
- "name": null,
- "source": "69",
- "target": "68"
- },
- {
- "id": "221",
- "name": null,
- "source": "70",
- "target": "11"
- },
- {
- "id": "222",
- "name": null,
- "source": "70",
- "target": "24"
- },
- {
- "id": "218",
- "name": null,
- "source": "70",
- "target": "25"
- },
- {
- "id": "223",
- "name": null,
- "source": "70",
- "target": "27"
- },
- {
- "id": "224",
- "name": null,
- "source": "70",
- "target": "41"
- },
- {
- "id": "225",
- "name": null,
- "source": "70",
- "target": "58"
- },
- {
- "id": "220",
- "name": null,
- "source": "70",
- "target": "68"
- },
- {
- "id": "219",
- "name": null,
- "source": "70",
- "target": "69"
- },
- {
- "id": "230",
- "name": null,
- "source": "71",
- "target": "11"
- },
- {
- "id": "233",
- "name": null,
- "source": "71",
- "target": "25"
- },
- {
- "id": "226",
- "name": null,
- "source": "71",
- "target": "27"
- },
- {
- "id": "232",
- "name": null,
- "source": "71",
- "target": "41"
- },
- {
- "id": null,
- "name": null,
- "source": "71",
- "target": "48"
- },
- {
- "id": "228",
- "name": null,
- "source": "71",
- "target": "68"
- },
- {
- "id": "227",
- "name": null,
- "source": "71",
- "target": "69"
- },
- {
- "id": "229",
- "name": null,
- "source": "71",
- "target": "70"
- },
- {
- "id": "236",
- "name": null,
- "source": "72",
- "target": "11"
- },
- {
- "id": "234",
- "name": null,
- "source": "72",
- "target": "26"
- },
- {
- "id": "235",
- "name": null,
- "source": "72",
- "target": "27"
- },
- {
- "id": "237",
- "name": null,
- "source": "73",
- "target": "48"
- },
- {
- "id": "238",
- "name": null,
- "source": "74",
- "target": "48"
- },
- {
- "id": "239",
- "name": null,
- "source": "74",
- "target": "73"
- },
- {
- "id": "242",
- "name": null,
- "source": "75",
- "target": "25"
- },
- {
- "id": "244",
- "name": null,
- "source": "75",
- "target": "41"
- },
- {
- "id": null,
- "name": null,
- "source": "75",
- "target": "48"
- },
- {
- "id": "241",
- "name": null,
- "source": "75",
- "target": "68"
- },
- {
- "id": "240",
- "name": null,
- "source": "75",
- "target": "69"
- },
- {
- "id": "245",
- "name": null,
- "source": "75",
- "target": "70"
- },
- {
- "id": "246",
- "name": null,
- "source": "75",
- "target": "71"
- },
- {
- "id": "252",
- "name": null,
- "source": "76",
- "target": "48"
- },
- {
- "id": "253",
- "name": null,
- "source": "76",
- "target": "58"
- },
- {
- "id": "251",
- "name": null,
- "source": "76",
- "target": "62"
- },
- {
- "id": "250",
- "name": null,
- "source": "76",
- "target": "63"
- },
- {
- "id": "247",
- "name": null,
- "source": "76",
- "target": "64"
- },
- {
- "id": "248",
- "name": null,
- "source": "76",
- "target": "65"
- },
- {
- "id": "249",
- "name": null,
- "source": "76",
- "target": "66"
- }
- ],
- "categories": [
- {
- "name": "类目0"
- },
- {
- "name": "类目1"
- },
- {
- "name": "类目2"
- },
- {
- "name": "类目3"
- },
- {
- "name": "类目4"
- },
- {
- "name": "类目5"
- },
- {
- "name": "类目6"
- },
- {
- "name": "类目7"
- },
- {
- "name": "类目8"
- }
- ],
- "roam": true,
- "label": {
- "normal": {
- "position": "right"
- }
- },
- "lineStyle": {
- "normal": {
- "curveness": 0.3
- }
- }
- }
- ]
- };
|