Динамика популяции с учетом вылова¶
В этом примере мы покажем, как легко создать и решить дифференциальное уравнение, которое позволяет моделировать динамику популяции рыб с учетом вылова.
Мы будем моделировать популяцию рыб в водоеме, подверженную следующим процессам:
- влияние рождаемости и смертности описано квадратичной функцией $ax + bx^2$
- задание по вылову ежегодно уменьшает популяцию на $h$ тонн
- исходный размер популяции равен $x_0$.
Таким образом мы создаем модель следующей задачи:
$$\frac{dx}{dt} = (a + bx) x - h$$
$$x(0) = x_0$$
Общий вид блок-схемы, при помощи которой можно моделировать эту задачу, следующий:
Все параметры легко доступны, и их можно задавать как из скрипта (через переменые), так и на самом холсте. Решить эту систему нам поможет численное интегрирование, но стоит помнить:
есть комбинации входных условий, которые делают решение нестабильным (популяция уходит в $\pm \infty$);
при нестабильности решатель с постоянным шагом может не сообщить об ошибке, поэтому в настройках модели выбран решатель с переменным шагом;
максимальный размер шага симуляции установлен в 0.01, чтобы на интервале 0..1 мы всё-таки получили плавный график, даже если по условиям задачи можно делать шаги побольше.
Запуск и анализ результатов¶
Запустим модель при помощи средств программного управления:
Выведем график зависимости динамики популяции от изменения ее начального размера:
Теперь выставим одно значение x0
и построим график зависимости от изменения годового плана вылова:
И вернем модель в исходное состояние.
Решение дифференциальных уравнений при помощи блок-схемы и интегратора упрощает передачу знаний между представителями разных специальностей, в чем мы убедились на примере решения дифференциального уравнения роста популяции.
Блоки, использованные в примере¶
{"id": "671ce110-459a-4548-a781-e2b1e8c8065b", "data": [{"showlegend": true, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "0.5", "zmin": null, "yaxis": "y", "legendgroup": "0.5", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 2}, "y": [0.5, 0.5020180921970411, 0.5040727391369507, 0.5061644997994729, 0.5082939376711797, 0.5104616206109962, 0.5126681207070235, 0.5149140141244134, 0.5171998809440429, 0.5195263049917398, 0.5218938736578087, 0.524303177706611, 0.5267548110759498, 0.5292493706660181, 0.5317874561176642, 0.53436966957974, 0.5369966154652936, 0.53966890019638, 0.5423871319372608, 0.5451519203157787, 0.5479638761326923, 0.5508236110587685, 0.5537317373194375, 0.5566888673668233, 0.5596956135389768, 0.5627525877061448, 0.5658604009039261, 0.5690196629531742, 0.5722309820665253, 0.5754949644414415, 0.5788122138396791, 0.5821833311531075, 0.5856089139558257, 0.5890895560425395, 0.5926258469531882, 0.5962183714838293, 0.5998677091838149, 0.603574433839318, 0.6073391129432923, 0.6111623071519803, 0.6150445697281067, 0.618986445970933, 0.6229884726333708, 0.6270511773263922, 0.631175077911005, 0.6353606818780964, 0.6396084857164834, 0.6439189742695508, 0.6482926200808876, 0.6527298827293795, 0.6572312081542516, 0.6617970279705975, 0.6664277587759719, 0.6711238014486709, 0.6758855404383602, 0.6807133430497642, 0.6856075587201648, 0.6905685182915123, 0.6955965332779884, 0.7006918951299104, 0.7058548744949117, 0.7110857204773761, 0.7163846598971497, 0.7217518965485992, 0.7271876104611265, 0.7326919571622967, 0.7382650669447741, 0.7439070441383034, 0.7496179663880147, 0.755397883940364, 0.7612468189380628, 0.7671647647253791, 0.7731516851652279, 0.7792075139694974, 0.7853321540440831, 0.7915254768501297, 0.7977873217829969, 0.8041174955704873, 0.8105157716918872, 0.816981889819383, 0.8235155552834214, 0.830116438563586, 0.8367841748065619, 0.8435183633727531, 0.8503185674131085, 0.8571843134776964, 0.8641150911575493, 0.8711103527612744, 0.878169513027897, 0.8852919488773685, 0.8924769992001288, 0.899723964687072, 0.9070321077012086, 0.9144006521922632, 0.9218287836553877, 0.9293156491350981, 0.9368603572754756, 0.9444619784175933, 0.952119544745048, 0.9598320504783903, 0.967598452119152], "type": "scatter", "x": [0, 0.01, 0.02, 0.03, 0.04, 0.05, 0.06, 0.07, 0.08, 0.09, 0.1, 0.11, 0.12, 0.13, 0.14, 0.15, 0.16, 0.17, 0.18, 0.19, 0.2, 0.21, 0.22, 0.23, 0.24, 0.25, 0.26, 0.27, 0.28, 0.29, 0.3, 0.31, 0.32, 0.33, 0.34, 0.35, 0.36, 0.37, 0.38, 0.39, 0.4, 0.41, 0.42, 0.43, 0.44, 0.45, 0.46, 0.47, 0.48, 0.49, 0.5, 0.51, 0.52, 0.53, 0.54, 0.55, 0.56, 0.57, 0.58, 0.59, 0.6, 0.61, 0.62, 0.63, 0.64, 0.65, 0.66, 0.67, 0.68, 0.69, 0.7, 0.71, 0.72, 0.73, 0.74, 0.75, 0.76, 0.77, 0.78, 0.79, 0.8, 0.81, 0.82, 0.83, 0.84, 0.85, 0.86, 0.87, 0.88, 0.89, 0.9, 0.91, 0.92, 0.93, 0.94, 0.95, 0.96, 0.97, 0.98, 0.99, 1], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 101, "currentCount": 101}}}, {"showlegend": true, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "1.0", "zmin": null, "yaxis": "y", "legendgroup": "1.0", "zmax": null, "line": {"color": "rgba(227, 111, 71, 1.000)", "shape": "linear", "dash": "solid", "width": 2}, "y": [1, 1.0080237905409197, 1.0160943127357187, 1.0242102666462323, 1.0323703184732762, 1.0405731012665944, 1.048817215685439, 1.0571012308092194, 1.065423684997533, 1.0737830867987606, 1.0821779159062868, 1.090606624161275, 1.0990676366008065, 1.107559352550064, 1.1160801467571266, 1.1246283705688167, 1.1332023531459294, 1.141800402716061, 1.150420807862147, 1.1590618388447116, 1.167721748955743, 1.1763987759020038, 1.1850911432155078, 1.1937970616888096, 1.2025147308326811, 1.211242340353679, 1.2199780716490525, 1.2287200993163823, 1.2374665926753003, 1.2462157172986037, 1.2549656365500437, 1.2637145131260552, 1.2724605105986773, 1.2812017949569103, 1.2899365361437642, 1.298662909586261, 1.3073790977156805, 1.3160832914753642, 1.3247736918134319, 1.333448511157813, 1.3421059748710433, 1.3507443226823457, 1.359361810094574, 1.3679567097636804, 1.376527312848446, 1.3850719303282992, 1.3935888942871464, 1.4020765591612316, 1.4105333029491514, 1.418957528382253, 1.4273476640537655, 1.4357021655051168, 1.444019516268023, 1.4522982288610444, 1.460536845739435, 1.4687339401972337, 1.4768881172206723, 1.4849980142921015, 1.4930623021437657, 1.5010796854608779, 1.5090489035335792, 1.5169687308574866, 1.524837977682655, 1.5326554905109062, 1.5404201525415866, 1.5481308840659387, 1.5557866428103788, 1.5633864242290827, 1.5709292617463873, 1.5784142269496153, 1.5858404297330269, 1.5932070183936917, 1.600513179680168, 1.607758138794948, 1.6149411593517162, 1.622061543288528, 1.6291186307380938, 1.6361117998564072, 1.6430404666110132, 1.6499040845302664, 1.6567021444149705, 1.6634341740138334, 1.670099737664203, 1.6766984358995836, 1.6832299050254529, 1.6896938166649207, 1.6960898772757864, 1.7024178276405593, 1.7086774423310132, 1.714868529148849, 1.7209909285440335, 1.7270445130123737, 1.7330291864738823, 1.7389448836334664, 1.7447915693254596, 1.7505692378434934, 1.7562779122571806, 1.7619176437170567, 1.7674885107491949, 1.772990618540876, 1.7784240982186668], "type": "scatter", "x": [0, 0.01, 0.02, 0.03, 0.04, 0.05, 0.06, 0.07, 0.08, 0.09, 0.1, 0.11, 0.12, 0.13, 0.14, 0.15, 0.16, 0.17, 0.18, 0.19, 0.2, 0.21, 0.22, 0.23, 0.24, 0.25, 0.26, 0.27, 0.28, 0.29, 0.3, 0.31, 0.32, 0.33, 0.34, 0.35, 0.36, 0.37, 0.38, 0.39, 0.4, 0.41, 0.42, 0.43, 0.44, 0.45, 0.46, 0.47, 0.48, 0.49, 0.5, 0.51, 0.52, 0.53, 0.54, 0.55, 0.56, 0.57, 0.58, 0.59, 0.6, 0.61, 0.62, 0.63, 0.64, 0.65, 0.66, 0.67, 0.68, 0.69, 0.7, 0.71, 0.72, 0.73, 0.74, 0.75, 0.76, 0.77, 0.78, 0.79, 0.8, 0.81, 0.82, 0.83, 0.84, 0.85, 0.86, 0.87, 0.88, 0.89, 0.9, 0.91, 0.92, 0.93, 0.94, 0.95, 0.96, 0.97, 0.98, 0.99, 1], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 101, "currentCount": 101}}}, {"showlegend": true, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "1.5", "zmin": null, "yaxis": "y", "legendgroup": "1.5", "zmax": null, "line": {"color": "rgba(62, 164, 78, 1.000)", "shape": "linear", "dash": "solid", "width": 2}, "y": [1.5, 1.5079757934687763, 1.5159023595745469, 1.523778503709785, 1.5316030674545973, 1.5393749290294363, 1.5470930036963964, 1.554756244109367, 1.562363640613437, 1.5699142214940371, 1.5774070531764208, 1.584841240376168, 1.5922159262015012, 1.5995302922082804, 1.606783558408632, 1.6139749832342445, 1.621103863455431, 1.6281695340571338, 1.6351713680731024, 1.6421087763795323, 1.648981207449511, 1.6557881470696532, 1.6625291180203563, 1.669203679721137, 1.6758114278425444, 1.6823519938861684, 1.6888250447342779, 1.6952302821706497, 1.7015674423741474, 1.7078362953866222, 1.7140366445567103, 1.7201683259610934, 1.7262312078047861, 1.732225189802005, 1.7381502025391546, 1.7440062068214535, 1.7497931930046975, 1.75551118031364, 1.761160216148435, 1.766740375380563, 1.772251759639632, 1.7776944965924018, 1.7830687392153537, 1.7883746650620873, 1.7936124755267806, 1.7987823951049198, 1.803884670652455, 1.808919570644497, 1.8138873844346306, 1.81878842151587, 1.8236230107842402, 1.8283914998059243, 1.8330942540888684, 1.8377316563596913, 1.8423041058467042, 1.8468120175697953, 1.851255821637894, 1.8556359625546837, 1.859952898533188, 1.8642071008198136, 1.8683990530283898, 1.872529250484704, 1.8765981995819923, 1.8806064171478034, 1.8845544298226184, 1.8884427734505684, 1.8922719924825582, 1.8960426393920675, 1.8997552741038704, 1.9034104634358737, 1.9070087805542553, 1.9105508044420396, 1.914037119381231, 1.9174683144485878, 1.920844983025102, 1.9241677223192168, 1.9274371329037967, 1.9306538182668365, 1.9338183843758798, 1.9369314392560923, 1.9399935925819187, 1.9430054552822333, 1.9459676391588792, 1.9488807565184723, 1.9517454198173347, 1.9545622413194066, 1.957331832766974, 1.9600548050640392, 1.962731767972148, 1.9653633298184805, 1.967950097216, 1.9704926747954536, 1.9729916649490031, 1.9754476675852624, 1.9778612798955126, 1.980233096130863, 1.9825637073901128, 1.9848537014180805, 1.9871036624141505, 1.989314170850791, 1.9914858033017988], "type": "scatter", "x": [0, 0.01, 0.02, 0.03, 0.04, 0.05, 0.06, 0.07, 0.08, 0.09, 0.1, 0.11, 0.12, 0.13, 0.14, 0.15, 0.16, 0.17, 0.18, 0.19, 0.2, 0.21, 0.22, 0.23, 0.24, 0.25, 0.26, 0.27, 0.28, 0.29, 0.3, 0.31, 0.32, 0.33, 0.34, 0.35, 0.36, 0.37, 0.38, 0.39, 0.4, 0.41, 0.42, 0.43, 0.44, 0.45, 0.46, 0.47, 0.48, 0.49, 0.5, 0.51, 0.52, 0.53, 0.54, 0.55, 0.56, 0.57, 0.58, 0.59, 0.6, 0.61, 0.62, 0.63, 0.64, 0.65, 0.66, 0.67, 0.68, 0.69, 0.7, 0.71, 0.72, 0.73, 0.74, 0.75, 0.76, 0.77, 0.78, 0.79, 0.8, 0.81, 0.82, 0.83, 0.84, 0.85, 0.86, 0.87, 0.88, 0.89, 0.9, 0.91, 0.92, 0.93, 0.94, 0.95, 0.96, 0.97, 0.98, 0.99, 1], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 101, "currentCount": 101}}}, {"showlegend": true, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "2.0", "zmin": null, "yaxis": "y", "legendgroup": "2.0", "zmax": null, "line": {"color": "rgba(195, 113, 210, 1.000)", "shape": "linear", "dash": "solid", "width": 2}, "y": [2, 2.0019820918010627, 2.0039287328023647, 2.0058404677395862, 2.0077178363857224, 2.009561373456406, 2.0113716085224618, 2.013149065929458, 2.0148942647240204, 2.0166077185866738, 2.0182899357709903, 2.0199414190488185, 2.021562665661371, 2.023154167275957, 2.0247164099481445, 2.0262498740891504, 2.0277550344382482, 2.029232360039994, 2.030682314226082, 2.0321053546016294, 2.0335019330357107, 2.0348724956559585, 2.03621748284705, 2.0375373292529093, 2.0388324637824553, 2.0401033096187318, 2.0413502842312594, 2.042573799391456, 2.043774261190972, 2.044952070062794, 2.046107620804981, 2.0472413026068854, 2.0483534990777352, 2.04944458827744, 2.0505149427495, 2.0515649295558975, 2.0525949103138514, 2.0536052412343224, 2.054596273162159, 2.0555683516177825, 2.0565218168403034, 2.057457003831976, 2.058374242403894, 2.059273857222838, 2.0601561678591866, 2.0610214888358045, 2.061870129677831, 2.06270239496329, 2.0635185843744415, 2.064318992749812, 2.065103910136827, 2.0658736218449856, 2.0666284084995095, 2.0673685460954094, 2.0680943060519095, 2.0688059552671754, 2.0695037561732925, 2.0701879667914436, 2.070858840787241, 2.0715166275261634, 2.0721615721290556, 2.0727939155276505, 2.073413894520073, 2.0740217418262894, 2.0746176861434638, 2.0752019522011924, 2.0757747608165795, 2.0763363289491283, 2.0768868697554157, 2.0774265926435262, 2.0779557033272162, 2.078474403879789, 2.078982892787656, 2.0794813650035615, 2.0799700119994524, 2.0804490218189775, 2.080918579129594, 2.081378865274267, 2.081830058322748, 2.0822723331224187, 2.082705861348684, 2.0831308115549074, 2.0835473492218712, 2.083955636806759, 2.0843558337916446, 2.084748096731485, 2.0851325793016033, 2.0855094323446615, 2.0858788039171103, 2.0862408393351184, 2.086595681219969, 2.0869434695429243, 2.0872843416695526, 2.0876184324035156, 2.087945874029813, 2.0882667963574826, 2.088581326761758, 2.0888895902256754, 2.0891917093811365, 2.089487804549425, 2.0897779937811736], "type": "scatter", "x": [0, 0.01, 0.02, 0.03, 0.04, 0.05, 0.06, 0.07, 0.08, 0.09, 0.1, 0.11, 0.12, 0.13, 0.14, 0.15, 0.16, 0.17, 0.18, 0.19, 0.2, 0.21, 0.22, 0.23, 0.24, 0.25, 0.26, 0.27, 0.28, 0.29, 0.3, 0.31, 0.32, 0.33, 0.34, 0.35, 0.36, 0.37, 0.38, 0.39, 0.4, 0.41, 0.42, 0.43, 0.44, 0.45, 0.46, 0.47, 0.48, 0.49, 0.5, 0.51, 0.52, 0.53, 0.54, 0.55, 0.56, 0.57, 0.58, 0.59, 0.6, 0.61, 0.62, 0.63, 0.64, 0.65, 0.66, 0.67, 0.68, 0.69, 0.7, 0.71, 0.72, 0.73, 0.74, 0.75, 0.76, 0.77, 0.78, 0.79, 0.8, 0.81, 0.82, 0.83, 0.84, 0.85, 0.86, 0.87, 0.88, 0.89, 0.9, 0.91, 0.92, 0.93, 0.94, 0.95, 0.96, 0.97, 0.98, 0.99, 1], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 101, "currentCount": 101}}}, {"showlegend": true, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "2.5", "zmin": null, "yaxis": "y", "legendgroup": "2.5", "zmax": null, "line": {"color": "rgba(172, 142, 24, 1.000)", "shape": "linear", "dash": "solid", "width": 2}, "y": [2.5, 2.490148122968769, 2.480585163107861, 2.4713005165242636, 2.462284074106982, 2.453526192992267, 2.4450176699855066, 2.4367497167849548, 2.428713936866335, 2.420902303899798, 2.413307141581971, 2.405921104775964, 2.398737161861382, 2.3917485782046723, 2.3849489006676605, 2.3783319430789343, 2.37189177259892, 2.365622696915115, 2.359519252209046, 2.35357619184118, 2.347788475704254, 2.3421512601993477, 2.3366598887925716, 2.3313098831134513, 2.326096934559056, 2.3210168963706073, 2.316065776151793, 2.3112397288002726, 2.306535049825944, 2.3019481690314674, 2.2974756445322826, 2.2931141570949913, 2.288860504774458, 2.284711597831358, 2.280664453913168, 2.2767161934827618, 2.272864035479851, 2.269105293201516, 2.2654373703889816, 2.26185775750865, 2.258364028216202, 2.2549538359932937, 2.251624910947064, 2.2483750567632983, 2.2452021478046706, 2.242104126346039, 2.23907899993926, 2.2361248389004746, 2.233239773913235, 2.2304219937412633, 2.2276697430450043, 2.2249813202964877, 2.2223550757873456, 2.2197894097251374, 2.217282770413422, 2.214833652511279, 2.2124405953682422, 2.2101021814308304, 2.2078170347170847, 2.205583819355729, 2.203401238186756, 2.2012680314204265, 2.19918297535183, 2.1971448811283256, 2.1951525935673137, 2.193204990021943, 2.191300979292478, 2.18943950058118, 2.187619522488665, 2.1858400420498145, 2.1841000838074183, 2.1823986989218156, 2.1807349643149005, 2.1791079818469408, 2.177516877524731, 2.175960800739689, 2.174438923534567, 2.1729504398975146, 2.1714945650823063, 2.170070534953587, 2.168677605356064, 2.1673150515066135, 2.1659821674083273, 2.1646782652855716, 2.1634026750391735, 2.162154743720892, 2.1609338350263756, 2.15973932880584, 2.1585706205917434, 2.1574271211427627, 2.1563082560034115, 2.155213465078671, 2.1541422022230305, 2.1530939348433695, 2.1520681435151277, 2.1510643216112455, 2.150081974943376, 2.149120621414889, 2.148179790685216, 2.1472590238450984, 2.146357873102326], "type": "scatter", "x": [0, 0.01, 0.02, 0.03, 0.04, 0.05, 0.06, 0.07, 0.08, 0.09, 0.1, 0.11, 0.12, 0.13, 0.14, 0.15, 0.16, 0.17, 0.18, 0.19, 0.2, 0.21, 0.22, 0.23, 0.24, 0.25, 0.26, 0.27, 0.28, 0.29, 0.3, 0.31, 0.32, 0.33, 0.34, 0.35, 0.36, 0.37, 0.38, 0.39, 0.4, 0.41, 0.42, 0.43, 0.44, 0.45, 0.46, 0.47, 0.48, 0.49, 0.5, 0.51, 0.52, 0.53, 0.54, 0.55, 0.56, 0.57, 0.58, 0.59, 0.6, 0.61, 0.62, 0.63, 0.64, 0.65, 0.66, 0.67, 0.68, 0.69, 0.7, 0.71, 0.72, 0.73, 0.74, 0.75, 0.76, 0.77, 0.78, 0.79, 0.8, 0.81, 0.82, 0.83, 0.84, 0.85, 0.86, 0.87, 0.88, 0.89, 0.9, 0.91, 0.92, 0.93, 0.94, 0.95, 0.96, 0.97, 0.98, 0.99, 1], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 101, "currentCount": 101}}}, {"showlegend": true, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "3.0", "zmin": null, "yaxis": "y", "legendgroup": "3.0", "zmax": null, "line": {"color": "rgba(0, 170, 174, 1.000)", "shape": "linear", "dash": "solid", "width": 2}, "y": [3, 2.972576846037255, 2.946264417247254, 2.9210017712845113, 2.896732309439128, 2.873403396062999, 2.8509660173317384, 2.82937447467938, 2.8085861088640867, 2.7885610511527457, 2.7692619985651152, 2.750654010506368, 2.7327043244505, 2.715382188624542, 2.698658709891825, 2.6825067152474906, 2.66690062552602, 2.651816340082744, 2.6372311313527095, 2.6231235483137367, 2.6094733279885616, 2.5962613142156985, 2.583469383001876, 2.571080373842157, 2.559078026458419, 2.5474469224639145, 2.536172431512082, 2.5252406615325014, 2.5146384126965566, 2.5043531347906725, 2.494372887706378, 2.4846863047844705, 2.4752825587755556, 2.466151330201601, 2.4572827779231634, 2.4486675117348997, 2.4402965668280956, 2.432161379973424, 2.424253767290196, 2.41656590348011, 2.409090302414116, 2.401819798970579, 2.3947475320315967, 2.387866928552155, 2.3811716886239234, 2.3746557714619314, 2.3683133822482234, 2.3621389597719125, 2.356127164809903, 2.350272869196955, 2.3445711455377984, 2.3390172575176646, 2.3336066507709736, 2.3283349442709644, 2.3231979222058787, 2.3181915263098682, 2.313311848619157, 2.308555124626156, 2.303917726806206, 2.2993961584934492, 2.294987048084019, 2.290687143546266, 2.2864933072191755, 2.282402510881429, 2.2784118310747856, 2.274518444666565, 2.270719624637052, 2.2670127360785903, 2.2633952323940223, 2.259864651682939, 2.2564186133049704, 2.2530548146100378, 2.2497710278261485, 2.246565097095909, 2.243434935653498, 2.240378523134358, 2.237393903010349, 2.234479180143564, 2.2316325184524075, 2.228852138683953, 2.2261363162869383, 2.2234833793801054, 2.2208917068109106, 2.218359726299918, 2.21588591266647, 2.213468786131488, 2.2111069106934895, 2.2087988925741397, 2.2065433787298687, 2.2043390554262694, 2.202184646872193, 2.200078913910619, 2.1980206527635464, 2.1960086938282997, 2.1940419005227914, 2.192119168177411, 2.1902394229713447, 2.1884016209112356, 2.1866047468502194, 2.1848478135454643, 2.1831298607524507], "type": "scatter", "x": [0, 0.01, 0.02, 0.03, 0.04, 0.05, 0.06, 0.07, 0.08, 0.09, 0.1, 0.11, 0.12, 0.13, 0.14, 0.15, 0.16, 0.17, 0.18, 0.19, 0.2, 0.21, 0.22, 0.23, 0.24, 0.25, 0.26, 0.27, 0.28, 0.29, 0.3, 0.31, 0.32, 0.33, 0.34, 0.35, 0.36, 0.37, 0.38, 0.39, 0.4, 0.41, 0.42, 0.43, 0.44, 0.45, 0.46, 0.47, 0.48, 0.49, 0.5, 0.51, 0.52, 0.53, 0.54, 0.55, 0.56, 0.57, 0.58, 0.59, 0.6, 0.61, 0.62, 0.63, 0.64, 0.65, 0.66, 0.67, 0.68, 0.69, 0.7, 0.71, 0.72, 0.73, 0.74, 0.75, 0.76, 0.77, 0.78, 0.79, 0.8, 0.81, 0.82, 0.83, 0.84, 0.85, 0.86, 0.87, 0.88, 0.89, 0.9, 0.91, 0.92, 0.93, 0.94, 0.95, 0.96, 0.97, 0.98, 0.99, 1], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 101, "currentCount": 101}}}, {"showlegend": true, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "3.5", "zmin": null, "yaxis": "y", "legendgroup": "3.5", "zmax": null, "line": {"color": "rgba(237, 94, 147, 1.000)", "shape": "linear", "dash": "solid", "width": 2}, "y": [3.5, 3.449368814101221, 3.4013413774436914, 3.355731213517272, 3.312369189076366, 3.2711015428360133, 3.2317881770879455, 3.194301172215419, 3.158523490899693, 3.1243478443470596, 3.091675697384304, 3.0604163929757853, 3.0304863797666073, 3.001808528779382, 2.974311527486578, 2.947929341225759, 2.922600733384678, 2.8982688370082004, 2.874880771510568, 2.85238729904796, 2.830742515844786, 2.8099035743948164, 2.7898304329933272, 2.770485629513781, 2.7518340767346006, 2.7338428768584566, 2.7164811531567166, 2.6997198969223435, 2.6835318281314935, 2.6678912684023044, 2.6527740250030583, 2.638157284804527, 2.6240195171958702, 2.6103403850924263, 2.597100663259291, 2.584282163258481, 2.571867664401347, 2.55984085015298, 2.5481862494928644, 2.536889182786877, 2.5259357117707917, 2.515312593285444, 2.505007236439258, 2.4950076629054765, 2.485302470089653, 2.4758807969281516, 2.4667322921009274, 2.4578470844620135, 2.449215755509232, 2.4408293137308723, 2.432679170681654, 2.4247571186534476, 2.417055309818027, 2.4095662367298245, 2.402282714086279, 2.395197861652103, 2.3883050882616708, 2.381598076820887, 2.3750707702363822, 2.3687173582057723, 2.3625322648080744, 2.3565101368382466, 2.3506458328342568, 2.3449344127491356, 2.33937112822416, 2.3339514134226893, 2.3286708763872617, 2.323525290885379, 2.3185105887119963, 2.313622852419102, 2.3088583084449468, 2.304213320617476, 2.2996843840083616, 2.295268119115703, 2.2909612663550347, 2.286760680839693, 2.2826633274329304, 2.2786662760553593, 2.274766697232453, 2.2709618578678503, 2.267249117229176, 2.26362592313398, 2.260089808324204, 2.2566383870183637, 2.253269351631325, 2.2499804696522068, 2.246769580671556, 2.2436345935495017, 2.240573483717107, 2.2375842906036447, 2.234665115182949, 2.2318141176324446, 2.229029515098818, 2.2263095795646857, 2.22365263581094, 2.22105705946977, 2.2185212751636683, 2.2160437547259844, 2.2136230154988703, 2.21125761870469, 2.2089461678871922], "type": "scatter", "x": [0, 0.01, 0.02, 0.03, 0.04, 0.05, 0.06, 0.07, 0.08, 0.09, 0.1, 0.11, 0.12, 0.13, 0.14, 0.15, 0.16, 0.17, 0.18, 0.19, 0.2, 0.21, 0.22, 0.23, 0.24, 0.25, 0.26, 0.27, 0.28, 0.29, 0.3, 0.31, 0.32, 0.33, 0.34, 0.35, 0.36, 0.37, 0.38, 0.39, 0.4, 0.41, 0.42, 0.43, 0.44, 0.45, 0.46, 0.47, 0.48, 0.49, 0.5, 0.51, 0.52, 0.53, 0.54, 0.55, 0.56, 0.57, 0.58, 0.59, 0.6, 0.61, 0.62, 0.63, 0.64, 0.65, 0.66, 0.67, 0.68, 0.69, 0.7, 0.71, 0.72, 0.73, 0.74, 0.75, 0.76, 0.77, 0.78, 0.79, 0.8, 0.81, 0.82, 0.83, 0.84, 0.85, 0.86, 0.87, 0.88, 0.89, 0.9, 0.91, 0.92, 0.93, 0.94, 0.95, 0.96, 0.97, 0.98, 0.99, 1], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 101, "currentCount": 101}}}, {"showlegend": true, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "4.0", "zmin": null, "yaxis": "y", "legendgroup": "4.0", "zmax": null, "line": {"color": "rgba(198, 130, 37, 1.000)", "shape": "linear", "dash": "solid", "width": 2}, "y": [4, 3.9206222441587264, 3.8461740478942756, 3.7762242811143767, 3.7103906034816285, 3.6483327511185712, 3.589746902117554, 3.534360923877587, 3.481930345349415, 3.432234928391214, 3.385075736782783, 3.340272620616275, 3.2976620489705635, 3.257095235882192, 3.218436514328566, 3.1815619207572152, 3.1463579590267114, 3.1127205177776682, 3.080553919465113, 3.0497700827431715, 3.0202877827461254, 2.9920319961724147, 2.964933320042009, 2.9389274546361652, 2.913954742500667, 2.8899597565465465, 2.8668909312542086, 2.8447002318088717, 2.823342856692546, 2.802776969851073, 2.7829634590609915, 2.763865717554156, 2.745449446329638, 2.727682474902061, 2.7105345985111233, 2.693977430055262, 2.6779842652187833, 2.6625299594409806, 2.6475908155316783, 2.633144480873636, 2.6191698532710608, 2.6056469946075147, 2.5925570515677894, 2.5798821827585265, 2.5676054916330107, 2.5557109646878717, 2.5441834144544884, 2.533008426856624, 2.5221723125490247, 2.5116620618900836, 2.501465303235786, 2.4915702642725472, 2.481965736133662, 2.4726410400682957, 2.463585996453622, 2.454790895960094, 2.446246472697267, 2.4379438791831953, 2.429874662994504, 2.4220307449668796, 2.4144043988271346, 2.406988232148304, 2.399775168528526, 2.3927584309028864, 2.3859315259050202, 2.3792882292021735, 2.372822571733711, 2.366528826788731, 2.360401497863658, 2.354435307245368, 2.348625185269728, 2.342966260209331, 2.337453848747793, 2.3320834470012493, 2.326850722050676, 2.3217515039513965, 2.316781778188645, 2.3119376785503554, 2.3072154803904574, 2.302611594257892, 2.2981225598683506, 2.293745040397368, 2.2894758170749214, 2.2853117840630643, 2.2812499435994136, 2.2772874013904905, 2.2734213622399992, 2.269649125898147, 2.265968083119031, 2.262375711913991, 2.258869573989608, 2.255447311359797, 2.2521066431220933, 2.248845362388902, 2.24566133336504, 2.242552488563473, 2.239516826151648, 2.2365524074212932, 2.233657354375006, 2.2308298474233554, 2.228068123186611], "type": "scatter", "x": [0, 0.01, 0.02, 0.03, 0.04, 0.05, 0.06, 0.07, 0.08, 0.09, 0.1, 0.11, 0.12, 0.13, 0.14, 0.15, 0.16, 0.17, 0.18, 0.19, 0.2, 0.21, 0.22, 0.23, 0.24, 0.25, 0.26, 0.27, 0.28, 0.29, 0.3, 0.31, 0.32, 0.33, 0.34, 0.35, 0.36, 0.37, 0.38, 0.39, 0.4, 0.41, 0.42, 0.43, 0.44, 0.45, 0.46, 0.47, 0.48, 0.49, 0.5, 0.51, 0.52, 0.53, 0.54, 0.55, 0.56, 0.57, 0.58, 0.59, 0.6, 0.61, 0.62, 0.63, 0.64, 0.65, 0.66, 0.67, 0.68, 0.69, 0.7, 0.71, 0.72, 0.73, 0.74, 0.75, 0.76, 0.77, 0.78, 0.79, 0.8, 0.81, 0.82, 0.83, 0.84, 0.85, 0.86, 0.87, 0.88, 0.89, 0.9, 0.91, 0.92, 0.93, 0.94, 0.95, 0.96, 0.97, 0.98, 0.99, 1], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 101, "currentCount": 101}}}, {"showlegend": true, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "4.5", "zmin": null, "yaxis": "y", "legendgroup": "4.5", "zmax": null, "line": {"color": "rgba(0, 169, 141, 1.000)", "shape": "linear", "dash": "solid", "width": 2}, "y": [4.5, 4.386433084567563, 4.281104494065816, 4.183169020224613, 4.091893178519584, 4.006637336368689, 3.926841165621179, 3.852011719630326, 3.7817135986045747, 3.7155607886230766, 3.6532098511855264, 3.5943542095506587, 3.5387193311793648, 3.4860586464950862, 3.436150075927772, 3.3887930620343973, 3.343806023028061, 3.3010241595214183, 3.260297558617216, 3.2214895493543074, 3.1844752714716584, 3.149140425892152, 3.115380180566332, 3.083098209597454, 3.052205847083731, 3.022621340011099, 2.9942691869282454, 2.967079551128733, 2.940987738727546, 2.9159337334111, 2.8918617808088123, 2.868720016419635, 2.8464601318600375, 2.8250370749064753, 2.8044087794064114, 2.784535921644671, 2.765381700190505, 2.746911636626952, 2.7290933948875606, 2.711896617204466, 2.695292774912776, 2.6792550325650124, 2.6637581239905614, 2.648778239092777, 2.6342929203138556, 2.6202809678177172, 2.6067223525462886, 2.593598136396809, 2.5808903988488456, 2.568582169441064, 2.556657365560742, 2.545100735064622, 2.533897803298912, 2.523034824129865, 2.512498734635113, 2.5022771131403547, 2.4923581403166857, 2.482730563081214, 2.4733836610680378, 2.4643072154585175, 2.4554914799793606, 2.4469271538945776, 2.43860535683315, 2.4305176053084177, 2.4226557907979633, 2.4150121592642684, 2.407579292006805, 2.4003500877456014, 2.3933177458448087, 2.3864757505924774, 2.379817856459714, 2.373338074268711, 2.3670306582048903, 2.3608900936136026, 2.3549110855266018, 2.3490885478678245, 2.3434175932919574, 2.3378935236128866, 2.3325118207824085, 2.327268138382595, 2.3221582935979654, 2.3171782596361417, 2.3123241585679732, 2.307592254560253, 2.302978947476085, 2.2984807668197713, 2.294094366004718, 2.2898165169243976, 2.285644104807788, 2.2815741233420073, 2.277603670046053, 2.273729941880641, 2.269950231080177, 2.266261921193806, 2.2626624833233744, 2.2591494725469268, 2.2557205245171166, 2.252373352224593, 2.2491057429170644, 2.2459155551653422, 2.2428007160682095], "type": "scatter", "x": [0, 0.01, 0.02, 0.03, 0.04, 0.05, 0.06, 0.07, 0.08, 0.09, 0.1, 0.11, 0.12, 0.13, 0.14, 0.15, 0.16, 0.17, 0.18, 0.19, 0.2, 0.21, 0.22, 0.23, 0.24, 0.25, 0.26, 0.27, 0.28, 0.29, 0.3, 0.31, 0.32, 0.33, 0.34, 0.35, 0.36, 0.37, 0.38, 0.39, 0.4, 0.41, 0.42, 0.43, 0.44, 0.45, 0.46, 0.47, 0.48, 0.49, 0.5, 0.51, 0.52, 0.53, 0.54, 0.55, 0.56, 0.57, 0.58, 0.59, 0.6, 0.61, 0.62, 0.63, 0.64, 0.65, 0.66, 0.67, 0.68, 0.69, 0.7, 0.71, 0.72, 0.73, 0.74, 0.75, 0.76, 0.77, 0.78, 0.79, 0.8, 0.81, 0.82, 0.83, 0.84, 0.85, 0.86, 0.87, 0.88, 0.89, 0.9, 0.91, 0.92, 0.93, 0.94, 0.95, 0.96, 0.97, 0.98, 0.99, 1], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 101, "currentCount": 101}}}, {"showlegend": true, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "5.0", "zmin": null, "yaxis": "y", "legendgroup": "5.0", "zmax": null, "line": {"color": "rgba(142, 151, 30, 1.000)", "shape": "linear", "dash": "solid", "width": 2}, "y": [5, 4.846895080182921, 4.70645971996044, 4.577209842165976, 4.457884365393421, 4.347404833723717, 4.244843510203308, 4.149397933776697, 4.060370462009168, 3.9771516958063953, 3.899206953051684, 3.8260651563233075, 3.7573096465583062, 3.6925705441643815, 3.631518361771105, 3.5738586357183904, 3.519327391626618, 3.4676872966793413, 3.418724380274361, 3.372245227447218, 3.3280745674155563, 3.286053193834685, 3.24603616472383, 3.207891239148724, 3.1714975151105063, 3.136744239063338, 3.103529762350015, 3.0717606238289408, 3.041350741241566, 3.0122206965739706, 2.9842971029082586, 2.957512042125102, 2.9318025643770156, 2.9071102415580348, 2.8833807680939554, 2.8605636033041884, 2.8386116503708765, 2.8174809676170645, 2.7971305083629527, 2.777521886113673, 2.758619162246783, 2.7403886537237834, 2.7227987586564533, 2.705819797823267, 2.6894238704598843, 2.6735847228459995, 2.658277628383113, 2.6434792780078005, 2.6291676799159465, 2.6153220676878552, 2.6019228160044054, 2.5889513632324235, 2.57639014023484, 2.564222504829366, 2.552432681379596, 2.541005705055651, 2.5299273703485543, 2.5191841834643327, 2.5087633182609403, 2.498652575424131, 2.488840344607817, 2.479315569290734, 2.4700677141246654, 2.461086734570514, 2.4523630486372894, 2.443887510555993, 2.4356513862355382, 2.427646330361484, 2.4198643650106693, 2.4122978596658964, 2.404939512524838, 2.3977823330063717, 2.39081962536574, 2.3840449733373412, 2.3774522257306847, 2.3710354829111426, 2.364789084102683, 2.3587075954548045, 2.352785798820497, 2.347018681196238, 2.341401424778842, 2.3359293975974915, 2.330598144682442, 2.3254033797348264, 2.3203409772646473, 2.315406965166495, 2.3105975177047697, 2.305908948882252, 2.3013377061677516, 2.296880364560312, 2.292533620969038, 2.2882942888891007, 2.2841592933558186, 2.28012566615998, 2.2761905413087153, 2.2723511507173013, 2.2686048201182674, 2.2649489651750803, 2.261381087788533, 2.2578987725847437, 2.2544996835743913], "type": "scatter", "x": [0, 0.01, 0.02, 0.03, 0.04, 0.05, 0.06, 0.07, 0.08, 0.09, 0.1, 0.11, 0.12, 0.13, 0.14, 0.15, 0.16, 0.17, 0.18, 0.19, 0.2, 0.21, 0.22, 0.23, 0.24, 0.25, 0.26, 0.27, 0.28, 0.29, 0.3, 0.31, 0.32, 0.33, 0.34, 0.35, 0.36, 0.37, 0.38, 0.39, 0.4, 0.41, 0.42, 0.43, 0.44, 0.45, 0.46, 0.47, 0.48, 0.49, 0.5, 0.51, 0.52, 0.53, 0.54, 0.55, 0.56, 0.57, 0.58, 0.59, 0.6, 0.61, 0.62, 0.63, 0.64, 0.65, 0.66, 0.67, 0.68, 0.69, 0.7, 0.71, 0.72, 0.73, 0.74, 0.75, 0.76, 0.77, 0.78, 0.79, 0.8, 0.81, 0.82, 0.83, 0.84, 0.85, 0.86, 0.87, 0.88, 0.89, 0.9, 0.91, 0.92, 0.93, 0.94, 0.95, 0.96, 0.97, 0.98, 0.99, 1], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 101, "currentCount": 101}}}], "config": {"showlegend": true, "xaxis": {"showticklabels": true, "gridwidth": 0.5, "tickvals": [0, 0.25, 0.5, 0.75, 1], "range": [-0.030000000000000027, 1.03], "domain": [0.04683945756780402, 0.9934383202099739], "mirror": false, "tickangle": 0, "showline": true, "ticktext": ["0.00", "0.25", "0.50", "0.75", "1.00"], "zeroline": false, "tickfont": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 11}, "zerolinecolor": "rgba(0, 0, 0, 1)", "anchor": "y", "visible": true, "ticks": "inside", "tickmode": "array", "linecolor": "rgba(0, 0, 0, 1)", "showgrid": true, "title": {"text": "Время, г", "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 15}}, "gridcolor": "rgba(0, 0, 0, 0.1)", "tickcolor": "rgb(0, 0, 0)", "type": "linear"}, "paper_bgcolor": "rgba(255, 255, 255, 1.000)", "annotations": [{"yanchor": "top", "xanchor": "center", "rotation": 0, "y": 1, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 14}, "yref": "paper", "showarrow": false, "text": "Зависимости изменения популяции от начального количества (т)", "xref": "paper", "x": 0.5201388888888888}], "height": 400, "margin": {"l": 0, "b": 20, "r": 0, "t": 20}, "plot_bgcolor": "rgba(255, 255, 255, 1.000)", "yaxis": {"showticklabels": true, "gridwidth": 0.5, "tickvals": [1, 2, 3, 4, 5], "range": [0.36499999999999977, 5.135], "domain": [0.07581474190726165, 0.9554352580927385], "mirror": false, "tickangle": 0, "showline": true, "ticktext": ["1", "2", "3", "4", "5"], "zeroline": false, "tickfont": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 11}, "zerolinecolor": "rgba(0, 0, 0, 1)", "anchor": "x", "visible": true, "ticks": "inside", "tickmode": "array", "linecolor": "rgba(0, 0, 0, 1)", "showgrid": true, "title": {"text": "Популяция, т", "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 15}}, "gridcolor": "rgba(0, 0, 0, 0.1)", "tickcolor": "rgb(0, 0, 0)", "type": "linear"}, "legend": {"yanchor": "auto", "xanchor": "auto", "bordercolor": "rgba(0, 0, 0, 1)", "bgcolor": "rgba(255, 255, 255, 1.000)", "borderwidth": 1, "tracegroupgap": 0, "y": 1, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 11}, "title": {"font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 15}, "text": ""}, "traceorder": "normal", "x": 1}, "width": 763.03125}}
{"id": "5b1f6c61-421f-4894-9a1f-7f1a83a9d53d", "data": [{"showlegend": true, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "0.5", "zmin": null, "yaxis": "y", "legendgroup": "0.5", "zmax": null, "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 2}, "y": [5, 4.851682447390686, 4.715653718975422, 4.590486950858007, 4.474967752089729, 4.3680560689534, 4.268855978472904, 4.176591552142178, 4.090587412832231, 4.010252953639027, 3.935069438518969, 3.8645793888987794, 3.79837779719062, 3.736104810565139, 3.677439605746957, 3.622095234605382, 3.569814265654043, 3.520365081675773, 3.4735387210593016, 3.4291461719194873, 3.3870160450460984, 3.3469925652163144, 3.3089338311896594, 3.2727103033712233, 3.238203485131434, 3.2053047694562062, 3.1739144272394775, 3.143940717331102, 3.1152991015813543, 3.087911550708686, 3.061705928962515, 3.03661544733954, 3.012578176605607, 2.9895366126280765, 2.967437287578219, 2.9462304214537025, 2.925869609125601, 2.9063115387552902, 2.8875157379727514, 2.869444344674489, 2.852061899699142, 2.835335158982369, 2.81923292308845, 2.8037258822714297, 2.7887864754396956, 2.77438876158957, 2.7605083024401673, 2.7471220551469466, 2.7342082740981444, 2.7217464209091333, 2.709717081826931, 2.6981018918424198, 2.6868834648829094, 2.6760453295238404, 2.665571869716849, 2.6554482700830757, 2.6456604653663742, 2.6361950936816827, 2.627039453229914, 2.6181814621828443, 2.6096096214701103, 2.601312980225988, 2.593281103676475, 2.5855040432676515, 2.5779723088546307, 2.5706768427868685, 2.563608995740385, 2.556760504160767, 2.5501234691928047, 2.543690336983435, 2.53745388025443, 2.531407181050093, 2.5255436145732313, 2.5198568340299023, 2.514340756410006, 2.508989549136763, 2.5037976175235324, 2.4987595929813655, 2.4938703219251765, 2.48912485533051, 2.484518438896626, 2.480046503775031, 2.4757046578257063, 2.471488677366138, 2.467394499380877, 2.463418214161735, 2.45955605835094, 2.455804408361584, 2.4521597741515424, 2.448618793328767, 2.4451782255674073, 2.4418349473156686, 2.438585946777642, 2.4354283191525705, 2.4323592621161563, 2.4293760715295436, 2.4264761373626, 2.4236569398189975, 2.4209160456514307, 2.418251104656074, 2.415659846336092], "type": "scatter", "x": [0, 0.01, 0.02, 0.03, 0.04, 0.05, 0.06, 0.07, 0.08, 0.09, 0.1, 0.11, 0.12, 0.13, 0.14, 0.15, 0.16, 0.17, 0.18, 0.19, 0.2, 0.21, 0.22, 0.23, 0.24, 0.25, 0.26, 0.27, 0.28, 0.29, 0.3, 0.31, 0.32, 0.33, 0.34, 0.35, 0.36, 0.37, 0.38, 0.39, 0.4, 0.41, 0.42, 0.43, 0.44, 0.45, 0.46, 0.47, 0.48, 0.49, 0.5, 0.51, 0.52, 0.53, 0.54, 0.55, 0.56, 0.57, 0.58, 0.59, 0.6, 0.61, 0.62, 0.63, 0.64, 0.65, 0.66, 0.67, 0.68, 0.69, 0.7, 0.71, 0.72, 0.73, 0.74, 0.75, 0.76, 0.77, 0.78, 0.79, 0.8, 0.81, 0.82, 0.83, 0.84, 0.85, 0.86, 0.87, 0.88, 0.89, 0.9, 0.91, 0.92, 0.93, 0.94, 0.95, 0.96, 0.97, 0.98, 0.99, 1], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 101, "currentCount": 101}}}, {"showlegend": true, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "0.7", "zmin": null, "yaxis": "y", "legendgroup": "0.7", "zmax": null, "line": {"color": "rgba(227, 111, 71, 1.000)", "shape": "linear", "dash": "solid", "width": 2}, "y": [5, 4.8497675224987375, 4.711976281360277, 4.585176613028028, 4.468135510463731, 4.359797601251744, 4.25925426638869, 4.165718984990271, 4.078507488125151, 3.997021661852246, 3.920736398365976, 3.8491887839832764, 3.7819691533860587, 3.718713644807401, 3.6590979703502717, 3.602832176179728, 3.5496562138218, 3.499336179770839, 3.4516611086337576, 3.406440227026127, 3.363500592794044, 3.3226850579244998, 3.2838505045233246, 3.2468663120894377, 3.2116130214605496, 3.1779811666051687, 3.1458702501650206, 3.1151878425258666, 3.0858487873817464, 3.0577744993905545, 3.030892341702617, 3.0051350729621222, 2.980440354900614, 2.9567503129158914, 2.9340111431017584, 2.9121727600991236, 2.891188480905376, 2.87101474042998, 2.851610835138802, 2.832938691603447, 2.8149626571777135, 2.797649310371811, 2.7809672887950896, 2.7648871327970617, 2.7493811431606154, 2.734423251395653, 2.7199889013503005, 2.7060549410039574, 2.6925995234348474, 2.679602016067045, 2.667042917400352, 2.65490378051281, 2.6431671427016283, 2.631816460695285, 2.6208360509286734, 2.610211034425449, 2.5999272858780365, 2.589971386556826, 2.580330580716604, 2.5709927352007362, 2.5619463019725712, 2.5531802833293833, 2.544684199577258, 2.5364480589660032, 2.5284623297016955, 2.520717913871097, 2.513206123127125, 2.5059186559979985, 2.498847576694787, 2.491985295303035, 2.485324549253964, 2.478858385979703, 2.4725801466650466, 2.466483451015559, 2.4605621829684723, 2.454810477278851, 2.4492227069189565, 2.443793471233741, 2.438517584799911, 2.4333900669401602, 2.428406131847911, 2.4235611792813807, 2.4188507857889063, 2.414270696430364, 2.409816816962142, 2.405485206455549, 2.4012720703207573, 2.3971737537104096, 2.393186735278896, 2.389307621275019, 2.385533139947349, 2.381860136243032, 2.3782855667821514, 2.3748064950909793, 2.3714200870786044, 2.368123606742473, 2.364914412089352, 2.361789951259134, 2.358747758839727, 2.355785452362057, 2.3529007289649178], "type": "scatter", "x": [0, 0.01, 0.02, 0.03, 0.04, 0.05, 0.06, 0.07, 0.08, 0.09, 0.1, 0.11, 0.12, 0.13, 0.14, 0.15, 0.16, 0.17, 0.18, 0.19, 0.2, 0.21, 0.22, 0.23, 0.24, 0.25, 0.26, 0.27, 0.28, 0.29, 0.3, 0.31, 0.32, 0.33, 0.34, 0.35, 0.36, 0.37, 0.38, 0.39, 0.4, 0.41, 0.42, 0.43, 0.44, 0.45, 0.46, 0.47, 0.48, 0.49, 0.5, 0.51, 0.52, 0.53, 0.54, 0.55, 0.56, 0.57, 0.58, 0.59, 0.6, 0.61, 0.62, 0.63, 0.64, 0.65, 0.66, 0.67, 0.68, 0.69, 0.7, 0.71, 0.72, 0.73, 0.74, 0.75, 0.76, 0.77, 0.78, 0.79, 0.8, 0.81, 0.82, 0.83, 0.84, 0.85, 0.86, 0.87, 0.88, 0.89, 0.9, 0.91, 0.92, 0.93, 0.94, 0.95, 0.96, 0.97, 0.98, 0.99, 1], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 101, "currentCount": 101}}}, {"showlegend": true, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "0.9", "zmin": null, "yaxis": "y", "legendgroup": "0.9", "zmax": null, "line": {"color": "rgba(62, 164, 78, 1.000)", "shape": "linear", "dash": "solid", "width": 2}, "y": [5, 4.847852568285381, 4.708298627761196, 4.5798656010285015, 4.4613017848671355, 4.351536431970846, 4.249648187959893, 4.154839912135845, 4.066418424773304, 3.98377809189072, 3.9063874251585435, 3.833778070016582, 3.765535699752236, 3.7012924414621358, 3.640720541438769, 3.583527039640378, 3.5294492705605216, 3.4782510446583537, 3.4297193932010006, 3.3836617818624766, 3.339903716171901, 3.298286675993981, 3.2586663274757695, 3.2209109699273752, 3.1849001823956935, 3.1505236406049244, 3.1176800797584847, 3.086276382644172, 3.056226775730538, 3.027452118623034, 2.999879274471046, 2.9734405507667376, 2.9480732015218685, 2.9237189831041936, 2.900323757104719, 2.8778371345266884, 2.8562121563657206, 2.8354050063115994, 2.815374751865246, 2.7960831106452444, 2.777494239070089, 2.7595745409558865, 2.7422924938736264, 2.725618491372777, 2.709524699405155, 2.69398492548, 2.678974499252332, 2.664470163395727, 2.6504499737406966, 2.636893207773601, 2.623780280690654, 2.6110926682890603, 2.5988128360542473, 2.586924173869926, 2.575410935837544, 2.564258184744579, 2.5534517407679465, 2.542978134040369, 2.5328245607444315, 2.522978842431915, 2.5134293882952616, 2.5041651601441335, 2.495175639863384, 2.4864507991496443, 2.4779810713424424, 2.469757325182588, 2.4617708403456287, 2.454013284611778, 2.4464766925459425, 2.4391534455724986, 2.4320362533394375, 2.4251181362754957, 2.4183924092520277, 2.4118526662687705, 2.405492766089328, 2.399306818758291, 2.3932891729374197, 2.3874344040033506, 2.381737302853849, 2.3761928653738127, 2.370796282516023, 2.3655429309551224, 2.3604283642764634, 2.3554483046643897, 2.3505986350571546, 2.3458753917381348, 2.3412747573352166, 2.3367930542023005, 2.3324267381587362, 2.32817239256425, 2.3240267227085094, 2.3199865504959436, 2.3160488094077882, 2.3122105397245756, 2.3084688839934335, 2.3048210827256317, 2.3012644703107856, 2.297796471135045, 2.2944145958914293, 2.2911164380712536, 2.287899670626314], "type": "scatter", "x": [0, 0.01, 0.02, 0.03, 0.04, 0.05, 0.06, 0.07, 0.08, 0.09, 0.1, 0.11, 0.12, 0.13, 0.14, 0.15, 0.16, 0.17, 0.18, 0.19, 0.2, 0.21, 0.22, 0.23, 0.24, 0.25, 0.26, 0.27, 0.28, 0.29, 0.3, 0.31, 0.32, 0.33, 0.34, 0.35, 0.36, 0.37, 0.38, 0.39, 0.4, 0.41, 0.42, 0.43, 0.44, 0.45, 0.46, 0.47, 0.48, 0.49, 0.5, 0.51, 0.52, 0.53, 0.54, 0.55, 0.56, 0.57, 0.58, 0.59, 0.6, 0.61, 0.62, 0.63, 0.64, 0.65, 0.66, 0.67, 0.68, 0.69, 0.7, 0.71, 0.72, 0.73, 0.74, 0.75, 0.76, 0.77, 0.78, 0.79, 0.8, 0.81, 0.82, 0.83, 0.84, 0.85, 0.86, 0.87, 0.88, 0.89, 0.9, 0.91, 0.92, 0.93, 0.94, 0.95, 0.96, 0.97, 0.98, 0.99, 1], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 101, "currentCount": 101}}}, {"showlegend": true, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "1.1", "zmin": null, "yaxis": "y", "legendgroup": "1.1", "zmax": null, "line": {"color": "rgba(195, 113, 210, 1.000)", "shape": "linear", "dash": "solid", "width": 2}, "y": [5, 4.8459375847498025, 4.704620758155012, 4.574553914702039, 4.454466574703286, 4.343272559464248, 4.240037739464479, 4.143954326238323, 4.0543202096649305, 3.9705222220262084, 3.892022484939629, 3.8183471963666573, 3.7490773636415713, 3.6838410995761497, 3.6223071824632482, 3.564179644504221, 3.5091932020235497, 3.4571093785649936, 3.4077132013247566, 3.3608103743819258, 3.3162248503278433, 3.2737967362902953, 3.2333804818361402, 3.194843305455048, 3.1580638237644796, 3.122930853606445, 3.0893423621195932, 3.0572045438912365, 3.02643100759934, 2.996942057283127, 2.968664055642416, 2.9415288586473736, 2.9154733123116108, 2.890438803798343, 2.8663708601366342, 2.843218788758933, 2.8209353548617817, 2.799476491262765, 2.778801036998251, 2.7588705013944157, 2.7396488507617964, 2.721102315222248, 2.703199213485794, 2.6859097936611476, 2.6692060884139477, 2.653061782986357, 2.637452094765081, 2.6223536632358297, 2.6077444492939827, 2.593603642996351, 2.5799115789398273, 2.566649658541234, 2.553800278570547, 2.5413467653582313, 2.5292733141579626, 2.517564933199494, 2.5062073920137995, 2.495187173654644, 2.4844914304780334, 2.474107943174219, 2.464025082776497, 2.4542317753974516, 2.4447174694668683, 2.4354721052666624, 2.42648608657707, 2.4177502542653246, 2.4092558616632833, 2.4009945515941813, 2.392958334921044, 2.3851395705004212, 2.377530946435165, 2.3701254625290527, 2.3629164138542866, 2.3558973753503487, 2.349062187379432, 2.342404942169817, 2.3359199710841216, 2.3296018326544226, 2.3234453013308625, 2.3174453568945608, 2.3115971744894814, 2.3058961152314175, 2.3003377173554473, 2.2949176878661515, 2.2896318946575587, 2.2844763590722454, 2.279447248871267, 2.2745408715886652, 2.269753668246203, 2.2650822074057126, 2.2605231795380614, 2.2560733916892106, 2.2517297624252155, 2.2474893170392565, 2.2433491830049723, 2.2393065856614163, 2.2353588441159635, 2.2315033673524005, 2.227737650532284, 2.224059271478435, 2.2204658873301644], "type": "scatter", "x": [0, 0.01, 0.02, 0.03, 0.04, 0.05, 0.06, 0.07, 0.08, 0.09, 0.1, 0.11, 0.12, 0.13, 0.14, 0.15, 0.16, 0.17, 0.18, 0.19, 0.2, 0.21, 0.22, 0.23, 0.24, 0.25, 0.26, 0.27, 0.28, 0.29, 0.3, 0.31, 0.32, 0.33, 0.34, 0.35, 0.36, 0.37, 0.38, 0.39, 0.4, 0.41, 0.42, 0.43, 0.44, 0.45, 0.46, 0.47, 0.48, 0.49, 0.5, 0.51, 0.52, 0.53, 0.54, 0.55, 0.56, 0.57, 0.58, 0.59, 0.6, 0.61, 0.62, 0.63, 0.64, 0.65, 0.66, 0.67, 0.68, 0.69, 0.7, 0.71, 0.72, 0.73, 0.74, 0.75, 0.76, 0.77, 0.78, 0.79, 0.8, 0.81, 0.82, 0.83, 0.84, 0.85, 0.86, 0.87, 0.88, 0.89, 0.9, 0.91, 0.92, 0.93, 0.94, 0.95, 0.96, 0.97, 0.98, 0.99, 1], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 101, "currentCount": 101}}}, {"showlegend": true, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "1.3", "zmin": null, "yaxis": "y", "legendgroup": "1.3", "zmax": null, "line": {"color": "rgba(172, 142, 24, 1.000)", "shape": "linear", "dash": "solid", "width": 2}, "y": [5, 4.844022571891188, 4.700942672518555, 4.569241553891203, 4.447629879375203, 4.335005982084133, 4.230422917176114, 4.1330622199458755, 4.04221282966269, 3.9572540304781425, 3.8776415436536134, 3.8028961122276512, 3.7325940721161803, 3.6663595177327775, 3.6038577561622556, 3.544789809228674, 3.4888877728320447, 3.435910881555388, 3.385642156583056, 3.33788553849281, 3.292463425022314, 3.249214548611632, 3.2079921402496594, 3.1686623355582726, 3.131102786632521, 3.095201449302088, 3.0608555204849734, 3.027970504399618, 2.9964593897667697, 2.9662419229092247, 2.937243963958139, 2.9093969152880708, 2.882637212900225, 2.856905872811612, 2.832148085632786, 2.8083128534656656, 2.785352664055754, 2.7632231978143844, 2.741883063906583, 2.7212935620951715, 2.701418467455473, 2.682223835438647, 2.6636778250745743, 2.645750538375107, 2.6284138742318635, 2.611641395304965, 2.5954082065747817, 2.579690844381639, 2.564467174911827, 2.5497163012048247, 2.5354184778587716, 2.5215550327008027, 2.5081082947676507, 2.4950615280112896, 2.4823988702056146, 2.470105276584259, 2.458166467787543, 2.446568881739034, 2.4352996291099136, 2.424346452062923, 2.413697685997531, 2.4033422240446667, 2.393269484083175, 2.3834693780714864, 2.373932283507089, 2.364649016843532, 2.355610808710089, 2.346809280793049, 2.338236424250077, 2.3298845795403285, 2.3217464175631517, 2.3138149220073774, 2.3060833728215004, 2.2985453307225683, 2.2911946226684123, 2.2840253282240335, 2.2770317667585833, 2.270208485414489, 2.263550247794922, 2.2570520233200604, 2.25070897720645, 2.244516461027315, 2.238470003814887, 2.2325653036687787, 2.2267982198371308, 2.221164765239737, 2.215661099404618, 2.2102835217916157, 2.2050284654784664, 2.1998924911866045, 2.1948722816255377, 2.1899646361361476, 2.1851664656146257, 2.1804747877000397, 2.1758867222096745, 2.1713994868073865, 2.1670103928912, 2.162716841687296, 2.1585163205384013, 2.1544063993753717, 2.1503847273614967], "type": "scatter", "x": [0, 0.01, 0.02, 0.03, 0.04, 0.05, 0.06, 0.07, 0.08, 0.09, 0.1, 0.11, 0.12, 0.13, 0.14, 0.15, 0.16, 0.17, 0.18, 0.19, 0.2, 0.21, 0.22, 0.23, 0.24, 0.25, 0.26, 0.27, 0.28, 0.29, 0.3, 0.31, 0.32, 0.33, 0.34, 0.35, 0.36, 0.37, 0.38, 0.39, 0.4, 0.41, 0.42, 0.43, 0.44, 0.45, 0.46, 0.47, 0.48, 0.49, 0.5, 0.51, 0.52, 0.53, 0.54, 0.55, 0.56, 0.57, 0.58, 0.59, 0.6, 0.61, 0.62, 0.63, 0.64, 0.65, 0.66, 0.67, 0.68, 0.69, 0.7, 0.71, 0.72, 0.73, 0.74, 0.75, 0.76, 0.77, 0.78, 0.79, 0.8, 0.81, 0.82, 0.83, 0.84, 0.85, 0.86, 0.87, 0.88, 0.89, 0.9, 0.91, 0.92, 0.93, 0.94, 0.95, 0.96, 0.97, 0.98, 0.99, 1], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 101, "currentCount": 101}}}, {"showlegend": true, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "1.5", "zmin": null, "yaxis": "y", "legendgroup": "1.5", "zmax": null, "line": {"color": "rgba(0, 170, 174, 1.000)", "shape": "linear", "dash": "solid", "width": 2}, "y": [5, 4.8421075297087235, 4.697264370828653, 4.563928518438509, 4.440791698285581, 4.326736698181321, 4.220803717364148, 4.122163585895405, 4.030096271603613, 3.9439734954134806, 3.863244567145952, 3.7874247666191616, 3.71608575194643, 3.648847594049223, 3.585372124557431, 3.5253573512038883, 3.4685327460623863, 3.414655251512396, 3.36350587953823, 3.31488680401388, 3.268618864563381, 3.2245394155968183, 3.1825004660889773, 3.1423670652616713, 3.104015897063462, 3.067334052604592, 3.032217954803985, 2.9985724136750274, 2.9663097941019085, 2.9353492807835355, 2.9056162273619055, 2.87704157869726, 2.849561356875853, 2.8231162028958834, 2.797650967119841, 2.7731143425450053, 2.7494585357588175, 2.726638971137333, 2.7046140244333765, 2.6833447824031795, 2.6627948255500096, 2.642930031431994, 2.62371839629852, 2.6051298730931043, 2.5871362240970686, 2.569710886693211, 2.552828850906568, 2.536466547534186, 2.5206017458108505, 2.505213459675738, 2.4902818618082683, 2.475788204692127, 2.4617147480460955, 2.448044692030526, 2.4347621157001957, 2.421851920228995, 2.4092997764803323, 2.3970920765400776, 2.3852158888669943, 2.373658916749538, 2.362409459788091, 2.351456378148678, 2.3407890593582525, 2.330397387433218, 2.3202717141521085, 2.3104028323006833, 2.3007819507332274, 2.2914006711078287, 2.282250966165995, 2.2733251594383153, 2.2646159062681215, 2.2561161760543573, 2.2478192356232314, 2.2397186336458232, 2.231808186025679, 2.224081962186675, 2.2165342721971006, 2.2091596546710557, 2.2019528653929727, 2.1949088666153247, 2.1880228169835, 2.181290062045382, 2.1747061253064155, 2.168266699793939, 2.1619676400972616, 2.1558049548524827, 2.149774799643322, 2.1438734702913442, 2.1380973965108825, 2.1324431359057376, 2.126907368286371, 2.1214868902877986, 2.1161786102697877, 2.110979543482227, 2.105886807479723, 2.1008976177705567, 2.0960092836861457, 2.0912192044580804, 2.086524865490665, 2.081923834817687, 2.0774137597328766], "type": "scatter", "x": [0, 0.01, 0.02, 0.03, 0.04, 0.05, 0.06, 0.07, 0.08, 0.09, 0.1, 0.11, 0.12, 0.13, 0.14, 0.15, 0.16, 0.17, 0.18, 0.19, 0.2, 0.21, 0.22, 0.23, 0.24, 0.25, 0.26, 0.27, 0.28, 0.29, 0.3, 0.31, 0.32, 0.33, 0.34, 0.35, 0.36, 0.37, 0.38, 0.39, 0.4, 0.41, 0.42, 0.43, 0.44, 0.45, 0.46, 0.47, 0.48, 0.49, 0.5, 0.51, 0.52, 0.53, 0.54, 0.55, 0.56, 0.57, 0.58, 0.59, 0.6, 0.61, 0.62, 0.63, 0.64, 0.65, 0.66, 0.67, 0.68, 0.69, 0.7, 0.71, 0.72, 0.73, 0.74, 0.75, 0.76, 0.77, 0.78, 0.79, 0.8, 0.81, 0.82, 0.83, 0.84, 0.85, 0.86, 0.87, 0.88, 0.89, 0.9, 0.91, 0.92, 0.93, 0.94, 0.95, 0.96, 0.97, 0.98, 0.99, 1], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 101, "currentCount": 101}}}, {"showlegend": true, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "1.7", "zmin": null, "yaxis": "y", "legendgroup": "1.7", "zmax": null, "line": {"color": "rgba(237, 94, 147, 1.000)", "shape": "linear", "dash": "solid", "width": 2}, "y": [5, 4.840192458201597, 4.693585853062129, 4.558614808186419, 4.433952030836792, 4.318464706105274, 4.211180136293619, 4.111258416712523, 4.01797052229903, 3.9306805949465407, 3.8488315211628104, 3.77193310838548, 3.6995523296094706, 3.6313052261738674, 3.5668501489488036, 3.5058820867448603, 3.448127883233429, 3.3933421841171585, 3.3413039877065325, 3.2918136966291693, 3.2446905877411414, 3.1997706326318496, 3.1569046133233223, 3.115956487548428, 3.0768019658742958, 3.039327269319327, 3.0034280413050514, 2.969008392028938, 2.935980056829628, 2.9042616529899217, 2.873778021802171, 2.84445964469829, 2.816242123896374, 2.7890657193971946, 2.7628749353243154, 2.7376181495797542, 2.7132472816143167, 2.6897174938133603, 2.66698692259567, 2.645016435832405, 2.6237694136287772, 2.603211549884896, 2.5833106723736305, 2.564036579350513, 2.545360890950187, 2.527256913831429, 2.5096995177128925, 2.492665022598484, 2.4761310956279643, 2.4600766566077925, 2.444481791381799, 2.429327672292994, 2.4145964850684307, 2.400271361530027, 2.3863363175968426, 2.3727761960996454, 2.3595766139775356, 2.346723913469818, 2.3342051169548377, 2.3220078851217756, 2.310120478191911, 2.2985317199330986, 2.287230964235516, 2.2762080640384923, 2.265453342417721, 2.2549575656596192, 2.244711918165315, 2.2347079790408255, 2.2249377002427275, 2.21539338616005, 2.206067674523469, 2.196953518542223, 2.1880441701776068, 2.1793331644695653, 2.1708143048398356, 2.16248164930138, 2.1543294975095733, 2.146352378595806, 2.138545039728899, 2.1309024353540305, 2.1234197170628253, 2.1160922240518274, 2.108915474129869, 2.101885155237851, 2.0949971174471855, 2.08824736540568, 2.081632051201933, 2.0751474676214507, 2.0687900417696126, 2.06255632903842, 2.056443007395596, 2.0504468719761246, 2.0445648299576997, 2.0387938957028546, 2.033131186151715, 2.027573916450424, 2.0221193958012895, 2.0167650235216468, 2.0115082852992905, 2.0063467496331326, 2.001278064448485], "type": "scatter", "x": [0, 0.01, 0.02, 0.03, 0.04, 0.05, 0.06, 0.07, 0.08, 0.09, 0.1, 0.11, 0.12, 0.13, 0.14, 0.15, 0.16, 0.17, 0.18, 0.19, 0.2, 0.21, 0.22, 0.23, 0.24, 0.25, 0.26, 0.27, 0.28, 0.29, 0.3, 0.31, 0.32, 0.33, 0.34, 0.35, 0.36, 0.37, 0.38, 0.39, 0.4, 0.41, 0.42, 0.43, 0.44, 0.45, 0.46, 0.47, 0.48, 0.49, 0.5, 0.51, 0.52, 0.53, 0.54, 0.55, 0.56, 0.57, 0.58, 0.59, 0.6, 0.61, 0.62, 0.63, 0.64, 0.65, 0.66, 0.67, 0.68, 0.69, 0.7, 0.71, 0.72, 0.73, 0.74, 0.75, 0.76, 0.77, 0.78, 0.79, 0.8, 0.81, 0.82, 0.83, 0.84, 0.85, 0.86, 0.87, 0.88, 0.89, 0.9, 0.91, 0.92, 0.93, 0.94, 0.95, 0.96, 0.97, 0.98, 0.99, 1], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 101, "currentCount": 101}}}, {"showlegend": true, "mode": "lines", "xaxis": "x", "colorbar": {"title": {"text": ""}}, "name": "1.9", "zmin": null, "yaxis": "y", "legendgroup": "1.9", "zmax": null, "line": {"color": "rgba(198, 130, 37, 1.000)", "shape": "linear", "dash": "solid", "width": 2}, "y": [5, 4.838277357368992, 4.689907119195803, 4.553300422977346, 4.427110876430877, 4.31019000420408, 4.2015521702252325, 4.10034670501152, 4.005835568534503, 3.917375307138836, 3.834402371350695, 3.7564210861948255, 3.6829937312877523, 3.6137323112835498, 3.5482916899100427, 3.486363831083475, 3.4276729442936325, 3.3719713728289245, 3.319036095527388, 3.2686657378422583, 3.2206780077611774, 3.1749074877549495, 3.131203726385434, 3.089429583176745, 3.049459788385872, 3.0111796858096525, 2.9744841320522557, 2.9392765299976293, 2.9054679777772674, 2.8729765174463924, 2.8417264700005753, 2.8116478453746154, 2.782675817741632, 2.754750257833234, 2.72781531517992, 2.701819044163795, 2.6767130686150926, 2.6524522803958357, 2.62899456801937, 2.6063005718709342, 2.5843334630361245, 2.5630587431229097, 2.542444062788596, 2.5224590569638767, 2.5030751950087216, 2.484265644244961, 2.4660051454928227, 2.448269899397339, 2.431037462468891, 2.4142866518829957, 2.3979974581902312, 2.3821509651799917, 2.3667292762232734, 2.35171544649149, 2.3370934205115987, 2.3228479745737487, 2.3089646635571426, 2.2954297717836694, 2.282230267547808, 2.269353761005924, 2.2567884651389165, 2.2445231595296833, 2.232547156721414, 2.2208502709447075, 2.209422789021171, 2.1982554432688053, 2.187339386250328, 2.1766661672198238, 2.166227710135943, 2.1560162931214197, 2.1460245292591162, 2.136245348624229, 2.1266719814607984, 2.1172979424183995, 2.1081170157718767, 2.0991232415533325, 2.0903109025313547, 2.0816745119776976, 2.073208802166419, 2.064908713554806, 2.056769384599406, 2.048786142164081, 2.040954492480324, 2.0332701126230868, 2.025728842468157, 2.018326677099625, 2.0110597596383415, 2.0039243744643724, 1.9969169408084286, 1.9900340066890498, 1.9832722431739673, 1.9766284389456072, 1.9700994951520887, 1.9636824205263743, 1.9573743267574188, 1.9511724240982673, 1.9450740171970704, 1.9390765011379294, 1.9331773576793494, 1.9273741516788916, 1.921664527693358], "type": "scatter", "x": [0, 0.01, 0.02, 0.03, 0.04, 0.05, 0.06, 0.07, 0.08, 0.09, 0.1, 0.11, 0.12, 0.13, 0.14, 0.15, 0.16, 0.17, 0.18, 0.19, 0.2, 0.21, 0.22, 0.23, 0.24, 0.25, 0.26, 0.27, 0.28, 0.29, 0.3, 0.31, 0.32, 0.33, 0.34, 0.35, 0.36, 0.37, 0.38, 0.39, 0.4, 0.41, 0.42, 0.43, 0.44, 0.45, 0.46, 0.47, 0.48, 0.49, 0.5, 0.51, 0.52, 0.53, 0.54, 0.55, 0.56, 0.57, 0.58, 0.59, 0.6, 0.61, 0.62, 0.63, 0.64, 0.65, 0.66, 0.67, 0.68, 0.69, 0.7, 0.71, 0.72, 0.73, 0.74, 0.75, 0.76, 0.77, 0.78, 0.79, 0.8, 0.81, 0.82, 0.83, 0.84, 0.85, 0.86, 0.87, 0.88, 0.89, 0.9, 0.91, 0.92, 0.93, 0.94, 0.95, 0.96, 0.97, 0.98, 0.99, 1], "zaxis": null, "z": null, "metadata": {"shouldEnableSmartZoom": false, "smartZoomParams": {"minCount": 25000, "maxCount": 101, "currentCount": 101}}}], "config": {"showlegend": true, "xaxis": {"showticklabels": true, "gridwidth": 0.5, "tickvals": [0, 0.25, 0.5, 0.75, 1], "range": [-0.030000000000000027, 1.03], "domain": [0.04683945756780402, 0.9934383202099739], "mirror": false, "tickangle": 0, "showline": true, "ticktext": ["0.00", "0.25", "0.50", "0.75", "1.00"], "zeroline": false, "tickfont": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 11}, "zerolinecolor": "rgba(0, 0, 0, 1)", "anchor": "y", "visible": true, "ticks": "inside", "tickmode": "array", "linecolor": "rgba(0, 0, 0, 1)", "showgrid": true, "title": {"text": "Время, г", "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 15}}, "gridcolor": "rgba(0, 0, 0, 0.1)", "tickcolor": "rgb(0, 0, 0)", "type": "linear"}, "paper_bgcolor": "rgba(255, 255, 255, 1.000)", "annotations": [{"yanchor": "top", "xanchor": "center", "rotation": 0, "y": 1, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 14}, "yref": "paper", "showarrow": false, "text": "Зависимости изменения популяции от задания на вылов (т)", "xref": "paper", "x": 0.5201388888888888}], "height": 400, "margin": {"l": 0, "b": 20, "r": 0, "t": 20}, "plot_bgcolor": "rgba(255, 255, 255, 1.000)", "yaxis": {"showticklabels": true, "gridwidth": 0.5, "tickvals": [2, 3, 4, 5], "range": [1.8293144635241587, 5.092350064169199], "domain": [0.07581474190726165, 0.9554352580927385], "mirror": false, "tickangle": 0, "showline": true, "ticktext": ["2", "3", "4", "5"], "zeroline": false, "tickfont": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 11}, "zerolinecolor": "rgba(0, 0, 0, 1)", "anchor": "x", "visible": true, "ticks": "inside", "tickmode": "array", "linecolor": "rgba(0, 0, 0, 1)", "showgrid": true, "title": {"text": "Популяция, т", "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 15}}, "gridcolor": "rgba(0, 0, 0, 0.1)", "tickcolor": "rgb(0, 0, 0)", "type": "linear"}, "legend": {"yanchor": "auto", "xanchor": "auto", "bordercolor": "rgba(0, 0, 0, 1)", "bgcolor": "rgba(255, 255, 255, 1.000)", "borderwidth": 1, "tracegroupgap": 0, "y": 1, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 11}, "title": {"font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 15}, "text": ""}, "traceorder": "normal", "x": 1}, "width": 763.03125}}