diff --git a/.gitignore b/.gitignore index 3a6fb92c..5ad1217c 100644 --- a/.gitignore +++ b/.gitignore @@ -5,4 +5,5 @@ */.project */.settings facedb.lck -doxygenDoc \ No newline at end of file +doxygenDoc +*/.Rapp.history \ No newline at end of file diff --git a/emlab-generation/.gitignore b/emlab-generation/.gitignore index 2bccf602..9d9d5d04 100644 --- a/emlab-generation/.gitignore +++ b/emlab-generation/.gitignore @@ -2,3 +2,4 @@ *.log log.roo facedb.properties +/target/ diff --git a/emlab-generation/.settings/org.eclipse.jdt.core.prefs b/emlab-generation/.settings/org.eclipse.jdt.core.prefs index 62f2a6ac..496aa72b 100644 --- a/emlab-generation/.settings/org.eclipse.jdt.core.prefs +++ b/emlab-generation/.settings/org.eclipse.jdt.core.prefs @@ -9,6 +9,10 @@ org.eclipse.jdt.core.codeComplete.staticFieldPrefixes= org.eclipse.jdt.core.codeComplete.staticFieldSuffixes= org.eclipse.jdt.core.codeComplete.staticFinalFieldPrefixes= org.eclipse.jdt.core.codeComplete.staticFinalFieldSuffixes= +org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6 +org.eclipse.jdt.core.compiler.compliance=1.6 +org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning +org.eclipse.jdt.core.compiler.source=1.6 org.eclipse.jdt.core.formatter.align_type_members_on_columns=false org.eclipse.jdt.core.formatter.alignment_for_arguments_in_allocation_expression=16 org.eclipse.jdt.core.formatter.alignment_for_arguments_in_annotation=0 diff --git a/emlab-generation/.settings/org.eclipse.jdt.ui.prefs b/emlab-generation/.settings/org.eclipse.jdt.ui.prefs index 12da70c5..912ea7cc 100644 --- a/emlab-generation/.settings/org.eclipse.jdt.ui.prefs +++ b/emlab-generation/.settings/org.eclipse.jdt.ui.prefs @@ -78,10 +78,12 @@ sp_cleanup.always_use_blocks=true sp_cleanup.always_use_parentheses_in_expressions=false sp_cleanup.always_use_this_for_non_static_field_access=false sp_cleanup.always_use_this_for_non_static_method_access=false +sp_cleanup.convert_functional_interfaces=false sp_cleanup.convert_to_enhanced_for_loop=false sp_cleanup.correct_indentation=true sp_cleanup.format_source_code=true -sp_cleanup.format_source_code_changes_only=true +sp_cleanup.format_source_code_changes_only=false +sp_cleanup.insert_inferred_type_arguments=false sp_cleanup.make_local_variable_final=false sp_cleanup.make_parameters_final=false sp_cleanup.make_private_fields_final=true @@ -89,7 +91,7 @@ sp_cleanup.make_type_abstract_if_missing_method=false sp_cleanup.make_variable_declarations_final=true sp_cleanup.never_use_blocks=false sp_cleanup.never_use_parentheses_in_expressions=true -sp_cleanup.on_save_use_additional_actions=true +sp_cleanup.on_save_use_additional_actions=false sp_cleanup.organize_imports=true sp_cleanup.qualify_static_field_accesses_with_declaring_class=false sp_cleanup.qualify_static_member_accesses_through_instances_with_declaring_class=true @@ -97,6 +99,7 @@ sp_cleanup.qualify_static_member_accesses_through_subtypes_with_declaring_class= sp_cleanup.qualify_static_member_accesses_with_declaring_class=false sp_cleanup.qualify_static_method_accesses_with_declaring_class=false sp_cleanup.remove_private_constructors=true +sp_cleanup.remove_redundant_type_arguments=false sp_cleanup.remove_trailing_whitespaces=true sp_cleanup.remove_trailing_whitespaces_all=true sp_cleanup.remove_trailing_whitespaces_ignore_empty=false @@ -110,10 +113,13 @@ sp_cleanup.remove_unused_private_methods=true sp_cleanup.remove_unused_private_types=true sp_cleanup.sort_members=false sp_cleanup.sort_members_all=false +sp_cleanup.use_anonymous_class_creation=false sp_cleanup.use_blocks=false sp_cleanup.use_blocks_only_for_return_and_throw=false +sp_cleanup.use_lambda=false sp_cleanup.use_parentheses_in_expressions=false sp_cleanup.use_this_for_non_static_field_access=false sp_cleanup.use_this_for_non_static_field_access_only_if_necessary=true sp_cleanup.use_this_for_non_static_method_access=false sp_cleanup.use_this_for_non_static_method_access_only_if_necessary=true +sp_cleanup.use_type_arguments=false diff --git a/emlab-generation/facedb.script b/emlab-generation/facedb.script index 0a46aa03..17deb058 100644 --- a/emlab-generation/facedb.script +++ b/emlab-generation/facedb.script @@ -35,7 +35,7 @@ CREATE SCHEMA PUBLIC AUTHORIZATION DBA CREATE SCHEMA AGENTSPRING_FACE AUTHORIZATION DBA SET SCHEMA AGENTSPRING_FACE CREATE MEMORY TABLE AGENTSPRING_FACE.SOURCES(ID INTEGER GENERATED BY DEFAULT AS IDENTITY(START WITH 0) NOT NULL PRIMARY KEY,TITLE VARCHAR(45) DEFAULT NULL,START VARCHAR(45) DEFAULT NULL,SCRIPT VARCHAR(16777216) NOT NULL) -ALTER TABLE AGENTSPRING_FACE.SOURCES ALTER COLUMN ID RESTART WITH 73 +ALTER TABLE AGENTSPRING_FACE.SOURCES ALTER COLUMN ID RESTART WITH 74 CREATE MEMORY TABLE AGENTSPRING_FACE.VISUALS(ID INTEGER GENERATED BY DEFAULT AS IDENTITY(START WITH 0) NOT NULL PRIMARY KEY,TITLE VARCHAR(45) DEFAULT NULL,CLASS VARCHAR(45) DEFAULT NULL,TYPE VARCHAR(45) DEFAULT NULL,YAXIS VARCHAR(45) DEFAULT NULL) ALTER TABLE AGENTSPRING_FACE.VISUALS ALTER COLUMN ID RESTART WITH 41 CREATE MEMORY TABLE AGENTSPRING_FACE.VISUALS_SOURCES(VISUAL INTEGER NOT NULL,SOURCE INTEGER NOT NULL,PRIMARY KEY(VISUAL,SOURCE),FOREIGN KEY(VISUAL) REFERENCES AGENTSPRING_FACE.VISUALS(ID) ON DELETE CASCADE,FOREIGN KEY(SOURCE) REFERENCES AGENTSPRING_FACE.SOURCES(ID)) @@ -113,6 +113,7 @@ INSERT INTO SOURCES VALUES(69,'MarketStabilityReserve','Government','["Mark INSERT INTO SOURCES VALUES(70,'RevenuesProfitA','BigBank','flows = n.getNodes('CashFlow');\u000agroups = flows.groupBy{it.type}\u000aresult = [];\u000atotalCosts = 0;\u000atotalRevenue = 0;\u000atotalSpotRevenue = 0;\u000atotalLTCRevenue = 0;\u000atotalCMRevenue = 0;\u000atotalRESRevenue=0;\u000atotalCO2HedgingRevenue=0;\u000afor (key in groups.keySet()) {\u000a if (key<3 || key>9) {\u000a for (flow in groups[key]) {\u000a if (flow.time != tick) continue;\u000a if (flow.out('TO_AGENT').collect{it.__type__.contains('EnergyProducer')}[0] && flow.out('TO_AGENT').out('INVESTOR_MARKET').out('ZONE').collect{it.name.equals('Country A')}[0]) {\u000a totalRevenue += flow.money;\u000a }\u000a }\u000a \u000a } else {\u000a for (flow in groups[key]) {\u000a if (flow.time != tick) continue;\u000a if (flow.out('FROM_AGENT').collect{it.__type__.contains('EnergyProducer')}[0] && flow.out('FROM_AGENT').out('INVESTOR_MARKET').out('ZONE').collect{it.name.equals('Country A')}[0]) {\u000a totalCosts += flow.money;\u000a }\u000a }\u000a }\u000a \u000a if (key==1) {\u000a for (flow in groups[key]) {\u000a if (flow.time != tick) continue;\u000a if (flow.out('TO_AGENT').collect{it.__type__.contains('EnergyProducer')}[0] && flow.out('TO_AGENT').out('INVESTOR_MARKET').out('ZONE').collect{it.name.equals('Country A')}[0]) {\u000a totalSpotRevenue += flow.money;\u000a }\u000a }\u000a \u000a }\u000a \u000a if (key==2) {\u000a for (flow in groups[key]) {\u000a if (flow.time != tick) continue;\u000a if (flow.out('TO_AGENT').collect{it.__type__.contains('EnergyProducer')}[0] && flow.out('TO_AGENT').out('INVESTOR_MARKET').out('ZONE').collect{it.name.equals('Country A')}[0]) {\u000a totalLTCRevenue += flow.money;\u000a }\u000a }\u000a \u000a }\u000a \u000a if (key==11) {\u000a for (flow in groups[key]) {\u000a if (flow.time != tick) continue;\u000a if (flow.out('TO_AGENT').collect{it.__type__.contains('EnergyProducer')}[0] && flow.out('TO_AGENT').out('INVESTOR_MARKET').out('ZONE').collect{it.name.equals('Country A')}[0]) {\u000a totalCMRevenue += flow.money;\u000a }\u000a }\u000a \u000a }\u000a \u000a \u000a if (key==10) {\u000a for (flow in groups[key]) {\u000a if (flow.time != tick) continue;\u000a if (flow.out('TO_AGENT').collect{it.__type__.contains('EnergyProducer')}[0] && flow.out('TO_AGENT').out('INVESTOR_MARKET').out('ZONE').collect{it.name.equals('Country A')}[0]) {\u000a totalRESRevenue += flow.money;\u000a }\u000a }\u000a \u000a }\u000a\u000aif (key==12) {\u000a for (flow in groups[key]) {\u000a if (flow.time != tick) continue;\u000a if (flow.out('TO_AGENT').collect{it.__type__.contains('EnergyProducer')}[0]) {\u000a totalCO2HedgingRevenue += flow.money;\u000a }\u000a }\u000a }\u000a\u000a}\u000aresult.add(['Total Revenue', totalRevenue]);\u000aresult.add(['Revenue LTC', totalLTCRevenue]);\u000aresult.add(['Revenue Spot', totalSpotRevenue]);\u000aresult.add(['Revenue CM', totalCMRevenue])\u000aresult.add(['Revenue RES',totalRESRevenue])\u000aresult.add(['Revenue CO2Hedge', totalCO2HedgingRevenue]);\u000aresult.add(['Profit', totalRevenue - totalCosts]);\u000areturn result;') INSERT INTO SOURCES VALUES(71,'WindNodeInstallations','PowerGridNode','capacity=v.in('LOCATION').as('x').out('TECHNOLOGY').filter{it.name=='Wind'}.back('x').sum{it.actualNominalCapacity}\u000aif(capacity == null) capacity = 0\u000a[v.name, capacity]') INSERT INTO SOURCES VALUES(72,'OriginalCO2Cap','Government','cap=0\u000atry{cap = v.out("CO2CAP_TREND").collect{f.getTrendValue(it, tick)}[0];} catch(Exception e){ \u000acap=v.out("CO2CAP_TREND").timeSeries.next()[tick.toInteger()];}\u000atry{capReduction = v.out("CO2CAPADJUSTMENT_TIMESERIES").timeSeries.next()[tick.toInteger()]} catch(Exception e){\u000a capReduction=0\u000a}\u000areturn ["Original CO2 cap", cap+capReduction]') +INSERT INTO SOURCES VALUES(73,'CheckQuery','PowerGridNode','v.in('LOCATION').as('x').out('TECHNOLOGY') //.filter{it==g.v(tech)}.back('x').filter{(it.dismantleTime > tick) && ((tick - (it.constructionStartTime + it.actualPermittime + it.actualLeadtime)) <= 2)}') INSERT INTO VISUALS VALUES(0,'Producer Cash Balance','chart','line','Euro') INSERT INTO VISUALS VALUES(1,'Producer Revenue','chart','area','EUR') INSERT INTO VISUALS VALUES(2,'CO2 Cap and Emissions','chart','line','') diff --git a/emlab-generation/queries-Ranalysis.properties b/emlab-generation/queries-Ranalysis.properties index bb8edd63..12b65fdc 100644 --- a/emlab-generation/queries-Ranalysis.properties +++ b/emlab-generation/queries-Ranalysis.properties @@ -831,4 +831,16 @@ segmentID=s.out('SEGMENTLOAD_SEGMENT').collect{it.segmentID}[0] hours=s.out('SEGMENTLOAD_SEGMENT').collect{it.lengthInHours}[0] finalResult.add([tick, s.baseLoad*growthfactor, market, segmentID, hours]) } -return finalResult", \ No newline at end of file +return finalResult", + +"TABLE_FinancialReports", "DecarbonizationModel", "financialReports=g.idx('__types__')[[className:'emlab.gen.domain.market.electricity.FinancialPowerPlantReport']].filter{it.time==tick}; +finalResult = []; +columnNames=['tick', 'spotMarketRevenue', 'capacityMarketRevenue', 'strategicReserveRevenue', 'co2HedgingRevenue', 'overallRevenue','commodityCosts','co2Costs','variableCosts','fixedCosts','fullLoadHours','production','powerPlantName','technology','location','powerPlantOwner','operationalStatus','firstYearOfPowerPlantOperation','nominalCapacity','investedCapital']; +finalResult.add(columnNames); +for(v in financialReports){ +firstYearOfOperation=v.out('FINANCIALREPORT_POWERPLANT').constructionStartTime.next()+v.out('FINANCIALREPORT_POWERPLANT').actualPermittime.next()+v.out('FINANCIALREPORT_POWERPLANT').actualLeadtime.next() +powerPlantSize=v.out('FINANCIALREPORT_POWERPLANT').actualNominalCapacity.next() +actualInvestedCapital=v.out('FINANCIALREPORT_POWERPLANT').actualInvestedCapital.next() +finalResult.add([v.time, v.spotMarketRevenue, v.capacityMarketRevenue, v.strategicReserveRevenue, v.co2HedgingRevenue, v.overallRevenue, v.commodityCosts, v.co2Costs, v.variableCosts, v.fixedCosts, v.fullLoadHours, v.production, v.out('FINANCIALREPORT_POWERPLANT').name.next(),v.out('FINANCIALREPORT_POWERPLANT').out('TECHNOLOGY').name.next(),v.out('FINANCIALREPORT_POWERPLANT').out('LOCATION').name.next(),v.out('FINANCIALREPORT_POWERPLANT').out('POWERPLANT_OWNER').name.next(),v.powerPlantStatus,firstYearOfOperation,powerPlantSize,actualInvestedCapital]); +}; +return finalResult;", diff --git a/emlab-generation/queries.properties b/emlab-generation/queries.properties index 1d5c147a..33c25833 100644 --- a/emlab-generation/queries.properties +++ b/emlab-generation/queries.properties @@ -38,62 +38,10 @@ return productionsum;", "MarketStabilityReserve", "Government", "return v.stabilityReserve", -"MsrUpperTriggerinTonPA", "Government", "try{cap = v.out('STABILITY_RESERVE_UPPER_TRIGGER').collect{f.getTrendValue(it, tick)}[0];} catch(Exception e){ -cap=v.out('STABILITY_RESERVE_UPPER_TRIGGER').timeSeries.next()[tick.toInteger()]} -model = points = g.idx('__types__')[[className:'emlab.gen.domain.agent.DecarbonizationModel']].next() -msrActive = model.stabilityReserveIsActive && (tick >= model.stabilityReserveFirstYearOfOperation) -if(msrActive){ - return cap -} else{ - return 'NA' -}", - -"MsrAddingPercentage", "Government", "try{cap = v.out('STABILITY_RESERVE_ADDING_PERCENTAGE').collect{f.getTrendValue(it, tick)}[0];} catch(Exception e){ -cap=v.out('STABILITY_RESERVE_ADDING_PERCENTAGE').timeSeries.next()[tick.toInteger()]} -model = points = g.idx('__types__')[[className:'emlab.gen.domain.agent.DecarbonizationModel']].next() -msrActive = model.stabilityReserveIsActive && (tick >= model.stabilityReserveFirstYearOfOperation) -if(msrActive){ - return cap -} else{ - return 'NA' -}", - -"MsrLowerTriggerinTonPA", "Government", "try{cap = v.out('STABILITY_RESERVE_LOWER_TRIGGER').collect{f.getTrendValue(it, tick)}[0];} catch(Exception e){ -cap=v.out('STABILITY_RESERVE_LOWER_TRIGGER').timeSeries.next()[tick.toInteger()]} -model = points = g.idx('__types__')[[className:'emlab.gen.domain.agent.DecarbonizationModel']].next() -msrActive = model.stabilityReserveIsActive && (tick >= model.stabilityReserveFirstYearOfOperation) -if(msrActive){ - return cap -} else{ - return 'NA' -}", - -"MsrReleaseQuantityTonPA", "Government", "try{cap = v.out('STABILITY_RESERVE_RELEASE_QUANTITY').collect{f.getTrendValue(it, tick)}[0];} catch(Exception e){ -cap=v.out('STABILITY_RESERVE_RELEASE_QUANTITY').timeSeries.next()[tick.toInteger()]} -model = points = g.idx('__types__')[[className:'emlab.gen.domain.agent.DecarbonizationModel']].next() -msrActive = model.stabilityReserveIsActive && (tick >= model.stabilityReserveFirstYearOfOperation) -if(msrActive){ - return cap -} else{ - return 'NA' -}", - "CO2CapinTonpA", "Government", "try{cap = v.out('CO2CAP_TREND').collect{f.getTrendValue(it, tick)}[0];} catch(Exception e){ cap = v.out('CO2CAP_TREND').timeSeries.next()[tick.toInteger()];} return ['CO2_cap', cap]", -"OriginalCO2CapinTonpA", "Government", "cap=0 -try{cap = v.out('CO2CAP_TREND').collect{f.getTrendValue(it, tick)}[0];} catch(Exception e){ -cap=v.out('CO2CAP_TREND').timeSeries.next()[tick.toInteger()];} -try{capReduction = v.out('CO2CAPADJUSTMENT_TIMESERIES').timeSeries.next()[tick.toInteger()]} catch(Exception e){ - capReduction=0 -} -return ['OriginalCO2Cap', cap+capReduction]", - -"CO2CapReductioninTonpA", "Government", "try{capReduction = v.out('CO2CAPADJUSTMENT_TIMESERIES').timeSeries.next()[tick.toInteger()]} catch(Exception e){ - capReduction=0} -return ['Co2CapReductioninTonpA', capReduction]", - "NationalMinCO2PriceinEURpTon", "NationalGovernment","try{price = v.out('MINCO2PRICE_TREND').collect{f.getTrendValue(it, tick)}[0];} catch(Exception e){ price = v.out('MINCO2PRICE_TREND').timeSeries.next()[tick.toInteger()];} return [v.out('GOVERNED_ZONE').collect{it.name}[0], price];", @@ -131,15 +79,7 @@ return [v.name, sum]", if(!point.hasNext()){price = 0} else {price=point.next().getProperty('price')} return price", -"MsrEmergencyTrigger", "CO2Auction", "point=v.in('MARKET_POINT').filter{it.time==tick && it.forecast==false} -if(!point.hasNext()){emergencyTrigger=false} else {emergencyTrigger=point.next().getProperty('emergencyTriggerActivated')} -return emergencyTrigger", - -"MsrEmergencyTriggerOutflow", "CO2Auction", "point=v.in('MARKET_POINT').filter{it.time==tick && it.forecast==false} -if(!point.hasNext()){outflow = 0} else {outflow=point.next().getProperty('emergencyTriggerOutflow')} -return outflow", - -"Forc_CO2Auction", "CO2Auction", "point=v.in('MARKET_POINT').filter{it.time==tick+3 && it.forecast==true} +"Forc_CO2Auction", "CO2Auction", "point=v.in('MARKET_POINT').filter{it.time==tick && it.forecast==true} if(!point.hasNext()){price = 0} else {price=point.next().getProperty('price')} return price", diff --git a/emlab-generation/queriesOld.properties b/emlab-generation/queriesOld.properties new file mode 100644 index 00000000..4fea9b91 --- /dev/null +++ b/emlab-generation/queriesOld.properties @@ -0,0 +1,771 @@ +"CapacityClearingPointPriceinEur", "DecarbonizationModel", "price = g.idx('__types__')[[className:'emlab.gen.domain.market.capacity.CapacityClearingPoint']].filter{it.time==tick}.price; +result=[] +for(p in price) result.add(p) +if(result.isEmpty()){return 0}; +return result[0]", + +"CapacityClearingPointVolumeinEur", "DecarbonizationModel", "volume = g.idx('__types__')[[className:'emlab.gen.domain.market.capacity.CapacityClearingPoint']].filter{it.time==tick}.volume; +result=[] +for(vl in volume) result.add(vl) +if(result.isEmpty()){return 0}; +return result[0]", + +"CapacityMarketShortageIndicator", "DecarbonizationModel", "price = g.idx('__types__')[[className:'emlab.gen.domain.market.capacity.CapacityClearingPoint']].propertyFilter('time', FilterPipe.Filter.EQUAL, tick).price; +priceCap = g.idx('__types__')[[className:'emlab.gen.domain.agent.Regulator']].capacityMarketPriceCap; +value = 0 +if (price == null) value = 0; +if (price == priceCap) value = 1; +else value = 0; +return value", + +"ConsumerExpenditure", "ElectricitySpotMarket", "[v.name, -v.cash]", + +"TABLE_CapacityDispatchPlans", "DecarbonizationModel", "cdp=g.idx('__types__')[[className:'emlab.gen.domain.market.capacity.CapacityDispatchPlan']].filter{it.time==tick}; + finalResult = []; + columnNames=['tick','bidder', 'market','volume', 'price', 'technology', 'status'] + finalResult.add(columnNames); + for (v in cdp){ + tick=v.time; + volume=v.amount; + technology=v.out('CAPACITY_DISPATCHPLAN').out('TECHNOLOGY').collect{it.name}[0]; status=v.status; + price=v.price; + bidder=v.in('BIDDER').collect{it.name}[0]; + market=v.out('BIDDINGMARKET').collect{it.name}[0]; + tempResult=[tick,bidder,market,volume, price, technology, status] + finalResult.add(tempResult); + } + return finalResult;", + + +"CapacityinMW", "PowerGeneratingTechnology", "capacity= v.in().filter{(it.dismantleTime > tick) && ((it.constructionStartTime + it.actualPermittime + it.actualLeadtime) <= tick)}.sum{it.actualNominalCapacity} +if(capacity == null) capacity = 0 +[v.name, capacity]", + +"CapacityinMWinA", "PowerGeneratingTechnology", "capacity = v.in('TECHNOLOGY').as('x').out('LOCATION').out('REGION').filter{it.name=='Country A'}.back('x').filter{(it.dismantleTime > tick) && ((it.constructionStartTime + it.actualPermittime + it.actualLeadtime) <= tick)}.sum{it.actualNominalCapacity} +if(capacity == null) capacity = 0 +[v.name, capacity]", + +"CapacityinMWinB", "PowerGeneratingTechnology", "capacity = v.in('TECHNOLOGY').as('x').out('LOCATION').out('REGION').filter{it.name=='Country B'}.back('x').filter{(it.dismantleTime > tick) && ((it.constructionStartTime + it.actualPermittime + it.actualLeadtime) <= tick)}.sum{it.actualNominalCapacity} +if(capacity == null) capacity = 0 +[v.name, capacity]", + +"PeakDemandPerZoneInMW", "ElectricitySpotMarket", "topsegments = v.out('SEGMENT_LOAD').max{it.baseLoad}.baseLoad; +try{growthfactors = v.out('DEMANDGROWTH_TREND').collect{f.getTrendValue(it, tick)}[0];} catch(Exception e){ +growthfactors=v.out('DEMANDGROWTH_TREND').timeSeries.next()[tick.toInteger()]} +adjustedTopSegments = topsegments*growthfactors; +return [v.outE('ZONE').inV.collect{it.name}[0], adjustedTopSegments]", + +"TotalOperationalCapacityPerZoneInMW", "Zone", "t = new Table(); +pp = v.in('REGION').in('LOCATION') +pp.filter{(it.dismantleTime > tick) && ((it.constructionStartTime + it.actualPermittime + it.actualLeadtime) <= tick)}.as('powerPlantCapacity').out('TECHNOLOGY').as('peakSegmentDependentAvailability').table(t){it.actualNominalCapacity}{it.peakSegmentDependentAvailability}.cap().next(); +capacitySum = 0; for (row in t){capacitySum += row.getColumn('powerPlantCapacity') * row.getColumn('peakSegmentDependentAvailability')} +return [v.name, capacitySum]", + +"TotalConsumptioninMWh", "DecarbonizationModel", "segmentloads = g.idx('__types__')[[className:'emlab.gen.domain.market.electricity.SegmentLoad']]; +productionsum = 0; +for(segmentload in segmentloads){ + //productionsum += segmentload.baseLoad; + try{growthfactor = segmentload.in('SEGMENT_LOAD').out('DEMANDGROWTH_TREND').collect{f.getTrendValue(it, tick)}[0];} catch(Exception e){ + growthfactor=segmentload.in('SEGMENT_LOAD').out('DEMANDGROWTH_TREND').timeSeries.next()[tick.toInteger()]} + productionsum += segmentload.out('SEGMENTLOAD_SEGMENT').lengthInHours.next() * segmentload.baseLoad * growthfactor; +} +return productionsum;", + + + +"CO2CapinTonpA", "Government", "try{cap = v.out('CO2CAP_TREND').collect{f.getTrendValue(it, tick)}[0];} catch(Exception e){ +cap = v.out('CO2CAP_TREND').timeSeries.next()[tick.toInteger()];} +return ['CO2_cap', cap]", + +"NationalMinCO2PriceinEURpTon", "NationalGovernment","try{price = v.out('MINCO2PRICE_TREND').collect{f.getTrendValue(it, tick)}[0];} catch(Exception e){ +price = v.out('MINCO2PRICE_TREND').timeSeries.next()[tick.toInteger()];} +return [v.out('GOVERNED_ZONE').collect{it.name}[0], price];", + +"NationalGovernmentCash", "NationalGovernment"," +return [v.out('GOVERNED_ZONE').collect{it.name}[0], v.cash];", + +"EUGovernmentCash", "Government"," +return v.cash;", + +"SpotMarketCash", "ElectricitySpotMarket"," +return [v.name, v.cash];", + +"GenerationinMWh", "PowerGeneratingTechnology", "sum = 0; +ppdps = v.in('TECHNOLOGY').in('POWERPLANT_DISPATCHPLAN').filter{it.time==tick && it.status>=2 && it.forecast==false}; +for(ppdp in ppdps){ + totalAmount = ppdp.getProperty('acceptedAmount') + ppdp.getProperty('capacityLongTermContract'); + hoursInSegment = ppdp.out('SEGMENT_DISPATCHPLAN').next().getProperty('lengthInHours'); + production = totalAmount * hoursInSegment; + sum = sum + production; +} +return [v.name, sum]", + +"GenerationinMWhPerProducer", "EnergyProducer", "sum = 0; +ppdps = v.out('BIDDER').filter{it.__type__.contains('PowerPlantDispatchPlan')}.filter{it.time==tick && it.status>=2 && it.forecast==false}; +for(ppdp in ppdps){ + totalAmount = ppdp.getProperty('acceptedAmount') + ppdp.getProperty('capacityLongTermContract'); + hoursInSegment = ppdp.out('SEGMENT_DISPATCHPLAN').next().getProperty('lengthInHours'); + production = totalAmount * hoursInSegment; + sum = sum + production; +} +return [v.name, sum]", + +"CO2Auction", "CO2Auction", "point=v.in('MARKET_POINT').filter{it.time==tick && it.forecast==false} +if(!point.hasNext()){price = 0} else {price=point.next().getProperty('price')} +return price", + + +"Forc_CO2Auction", "CO2Auction", "point=v.in('MARKET_POINT').filter{it.time==tick+3 && it.forecast==true} +if(!point.hasNext()){price = 0} else {price=point.next().getProperty('price')} +return price", + +"Avg_El_PricesinEURpMWh", "Zone", "cp = v.in('ZONE').in('MARKET_POINT').filter{it.time==tick && it.forecast==false}.toList(); +[v.name, cp.sum{it.price * it.volume} / cp.sum{it.volume}]; +", + +"Forc_Avg_El_PricesinEURpMWh", "Zone", "cp = v.in('ZONE').in('MARKET_POINT').filter{it.time==tick+3 && it.forecast==true}.toList(); +[v.name, cp.sum{it.price * it.volume} / cp.sum{it.volume}]; +", + +"NationalTotalProductioninMWh", "Zone", "powerplants = v.in('REGION').in('LOCATION') +return [v.name, powerplants.in('POWERPLANT_DISPATCHPLAN').filter{it.forecast==false}.sum{f.determineProductionOfDispatchPlanInMWh(it, tick)}]", + +"Total_EnergyServedinMWh", "Zone", "cp = v.in('ZONE').in('MARKET_POINT').filter{it.time==tick && it.forecast==false}; +return [v.name, cp.sum{it.volume}]; +", + +"Total_DemandinMWh", "Zone", "segmentloads = v.in('ZONE').out('SEGMENT_LOAD') +demandsum = 0; +for(segmentload in segmentloads){ + try{growthfactor = segmentload.in('SEGMENT_LOAD').out('DEMANDGROWTH_TREND').collect{f.getTrendValue(it, tick)}[0];} catch(Exception e){ + growthfactor=segmentload.in('SEGMENT_LOAD').out('DEMANDGROWTH_TREND').timeSeries.next()[tick.toInteger()]} + demandsum += segmentload.out('SEGMENTLOAD_SEGMENT').lengthInHours.next() * segmentload.baseLoad * growthfactor; +}; +return [v.name, demandsum]; +", + +"WelfareLossThroughENS", "Zone", "cp = v.in('ZONE').in('MARKET_POINT').filter{it.time==tick && it.forecast==false}.toList(); +energyServed = cp.sum{it.volume}; +segmentloads = v.in('ZONE').out('SEGMENT_LOAD') +demandSum = 0; +for(segmentload in segmentloads){ + try{growthfactor = segmentload.in('SEGMENT_LOAD').out('DEMANDGROWTH_TREND').collect{f.getTrendValue(it, tick)}[0];} catch(Exception e){ + growthfactor=segmentload.in('SEGMENT_LOAD').out('DEMANDGROWTH_TREND').timeSeries.next()[tick.toInteger()]} + demandSum += segmentload.out('SEGMENTLOAD_SEGMENT').lengthInHours.next() * segmentload.baseLoad * growthfactor; +}; +energyNotServed = demandSum - energyServed; +voll = v.in('ZONE').next().valueOfLostLoad +return [v.name, energyNotServed*voll]; +", + +"EnergyNotServedinMWh", "Zone", "cp = v.in('ZONE').in('MARKET_POINT').filter{it.time==tick && it.forecast==false}.toList(); +energyServed = cp.sum{it.volume}; +segmentloads = v.in('ZONE').out('SEGMENT_LOAD') +demandSum = 0; +for(segmentload in segmentloads){ + try{growthfactor = segmentload.in('SEGMENT_LOAD').out('DEMANDGROWTH_TREND').collect{f.getTrendValue(it, tick)}[0];} catch(Exception e){ + growthfactor=segmentload.in('SEGMENT_LOAD').out('DEMANDGROWTH_TREND').timeSeries.next()[tick.toInteger()]} + demandSum += segmentload.out('SEGMENTLOAD_SEGMENT').lengthInHours.next() * segmentload.baseLoad * growthfactor; +}; +energyNotServed = demandSum - energyServed; +return [v.name, energyNotServed]; +", + +"Forc_Total_DemandinMWh", "Zone", "cp = v.in('ZONE').in('MARKET_POINT').filter{it.time==tick+3 && it.forecast==true}.toList(); +[v.name, cp.sum{it.volume}]; +", + +"CO2Emissions_inTonpA", "DecarbonizationModel", "ppdps=g.idx('__types__')[[className:'emlab.gen.domain.market.electricity.PowerPlantDispatchPlan']].propertyFilter('time', FilterPipe.Filter.EQUAL, tick).filter{it.status>=1 && it.forecast==false}.collect(); +co2Emissions = 0 +for(plan in ppdps){ +fuelMix=plan.out('POWERPLANT_DISPATCHPLAN').out('FUEL_MIX').collect() +singleEmission=0 + for(fuelMixElement in fuelMix){ + //fuelMixElement=fuelMix[1] + share=fuelMixElement.share + co2Density=fuelMixElement.out('SUBSTANCE').collect{it.co2Density}[0]*(1-plan.out('POWERPLANT_DISPATCHPLAN').out('TECHNOLOGY').collect{it.co2CaptureEffciency}[0]) + singleEmission+=share*co2Density + } + co2Emissions+=plan.acceptedAmount*singleEmission*plan.out('SEGMENT_DISPATCHPLAN').collect{it.lengthInHours}[0] +} +return co2Emissions", + +"Forc_CO2Emissions_inTonpA", "DecarbonizationModel", "ppdps=g.idx('__types__')[[className:'emlab.gen.domain.market.electricity.PowerPlantDispatchPlan']].propertyFilter('time', FilterPipe.Filter.EQUAL, tick+3).filter{it.status>=1 && it.forecast==true}.collect(); +co2Emissions = 0 +for(plan in ppdps){ +fuelMix=plan.out('POWERPLANT_DISPATCHPLAN').out('FUEL_MIX').collect() +singleEmission=0 + for(fuelMixElement in fuelMix){ + //fuelMixElement=fuelMix[1] + share=fuelMixElement.share + co2Density=fuelMixElement.out('SUBSTANCE').collect{it.co2Density}[0]*(1-plan.out('POWERPLANT_DISPATCHPLAN').out('TECHNOLOGY').collect{it.co2CaptureEffciency}[0]) + singleEmission+=share*co2Density + } + co2Emissions+=plan.acceptedAmount*singleEmission*plan.out('SEGMENT_DISPATCHPLAN').collect{it.lengthInHours}[0] +} +return co2Emissions", + +"EUCO2PriceFloor", "Government", "try{price = v.out('MINCO2PRICE_TREND').collect{f.getTrendValue(it, tick)}[0];} catch(Exception e){ +price = v.out('MINCO2PRICE_TREND').timeSeries.next()[tick.toInteger()];}; +return ['EU CO2 price floor', price];", + +"CO2Tax", "Government", "try{price = v.out('CO2TAX_TREND').collect{f.getTrendValue(it, tick)}[0];} catch(Exception e){ +price = v.out('CO2TAX_TREND').timeSeries.next()[tick.toInteger()];} +return price", + +"FuelPricesPerGJ", "DecarbonizationModel", "fuels = g.idx('__types__')[[className:'emlab.gen.domain.technology.Substance']].filter{it.name != 'Electricity' && it.name != 'CO2'} +result = [] +for(v in fuels){ + price = v.in('SUBSTANCE_MARKET').in('MARKET_POINT').filter{it.time == tick}.collect{it.price}; + density = v.energyDensity; + inGJ = price[0] / density; + result.add([v.name,inGJ]);} + return result", + +"ProducerCash", "EnergyProducer", "[v.name, v.cash]", + +"AggregateFinances", "DecarbonizationModel", "flows = n.getNodes('CashFlow'); +groups = flows.groupBy{it.type} +result = []; +totalCosts = 0; +totalRevenue = 0; +totalSpotRevenue = 0; +totalLTCRevenue = 0; +totalCMRevenue = 0; +totalRESRevenue=0; +totalCO2HedgingRevenue=0; +totalTargetInvCosts = 0; +totalTargetInvRevenue = 0; +totalTargetInvSpotRevenue = 0; +totalTargetInvLTCRevenue = 0; +totalTargetInvCMRevenue = 0; +totalTargetInvRESRevenue=0; +totalTargetInvCO2HedgingRevenue=0; +hedgingFlows=[] +for (key in groups.keySet()) { + if (key<3 || (key>9 && key!=12)) { + for (flow in groups[key]) { + if (flow.time != tick) continue; + if (flow.out('TO_AGENT').collect{it.__type__.contains('EnergyProducer')}[0]) { + totalRevenue += flow.money; + } else if(flow.out('TO_AGENT').collect{it.__type__.contains('TargetInvestor')}[0]){ + totalTargetInvRevenue += flow.money; + } + } + + } else if(key!=12) { + for (flow in groups[key]) { + if (flow.time != tick) continue; + if (flow.out('FROM_AGENT').collect{it.__type__.contains('EnergyProducer')}[0]) { + totalCosts += flow.money; + } else if(flow.out('FROM_AGENT').collect{it.__type__.contains('TargetInvestor')}[0]){ + totalTargetInvCosts += flow.money; + } + } + } + + if (key==1) { + for (flow in groups[key]) { + if (flow.time != tick) continue; + if (flow.out('TO_AGENT').collect{it.__type__.contains('EnergyProducer')}[0]) { + totalSpotRevenue += flow.money; + } else if(flow.out('TO_AGENT').collect{it.__type__.contains('TargetInvestor')}[0]){ + totalTargetInvSpotRevenue += flow.money; + } + } + + } + + if (key==2) { + for (flow in groups[key]) { + if (flow.time != tick) continue; + if (flow.out('TO_AGENT').collect{it.__type__.contains('EnergyProducer')}[0]) { + totalLTCRevenue += flow.money; + } else if(flow.out('TO_AGENT').collect{it.__type__.contains('TargetInvestor')}[0]){ + totalTargetInvLTCRevenue += flow.money; + } + } + + } + + if (key==11) { + for (flow in groups[key]) { + if (flow.time != tick) continue; + if (flow.out('TO_AGENT').collect{it.__type__.contains('EnergyProducer')}[0]) { + totalCMRevenue += flow.money; + } else if(flow.out('TO_AGENT').collect{it.__type__.contains('TargetInvestor')}[0]){ + totalTargetInvCMRevenue += flow.money; + } + } + + } + + + if (key==10) { + for (flow in groups[key]) { + if (flow.time != tick) continue; + if (flow.out('TO_AGENT').collect{it.__type__.contains('EnergyProducer')}[0]) { + totalRESRevenue += flow.money; + } else if(flow.out('TO_AGENT').collect{it.__type__.contains('TargetInvestor')}[0]){ + totalTargetInvRESRevenue += flow.money; + } + } + + } + +if (key==12) { + for (flow in groups[key]) { + if (flow.time != tick) continue; + hedgingFlows.add(flow) + if (flow.out('TO_AGENT').collect{it.__type__.contains('EnergyProducer')}[0]) { + totalCO2HedgingRevenue += flow.money; + totalRevenue+= flow.money; + } else if(flow.out('TO_AGENT').collect{it.__type__.contains('TargetInvestor')}[0]){ + totalTargetInvCO2HedgingRevenue += flow.money; + } + if (flow.out('FROM_AGENT').collect{it.__type__.contains('EnergyProducer') }[0]) { + //totalCO2HedgingRevenue -= flow.money; + totalCosts+= flow.money; + } + } + } + +} +result.add(['Total Revenue', totalRevenue]); +result.add(['Revenue LTC', totalLTCRevenue]); +result.add(['Revenue Spot', totalSpotRevenue]); +result.add(['Revenue CM', totalCMRevenue]) +result.add(['Revenue RES',totalRESRevenue]) +result.add(['Revenue CO2Hedge', totalCO2HedgingRevenue]); +result.add(['Profit', totalRevenue - totalCosts]); +result.add(['TI Revenue', totalTargetInvRevenue]); +result.add(['TI Revenue LTC', totalTargetInvLTCRevenue]); +result.add(['TI Revenue Spot', totalTargetInvSpotRevenue]); +result.add(['TI Revenue CM', totalTargetInvCMRevenue]) +result.add(['TI Revenue RES',totalTargetInvRESRevenue]) +result.add(['TI Revenue CO2Hedge', totalTargetInvCO2HedgingRevenue]); +result.add(['TI Profit', totalTargetInvRevenue - totalTargetInvCosts]); +return result; +", + +"CountryAProdFinances", "DecarbonizationModel", "flows = n.getNodes('CashFlow'); +groups = flows.groupBy{it.type} +result = []; +totalCosts = 0; +totalRevenue = 0; +totalSpotRevenue = 0; +totalLTCRevenue = 0; +totalCMRevenue = 0; +totalRESRevenue=0; +totalCO2HedgingRevenue=0; +totalTargetInvCosts = 0; +totalTargetInvRevenue = 0; +totalTargetInvSpotRevenue = 0; +totalTargetInvLTCRevenue = 0; +totalTargetInvCMRevenue = 0; +totalTargetInvRESRevenue=0; +totalTargetInvCO2HedgingRevenue=0; +hedgingFlows=[] +for (key in groups.keySet()) { + if (key<3 || (key>9 && key!=12)) { + for (flow in groups[key]) { + if (flow.time != tick) continue; + if (flow.out('TO_AGENT').collect{it.__type__.contains('EnergyProducer')}[0] && flow.out('TO_AGENT').out('INVESTOR_MARKET').out('ZONE').collect{it.name.equals('Country A')}[0]) { + totalRevenue += flow.money; + } else if(flow.out('TO_AGENT').collect{it.__type__.contains('TargetInvestor') }[0] && flow.out('TO_AGENT').out('INVESTOR_MARKET').out('ZONE').collect{it.name.equals('Country A')}[0]){ + totalTargetInvRevenue += flow.money; + } + } + + } else if(key!=12) { + for (flow in groups[key]) { + if (flow.time != tick) continue; + if (flow.out('FROM_AGENT').collect{it.__type__.contains('EnergyProducer')}[0] && flow.out('FROM_AGENT').out('INVESTOR_MARKET').out('ZONE').collect{it.name.equals('Country A')}[0]) { + totalCosts += flow.money; + } else if(flow.out('FROM_AGENT').collect{it.__type__.contains('TargetInvestor') }[0] && flow.out('FROM_AGENT').out('INVESTOR_MARKET').out('ZONE').collect{it.name.equals('Country A')}[0]){ + totalTargetInvCosts += flow.money; + } + } + } + + if (key==1) { + for (flow in groups[key]) { + if (flow.time != tick) continue; + if (flow.out('TO_AGENT').collect{it.__type__.contains('EnergyProducer')}[0] && flow.out('TO_AGENT').out('INVESTOR_MARKET').out('ZONE').collect{it.name.equals('Country A')}[0]) { + totalSpotRevenue += flow.money; + } else if(flow.out('TO_AGENT').collect{it.__type__.contains('TargetInvestor') }[0] && flow.out('TO_AGENT').out('INVESTOR_MARKET').out('ZONE').collect{it.name.equals('Country A')}[0]){ + totalTargetInvSpotRevenue += flow.money; + } + } + + } + + if (key==2) { + for (flow in groups[key]) { + if (flow.time != tick) continue; + if (flow.out('TO_AGENT').collect{it.__type__.contains('EnergyProducer')}[0] && flow.out('TO_AGENT').out('INVESTOR_MARKET').out('ZONE').collect{it.name.equals('Country A')}[0]) { + totalLTCRevenue += flow.money; + } else if(flow.out('TO_AGENT').collect{it.__type__.contains('TargetInvestor') }[0] && flow.out('TO_AGENT').out('INVESTOR_MARKET').out('ZONE').collect{it.name.equals('Country A')}[0]){ + totalTargetInvLTCRevenue += flow.money; + } + } + + } + + if (key==11) { + for (flow in groups[key]) { + if (flow.time != tick) continue; + if (flow.out('TO_AGENT').collect{it.__type__.contains('EnergyProducer')}[0] && flow.out('TO_AGENT').out('INVESTOR_MARKET').out('ZONE').collect{it.name.equals('Country A')}[0]) { + totalCMRevenue += flow.money; + } else if(flow.out('TO_AGENT').collect{it.__type__.contains('TargetInvestor') }[0] && flow.out('TO_AGENT').out('INVESTOR_MARKET').out('ZONE').collect{it.name.equals('Country A')}[0]){ + totalTargetInvCMRevenue += flow.money; + } + } + + } + + + if (key==10) { + for (flow in groups[key]) { + if (flow.time != tick) continue; + if (flow.out('TO_AGENT').collect{it.__type__.contains('EnergyProducer')}[0] && flow.out('TO_AGENT').out('INVESTOR_MARKET').out('ZONE').collect{it.name.equals('Country A')}[0]) { + totalRESRevenue += flow.money; + } else if(flow.out('TO_AGENT').collect{it.__type__.contains('TargetInvestor') }[0] && flow.out('TO_AGENT').out('INVESTOR_MARKET').out('ZONE').collect{it.name.equals('Country A')}[0]){ + totalTargetInvRESRevenue += flow.money; + } + } + + } + +if (key==12) { + for (flow in groups[key]) { + if (flow.time != tick) continue; + hedgingFlows.add(flow) + if (flow.out('TO_AGENT').collect{it.__type__.contains('EnergyProducer')}[0] && flow.out('TO_AGENT').out('INVESTOR_MARKET').out('ZONE').collect{it.name.equals('Country A')}[0]) { + totalCO2HedgingRevenue += flow.money; + totalRevenue+= flow.money; + } else if(flow.out('TO_AGENT').collect{it.__type__.contains('TargetInvestor') }[0] && flow.out('TO_AGENT').out('INVESTOR_MARKET').out('ZONE').collect{it.name.equals('Country A')}[0]){ + totalTargetInvCO2HedgingRevenue += flow.money; + } + if (flow.out('FROM_AGENT').collect{it.__type__.contains('EnergyProducer') }[0] && flow.out('FROM_AGENT').out('INVESTOR_MARKET').out('ZONE').collect{it.name.equals('Country A')}[0]) { + totalCO2HedgingRevenue -= flow.money; + totalCosts+= flow.money; + } + } + } + +} +result.add(['Total Revenue', totalRevenue]); +result.add(['Revenue LTC', totalLTCRevenue]); +result.add(['Revenue Spot', totalSpotRevenue]); +result.add(['Revenue CM', totalCMRevenue]) +result.add(['Revenue RES',totalRESRevenue]) +result.add(['Revenue CO2Hedge', totalCO2HedgingRevenue]); +result.add(['Profit', totalRevenue - totalCosts]); +result.add(['TI Revenue', totalTargetInvRevenue]); +result.add(['TI Revenue LTC', totalTargetInvLTCRevenue]); +result.add(['TI Revenue Spot', totalTargetInvSpotRevenue]); +result.add(['TI Revenue CM', totalTargetInvCMRevenue]) +result.add(['TI Revenue RES',totalTargetInvRESRevenue]) +result.add(['TI Revenue CO2Hedge', totalTargetInvCO2HedgingRevenue]); +result.add(['TI Profit', totalTargetInvRevenue - totalTargetInvCosts]); +return result; +", + +"CountryBProdFinances", "DecarbonizationModel", "flows = n.getNodes('CashFlow'); +groups = flows.groupBy{it.type} +result = []; +totalCosts = 0; +totalRevenue = 0; +totalSpotRevenue = 0; +totalLTCRevenue = 0; +totalCMRevenue = 0; +totalRESRevenue=0; +totalCO2HedgingRevenue=0; +totalTargetInvCosts = 0; +totalTargetInvRevenue = 0; +totalTargetInvSpotRevenue = 0; +totalTargetInvLTCRevenue = 0; +totalTargetInvCMRevenue = 0; +totalTargetInvRESRevenue=0; +totalTargetInvCO2HedgingRevenue=0; +hedgingFlows=[] +for (key in groups.keySet()) { + if (key<3 || (key>9 && key!=12)) { + for (flow in groups[key]) { + if (flow.time != tick) continue; + if (flow.out('TO_AGENT').collect{it.__type__.contains('EnergyProducer')}[0] && flow.out('TO_AGENT').out('INVESTOR_MARKET').out('ZONE').collect{it.name.equals('Country B')}[0]) { + totalRevenue += flow.money; + } else if(flow.out('TO_AGENT').collect{it.__type__.contains('TargetInvestor') }[0] && flow.out('TO_AGENT').out('INVESTOR_MARKET').out('ZONE').collect{it.name.equals('Country B')}[0]){ + totalTargetInvRevenue += flow.money; + } + } + + } else if(key!=12) { + for (flow in groups[key]) { + if (flow.time != tick) continue; + if (flow.out('FROM_AGENT').collect{it.__type__.contains('EnergyProducer')}[0] && flow.out('FROM_AGENT').out('INVESTOR_MARKET').out('ZONE').collect{it.name.equals('Country B')}[0]) { + totalCosts += flow.money; + } else if(flow.out('FROM_AGENT').collect{it.__type__.contains('TargetInvestor') }[0] && flow.out('FROM_AGENT').out('INVESTOR_MARKET').out('ZONE').collect{it.name.equals('Country B')}[0]){ + totalTargetInvCosts += flow.money; + } + } + } + + if (key==1) { + for (flow in groups[key]) { + if (flow.time != tick) continue; + if (flow.out('TO_AGENT').collect{it.__type__.contains('EnergyProducer')}[0] && flow.out('TO_AGENT').out('INVESTOR_MARKET').out('ZONE').collect{it.name.equals('Country B')}[0]) { + totalSpotRevenue += flow.money; + } else if(flow.out('TO_AGENT').collect{it.__type__.contains('TargetInvestor') }[0] && flow.out('TO_AGENT').out('INVESTOR_MARKET').out('ZONE').collect{it.name.equals('Country B')}[0]){ + totalTargetInvSpotRevenue += flow.money; + } + } + + } + + if (key==2) { + for (flow in groups[key]) { + if (flow.time != tick) continue; + if (flow.out('TO_AGENT').collect{it.__type__.contains('EnergyProducer')}[0] && flow.out('TO_AGENT').out('INVESTOR_MARKET').out('ZONE').collect{it.name.equals('Country B')}[0]) { + totalLTCRevenue += flow.money; + } else if(flow.out('TO_AGENT').collect{it.__type__.contains('TargetInvestor') }[0] && flow.out('TO_AGENT').out('INVESTOR_MARKET').out('ZONE').collect{it.name.equals('Country B')}[0]){ + totalTargetInvLTCRevenue += flow.money; + } + } + + } + + if (key==11) { + for (flow in groups[key]) { + if (flow.time != tick) continue; + if (flow.out('TO_AGENT').collect{it.__type__.contains('EnergyProducer')}[0] && flow.out('TO_AGENT').out('INVESTOR_MARKET').out('ZONE').collect{it.name.equals('Country B')}[0]) { + totalCMRevenue += flow.money; + } else if(flow.out('TO_AGENT').collect{it.__type__.contains('TargetInvestor') }[0] && flow.out('TO_AGENT').out('INVESTOR_MARKET').out('ZONE').collect{it.name.equals('Country B')}[0]){ + totalTargetInvCMRevenue += flow.money; + } + } + + } + + + if (key==10) { + for (flow in groups[key]) { + if (flow.time != tick) continue; + if (flow.out('TO_AGENT').collect{it.__type__.contains('EnergyProducer')}[0] && flow.out('TO_AGENT').out('INVESTOR_MARKET').out('ZONE').collect{it.name.equals('Country B')}[0]) { + totalRESRevenue += flow.money; + } else if(flow.out('TO_AGENT').collect{it.__type__.contains('TargetInvestor') }[0] && flow.out('TO_AGENT').out('INVESTOR_MARKET').out('ZONE').collect{it.name.equals('Country B')}[0]){ + totalTargetInvRESRevenue += flow.money; + } + } + + } + +if (key==12) { + for (flow in groups[key]) { + if (flow.time != tick) continue; + hedgingFlows.add(flow) + if (flow.out('TO_AGENT').collect{it.__type__.contains('EnergyProducer')}[0] && flow.out('TO_AGENT').out('INVESTOR_MARKET').out('ZONE').collect{it.name.equals('Country B')}[0]) { + totalCO2HedgingRevenue += flow.money; + totalRevenue+= flow.money; + } else if(flow.out('TO_AGENT').collect{it.__type__.contains('TargetInvestor') }[0] && flow.out('TO_AGENT').out('INVESTOR_MARKET').out('ZONE').collect{it.name.equals('Country B')}[0]){ + totalTargetInvCO2HedgingRevenue += flow.money; + } + if (flow.out('FROM_AGENT').collect{it.__type__.contains('EnergyProducer') }[0] && flow.out('FROM_AGENT').out('INVESTOR_MARKET').out('ZONE').collect{it.name.equals('Country B')}[0]) { + totalCO2HedgingRevenue -= flow.money; + totalCosts+= flow.money; + } + } + } + +} +result.add(['Total Revenue', totalRevenue]); +result.add(['Revenue LTC', totalLTCRevenue]); +result.add(['Revenue Spot', totalSpotRevenue]); +result.add(['Revenue CM', totalCMRevenue]) +result.add(['Revenue RES',totalRESRevenue]) +result.add(['Revenue CO2Hedge', totalCO2HedgingRevenue]); +result.add(['Profit', totalRevenue - totalCosts]); +result.add(['TI Revenue', totalTargetInvRevenue]); +result.add(['TI Revenue LTC', totalTargetInvLTCRevenue]); +result.add(['TI Revenue Spot', totalTargetInvSpotRevenue]); +result.add(['TI Revenue CM', totalTargetInvCMRevenue]) +result.add(['TI Revenue RES',totalTargetInvRESRevenue]) +result.add(['TI Revenue CO2Hedge', totalTargetInvCO2HedgingRevenue]); +result.add(['TI Profit', totalTargetInvRevenue - totalTargetInvCosts]); +return result;", + +"PriceInEURperMWh", "DecarbonizationModel", "results = [] +points = g.idx('__types__')[[className:'emlab.gen.domain.market.electricity.SegmentClearingPoint']].propertyFilter('time', FilterPipe.Filter.EQUAL, tick).propertyFilter('forecast', FilterPipe.Filter.EQUAL, false) +for(scp in points){ + results.add(['Segment ' + scp.out('MARKET_POINT').out('ZONE').name.next() + ' ' + scp.out('SEGMENT_POINT').segmentID.next(), scp.price]) +} +return results", + +"ShortagesInHoursUnserved", "DecarbonizationModel", "powerplants = g.idx('__types__')[[className:'emlab.gen.domain.technology.PowerPlant']].filter{(it.dismantleTime > tick) && ((it.constructionStartTime + it.actualPermittime + it.actualLeadtime) <= tick)} +production= powerplants.in('POWERPLANT_DISPATCHPLAN').sum{f.determineProductionOfDispatchPlanInMWh(it, tick)}; +segmentloads = g.idx('__types__')[[className:'emlab.gen.domain.market.electricity.SegmentLoad']] +productionsum = 0; +for(segmentload in segmentloads){ + try{growthfactor = segmentload.in('SEGMENT_LOAD').out('DEMANDGROWTH_TREND').collect{f.getTrendValue(it, tick)}[0];} catch(Exception e){ + growthfactor=segmentload.in('SEGMENT_LOAD').out('DEMANDGROWTH_TREND').timeSeries.next()[tick.toInteger()]} + productionsum += segmentload.out('SEGMENTLOAD_SEGMENT').lengthInHours.next() * segmentload.baseLoad * growthfactor; +} +return (production-productionsum)/productionsum*8760;", + +"ProducerCosts", "DecarbonizationModel", "flows = n.getNodes('CashFlow'); +groups = flows.groupBy{it.type} +result = []; +allKeys = [] +for(i in 0..12) + allKeys.add(i) +usedKeys=[] +for (key in allKeys) { + usedKeys.add(key) + sum = 0; + if(key in groups.keySet()){ + for (flow in groups[key]) { + if (flow.time != tick) continue; + if (flow.out('FROM_AGENT').collect{it.__type__.contains('EnergyProducer')}[0]) { + sum += flow.money; + } + } + } + name='Unspecified'; + if(key==0){name='Unclassified';} + if(key==1){name='Electricity spot';} + if(key==2){name='Electricity ltc';} + if(key==3){name='Fixed O&M';} + if(key==4){name='Commodity';} + if(key==5){name='CO2 tax';} + if(key==6){name='CO2 auction';} + if(key==7){name='Loan';} + if(key==8){name='Downpayment';} + if(key==9){name='National CO2 MinPrice';} + if(key==10){name='Strategic Reserve';} + if(key==11){name='Capacity Market';} + if(key==12){name='CO2 Hedging';} + result.add([name, sum]); +} +return result;", + +"CountryAProdCosts", "DecarbonizationModel", "flows = n.getNodes('CashFlow'); +groups = flows.groupBy{it.type} +result = []; +allKeys = [] +for(i in 0..12) + allKeys.add(i) +usedKeys=[] +for (key in allKeys) { + usedKeys.add(key) + sum = 0; + if(key in groups.keySet()){ + for (flow in groups[key]) { + if (flow.time != tick) continue; + if (flow.out('FROM_AGENT').collect{it.__type__.contains('EnergyProducer')}[0] && flow.out('FROM_AGENT').out('INVESTOR_MARKET').out('ZONE').collect{it.name.equals('Country A')}[0]) { + sum += flow.money; + } + } + } + name='Unspecified'; + if(key==0){name='Unclassified';} + if(key==1){name='Electricity spot';} + if(key==2){name='Electricity ltc';} + if(key==3){name='Fixed O&M';} + if(key==4){name='Commodity';} + if(key==5){name='CO2 tax';} + if(key==6){name='CO2 auction';} + if(key==7){name='Loan';} + if(key==8){name='Downpayment';} + if(key==9){name='National CO2 MinPrice';} + if(key==10){name='Strategic Reserve';} + if(key==11){name='Capacity Market';} + if(key==12){name='CO2 Hedging';} + result.add([name, sum]); +} +return result;", + +"CountryBProdCosts", "DecarbonizationModel", "flows = n.getNodes('CashFlow'); +groups = flows.groupBy{it.type} +result = []; +allKeys = [] +for(i in 0..12) + allKeys.add(i) +usedKeys=[] +for (key in allKeys) { + usedKeys.add(key) + sum = 0; + if(key in groups.keySet()){ + for (flow in groups[key]) { + if (flow.time != tick) continue; + if (flow.out('FROM_AGENT').collect{it.__type__.contains('EnergyProducer')}[0] && flow.out('FROM_AGENT').out('INVESTOR_MARKET').out('ZONE').collect{it.name.equals('Country B')}[0]) { + sum += flow.money; + } + } + } + name='Unspecified'; + if(key==0){name='Unclassified';} + if(key==1){name='Electricity spot';} + if(key==2){name='Electricity ltc';} + if(key==3){name='Fixed O&M';} + if(key==4){name='Commodity';} + if(key==5){name='CO2 tax';} + if(key==6){name='CO2 auction';} + if(key==7){name='Loan';} + if(key==8){name='Downpayment';} + if(key==9){name='National CO2 MinPrice';} + if(key==10){name='Strategic Reserve';} + if(key==11){name='Capacity Market';} + if(key==12){name='CO2 Hedging';} + result.add([name, sum]); +} +return result;", + +"TABLE_SegmentClearingPoints", "DecarbonizationModel", "points = g.idx('__types__')[[className:'emlab.gen.domain.market.electricity.SegmentClearingPoint']].propertyFilter('time', FilterPipe.Filter.EQUAL, tick).propertyFilter('forecast', FilterPipe.Filter.EQUAL, false) +finalResult = [] +headers=['tick','volume','price','market','segmentID','segmentLength','interconectorFlow','demand','energynotserved'] +finalResult.add(headers) +for(v in points){ +market=v.out('MARKET_POINT') +segment=v.out('SEGMENT_POINT').next() +segmentId=segment.segmentID +segmentLoad=market.out('SEGMENT_LOAD').as('x').out('SEGMENTLOAD_SEGMENT').filter{it.segmentID==segmentId}.back('x').next(); +//return segmentLoad.in('SEGMENT_LOAD').out('DEMANDGROWTH_TREND').timeSeries.next()[tick.toInteger()] +//return segmentLoad.in('SEGMENT_LOAD').out('DEMANDGROWTH_TREND').next().timeSeries[tick.toInteger()] +growthfactor=1 +try{growthfactor = segmentLoad.in('SEGMENT_LOAD').out('DEMANDGROWTH_TREND').collect{f.getTrendValue(it, tick)}[0];} catch(Exception e){ + growthfactor=segmentLoad.in('SEGMENT_LOAD').out('DEMANDGROWTH_TREND').next().timeSeries[tick.toInteger()]} +//} +//return segmentLoad +demandLevel=segmentLoad.out('SEGMENTLOAD_SEGMENT').lengthInHours.next() * segmentLoad.baseLoad * growthfactor; + finalResult.add([v.time, v.volume, v.price, v.out('MARKET_POINT').collect{it.name}[0], v.out('SEGMENT_POINT').collect{it.segmentID}[0], v.out('SEGMENT_POINT').collect{it.lengthInHours}[0],v.interconnectorFlow,demandLevel,demandLevel-v.volume]) +} +return finalResult; +", + +"TABLE_ClearingPoints", "DecarbonizationModel", "points = g.idx('__types__')[[className:'emlab.gen.domain.market.ClearingPoint']].propertyFilter('time', FilterPipe.Filter.EQUAL, tick).propertyFilter('forecast', FilterPipe.Filter.EQUAL, false) +finalResult = [] +headers=['tick','volume','price',',market'] +finalResult.add(headers) +for(v in points){ +finalResult.add([v.time, v.volume, v.price, v.out('MARKET_POINT').collect{it.name}[0]]) +} +return finalResult", + +"TABLE_InitialPowerPlants", "DecarbonizationModel", "if(tick<1){ +powerPlants=g.idx('__types__')[[className:'emlab.gen.domain.technology.PowerPlant']]; +finalResult = []; +columnNames=['Name', 'Technology', 'Location', 'Age', 'Owner', 'Capacity', 'Efficiency'] +finalResult.add(columnNames) +for(p in powerPlants){ +name = p.name +technology = p.out('TECHNOLOGY').collect{it.name}[0] +location = p.out('LOCATION').collect{it.name}[0] +age = -p.constructionStartTime-p.actualLeadtime-p.actualPermittime +owner = p.out('POWERPLANT_OWNER').collect{it.name}[0] +capacity = p.actualNominalCapacity +efficiency = p.actualEfficiency +finalResult.add([name,technology,location,age,owner,capacity,efficiency]) +} +return finalResult +}", diff --git a/emlab-generation/src/main/java/emlab/gen/domain/agent/DecarbonizationModel.java b/emlab-generation/src/main/java/emlab/gen/domain/agent/DecarbonizationModel.java index 8a6ec4be..856e83aa 100644 --- a/emlab-generation/src/main/java/emlab/gen/domain/agent/DecarbonizationModel.java +++ b/emlab-generation/src/main/java/emlab/gen/domain/agent/DecarbonizationModel.java @@ -54,9 +54,6 @@ public class DecarbonizationModel extends AbstractAgent implements Agent { private double stabilityReserveBankingThirdYear; - private boolean noPrivateIntermittentRESInvestment; - - @SimulationParameter(label = "Simulation Length", from = 0, to = 75) private double simulationLength; @@ -75,9 +72,33 @@ public class DecarbonizationModel extends AbstractAgent implements Agent { @SimulationParameter(label = "Exit simulation after simulation length") private boolean exitSimulationAfterSimulationLength; + @SimulationParameter(label = "Simple Capacity Market") + private boolean simpleCapacityMarketEnabled; + + @SimulationParameter(label = "Feed in Premium") + private boolean feedInPremiumImplemented; + @SimulationParameter(label = "Deletion age") private long deletionAge; + private boolean noPrivateIntermittentRESInvestment; + + public boolean isFeedInPremiumImplemented() { + return feedInPremiumImplemented; + } + + public void setFeedInPremiumImplemented(boolean feedInPremiumImplemented) { + this.feedInPremiumImplemented = feedInPremiumImplemented; + } + + public boolean isSimpleCapacityMarketEnabled() { + return simpleCapacityMarketEnabled; + } + + public void setSimpleCapacityMarketEnabled(boolean simpleCapacityMarketEnabled) { + this.simpleCapacityMarketEnabled = simpleCapacityMarketEnabled; + } + public boolean isRealRenewableDataImplemented() { return realRenewableDataImplemented; } diff --git a/emlab-generation/src/main/java/emlab/gen/domain/agent/EnergyProducer.java b/emlab-generation/src/main/java/emlab/gen/domain/agent/EnergyProducer.java index b9a95bbe..d7118e4f 100644 --- a/emlab-generation/src/main/java/emlab/gen/domain/agent/EnergyProducer.java +++ b/emlab-generation/src/main/java/emlab/gen/domain/agent/EnergyProducer.java @@ -1,12 +1,12 @@ /******************************************************************************* * Copyright 2012 the original author or authors. - * + * * Licensed 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. @@ -42,7 +42,7 @@ public class EnergyProducer extends DecarbonizationAgent implements Agent { @SimulationParameter(label = "Long-term contract horizon", from = 0, to = 10) private double longTermContractPastTimeHorizon; - //Investment + // Investment @SimulationParameter(label = "Investment horizon", from = 0, to = 15) private int investmentFutureTimeHorizon; @SimulationParameter(label = "Equity Interest Rate", from = 0, to = 1) @@ -52,11 +52,22 @@ public class EnergyProducer extends DecarbonizationAgent implements Agent { private double debtRatioOfInvestments; private boolean willingToInvest; + @SimulationParameter(label = "Simple Capacity Market") + private boolean simpleCapacityMarketEnabled; + + public boolean isSimpleCapacityMarketEnabled() { + return simpleCapacityMarketEnabled; + } + + public void setSimpleCapacityMarketEnabled(boolean isSimpleCapacityMarketEnabled) { + this.simpleCapacityMarketEnabled = isSimpleCapacityMarketEnabled; + } + // Loan @SimulationParameter(label = "Loan Interest Rate", from = 0, to = 1) private double loanInterestRate; - //Forecasting + // Forecasting private int numberOfYearsBacklookingForForecasting; // Dismantling @@ -64,6 +75,12 @@ public class EnergyProducer extends DecarbonizationAgent implements Agent { private double dismantlingRequiredOperatingProfit; private long pastTimeHorizon; + // Historical CVar Parameters + private double historicalCVarAlpha; + private double historicalCVarBeta; + private double historicalCVarPropensityForNewTechnologies; + private double historicalCVarInterestRateIncreaseForNewTechnologies; + public boolean isWillingToInvest() { return willingToInvest; } @@ -183,4 +200,37 @@ public ElectricitySpotMarket getInvestorMarket() { public void setInvestorMarket(ElectricitySpotMarket investorMarket) { this.investorMarket = investorMarket; } + + public double getHistoricalCVarAlpha() { + return historicalCVarAlpha; + } + + public void setHistoricalCVarAlpha(double historicalCVarAlpha) { + this.historicalCVarAlpha = historicalCVarAlpha; + } + + public double getHistoricalCVarBeta() { + return historicalCVarBeta; + } + + public void setHistoricalCVarBeta(double historicalCVarBeta) { + this.historicalCVarBeta = historicalCVarBeta; + } + + public double getHistoricalCVarPropensityForNewTechnologies() { + return historicalCVarPropensityForNewTechnologies; + } + + public void setHistoricalCVarPropensityForNewTechnologies(double historicalCVarPropensityForNewTechnologies) { + this.historicalCVarPropensityForNewTechnologies = historicalCVarPropensityForNewTechnologies; + } + + public double getHistoricalCVarInterestRateIncreaseForNewTechnologies() { + return historicalCVarInterestRateIncreaseForNewTechnologies; + } + + public void setHistoricalCVarInterestRateIncreaseForNewTechnologies( + double historicalCVarInterestRateIncreaseForNewTechnologies) { + this.historicalCVarInterestRateIncreaseForNewTechnologies = historicalCVarInterestRateIncreaseForNewTechnologies; + } } diff --git a/emlab-generation/src/main/java/emlab/gen/domain/agent/Government.java b/emlab-generation/src/main/java/emlab/gen/domain/agent/Government.java index f9d3de7b..1fab770e 100644 --- a/emlab-generation/src/main/java/emlab/gen/domain/agent/Government.java +++ b/emlab-generation/src/main/java/emlab/gen/domain/agent/Government.java @@ -61,10 +61,14 @@ public class Government extends DecarbonizationAgent implements Agent { private boolean adaptiveCapAdjustmentBasedOnCapNotActualEmissions; + private boolean adaptiveCapAdjustmentRelativeToNonSubsidisedProduction; + private double co2Penalty; private double stabilityReserve; + private boolean stabilityReserveHasOneYearDelayInsteadOfTwoYearDelay; + @RelatedTo(type = "STABILITY_RESERVE_UPPER_TRIGGER", elementClass = TimeSeriesImpl.class, direction = Direction.OUTGOING) private TimeSeriesImpl stabilityReserveUpperTriggerTrend; @@ -223,4 +227,23 @@ public void setAdaptiveCapAdjustmentBasedOnCapNotActualEmissions( this.adaptiveCapAdjustmentBasedOnCapNotActualEmissions = adaptiveCapAdjustmentBasedOnCapNotActualEmissions; } + + public boolean isAdaptiveCapAdjustmentRelativeToNonSubsidisedProduction() { + return adaptiveCapAdjustmentRelativeToNonSubsidisedProduction; + } + + public void setAdaptiveCapAdjustmentRelativeToNonSubsidisedProduction( + boolean adaptiveCapAdjustmentRelativeToNonSubsidisedProduction) { + this.adaptiveCapAdjustmentRelativeToNonSubsidisedProduction = adaptiveCapAdjustmentRelativeToNonSubsidisedProduction; + } + + public boolean isStabilityReserveHasOneYearDelayInsteadOfTwoYearDelay() { + return stabilityReserveHasOneYearDelayInsteadOfTwoYearDelay; + } + + public void setStabilityReserveHasOneYearDelayInsteadOfTwoYearDelay( + boolean stabilityReserveHasOneYearDelayInsteadOfTwoYearDelay) { + this.stabilityReserveHasOneYearDelayInsteadOfTwoYearDelay = stabilityReserveHasOneYearDelayInsteadOfTwoYearDelay; + } + } diff --git a/emlab-generation/src/main/java/emlab/gen/domain/agent/Regulator.java b/emlab-generation/src/main/java/emlab/gen/domain/agent/Regulator.java new file mode 100644 index 00000000..545d318e --- /dev/null +++ b/emlab-generation/src/main/java/emlab/gen/domain/agent/Regulator.java @@ -0,0 +1,148 @@ +/******************************************************************************* + * Copyright 2015 the original author or authors. + * + * Licensed 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. + ******************************************************************************/ +package emlab.gen.domain.agent; + +import org.neo4j.graphdb.Direction; +import org.springframework.data.neo4j.annotation.NodeEntity; +import org.springframework.data.neo4j.annotation.RelatedTo; + +import agentspring.agent.Agent; +import agentspring.simulation.SimulationParameter; +import emlab.gen.domain.gis.Zone; + +/** + * @author Kaveri + * + */ +@NodeEntity +public class Regulator extends DecarbonizationAgent implements Agent { + + @RelatedTo(type = "OF_ZONE", elementClass = Zone.class, direction = Direction.OUTGOING) + private Zone zone; + + // Investment related parameters + private int numberOfYearsLookingBackToForecastDemand; + @SimulationParameter(label = "Equity Interest Rate", from = 0, to = 1) + private double equityInterestRate; + @SimulationParameter(label = "Debt ratio in investments", from = 0, to = 1) + private double debtRatioOfInvestments; + // Loan + @SimulationParameter(label = "Loan Interest Rate", from = 0, to = 1) + private double loanInterestRate; + + // Capacity Market Related Parameters + @SimulationParameter(label = "Capacity Market Price Cap", from = 1000, to = 150000) + private double capacityMarketPriceCap; + @SimulationParameter(label = "Reserve Margin", from = 0, to = 1) + private double reserveMargin; + @SimulationParameter(label = "Reserve Demand Lower Margin", from = 0, to = 1) + private double reserveDemandLowerMargin; + @SimulationParameter(label = "Reserve Demand Upper Margin", from = 0, to = 1) + private double reserveDemandUpperMargin; + private double demandTarget; + @SimulationParameter(label = "Capacity Market Target Period", from = 0, to = 10) + private int targetPeriod; // number of years in the future that the capacity + + // is being planned for - set to zero + public double getDemandTarget() { + return demandTarget; + } + + public void setDemandTarget(double demandTarget) { + this.demandTarget = demandTarget; + } + + public double getCapacityMarketPriceCap() { + return capacityMarketPriceCap; + } + + public void setCapacityMarketPriceCap(double capacityMarketPriceCap) { + this.capacityMarketPriceCap = capacityMarketPriceCap; + } + + public int getNumberOfYearsLookingBackToForecastDemand() { + return numberOfYearsLookingBackToForecastDemand; + } + + public void setNumberOfYearsLookingBackToForecastDemand(int numberOfYearsLookingBackToForecastDemand) { + this.numberOfYearsLookingBackToForecastDemand = numberOfYearsLookingBackToForecastDemand; + } + + public int getTargetPeriod() { + return targetPeriod; + } + + public void setTargetPeriod(int targetPeriod) { + this.targetPeriod = targetPeriod; + } + + public double getReserveDemandLowerMargin() { + return reserveDemandLowerMargin; + } + + public void setReserveDemandLowerMargin(double reserveDemandLowerMargin) { + this.reserveDemandLowerMargin = reserveDemandLowerMargin; + } + + public double getReserveDemandUpperMargin() { + return reserveDemandUpperMargin; + } + + public void setReserveDemandUpperMargin(double reserveDemandUpperMargin) { + this.reserveDemandUpperMargin = reserveDemandUpperMargin; + } + + public double getReserveMargin() { + return reserveMargin; + } + + public void setReserveMargin(double reserveMargin) { + this.reserveMargin = reserveMargin; + } + + public Zone getZone() { + return zone; + } + + public void setZone(Zone zone) { + this.zone = zone; + } + + public double getEquityInterestRate() { + return equityInterestRate; + } + + public void setEquityInterestRate(double equityInterestRate) { + this.equityInterestRate = equityInterestRate; + } + + public double getDebtRatioOfInvestments() { + return debtRatioOfInvestments; + } + + public void setDebtRatioOfInvestments(double debtRatioOfInvestments) { + this.debtRatioOfInvestments = debtRatioOfInvestments; + } + + public double getLoanInterestRate() { + return loanInterestRate; + } + + public void setLoanInterestRate(double loanInterestRate) { + this.loanInterestRate = loanInterestRate; + } + +} diff --git a/emlab-generation/src/main/java/emlab/gen/domain/contract/CashFlow.java b/emlab-generation/src/main/java/emlab/gen/domain/contract/CashFlow.java index 34ba51f5..f6d0f559 100644 --- a/emlab-generation/src/main/java/emlab/gen/domain/contract/CashFlow.java +++ b/emlab-generation/src/main/java/emlab/gen/domain/contract/CashFlow.java @@ -36,7 +36,9 @@ public class CashFlow { public static final int DOWNPAYMENT = 8; public static final int NATIONALMINCO2 = 9; public static final int STRRESPAYMENT = 10; + public static final int SIMPLE_CAPACITY_MARKET = 11; public static final int CO2HEDGING = 12; + public static final int FEED_IN_PREMIUM = 13; @RelatedTo(type = "FROM_AGENT", elementClass = DecarbonizationAgent.class, direction = Direction.OUTGOING) private DecarbonizationAgent from; diff --git a/emlab-generation/src/main/java/emlab/gen/domain/contract/Loan.java b/emlab-generation/src/main/java/emlab/gen/domain/contract/Loan.java index 3327b949..dcb56b44 100644 --- a/emlab-generation/src/main/java/emlab/gen/domain/contract/Loan.java +++ b/emlab-generation/src/main/java/emlab/gen/domain/contract/Loan.java @@ -1,12 +1,12 @@ /******************************************************************************* * Copyright 2012 the original author or authors. - * + * * Licensed 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. @@ -16,9 +16,9 @@ package emlab.gen.domain.contract; +import org.neo4j.graphdb.Direction; import org.springframework.data.neo4j.annotation.NodeEntity; import org.springframework.data.neo4j.annotation.RelatedTo; -import org.neo4j.graphdb.Direction; import emlab.gen.domain.agent.DecarbonizationAgent; import emlab.gen.domain.technology.PowerPlant; @@ -32,7 +32,7 @@ public class Loan { @RelatedTo(type = "LEND_BY_AGENT", elementClass = DecarbonizationAgent.class, direction = Direction.OUTGOING) private DecarbonizationAgent to; - @RelatedTo(type = "REGARDING_POWERPLANT", elementClass = PowerPlant.class, direction = Direction.OUTGOING) + @RelatedTo(type = "LOAN_POWERPLANT", elementClass = PowerPlant.class, direction = Direction.OUTGOING) private PowerPlant regardingPowerPlant; private double amountPerPayment; @@ -49,30 +49,30 @@ public void setLoanStartTime(long loanStartTime) { } public long getTotalNumberOfPayments() { - return totalNumberOfPayments; - } + return totalNumberOfPayments; + } - public double getAmountPerPayment() { - return amountPerPayment; - } + public double getAmountPerPayment() { + return amountPerPayment; + } - public void setAmountPerPayment(double amountPerPayment) { - this.amountPerPayment = amountPerPayment; - } + public void setAmountPerPayment(double amountPerPayment) { + this.amountPerPayment = amountPerPayment; + } - public void setTotalNumberOfPayments(long totalNumberOfPayments) { - this.totalNumberOfPayments = totalNumberOfPayments; - } + public void setTotalNumberOfPayments(long totalNumberOfPayments) { + this.totalNumberOfPayments = totalNumberOfPayments; + } - public long getNumberOfPaymentsDone() { - return numberOfPaymentsDone; - } + public long getNumberOfPaymentsDone() { + return numberOfPaymentsDone; + } - public void setNumberOfPaymentsDone(long numberOfPaymentsDone) { - this.numberOfPaymentsDone = numberOfPaymentsDone; - } + public void setNumberOfPaymentsDone(long numberOfPaymentsDone) { + this.numberOfPaymentsDone = numberOfPaymentsDone; + } - public DecarbonizationAgent getFrom() { + public DecarbonizationAgent getFrom() { return from; } diff --git a/emlab-generation/src/main/java/emlab/gen/domain/factory/PowerPlantEntryParser.java b/emlab-generation/src/main/java/emlab/gen/domain/factory/PowerPlantEntryParser.java index 7dcc170c..32948c21 100644 --- a/emlab-generation/src/main/java/emlab/gen/domain/factory/PowerPlantEntryParser.java +++ b/emlab-generation/src/main/java/emlab/gen/domain/factory/PowerPlantEntryParser.java @@ -174,6 +174,8 @@ private PowerPlant createPowerPlant(String name, PowerGeneratingTechnology techn } plant.calculateAndSetActualFixedOperatingCosts(plant.getConstructionStartTime()); plant.setDismantleTime(1000); + // BigBank bigbank = reps.genericRepository.findFirst(BigBank.class); + Loan loan = new Loan().persist(); loan.setFrom(energyProducer); loan.setTo(null); @@ -189,6 +191,7 @@ private PowerPlant createPowerPlant(String name, PowerGeneratingTechnology techn // already // made plant.setLoan(loan); + loan.setRegardingPowerPlant(plant); return plant; } diff --git a/emlab-generation/src/main/java/emlab/gen/domain/market/capacity/CapacityClearingPoint.java b/emlab-generation/src/main/java/emlab/gen/domain/market/capacity/CapacityClearingPoint.java new file mode 100644 index 00000000..1b5330d8 --- /dev/null +++ b/emlab-generation/src/main/java/emlab/gen/domain/market/capacity/CapacityClearingPoint.java @@ -0,0 +1,42 @@ +/******************************************************************************* + * Copyright 2013 the original author or authors. + * + * Licensed 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. + ******************************************************************************/ +package emlab.gen.domain.market.capacity; + +import org.neo4j.graphdb.Direction; +import org.springframework.data.neo4j.annotation.NodeEntity; +import org.springframework.data.neo4j.annotation.RelatedTo; + +import emlab.gen.domain.market.ClearingPoint; + +/** + * @author Kaveri + * + */ +@NodeEntity +public class CapacityClearingPoint extends ClearingPoint { + + @RelatedTo(type = "CAPACITY_MARKET", elementClass = CapacityMarket.class, direction = Direction.OUTGOING) + private CapacityMarket capacityMarket; + + public CapacityMarket getCapacityMarket() { + return capacityMarket; + } + + public void setCapacityMarket(CapacityMarket capacityMarket) { + this.capacityMarket = capacityMarket; + } + +} \ No newline at end of file diff --git a/emlab-generation/src/main/java/emlab/gen/domain/market/capacity/CapacityDispatchPlan.java b/emlab-generation/src/main/java/emlab/gen/domain/market/capacity/CapacityDispatchPlan.java new file mode 100644 index 00000000..22088e96 --- /dev/null +++ b/emlab-generation/src/main/java/emlab/gen/domain/market/capacity/CapacityDispatchPlan.java @@ -0,0 +1,70 @@ +/******************************************************************************* + * Copyright 2013 the original author or authors. + * + * Licensed 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. + ******************************************************************************/ +package emlab.gen.domain.market.capacity; + +import org.neo4j.graphdb.Direction; +import org.springframework.data.neo4j.annotation.NodeEntity; +import org.springframework.data.neo4j.annotation.RelatedTo; +import org.springframework.transaction.annotation.Transactional; + +import emlab.gen.domain.agent.EnergyProducer; +import emlab.gen.domain.market.Bid; +import emlab.gen.domain.technology.PowerPlant; + +/** + * @author Kaveri + * + */ + +@NodeEntity +public class CapacityDispatchPlan extends Bid { + + @RelatedTo(type = "CAPACITY_DISPATCHPLAN", elementClass = PowerPlant.class, direction = Direction.OUTGOING) + private PowerPlant plant; + + public PowerPlant getPlant() { + return plant; + } + + public void setPlant(PowerPlant plant) { + this.plant = plant; + } + + public void specifyNotPersist(PowerPlant plant, EnergyProducer producer, CapacityMarket market, long time, + double price, double capacityMarketCapacity, int status) { + this.setPlant(plant); + this.setTime(time); + this.setBidder(producer); + this.setBiddingMarket(market); + this.setPrice(price); + this.setAmount(capacityMarketCapacity); + this.setStatus(status); + } + + /** + * @param plant + */ + + // All transactional methods below are signified by starting with update + @Transactional + public void specifyAndPersist(PowerPlant plant, EnergyProducer producer, CapacityMarket market, long time, + double price, double capacityMarketCapacity, int status) { + this.persist(); + this.specifyNotPersist(plant, producer, market, time, price, capacityMarketCapacity, status); + + } + +} diff --git a/emlab-generation/src/main/java/emlab/gen/domain/market/capacity/CapacityMarket.java b/emlab-generation/src/main/java/emlab/gen/domain/market/capacity/CapacityMarket.java new file mode 100644 index 00000000..2ee11189 --- /dev/null +++ b/emlab-generation/src/main/java/emlab/gen/domain/market/capacity/CapacityMarket.java @@ -0,0 +1,56 @@ +/******************************************************************************* + * Copyright 2013 the original author or authors. + * + * Licensed 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. + ******************************************************************************/ +package emlab.gen.domain.market.capacity; + +import org.neo4j.graphdb.Direction; +import org.springframework.data.neo4j.annotation.NodeEntity; +import org.springframework.data.neo4j.annotation.RelatedTo; + +import emlab.gen.domain.agent.EnergyConsumer; +import emlab.gen.domain.agent.Regulator; +import emlab.gen.domain.market.DecarbonizationMarket; + +/** + * @author Kaveri Agent Capacity Market for implementation of a Simple Capacity + * Market + * + */ +@NodeEntity +public class CapacityMarket extends DecarbonizationMarket { + + @RelatedTo(type = "WITH_REGULATOR", elementClass = Regulator.class, direction = Direction.OUTGOING) + private Regulator regulator; + + @RelatedTo(type = "WITH_CONSUMER", elementClass = EnergyConsumer.class, direction = Direction.OUTGOING) + private EnergyConsumer consumer; + + public EnergyConsumer getConsumer() { + return consumer; + } + + public void setConsumer(EnergyConsumer consumer) { + this.consumer = consumer; + } + + public Regulator getRegulator() { + return regulator; + } + + public void setRegulator(Regulator regulator) { + this.regulator = regulator; + } + +} \ No newline at end of file diff --git a/emlab-generation/src/main/java/emlab/gen/domain/market/capacity/package-info.java b/emlab-generation/src/main/java/emlab/gen/domain/market/capacity/package-info.java new file mode 100644 index 00000000..76418697 --- /dev/null +++ b/emlab-generation/src/main/java/emlab/gen/domain/market/capacity/package-info.java @@ -0,0 +1,20 @@ +/******************************************************************************* + * Copyright 2013 the original author or authors. + * + * Licensed 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. + ******************************************************************************/ +/** + * @author Kaveri + *This package contains all the classes necessary for the implementation of a simple capacity market + * */ +package emlab.gen.domain.market.capacity; \ No newline at end of file diff --git a/emlab-generation/src/main/java/emlab/gen/domain/market/electricity/ElectricitySpotMarket.java b/emlab-generation/src/main/java/emlab/gen/domain/market/electricity/ElectricitySpotMarket.java index 22e5bbb8..50b0baef 100644 --- a/emlab-generation/src/main/java/emlab/gen/domain/market/electricity/ElectricitySpotMarket.java +++ b/emlab-generation/src/main/java/emlab/gen/domain/market/electricity/ElectricitySpotMarket.java @@ -21,6 +21,7 @@ import org.springframework.data.neo4j.annotation.NodeEntity; import org.springframework.data.neo4j.annotation.RelatedTo; +import agentspring.simulation.SimulationParameter; import emlab.gen.domain.market.DecarbonizationMarket; import emlab.gen.trend.TimeSeriesImpl; @@ -30,11 +31,33 @@ public class ElectricitySpotMarket extends DecarbonizationMarket { @RelatedTo(type = "SEGMENT_LOAD", elementClass = SegmentLoad.class, direction = Direction.OUTGOING) private Set loadDurationCurve; - @RelatedTo(type = "DEMANDGROWTH_TREND", elementClass = TimeSeriesImpl.class, direction = Direction.OUTGOING) - private TimeSeriesImpl demandGrowthTrend; + @RelatedTo(type = "DEMANDGROWTH_TREND", elementClass = TimeSeriesImpl.class, direction = Direction.OUTGOING) + private TimeSeriesImpl demandGrowthTrend; private double valueOfLostLoad; + @SimulationParameter(label = "Lookback for dismantling", from = 0, to = 10) + private long lookback; + + @SimulationParameter(label = "Look back for demand forecasting", from = 0, to = 10) + private long backlookingForDemandForecastinginDismantling; + + public long getLookback() { + return lookback; + } + + public void setLookback(long lookback) { + this.lookback = lookback; + } + + public long getBacklookingForDemandForecastinginDismantling() { + return backlookingForDemandForecastinginDismantling; + } + + public void setBacklookingForDemandForecastinginDismantling(long backlookingForDemandForecastinginDismantling) { + this.backlookingForDemandForecastinginDismantling = backlookingForDemandForecastinginDismantling; + } + public Set getLoadDurationCurve() { return loadDurationCurve; } @@ -51,11 +74,11 @@ public void setValueOfLostLoad(double valueOfLostLoad) { this.valueOfLostLoad = valueOfLostLoad; } - public TimeSeriesImpl getDemandGrowthTrend() { + public TimeSeriesImpl getDemandGrowthTrend() { return demandGrowthTrend; } - public void setDemandGrowthTrend(TimeSeriesImpl demandGrowthTrend) { + public void setDemandGrowthTrend(TimeSeriesImpl demandGrowthTrend) { this.demandGrowthTrend = demandGrowthTrend; } diff --git a/emlab-generation/src/main/java/emlab/gen/domain/market/electricity/FinancialPowerPlantReport.java b/emlab-generation/src/main/java/emlab/gen/domain/market/electricity/FinancialPowerPlantReport.java new file mode 100644 index 00000000..9436e710 --- /dev/null +++ b/emlab-generation/src/main/java/emlab/gen/domain/market/electricity/FinancialPowerPlantReport.java @@ -0,0 +1,193 @@ +/******************************************************************************* + * Copyright 2013 the original author or authors. + * + * Licensed 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. + ******************************************************************************/ +package emlab.gen.domain.market.electricity; + +import org.neo4j.graphdb.Direction; +import org.springframework.data.neo4j.annotation.NodeEntity; +import org.springframework.data.neo4j.annotation.RelatedTo; + +import emlab.gen.domain.technology.PowerPlant; + +/** + * This class reresents a financial report per power plant per year. It is + * mainly used to condense information (from CashFlows and + * PowerPlantDispatchPlans, which are regularly deleted for performance reasons) + * and make it accessible to agents within the information, but also to the + * analyst using EMLab-Generation. + * + * @author JCRichstein + * + */ +@NodeEntity +public class FinancialPowerPlantReport { + + @RelatedTo(type = "FINANCIALREPORT_POWERPLANT", elementClass = PowerPlant.class, direction = Direction.OUTGOING) + private PowerPlant powerPlant; + + long time; + + double spotMarketRevenue; + + double longTermMarketRevenue; + + double capacityMarketRevenue; + + double strategicReserveRevenue; + + double co2HedgingRevenue; + + double overallRevenue; + + double commodityCosts; + + double co2Costs; + + double variableCosts; + + double fixedCosts; + + double fullLoadHours; + + double production; + + int powerPlantStatus; + + public static final int UNDERCONSTRUCTION = 0; + public static final int OPERATIONAL = 1; + public static final int DISMANTLED = 2; + + public long getTime() { + return time; + } + + public void setTime(long time) { + this.time = time; + } + + public PowerPlant getPowerPlant() { + return powerPlant; + } + + public void setPowerPlant(PowerPlant powerPlant) { + this.powerPlant = powerPlant; + } + + public double getSpotMarketRevenue() { + return spotMarketRevenue; + } + + public void setSpotMarketRevenue(double spotMarketRevenue) { + this.spotMarketRevenue = spotMarketRevenue; + } + + public double getLongTermMarketRevenue() { + return longTermMarketRevenue; + } + + public void setLongTermMarketRevenue(double longTermMarketRevenue) { + this.longTermMarketRevenue = longTermMarketRevenue; + } + + public double getCapacityMarketRevenue() { + return capacityMarketRevenue; + } + + public void setCapacityMarketRevenue(double capacityMarketRevenue) { + this.capacityMarketRevenue = capacityMarketRevenue; + } + + public double getStrategicReserveRevenue() { + return strategicReserveRevenue; + } + + public void setStrategicReserveRevenue(double strategicReserveRevenue) { + this.strategicReserveRevenue = strategicReserveRevenue; + } + + public double getCo2HedgingRevenue() { + return co2HedgingRevenue; + } + + public void setCo2HedgingRevenue(double co2HedgingRevenue) { + this.co2HedgingRevenue = co2HedgingRevenue; + } + + public double getOverallRevenue() { + return this.overallRevenue; + } + + public void setOverallRevenue(double overallRevenue) { + this.overallRevenue = overallRevenue; + + } + + public double getVariableCosts() { + return variableCosts; + } + + public void setVariableCosts(double variableCosts) { + this.variableCosts = variableCosts; + } + + public double getFixedCosts() { + return fixedCosts; + } + + public void setFixedCosts(double fixedCosts) { + this.fixedCosts = fixedCosts; + } + + public double getFullLoadHours() { + return fullLoadHours; + } + + public void setFullLoadHours(double fullLoadHours) { + this.fullLoadHours = fullLoadHours; + } + + public double getProduction() { + return production; + } + + public void setProduction(double production) { + this.production = production; + } + + public double getCommodityCosts() { + return commodityCosts; + } + + public void setCommodityCosts(double commodityCosts) { + this.commodityCosts = commodityCosts; + } + + public double getCo2Costs() { + return co2Costs; + } + + public void setCo2Costs(double co2Costs) { + this.co2Costs = co2Costs; + } + + public int getPowerPlantStatus() { + return powerPlantStatus; + } + + public void setPowerPlantStatus(int powerPlantStatus) { + this.powerPlantStatus = powerPlantStatus; + } + +} diff --git a/emlab-generation/src/main/java/emlab/gen/domain/policy/renewablesupport/BaseCostFip.java b/emlab-generation/src/main/java/emlab/gen/domain/policy/renewablesupport/BaseCostFip.java new file mode 100644 index 00000000..5779fd23 --- /dev/null +++ b/emlab-generation/src/main/java/emlab/gen/domain/policy/renewablesupport/BaseCostFip.java @@ -0,0 +1,85 @@ +/******************************************************************************* + * Copyright 2013 the original author or authors. + * + * Licensed 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. + ******************************************************************************/ +package emlab.gen.domain.policy.renewablesupport; + +import org.neo4j.graphdb.Direction; +import org.springframework.data.neo4j.annotation.NodeEntity; +import org.springframework.data.neo4j.annotation.RelatedTo; + +import emlab.gen.domain.technology.PowerGeneratingTechnology; +import emlab.gen.domain.technology.PowerGridNode; + +/** + * @author Kaveri3012 + * + */ + +@NodeEntity +public class BaseCostFip { + + private double costPerMWh; + + @RelatedTo(type = "BASECOST_FOR_TECHNOLOGY", elementClass = PowerGeneratingTechnology.class, direction = Direction.OUTGOING) + private PowerGeneratingTechnology technology; + + @RelatedTo(type = "BASECOST_FOR_LOCATION", elementClass = PowerGridNode.class, direction = Direction.OUTGOING) + private PowerGridNode node; + + private long startTime; + + private long endTime; + + public double getCostPerMWh() { + return costPerMWh; + } + + public void setCostPerMWh(double costPerMWh) { + this.costPerMWh = costPerMWh; + } + + public PowerGeneratingTechnology getTechnology() { + return technology; + } + + public void setTechnology(PowerGeneratingTechnology technology) { + this.technology = technology; + } + + public PowerGridNode getNode() { + return node; + } + + public void setNode(PowerGridNode node) { + this.node = node; + } + + public long getStartTime() { + return startTime; + } + + public void setStartTime(long startTime) { + this.startTime = startTime; + } + + public long getEndTime() { + return endTime; + } + + public void setEndTime(long endTime) { + this.endTime = endTime; + } + +} diff --git a/emlab-generation/src/main/java/emlab/gen/domain/policy/renewablesupport/RelativeRenewableTarget.java b/emlab-generation/src/main/java/emlab/gen/domain/policy/renewablesupport/RelativeRenewableTarget.java new file mode 100644 index 00000000..d1510fbc --- /dev/null +++ b/emlab-generation/src/main/java/emlab/gen/domain/policy/renewablesupport/RelativeRenewableTarget.java @@ -0,0 +1,79 @@ +/******************************************************************************* + * Copyright 2013 the original author or authors. + * + * Licensed 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. + ******************************************************************************/ +package emlab.gen.domain.policy.renewablesupport; + +import org.neo4j.graphdb.Direction; +import org.springframework.data.neo4j.annotation.NodeEntity; +import org.springframework.data.neo4j.annotation.RelatedTo; + +import emlab.gen.domain.agent.Regulator; +import emlab.gen.domain.technology.PowerGeneratingTechnology; +import emlab.gen.domain.technology.PowerGridNode; +import emlab.gen.trend.TimeSeriesImpl; + +/** + * @author Kaveri3012 + * + */ + +@NodeEntity +public class RelativeRenewableTarget { + + @RelatedTo(type = "SET_BY_REGULATOR", elementClass = Regulator.class, direction = Direction.INCOMING) + private Regulator regulator; + + @RelatedTo(type = "FOR_NODE", elementClass = PowerGridNode.class, direction = Direction.OUTGOING) + private PowerGridNode powerGridNodeSet; + + @RelatedTo(type = "FOR_TECHNOLOGY", elementClass = PowerGeneratingTechnology.class, direction = Direction.OUTGOING) + private PowerGeneratingTechnology powerGeneratingTechnology; + + @RelatedTo(type = "TARGET_TREND", elementClass = TimeSeriesImpl.class, direction = Direction.OUTGOING) + TimeSeriesImpl trend; + + public TimeSeriesImpl getTrend() { + return trend; + } + + public void setTrend(TimeSeriesImpl trend) { + this.trend = trend; + } + + public Regulator getRegulator() { + return regulator; + } + + public void setRegulator(Regulator regulator) { + this.regulator = regulator; + } + + public PowerGridNode getPowerGridNodeSet() { + return powerGridNodeSet; + } + + public void setPowerGridNodeSet(PowerGridNode powerGridNodeSet) { + this.powerGridNodeSet = powerGridNodeSet; + } + + public PowerGeneratingTechnology getPowerGeneratingTechnology() { + return powerGeneratingTechnology; + } + + public void setPowerGeneratingTechnology(PowerGeneratingTechnology powerGeneratingTechnology) { + this.powerGeneratingTechnology = powerGeneratingTechnology; + } + +} diff --git a/emlab-generation/src/main/java/emlab/gen/domain/policy/renewablesupport/RenewableSupportFipScheme.java b/emlab-generation/src/main/java/emlab/gen/domain/policy/renewablesupport/RenewableSupportFipScheme.java new file mode 100644 index 00000000..a1d9c382 --- /dev/null +++ b/emlab-generation/src/main/java/emlab/gen/domain/policy/renewablesupport/RenewableSupportFipScheme.java @@ -0,0 +1,112 @@ +/******************************************************************************* + * Copyright 2013 the original author or authors. + * + * Licensed 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. + ******************************************************************************/ +package emlab.gen.domain.policy.renewablesupport; + +import java.util.Map; +import java.util.Set; + +import org.neo4j.graphdb.Direction; +import org.springframework.data.neo4j.annotation.NodeEntity; +import org.springframework.data.neo4j.annotation.RelatedTo; + +import agentspring.simulation.SimulationParameter; +import emlab.gen.domain.agent.Regulator; +import emlab.gen.domain.technology.PowerGeneratingTechnology; + +/** + * @author Kaveri3012 A generic renewable support scheme role, meant to be able + * to model both price based and quantity based schemes. + */ +@NodeEntity +public class RenewableSupportFipScheme { + + @RelatedTo(type = "WITH_REGULATOR", elementClass = Regulator.class, direction = Direction.OUTGOING) + private Regulator regulator; + + @RelatedTo(type = "TECHNOLOGIES_ELIGIBLE_ARE", elementClass = PowerGeneratingTechnology.class, direction = Direction.OUTGOING) + private Set powerGeneratingTechnologiesEligible; + + private boolean technologySpecificityEnabled; + + private boolean locationSpecificityEnabled; + + @SimulationParameter(label = "Support Scheme Duration", from = 0, to = 50) + private long supportSchemeDuration; + + private String name; + + // Feed-in-Premium Related Pàrameters + + private Map biasFactors; + + public Map getBiasFactors() { + return biasFactors; + } + + public void setBiasFactors(Map biasFactors) { + this.biasFactors = biasFactors; + } + + public String getName() { + return name; + } + + public void setName(String name) { + this.name = name; + } + + public Set getPowerGeneratingTechnologiesEligible() { + return powerGeneratingTechnologiesEligible; + } + + public void setPowerGeneratingTechnologiesEligible( + Set powerGeneratingTechnologiesEligible) { + this.powerGeneratingTechnologiesEligible = powerGeneratingTechnologiesEligible; + } + + public Regulator getRegulator() { + return regulator; + } + + public void setRegulator(Regulator regulator) { + this.regulator = regulator; + } + + public boolean isTechnologySpecificityEnabled() { + return technologySpecificityEnabled; + } + + public void setTechnologySpecificityEnabled(boolean technologySpecificityEnabled) { + this.technologySpecificityEnabled = technologySpecificityEnabled; + } + + public boolean isLocationSpecificityEnabled() { + return locationSpecificityEnabled; + } + + public void setLocationSpecificityEnabled(boolean locationSpecificityEnabled) { + this.locationSpecificityEnabled = locationSpecificityEnabled; + } + + public long getSupportSchemeDuration() { + return supportSchemeDuration; + } + + public void setSupportSchemeDuration(long supportSchemeDuration) { + this.supportSchemeDuration = supportSchemeDuration; + } + +} diff --git a/emlab-generation/src/main/java/emlab/gen/domain/policy/renewablesupport/SupportPriceContract.java b/emlab-generation/src/main/java/emlab/gen/domain/policy/renewablesupport/SupportPriceContract.java new file mode 100644 index 00000000..d1c10b7f --- /dev/null +++ b/emlab-generation/src/main/java/emlab/gen/domain/policy/renewablesupport/SupportPriceContract.java @@ -0,0 +1,55 @@ +/******************************************************************************* + * Copyright 2013 the original author or authors. + * + * Licensed 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. + ******************************************************************************/ +package emlab.gen.domain.policy.renewablesupport; + +import org.neo4j.graphdb.Direction; +import org.springframework.data.neo4j.annotation.NodeEntity; +import org.springframework.data.neo4j.annotation.RelatedTo; + +import emlab.gen.domain.contract.Contract; +import emlab.gen.domain.technology.PowerPlant; + +/** + * @author Kaveri3012 this class is meant to specify a support price for a given + * duration. The price may have been generated either from a quantity + * based scheme or a price based scheme. + */ +@NodeEntity +public class SupportPriceContract extends Contract { + + @RelatedTo(type = "CONTRACT_FOR_SUPPORTSCHEME", elementClass = RenewableSupportFipScheme.class, direction = Direction.OUTGOING) + private RenewableSupportFipScheme renewableSupportScheme; + + @RelatedTo(type = "CONTRACT_FOR_POWERPLANT", elementClass = PowerPlant.class, direction = Direction.OUTGOING) + private PowerPlant plant; + + public RenewableSupportFipScheme getRenewableSupportScheme() { + return renewableSupportScheme; + } + + public void setRenewableSupportScheme(RenewableSupportFipScheme renewableSupportScheme) { + this.renewableSupportScheme = renewableSupportScheme; + } + + public PowerPlant getPlant() { + return plant; + } + + public void setPlant(PowerPlant plant) { + this.plant = plant; + } + +} diff --git a/emlab-generation/src/main/java/emlab/gen/domain/policy/renewablesupport/package-info.java b/emlab-generation/src/main/java/emlab/gen/domain/policy/renewablesupport/package-info.java new file mode 100644 index 00000000..d9709567 --- /dev/null +++ b/emlab-generation/src/main/java/emlab/gen/domain/policy/renewablesupport/package-info.java @@ -0,0 +1,21 @@ +/******************************************************************************* + * Copyright 2013 the original author or authors. + * + * Licensed 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. + ******************************************************************************/ +/** + * @author Kaveri3012 + * This package will contain all classes required to define renewable support schemes in EMLAb. They would include price based schemes, quantity based schemes, + * tenders, among others. + */ +package emlab.gen.domain.policy.renewablesupport; \ No newline at end of file diff --git a/emlab-generation/src/main/java/emlab/gen/domain/technology/PowerGeneratingTechnology.java b/emlab-generation/src/main/java/emlab/gen/domain/technology/PowerGeneratingTechnology.java index 9e2f2516..318a6945 100644 --- a/emlab-generation/src/main/java/emlab/gen/domain/technology/PowerGeneratingTechnology.java +++ b/emlab-generation/src/main/java/emlab/gen/domain/technology/PowerGeneratingTechnology.java @@ -33,19 +33,18 @@ public class PowerGeneratingTechnology { @SimulationParameter(label = "Capacity (MW)", from = 0, to = 2000) private double capacity; - @RelatedTo(type = "PGT_INVESTMENTCOSTS", elementClass = TimeSeriesImpl.class, direction = Direction.OUTGOING) - private TimeSeriesImpl investmentCostTimeSeries; + @RelatedTo(type = "PGT_INVESTMENTCOSTS", elementClass = TimeSeriesImpl.class, direction = Direction.OUTGOING) + private TimeSeriesImpl investmentCostTimeSeries; - @RelatedTo(type = "PGT_OMCOSTS", elementClass = TimeSeriesImpl.class, direction = Direction.OUTGOING) - private TimeSeriesImpl fixedOperatingCostTimeSeries; + @RelatedTo(type = "PGT_OMCOSTS", elementClass = TimeSeriesImpl.class, direction = Direction.OUTGOING) + private TimeSeriesImpl fixedOperatingCostTimeSeries; - @RelatedTo(type = "PGT_EFFICIENCYTS", elementClass = TimeSeriesImpl.class, direction = Direction.OUTGOING) - private TimeSeriesImpl efficiencyTimeSeries; + @RelatedTo(type = "PGT_EFFICIENCYTS", elementClass = TimeSeriesImpl.class, direction = Direction.OUTGOING) + private TimeSeriesImpl efficiencyTimeSeries; @SimulationParameter(label = "CO2 capture efficiency", from = 0, to = 1) private double co2CaptureEffciency; - @SimulationParameter(label = "Depreciation time (years)", from = 0, to = 40) private int depreciationTime; @@ -54,6 +53,8 @@ public class PowerGeneratingTechnology { private double fixedOperatingCostModifierAfterLifetime; + private double variableOperatingCostinEURPerMWh; + @SimulationParameter(label = "Expected lifetime", from = 0, to = 40) private int expectedLifetime; @@ -77,6 +78,16 @@ public class PowerGeneratingTechnology { private boolean intermittent; + private double maximumLifeExtension; + + public double getMaximumLifeExtension() { + return maximumLifeExtension; + } + + public void setMaximumLifeExtension(double maximumLifeExtension) { + this.maximumLifeExtension = maximumLifeExtension; + } + public double getBaseSegmentDependentAvailability() { return baseSegmentDependentAvailability; } @@ -125,6 +136,14 @@ public void setMinimumRunningHours(double minimumRunningHours) { this.minimumRunningHours = minimumRunningHours; } + public double getVariableOperatingCostinEURPerMWh() { + return variableOperatingCostinEURPerMWh; + } + + public void setVariableOperatingCostinEURPerMWh(double variableOperatingCostinEURPerMWh) { + this.variableOperatingCostinEURPerMWh = variableOperatingCostinEURPerMWh; + } + @RelatedTo(type = "FUEL", elementClass = Substance.class, direction = Direction.OUTGOING) private Set fuels; @@ -161,35 +180,35 @@ public void setCapacity(double capacity) { this.capacity = capacity; } - public double getEfficiency(long time) { - return efficiencyTimeSeries.getValue(time); + public double getEfficiency(long time) { + return efficiencyTimeSeries.getValue(time); } - public TimeSeriesImpl getInvestmentCostTimeSeries() { - return investmentCostTimeSeries; - } + public TimeSeriesImpl getInvestmentCostTimeSeries() { + return investmentCostTimeSeries; + } - public void setInvestmentCostTimeSeries(TimeSeriesImpl investmentCostTrend) { - this.investmentCostTimeSeries = investmentCostTrend; - } + public void setInvestmentCostTimeSeries(TimeSeriesImpl investmentCostTrend) { + this.investmentCostTimeSeries = investmentCostTrend; + } - public TimeSeriesImpl getFixedOperatingCostTimeSeries() { - return fixedOperatingCostTimeSeries; - } + public TimeSeriesImpl getFixedOperatingCostTimeSeries() { + return fixedOperatingCostTimeSeries; + } - public void setFixedOperatingCostTimeSeries(TimeSeriesImpl fixedOperatingCostTrend) { - this.fixedOperatingCostTimeSeries = fixedOperatingCostTrend; - } + public void setFixedOperatingCostTimeSeries(TimeSeriesImpl fixedOperatingCostTrend) { + this.fixedOperatingCostTimeSeries = fixedOperatingCostTrend; + } - public TimeSeriesImpl getEfficiencyTimeSeries() { - return efficiencyTimeSeries; - } + public TimeSeriesImpl getEfficiencyTimeSeries() { + return efficiencyTimeSeries; + } - public void setEfficiencyTimeSeries(TimeSeriesImpl efficiencyTrend) { - this.efficiencyTimeSeries = efficiencyTrend; - } + public void setEfficiencyTimeSeries(TimeSeriesImpl efficiencyTrend) { + this.efficiencyTimeSeries = efficiencyTrend; + } - public double getCo2CaptureEffciency() { + public double getCo2CaptureEffciency() { return co2CaptureEffciency; } @@ -257,15 +276,15 @@ public void setApplicableForLongTermContract(boolean applicableForLongTermContra this.applicableForLongTermContract = applicableForLongTermContract; } - public double getInvestmentCost(long time) { - return investmentCostTimeSeries.getValue(time); + public double getInvestmentCost(long time) { + return investmentCostTimeSeries.getValue(time); } - public double getFixedOperatingCost(long time) { - return fixedOperatingCostTimeSeries.getValue(time); - } + public double getFixedOperatingCost(long time) { + return fixedOperatingCostTimeSeries.getValue(time); + } - public boolean isIntermittent() { + public boolean isIntermittent() { return intermittent; } diff --git a/emlab-generation/src/main/java/emlab/gen/domain/technology/PowerPlant.java b/emlab-generation/src/main/java/emlab/gen/domain/technology/PowerPlant.java index 36f61ea0..7a3cff62 100644 --- a/emlab-generation/src/main/java/emlab/gen/domain/technology/PowerPlant.java +++ b/emlab-generation/src/main/java/emlab/gen/domain/technology/PowerPlant.java @@ -87,11 +87,31 @@ public class PowerPlant { private double actualEfficiency; private double expectedEndOfLife; private double actualNominalCapacity; + private boolean hasFeedInPremiumContract; + + public double ageFraction; + public double profitability; + + public double getProfitability() { + return profitability; + } + + public void setProfitability(double profitability) { + this.profitability = profitability; + } + + public double getAgeFraction() { + return ageFraction; + } + + public void setAgeFraction(double ageFraction) { + this.ageFraction = ageFraction; + } public boolean isOperational(long currentTick) { - double finishedConstruction = getConstructionStartTime() - + calculateActualPermittime() + calculateActualLeadtime(); + double finishedConstruction = getConstructionStartTime() + calculateActualPermittime() + + calculateActualLeadtime(); if (finishedConstruction <= currentTick) { // finished construction @@ -111,10 +131,18 @@ public boolean isOperational(long currentTick) { return false; } + public boolean isHasFeedInPremiumContract() { + return hasFeedInPremiumContract; + } + + public void setHasFeedInPremiumContract(boolean hasFeedInPremiumContract) { + this.hasFeedInPremiumContract = hasFeedInPremiumContract; + } + public boolean isExpectedToBeOperational(long time) { - double finishedConstruction = getConstructionStartTime() - + calculateActualPermittime() + calculateActualLeadtime(); + double finishedConstruction = getConstructionStartTime() + calculateActualPermittime() + + calculateActualLeadtime(); if (finishedConstruction <= time) { // finished construction @@ -130,8 +158,8 @@ public boolean isExpectedToBeOperational(long time) { public boolean isInPipeline(long currentTick) { - double finishedConstruction = getConstructionStartTime() - + calculateActualPermittime() + calculateActualLeadtime(); + double finishedConstruction = getConstructionStartTime() + calculateActualPermittime() + + calculateActualLeadtime(); if (finishedConstruction > currentTick) { // finished construction @@ -151,8 +179,7 @@ public boolean isInPipeline(long currentTick) { return false; } - public double getAvailableCapacity(long currentTick, Segment segment, - long numberOfSegments) { + public double getAvailableCapacity(long currentTick, Segment segment, long numberOfSegments) { if (isOperational(currentTick)) { if (this.getTechnology().isIntermittent()) { IntermittentTechnologyNodeLoadFactor intermittentTechnologyNodeLoadFactor = getIntermittentTechnologyNodeLoadFactor(); @@ -160,17 +187,15 @@ public double getAvailableCapacity(long currentTick, Segment segment, return getActualNominalCapacity() * factor; } else { double factor = 1; - if (segment != null) {// if no segment supplied, assume we want full + if (segment != null) {// if no segment supplied, assume we want + // full // capacity double segmentID = segment.getSegmentID(); if ((int) segmentID != 1) { - double min = getTechnology() - .getPeakSegmentDependentAvailability(); - double max = getTechnology() - .getBaseSegmentDependentAvailability(); - double segmentPortion = (numberOfSegments - segmentID) - / (numberOfSegments - 1); // start + double min = getTechnology().getPeakSegmentDependentAvailability(); + double max = getTechnology().getBaseSegmentDependentAvailability(); + double segmentPortion = (numberOfSegments - segmentID) / (numberOfSegments - 1); // start // counting // at // 1. @@ -180,8 +205,7 @@ public double getAvailableCapacity(long currentTick, Segment segment, factor = max - segmentPortion * range; int i = 0; } else { - factor = getTechnology() - .getPeakSegmentDependentAvailability(); + factor = getTechnology().getPeakSegmentDependentAvailability(); } } return getActualNominalCapacity() * factor; @@ -191,23 +215,20 @@ public double getAvailableCapacity(long currentTick, Segment segment, } } - public double getExpectedAvailableCapacity(long futureTick, - Segment segment, long numberOfSegments) { + public double getExpectedAvailableCapacity(long futureTick, Segment segment, long numberOfSegments) { if (isExpectedToBeOperational(futureTick)) { if (this.getTechnology().isIntermittent()) { double factor = getIntermittentTechnologyNodeLoadFactor().getLoadFactorForSegment(segment); return getActualNominalCapacity() * factor; } else { double factor = 1; - if (segment != null) {// if no segment supplied, assume we want full + if (segment != null) {// if no segment supplied, assume we want + // full // capacity double segmentID = segment.getSegmentID(); - double min = getTechnology() - .getPeakSegmentDependentAvailability(); - double max = getTechnology() - .getBaseSegmentDependentAvailability(); - double segmentPortion = (numberOfSegments - segmentID) - / (numberOfSegments - 1); // start + double min = getTechnology().getPeakSegmentDependentAvailability(); + double max = getTechnology().getBaseSegmentDependentAvailability(); + double segmentPortion = (numberOfSegments - segmentID) / (numberOfSegments - 1); // start // counting // at // 1. @@ -218,6 +239,7 @@ public double getExpectedAvailableCapacity(long futureTick, } return getActualNominalCapacity() * factor; } + } else { return 0; } @@ -267,9 +289,8 @@ public long calculateActualLifetime() { * @return whether the plant is still in its technical lifetime. */ public boolean isWithinTechnicalLifetime(long currentTick) { - long endOfTechnicalLifetime = getConstructionStartTime() - + calculateActualPermittime() + calculateActualLeadtime() - + calculateActualLifetime(); + long endOfTechnicalLifetime = getConstructionStartTime() + calculateActualPermittime() + + calculateActualLeadtime() + calculateActualLifetime(); if (endOfTechnicalLifetime <= currentTick) { return false; } @@ -409,22 +430,21 @@ public String toString() { * * @param timeOfPermitorBuildingStart */ - public void calculateAndSetActualInvestedCapital( - long timeOfPermitorBuildingStart) { - setActualInvestedCapital(this.getTechnology().getInvestmentCost( - timeOfPermitorBuildingStart + getActualLeadtime() + getActualPermittime()) + public void calculateAndSetActualInvestedCapital(long timeOfPermitorBuildingStart) { + setActualInvestedCapital(this.getTechnology() + .getInvestmentCost(timeOfPermitorBuildingStart + getActualLeadtime() + getActualPermittime()) * getActualNominalCapacity()); } public void calculateAndSetActualFixedOperatingCosts(long timeOfPermitorBuildingStart) { - setActualFixedOperatingCost(this.getTechnology().getFixedOperatingCost( - timeOfPermitorBuildingStart + getActualLeadtime() + getActualPermittime()) + setActualFixedOperatingCost(this.getTechnology() + .getFixedOperatingCost(timeOfPermitorBuildingStart + getActualLeadtime() + getActualPermittime()) * getActualNominalCapacity()); } public void calculateAndSetActualEfficiency(long timeOfPermitorBuildingStart) { - this.setActualEfficiency(this.getTechnology().getEfficiency( - timeOfPermitorBuildingStart + getActualLeadtime() + getActualPermittime())); + this.setActualEfficiency(this.getTechnology() + .getEfficiency(timeOfPermitorBuildingStart + getActualLeadtime() + getActualPermittime())); } public double calculateEmissionIntensity() { @@ -433,8 +453,7 @@ public double calculateEmissionIntensity() { for (SubstanceShareInFuelMix sub : this.getFuelMix()) { Substance substance = sub.getSubstance(); double fuelAmount = sub.getShare(); - double co2density = substance.getCo2Density() - * (1 - this.getTechnology().getCo2CaptureEffciency()); + double co2density = substance.getCo2Density() * (1 - this.getTechnology().getCo2CaptureEffciency()); // determine the total cost per MWh production of this plant double emissionForThisFuel = fuelAmount * co2density; @@ -450,15 +469,13 @@ public double calculateElectricityOutputAtTime(long time, boolean forecast) { for (PowerPlantDispatchPlan plan : powerPlantDispatchPlanRepository .findAllPowerPlantDispatchPlansForPowerPlantForTime(this, time, forecast)) { amount += plan.getSegment().getLengthInHours() - * (plan.getCapacityLongTermContract() + plan - .getAcceptedAmount()); + * (plan.getCapacityLongTermContract() + plan.getAcceptedAmount()); } return amount; } public double calculateCO2EmissionsAtTime(long time, boolean forecast) { - return this.calculateEmissionIntensity() - * calculateElectricityOutputAtTime(time, forecast); + return this.calculateEmissionIntensity() * calculateElectricityOutputAtTime(time, forecast); } @Transactional @@ -481,14 +498,14 @@ public void dismantlePowerPlant(long time) { * @author J.C.Richstein */ @Transactional - public void specifyAndPersist(long time, EnergyProducer energyProducer, - PowerGridNode location, PowerGeneratingTechnology technology) { + public void specifyAndPersist(long time, EnergyProducer energyProducer, PowerGridNode location, + PowerGeneratingTechnology technology) { specifyNotPersist(time, energyProducer, location, technology); this.persist(); } - public void specifyNotPersist(long time, EnergyProducer energyProducer, - PowerGridNode location, PowerGeneratingTechnology technology) { + public void specifyNotPersist(long time, EnergyProducer energyProducer, PowerGridNode location, + PowerGeneratingTechnology technology) { String label = energyProducer.getName() + " - " + technology.getName(); this.setName(label); this.setTechnology(technology); @@ -503,8 +520,8 @@ public void specifyNotPersist(long time, EnergyProducer energyProducer, this.setDismantleTime(1000); this.calculateAndSetActualInvestedCapital(time); this.calculateAndSetActualFixedOperatingCosts(time); - this.setExpectedEndOfLife(time + getActualPermittime() - + getActualLeadtime() + getTechnology().getExpectedLifetime()); + this.setExpectedEndOfLife( + time + getActualPermittime() + getActualLeadtime() + getTechnology().getExpectedLifetime()); } @Transactional @@ -562,10 +579,9 @@ public void setActualFixedOperatingCost(double actualFixedOperatingCost) { this.actualFixedOperatingCost = actualFixedOperatingCost; } - IntermittentTechnologyNodeLoadFactor getIntermittentTechnologyNodeLoadFactor(){ + public IntermittentTechnologyNodeLoadFactor getIntermittentTechnologyNodeLoadFactor() { return intermittentTechnologyNodeLoadFactorRepository - .findIntermittentTechnologyNodeLoadFactorForNodeAndTechnology(this.getLocation(), - this.getTechnology()); + .findIntermittentTechnologyNodeLoadFactorForNodeAndTechnology(this.getLocation(), this.getTechnology()); } } diff --git a/emlab-generation/src/main/java/emlab/gen/repository/BaseCostFipRepository.java b/emlab-generation/src/main/java/emlab/gen/repository/BaseCostFipRepository.java new file mode 100644 index 00000000..f7d4015d --- /dev/null +++ b/emlab-generation/src/main/java/emlab/gen/repository/BaseCostFipRepository.java @@ -0,0 +1,45 @@ +/******************************************************************************* + * Copyright 2013 the original author or authors. + * + * Licensed 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. + ******************************************************************************/ +package emlab.gen.repository; + +import org.springframework.data.neo4j.annotation.Query; +import org.springframework.data.neo4j.annotation.QueryType; +import org.springframework.data.neo4j.repository.GraphRepository; +import org.springframework.data.repository.query.Param; +import org.springframework.stereotype.Repository; + +import emlab.gen.domain.policy.renewablesupport.BaseCostFip; +import emlab.gen.domain.technology.PowerGeneratingTechnology; +import emlab.gen.domain.technology.PowerGridNode; + +/** + * @author Kaveri3012 + * + */ + +@Repository +public interface BaseCostFipRepository extends GraphRepository { + + @Query(value = "g.v(tech).in('BASECOST_FOR_TECHNOLOGY').as('x').out('BASECOST_FOR_LOCATION').filter{it==g.v(gridnode)}.back('x').filter{it.startTime==tick}", type = QueryType.Gremlin) + public BaseCostFip findOneBaseCostForTechnologyAndNodeAndTime(@Param("gridnode") PowerGridNode node, + @Param("tech") PowerGeneratingTechnology technology, @Param("tick") long tick); + + @Query(value = "g.v(tech).in('BASECOST_FOR_TECHNOLOGY').as('x').out('BASECOST_FOR_LOCATION').filter{it==g.v(gridnode)}.back('x').filter{it.startTime>=timeFrom && it.startTime<=timeTo}", type = QueryType.Gremlin) + Iterable findAllBaseCostFipsForTechnologyLocationAndTimeRange(@Param("gridnode") PowerGridNode node, + @Param("tech") PowerGeneratingTechnology technology, @Param("timeFrom") long timeFrom, + @Param("timeTo") long timeTo); + +} diff --git a/emlab-generation/src/main/java/emlab/gen/repository/BidRepository.java b/emlab-generation/src/main/java/emlab/gen/repository/BidRepository.java index 884c616f..95c2a403 100644 --- a/emlab-generation/src/main/java/emlab/gen/repository/BidRepository.java +++ b/emlab-generation/src/main/java/emlab/gen/repository/BidRepository.java @@ -34,113 +34,122 @@ @Repository public interface BidRepository extends GraphRepository { - /** - * Finds all demand bids for a market for a time - * - * @param market - * @param time - * @return the found bids - */ - // @Query(value = - // "g.v(market).in('BIDDINGMARKET').filter{it.time == time}.filter{it.supplyBid == false}", - // type = QueryType.Gremlin) - // public Iterable findDemandBidsForMarketForTime(@Param("market") - // DecarbonizationMarket market, @Param("time") long time); - - @Query("START bid=node:__types__(\"className:emlab.gen.domain.market.Bid\") WHERE (bid.time={time}) RETURN bid") - Iterable findAllBidsForForTime(@Param("time") long time); - - @Query("START market=node({market}) MATCH (market)<-[:BIDDINGMARKET]-(bid) WHERE (bid.time = {time}) and (bid.supplyBid=false) RETURN bid ORDER BY bid.price desc") - Iterable findDemandBidsForMarketForTime(@Param("market") DecarbonizationMarket market, @Param("time") long time); - - @Query("START market=node({market}) MATCH (market)<-[:BIDDINGMARKET]-(bid) WHERE (bid.time = {time}) and (bid.supplyBid=false) and (bid.status>=2) RETURN bid") - Iterable findAllAcceptedDemandBidsForMarketForTime(@Param("market") DecarbonizationMarket market, - @Param("time") long time); - - /** - * Finds all supply bids for a market for a time. Cypher adapted from PGC - * (Alfredas) - * - * @param market - * @param time - * @return - */ - // @Query(value = - // "g.v(market).in('BIDDINGMARKET').filter{it.time == time}.filter{it.supplyBid == true}", - // type = QueryType.Gremlin) - // public Iterable findOffersForMarketForTime(@Param("market") - // DecarbonizationMarket market, @Param("time") long time); - - @Query("START market=node({market}) MATCH (market)<-[:BIDDINGMARKET]-(bid) WHERE (bid.time = {time}) and (bid.supplyBid=true) RETURN bid ORDER BY bid.price") - Iterable findOffersForMarketForTime(@Param("market") DecarbonizationMarket market, @Param("time") long time); - - @Query("START market=node({market}) MATCH (market)<-[:BIDDINGMARKET]-(bid) WHERE (bid.time = {time}) and (bid.supplyBid=true) and (bid.status>=2) RETURN bid") - Iterable findAllAcceptedOffersForMarketForTime(@Param("market") DecarbonizationMarket market, - @Param("time") long time); - - /** - * Find bids for a market for a time - * - * @param market - * @param time - * @param isSupply - * supply or demand bids - * @return the bids - */ - - @Query(value = "g.v(market).in('BIDDINGMARKET').filter{it.time == time}.filter{it.supplyBid == isSupply}", type = QueryType.Gremlin) - Iterable getBidsForMarketForTime(@Param("market") DecarbonizationMarket market, @Param("time") long time, - @Param("isSupply") boolean isSupply); - - @Query("START market=node({market}) MATCH (market)<-[:BIDDINGMARKET]-(bid) WHERE (bid.time = {time}) and (bid.supplyBid=true) and (bid.price <= {price}) RETURN bid ORDER BY bid.price") - Iterable findOffersForMarketForTimeBelowPrice(@Param("market") DecarbonizationMarket market, - @Param("time") long time, @Param("price") double price); - - /** - * Find demand bids above a certain price, and return them in descending - * order. - * - * @param market - * @param time - * @param price - * @return - */ - @Query("START market=node({market}) MATCH (market)<-[:BIDDINGMARKET]-(bid) WHERE (bid.time = {time}) and (bid.supplyBid=false) and (bid.price >= {price}) RETURN bid ORDER BY bid.price desc") - Iterable findDemandBidsForMarketForTimeAbovePrice(@Param("market") DecarbonizationMarket market, - @Param("time") long time, @Param("price") double price); - - @Query("START market=node({market}) MATCH (market)<-[:BIDDINGMARKET]-(bid) WHERE (bid.time = {time}) and (bid.supplyBid=false) and (bid.price >= {price}) RETURN sum(bid.amount)") - double calculateDemandBidsForMarketForTimeForPrice(@Param("market") DecarbonizationMarket market, - @Param("time") long time, @Param("price") double price); - - @Query("START market=node({market}) MATCH (market)<-[:BIDDINGMARKET]-(bid) WHERE (bid.time = {time}) and (bid.supplyBid=false) and (bid.price = {price}) RETURN bid ORDER BY bid.price desc") - Iterable findDemandBidsForMarketForTimeForPrice(@Param("market") DecarbonizationMarket market, - @Param("time") long time, @Param("price") double price); - - @Query("START market=node({market}) MATCH (market)<-[:BIDDINGMARKET]-(bid) WHERE (bid.time = {time}) and (bid.supplyBid=true) and (bid.price = {price}) RETURN bid ORDER BY bid.price desc") - Iterable findOffersForMarketForTimeForPrice(@Param("market") DecarbonizationMarket market, - @Param("time") long time, @Param("price") double price); - - @Query("START market=node({market}) MATCH (market)<-[:BIDDINGMARKET]-(bid) WHERE (bid.time = {time}) and (bid.supplyBid=true) and (bid.price = {price}) RETURN sum(bid.amount)") - double calculateOffersForMarketForTimeForPrice(@Param("market") DecarbonizationMarket market, - @Param("time") long time, @Param("price") double price); - - @Query("START market=node({market}) MATCH (market)<-[:BIDDINGMARKET]-(bid) WHERE (bid.time = {time}) and (bid.supplyBid=false) RETURN sum(bid.amount)") - double calculateTotalDemandForMarketForTime(@Param("market") DecarbonizationMarket market, @Param("time") long time); - - @Query("START market=node({market}) MATCH (market)<-[:BIDDINGMARKET]-(bid) WHERE (bid.time = {time}) and (bid.supplyBid=false) and (bid.price >= {price}) RETURN sum(bid.amount)") - double calculateTotalDemandForMarketForTimeForPrice(@Param("market") DecarbonizationMarket market, - @Param("time") long time, @Param("price") double price); - - @Query("START market=node({market}) MATCH (market)<-[:BIDDINGMARKET]-(bid) WHERE (bid.time = {time}) and (bid.supplyBid=true) RETURN sum(bid.amount)") - double calculateTotalSupplyForMarketForTime(@Param("market") DecarbonizationMarket market, @Param("time") long time); - - @Query("START market=node({market}) MATCH (market)<-[:BIDDINGMARKET]-(bid) WHERE (bid.time = {time}) and (bid.supplyBid=true) RETURN max(bid.price)") - double calculateTotalSupplyPriceForMarketForTime(@Param("market") DecarbonizationMarket market, - @Param("time") long time); - - @Query("START market=node({market}) MATCH (market)<-[:BIDDINGMARKET]-(bid) WHERE (bid.time = {time}) and (bid.supplyBid=true) RETURN min(bid.price)") - double calculateMinimumSupplyPriceForMarketForTime(@Param("market") DecarbonizationMarket market, - @Param("time") long time); + /** + * Finds all demand bids for a market for a time + * + * @param market + * +Kaveri Search Images Maps Play YouTube News Gmail Drive + * Calendar More + * + * Gmail + * + * Kaveri Iychettira Share Kaveri Iychettira Kaveri Iychettira + * + * + * + * @param time + * @return the found bids + */ + // @Query(value = + // "g.v(market).in('BIDDINGMARKET').filter{it.time == time}.filter{it.supplyBid == false}", + // type = QueryType.Gremlin) + // public Iterable findDemandBidsForMarketForTime(@Param("market") + // DecarbonizationMarket market, @Param("time") long time); + + @Query("START bid=node:__types__(\"className:emlab.gen.domain.market.Bid\") WHERE (bid.time={time}) RETURN bid") + Iterable findAllBidsForForTime(@Param("time") long time); + + @Query("START market=node({market}) MATCH (market)<-[:BIDDINGMARKET]-(bid) WHERE (bid.time = {time}) and (bid.supplyBid=false) RETURN bid ORDER BY bid.price desc") + Iterable findDemandBidsForMarketForTime(@Param("market") DecarbonizationMarket market, @Param("time") long time); + + @Query("START market=node({market}) MATCH (market)<-[:BIDDINGMARKET]-(bid) WHERE (bid.time = {time}) and (bid.supplyBid=false) and (bid.status>=2) RETURN bid") + Iterable findAllAcceptedDemandBidsForMarketForTime(@Param("market") DecarbonizationMarket market, + @Param("time") long time); + + /** + * Finds all supply bids for a market for a time. Cypher adapted from PGC + * (Alfredas) + * + * @param market + * @param time + * @return + */ + // @Query(value = + // "g.v(market).in('BIDDINGMARKET').filter{it.time == time}.filter{it.supplyBid == true}", + // type = QueryType.Gremlin) + // public Iterable findOffersForMarketForTime(@Param("market") + // DecarbonizationMarket market, @Param("time") long time); + + @Query("START market=node({market}) MATCH (market)<-[:BIDDINGMARKET]-(bid) WHERE (bid.time = {time}) and (bid.supplyBid=true) RETURN bid ORDER BY bid.price") + Iterable findOffersForMarketForTime(@Param("market") DecarbonizationMarket market, @Param("time") long time); + + @Query("START market=node({market}) MATCH (market)<-[:BIDDINGMARKET]-(bid) WHERE (bid.time = {time}) and (bid.supplyBid=true) and (bid.status>=2) RETURN bid") + Iterable findAllAcceptedOffersForMarketForTime(@Param("market") DecarbonizationMarket market, + @Param("time") long time); + + /** + * Find bids for a market for a time + * + * @param market + * @param time + * @param isSupply + * supply or demand bids + * @return the bids + */ + + @Query(value = "g.v(market).in('BIDDINGMARKET').filter{it.time == time}.filter{it.supplyBid == isSupply}", type = QueryType.Gremlin) + Iterable getBidsForMarketForTime(@Param("market") DecarbonizationMarket market, @Param("time") long time, + @Param("isSupply") boolean isSupply); + + @Query("START market=node({market}) MATCH (market)<-[:BIDDINGMARKET]-(bid) WHERE (bid.time = {time}) and (bid.supplyBid=true) and (bid.price <= {price}) RETURN bid ORDER BY bid.price") + Iterable findOffersForMarketForTimeBelowPrice(@Param("market") DecarbonizationMarket market, + @Param("time") long time, @Param("price") double price); + + /** + * Find demand bids above a certain price, and return them in descending + * order. + * + * @param market + * @param time + * @param price + * @return + */ + @Query("START market=node({market}) MATCH (market)<-[:BIDDINGMARKET]-(bid) WHERE (bid.time = {time}) and (bid.supplyBid=false) and (bid.price >= {price}) RETURN bid ORDER BY bid.price desc") + Iterable findDemandBidsForMarketForTimeAbovePrice(@Param("market") DecarbonizationMarket market, + @Param("time") long time, @Param("price") double price); + + @Query("START market=node({market}) MATCH (market)<-[:BIDDINGMARKET]-(bid) WHERE (bid.time = {time}) and (bid.supplyBid=false) and (bid.price >= {price}) RETURN sum(bid.amount)") + double calculateDemandBidsForMarketForTimeForPrice(@Param("market") DecarbonizationMarket market, + @Param("time") long time, @Param("price") double price); + + @Query("START market=node({market}) MATCH (market)<-[:BIDDINGMARKET]-(bid) WHERE (bid.time = {time}) and (bid.supplyBid=false) and (bid.price = {price}) RETURN bid ORDER BY bid.price desc") + Iterable findDemandBidsForMarketForTimeForPrice(@Param("market") DecarbonizationMarket market, + @Param("time") long time, @Param("price") double price); + + @Query("START market=node({market}) MATCH (market)<-[:BIDDINGMARKET]-(bid) WHERE (bid.time = {time}) and (bid.supplyBid=true) and (bid.price = {price}) RETURN bid ORDER BY bid.price desc") + Iterable findOffersForMarketForTimeForPrice(@Param("market") DecarbonizationMarket market, + @Param("time") long time, @Param("price") double price); + + @Query("START market=node({market}) MATCH (market)<-[:BIDDINGMARKET]-(bid) WHERE (bid.time = {time}) and (bid.supplyBid=true) and (bid.price = {price}) RETURN sum(bid.amount)") + double calculateOffersForMarketForTimeForPrice(@Param("market") DecarbonizationMarket market, + @Param("time") long time, @Param("price") double price); + + @Query("START market=node({market}) MATCH (market)<-[:BIDDINGMARKET]-(bid) WHERE (bid.time = {time}) and (bid.supplyBid=false) RETURN sum(bid.amount)") + double calculateTotalDemandForMarketForTime(@Param("market") DecarbonizationMarket market, @Param("time") long time); + + @Query("START market=node({market}) MATCH (market)<-[:BIDDINGMARKET]-(bid) WHERE (bid.time = {time}) and (bid.supplyBid=false) and (bid.price >= {price}) RETURN sum(bid.amount)") + double calculateTotalDemandForMarketForTimeForPrice(@Param("market") DecarbonizationMarket market, + @Param("time") long time, @Param("price") double price); + + @Query("START market=node({market}) MATCH (market)<-[:BIDDINGMARKET]-(bid) WHERE (bid.time = {time}) and (bid.supplyBid=true) RETURN sum(bid.amount)") + double calculateTotalSupplyForMarketForTime(@Param("market") DecarbonizationMarket market, @Param("time") long time); + + @Query("START market=node({market}) MATCH (market)<-[:BIDDINGMARKET]-(bid) WHERE (bid.time = {time}) and (bid.supplyBid=true) RETURN max(bid.price)") + double calculateTotalSupplyPriceForMarketForTime(@Param("market") DecarbonizationMarket market, + @Param("time") long time); + + @Query("START market=node({market}) MATCH (market)<-[:BIDDINGMARKET]-(bid) WHERE (bid.time = {time}) and (bid.supplyBid=true) RETURN min(bid.price)") + double calculateMinimumSupplyPriceForMarketForTime(@Param("market") DecarbonizationMarket market, + @Param("time") long time); } diff --git a/emlab-generation/src/main/java/emlab/gen/repository/CapacityClearingPointRepository.java b/emlab-generation/src/main/java/emlab/gen/repository/CapacityClearingPointRepository.java new file mode 100644 index 00000000..e3707ea2 --- /dev/null +++ b/emlab-generation/src/main/java/emlab/gen/repository/CapacityClearingPointRepository.java @@ -0,0 +1,30 @@ +/******************************************************************************* + * Copyright 2013 the original author or authors. + * + * Licensed 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. + ******************************************************************************/ +package emlab.gen.repository; + +import org.springframework.data.neo4j.repository.GraphRepository; +import org.springframework.stereotype.Repository; + +import emlab.gen.domain.market.capacity.CapacityClearingPoint; + +/** + * @author Kaveri + * + */ +@Repository +public interface CapacityClearingPointRepository extends GraphRepository { + +} diff --git a/emlab-generation/src/main/java/emlab/gen/repository/CapacityDispatchPlanRepository.java b/emlab-generation/src/main/java/emlab/gen/repository/CapacityDispatchPlanRepository.java new file mode 100644 index 00000000..97e9712d --- /dev/null +++ b/emlab-generation/src/main/java/emlab/gen/repository/CapacityDispatchPlanRepository.java @@ -0,0 +1,31 @@ +/******************************************************************************* + /******************************************************************************* + * Copyright 2013 the original author or authors. + * + * Licensed 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. + ******************************************************************************/ +package emlab.gen.repository; + +import org.springframework.data.neo4j.repository.GraphRepository; +import org.springframework.stereotype.Repository; + +import emlab.gen.domain.market.capacity.CapacityDispatchPlan; + +/** + * @author Kaveri + * + */ +@Repository +public interface CapacityDispatchPlanRepository extends GraphRepository { + +} \ No newline at end of file diff --git a/emlab-generation/src/main/java/emlab/gen/repository/CapacityMarketRepository.java b/emlab-generation/src/main/java/emlab/gen/repository/CapacityMarketRepository.java new file mode 100644 index 00000000..d5340b7f --- /dev/null +++ b/emlab-generation/src/main/java/emlab/gen/repository/CapacityMarketRepository.java @@ -0,0 +1,63 @@ +/******************************************************************************* + /******************************************************************************* + * Copyright 2013 the original author or authors. + * + * Licensed 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. + ******************************************************************************/ +package emlab.gen.repository; + +import org.springframework.data.neo4j.annotation.Query; +import org.springframework.data.neo4j.annotation.QueryType; +import org.springframework.data.neo4j.repository.GraphRepository; +import org.springframework.data.repository.query.Param; +import org.springframework.stereotype.Repository; + +import emlab.gen.domain.agent.Regulator; +import emlab.gen.domain.gis.Zone; +import emlab.gen.domain.market.ClearingPoint; +import emlab.gen.domain.market.capacity.CapacityClearingPoint; +import emlab.gen.domain.market.capacity.CapacityDispatchPlan; +import emlab.gen.domain.market.capacity.CapacityMarket; + +/** + * @author Kaveri + * + */ +@Repository +public interface CapacityMarketRepository extends GraphRepository { + + @Query(value = "g.v(zone).in('ZONE').filter{it.__type__=='emlab.gen.domain.market.capacity.CapacityMarket'}", type = QueryType.Gremlin) + public CapacityMarket findCapacityMarketForZone(@Param("zone") Zone zone); + + @Query(value = "g.idx('__types__')[[className:'emlab.gen.domain.market.capacity.CapacityDispatchPlan']].filter{it.time == tick}.sort{it.price}._()", type = QueryType.Gremlin) + public Iterable findAllSortedCapacityDispatchPlansByTime(@Param("tick") long time); + + @Query(value = "g.v(market).in('BIDDINGMARKET').propertyFilter('time', FilterPipe.Filter.EQUAL, time).propertyFilter('status', FilterPipe.Filter.GREATER_THAN, 2)", type = QueryType.Gremlin) + public Iterable findAllAcceptedCapacityDispatchPlansForTime( + @Param("market") CapacityMarket capacityMarket, @Param("time") long time); + + @Query(value = "g.v(market).in('CAPACITY_MARKET').propertyFilter('time', FilterPipe.Filter.EQUAL, time)", type = QueryType.Gremlin) + public CapacityClearingPoint findOneCapacityClearingPointForTimeAndMarket(@Param("time") long time, + @Param("market") CapacityMarket capacityMarket); + + @Query(value = "g.v(market).in('CAPACITY_MARKET').propertyFilter('time', FilterPipe.Filter.EQUAL, time)", type = QueryType.Gremlin) + public ClearingPoint findOneClearingPointForTimeAndCapacityMarket(@Param("time") long time, + @Param("market") CapacityMarket capacityMarket); + + @Query(value = "g.idx('__types__')[[className:'emlab.gen.domain.market.capacity.CapacityClearingPoint']].filter{it.time == tick}", type = QueryType.Gremlin) + public CapacityClearingPoint findOneCapacityClearingPointForTime(@Param("time") long time); + + @Query(value = "g.v(zone).in('OF_ZONE')", type = QueryType.Gremlin) + public Regulator findRegulatorForZone(@Param("zone") Zone zone); + +} \ No newline at end of file diff --git a/emlab-generation/src/main/java/emlab/gen/repository/CashFlowRepository.java b/emlab-generation/src/main/java/emlab/gen/repository/CashFlowRepository.java index e174eb51..ce600654 100644 --- a/emlab-generation/src/main/java/emlab/gen/repository/CashFlowRepository.java +++ b/emlab-generation/src/main/java/emlab/gen/repository/CashFlowRepository.java @@ -16,13 +16,18 @@ package emlab.gen.repository; import org.springframework.data.neo4j.annotation.Query; +import org.springframework.data.neo4j.annotation.QueryType; import org.springframework.data.neo4j.repository.GraphRepository; import org.springframework.data.repository.query.Param; import emlab.gen.domain.contract.CashFlow; +import emlab.gen.domain.technology.PowerPlant; public interface CashFlowRepository extends GraphRepository { @Query("START cf=node:__types__(\"className:emlab.gen.domain.contract.CashFlow\") WHERE (cf.time={time}) RETURN cf") Iterable findAllCashFlowsForForTime(@Param("time") long time); + @Query(value = "g.v(plant).in.filter{it.__type__=='emlab.gen.domain.contract.CashFlow' && it.time==tick}", type = QueryType.Gremlin) + Iterable findAllCashFlowsForPowerPlantForTime(@Param("plant") PowerPlant plant, @Param("tick") long tick); + } diff --git a/emlab-generation/src/main/java/emlab/gen/repository/FinancialPowerPlantReportRepository.java b/emlab-generation/src/main/java/emlab/gen/repository/FinancialPowerPlantReportRepository.java new file mode 100644 index 00000000..1ee3fbf2 --- /dev/null +++ b/emlab-generation/src/main/java/emlab/gen/repository/FinancialPowerPlantReportRepository.java @@ -0,0 +1,56 @@ +/******************************************************************************* + * Copyright 2013 the original author or authors. + * + * Licensed 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. + ******************************************************************************/ +package emlab.gen.repository; + +import org.springframework.data.neo4j.annotation.Query; +import org.springframework.data.neo4j.annotation.QueryType; +import org.springframework.data.neo4j.repository.GraphRepository; +import org.springframework.data.repository.query.Param; + +import emlab.gen.domain.agent.EnergyProducer; +import emlab.gen.domain.market.electricity.FinancialPowerPlantReport; +import emlab.gen.domain.technology.PowerGeneratingTechnology; + +/** + * @author jrichstein + * + */ +public interface FinancialPowerPlantReportRepository extends +GraphRepository { + + @Query(value = "techName=g.v(tech).name;" + + "fr = g.v(producer).in('POWERPLANT_OWNER').as('x').out('TECHNOLOGY').propertyFilter('name',FilterPipe.Filter.EQUAL, techName).back('x').in('FINANCIALREPORT_POWERPLANT').propertyFilter('time', FilterPipe.Filter.GREATER_THAN_EQUAL, from).propertyFilter('time', FilterPipe.Filter.LESS_THAN_EQUAL, to).propertyFilter('powerPlantStatus', FilterPipe.Filter.EQUAL, 1);", type = QueryType.Gremlin) + public Iterable findAllFinancialPowerPlantReportsOfOperationaPlantsFromToForEnergyProducerAndTechnology( + @Param("from") long from, + @Param("to") long to, @Param("producer") EnergyProducer producer, + @Param("tech") PowerGeneratingTechnology tech); + + @Query(value = "techName=g.v(tech).name; fr = g.v(producer).in('POWERPLANT_OWNER').as('x').out('TECHNOLOGY').propertyFilter('name',FilterPipe.Filter.EQUAL, techName).back('x').in('FINANCIALREPORT_POWERPLANT').propertyFilter('time', FilterPipe.Filter.GREATER_THAN_EQUAL, from).propertyFilter('time', FilterPipe.Filter.LESS_THAN_EQUAL, to).propertyFilter('powerPlantStatus', FilterPipe.Filter.EQUAL, 1);" + + "if(!fr.hasNext()){return null} else{fr=fr.sort{it.overallRevenue-it.variableCosts}._().toList()};" + + + "length=fr.size(); fiveQuantile=(int)length*0.05;cvar=(long) 0;"+ + "for(int i=0; i<=fiveQuantile; i++){cvar=cvar+(fr[i].overallRevenue-fr[i].variableCosts)/fr[i].out('FINANCIALREPORT_POWERPLANT').actualNominalCapacity.next()};" + + + "cvar=cvar/((double)(fiveQuantile+1));"+ + "return cvar;", type = QueryType.Gremlin) + public Double calculateHistoricalCVarRelativePerMWForOperationaPlantsForEnergyProducerAndTechnologyForYearsFromToAndAlphaValue( + @Param("from") long from, @Param("to") long to, @Param("producer") EnergyProducer producer, + @Param("tech") PowerGeneratingTechnology tech, @Param("alpha") double alpha); + + @Query("START fr=node:__types__(\"className:emlab.gen.domain.market.electricity.FinancialPowerPlantReport\") WHERE (fr.time={time}) RETURN fr") + public Iterable findAllFinancialPowerPlantReportsForTime(@Param("time") long time); + +} diff --git a/emlab-generation/src/main/java/emlab/gen/repository/InterconnectorRepository.java b/emlab-generation/src/main/java/emlab/gen/repository/InterconnectorRepository.java index afaac21a..e45f1beb 100644 --- a/emlab-generation/src/main/java/emlab/gen/repository/InterconnectorRepository.java +++ b/emlab-generation/src/main/java/emlab/gen/repository/InterconnectorRepository.java @@ -18,17 +18,24 @@ import org.springframework.data.neo4j.annotation.Query; import org.springframework.data.neo4j.annotation.QueryType; import org.springframework.data.neo4j.repository.GraphRepository; -import org.springframework.data.repository.query.Param; - import emlab.gen.domain.technology.Interconnector; public interface InterconnectorRepository extends GraphRepository { -// @Query(value = "g.v(plant).out('LOCATION').out('REGION').in('GOVERNED_ZONE').next()", type = QueryType.Gremlin) -// NationalGovernment findNationalGovernmentByPowerPlant(@Param("plant") PowerPlant plant); + // @Query(value = + // "g.v(plant).out('LOCATION').out('REGION').in('GOVERNED_ZONE').next()", + // type = QueryType.Gremlin) + // NationalGovernment findNationalGovernmentByPowerPlant(@Param("plant") + // PowerPlant plant); + + // @Query(value = "g.v(market).out('ZONE').in('GOVERNED_ZONE').next()", type + // = QueryType.Gremlin) + // NationalGovernment + // findNationalGovernmentByElectricitySpotMarket(@Param("market") + // ElectricitySpotMarket market); -// @Query(value = "g.v(market).out('ZONE').in('GOVERNED_ZONE').next()", type = QueryType.Gremlin) -// NationalGovernment findNationalGovernmentByElectricitySpotMarket(@Param("market") ElectricitySpotMarket market); + @Query(value = "g.idx('__types__')[[className:'emlab.gen.domain.technology.Interconnector']].capacity", type = QueryType.Gremlin) + public double findInterconnectorCapacity(); } diff --git a/emlab-generation/src/main/java/emlab/gen/repository/IntermittentResourceProfileRepository.java b/emlab-generation/src/main/java/emlab/gen/repository/IntermittentResourceProfileRepository.java index 15ab19d0..a9a5d2cb 100644 --- a/emlab-generation/src/main/java/emlab/gen/repository/IntermittentResourceProfileRepository.java +++ b/emlab-generation/src/main/java/emlab/gen/repository/IntermittentResourceProfileRepository.java @@ -9,12 +9,11 @@ import emlab.gen.domain.technology.PowerGeneratingTechnology; import emlab.gen.domain.technology.PowerGridNode; -public interface IntermittentResourceProfileRepository extends - GraphRepository { +public interface IntermittentResourceProfileRepository extends GraphRepository { - @Query(value = "g.v(technology).in('INTERMITTENT_TECHNOLOGY').filter{it.__type__=='emlab.gen.domain.technology.IntermittentResourceProfile'}.as('irp').in('INTERMITTENT_PRODUCTION_NODE').filter{it==g.v(node)}.back('irp').next()", type = QueryType.Gremlin) - IntermittentResourceProfile findIntermittentResourceProfileByTechnologyAndNode( - @Param("technology") PowerGeneratingTechnology technology, - @Param("node") PowerGridNode node); + @Query(value = "profiles=g.v(technology).in('INTERMITTENT_TECHNOLOGY').filter{it.__type__=='emlab.gen.domain.technology.IntermittentResourceProfile'}.as('irp').in('INTERMITTENT_PRODUCTION_NODE').filter{it==g.v(node)}.back('irp');" + + "if(profiles.hasNext()){return profiles.next()} else{return null}", type = QueryType.Gremlin) + IntermittentResourceProfile findIntermittentResourceProfileByTechnologyAndNode( + @Param("technology") PowerGeneratingTechnology technology, @Param("node") PowerGridNode node); } diff --git a/emlab-generation/src/main/java/emlab/gen/repository/MarketRepository.java b/emlab-generation/src/main/java/emlab/gen/repository/MarketRepository.java index 1297a40c..c231c0ed 100644 --- a/emlab-generation/src/main/java/emlab/gen/repository/MarketRepository.java +++ b/emlab-generation/src/main/java/emlab/gen/repository/MarketRepository.java @@ -76,14 +76,22 @@ public interface MarketRepository extends GraphRepository public ElectricitySpotMarket findElectricitySpotMarketForZone(@Param("zone") Zone zone); @Query(value = "START nationalG = node({nationalG}), electricityMarket = node:__types__(\"className:emlab.gen.domain.market.electricity.ElectricitySpotMarket\") MATCH (nationalG)-[:GOVERNED_ZONE]->(zone)<-[:ZONE]-(electricityMarket) RETURN electricityMarket") - public ElectricitySpotMarket findElectricitySpotMarketByNationalGovernment(@Param("nationalG") NationalGovernment nationalG); + public ElectricitySpotMarket findElectricitySpotMarketByNationalGovernment( + @Param("nationalG") NationalGovernment nationalG); @Query(value = "g.v(plant).out('LOCATION').out('REGION').in('ZONE').filter{it.__type__=='emlab.gen.domain.market.electricity.ElectricitySpotMarket'}.next()", type = QueryType.Gremlin) public ElectricitySpotMarket findElectricitySpotMarketByPowerPlant(@Param("plant") PowerPlant plant); @Query(value = "segID = g.v(segment).segmentID;" + "return g.v(zone).in('ZONE').filter{it.__type__=='emlab.gen.domain.market.electricity.ElectricitySpotMarket'}.out('SEGMENT_LOAD').as('SL').out('SEGMENTLOAD_SEGMENT').filter{it.segmentID==segID}.back('SL').next();", type = QueryType.Gremlin) - public SegmentLoad findSegmentLoadForElectricitySpotMarketForZone(@Param("zone") Zone zone, @Param("segment") Segment segment); + public SegmentLoad findSegmentLoadForElectricitySpotMarketForZone(@Param("zone") Zone zone, + @Param("segment") Segment segment); + + @Query(value = "g.v(zone).in('REGION').in('LOCATION').filter{f.plantIsOperational(it, tick)}.out('TECHNOLOGY').sum{it.capacity*(it.peakSegmentDependentAvailability)}._()", type = QueryType.Gremlin) + public double findTotalSupplyInElectricitySpotMarketForZone(@Param("zone") Zone zone); + + @Query(value = "topsegments = g.v(zone).out('SEGMENT_LOAD').max{it.baseLoad}.baseLoad; growthfactors = v.out('DEMANDGROWTH_TREND').collect{f.getTrendValue(it, tick)}[0]; adjustedTopSegments = topsegments*growthfactors; return adjustedTopSegments", type = QueryType.Gremlin) + public double findPeakDemandInElectricitySpotMarketForZone(@Param("zone") Zone zone); /** * Gives the market for a specific substance diff --git a/emlab-generation/src/main/java/emlab/gen/repository/PowerPlantDispatchPlanRepository.java b/emlab-generation/src/main/java/emlab/gen/repository/PowerPlantDispatchPlanRepository.java index 0294daf0..de2b60be 100644 --- a/emlab-generation/src/main/java/emlab/gen/repository/PowerPlantDispatchPlanRepository.java +++ b/emlab-generation/src/main/java/emlab/gen/repository/PowerPlantDispatchPlanRepository.java @@ -39,38 +39,53 @@ @Repository public interface PowerPlantDispatchPlanRepository extends GraphRepository { - // @Query(value = "g.V.filter{it.getProperty('__type__')=='emlab.gen.domain.market.electricity.PowerPlantDispatchPlan' && it.getProperty('time')==time}", type = QueryType.Gremlin) - // public Iterable findAllPowerPlantDispatchPlansForTime(@Param("time") long time); + // @Query(value = + // "g.V.filter{it.getProperty('__type__')=='emlab.gen.domain.market.electricity.PowerPlantDispatchPlan' && it.getProperty('time')==time}", + // type = QueryType.Gremlin) + // public Iterable + // findAllPowerPlantDispatchPlansForTime(@Param("time") long time); @Query("START ppdp=node:__types__(\"className:emlab.gen.domain.market.electricity.PowerPlantDispatchPlan\") WHERE (ppdp.time={time} AND ppdp.forecast = {forecast}) RETURN ppdp") public Iterable findAllPowerPlantDispatchPlansForTime(@Param("time") long time, @Param("forecast") boolean forecast); @Query(value = "result = g.v(plant).in('POWERPLANT_DISPATCHPLAN').as('x').propertyFilter('forecast', FilterPipe.Filter.EQUAL, forecast).out('SEGMENT_DISPATCHPLAN').idFilter(segment, FilterPipe.Filter.EQUAL).back('x')", type = QueryType.Gremlin) - public Iterable findAllPowerPlantDispatchPlanForPowerPlantForSegmentForTime(@Param("plant") PowerPlant plant, - @Param("segment") Segment segment, @Param("time") long time, + public Iterable findAllPowerPlantDispatchPlanForPowerPlantForSegmentForTime( + @Param("plant") PowerPlant plant, @Param("segment") Segment segment, @Param("time") long time, @Param("forecast") boolean forecast); @Query(value = "result = g.v(plant).in('POWERPLANT_DISPATCHPLAN').as('x').propertyFilter('forecast', FilterPipe.Filter.EQUAL, forecast).out('SEGMENT_DISPATCHPLAN').idFilter(segment, FilterPipe.Filter.EQUAL).back('x').propertyFilter('time', FilterPipe.Filter.EQUAL, time); if(!result.hasNext()){return null;} else{return result.next();}", type = QueryType.Gremlin) - public PowerPlantDispatchPlan findOnePowerPlantDispatchPlanForPowerPlantForSegmentForTime(@Param("plant") PowerPlant plant, - @Param("segment") Segment segment, @Param("time") long time, + public PowerPlantDispatchPlan findOnePowerPlantDispatchPlanForPowerPlantForSegmentForTime( + @Param("plant") PowerPlant plant, @Param("segment") Segment segment, @Param("time") long time, @Param("forecast") boolean forecast); - // @Query(value = "g.v(segment).in('SEGMENT_DISPATCHPLAN').propertyFilter('time', FilterPipe.Filter.EQUAL, time)", type = QueryType.Gremlin) - // public Iterable findAllPowerPlantDispatchPlansForSegmentForTime(@Param("segment") Segment segment, + @Query(value = "result = g.v(plant).in('POWERPLANT_DISPATCHPLAN').as('x').out('SEGMENT_DISPATCHPLAN').filter{it.segmentID==1}.back('x').propertyFilter('forecast', FilterPipe.Filter.EQUAL, forecast).propertyFilter('time', FilterPipe.Filter.EQUAL, time); if(!result.hasNext()){return null;} else{return result.next();}", type = QueryType.Gremlin) + public PowerPlantDispatchPlan findOnePowerPlantDispatchPlanForPeakSegmentGivenPowerPlantAndTime( + @Param("plant") PowerPlant plant, @Param("time") long time, @Param("forecast") boolean forecast); + + // @Query(value = + // "g.v(segment).in('SEGMENT_DISPATCHPLAN').propertyFilter('time', FilterPipe.Filter.EQUAL, time)", + // type = QueryType.Gremlin) + // public Iterable + // findAllPowerPlantDispatchPlansForSegmentForTime(@Param("segment") Segment + // segment, // @Param("time") long time); @Query("START segment = node({segment}) MATCH (segment)<-[:SEGMENT_DISPATCHPLAN]-(ppdp) WHERE (ppdp.time = {time} AND ppdp.forecast={forecast}) RETURN ppdp") - public Iterable findAllPowerPlantDispatchPlansForSegmentForTime(@Param("segment") Segment segment, - @Param("time") long time, @Param("forecast") boolean forecast); + public Iterable findAllPowerPlantDispatchPlansForSegmentForTime( + @Param("segment") Segment segment, @Param("time") long time, @Param("forecast") boolean forecast); - // @Query(value = "g.v(segment).in('SEGMENT_DISPATCHPLAN').propertyFilter('time', FilterPipe.Filter.EQUAL, time).sort{it.price}._()", type = QueryType.Gremlin) - // public Iterable findSortedPowerPlantDispatchPlansForSegmentForTime(@Param("segment") Segment segment, + // @Query(value = + // "g.v(segment).in('SEGMENT_DISPATCHPLAN').propertyFilter('time', FilterPipe.Filter.EQUAL, time).sort{it.price}._()", + // type = QueryType.Gremlin) + // public Iterable + // findSortedPowerPlantDispatchPlansForSegmentForTime(@Param("segment") + // Segment segment, // @Param("time") long time); @Query("START segment = node({segment}) MATCH (segment)<-[:SEGMENT_DISPATCHPLAN]-(ppdp) WHERE (ppdp.time = {time} AND ppdp.forecast={forecast}) RETURN ppdp ORDER BY ppdp.price") - public Iterable findSortedPowerPlantDispatchPlansForSegmentForTime(@Param("segment") Segment segment, - @Param("time") long time, @Param("forecast") boolean forecast); + public Iterable findSortedPowerPlantDispatchPlansForSegmentForTime( + @Param("segment") Segment segment, @Param("time") long time, @Param("forecast") boolean forecast); // descending order @Query("START segment = node({segment}) MATCH (segment)<-[:SEGMENT_DISPATCHPLAN]-(ppdp) WHERE (ppdp.time = {time} AND ppdp.forecast={forecast}) RETURN ppdp ORDER BY ppdp.price desc") @@ -78,8 +93,8 @@ public Iterable findDescendingSortedPowerPlantDispatchPl @Param("segment") Segment segment, @Param("time") long time, @Param("forecast") boolean forecast); @Query(value = "g.v(plant).in('POWERPLANT_DISPATCHPLAN').propertyFilter('forecast', FilterPipe.Filter.EQUAL, forecast).propertyFilter('time', FilterPipe.Filter.EQUAL, time)", type = QueryType.Gremlin) - public Iterable findAllPowerPlantDispatchPlansForPowerPlantForTime(@Param("plant") PowerPlant plant, - @Param("time") long time, @Param("forecast") boolean forecast); + public Iterable findAllPowerPlantDispatchPlansForPowerPlantForTime( + @Param("plant") PowerPlant plant, @Param("time") long time, @Param("forecast") boolean forecast); @Query(value = "g.v(producer).out('BIDDER').propertyFilter('time', FilterPipe.Filter.EQUAL, time).propertyFilter('forecast', FilterPipe.Filter.EQUAL, forecast)", type = QueryType.Gremlin) public Iterable findAllPowerPlantDispatchPlansForEnergyProducerForTime( @@ -90,19 +105,15 @@ public Iterable findAllPowerPlantDispatchPlansForEnergyP @Param("producer") EnergyProducer producer, @Param("time") long time, @Param("tech") PowerGeneratingTechnology pgt, @Param("forecast") boolean forecast); - @Query(value = "g.v(producer).out('BIDDER').propertyFilter('time', FilterPipe.Filter.EQUAL, time).propertyFilter('status', FilterPipe.Filter.GREATER_THAN_EQUAL , 2).propertyFilter('forecast', FilterPipe.Filter.EQUAL, forecast)", type = QueryType.Gremlin) public Iterable findAllAcceptedPowerPlantDispatchPlansForEnergyProducerForTime( @Param("producer") EnergyProducer producer, @Param("time") long time, @Param("forecast") boolean forecast); @Query(value = "sum=0;ppdps=g.v(producer).out('BIDDER').propertyFilter('time', FilterPipe.Filter.EQUAL, time).propertyFilter('status', FilterPipe.Filter.GREATER_THAN_EQUAL , 2).propertyFilter('forecast', FilterPipe.Filter.EQUAL, forecast);" - + - "for(ppdp in ppdps){"+ - "totalAmount = ppdp.getProperty('acceptedAmount') + ppdp.getProperty('capacityLongTermContract');"+ - "hoursInSegment = ppdp.out('SEGMENT_DISPATCHPLAN').next().getProperty('lengthInHours');"+ - "production = totalAmount * hoursInSegment;"+ - "sum = sum + production};" - + " return sum;", type = QueryType.Gremlin) + + "for(ppdp in ppdps){" + + "totalAmount = ppdp.getProperty('acceptedAmount') + ppdp.getProperty('capacityLongTermContract');" + + "hoursInSegment = ppdp.out('SEGMENT_DISPATCHPLAN').next().getProperty('lengthInHours');" + + "production = totalAmount * hoursInSegment;" + "sum = sum + production};" + " return sum;", type = QueryType.Gremlin) public double calculateTotalProductionForEnergyProducerForTime(@Param("producer") EnergyProducer producer, @Param("time") long time, @Param("forecast") boolean forecast); @@ -117,23 +128,30 @@ public double calculateTotalProductionForEnergyProducerForTimeForTechnology( @Query(value = "g.v(producer).out('BIDDER').propertyFilter('time', FilterPipe.Filter.EQUAL, time).propertyFilter('forecast', FilterPipe.Filter.EQUAL, forecast).as('x').out('SEGMENT_DISPATCHPLAN').idFilter(segment, FilterPipe.Filter.EQUAL).back('x')", type = QueryType.Gremlin) public Iterable findAllPowerPlantDispatchPlansForEnergyProducerForTimeAndSegment( - @Param("segment") Segment segment, @Param("producer") EnergyProducer producer, @Param("time") long time, @Param("forecast") boolean forecast); + @Param("segment") Segment segment, @Param("producer") EnergyProducer producer, @Param("time") long time, + @Param("forecast") boolean forecast); @Query(value = "g.v(producer).out('BIDDER').propertyFilter('time', FilterPipe.Filter.EQUAL, time).propertyFilter('forecast', FilterPipe.Filter.EQUAL, forecast).propertyFilter('status', FilterPipe.Filter.GREATER_THAN_EQUAL, 2).as('x').out('SEGMENT_DISPATCHPLAN').idFilter(segment, FilterPipe.Filter.EQUAL).back('x')", type = QueryType.Gremlin) public Iterable findAllAcceptedPowerPlantDispatchPlansForEnergyProducerForTimeAndSegment( - @Param("segment") Segment segment, @Param("producer") EnergyProducer producer, @Param("time") long time, @Param("forecast") boolean forecast); + @Param("segment") Segment segment, @Param("producer") EnergyProducer producer, @Param("time") long time, + @Param("forecast") boolean forecast); // @Query("START segment = node({segment}), market=node({market}) MATCH (segment)<-[:SEGMENT_DISPATCHPLAN]-(ppdp)-[:BIDDINGMARKET]->(market) WHERE (ppdp.time = {time}) and (ppdp.status >= 2) RETURN ppdp") - // public Iterable findAllAcceptedPowerPlantDispatchPlansForMarketSegmentAndTime( - // @Param("market") ElectricitySpotMarket esm, @Param("segment") Segment segment, @Param("time") long time); + // public Iterable + // findAllAcceptedPowerPlantDispatchPlansForMarketSegmentAndTime( + // @Param("market") ElectricitySpotMarket esm, @Param("segment") Segment + // segment, @Param("time") long time); @Query(value = "g.v(market).in('BIDDINGMARKET').propertyFilter('time', FilterPipe.Filter.EQUAL, time).propertyFilter('forecast', FilterPipe.Filter.EQUAL, forecast).propertyFilter('status', FilterPipe.Filter.GREATER_THAN_EQUAL, 2).as('x').out('SEGMENT_DISPATCHPLAN').idFilter(segment, FilterPipe.Filter.EQUAL).back('x')", type = QueryType.Gremlin) public Iterable findAllAcceptedPowerPlantDispatchPlansForMarketSegmentAndTime( - @Param("market") ElectricitySpotMarket esm, @Param("segment") Segment segment, @Param("time") long time, @Param("forecast") boolean forecast); + @Param("market") ElectricitySpotMarket esm, @Param("segment") Segment segment, @Param("time") long time, + @Param("forecast") boolean forecast); // @Query("START segment = node({segment} MATCH (segment)<-[:SEGMENT_DISPATCHPLAN]-(ppdp)<-[:BIDDER]-(node({producer})) WHERE (ppdp.time = {time}) AND (ppdp.status >=1) RETURN ppdp") - // public Iterable findAllAcceptedPowerPlantDispatchPlansForEnergyProducerForTimeAndSegment( - // @Param("segment") Segment segment, @Param("producer") EnergyProducer producer, @Param("time") long time); + // public Iterable + // findAllAcceptedPowerPlantDispatchPlansForEnergyProducerForTimeAndSegment( + // @Param("segment") Segment segment, @Param("producer") EnergyProducer + // producer, @Param("time") long time); } // package emlab.gen.repository; @@ -157,10 +175,14 @@ public Iterable findAllAcceptedPowerPlantDispatchPlansFo // import emlab.gen.domain.technology.PowerPlant; // // @Repository -// public class PowerPlantDispatchPlanRepository extends AbstractRepository { +// public class PowerPlantDispatchPlanRepository extends +// AbstractRepository { // -// public PowerPlantDispatchPlan findOnePowerPlantDispatchPlanForPowerPlantForSegmentForTime(PowerPlant plant, Segment segment, long time) { -// for (PowerPlantDispatchPlan plan : findAllPowerPlantDispatchPlansForPowerPlantForTime(plant, time)) { +// public PowerPlantDispatchPlan +// findOnePowerPlantDispatchPlanForPowerPlantForSegmentForTime(PowerPlant plant, +// Segment segment, long time) { +// for (PowerPlantDispatchPlan plan : +// findAllPowerPlantDispatchPlansForPowerPlantForTime(plant, time)) { // if (plan.getSegment().equals(segment)) { // return plan; // } @@ -168,18 +190,23 @@ public Iterable findAllAcceptedPowerPlantDispatchPlansFo // return null; // } // -// public Iterable findAllPowerPlantDispatchPlansForSegmentForTime(Segment segment, long time) { +// public Iterable +// findAllPowerPlantDispatchPlansForSegmentForTime(Segment segment, long time) { // // // get incoming bids -// Pipe bids = new LabeledEdgePipe("SEGMENT_DISPATCHPLAN", LabeledEdgePipe.Step.BOTH_BOTH); +// Pipe bids = new LabeledEdgePipe("SEGMENT_DISPATCHPLAN", +// LabeledEdgePipe.Step.BOTH_BOTH); // // filter by time -// Pipe timeFilter = new PropertyFilterPipe("time", time, FilterPipe.Filter.EQUAL); +// Pipe timeFilter = new PropertyFilterPipe("time", time, FilterPipe.Filter.EQUAL); // // create pipeline -// Pipe pipeline = new Pipeline(bids, timeFilter); +// Pipe pipeline = new Pipeline(bids, +// timeFilter); // return this.findAllByPipe(segment, pipeline); // } // -// public Iterable findAllPowerPlantDispatchPlansForTime(long time) { +// public Iterable +// findAllPowerPlantDispatchPlansForTime(long time) { // List list = new ArrayList(); // for (PowerPlantDispatchPlan plan : findAll()) { // if (plan.getTime() == time) { @@ -189,32 +216,47 @@ public Iterable findAllAcceptedPowerPlantDispatchPlansFo // return list; // } // -// public Iterable findAllPowerPlantDispatchPlansForPowerPlantForTime(PowerPlant powerPlant, long time) { -// Pipe bids = new LabeledEdgePipe("POWERPLANT_DISPATCHPLAN", LabeledEdgePipe.Step.BOTH_BOTH); +// public Iterable +// findAllPowerPlantDispatchPlansForPowerPlantForTime(PowerPlant powerPlant, +// long time) { +// Pipe bids = new LabeledEdgePipe("POWERPLANT_DISPATCHPLAN", +// LabeledEdgePipe.Step.BOTH_BOTH); // // filter by time -// Pipe timeFilter = new PropertyFilterPipe("time", time, FilterPipe.Filter.EQUAL); +// Pipe timeFilter = new PropertyFilterPipe("time", time, FilterPipe.Filter.EQUAL); // // create pipeline -// Pipe pipeline = new Pipeline(bids, timeFilter); +// Pipe pipeline = new Pipeline(bids, +// timeFilter); // // return this.findAllByPipe(powerPlant, pipeline); // } // -// public Iterable findAllPowerPlantDispatchPlansForEnergyProducerForTime(EnergyProducer energyProducer, long time) { -// Pipe bids = new LabeledEdgePipe("BIDDER", LabeledEdgePipe.Step.BOTH_BOTH); +// public Iterable +// findAllPowerPlantDispatchPlansForEnergyProducerForTime(EnergyProducer +// energyProducer, long time) { +// Pipe bids = new LabeledEdgePipe("BIDDER", +// LabeledEdgePipe.Step.BOTH_BOTH); // // filter by time -// Pipe timeFilter = new PropertyFilterPipe("time", time, FilterPipe.Filter.EQUAL); +// Pipe timeFilter = new PropertyFilterPipe("time", time, FilterPipe.Filter.EQUAL); // // create pipeline -// Pipe pipeline = new Pipeline(bids, timeFilter); +// Pipe pipeline = new Pipeline(bids, +// timeFilter); // // return this.findAllByPipe(energyProducer, pipeline); // } // // @Transactional -// public PowerPlantDispatchPlan submitOrUpdatePowerPlantDispatchPlanForSpotMarket(PowerPlant plant, EnergyProducer producer, -// ElectricitySpotMarket market, Segment segment, long time, double price, double capacity) { +// public PowerPlantDispatchPlan +// submitOrUpdatePowerPlantDispatchPlanForSpotMarket(PowerPlant plant, +// EnergyProducer producer, +// ElectricitySpotMarket market, Segment segment, long time, double price, +// double capacity) { // // // make a new one if it -// PowerPlantDispatchPlan plan = findOnePowerPlantDispatchPlanForPowerPlantForSegmentForTime(plant, segment, time); +// PowerPlantDispatchPlan plan = +// findOnePowerPlantDispatchPlanForPowerPlantForSegmentForTime(plant, segment, +// time); // if (plan == null) { // plan = new PowerPlantDispatchPlan().persist(); // plan.setPowerPlant(plant); @@ -231,7 +273,8 @@ public Iterable findAllAcceptedPowerPlantDispatchPlansFo // } // // @Transactional -// public void updateCapacityLongTermContract(PowerPlantDispatchPlan plan, double capacity) { +// public void updateCapacityLongTermContract(PowerPlantDispatchPlan plan, +// double capacity) { // plan.setCapacityLongTermContract(capacity); // // if(plan.getCapacitySpotMarket() + capacity > // // plan.getPowerPlant().getTechnology().getCapacity()){ @@ -241,7 +284,8 @@ public Iterable findAllAcceptedPowerPlantDispatchPlansFo // } // // @Transactional -// public void updateCapacitySpotMarket(PowerPlantDispatchPlan plan, double capacity) { +// public void updateCapacitySpotMarket(PowerPlantDispatchPlan plan, double +// capacity) { // plan.setCapacitySpotMarket(capacity); // // if(plan.getCapacityLongTermContract() + capacity > // // plan.getPowerPlant().getTechnology().getCapacity()){ diff --git a/emlab-generation/src/main/java/emlab/gen/repository/PowerPlantRepository.java b/emlab-generation/src/main/java/emlab/gen/repository/PowerPlantRepository.java index 421ba7e2..65e4a6ec 100644 --- a/emlab-generation/src/main/java/emlab/gen/repository/PowerPlantRepository.java +++ b/emlab-generation/src/main/java/emlab/gen/repository/PowerPlantRepository.java @@ -42,7 +42,7 @@ public interface PowerPlantRepository extends GraphRepository { /** * Finds plants by owner. - * + * * @param owner * of the plants * @return the list of plants @@ -74,14 +74,22 @@ public interface PowerPlantRepository extends GraphRepository { Iterable findOperationalPowerPlantsWithFuelsGreaterZero(@Param("tick") long tick); // @Query(value = - // "g.V.filter{it.__type__=='emlab.gen.domain.technology.PowerPlant' && ((it.constructionStartTime + it.actualPermittime + it.actualLeadtime) <= tick) && (it.dismantleTime > tick)}", + // "g.V.filter{it.__type__=='emlab.gen.domain.technology.PowerPlant' && + // ((it.constructionStartTime + it.actualPermittime + it.actualLeadtime) <= + // tick) && (it.dismantleTime > tick)}", // type = QueryType.Gremlin) // Iterable findOperationalPowerPlants(@Param("tick") long // tick); + @Query(value = "g.idx('__types__')[[className:'emlab.gen.domain.technology.PowerPlant']] .propertyFilter('dismantleTime', FilterPipe.Filter.GREATER_THAN, tick)", type = QueryType.Gremlin) + Iterable findAllPowerPlantsWhichAreNotDismantledBeforeTick(@Param("tick") long tick); + @Query(value = "g.idx('__types__')[[className:'emlab.gen.domain.technology.PowerPlant']] .propertyFilter('dismantleTime', FilterPipe.Filter.LESS_THAN, tick)", type = QueryType.Gremlin) Iterable findAllPowerPlantsDismantledBeforeTick(@Param("tick") long tick); + @Query(value = "g.idx('__types__')[[className:'emlab.gen.domain.technology.PowerPlant']].filter{it.constructionStartTime==tick}", type = QueryType.Gremlin) + Iterable findAllPowerPlantsWithConstructionStartTimeInTick(@Param("tick") long tick); + /** * Finds operational plants and gives them back as a list (only use for * current tick, since only officially dismantled powerplants and plants in @@ -99,9 +107,9 @@ public interface PowerPlantRepository extends GraphRepository { @Query(value = "g.idx('__types__')[[className:'emlab.gen.domain.technology.PowerPlant']].filter{(it.dismantleTime > tick) && ((it.constructionStartTime + it.actualPermittime + it.actualLeadtime) <= tick)}.sum{it.actualNominalCapacity};", type = QueryType.Gremlin) double calculateCapacityOfOperationalPowerPlants(@Param("tick") long tick); - @Query(value = "t = new Table();" + - "g.idx('__types__')[[className:'emlab.gen.domain.technology.PowerPlant']].filter{(it.dismantleTime > tick) && ((it.constructionStartTime + it.actualPermittime + it.actualLeadtime) <= tick)}.as('pp').out('TECHNOLOGY').as('ty').table(t){it.actualNominalCapacity}{it.peakSegmentDependentAvailability}.cap().next(); " + - "capacitySum = 0; for (row in t){capacitySum += row.get(0) * row.get(1);}; return capacitySum;" , type = QueryType.Gremlin) + @Query(value = "t = new Table();" + + "g.idx('__types__')[[className:'emlab.gen.domain.technology.PowerPlant']].filter{(it.dismantleTime > tick) && ((it.constructionStartTime + it.actualPermittime + it.actualLeadtime) <= tick)}.as('pp').out('TECHNOLOGY').as('ty').table(t){it.actualNominalCapacity}{it.peakSegmentDependentAvailability}.cap().next(); " + + "capacitySum = 0; for (row in t){capacitySum += row.get(0) * row.get(1);}; return capacitySum;", type = QueryType.Gremlin) double calculatePeakCapacityOfOperationalPowerPlants(@Param("tick") long tick); /** @@ -149,6 +157,11 @@ Iterable findOperationalPowerPlantsByTechnology(@Param("tech") Power public Iterable findOperationalPowerPlantsByPowerGridNode(@Param("gridnode") PowerGridNode node, @Param("tick") long tick); + @Query(value = "g.v(gridnode).in('LOCATION').as('x').out('TECHNOLOGY').filter{it.name==g.v(tech).name}.back('x').filter{(it.dismantleTime > tick) && ((tick - (it.constructionStartTime + it.actualPermittime + it.actualLeadtime)) <= 2)}", type = QueryType.Gremlin) + public Iterable findPowerPlantsOperationalSinceTwoYearsByPowerGridNodeAndTechnology( + @Param("gridnode") PowerGridNode node, @Param("tech") PowerGeneratingTechnology technology, + @Param("tick") long tick); + @Query("START owner=node({owner}), market=node({market}) " + "MATCH (owner)<-[:POWERPLANT_OWNER]-(plant), (market)-[:ZONE]->()<-[:REGION]-()<-[:LOCATION]-(plant)" + "RETURN plant") @@ -163,9 +176,9 @@ public Iterable findOperationalPowerPlantsInMarket(@Param("market") public double calculateCapacityOfOperationalPowerPlantsInMarket(@Param("market") ElectricitySpotMarket market, @Param("tick") long tick); - @Query(value = "t = new Table();" + - "g.v(market).out('ZONE').in('REGION').in('LOCATION').filter{it.__type__=='emlab.gen.domain.technology.PowerPlant'}.filter{((it.constructionStartTime + it.actualPermittime + it.actualLeadtime) <= tick) && (it.dismantleTime > tick)}.as('pp').out('TECHNOLOGY').as('ty').table(t){it.actualNominalCapacity}{it.peakSegmentDependentAvailability}.cap().next(); " + - "capacitySum = 0; for (row in t){capacitySum += row.get(0) * row.get(1);}; return capacitySum;" , type = QueryType.Gremlin) + @Query(value = "t = new Table();" + + "g.v(market).out('ZONE').in('REGION').in('LOCATION').filter{it.__type__=='emlab.gen.domain.technology.PowerPlant'}.filter{((it.constructionStartTime + it.actualPermittime + it.actualLeadtime) <= tick) && (it.dismantleTime > tick)}.as('pp').out('TECHNOLOGY').as('ty').table(t){it.actualNominalCapacity}{it.peakSegmentDependentAvailability}.cap().next(); " + + "capacitySum = 0; for (row in t){capacitySum += row.get(0) * row.get(1);}; return capacitySum;", type = QueryType.Gremlin) public double calculatePeakCapacityOfOperationalPowerPlantsInMarket(@Param("market") ElectricitySpotMarket market, @Param("tick") long tick); @@ -193,42 +206,37 @@ public double calculateCapacityOfExpectedOperationalPowerPlantsByNodeAndTechnolo @Param("node") PowerGridNode node, @Param("tech") PowerGeneratingTechnology technology, @Param("tick") long tick); - @Query(value = "result = g.v(market).out('ZONE').in('REGION').in('LOCATION').filter{it.__type__=='emlab.gen.domain.technology.PowerPlant'}.as('owner').out('POWERPLANT_OWNER').filter{it==g.v(owner)}.back('owner').filter{((it.constructionStartTime + it.actualPermittime + it.actualLeadtime) <= tick) && (it.expectedEndOfLife > tick)}.out('TECHNOLOGY').filter{it==g.v(tech)};", type = QueryType.Gremlin) + @Query(value = "result = g.v(market).out('ZONE').in('REGION').in('LOCATION').filter{it.__type__=='emlab.gen.domain.technology.PowerPlant'}.out('POWERPLANT_OWNER').filter{it==g.v(owner)}.in('POWERPLANT_OWNER').filter{((it.constructionStartTime + it.actualPermittime + it.actualLeadtime) <= tick) && (it.expectedEndOfLife > tick)}.out('TECHNOLOGY').filter{it==g.v(tech)};", type = QueryType.Gremlin) public Iterable findExpectedOperationalPowerPlantsInMarketByOwnerAndTechnology( @Param("market") ElectricitySpotMarket market, @Param("tech") PowerGeneratingTechnology technology, @Param("tick") long tick, @Param("owner") EnergyProducer owner); - @Query(value = "result = g.v(market).out('ZONE').in('REGION').in('LOCATION').filter{it.__type__=='emlab.gen.domain.technology.PowerPlant'}.as('owner').out('POWERPLANT_OWNER').filter{it==g.v(owner)}.back('owner').filter{((it.constructionStartTime + it.actualPermittime + it.actualLeadtime) <= tick) && (it.expectedEndOfLife > tick)}.as('x').out('TECHNOLOGY').filter{it==g.v(tech)}.back('x').sum{it.actualNominalCapacity};" + @Query(value = "result = g.v(market).out('ZONE').in('REGION').in('LOCATION').filter{it.__type__=='emlab.gen.domain.technology.PowerPlant'}.out('POWERPLANT_OWNER').filter{it==g.v(owner)}.in('POWERPLANT_OWNER').filter{((it.constructionStartTime + it.actualPermittime + it.actualLeadtime) <= tick) && (it.expectedEndOfLife > tick)}.as('x').out('TECHNOLOGY').filter{it==g.v(tech)}.back('x').sum{it.actualNominalCapacity};" + "if(result == null){return 0} else{return result}", type = QueryType.Gremlin) public double calculateCapacityOfExpectedOperationalPowerPlantsInMarketByOwnerAndTechnology( @Param("market") ElectricitySpotMarket market, @Param("tech") PowerGeneratingTechnology technology, @Param("tick") long tick, @Param("owner") EnergyProducer owner); - @Query(value = "result = g.v(owner).in('POWERPLANT_OWNER').filter{((it.constructionStartTime + it.actualPermittime + it.actualLeadtime) <= tick) && (it.expectedEndOfLife > tick)}.sum{it.actualNominalCapacity};" + @Query(value = "result = g.v(market).out('ZONE').in('REGION').in('LOCATION').filter{it.__type__=='emlab.gen.domain.technology.PowerPlant'}.out('POWERPLANT_OWNER').filter{it==g.v(owner)}.in('POWERPLANT_OWNER').filter{((it.constructionStartTime + it.actualPermittime + it.actualLeadtime) <= tick) && (it.expectedEndOfLife > tick)}.sum{it.actualNominalCapacity};" + "if(result == null){return 0} else{return result}", type = QueryType.Gremlin) - public double calculateCapacityOfExpectedOperationalPowerPlantsByOwner(@Param("tick") long tick, + public double calculateCapacityOfExpectedOperationalPowerPlantsInMarketByOwner( + @Param("market") ElectricitySpotMarket market, @Param("tick") long tick, @Param("owner") EnergyProducer owner); - @Query(value = "result = g.v(owner).in('POWERPLANT_OWNER').filter{((it.constructionStartTime + it.actualPermittime + it.actualLeadtime) <= tick) && (it.expectedEndOfLife > tick)}.as('x').out('TECHNOLOGY').filter{it.name==g.v(tech).name}.back('x').sum{it.actualNominalCapacity};" - + "if(result == null){return 0} else{return result}", type = QueryType.Gremlin) - public double calculateCapacityOfExpectedOperationalPowerPlantsByOwnerByTechnology(@Param("tick") long tick, - @Param("owner") EnergyProducer owner, @Param("tech") PowerGeneratingTechnology pgt); - @Query(value = "result = g.v(owner).in('POWERPLANT_OWNER').filter{it.expectedEndOfLife == tick}.as('x').out('TECHNOLOGY').filter{it.name==g.v(tech).name}.back('x').sum{it.actualNominalCapacity};" + "if(result == null){return 0} else{return result}", type = QueryType.Gremlin) public double calculateCapacityOfExpectedDismantledPowerPlantsByOwnerByTechnology(@Param("tick") long tick, @Param("owner") EnergyProducer owner, @Param("tech") PowerGeneratingTechnology pgt); - @Query(value = "result = g.v(market).out('ZONE').in('REGION').in('LOCATION').filter{it.__type__=='emlab.gen.domain.technology.PowerPlant'}.as('x').out('POWERPLANT_OWNER').filter{it==g.v(owner)}.back('x').filter{((it.constructionStartTime + it.actualPermittime + it.actualLeadtime) <= tick) && (it.expectedEndOfLife > tick)}.out('TECHNOLOGY');", type = QueryType.Gremlin) - public Iterable findExpectedOperationalPowerPlantsInMarketByOwner( - @Param("market") ElectricitySpotMarket market, @Param("tick") long tick, + @Query(value = "result = g.v(owner).in('POWERPLANT_OWNER').filter{((it.constructionStartTime + it.actualPermittime + it.actualLeadtime) <= tick) && (it.expectedEndOfLife > tick)}.sum{it.actualNominalCapacity};" + + "if(result == null){return 0} else{return result}", type = QueryType.Gremlin) + public double calculateCapacityOfExpectedOperationalPowerPlantsByOwner(@Param("tick") long tick, @Param("owner") EnergyProducer owner); - @Query(value = "result = g.v(market).out('ZONE').in('REGION').in('LOCATION').filter{it.__type__=='emlab.gen.domain.technology.PowerPlant'}.out('POWERPLANT_OWNER').filter{it==g.v(owner)}.in('POWERPLANT_OWNER').filter{((it.constructionStartTime + it.actualPermittime + it.actualLeadtime) <= tick) && (it.expectedEndOfLife > tick)}.sum{it.actualNominalCapacity};" + @Query(value = "result = g.v(owner).in('POWERPLANT_OWNER').filter{((it.constructionStartTime + it.actualPermittime + it.actualLeadtime) <= tick) && (it.expectedEndOfLife > tick)}.as('x').out('TECHNOLOGY').filter{it.name==g.v(tech).name}.back('x').sum{it.actualNominalCapacity};" + "if(result == null){return 0} else{return result}", type = QueryType.Gremlin) - public double calculateCapacityOfExpectedOperationalPowerPlantsInMarketByOwner( - @Param("market") ElectricitySpotMarket market, @Param("tick") long tick, - @Param("owner") EnergyProducer owner); + public double calculateCapacityOfExpectedOperationalPowerPlantsByOwnerByTechnology(@Param("tick") long tick, + @Param("owner") EnergyProducer owner, @Param("tech") PowerGeneratingTechnology pgt); @Query(value = "g.v(market).out('ZONE').in('REGION').in('LOCATION').filter{it.__type__=='emlab.gen.domain.technology.PowerPlant'}", type = QueryType.Gremlin) public Iterable findPowerPlantsInMarket(@Param("market") ElectricitySpotMarket market); @@ -259,10 +267,44 @@ public double calculateCapacityOfPowerPlantsByTechnologyInPipeline( public double calculateCapacityOfPowerPlantsByMarketInPipeline(@Param("market") ElectricitySpotMarket market, @Param("tick") long tick); + @Query(value = "g.v(market).out('ZONE').in('REGION').in('LOCATION').filter{it.__type__=='emlab.gen.domain.technology.PowerPlant'}.as('plant').filter{((it.constructionStartTime + it.actualPermittime + it.actualLeadtime) <= tick) && (it.dismantleTime > tick)}.sort{-it.ageFraction}_()", type = QueryType.Gremlin) + public Iterable findOperationalPowerPlantsByDescendingAgeFactorAndMarket( + @Param("market") ElectricitySpotMarket market, @Param("tick") long tick); + + @Query(value = "g.v(market).out('ZONE').in('REGION').in('LOCATION').filter{it.__type__=='emlab.gen.domain.technology.PowerPlant'}.as('plant').filter{((it.constructionStartTime + it.actualPermittime + it.actualLeadtime) <= tick) && (it.dismantleTime > tick)}.sort{it.profitability}_()", type = QueryType.Gremlin) + public Iterable findOperationalPowerPlantsByAscendingProfitabilityAndMarket( + @Param("market") ElectricitySpotMarket market, @Param("tick") long tick); + + @Query(value = "g.v(market).out('ZONE').in('REGION').in('LOCATION').filter{it.__type__=='emlab.gen.domain.technology.PowerPlant'}.as('plant').filter{((it.constructionStartTime + it.actualPermittime + it.actualLeadtime) <= tick) && (it.dismantleTime > tick)}.sort{-it.profitability}_()", type = QueryType.Gremlin) + public Iterable findOperationalPowerPlantsByDescendingProfitabilityAndMarket( + @Param("market") ElectricitySpotMarket market, @Param("tick") long tick); + + @Query(value = "g.v(market).out('ZONE').in('REGION').in('LOCATION').filter{it.__type__=='emlab.gen.domain.technology.PowerPlant'}.filter{((it.constructionStartTime + it.actualPermittime + it.actualLeadtime) <= tick)}", type = QueryType.Gremlin) + public Iterable findExpectedOperationalPowerPlantsInMarketWithoutDismantling( + @Param("market") ElectricitySpotMarket market, @Param("tick") long tick); + + @Query(value = "double counter=0;" + + "powerplants = g.v(market).out('ZONE').in('REGION').in('LOCATION').filter{it.__type__=='emlab.gen.domain.technology.PowerPlant'}.filter{((it.constructionStartTime + it.actualPermittime + it.actualLeadtime) <= tick) && (it.dismantleTime > tick)};" + + "for (pp in powerplants) {" + "capacity = pp.actualNominalCapacity.next();" + + "peak=pp.out('TECHNOLOGY').peakSegmentDependentAvailability.next();" + "result = capacity*peak;" + + "counter = counter+result };" + "return counter", type = QueryType.Gremlin) + public double calculatePeakCapacityOfPowerPlantsByMarketTime(@Param("market") ElectricitySpotMarket market, + @Param("tick") long tick); + @Query(value = "substanceShares = g.v(substance).in('SUBSTANCE').filter{it.__type__=='emlab.gen.domain.technology.SubstanceShareInFuelMix'};" + "sum=substanceShares.sum{it.share}; if(sum!=null) return sum else return 0;;", type = QueryType.Gremlin) public double calculateSubstanceUsage(@Param("substance") Substance substance); + @Query(value = "g.v(market).out('ZONE').in('REGION').in('LOCATION').filter{it.__type__=='emlab.gen.domain.technology.PowerPlant'}.filter{((it.constructionStartTime + it.actualPermittime + it.actualLeadtime) <= tick) && (it.expectedEndOfLife > tick) && it.profitability>=0}", type = QueryType.Gremlin) + public Iterable findExpectedOperationalProfitablePowerPlantsInMarket( + @Param("market") ElectricitySpotMarket market, @Param("tick") long tick); + + @Query(value = "t = new Table();" + + "g.v(market).out('ZONE').in('REGION').in('LOCATION').filter{it.__type__=='emlab.gen.domain.technology.PowerPlant'}.filter{((it.constructionStartTime + it.actualPermittime + it.actualLeadtime) <= tick) && (it.dismantleTime > tick)}.as('pp').out('TECHNOLOGY').as('ty').table(t){it.actualNominalCapacity}{it.baseSegmentDependentAvailability}.cap().next(); " + + "capacitySum = 0; for (row in t){capacitySum += row.get(0) * row.get(1);}; return capacitySum;", type = QueryType.Gremlin) + public double calculateBaseCapacityOfOperationalPowerPlantsInMarket(@Param("market") ElectricitySpotMarket market, + @Param("tick") long tick); + @Query(value = "g.v(gridnode).in('LOCATION').filter{(it.__type__=='emlab.gen.domain.technology.PowerPlant')}.as('p').out('TECHNOLOGY').filter{it.intermittent == true}.back('p').filter{((it.constructionStartTime + it.actualPermittime + it.actualLeadtime) <= tick) && (it.dismantleTime > tick)}", type = QueryType.Gremlin) Iterable findOperationalIntermittentPowerPlantsByPowerGridNode(@Param("gridnode") PowerGridNode node, @Param("tick") long tick); @@ -277,10 +319,59 @@ Iterable findOperationalIntermittentPowerPlantsByPowerGridNodeAndTec @Param("gridnode") PowerGridNode node, @Param("technology") PowerGeneratingTechnology powerGeneratingTechnology, @Param("tick") long tick); + @Query(value = "g.v(gridnode).in('LOCATION').filter{(it.__type__=='emlab.gen.domain.technology.PowerPlant')}.as('p').out('TECHNOLOGY').filter{it==g.v(technology)}.back('p').filter{((it.constructionStartTime + it.actualPermittime + it.actualLeadtime) <= tick) && (it.dismantleTime > tick)}", type = QueryType.Gremlin) + Iterable findOperationalPowerPlantsByPowerGridNodeAndTechnology(@Param("gridnode") PowerGridNode node, + @Param("technology") PowerGeneratingTechnology powerGeneratingTechnology, @Param("tick") long tick); + + @Query(value = "g.v(gridnode).in('LOCATION').filter{(it.__type__=='emlab.gen.domain.technology.PowerPlant')}.as('p').out('TECHNOLOGY').filter{it==g.v(technology)}.back('p').filter{((it.constructionStartTime + it.actualPermittime + it.actualLeadtime) == tick) && (it.dismantleTime > tick)}", type = QueryType.Gremlin) + Iterable findPowerPlantsStartingOperationThisTickByPowerGridNodeAndTechnology( + @Param("gridnode") PowerGridNode node, + @Param("technology") PowerGeneratingTechnology powerGeneratingTechnology, @Param("tick") long tick); + @Query(value = "result = g.v(gridnode).in('LOCATION').filter{(it.__type__=='emlab.gen.domain.technology.PowerPlant')}.as('p').out('TECHNOLOGY').filter{it.intermittent == true && it==g.v(technology)}.back('p').filter{((it.constructionStartTime + it.actualPermittime + it.actualLeadtime) <= tick) && (it.dismantleTime > tick)}.sum{it.actualNominalCapacity};" + "if(result == null){return 0;} else{return result;}", type = QueryType.Gremlin) double calculateCapacityOfOperationalIntermittentPowerPlantsByPowerGridNodeAndTechnology( @Param("gridnode") PowerGridNode node, @Param("technology") PowerGeneratingTechnology powerGeneratingTechnology, @Param("tick") long tick); + @Query(value = "result=g.v(plant).in('REGARDING_POWERPLANT').propertyFilter('type', FilterPipe.Filter.EQUAL, 1).propertyFilter('time', FilterPipe.Filter.EQUAL, tick).money.sum(); if(result==null){result=0}; return result", type = QueryType.Gremlin) + double calculateSpotMarketRevenueOfPowerPlant(@Param("plant") PowerPlant plant, @Param("tick") long tick); + + @Query(value = "result=g.v(plant).in('REGARDING_POWERPLANT').propertyFilter('type', FilterPipe.Filter.EQUAL, 2).propertyFilter('time', FilterPipe.Filter.EQUAL, tick).money.sum(); if(result==null){result=0}; return result", type = QueryType.Gremlin) + double calculateLongTermContractRevenueOfPowerPlant(@Param("plant") PowerPlant plant, @Param("tick") long tick); + + @Query(value = "result=g.v(plant).in('REGARDING_POWERPLANT').propertyFilter('type', FilterPipe.Filter.EQUAL, 10).propertyFilter('time', FilterPipe.Filter.EQUAL, tick).money.sum(); if(result==null){result=0}; return result", type = QueryType.Gremlin) + double calculateStrategicReserveRevenueOfPowerPlant(@Param("plant") PowerPlant plant, @Param("tick") long tick); + + @Query(value = "result=g.v(plant).in('REGARDING_POWERPLANT').propertyFilter('type', FilterPipe.Filter.EQUAL, 11).propertyFilter('time', FilterPipe.Filter.EQUAL, tick).money.sum(); if(result==null){result=0}; return result", type = QueryType.Gremlin) + double calculateCapacityMarketRevenueOfPowerPlant(@Param("plant") PowerPlant plant, @Param("tick") long tick); + + @Query(value = "result=g.v(plant).in('REGARDING_POWERPLANT').propertyFilter('type', FilterPipe.Filter.EQUAL, 12).propertyFilter('time', FilterPipe.Filter.EQUAL, tick).money.sum(); if(result==null){result=0}; return result", type = QueryType.Gremlin) + double calculateCO2HedgingRevenueOfPowerPlant(@Param("plant") PowerPlant plant, @Param("tick") long tick); + + @Query(value = "result=g.v(plant).in('REGARDING_POWERPLANT').filter{it.type==5 || it.type==6 || it.type==9}.propertyFilter('time', FilterPipe.Filter.EQUAL, tick).money.sum(); if(result==null){result=0}; return result", type = QueryType.Gremlin) + double calculateCO2CostsOfPowerPlant(@Param("plant") PowerPlant plant, @Param("tick") long tick); + + @Query(value = "result=g.v(plant).in('REGARDING_POWERPLANT').filter{it.type==3 || it.type==7 || it.type==8}.propertyFilter('time', FilterPipe.Filter.EQUAL, tick).money.sum(); if(result==null){result=0}; return result", type = QueryType.Gremlin) + double calculateFixedCostsOfPowerPlant(@Param("plant") PowerPlant plant, @Param("tick") long tick); + + @Query(value = "ppdps=g.v(plant).in('POWERPLANT_DISPATCHPLAN').filter{it.time==tick}.propertyFilter('forecast', FilterPipe.Filter.EQUAL, false); sum=0;" + + "fullLoadHours=0;" + "for(ppdp in ppdps){" + + "totalAmount = ppdp.getProperty('acceptedAmount') + ppdp.getProperty('capacityLongTermContract');" + + "if(totalAmount==null) totalAmount=0;" + + "hoursInSegment = ppdp.out('SEGMENT_DISPATCHPLAN').next().getProperty('lengthInHours');" + + "production = totalAmount * hoursInSegment;" + + "fullLoadHours = fullLoadHours + hoursInSegment * totalAmount / (ppdp.out('POWERPLANT_DISPATCHPLAN').next().actualNominalCapacity *1.0d);" + + "}; return fullLoadHours;", type = QueryType.Gremlin) + double calculateFullLoadHoursOfPowerPlant(@Param("plant") PowerPlant plant, @Param("tick") long tick); + + @Query(value = "g.v(market).out('ZONE').in('REGION').in('LOCATION').filter{(it.__type__=='emlab.gen.domain.technology.PowerPlant')}.as('p').out('TECHNOLOGY').filter{it==g.v(technology)}.back('p').filter{((it.constructionStartTime + it.actualPermittime + it.actualLeadtime) <= tick) && (it.dismantleTime > tick)}", type = QueryType.Gremlin) + Iterable findOperationalPowerPlantsByMarketAndTechnology(@Param("market") ElectricitySpotMarket market, + @Param("technology") PowerGeneratingTechnology powerGeneratingTechnology, @Param("tick") long tick); + + @Query(value = "result = g.v(market).out('ZONE').in('REGION').in('LOCATION').filter{it.__type__=='emlab.gen.domain.technology.PowerPlant'}.as('x').out('POWERPLANT_OWNER').filter{it==g.v(owner)}.back('x').filter{((it.constructionStartTime + it.actualPermittime + it.actualLeadtime) <= tick) && (it.expectedEndOfLife > tick)}.out('TECHNOLOGY');", type = QueryType.Gremlin) + public Iterable findExpectedOperationalPowerPlantsInMarketByOwner( + @Param("market") ElectricitySpotMarket market, @Param("tick") long tick, + @Param("owner") EnergyProducer owner); + } diff --git a/emlab-generation/src/main/java/emlab/gen/repository/RegulatorRepository.java b/emlab-generation/src/main/java/emlab/gen/repository/RegulatorRepository.java new file mode 100644 index 00000000..fd0b6eb9 --- /dev/null +++ b/emlab-generation/src/main/java/emlab/gen/repository/RegulatorRepository.java @@ -0,0 +1,52 @@ +/******************************************************************************* + * Copyright 2013 the original author or authors. + * + * Licensed 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. + ******************************************************************************/ +/******************************************************************************* + * Copyright 2013 the original author or authors. + * + * Licensed 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. + ******************************************************************************/ +package emlab.gen.repository; + +import org.springframework.data.neo4j.annotation.Query; +import org.springframework.data.neo4j.annotation.QueryType; +import org.springframework.data.neo4j.repository.GraphRepository; +import org.springframework.data.repository.query.Param; +import org.springframework.stereotype.Repository; + +import emlab.gen.domain.agent.Regulator; +import emlab.gen.domain.gis.Zone; + +/** + * @author Kaveri + * + */ +@Repository +public interface RegulatorRepository extends GraphRepository { + + @Query(value = "g.v(zone).in('OF_ZONE')", type = QueryType.Gremlin) + public Regulator findRegulatorForZone(@Param("zone") Zone zone); + +} \ No newline at end of file diff --git a/emlab-generation/src/main/java/emlab/gen/repository/RelativeRenewableTargetRepository.java b/emlab-generation/src/main/java/emlab/gen/repository/RelativeRenewableTargetRepository.java new file mode 100644 index 00000000..0a0a2b39 --- /dev/null +++ b/emlab-generation/src/main/java/emlab/gen/repository/RelativeRenewableTargetRepository.java @@ -0,0 +1,37 @@ +/******************************************************************************* + * Copyright 2013 the original author or authors. + * + * Licensed 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. + ******************************************************************************/ +package emlab.gen.repository; + +import org.springframework.data.neo4j.annotation.Query; +import org.springframework.data.neo4j.annotation.QueryType; +import org.springframework.data.neo4j.repository.GraphRepository; +import org.springframework.data.repository.query.Param; + +import emlab.gen.domain.gis.Zone; +import emlab.gen.domain.policy.renewablesupport.RelativeRenewableTarget; + +/** + * @author Kaveri3012 + * + */ +public interface RelativeRenewableTargetRepository extends GraphRepository { + + // when location specific, modify the foll. to node, else there will be + // several targets per regulator + @Query(value = "result = g.v(zone).in('OF_ZONE').out('SET_BY_REGULATOR')", type = QueryType.Gremlin) + RelativeRenewableTarget findOneByZone(@Param("zone") Zone zone); + +} diff --git a/emlab-generation/src/main/java/emlab/gen/repository/RenewableSupportSchemeRepository.java b/emlab-generation/src/main/java/emlab/gen/repository/RenewableSupportSchemeRepository.java new file mode 100644 index 00000000..8751ee3d --- /dev/null +++ b/emlab-generation/src/main/java/emlab/gen/repository/RenewableSupportSchemeRepository.java @@ -0,0 +1,28 @@ +/******************************************************************************* + * Copyright 2013 the original author or authors. + * + * Licensed 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. + ******************************************************************************/ +package emlab.gen.repository; + +import org.springframework.data.neo4j.repository.GraphRepository; + +import emlab.gen.domain.policy.renewablesupport.RenewableSupportFipScheme; + +/** + * @author Kaveri3012 + * + */ +public interface RenewableSupportSchemeRepository extends GraphRepository { + +} diff --git a/emlab-generation/src/main/java/emlab/gen/repository/Reps.java b/emlab-generation/src/main/java/emlab/gen/repository/Reps.java index 33f872c3..d97449b7 100644 --- a/emlab-generation/src/main/java/emlab/gen/repository/Reps.java +++ b/emlab-generation/src/main/java/emlab/gen/repository/Reps.java @@ -89,6 +89,9 @@ public class Reps { @Autowired public PowerGeneratingTechnologyNodeLimitRepository powerGeneratingTechnologyNodeLimitRepository; + @Autowired + public InterconnectorRepository interconnectorRepository; + @Autowired public StrategicReserveOperatorRepository strategicReserveOperatorRepository; @@ -98,4 +101,28 @@ public class Reps { @Autowired public IntermittentTechnologyNodeLoadFactorRepository intermittentTechnologyNodeLoadFactorRepository; + @Autowired + public CapacityMarketRepository capacityMarketRepository; + + @Autowired + public CapacityClearingPointRepository capacityClearingPointRepository; + + @Autowired + public RegulatorRepository regulatorRepository; + + @Autowired + public CapacityDispatchPlanRepository capacityDispatchPlanRepository; + + @Autowired + public RenewableSupportSchemeRepository renewableSupportSchemeRepository; + + @Autowired + public FinancialPowerPlantReportRepository financialPowerPlantReportRepository; + + @Autowired + public BaseCostFipRepository baseCostFipRepository; + + @Autowired + public SupportPriceContractRepository supportPriceContractRepository; + } diff --git a/emlab-generation/src/main/java/emlab/gen/repository/SegmentClearingPointRepository.java b/emlab-generation/src/main/java/emlab/gen/repository/SegmentClearingPointRepository.java index 1d48e432..754130a7 100644 --- a/emlab-generation/src/main/java/emlab/gen/repository/SegmentClearingPointRepository.java +++ b/emlab-generation/src/main/java/emlab/gen/repository/SegmentClearingPointRepository.java @@ -34,12 +34,17 @@ Iterable findAllSegmentClearingPointsForTime(@Param("time" Iterable findAllSegmentClearingPointsForSegmentAndTime(@Param("time") long time, @Param("segment") Segment segment, @Param("forecast") boolean forecast); - // @Query("START segment = node({segment}), market=node({market}) MATCH (segment)<-[:SEGMENT_POINT]-(scp)-[:MARKET_POINT]->(market) WHERE (scp.time = {time}) RETURN scp") - // SegmentClearingPoint findOneSegmentClearingPointForMarketSegmentAndTime(@Param("time") long time, @Param("segment") Segment segment, + // @Query("START segment = node({segment}), market=node({market}) MATCH + // (segment)<-[:SEGMENT_POINT]-(scp)-[:MARKET_POINT]->(market) WHERE + // (scp.time = {time}) RETURN scp") + // SegmentClearingPoint + // findOneSegmentClearingPointForMarketSegmentAndTime(@Param("time") long + // time, @Param("segment") Segment segment, // @Param("market") ElectricitySpotMarket electricitySpotMarket); @Query(value = "g.v(segment).in('SEGMENT_POINT').propertyFilter('time', FilterPipe.Filter.EQUAL, time).propertyFilter('forecast', FilterPipe.Filter.EQUAL, forecast).as('x').out('MARKET_POINT').idFilter(market, FilterPipe.Filter.EQUAL).back('x')", type = QueryType.Gremlin) - SegmentClearingPoint findOneSegmentClearingPointForMarketSegmentAndTime(@Param("time") long time, @Param("segment") Segment segment, - @Param("market") ElectricitySpotMarket electricitySpotMarket, + SegmentClearingPoint findOneSegmentClearingPointForMarketSegmentAndTime(@Param("time") long time, + @Param("segment") Segment segment, @Param("market") ElectricitySpotMarket electricitySpotMarket, @Param("forecast") boolean forecast); + } diff --git a/emlab-generation/src/main/java/emlab/gen/repository/SegmentLoadRepository.java b/emlab-generation/src/main/java/emlab/gen/repository/SegmentLoadRepository.java index 980873b2..6923c8fc 100644 --- a/emlab-generation/src/main/java/emlab/gen/repository/SegmentLoadRepository.java +++ b/emlab-generation/src/main/java/emlab/gen/repository/SegmentLoadRepository.java @@ -45,6 +45,9 @@ public interface SegmentLoadRepository extends GraphRepository { @Query("start segment=node({segment}) match (segment)<-[:SEGMENTLOAD_SEGMENT]-(segmentload) return segmentload") public Iterable findAllSegmentLoadsBySegment(@Param("segment") Segment segment); + @Query("start segment=node({segment}) match (segment)<-[:SEGMENTLOAD_SEGMENT]-(segmentload) return segmentload") + public SegmentLoad getSegmentLoadBySegment(@Param("segment") Segment segment); + /** * Finds the segment load for a certain segment and market * @@ -64,4 +67,9 @@ public interface SegmentLoadRepository extends GraphRepository { @Query(value = "g.v(zone).in('ZONE').filter{it.__type__=='emlab.gen.domain.market.electricity.ElectricitySpotMarket'}.outE('SEGMENT_LOAD').inV.max{it.baseLoad}.baseLoad", type = QueryType.Gremlin) double peakLoadbyZoneMarketandTime(@Param("zone") Zone zone, @Param("market") ElectricitySpotMarket market); + @Query(value = "topsegments = g.v(market).out('SEGMENT_LOAD').max{it.baseLoad}.baseLoad;" + + "try{growthfactors = g.v(market).out('DEMANDGROWTH_TREND').collect{f.getTrendValue(it, tick)}[0];} catch(Exception e){" + + "growthfactors=g.v(market).out('DEMANDGROWTH_TREND').timeSeries.next()[tick.toInteger()]};" + + "adjustedTopSegments = topsegments*growthfactors;" + "return[adjustedTopSegments]", type = QueryType.Gremlin) + double peakLoadbyMarketandTime(@Param("market") ElectricitySpotMarket market, @Param("tick") long tick); } diff --git a/emlab-generation/src/main/java/emlab/gen/repository/SegmentRepository.java b/emlab-generation/src/main/java/emlab/gen/repository/SegmentRepository.java index 6bedadce..3afdc088 100644 --- a/emlab-generation/src/main/java/emlab/gen/repository/SegmentRepository.java +++ b/emlab-generation/src/main/java/emlab/gen/repository/SegmentRepository.java @@ -15,12 +15,27 @@ ******************************************************************************/ package emlab.gen.repository; +import org.springframework.data.neo4j.annotation.Query; +import org.springframework.data.neo4j.annotation.QueryType; import org.springframework.data.neo4j.repository.GraphRepository; +import org.springframework.data.repository.query.Param; import org.springframework.stereotype.Repository; +import emlab.gen.domain.market.electricity.ElectricitySpotMarket; import emlab.gen.domain.market.electricity.Segment; @Repository public interface SegmentRepository extends GraphRepository { + @Query(value = "g.v(market).out('SEGMENT_LOAD').out('SEGMENTLOAD_SEGMENT').filter{it.segmentID==1}", type = QueryType.Gremlin) + public Segment findPeakSegmentforMarket(@Param("market") ElectricitySpotMarket market); + + @Query(value = "g.v(market).out('SEGMENT_LOAD').out.sort{-it.segmentID}.next()", type = QueryType.Gremlin) + public Segment findBaseSegmentforMarket(@Param("market") ElectricitySpotMarket market); + + @Query(value = "g.v(market).out('SEGMENT_LOAD').out.sort{it.segmentID}_()", type = QueryType.Gremlin) + public Iterable findSegmentforMarketSortedbySegmentID(@Param("market") ElectricitySpotMarket market); + + @Query(value = "g.v(market).out('SEGMENT_LOAD').out", type = QueryType.Gremlin) + public Iterable findSegmentforMarket(@Param("market") ElectricitySpotMarket market); } diff --git a/emlab-generation/src/main/java/emlab/gen/repository/SupportPriceContractRepository.java b/emlab-generation/src/main/java/emlab/gen/repository/SupportPriceContractRepository.java new file mode 100644 index 00000000..aec53888 --- /dev/null +++ b/emlab-generation/src/main/java/emlab/gen/repository/SupportPriceContractRepository.java @@ -0,0 +1,38 @@ +/******************************************************************************* + * Copyright 2013 the original author or authors. + * + * Licensed 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. + ******************************************************************************/ +package emlab.gen.repository; + +import org.springframework.data.neo4j.annotation.Query; +import org.springframework.data.neo4j.annotation.QueryType; +import org.springframework.data.neo4j.repository.GraphRepository; +import org.springframework.data.repository.query.Param; +import org.springframework.stereotype.Repository; + +import emlab.gen.domain.policy.renewablesupport.SupportPriceContract; +import emlab.gen.domain.technology.PowerPlant; + +/** + * @author Kaveri3012 + * + */ + +@Repository +public interface SupportPriceContractRepository extends GraphRepository { + + @Query(value = "g.v(plant).in('CONTRACT_FOR_POWERPLANT')", type = QueryType.Gremlin) + SupportPriceContract findOneContractByPowerPlant(@Param("plant") PowerPlant plant); + +} diff --git a/emlab-generation/src/main/java/emlab/gen/repository/TargetInvestorRepository.java b/emlab-generation/src/main/java/emlab/gen/repository/TargetInvestorRepository.java index 449e85d4..5a05e14b 100644 --- a/emlab-generation/src/main/java/emlab/gen/repository/TargetInvestorRepository.java +++ b/emlab-generation/src/main/java/emlab/gen/repository/TargetInvestorRepository.java @@ -27,8 +27,16 @@ * @author JCRichstein * */ -public interface TargetInvestorRepository extends -GraphRepository { +public interface TargetInvestorRepository extends GraphRepository { + + @Query(value = "result = g.v(market).in('INVESTOR_MARKET').next(); ; if(!result.hasNext()){return null;} else{return result.next();}", type = QueryType.Gremlin) + TargetInvestor findOneByMarket(@Param("market") ElectricitySpotMarket electricitySpotMarket); + + @Query(value = "result = g.v(market).in('INVESTOR_MARKET').next();", type = QueryType.Gremlin) + TargetInvestor findInvestorByMarket(@Param("market") ElectricitySpotMarket electricitySpotMarket); + + @Query(value = "result = g.v(market).in('INVESTOR_MARKET').filter{it.__type__=='emlab.gen.domain.agent.TargetInvestor'};", type = QueryType.Gremlin) + TargetInvestor findTargetInvestorByMarket(@Param("market") ElectricitySpotMarket electricitySpotMarket); @Query(value = "g.idx('__types__')[[className:'emlab.gen.domain.agent.TargetInvestor']].as('x').out('INVESTOR_MARKET').idFilter(market, FilterPipe.Filter.EQUAL).back('x')", type = QueryType.Gremlin) Iterable findAllByMarket(@Param("market") ElectricitySpotMarket electricitySpotMarket); diff --git a/emlab-generation/src/main/java/emlab/gen/role/AbstractEnergyProducerRole.java b/emlab-generation/src/main/java/emlab/gen/role/AbstractEnergyProducerRole.java index e2f3a1cc..b87f08e5 100644 --- a/emlab-generation/src/main/java/emlab/gen/role/AbstractEnergyProducerRole.java +++ b/emlab-generation/src/main/java/emlab/gen/role/AbstractEnergyProducerRole.java @@ -76,7 +76,7 @@ public double calculateExpectedMarginalCostExclCO2MarketCost(PowerPlant powerPla double mc = 0d; mc += calculateExpectedMarginalFuelCost(powerPlant, forecastedFuelPrices); mc += calculateCO2TaxMarginalCost(powerPlant, tick); - logger.info("Margincal cost excluding CO2 auction/market cost for plant {} is {}", powerPlant.getName(), mc); + logger.info("Marginal cost excluding CO2 auction/market cost for plant {} is {}", powerPlant.getName(), mc); return mc; } @@ -95,7 +95,8 @@ public double calculateMarginalFuelCost(PowerPlant powerPlant, long clearingTick return fc; } - public double calculateExpectedMarginalFuelCost(PowerPlant powerPlant, Map forecastedFuelPrices) { + public double calculateExpectedMarginalFuelCost(PowerPlant powerPlant, + Map forecastedFuelPrices) { double fc = 0d; // fuel cost for each fuel for (SubstanceShareInFuelMix mix : powerPlant.getFuelMix()) { @@ -111,16 +112,18 @@ public double calculateExpectedMarginalFuelCost(PowerPlant powerPlant, Map calculateFuelMix(PowerPlant plant, Map substancePriceMap, double co2Price) { + public Set calculateFuelMix(PowerPlant plant, Map substancePriceMap, + double co2Price) { double efficiency = plant.getActualEfficiency(); - Set fuelMix = (plant.getFuelMix() == null) ? new HashSet() : plant.getFuelMix(); + Set fuelMix = (plant.getFuelMix() == null) ? new HashSet() + : plant.getFuelMix(); int numberOfFuels = substancePriceMap.size(); if (numberOfFuels == 0) { @@ -372,8 +381,10 @@ public Set calculateFuelMix(PowerPlant plant, Map= qmin - // so that the fuelquality weighted by the mass percentages is greater than the minimum fuel quality. + // The equation is derived from (example for 2 fuels): q1 * x1 / + // (x1+x2) + q2 * x2 / (x1+x2) >= qmin + // so that the fuelquality weighted by the mass percentages is + // greater than the minimum fuel quality. constraints.add(new LinearConstraint(fuelQuality, Relationship.GEQ, 0)); try { @@ -396,14 +407,15 @@ public Set calculateFuelMix(PowerPlant plant, Map determineExpectedCO2PriceInclTa } /** - * Calculates expected CO2 price based on a geometric trend estimation, of the past years. The adjustmentForDetermineFuelMix needs to be set to 1, if this is used in the determine - * fuel mix role. + * Calculates expected CO2 price based on a geometric trend estimation, of + * the past years. The adjustmentForDetermineFuelMix needs to be set to 1, + * if this is used in the determine fuel mix role. * - * @param futureTimePoint Year the prediction is made for - * @param yearsLookingBackForRegression How many years are used as input for the regression, incl. the current tick. + * @param futureTimePoint + * Year the prediction is made for + * @param yearsLookingBackForRegression + * How many years are used as input for the regression, incl. the + * current tick. * @return */ protected HashMap determineExpectedCO2PriceInclTax(long futureTimePoint, long yearsLookingBackForRegression, int adjustmentForDetermineFuelMix, long clearingTick) { HashMap co2Prices = new HashMap(); CO2Auction co2Auction = reps.marketRepository.findCO2Auction(); - //Find Clearing Points for the last 5 years (counting current year as one of the last 5 years). + // Find Clearing Points for the last 5 years (counting current year as + // one of the last 5 years). Iterable cps = reps.clearingPointRepository.findAllClearingPointsForMarketAndTimeRange( co2Auction, clearingTick - yearsLookingBackForRegression + 1 - adjustmentForDetermineFuelMix, clearingTick - adjustmentForDetermineFuelMix, false); @@ -502,18 +527,19 @@ protected HashMap determineExpectedCO2PriceInclTa } averagePrice = averagePrice / i; double expectedCO2Price; - if(i>1){ + if (i > 1) { expectedCO2Price = sr.predict(futureTimePoint); expectedCO2Price = Math.max(0, expectedCO2Price); expectedCO2Price = Math.min(expectedCO2Price, government.getCo2Penalty(futureTimePoint)); - }else{ + } else { expectedCO2Price = lastPrice; } // Calculate average of regression and past average: expectedCO2Price = (expectedCO2Price + averagePrice) / 2; for (ElectricitySpotMarket esm : reps.marketRepository.findAllElectricitySpotMarkets()) { - double nationalCo2MinPriceinFutureTick = reps.nationalGovernmentRepository.findNationalGovernmentByElectricitySpotMarket(esm) - .getMinNationalCo2PriceTrend().getValue(futureTimePoint); + double nationalCo2MinPriceinFutureTick = reps.nationalGovernmentRepository + .findNationalGovernmentByElectricitySpotMarket(esm).getMinNationalCo2PriceTrend() + .getValue(futureTimePoint); double co2PriceInCountry = 0d; if (expectedCO2Price > nationalCo2MinPriceinFutureTick) { co2PriceInCountry = expectedCO2Price; @@ -543,8 +569,8 @@ public Map predictFuelPrices(long numberOfYearsBacklookingFor // Find Clearing Points for the last 5 years (counting current year // as one of the last 5 years). Iterable cps = reps.clearingPointRepository - .findAllClearingPointsForSubstanceTradedOnCommodityMarkesAndTimeRange(substance, getCurrentTick() - - (numberOfYearsBacklookingForForecasting - 1), getCurrentTick(), false); + .findAllClearingPointsForSubstanceTradedOnCommodityMarkesAndTimeRange(substance, + getCurrentTick() - (numberOfYearsBacklookingForForecasting - 1), getCurrentTick(), false); // logger.warn("{}, {}", // getCurrentTick()-(agent.getNumberOfYearsBacklookingForForecasting()-1), // getCurrentTick()); @@ -557,11 +583,10 @@ public Map predictFuelPrices(long numberOfYearsBacklookingFor } double forecast = gtr.predict(futureTimePoint); if (Double.isNaN(forecast)) { - expectedFuelPrices.put( - substance, + expectedFuelPrices.put(substance, reps.clearingPointRepositoryOld.findClearingPointForMarketAndTime( reps.marketRepository.findFirstMarketBySubstance(substance), getCurrentTick(), false) - .getPrice()); + .getPrice()); } else { expectedFuelPrices.put(substance, forecast); } diff --git a/emlab-generation/src/main/java/emlab/gen/role/DecarbonizationModelRole.java b/emlab-generation/src/main/java/emlab/gen/role/DecarbonizationModelRole.java index 5dbe6f1a..657aceb9 100644 --- a/emlab-generation/src/main/java/emlab/gen/role/DecarbonizationModelRole.java +++ b/emlab-generation/src/main/java/emlab/gen/role/DecarbonizationModelRole.java @@ -1,12 +1,12 @@ /******************************************************************************* * Copyright 2012 the original author or authors. - * + * * Licensed 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. @@ -31,16 +31,21 @@ import emlab.gen.domain.agent.StrategicReserveOperator; import emlab.gen.domain.agent.TargetInvestor; import emlab.gen.domain.market.CommodityMarket; +import emlab.gen.domain.market.capacity.CapacityMarket; import emlab.gen.domain.market.electricity.ElectricitySpotMarket; +import emlab.gen.domain.policy.renewablesupport.RenewableSupportFipScheme; import emlab.gen.repository.Reps; +import emlab.gen.role.capacitymarket.SimpleCapacityMarketMainRole; import emlab.gen.role.capacitymechanisms.ProcessAcceptedPowerPlantDispatchRoleinSR; import emlab.gen.role.capacitymechanisms.StrategicReserveOperatorRole; import emlab.gen.role.co2policy.MarketStabilityReserveRole; import emlab.gen.role.co2policy.RenewableAdaptiveCO2CapRole; +import emlab.gen.role.investment.DismantlePowerPlantOperationalLossRole; import emlab.gen.role.investment.DismantlePowerPlantPastTechnicalLifetimeRole; import emlab.gen.role.investment.GenericInvestmentRole; import emlab.gen.role.market.ClearCommodityMarketRole; import emlab.gen.role.market.ClearIterativeCO2AndElectricitySpotMarketTwoCountryRole; +import emlab.gen.role.market.CreatingFinancialReports; import emlab.gen.role.market.DetermineResidualLoadCurvesForTwoCountriesRole; import emlab.gen.role.market.ProcessAcceptedBidsRole; import emlab.gen.role.market.ProcessAcceptedPowerPlantDispatchRole; @@ -56,6 +61,8 @@ import emlab.gen.role.operating.PayCO2TaxRole; import emlab.gen.role.operating.PayForLoansRole; import emlab.gen.role.operating.PayOperatingAndMaintainanceCostsRole; +import emlab.gen.role.renewablesupport.ComputePremiumRole; +import emlab.gen.role.renewablesupport.FeedInPremiumRole; /** * Main model role. @@ -64,7 +71,7 @@ * */ @ScriptComponent -public class DecarbonizationModelRole extends AbstractRole implements Role { +public class DecarbonizationModelRole extends AbstractRoleimplements Role { @Autowired private PayCO2TaxRole payCO2TaxRole; @@ -107,11 +114,22 @@ public class DecarbonizationModelRole extends AbstractRole @Autowired private ProcessAcceptedPowerPlantDispatchRoleinSR acceptedPowerPlantDispatchRoleinSR; @Autowired + private DismantlePowerPlantOperationalLossRole dismantlePowerPlantOperationalLossRole; + @Autowired private RenewableAdaptiveCO2CapRole renewableAdaptiveCO2CapRole; @Autowired MarketStabilityReserveRole marketStabilityReserveRole; @Autowired private DetermineResidualLoadCurvesForTwoCountriesRole determineResidualLoadCurve; + @Autowired + private SimpleCapacityMarketMainRole simpleCapacityMarketMainRole; + @Autowired + private CreatingFinancialReports creatingFinancialReports; + + @Autowired + private FeedInPremiumRole feedInPremiumRole; + @Autowired + private ComputePremiumRole computePremiumRole; @Autowired Reps reps; @@ -143,20 +161,42 @@ public void act(DecarbonizationModel model) { if (model.isRealRenewableDataImplemented()) determineResidualLoadCurve.act(model); - logger.warn(" 0. Dismantling & paying loans"); - for (EnergyProducer producer : reps.genericRepository.findAllAtRandom(EnergyProducer.class)) { - dismantlePowerPlantRole.act(producer); - payForLoansRole.act(producer); - // producer.act(dismantlePowerPlantRole); - // producer.act(payForLoansRole); - } + // logger.warn(" 0. Dismantling & paying loans"); + // for (EnergyProducer producer : + // reps.genericRepository.findAllAtRandom(EnergyProducer.class)) { + // dismantlePowerPlantRole.act(producer); + // payForLoansRole.act(producer); + // producer.act(dismantlePowerPlantRole); + // producer.act(payForLoansRole); + // } /* * Determine fuel mix of power plants */ Timer timerMarket = new Timer(); timerMarket.start(); + + logger.warn(" 0b. Dismantling"); + timerMarket.reset(); + timerMarket.start(); + for (ElectricitySpotMarket market : reps.marketRepository.findAllElectricitySpotMarketsAsList()) { + dismantlePowerPlantOperationalLossRole.act(market); + } + timerMarket.stop(); + logger.warn(" took: {} seconds.", timerMarket.seconds()); + + logger.warn(" 0c. Paying loans"); + timerMarket.reset(); + timerMarket.start(); + for (EnergyProducer producer : reps.genericRepository.findAllAtRandom(EnergyProducer.class)) { + payForLoansRole.act(producer); + } + timerMarket.stop(); + logger.warn(" took: {} seconds.", timerMarket.seconds()); + logger.warn(" 1. Determining fuel mix"); + timerMarket.reset(); + timerMarket.start(); for (EnergyProducer producer : reps.genericRepository.findAllAtRandom(EnergyProducer.class)) { determineFuelMixRole.act(producer); // producer.act(determineFuelMixRole); @@ -164,6 +204,26 @@ public void act(DecarbonizationModel model) { timerMarket.stop(); logger.warn(" took: {} seconds.", timerMarket.seconds()); + /* + * Run Simple Capacity Market (start from tick 1, due to initialization + * requirements- it needs values (revenues from electricity spot market) + * from previous tick + */ + + if ((getCurrentTick() > 0) && (model.isSimpleCapacityMarketEnabled())) { + timerMarket.reset(); + timerMarket.start(); + logger.warn(" 2a. Run Simple Capacity Market"); + for (CapacityMarket market : reps.capacityMarketRepository.findAll()) { + simpleCapacityMarketMainRole.act(market); + } + + // exportLimiterRole.act(model); + + timerMarket.stop(); + logger.warn(" took: {} seconds.", timerMarket.seconds()); + } + /* * Submit and select long-term electricity contracts */ @@ -171,7 +231,7 @@ public void act(DecarbonizationModel model) { if (model.isLongTermContractsImplemented()) { timerMarket.reset(); timerMarket.start(); - logger.warn(" 2. Submit and select long-term electricity contracts"); + logger.warn(" 2b. Submit and select long-term electricity contracts"); for (EnergyProducer producer : reps.genericRepository.findAllAtRandom(EnergyProducer.class)) { submitLongTermElectricityContractsRole.act(producer); // producer.act(submitLongTermElectricityContractsRole); @@ -185,8 +245,21 @@ public void act(DecarbonizationModel model) { logger.warn(" took: {} seconds.", timerMarket.seconds()); } + // timerMarket.reset(); + // timerMarket.start(); + // logger.warn(" 2b. Creating market forecast"); + // + // clearIterativeCO2AndElectricitySpotMarketTwoCountryRole + // .makeCentralElectricityMarketForecastForTimeStep(getCurrentTick() + + // model.getCentralForecastingYear()); + // + // logger.warn(" took: {} seconds.", timerMarket.seconds()); + // + // timerMarket.reset(); + /* - * Clear electricity spot and CO2 markets and determine also the commitment of powerplants. + * Clear electricity spot and CO2 markets and determine also the + * commitment of powerplants. */ timerMarket.reset(); timerMarket.start(); @@ -301,6 +374,25 @@ public void act(DecarbonizationModel model) { timerMarket.stop(); logger.warn(" took: {} seconds.", timerMarket.seconds()); + logger.warn(" 6.b) Creating power plant financial reports."); + Timer financialReports = new Timer(); + financialReports.start(); + + creatingFinancialReports.act(model); + + financialReports.stop(); + logger.warn(" took: {} seconds.", financialReports.seconds()); + + if (model.isFeedInPremiumImplemented()) { + logger.warn(" 6a. Run Feed In Premium Scheme"); + for (RenewableSupportFipScheme scheme : reps.renewableSupportSchemeRepository.findAll()) { + computePremiumRole.act(scheme); + feedInPremiumRole.act(scheme); + } + timerMarket.stop(); + logger.warn(" took: {} seconds.", timerMarket.seconds()); + } + logger.warn(" 7. Investing"); Timer timerInvest = new Timer(); timerInvest.start(); @@ -335,7 +427,7 @@ public void act(DecarbonizationModel model) { // agentspring.simulation.Schedule.getSchedule().stop(); // } - logger.warn(" 7. Reassign LTCs"); + logger.warn(" 7.5. Reassign LTCs"); timerMarket.reset(); timerMarket.start(); for (EnergyProducer producer : reps.genericRepository.findAllAtRandom(EnergyProducer.class)) { @@ -354,15 +446,17 @@ public void act(DecarbonizationModel model) { timerMarket.reset(); timerMarket.start(); logger.warn(" 8. Delete old nodes in year {}.", (getCurrentTick() - model.getDeletionAge())); - reps.bidRepository.delete(reps.bidRepository.findAllBidsForForTime(getCurrentTick() - - model.getDeletionAge())); - reps.cashFlowRepository.delete(reps.cashFlowRepository.findAllCashFlowsForForTime(getCurrentTick() - - model.getDeletionAge())); + reps.bidRepository + .delete(reps.bidRepository.findAllBidsForForTime(getCurrentTick() - model.getDeletionAge())); + reps.cashFlowRepository.delete( + reps.cashFlowRepository.findAllCashFlowsForForTime(getCurrentTick() - model.getDeletionAge())); reps.powerPlantRepository.delete(reps.powerPlantRepository .findAllPowerPlantsDismantledBeforeTick(getCurrentTick() - model.getDeletionAge())); - reps.powerPlantDispatchPlanRepository.delete(reps.powerPlantDispatchPlanRepository - .findAllPowerPlantDispatchPlansForTime(getCurrentTick() + model.getCentralForecastingYear() - 1, - true)); + reps.powerPlantDispatchPlanRepository + .delete(reps.powerPlantDispatchPlanRepository.findAllPowerPlantDispatchPlansForTime( + getCurrentTick() + model.getCentralForecastingYear() - 1, true)); + reps.financialPowerPlantReportRepository.delete(reps.financialPowerPlantReportRepository + .findAllFinancialPowerPlantReportsForTime(getCurrentTick() - 5 - model.getDeletionAge())); timerMarket.stop(); logger.warn(" took: {} seconds.", timerMarket.seconds()); } diff --git a/emlab-generation/src/main/java/emlab/gen/role/capacitymarket/ClearCapacityMarketRole.java b/emlab-generation/src/main/java/emlab/gen/role/capacitymarket/ClearCapacityMarketRole.java new file mode 100644 index 00000000..2c661a8f --- /dev/null +++ b/emlab-generation/src/main/java/emlab/gen/role/capacitymarket/ClearCapacityMarketRole.java @@ -0,0 +1,187 @@ +/******************************************************************************* + * Copyright 2013 the original author or authors. + * + * Licensed 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. + ******************************************************************************/ +package emlab.gen.role.capacitymarket; + +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.data.neo4j.support.Neo4jTemplate; +import org.springframework.transaction.annotation.Transactional; + +import agentspring.role.AbstractRole; +import agentspring.role.Role; +import agentspring.role.RoleComponent; +import emlab.gen.domain.agent.Regulator; +import emlab.gen.domain.market.Bid; +import emlab.gen.domain.market.capacity.CapacityClearingPoint; +import emlab.gen.domain.market.capacity.CapacityDispatchPlan; +import emlab.gen.domain.market.capacity.CapacityMarket; +import emlab.gen.repository.Reps; + +/** + * @author Kaveri + * + */ + +@RoleComponent +public class ClearCapacityMarketRole extends AbstractRole implements Role { + + // CapacityMarketRepository capacityMarketRepository; + + @Autowired + Reps reps; + + @Autowired + Neo4jTemplate template; + + @Override + @Transactional + public void act(Regulator regulator) { + + CapacityMarket market = new CapacityMarket(); + market = reps.capacityMarketRepository.findCapacityMarketForZone(regulator.getZone()); + + Iterable sortedListofCDP = null; + sortedListofCDP = reps.capacityMarketRepository.findAllSortedCapacityDispatchPlansByTime(getCurrentTick()); + double demand = 0d; + double sumofSupplyBidsAccepted = 0d; + double acceptedPrice = 0d; + boolean isTheMarketCleared = false; + + // This epsilon is to account for rounding errors for java (only + // relevant for exact clearing) + double clearingEpsilon = 0.001d; + + if (regulator.getDemandTarget() == 0) { + isTheMarketCleared = true; + acceptedPrice = 0; + } + + for (CapacityDispatchPlan currentCDP : sortedListofCDP) { + + if (currentCDP.getPrice() <= regulator.getCapacityMarketPriceCap()) { + + demand = regulator.getDemandTarget() + * (1 - regulator.getReserveDemandLowerMargin()) + + ((regulator.getCapacityMarketPriceCap() - currentCDP.getPrice()) + * (regulator.getReserveDemandUpperMargin() + regulator.getReserveDemandLowerMargin()) * regulator + .getDemandTarget()) / regulator.getCapacityMarketPriceCap(); + + // logger.warn("Price of this cdp is " + currentCDP.getPrice()); + // logger.warn("Demand at this cdp is " + demand); + + if (isTheMarketCleared == false) { + if (demand - (sumofSupplyBidsAccepted + currentCDP.getAmount()) >= -clearingEpsilon) { + acceptedPrice = currentCDP.getPrice(); + currentCDP.setStatus(Bid.ACCEPTED); + currentCDP.setAcceptedAmount(currentCDP.getAmount()); + sumofSupplyBidsAccepted = sumofSupplyBidsAccepted + currentCDP.getAmount(); + // logger.warn("Price of this cdp is " + + // currentCDP.getPrice()); + // logger.warn("accepted price" + acceptedPrice); + } + + else if (demand - (sumofSupplyBidsAccepted + currentCDP.getAmount()) < clearingEpsilon) { + + currentCDP.setStatus(Bid.PARTLY_ACCEPTED); + currentCDP.setAcceptedAmount((sumofSupplyBidsAccepted - demand)); + acceptedPrice = currentCDP.getPrice(); + sumofSupplyBidsAccepted = sumofSupplyBidsAccepted + currentCDP.getAcceptedAmount(); + isTheMarketCleared = true; + + // logger.warn("accepted price" + acceptedPrice); + + } + + // else if (demand - sumofSupplyBidsAccepted < + // clearingEpsilon) { + // isTheMarketCleared = true; + // } + } else { + currentCDP.setStatus(Bid.FAILED); + currentCDP.setAcceptedAmount(0); + } + + // logger.warn("Cumulatively Accepted Supply " + + // sumofSupplyBidsAccepted); + currentCDP.persist(); + + } + + // logger.warn("Current CDP Price " + currentCDP.getPrice()); + // logger.warn("Cumulatively accepted volume " + + // sumofSupplyBidsAccepted); + } + // logger.warn("Demand for the capacity market at tick {} is " + demand, + // getCurrentTick()); + + CapacityClearingPoint clearingPoint = new CapacityClearingPoint(); + if (isTheMarketCleared == true) { + // sumofSupplyBidsAccepted = demand; + logger.warn("MARKET CLEARED at price" + acceptedPrice); + clearingPoint.setPrice(acceptedPrice); + clearingPoint.setVolume(sumofSupplyBidsAccepted); + clearingPoint.setTime(getCurrentTick()); + clearingPoint.setCapacityMarket(market); + clearingPoint.persist(); + + logger.warn("Clearing point Price {} and volume " + clearingPoint.getVolume(), clearingPoint.getPrice()); + + } else { + acceptedPrice = regulator.getCapacityMarketPriceCap() + * (1 + ((regulator.getDemandTarget() * (1 - regulator.getReserveDemandLowerMargin()) - sumofSupplyBidsAccepted) / ((regulator + .getReserveDemandUpperMargin() + regulator.getReserveDemandLowerMargin()) * regulator + .getDemandTarget()))); + clearingPoint.setPrice(max(regulator.getCapacityMarketPriceCap(), acceptedPrice)); + clearingPoint.setVolume(sumofSupplyBidsAccepted); + clearingPoint.setTime(getCurrentTick()); + clearingPoint.setCapacityMarket(market); + clearingPoint.persist(); + logger.warn("MARKET UNCLEARED at price" + clearingPoint.getPrice()); + logger.warn("Clearing point Price {} and volume " + clearingPoint.getVolume(), clearingPoint.getPrice()); + + } + // clearingPoint.persist(); + // logger.warn("is the market cleared? " + isTheMarketCleared); + // logger.warn("Clearing point Price" + clearingPoint.getPrice()); + // logger.warn("Clearing Point Volume" + clearingPoint.getVolume()); + + // VERIFICATION + double q2 = clearingPoint.getVolume(); + double q1 = regulator.getDemandTarget() + * (1 - regulator.getReserveDemandLowerMargin()) + + ((regulator.getCapacityMarketPriceCap() - clearingPoint.getPrice()) + * (regulator.getReserveDemandUpperMargin() + regulator.getReserveDemandLowerMargin()) * regulator + .getDemandTarget()) / regulator.getCapacityMarketPriceCap(); + if (q1 == q2) { + logger.warn("matches"); + } else { + logger.warn("does not match"); + } + + } + + /** + * @param capacityMarketPriceCap + * @param acceptedPrice + * @return + */ + private double max(double capacityMarketPriceCap, double acceptedPrice) { + if (acceptedPrice >= capacityMarketPriceCap) + return capacityMarketPriceCap; + else + return acceptedPrice; + } + +} \ No newline at end of file diff --git a/emlab-generation/src/main/java/emlab/gen/role/capacitymarket/ExportLimiterRole.java b/emlab-generation/src/main/java/emlab/gen/role/capacitymarket/ExportLimiterRole.java new file mode 100644 index 00000000..f1918169 --- /dev/null +++ b/emlab-generation/src/main/java/emlab/gen/role/capacitymarket/ExportLimiterRole.java @@ -0,0 +1,99 @@ +/******************************************************************************* + * Copyright 2013 the original author or authors. + * + * Licensed 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. + ******************************************************************************/ +package emlab.gen.role.capacitymarket; + +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.data.neo4j.support.Neo4jTemplate; +import org.springframework.transaction.annotation.Transactional; + +import agentspring.role.AbstractRole; +import agentspring.role.Role; +import agentspring.role.RoleComponent; +import emlab.gen.domain.agent.DecarbonizationModel; +import emlab.gen.domain.gis.Zone; +import emlab.gen.domain.market.capacity.CapacityMarket; +import emlab.gen.domain.market.electricity.ElectricitySpotMarket; +import emlab.gen.domain.technology.Interconnector; +import emlab.gen.repository.Reps; + +/** + * @author Kaveri + * + */ + +@RoleComponent +public class ExportLimiterRole extends AbstractRole implements Role { + + @Autowired + Reps reps; + + @Autowired + Neo4jTemplate template; + + @Override + @Transactional + public void act(DecarbonizationModel model) { + + double initialInterconnectorCapacity = 0d; + + // find all interconnectors + Interconnector interconnector = template.findAll(Interconnector.class).iterator().next(); + + // get initial interconnector capacity at tick 1 as capacity market is + // functional only from tick 1 + if (getCurrentTick() == 1) { + + initialInterconnectorCapacity = interconnector.getCapacity(getCurrentTick()); + logger.warn("at tick 1 the interconnector capacity is" + initialInterconnectorCapacity); + + } + + // initialize interconnector capacity, irrespective of current tick, to + // initialInterconnectorCapacity + logger.warn("print capacity temp variable initialICcapacity" + initialInterconnectorCapacity); + logger.warn("interconnector capacity before setting " + interconnector.getCapacity(getCurrentTick())); + interconnector.setCapacity(initialInterconnectorCapacity); + logger.warn("interconnector capacity after setting " + interconnector.getCapacity(getCurrentTick())); + // loop through capacity markets and if supply < demand in any of the + // capacity market regions, set interconnector capacity = 0 + for (CapacityMarket market : reps.capacityMarketRepository.findAll()) { + Zone zone = market.getZone(); + logger.warn("zone" + zone); + ElectricitySpotMarket emarket = reps.marketRepository.findElectricitySpotMarketForZone(zone); + + // double supply = + // reps.marketRepository.findTotalSupplyInElectricitySpotMarketForZone(zone); + double supply = reps.powerPlantRepository.calculatePeakCapacityOfOperationalPowerPlantsInMarket(emarket, + getCurrentTick()); + logger.warn("Supply" + supply); + // double peakDemand = + // reps.marketRepository.findPeakDemandInElectricitySpotMarketForZone(zone); + double peakLoadforMarketNOtrend = reps.segmentLoadRepository.peakLoadbyZoneMarketandTime(zone, emarket); + double demandfactor = emarket.getDemandGrowthTrend().getValue(getCurrentTick()); + + double peakDemand = peakLoadforMarketNOtrend * demandfactor; + logger.warn("demand" + peakDemand); + + if ((supply - peakDemand) < 0) { + + interconnector.setCapacity(0); + logger.warn("interconnector capacity set to zero" + interconnector.getCapacity(getCurrentTick())); + } + + } + + } +} diff --git a/emlab-generation/src/main/java/emlab/gen/role/capacitymarket/ForecastDemandRole.java b/emlab-generation/src/main/java/emlab/gen/role/capacitymarket/ForecastDemandRole.java new file mode 100644 index 00000000..9e3d1b0c --- /dev/null +++ b/emlab-generation/src/main/java/emlab/gen/role/capacitymarket/ForecastDemandRole.java @@ -0,0 +1,90 @@ +/******************************************************************************* + * Copyright 2013 the original author or authors. + * + * Licensed 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. + ******************************************************************************/ +package emlab.gen.role.capacitymarket; + +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.transaction.annotation.Transactional; + +import agentspring.role.AbstractRole; +import agentspring.role.Role; +import agentspring.role.RoleComponent; +import emlab.gen.domain.agent.Regulator; +import emlab.gen.domain.gis.Zone; +import emlab.gen.domain.market.electricity.ElectricitySpotMarket; +import emlab.gen.repository.Reps; +import emlab.gen.util.GeometricTrendRegression; + +/** + * @author Kaveri + * + */ +@RoleComponent +public class ForecastDemandRole extends AbstractRole implements Role { + + @Autowired + Reps reps; + + @Override + @Transactional + public void act(Regulator regulator) { + long capabilityYear = 0; + capabilityYear = getCurrentTick() + regulator.getTargetPeriod(); + + Zone zone = regulator.getZone(); + ElectricitySpotMarket market = reps.marketRepository.findElectricitySpotMarketForZone(zone); + + // double trend = + // market.getDemandGrowthTrend().getValue(getCurrentTick()); + // double peakLoadforMarket = trend * peakLoadforMarketNOtrend; + // double reserveMargin = regulator.getReserveMargin(); + // double demandTarget = peakLoadforMarket * (1 + reserveMargin); + + // regulator.setDemandTarget(demandTarget); + + /* + * // Computing Demand (the current year's demand is not considered for + * // regression, as it is forecasted. double expectedDemandFactor = 0d; + */ + + double expectedDemandFactor = 0d; + if (getCurrentTick() < 2) { + + expectedDemandFactor = market.getDemandGrowthTrend().getValue(getCurrentTick()); + } else { + + GeometricTrendRegression gtr = new GeometricTrendRegression(); + for (long time = getCurrentTick() - 1; time > getCurrentTick() - 1 + - regulator.getNumberOfYearsLookingBackToForecastDemand() + && time >= 0; time = time - 1) { + gtr.addData(time, market.getDemandGrowthTrend().getValue(time)); + } + expectedDemandFactor = gtr.predict(capabilityYear); + } + logger.warn("ExpectedDemandFactor for this tick: " + expectedDemandFactor); + logger.warn("demand factor " + market.getDemandGrowthTrend().getValue(getCurrentTick())); + // Calculate peak demand across all markets + + double peakLoadforMarketNOtrend = reps.segmentLoadRepository.peakLoadbyZoneMarketandTime(zone, market); + double peakExpectedDemand = peakLoadforMarketNOtrend * expectedDemandFactor; + + // Compute demand target by multiplying reserve margin double double + double demandTarget = peakExpectedDemand * (1 + regulator.getReserveMargin()); + + regulator.setDemandTarget(demandTarget); + + } + +} \ No newline at end of file diff --git a/emlab-generation/src/main/java/emlab/gen/role/capacitymarket/PaymentFromConsumerToProducerForCapacityRole.java b/emlab-generation/src/main/java/emlab/gen/role/capacitymarket/PaymentFromConsumerToProducerForCapacityRole.java new file mode 100644 index 00000000..11ddac1b --- /dev/null +++ b/emlab-generation/src/main/java/emlab/gen/role/capacitymarket/PaymentFromConsumerToProducerForCapacityRole.java @@ -0,0 +1,89 @@ +/******************************************************************************* + * Copyright 2013 the original author or authors. + * + * Licensed 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. + ******************************************************************************/ +package emlab.gen.role.capacitymarket; + +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.transaction.annotation.Transactional; + +import agentspring.role.Role; +import agentspring.role.RoleComponent; +import emlab.gen.domain.contract.CashFlow; +import emlab.gen.domain.market.ClearingPoint; +import emlab.gen.domain.market.capacity.CapacityDispatchPlan; +import emlab.gen.domain.market.capacity.CapacityMarket; +import emlab.gen.domain.market.electricity.ElectricitySpotMarket; +import emlab.gen.repository.Reps; +import emlab.gen.role.market.AbstractMarketRole; + +//import org.springframework.data.neo4j.annotation.NodeEntity; + +/** + * @author Kaveri + * + */ +@RoleComponent +public class PaymentFromConsumerToProducerForCapacityRole extends AbstractMarketRole implements + Role { + + @Autowired + Reps reps; + + // CashFlow cash = new CashFlow(); + + @Override + @Transactional + public void act(CapacityMarket capacityMarket) { + + for (CapacityDispatchPlan plan : reps.capacityMarketRepository.findAllAcceptedCapacityDispatchPlansForTime( + capacityMarket, getCurrentTick())) { + + // logger.warn("Hi"); + // logger.warn("cdp for plant" + plan.getPlant()); + + ClearingPoint capacityClearingPoint = reps.capacityMarketRepository + .findOneClearingPointForTimeAndCapacityMarket(getCurrentTick(), capacityMarket); + + // logger.warn("capacity clearing point " + + // capacityClearingPoint.getPrice()); + // double price = capacityClearingPoint.getPrice(); + ElectricitySpotMarket esm = reps.marketRepository + .findElectricitySpotMarketForZone(capacityMarket.getZone()); + // logger.warn("esmt " + esm.getName()); + + reps.nonTransactionalCreateRepository.createCashFlow(esm, plan.getBidder(), plan.getAcceptedAmount() + * capacityClearingPoint.getPrice(), CashFlow.SIMPLE_CAPACITY_MARKET, getCurrentTick(), + plan.getPlant()); + // logger.warn("Cash flow from consumer {} to Producer {} of value {} " + // + plan.getAcceptedAmount() + // * capacityClearingPoint.getPrice(), plan.getBidder(), + // capacityMarket.getConsumer()); + } + + } + + /* + * (non-Javadoc) + * + * @see emlab.gen.role.market.AbstractMarketRole#getReps() + */ + @Override + public Reps getReps() { + + return reps; + + } + +} diff --git a/emlab-generation/src/main/java/emlab/gen/role/capacitymarket/SimpleCapacityMarketMainRole.java b/emlab-generation/src/main/java/emlab/gen/role/capacitymarket/SimpleCapacityMarketMainRole.java new file mode 100644 index 00000000..047fcca5 --- /dev/null +++ b/emlab-generation/src/main/java/emlab/gen/role/capacitymarket/SimpleCapacityMarketMainRole.java @@ -0,0 +1,81 @@ +/******************************************************************************* + * Copyright 2013 the original author or authors. + * + * Licensed 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. + ******************************************************************************/ +package emlab.gen.role.capacitymarket; + +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.transaction.annotation.Transactional; + +import agentspring.role.AbstractRole; +import agentspring.role.Role; +import agentspring.role.RoleComponent; +import emlab.gen.domain.agent.EnergyProducer; +import emlab.gen.domain.agent.Regulator; +import emlab.gen.domain.market.capacity.CapacityMarket; +import emlab.gen.repository.Reps; + +/** + * @author Kaveri + * + */ + +@RoleComponent +public class SimpleCapacityMarketMainRole extends AbstractRole implements Role { + + @Autowired + Reps reps; + + @Autowired + ForecastDemandRole forecastDemandRole; + + @Autowired + SubmitCapacityBidToMarketRole submitCapacityBidToMarketRole; + + @Autowired + ClearCapacityMarketRole clearCapacityMarketRole; + + @Autowired + PaymentFromConsumerToProducerForCapacityRole paymentFromConsumerToProducerforCapacityRole; + + @Override + @Transactional + public void act(CapacityMarket market) { + + Regulator regulator = market.getRegulator(); + + // Forecast Demand + forecastDemandRole.act(regulator); + logger.warn("Forecast demand role run"); + + // Energy producers submit Bids to Capacity market + for (EnergyProducer producer : reps.genericRepository.findAllAtRandom(EnergyProducer.class)) { + submitCapacityBidToMarketRole.act(producer); + } + logger.warn("******************capacity bids submitted****************************"); + + // Clear capacity market + clearCapacityMarketRole.act(regulator); + + logger.warn("************************Capacity Market cleared******************************"); + + // ensure cash flows + paymentFromConsumerToProducerforCapacityRole.act(market); + + logger.warn("capacity payments made"); + logger.warn("Capacity Market Main Role Completed once"); + + } + +} diff --git a/emlab-generation/src/main/java/emlab/gen/role/capacitymarket/SubmitCapacityBidToMarketRole.java b/emlab-generation/src/main/java/emlab/gen/role/capacitymarket/SubmitCapacityBidToMarketRole.java new file mode 100644 index 00000000..ef176401 --- /dev/null +++ b/emlab-generation/src/main/java/emlab/gen/role/capacitymarket/SubmitCapacityBidToMarketRole.java @@ -0,0 +1,187 @@ +/******************************************************************************* + * Copyright 2013 the original author or authors. + * + * Licensed 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. + ******************************************************************************/ +package emlab.gen.role.capacitymarket; + +import org.apache.log4j.Logger; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.transaction.annotation.Transactional; + +import agentspring.role.Role; +import agentspring.role.RoleComponent; +import emlab.gen.domain.agent.EnergyProducer; +import emlab.gen.domain.market.Bid; +import emlab.gen.domain.market.capacity.CapacityDispatchPlan; +import emlab.gen.domain.market.capacity.CapacityMarket; +import emlab.gen.domain.market.electricity.ElectricitySpotMarket; +import emlab.gen.domain.market.electricity.PowerPlantDispatchPlan; +import emlab.gen.domain.market.electricity.Segment; +import emlab.gen.domain.market.electricity.SegmentLoad; +import emlab.gen.domain.technology.PowerPlant; +import emlab.gen.repository.Reps; +import emlab.gen.role.AbstractEnergyProducerRole; + +//import org.springframework.data.neo4j.annotation.NodeEntity; + +/** + * @author Kaveri + * + */ + +@RoleComponent +public class SubmitCapacityBidToMarketRole extends AbstractEnergyProducerRole + implements Role { + + Logger logger = Logger.getLogger(SubmitCapacityBidToMarketRole.class); + + @Autowired + Reps reps; + + @Override + @Transactional + public void act(EnergyProducer producer) { + // logger.warn("***********Submitting Bid Role for Energy Producer + // ********" + // + producer.getName()); + + for (PowerPlant plant : reps.powerPlantRepository.findOperationalPowerPlantsByOwner(producer, + getCurrentTick())) { + + // logger.warn("Bid calculation for PowerPlant " + plant.getName()); + // get market for the plant by zone + CapacityMarket market = reps.capacityMarketRepository + .findCapacityMarketForZone(plant.getLocation().getZone()); + if (market != null) { + // logger.warn("CapacityMarket is " + market.getName()); + + ElectricitySpotMarket eMarket = reps.marketRepository + .findElectricitySpotMarketForZone(plant.getLocation().getZone()); + + // compute bid price as (fixedOMCost - elecricityMarketRevenue), + // if + // the difference is positive. Else if negative, bid at zero. + double bidPrice = 0d; + + // get FixedOMCost + double fixedOnMCost = plant.getTechnology().getFixedOperatingCost(getCurrentTick()); + // logger.warn("FIxed OM cost is " + fixedOnMCost); + + // logger.warn("fixed operation and maintenance cost is " + + // fixedOnMCost); + + double expectedElectricityPrice = 0; + double electricityMarketRevenue = 0d; + long numberOfSegments = reps.segmentRepository.count(); + double mc = 0d; + if (getCurrentTick() == 0) { + mc = 0; + electricityMarketRevenue = 0d; + + } else { + + // ********** to check if plant was in the merit order or + // not in the previous tick, hence tickTemp****** + long tickTemp = (getCurrentTick() - 1); + // logger.warn("current tick - 1 is " + tickTemp); + + PowerPlantDispatchPlan ppdpTest = reps.powerPlantDispatchPlanRepository + .findOnePowerPlantDispatchPlanForPeakSegmentGivenPowerPlantAndTime(plant, tickTemp, false); + + if (ppdpTest == null) { + + } else { + // compute revenue from the energy market, using + // previous + // tick's + // electricity spot market prices + double capacityAccepted = 0d; + mc = calculateMarginalCostExclCO2MarketCost(plant, getCurrentTick()); + + double sumEMR = 0d; + + for (SegmentLoad segmentLoad : eMarket.getLoadDurationCurve()) { + + PowerPlantDispatchPlan ppdp = reps.powerPlantDispatchPlanRepository + .findOnePowerPlantDispatchPlanForPowerPlantForSegmentForTime(plant, + segmentLoad.getSegment(), tickTemp, false); + + if (ppdp.getStatus() < 0) { + electricityMarketRevenue = 0d; + } else if (ppdp.getStatus() >= 2) { + capacityAccepted = ppdp.getAcceptedAmount(); + + expectedElectricityPrice = reps.segmentClearingPointRepository + .findOneSegmentClearingPointForMarketSegmentAndTime(getCurrentTick() - 1, + segmentLoad.getSegment(), eMarket, false) + .getPrice(); + + double hours = segmentLoad.getSegment().getLengthInHours(); + // logger.warn("Number of hours per segment + // is"logger.warn("EL Market revenue is " + // + electricityMarketRevenue); + // + + // hours); + // because you're only trying to compute + // marginal cost of capacity, you subtract the + // marg. cost of energy from the revenue + if (mc <= expectedElectricityPrice) { + sumEMR = sumEMR + + (expectedElectricityPrice - mc) * hours * ppdp.getAcceptedAmount(); + // logger.warn("EL Market revenue for this + // segment is " + // + sumEMR); + } + + } + + } + + electricityMarketRevenue = sumEMR; + } + } + + double electricityMarketRevenuePerMW = electricityMarketRevenue + / plant.getAvailableCapacity(getCurrentTick()); + // logger.warn("FINAL EL Market revenue is " + + // electricityMarketRevenue); + // logger.warn("EL Market revenue per MW is " + + // electricityMarketRevenuePerMW); + + double mcCapacity = fixedOnMCost - electricityMarketRevenuePerMW; + // logger.warn("Fixed Cost - ESM Rev = " + mcCapacity); + + if (mcCapacity < 0) { + bidPrice = 0d; + // } else if (mcCapacity <= fixedOnMCost) { + } else { + bidPrice = mcCapacity; + } + + Segment peakSegment = reps.segmentRepository.findPeakSegmentforMarket(eMarket); + double capacity = plant.getAvailableCapacity(getCurrentTick(), peakSegment, numberOfSegments); + + CapacityDispatchPlan plan = new CapacityDispatchPlan().persist(); + plan.specifyAndPersist(plant, producer, market, getCurrentTick(), bidPrice, capacity, Bid.SUBMITTED); + + // logger.warn("CDP for powerplant " + + // plan.getPlant().getName()); + // logger.warn("CDP price is " + plan.getPrice()); + // logger.warn("CDP amount is " + plan.getAmount()); + + } + } + + } +} \ No newline at end of file diff --git a/emlab-generation/src/main/java/emlab/gen/role/capacitymarket/package-info.java b/emlab-generation/src/main/java/emlab/gen/role/capacitymarket/package-info.java new file mode 100644 index 00000000..d2fa577d --- /dev/null +++ b/emlab-generation/src/main/java/emlab/gen/role/capacitymarket/package-info.java @@ -0,0 +1,20 @@ +/******************************************************************************* + * Copyright 2013 the original author or authors. + * + * Licensed 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. + ******************************************************************************/ +/** + * @author Kaveri + * + */ +package emlab.gen.role.capacitymarket; \ No newline at end of file diff --git a/emlab-generation/src/main/java/emlab/gen/role/capacitymechanisms/StrategicReserveOperatorRole.java b/emlab-generation/src/main/java/emlab/gen/role/capacitymechanisms/StrategicReserveOperatorRole.java index ffa2b9b3..bee04201 100644 --- a/emlab-generation/src/main/java/emlab/gen/role/capacitymechanisms/StrategicReserveOperatorRole.java +++ b/emlab-generation/src/main/java/emlab/gen/role/capacitymechanisms/StrategicReserveOperatorRole.java @@ -22,10 +22,11 @@ /** * * @author pbhagwat - * + * */ @RoleComponent -public class StrategicReserveOperatorRole extends AbstractRole implements Role{ +public class StrategicReserveOperatorRole extends AbstractRole implements + Role { @Autowired Reps reps; @@ -45,198 +46,243 @@ public class StrategicReserveOperatorRole extends AbstractRole sortedListofBidPairs = bidRepository.findOffersDescendingForMarketForTime(currentMarket, getCurrentTick()); + // Iterable sortedListofBidPairs = + // bidRepository.findOffersDescendingForMarketForTime(currentMarket, + // getCurrentTick()); - //finds List of all segments - //List segments = Utils.asList(reps.segmentRepository.findAll()); - //for(Segment currentSegment: reps.segmentRepository.findAll()){ - //segmentCounter += 1; - //} + // finds List of all segments + // List segments = + // Utils.asList(reps.segmentRepository.findAll()); + // for(Segment currentSegment: reps.segmentRepository.findAll()){ + // segmentCounter += 1; + // } // Count all segments in the given market segmentCounter = reps.segmentRepository.count(); // find all segments for the given market - for(Segment currentSegment: reps.segmentRepository.findAll()){ - //logger.warn("Current segment is" + currentSegment); - //find query for specific market - + for (Segment currentSegment : reps.segmentRepository.findAll()) { + // logger.warn("Current segment is" + currentSegment); + // find query for specific market boolean isORMarketCleared = false; - double sumofContractedBids=0; + double sumofContractedBids = 0; double volumetobeContracted = strategicReserveOperator.getReserveVolume(); - //logger.warn("volumetobeContracted " + volumetobeContracted); + // logger.warn("volumetobeContracted " + volumetobeContracted); double clearingEpsilon = 0.001; double dispatchPrice = strategicReserveOperator.getReservePriceSR(); - //logger.warn("dispatchPrice " + dispatchPrice); - //double reserveMargin = peakCapacityforMarket-peakLoadforMarket; + // logger.warn("dispatchPrice " + dispatchPrice); + // double reserveMargin = peakCapacityforMarket-peakLoadforMarket; Iterable sortedListofPPDP = plantDispatchPlanRepository .findDescendingSortedPowerPlantDispatchPlansForSegmentForTime(currentSegment, getCurrentTick(), false); - for (PowerPlantDispatchPlan currentPPDP: sortedListofPPDP){ + for (PowerPlantDispatchPlan currentPPDP : sortedListofPPDP) { - //logger.warn("Bidding Market " + currentPPDP.getBiddingMarket().getNodeId().intValue()); - //logger.warn("Bidding Volume" + (currentPPDP.getAmount())); - //logger.warn("current Market" + market.getNodeId().intValue()); + // logger.warn("Bidding Market " + + // currentPPDP.getBiddingMarket().getNodeId().intValue()); + // logger.warn("Bidding Volume" + (currentPPDP.getAmount())); + // logger.warn("current Market" + + // market.getNodeId().intValue()); // **use querying for market** - if (currentPPDP.getBiddingMarket().getNodeId().intValue() == market.getNodeId().intValue()){ - //logger.warn("isOR market cleared" + isORMarketCleared); - - // Check the size of margin - - /* if (strategicReserveOperator.getReserveVolume()>reserveMargin){ - if (reserveMargin-currentPPDP.getAmount()>strategicReserveOperator.getReserveVolume()){ - currentPPDP.setSRstatus(PowerPlantDispatchPlan.NOT_CONTRACTED); - reserveMargin -= currentPPDP.getAmount(); - } - - }*/ - - if (volumetobeContracted==0){ - isORMarketCleared=true; - } - else if (isORMarketCleared == false){ - //logger.warn("volume of current PPDP " + currentPPDP.getAmount()); - if (volumetobeContracted-(sumofContractedBids + currentPPDP.getAmount()) >= clearingEpsilon){ - - // check if already not contracted - //if(currentPPDP.getSRstatus()!=PowerPlantDispatchPlan.NOT_CONTRACTED){ - //logger.warn("RemainingVolume" + (volumetobeContracted-(sumofContractedBids + currentPPDP.getAmount()))); - currentPPDP.setSRstatus(PowerPlantDispatchPlan.CONTRACTED); - //logger.warn("SRSTATUS " +currentPPDP.getSRstatus()); - sumofContractedBids += currentPPDP.getAmount(); - currentPPDP.setOldPrice(currentPPDP.getPrice()); - //logger.warn("Old Price" + currentPPDP.getOldPrice()); - currentPPDP.setPrice(dispatchPrice); - - //logger.warn("New Price" + currentPPDP.getPrice()); - // Pays O&M costs to the generated for the contracted capacity - - double Loan = 0; - if ((currentPPDP.getPowerPlant().getLoan().getTotalNumberOfPayments() - currentPPDP - .getPowerPlant().getLoan().getNumberOfPaymentsDone()) > 0d) { - Loan = (currentPPDP.getPowerPlant().getLoan().getAmountPerPayment()); + if (currentPPDP.getBiddingMarket().getNodeId().intValue() == market.getNodeId().intValue()) { + + if (currentPPDP.getPowerPlant().getAgeFraction() < 1.2) { + // logger.warn("isOR market cleared" + + // isORMarketCleared); + + // Check the size of margin + + /* + * if (strategicReserveOperator.getReserveVolume()> + * reserveMargin ){ if + * (reserveMargin-currentPPDP.getAmount()> + * strategicReserveOperator.getReserveVolume()){ + * currentPPDP. + * setSRstatus(PowerPlantDispatchPlan.NOT_CONTRACTED); + * reserveMargin -= currentPPDP.getAmount(); } + * + * } + */ + + if (volumetobeContracted == 0) { + isORMarketCleared = true; + } else if (isORMarketCleared == false) { + // logger.warn("volume of current PPDP " + + // currentPPDP.getAmount()); + if (volumetobeContracted - (sumofContractedBids + currentPPDP.getAmount()) >= clearingEpsilon) { + + // check if already not contracted + // if(currentPPDP.getSRstatus()!=PowerPlantDispatchPlan.NOT_CONTRACTED){ + // logger.warn("RemainingVolume" + + // (volumetobeContracted-(sumofContractedBids + + // currentPPDP.getAmount()))); + currentPPDP.setSRstatus(PowerPlantDispatchPlan.CONTRACTED); + // logger.warn("SRSTATUS " + // +currentPPDP.getSRstatus()); + sumofContractedBids += currentPPDP.getAmount(); + currentPPDP.setOldPrice(currentPPDP.getPrice()); + // logger.warn("Old Price" + + // currentPPDP.getOldPrice()); + currentPPDP.setPrice(dispatchPrice); + + // logger.warn("New Price" + + // currentPPDP.getPrice()); + // Pays O&M costs to the generated for the + // contracted capacity + + double Loan = 0; + if ((currentPPDP.getPowerPlant().getLoan().getTotalNumberOfPayments() - currentPPDP + .getPowerPlant().getLoan().getNumberOfPaymentsDone()) > 0d) { + Loan = (currentPPDP.getPowerPlant().getLoan().getAmountPerPayment()); + } + + double money = ((currentPPDP.getPowerPlant().getActualFixedOperatingCost()) + Loan) + / segmentCounter; + // logger.warn("Annual FOC "+ + // currentPPDP.getPowerPlant().getTechnology().getFixedOperatingCost()); + // logger.warn("No of Segments " + // +segmentCounter); + // logger.warn("Money Paid " +money); + + // logger.warn("SRO "+ + // strategicReserveOperator.getName() + // +" CASH Before" + // +strategicReserveOperator.getCash()); + // logger.warn("Owner " + + // currentPPDP.getBidder().getName() + + // "money Before" + // +currentPPDP.getBidder().getCash()); + + reps.nonTransactionalCreateRepository.createCashFlow(strategicReserveOperator, + currentPPDP.getBidder(), money, CashFlow.STRRESPAYMENT, getCurrentTick(), + currentPPDP.getPowerPlant()); + + // logger.warn("SRO's CASH After" + // +strategicReserveOperator.getCash()); + // logger.warn("Owner " + + // currentPPDP.getBidder().getName() + + // " money After" + // +currentPPDP.getBidder().getCash()); + // } } - double money = ((currentPPDP.getPowerPlant().getActualFixedOperatingCost()) + Loan) - / segmentCounter; - //logger.warn("Annual FOC "+ currentPPDP.getPowerPlant().getTechnology().getFixedOperatingCost()); - //logger.warn("No of Segments " +segmentCounter); - //logger.warn("Money Paid " +money); - - //logger.warn("SRO "+ strategicReserveOperator.getName() +" CASH Before" +strategicReserveOperator.getCash()); - //logger.warn("Owner " + currentPPDP.getBidder().getName() + "money Before" +currentPPDP.getBidder().getCash()); - + else if (volumetobeContracted - (sumofContractedBids + currentPPDP.getAmount()) < clearingEpsilon) { + + // if(currentPPDP.getSRstatus()!=PowerPlantDispatchPlan.NOT_CONTRACTED){ + + currentPPDP.setSRstatus(PowerPlantDispatchPlan.PARTLY_CONTRACTED); + // logger.warn("SRSTATUS " + // +currentPPDP.getSRstatus()); + sumofContractedBids += currentPPDP.getAmount(); + currentPPDP.setOldPrice(currentPPDP.getPrice()); + // logger.warn("Old Price" + + // currentPPDP.getOldPrice()); + currentPPDP.setPrice(dispatchPrice); + + // logger.warn("New Price" + + // currentPPDP.getPrice()); + isORMarketCleared = true; + // Pays O&M costs and outstanding loans to the + // generated for the contracted capacity + double Loan = 0; + if ((currentPPDP.getPowerPlant().getLoan().getTotalNumberOfPayments() - currentPPDP + .getPowerPlant().getLoan().getNumberOfPaymentsDone()) > 0d) { + Loan = (currentPPDP.getPowerPlant().getLoan().getAmountPerPayment()); + } + + double money = ((currentPPDP.getPowerPlant().getActualFixedOperatingCost()) + Loan) + / segmentCounter; + // logger.warn("Annual FOC "+ + // currentPPDP.getPowerPlant().getTechnology().getFixedOperatingCost()); + // logger.warn("No of Segments " + // +segmentCounter); + // logger.warn("Money Paid " +money); + + // logger.warn("SRO "+ + // strategicReserveOperator.getName() + // +" CASH Before" + // +strategicReserveOperator.getCash()); + // logger.warn("Owner " + + // currentPPDP.getBidder().getName() + + // "money Before" + // +currentPPDP.getBidder().getCash()); + + reps.nonTransactionalCreateRepository.createCashFlow(strategicReserveOperator, + currentPPDP.getBidder(), money, CashFlow.STRRESPAYMENT, getCurrentTick(), + currentPPDP.getPowerPlant()); + + // logger.warn("SRO's CASH After" + // +strategicReserveOperator.getCash()); + // logger.warn("Owner " + + // currentPPDP.getBidder().getName() + + // " money After" + // +currentPPDP.getBidder().getCash()); + // } + } - reps.nonTransactionalCreateRepository.createCashFlow(strategicReserveOperator, currentPPDP.getBidder(), money, CashFlow.STRRESPAYMENT, getCurrentTick(), currentPPDP.getPowerPlant()); + } else { + currentPPDP.setSRstatus(PowerPlantDispatchPlan.NOT_CONTRACTED); - //logger.warn("SRO's CASH After" +strategicReserveOperator.getCash()); - //logger.warn("Owner " + currentPPDP.getBidder().getName() + " money After" +currentPPDP.getBidder().getCash()); - // } } - - else if (volumetobeContracted-(sumofContractedBids + currentPPDP.getAmount()) < clearingEpsilon){ - - // if(currentPPDP.getSRstatus()!=PowerPlantDispatchPlan.NOT_CONTRACTED){ - - currentPPDP.setSRstatus(PowerPlantDispatchPlan.PARTLY_CONTRACTED); - //logger.warn("SRSTATUS " +currentPPDP.getSRstatus()); - sumofContractedBids += currentPPDP.getAmount(); - currentPPDP.setOldPrice(currentPPDP.getPrice()); - //logger.warn("Old Price" + currentPPDP.getOldPrice()); - currentPPDP.setPrice(dispatchPrice); - - //logger.warn("New Price" + currentPPDP.getPrice()); + // logger.warn(volumetobeContracted-sumofContractedBids); + if (volumetobeContracted - sumofContractedBids < clearingEpsilon) { + // logger.warn("is market clear" + + // isORMarketCleared); isORMarketCleared = true; - // Pays O&M costs and outstanding loans to the - // generated for the contracted capacity - double Loan = 0; - if ((currentPPDP.getPowerPlant().getLoan().getTotalNumberOfPayments() - currentPPDP - .getPowerPlant().getLoan().getNumberOfPaymentsDone()) > 0d) { - Loan = (currentPPDP.getPowerPlant().getLoan().getAmountPerPayment()); - } - - - double money = ((currentPPDP.getPowerPlant().getActualFixedOperatingCost()) + Loan) - / segmentCounter; - //logger.warn("Annual FOC "+ currentPPDP.getPowerPlant().getTechnology().getFixedOperatingCost()); - //logger.warn("No of Segments " +segmentCounter); - //logger.warn("Money Paid " +money); - - //logger.warn("SRO "+ strategicReserveOperator.getName() +" CASH Before" +strategicReserveOperator.getCash()); - //logger.warn("Owner " + currentPPDP.getBidder().getName() + "money Before" +currentPPDP.getBidder().getCash()); - - reps.nonTransactionalCreateRepository.createCashFlow(strategicReserveOperator, currentPPDP.getBidder(), money, CashFlow.STRRESPAYMENT, getCurrentTick(), currentPPDP.getPowerPlant()); - - //logger.warn("SRO's CASH After" +strategicReserveOperator.getCash()); - //logger.warn("Owner " + currentPPDP.getBidder().getName() + " money After" +currentPPDP.getBidder().getCash()); - //} } - - } - else { - currentPPDP.setSRstatus(PowerPlantDispatchPlan.NOT_CONTRACTED); - - } - //logger.warn(volumetobeContracted-sumofContractedBids); - if (volumetobeContracted-sumofContractedBids < clearingEpsilon){ - //logger.warn("is market clear" + isORMarketCleared); - isORMarketCleared = true; + // logger.warn(" iS OR CLEARED "+isORMarketCleared); + // logger.warn("Price is "+currentPPDP.getPrice()); + currentPPDP.persist(); } - //logger.warn(" iS OR CLEARED "+isORMarketCleared); - //logger.warn("Price is "+currentPPDP.getPrice()); - currentPPDP.persist(); } } } - //logger.warn("cash of SR " +strategicReserveOperator.getCash()); + // logger.warn("cash of SR " +strategicReserveOperator.getCash()); } } \ No newline at end of file diff --git a/emlab-generation/src/main/java/emlab/gen/role/co2policy/MarketStabilityReserveRole.java b/emlab-generation/src/main/java/emlab/gen/role/co2policy/MarketStabilityReserveRole.java index 6d3bca33..91127e4a 100644 --- a/emlab-generation/src/main/java/emlab/gen/role/co2policy/MarketStabilityReserveRole.java +++ b/emlab-generation/src/main/java/emlab/gen/role/co2policy/MarketStabilityReserveRole.java @@ -46,7 +46,9 @@ public class MarketStabilityReserveRole extends AbstractRole { @Transactional public void act(Government government) { - double allowancesInCirculation = reps.decarbonizationAgentRepository.determinePreviouslyBankedCO2Certificates(); + double allowancesInCirculation = government.isStabilityReserveHasOneYearDelayInsteadOfTwoYearDelay() ? reps.decarbonizationAgentRepository + .determineTotallyBankedCO2Certificates() : reps.decarbonizationAgentRepository + .determinePreviouslyBankedCO2Certificates(); double inflowToMarketReserve = calculateInflowToMarketReserveForTimeStep(getCurrentTick(), allowancesInCirculation, government); government.setStabilityReserve(government.getStabilityReserve() + inflowToMarketReserve); @@ -66,7 +68,7 @@ public double calculateInflowToMarketReserveForTimeStep(long clearingTick, doubl return allowancesToBeAddedToReserve; } else if (allowancesInCirculation < government.getStabilityReserveLowerTriggerTrend().getValue(clearingTick)) { double allowancesToBeReleased = Math.min(government.getStabilityReserve(), - government + government .getStabilityReserveReleaseQuantityTrend().getValue(clearingTick)); return -allowancesToBeReleased; } diff --git a/emlab-generation/src/main/java/emlab/gen/role/co2policy/RenewableAdaptiveCO2CapRole.java b/emlab-generation/src/main/java/emlab/gen/role/co2policy/RenewableAdaptiveCO2CapRole.java index 7d974950..1a6b59c4 100644 --- a/emlab-generation/src/main/java/emlab/gen/role/co2policy/RenewableAdaptiveCO2CapRole.java +++ b/emlab-generation/src/main/java/emlab/gen/role/co2policy/RenewableAdaptiveCO2CapRole.java @@ -27,7 +27,9 @@ import emlab.gen.domain.market.CO2Auction; import emlab.gen.domain.market.ClearingPoint; import emlab.gen.domain.market.electricity.ElectricitySpotMarket; +import emlab.gen.domain.market.electricity.Segment; import emlab.gen.domain.policy.PowerGeneratingTechnologyTarget; +import emlab.gen.domain.technology.PowerPlant; import emlab.gen.repository.Reps; import emlab.gen.repository.StrategicReserveOperatorRepository; import emlab.gen.trend.TimeSeriesImpl; @@ -75,57 +77,61 @@ public void act(Government government) { } } - double averageEmissionsPerMWh = government.isAdaptiveCapAdjustmentBasedOnCapNotActualEmissions() ? (government - .getCo2CapTrend().getValue(getCurrentTick()) / totalProduction) : (co2Emissions / totalProduction); + double absoluteBase = government.isAdaptiveCapAdjustmentBasedOnCapNotActualEmissions() ? government + .getCo2CapTrend().getValue(getCurrentTick()) : co2Emissions; - double plannedProductionByRenewables = 0; - double totalPlannedCapacity = 0; - - double totalProducedRenewableElectricity = 0; - - double totalActualInstalledCapacity = 0; - for (TargetInvestor targetInvestor : template.findAll(TargetInvestor.class)) { - for (PowerGeneratingTechnologyTarget target : targetInvestor.getPowerGenerationTechnologyTargets()) { - double producedRenewableElectricityByTechnologyByTargetInvestor = reps.powerPlantDispatchPlanRepository - .calculateTotalProductionForEnergyProducerForTimeForTechnology(targetInvestor, - getCurrentTick() - 1, target.getPowerGeneratingTechnology(), false); - totalProducedRenewableElectricity += producedRenewableElectricityByTechnologyByTargetInvestor; - double installedCapacityByTechnology = reps.powerPlantRepository - .calculateCapacityOfExpectedOperationalPowerPlantsByOwnerByTechnology(getCurrentTick() - 1, - targetInvestor, target.getPowerGeneratingTechnology()); - totalActualInstalledCapacity += installedCapacityByTechnology; - double plannedCapacityByTechnologyAndTargetInvestor = target.getTrend().getValue(getCurrentTick() - 1); - totalPlannedCapacity += plannedCapacityByTechnologyAndTargetInvestor; - double plannedProducedRenewableElectricityByTechnologyAndTargetInvestor = plannedCapacityByTechnologyAndTargetInvestor - / installedCapacityByTechnology * producedRenewableElectricityByTechnologyByTargetInvestor; - logger.warn("plannedProducedRenewable " + target.getPowerGeneratingTechnology().getName() + ": " - + plannedProducedRenewableElectricityByTechnologyAndTargetInvestor + " = " - + plannedCapacityByTechnologyAndTargetInvestor - +"/" + installedCapacityByTechnology +"*" + producedRenewableElectricityByTechnologyByTargetInvestor); - plannedProductionByRenewables += Double - .isNaN(plannedProducedRenewableElectricityByTechnologyAndTargetInvestor) ? 0 - : plannedProducedRenewableElectricityByTechnologyAndTargetInvestor; - } - } + double plannedProductionByRenewables = 0; + double totalPlannedCapacity = 0; - double plannedSavedEmissionsApproximation = plannedProductionByRenewables * averageEmissionsPerMWh; - double actualSavedEmissionsApproximation = totalProducedRenewableElectricity * averageEmissionsPerMWh; + double totalProducedRenewableElectricity = 0; - double capReduction = calculateCapReductionForTimeStep(government, plannedSavedEmissionsApproximation, - actualSavedEmissionsApproximation); - government.getCo2CapTrend().setValue(getCurrentTick(), - government.getCo2CapTrend().getValue(getCurrentTick()) - capReduction); - TimeSeriesImpl co2CapAdjustmentTimeSeries = government.getCo2CapAdjustmentTimeSeries(); - if (co2CapAdjustmentTimeSeries == null) { - co2CapAdjustmentTimeSeries = new TimeSeriesImpl(); - co2CapAdjustmentTimeSeries.setTimeSeries(new double[government.getCo2CapTrend().getTimeSeries().length]); - co2CapAdjustmentTimeSeries.persist(); - government.setCo2CapAdjustmentTimeSeries(co2CapAdjustmentTimeSeries); - } - co2CapAdjustmentTimeSeries.setValue(getCurrentTick(), capReduction); - - // logger.warn("TimeSeries after: {}", - // government.getCo2CapTrend().getTimeSeries()); + double totalActualInstalledCapacity = 0; + for (TargetInvestor targetInvestor : template.findAll(TargetInvestor.class)) { + for (PowerGeneratingTechnologyTarget target : targetInvestor.getPowerGenerationTechnologyTargets()) { + double producedRenewableElectricityByTechnologyByTargetInvestor = reps.powerPlantDispatchPlanRepository + .calculateTotalProductionForEnergyProducerForTimeForTechnology(targetInvestor, + getCurrentTick() - 1, target.getPowerGeneratingTechnology(), false); + totalProducedRenewableElectricity += producedRenewableElectricityByTechnologyByTargetInvestor; + double installedCapacityByTechnology = reps.powerPlantRepository + .calculateCapacityOfExpectedOperationalPowerPlantsByOwnerByTechnology(getCurrentTick() - 1, + targetInvestor, target.getPowerGeneratingTechnology()); + totalActualInstalledCapacity += installedCapacityByTechnology; + double plannedCapacityByTechnologyAndTargetInvestor = target.getTrend().getValue(getCurrentTick() - 1); + totalPlannedCapacity += plannedCapacityByTechnologyAndTargetInvestor; + double plannedProducedRenewableElectricityByTechnologyAndTargetInvestor = plannedCapacityByTechnologyAndTargetInvestor + / installedCapacityByTechnology * producedRenewableElectricityByTechnologyByTargetInvestor; + // logger.warn("plannedProducedRenewable " + + // target.getPowerGeneratingTechnology().getName() + ": " + // + + // plannedProducedRenewableElectricityByTechnologyAndTargetInvestor + // + " = " + // + plannedCapacityByTechnologyAndTargetInvestor + // +"/" + installedCapacityByTechnology +"*" + + // producedRenewableElectricityByTechnologyByTargetInvestor); + plannedProductionByRenewables += Double + .isNaN(plannedProducedRenewableElectricityByTechnologyAndTargetInvestor) ? 0 + : plannedProducedRenewableElectricityByTechnologyAndTargetInvestor; + } + } + + double capReduction = government.isAdaptiveCapAdjustmentRelativeToNonSubsidisedProduction() ? calculateCapReductionForTimeStepRelativeToNonSubsidizedGeneration( + government, plannedProductionByRenewables, totalProducedRenewableElectricity, totalProduction, + absoluteBase) + : calculateCapReductionForTimeStepRelativeToTotalGeneration(government, + plannedProductionByRenewables, totalProducedRenewableElectricity, totalProduction, absoluteBase); + government.getCo2CapTrend().setValue(getCurrentTick(), + government.getCo2CapTrend().getValue(getCurrentTick()) - capReduction); + TimeSeriesImpl co2CapAdjustmentTimeSeries = government.getCo2CapAdjustmentTimeSeries(); + if (co2CapAdjustmentTimeSeries == null) { + co2CapAdjustmentTimeSeries = new TimeSeriesImpl(); + co2CapAdjustmentTimeSeries.setTimeSeries(new double[government.getCo2CapTrend().getTimeSeries().length]); + co2CapAdjustmentTimeSeries.persist(); + government.setCo2CapAdjustmentTimeSeries(co2CapAdjustmentTimeSeries); + } + co2CapAdjustmentTimeSeries.setValue(getCurrentTick(), capReduction); + + // logger.warn("TimeSeries after: {}", + // government.getCo2CapTrend().getTimeSeries()); } public double calculatedExpectedCapReductionForTimeStep(Government government, long currentTimeStep, @@ -150,8 +156,7 @@ public double calculatedExpectedCapReductionForTimeStep(Government government, l } } - double averageEmissionsPerMWh = government.isAdaptiveCapAdjustmentBasedOnCapNotActualEmissions() ? (government - .getCo2CapTrend().getValue(futureTimeStep - 1) / totalProduction) : (co2Emissions / totalProduction); + double absoluteBase = government.isAdaptiveCapAdjustmentBasedOnCapNotActualEmissions() ? government.getCo2CapTrend().getValue(futureTimeStep - 1) : co2Emissions; double plannedProductionByRenewables = 0; double totalPlannedCapacity = 0; @@ -179,26 +184,34 @@ public double calculatedExpectedCapReductionForTimeStep(Government government, l totalPlannedCapacity += plannedCapacityByTechnologyAndTargetInvestor; double plannedProducedRenewableElectricityByTechnologyAndTargetInvestor = plannedCapacityByTechnologyAndTargetInvestor / installedCapacityByTechnology * producedRenewableElectricityByTechnologyByTargetInvestor; - logger.warn("plannedProducedRenewable " + target.getPowerGeneratingTechnology().getName() + ": " - + plannedProducedRenewableElectricityByTechnologyAndTargetInvestor + " = " - + plannedCapacityByTechnologyAndTargetInvestor + "/" + installedCapacityByTechnology + "*" - + producedRenewableElectricityByTechnologyByTargetInvestor); + // logger.warn("plannedProducedRenewable " + + // target.getPowerGeneratingTechnology().getName() + ": " + // + + // plannedProducedRenewableElectricityByTechnologyAndTargetInvestor + // + " = " + // + plannedCapacityByTechnologyAndTargetInvestor + "/" + + // installedCapacityByTechnology + "*" + // + producedRenewableElectricityByTechnologyByTargetInvestor); plannedProductionByRenewables += Double .isNaN(plannedProducedRenewableElectricityByTechnologyAndTargetInvestor) ? 0 : plannedProducedRenewableElectricityByTechnologyAndTargetInvestor; } } - double plannedSavedEmissionsApproximation = plannedProductionByRenewables * averageEmissionsPerMWh; - double actualSavedEmissionsApproximation = totalProducedRenewableElectricity * averageEmissionsPerMWh; - double capReduction = calculateCapReductionForTimeStep(government, plannedSavedEmissionsApproximation, - actualSavedEmissionsApproximation); - return capReduction; + double capReduction = government.isAdaptiveCapAdjustmentRelativeToNonSubsidisedProduction() ? calculateCapReductionForTimeStepRelativeToNonSubsidizedGeneration( + government, plannedProductionByRenewables, totalProducedRenewableElectricity, totalProduction,absoluteBase) + : calculateCapReductionForTimeStepRelativeToTotalGeneration(government, + plannedProductionByRenewables, totalProducedRenewableElectricity, totalProduction, absoluteBase); + return capReduction; } - double calculateCapReductionForTimeStep(Government government, - double plannedSavedEmissionsApproximation, double actualSavedEmissionsApproximation) { + double calculateCapReductionForTimeStepRelativeToTotalGeneration(Government government, + double plannedProductionByRenewables, double totalProducedRenewableElectricity, double totalProduction, + double absoluteBase) { + double averageEmissionsPerMWh = (absoluteBase / totalProduction); + double plannedSavedEmissionsApproximation = plannedProductionByRenewables * averageEmissionsPerMWh; + double actualSavedEmissionsApproximation = totalProducedRenewableElectricity * averageEmissionsPerMWh; double capReduction = 0; @@ -208,12 +221,28 @@ public double calculatedExpectedCapReductionForTimeStep(Government government, l capReduction = Math.max(0, actualSavedEmissionsApproximation - plannedSavedEmissionsApproximation) * government.getAdaptiveCapCO2SavingsWeighingFactor(); } - logger.warn("plannedSavedEmissionsApproximation: " + plannedSavedEmissionsApproximation - + ", actualSavedEmissionsApproximation: " + actualSavedEmissionsApproximation + ", Cap reduction: " - + capReduction); + // logger.warn("plannedSavedEmissionsApproximation: " + + // plannedSavedEmissionsApproximation + // + ", actualSavedEmissionsApproximation: " + + // actualSavedEmissionsApproximation + ", Cap reduction: " + // + capReduction); // logger.warn("TimeSeries after: {}", // government.getCo2CapTrend().getTimeSeries()); + return capReduction; + + } + double calculateCapReductionForTimeStepRelativeToNonSubsidizedGeneration(Government government, + double plannedProductionByRenewables, double totalProducedRenewableElectricity, double totalProduction, + double absoluteBase) { + double capReduction = Math.max(0, (totalProducedRenewableElectricity - plannedProductionByRenewables) + / (totalProduction - plannedProductionByRenewables)) + * absoluteBase; + // double alternativeCapReduction = + // calculateCapReductionForTimeStepRelativeToTotalGeneration(government, + // plannedProductionByRenewables, totalProducedRenewableElectricity, + // totalProduction,absoluteBase); + // logger.warn("CapReductionToNonSub: {}, instead of to toal: {}",capReduction,alternativeCapReduction); return capReduction; } diff --git a/emlab-generation/src/main/java/emlab/gen/role/investment/DismantlePowerPlantOperationalLossRole.java b/emlab-generation/src/main/java/emlab/gen/role/investment/DismantlePowerPlantOperationalLossRole.java index 051deff3..846ec776 100644 --- a/emlab-generation/src/main/java/emlab/gen/role/investment/DismantlePowerPlantOperationalLossRole.java +++ b/emlab-generation/src/main/java/emlab/gen/role/investment/DismantlePowerPlantOperationalLossRole.java @@ -15,25 +15,39 @@ ******************************************************************************/ package emlab.gen.role.investment; +import java.util.HashMap; +import java.util.Map; +import java.util.Map.Entry; +import java.util.TreeMap; + +import org.apache.commons.math.stat.regression.SimpleRegression; import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.transaction.annotation.Transactional; -import agentspring.role.Role; +import agentspring.role.AbstractRole; import agentspring.role.RoleComponent; -import emlab.gen.domain.agent.EnergyProducer; +import emlab.gen.domain.agent.CommoditySupplier; +import emlab.gen.domain.agent.Government; +import emlab.gen.domain.contract.CashFlow; +import emlab.gen.domain.contract.Loan; +import emlab.gen.domain.market.ClearingPoint; +import emlab.gen.domain.market.DecarbonizationMarket; +import emlab.gen.domain.market.electricity.ElectricitySpotMarket; +import emlab.gen.domain.market.electricity.PowerPlantDispatchPlan; +import emlab.gen.domain.market.electricity.Segment; import emlab.gen.domain.technology.PowerPlant; +import emlab.gen.domain.technology.Substance; +import emlab.gen.domain.technology.SubstanceShareInFuelMix; import emlab.gen.repository.Reps; -import emlab.gen.role.AbstractEnergyProducerRole; +import emlab.gen.util.MapValueComparator; /** - * {@link EnergyProducer}s dismantle {@link PowerPlant}s that are out of merit - * - * @author Emile Chappin @author - * Alfredas - * Chmieliauskas + * @author pradyumnabhagwat * */ + @RoleComponent -public class DismantlePowerPlantOperationalLossRole extends AbstractEnergyProducerRole implements Role { +public class DismantlePowerPlantOperationalLossRole extends AbstractRole { @Autowired Reps reps; @@ -42,23 +56,424 @@ public Reps getReps() { return reps; } - public void act(EnergyProducer producer) { + @Transactional + public void act(ElectricitySpotMarket market) { + if (getCurrentTick() > 0) { + + for (PowerPlant plant : reps.powerPlantRepository.findOperationalPowerPlantsInMarket(market, + getCurrentTick())) { + + double age = 0; + long currentLiftime = 0; + currentLiftime = getCurrentTick() - plant.getConstructionStartTime() + - plant.getTechnology().getExpectedLeadtime() - plant.getTechnology().getExpectedPermittime(); + + plant.setActualLifetime(currentLiftime); + + age = (double) plant.getActualLifetime() / (((double) plant.getTechnology().getExpectedLifetime())); + + plant.setAgeFraction((double) age); + + if (plant.getAgeFraction() > 1.00D) { + + double ModifiedOM = plant.getActualFixedOperatingCost() + * Math.pow((1 + (plant.getTechnology().getFixedOperatingCostModifierAfterLifetime())), + ((double) plant.getActualLifetime() - (((double) plant.getTechnology() + .getExpectedLifetime())))); + + plant.setActualFixedOperatingCost(ModifiedOM); + } + + long yearIterator = 1; + + double profitability = 0; + double totalInvestment = 0; + for (yearIterator = 1; yearIterator <= market.getLookback() && yearIterator > 0; yearIterator++) { + double profit = 0; + double plantMarginalCost = 0; + double cost = 0; + double revenue = 0; + double energyGenerated = 0; + double calculatedOM = 0; + if ((getCurrentTick() - yearIterator) >= 0) { + + for (Segment currentSegment : reps.segmentRepository.findAll()) { + + PowerPlantDispatchPlan ppdp = new PowerPlantDispatchPlan(); + ppdp = reps.powerPlantDispatchPlanRepository + .findOnePowerPlantDispatchPlanForPowerPlantForSegmentForTime(plant, currentSegment, + getCurrentTick() - yearIterator, false); + + if (ppdp != null) { + + double segmentMC = 0; + double mc = 0; + double acceptedAmount = 0; + double energyInSegment = 0; + + acceptedAmount = ppdp.getAcceptedAmount(); + mc = calculateMarginalCostExclCO2MarketCost(plant, getCurrentTick()); + segmentMC = mc * acceptedAmount * currentSegment.getLengthInHours(); + energyInSegment = acceptedAmount * currentSegment.getLengthInHours(); + plantMarginalCost += segmentMC; + energyGenerated += energyInSegment; + } + + } + + for (CashFlow cf : reps.cashFlowRepository.findAllCashFlowsForPowerPlantForTime(plant, + (getCurrentTick() - yearIterator))) { + + if (cf.getType() == CashFlow.FIXEDOMCOST) { + calculatedOM = cf.getMoney(); + } + + if (cf.getType() == CashFlow.COMMODITY || cf.getType() == CashFlow.CO2TAX + || cf.getType() == CashFlow.CO2AUCTION) { + + cost = cost + cf.getMoney(); + } + + if (cf.getType() == CashFlow.ELECTRICITY_SPOT || cf.getType() == CashFlow.STRRESPAYMENT + || cf.getType() == CashFlow.SIMPLE_CAPACITY_MARKET) { + revenue = revenue + cf.getMoney(); + + } + + } + + double actualOM = (calculatedOM - (plant.getTechnology().getVariableOperatingCostinEURPerMWh() * 8760 * plant + .getTechnology().getCapacity())) + + (plant.getTechnology().getVariableOperatingCostinEURPerMWh() * energyGenerated); + + cost = cost + plantMarginalCost + actualOM; + profit = (revenue - cost); + + } + profitability += profit; + totalInvestment = plant.getTechnology().getInvestmentCost(plant.getConstructionStartTime()) + * plant.getActualNominalCapacity(); + } + + plant.setProfitability((profitability / totalInvestment)); + + // logger.warn("1 ROI " + plant.getProfitability()); + // logger.warn("prof " + plant.getProfitability() + " plant " + + // plant.getName()); + } + + for (PowerPlant plant : reps.powerPlantRepository.findOperationalPowerPlantsInMarket(market, + getCurrentTick())) { + + if (plant.getOwner().equals(reps.targetInvestorRepository.findInvestorByMarket(market))) { + + double prolongYearsOfDismantlng = plant.getTechnology().getMaximumLifeExtension() + + plant.getTechnology().getExpectedLifetime(); + + if (plant.getActualLifetime() > (prolongYearsOfDismantlng)) { + + plant.dismantlePowerPlant(getCurrentTick()); + } + } + } + + for (PowerPlant plant : reps.powerPlantRepository + .findOperationalPowerPlantsByAscendingProfitabilityAndMarket(market, getCurrentTick())) { + // logger.warn("profitability " + plant.getProfitability()); + if (plant.getProfitability() < 0) { + + Map marginalCostMap = new HashMap(); + Map meritOrder; + + for (PowerPlant plant1 : reps.powerPlantRepository.findExpectedOperationalPowerPlantsInMarket( + market, getCurrentTick())) { + marginalCostMap.put(plant1, calculateMarginalCostExclCO2MarketCost(plant1, getCurrentTick())); + + } + + MapValueComparator comp = new MapValueComparator(marginalCostMap); + meritOrder = new TreeMap(comp); + meritOrder.putAll(marginalCostMap); + + double mc = 0; + double OM = 0; + double sumProfit = 0; + double energy = 0; + + double totalProfit = 0; + double demandGrowthFactor = 0; + double assignment = 0; + + mc = calculateMarginalCostExclCO2MarketCost(plant, getCurrentTick()); + + OM = plant.getActualFixedOperatingCost(); + + if (getCurrentTick() == 1) { + demandGrowthFactor = (market.getDemandGrowthTrend().getValue(getCurrentTick())); + } + if (getCurrentTick() > 1) { + SimpleRegression sr = new SimpleRegression(); + for (long time = getCurrentTick() - 1; time >= getCurrentTick() + - market.getBacklookingForDemandForecastinginDismantling() + && time >= 0; time = time - 1) { + sr.addData(time, market.getDemandGrowthTrend().getValue(time)); + + } + + demandGrowthFactor = (market.getDemandGrowthTrend().getValue(getCurrentTick())); + } + + double range = 0; + + if (getCurrentTick() == 1) { + double max = reps.powerPlantRepository.calculateBaseCapacityOfOperationalPowerPlantsInMarket( + market, getCurrentTick()); + double min = reps.powerPlantRepository.calculatePeakCapacityOfOperationalPowerPlantsInMarket( + market, getCurrentTick()); + + range = ((max + min) / 2); + + } + + if (getCurrentTick() > 1) { + SimpleRegression sr = new SimpleRegression(); + for (long time = getCurrentTick() - 1; time >= getCurrentTick() + - market.getBacklookingForDemandForecastinginDismantling() + && time >= 0; time = time - 1) { + + double max = reps.powerPlantRepository + .calculateBaseCapacityOfOperationalPowerPlantsInMarket(market, time); + double min = reps.powerPlantRepository + .calculatePeakCapacityOfOperationalPowerPlantsInMarket(market, time); + + sr.addData(time, ((max + min) / 2)); + + } + + range = (sr.predict(getCurrentTick())); + } + + // * ((100 + r.nextGaussian() * 20) / 100); + + for (Segment currentSegment : reps.segmentRepository.findAll()) { + double segmentCapacity = 0; + double segmentLoad = demandGrowthFactor + * reps.segmentLoadRepository.returnSegmentBaseLoadBySegmentAndMarket(currentSegment, + market); + + if ((int) currentSegment.getSegmentID() != 1) { + + double segmentPortion = (int) currentSegment.getSegmentID(); + + segmentCapacity = reps.powerPlantRepository + .calculateBaseCapacityOfOperationalPowerPlantsInMarket(market, getCurrentTick()); + + // reps.powerPlantRepository + // .calculateBaseCapacityOfOperationalPowerPlantsInMarket(market, + // getCurrentTick()) + // - (range); + } + + else { + segmentCapacity = reps.powerPlantRepository + .calculateBaseCapacityOfOperationalPowerPlantsInMarket(market, getCurrentTick()); + + // reps.powerPlantRepository + // .calculateBaseCapacityOfOperationalPowerPlantsInMarket(market, + // getCurrentTick()) + // - (range); + } + // logger.warn("Capacity " + market.getName() + " DGF " + // + demandGrowthFactor); + + if (segmentLoad > (segmentCapacity)) { + double price = 0; + double profit1 = 0; + price = market.getValueOfLostLoad(); + + profit1 = currentSegment.getLengthInHours() + * plant.getAvailableCapacity(getCurrentTick(), currentSegment, + reps.segmentRepository.count()) * (price - mc); + + sumProfit += profit1; + energy += currentSegment.getLengthInHours() + * plant.getAvailableCapacity(getCurrentTick(), currentSegment, + reps.segmentRepository.count()); + } + + if (segmentLoad <= (segmentCapacity)) { + double price = 0; + double capacityCounter = 0; + + for (Entry plantCost : meritOrder.entrySet()) { + PowerPlant plant1 = plantCost.getKey(); + + if (capacityCounter < segmentLoad) { + capacityCounter += plant1.getAvailableCapacity(getCurrentTick(), currentSegment, + reps.segmentRepository.count()); + price = plantCost.getValue(); + } + + } + + if (price > mc) { + double profit1 = 0; + profit1 = currentSegment.getLengthInHours() + * plant.getAvailableCapacity(getCurrentTick(), currentSegment, + reps.segmentRepository.count()) * (price - mc); + + energy += currentSegment.getLengthInHours() + * plant.getAvailableCapacity(getCurrentTick(), currentSegment, + reps.segmentRepository.count()); + sumProfit += profit1; + } + } + } + + totalProfit = (sumProfit - ((OM - (plant.getTechnology().getVariableOperatingCostinEURPerMWh() * 8760 * plant + .getTechnology().getCapacity())) + (plant.getTechnology() + .getVariableOperatingCostinEURPerMWh() * energy))); + + // logger.warn("2 Range " + (range1*mc)); + + if ((totalProfit + plant.getProfitability()) < 0) { + + // REMAINING LOAN-----// + Loan loan = plant.getLoan(); + + if (loan != null) { + + logger.info("Found a loan: {}", loan); + if (loan.getNumberOfPaymentsDone() < loan.getTotalNumberOfPayments()) { + + double payment = loan.getAmountPerPayment() + * (loan.getTotalNumberOfPayments() - loan.getNumberOfPaymentsDone()); + + reps.nonTransactionalCreateRepository.createCashFlow(plant.getOwner(), loan.getTo(), + payment, CashFlow.LOAN, getCurrentTick(), loan.getRegardingPowerPlant()); + + loan.setNumberOfPaymentsDone(loan.getNumberOfPaymentsDone() + + (loan.getTotalNumberOfPayments() - loan.getNumberOfPaymentsDone())); + + logger.info("DISMANTLING: Paying {} (euro) for remaining loan {}", payment, loan); + } + } + Loan downpayment = plant.getDownpayment(); + if (downpayment != null) { + logger.info("Found downpayment"); + if (downpayment.getNumberOfPaymentsDone() < downpayment.getTotalNumberOfPayments()) { + + double payment = downpayment.getAmountPerPayment() + * (downpayment.getTotalNumberOfPayments() - downpayment + .getNumberOfPaymentsDone()); + reps.nonTransactionalCreateRepository.createCashFlow(plant.getOwner(), + downpayment.getTo(), payment, CashFlow.DOWNPAYMENT, getCurrentTick(), + downpayment.getRegardingPowerPlant()); + + downpayment.setNumberOfPaymentsDone(downpayment.getNumberOfPaymentsDone() + + (downpayment.getTotalNumberOfPayments() - downpayment + .getNumberOfPaymentsDone())); + + logger.info("DISMANTLING: Paying {} (euro) for remaining downpayment {}", payment, + downpayment); + } + } + // logger.warn("dismantled " + plant.getName()); + plant.dismantlePowerPlant(getCurrentTick()); + + } + } + } + } + } + + public double calculateMarginalCostExclCO2MarketCost(PowerPlant powerPlant, long clearingTick) { + double mc = 0d; + // fuel cost + mc += calculateMarginalFuelCost(powerPlant, clearingTick); + mc += calculateCO2TaxMarginalCost(powerPlant, clearingTick); + logger.info("Margincal cost excluding CO2 auction/market cost for plant {} is {}", powerPlant.getName(), mc); + return mc; + } - logger.info("Dismantling plants if out of merit"); + public double calculateMarginalFuelCost(PowerPlant powerPlant, long clearingTick) { + double fc = 0d; + // fuel cost for each fuel + for (SubstanceShareInFuelMix mix : powerPlant.getFuelMix()) { - // dis-mantle plants when passed technical lifetime. - for (PowerPlant plant : reps.powerPlantRepository.findOperationalPowerPlantsByOwner(producer, getCurrentTick())) { - long horizon = producer.getPastTimeHorizon(); + double amount = mix.getShare(); + logger.info("Calculating need for fuel: {} units of {}", mix.getShare(), mix.getSubstance().getName()); + double fuelPrice = findLastKnownPriceForSubstance(mix.getSubstance(), clearingTick); + fc += amount * fuelPrice; + logger.info("Calculating marginal cost and found a fuel price which is {} per unit of fuel", fuelPrice); + } + + return fc; + } - double requiredProfit = producer.getDismantlingRequiredOperatingProfit(); - if (calculateAveragePastOperatingProfit(plant, horizon) < requiredProfit) { - logger.info("Dismantling power plant because it has had an operating loss (incl O&M cost) on average in the last " - + horizon + " years: " + plant); + public double calculateCO2TaxMarginalCost(PowerPlant powerPlant, long tick) { + double co2Intensity = powerPlant.calculateEmissionIntensity(); + Government government = reps.genericRepository.findFirst(Government.class); + double co2Tax = government.getCO2Tax(tick); + return co2Intensity * co2Tax; + } - plant.dismantlePowerPlant(getCurrentTick()); + public double findLastKnownPriceForSubstance(Substance substance, long clearingTick) { + + DecarbonizationMarket market = reps.marketRepository.findFirstMarketBySubstance(substance); + if (market == null) { + logger.warn("No market found for {} so no price can be found", substance.getName()); + return 0d; + } else { + return findLastKnownPriceOnMarket(market, clearingTick); + } + } + public double findLastKnownPriceOnMarket(DecarbonizationMarket market, long clearingTick) { + Double average = calculateAverageMarketPriceBasedOnClearingPoints(reps.clearingPointRepositoryOld + .findClearingPointsForMarketAndTime(market, clearingTick, false)); + Substance substance = market.getSubstance(); + + if (average != null) { + logger.info("Average price found on market for this tick for {}", substance.getName()); + return average; + } + + average = calculateAverageMarketPriceBasedOnClearingPoints(reps.clearingPointRepositoryOld + .findClearingPointsForMarketAndTime(market, clearingTick - 1, false)); + if (average != null) { + logger.info("Average price found on market for previous tick for {}", substance.getName()); + return average; + } + + if (market.getReferencePrice() > 0) { + logger.info("Found a reference price found for market for {}", substance.getName()); + return market.getReferencePrice(); + } + + for (CommoditySupplier supplier : reps.genericRepository.findAll(CommoditySupplier.class)) { + if (supplier.getSubstance().equals(substance)) { + + return supplier.getPriceOfCommodity().getValue(clearingTick); } } + + logger.info("No price has been found for {}", substance.getName()); + return 0d; + } + + private Double calculateAverageMarketPriceBasedOnClearingPoints(Iterable clearingPoints) { + double priceTimesVolume = 0d; + double volume = 0d; + + for (ClearingPoint point : clearingPoints) { + priceTimesVolume += point.getPrice() * point.getVolume(); + volume += point.getVolume(); + } + if (volume > 0) { + return priceTimesVolume / volume; + } + return null; } -} +} \ No newline at end of file diff --git a/emlab-generation/src/main/java/emlab/gen/role/investment/InvestInPowerGenerationTechnologiesRole.java b/emlab-generation/src/main/java/emlab/gen/role/investment/InvestInPowerGenerationTechnologiesRole.java index d89d5aaf..abe61d21 100644 --- a/emlab-generation/src/main/java/emlab/gen/role/investment/InvestInPowerGenerationTechnologiesRole.java +++ b/emlab-generation/src/main/java/emlab/gen/role/investment/InvestInPowerGenerationTechnologiesRole.java @@ -33,11 +33,13 @@ import emlab.gen.domain.agent.BigBank; import emlab.gen.domain.agent.EnergyProducer; import emlab.gen.domain.agent.PowerPlantManufacturer; +import emlab.gen.domain.agent.Regulator; import emlab.gen.domain.agent.StrategicReserveOperator; import emlab.gen.domain.contract.CashFlow; import emlab.gen.domain.contract.Loan; import emlab.gen.domain.gis.Zone; import emlab.gen.domain.market.ClearingPoint; +import emlab.gen.domain.market.capacity.CapacityMarket; import emlab.gen.domain.market.electricity.ElectricitySpotMarket; import emlab.gen.domain.market.electricity.Segment; import emlab.gen.domain.market.electricity.SegmentLoad; @@ -56,15 +58,15 @@ /** * {@link EnergyProducer}s decide to invest in new {@link PowerPlant} * - * @author Emile Chappin @author Alfredas Chmieliauskas + * @author Emile Chappin @author + * Alfredas + * Chmieliauskas * @author JCRichstein */ @Configurable @NodeEntity public class InvestInPowerGenerationTechnologiesRole extends GenericInvestmentRole -implements -Role, -NodeBacked { + implements Role, NodeBacked { @Transient @Autowired @@ -98,38 +100,42 @@ public void act(T agent) { // logger.warn(expectedCO2Price.toString()); - //Demand + // Demand Map expectedDemand = new HashMap(); - for(ElectricitySpotMarket elm : reps.template.findAll(ElectricitySpotMarket.class)){ + for (ElectricitySpotMarket elm : reps.template.findAll(ElectricitySpotMarket.class)) { GeometricTrendRegression gtr = new GeometricTrendRegression(); - for(long time = getCurrentTick(); time>getCurrentTick()-agent.getNumberOfYearsBacklookingForForecasting() && time>=0; time=time-1){ + for (long time = getCurrentTick(); time > getCurrentTick() + - agent.getNumberOfYearsBacklookingForForecasting() && time >= 0; time = time - 1) { gtr.addData(time, elm.getDemandGrowthTrend().getValue(time)); } expectedDemand.put(elm, gtr.predict(futureTimePoint)); } - - // Investment decision // for (ElectricitySpotMarket market : // reps.genericRepository.findAllAtRandom(ElectricitySpotMarket.class)) // { ElectricitySpotMarket market = agent.getInvestorMarket(); - MarketInformation marketInformation = new MarketInformation(market, expectedDemand, expectedFuelPrices, expectedCO2Price.get(market) - .doubleValue(), futureTimePoint); - /* - * if (marketInfoMap.containsKey(market) && marketInfoMap.get(market).time == futureTimePoint) { marketInformation = marketInfoMap.get(market); } else { marketInformation = new - * MarketInformation(market, expectedFuelPrices, expectedCO2Price, futureTimePoint); marketInfoMap.put(market, marketInformation); } - */ + MarketInformation marketInformation = new MarketInformation(market, expectedDemand, expectedFuelPrices, + expectedCO2Price.get(market).doubleValue(), futureTimePoint); + /* + * if (marketInfoMap.containsKey(market) && + * marketInfoMap.get(market).time == futureTimePoint) { + * marketInformation = marketInfoMap.get(market); } else { + * marketInformation = new MarketInformation(market, + * expectedFuelPrices, expectedCO2Price, futureTimePoint); + * marketInfoMap.put(market, marketInformation); } + */ // logger.warn(agent + " is expecting a CO2 price of " + // expectedCO2Price.get(market) + " Euro/MWh at timepoint " // + futureTimePoint + " in Market " + market); - // logger.warn("Agent {} found the expected prices to be {}", agent, + // logger.warn("Agent {} found the expected prices to be {}", agent, // marketInformation.expectedElectricityPricesPerSegment); - // logger.warn("Agent {} found that the installed capacity in the market {} in future to be " + // logger.warn("Agent {} found that the installed capacity in the market + // {} in future to be " // + marketInformation.capacitySum + // "and expectde maximum demand to be " // + marketInformation.maxExpectedLoad, agent, market); @@ -144,11 +150,14 @@ public void act(T agent) { // if too much capacity of this technology in the pipeline (not // limited to the 5 years) double expectedInstalledCapacityOfTechnology = reps.powerPlantRepository - .calculateCapacityOfExpectedOperationalPowerPlantsInMarketAndTechnology(market, technology, futureTimePoint); - PowerGeneratingTechnologyTarget technologyTarget = reps.powerGenerationTechnologyTargetRepository.findOneByTechnologyAndMarket(technology, market); - if(technologyTarget!=null){ + .calculateCapacityOfExpectedOperationalPowerPlantsInMarketAndTechnology(market, technology, + futureTimePoint); + PowerGeneratingTechnologyTarget technologyTarget = reps.powerGenerationTechnologyTargetRepository + .findOneByTechnologyAndMarket(technology, market); + if (technologyTarget != null) { double technologyTargetCapacity = technologyTarget.getTrend().getValue(futureTimePoint); - expectedInstalledCapacityOfTechnology = (technologyTargetCapacity > expectedInstalledCapacityOfTechnology) ? technologyTargetCapacity : expectedInstalledCapacityOfTechnology; + expectedInstalledCapacityOfTechnology = (technologyTargetCapacity > expectedInstalledCapacityOfTechnology) + ? technologyTargetCapacity : expectedInstalledCapacityOfTechnology; } double pgtNodeLimit = Double.MAX_VALUE; PowerGeneratingTechnologyNodeLimit pgtLimit = reps.powerGeneratingTechnologyNodeLimitRepository @@ -162,41 +171,48 @@ public void act(T agent) { double expectedOwnedTotalCapacityInMarket = reps.powerPlantRepository .calculateCapacityOfExpectedOperationalPowerPlantsInMarketByOwner(market, futureTimePoint, agent); double expectedOwnedCapacityInMarketOfThisTechnology = reps.powerPlantRepository - .calculateCapacityOfExpectedOperationalPowerPlantsInMarketByOwnerAndTechnology(market, technology, futureTimePoint, - agent); - double capacityOfTechnologyInPipeline = reps.powerPlantRepository.calculateCapacityOfPowerPlantsByTechnologyInPipeline( - technology, getCurrentTick()); - double operationalCapacityOfTechnology = reps.powerPlantRepository.calculateCapacityOfOperationalPowerPlantsByTechnology( - technology, getCurrentTick()); + .calculateCapacityOfExpectedOperationalPowerPlantsInMarketByOwnerAndTechnology(market, technology, + futureTimePoint, agent); + double capacityOfTechnologyInPipeline = reps.powerPlantRepository + .calculateCapacityOfPowerPlantsByTechnologyInPipeline(technology, getCurrentTick()); + double operationalCapacityOfTechnology = reps.powerPlantRepository + .calculateCapacityOfOperationalPowerPlantsByTechnology(technology, getCurrentTick()); double capacityInPipelineInMarket = reps.powerPlantRepository .calculateCapacityOfPowerPlantsByMarketInPipeline(market, getCurrentTick()); if ((expectedInstalledCapacityOfTechnology + plant.getActualNominalCapacity()) / (marketInformation.maxExpectedLoad + plant.getActualNominalCapacity()) > technology - .getMaximumInstalledCapacityFractionInCountry()) { + .getMaximumInstalledCapacityFractionInCountry()) { // logger.warn(agent + - // " will not invest in {} technology because there's too much of this type in the market", + // " will not invest in {} technology because there's too much + // of this type in the market", // technology); - } else if ((expectedInstalledCapacityOfTechnologyInNode + plant.getActualNominalCapacity()) > pgtNodeLimit) { + } else + if ((expectedInstalledCapacityOfTechnologyInNode + plant.getActualNominalCapacity()) > pgtNodeLimit) { } else if (expectedOwnedCapacityInMarketOfThisTechnology > expectedOwnedTotalCapacityInMarket * technology.getMaximumInstalledCapacityFractionPerAgent()) { // logger.warn(agent + - // " will not invest in {} technology because there's too much capacity planned by him", + // " will not invest in {} technology because there's too much + // capacity planned by him", // technology); } else if (capacityInPipelineInMarket > 0.2 * marketInformation.maxExpectedLoad) { - // logger.warn("Not investing because more than 20% of demand in pipeline."); + // logger.warn("Not investing because more than 20% of demand in + // pipeline."); } else if ((capacityOfTechnologyInPipeline > 2.0 * operationalCapacityOfTechnology) && capacityOfTechnologyInPipeline > 9000) { // TODO: // reflects that you cannot expand a technology out of zero. // logger.warn(agent + - // " will not invest in {} technology because there's too much capacity in the pipeline", + // " will not invest in {} technology because there's too much + // capacity in the pipeline", // technology); - } else if (plant.getActualInvestedCapital() * (1 - agent.getDebtRatioOfInvestments()) > agent - .getDownpaymentFractionOfCash() * agent.getCash()) { + } else if (plant.getActualInvestedCapital() + * (1 - agent.getDebtRatioOfInvestments()) > agent.getDownpaymentFractionOfCash() + * agent.getCash()) { // logger.warn(agent + - // " will not invest in {} technology as he does not have enough money for downpayment", + // " will not invest in {} technology as he does not have enough + // money for downpayment", // technology); } else { @@ -204,10 +220,12 @@ public void act(T agent) { for (Substance fuel : technology.getFuels()) { myFuelPrices.put(fuel, expectedFuelPrices.get(fuel)); } - Set fuelMix = calculateFuelMix(plant, myFuelPrices, expectedCO2Price.get(market)); + Set fuelMix = calculateFuelMix(plant, myFuelPrices, + expectedCO2Price.get(market)); plant.setFuelMix(fuelMix); - double expectedMarginalCost = determineExpectedMarginalCost(plant, expectedFuelPrices, expectedCO2Price.get(market)); + double expectedMarginalCost = determineExpectedMarginalCost(plant, expectedFuelPrices, + expectedCO2Price.get(market)); double runningHours = 0d; double expectedGrossProfit = 0d; @@ -217,13 +235,13 @@ public void act(T agent) { // be used here to determine the expected profit. Maybe not // though... for (SegmentLoad segmentLoad : market.getLoadDurationCurve()) { - double expectedElectricityPrice = marketInformation.expectedElectricityPricesPerSegment.get(segmentLoad - .getSegment()); + double expectedElectricityPrice = marketInformation.expectedElectricityPricesPerSegment + .get(segmentLoad.getSegment()); double hours = segmentLoad.getSegment().getLengthInHours(); if (expectedMarginalCost <= expectedElectricityPrice) { runningHours += hours; - expectedGrossProfit += (expectedElectricityPrice - expectedMarginalCost) * hours - * plant.getAvailableCapacity(futureTimePoint, segmentLoad.getSegment(), numberOfSegments); + expectedGrossProfit += (expectedElectricityPrice - expectedMarginalCost) * hours * plant + .getAvailableCapacity(futureTimePoint, segmentLoad.getSegment(), numberOfSegments); } } @@ -233,7 +251,8 @@ public void act(T agent) { // expect to meet minimum running hours? if (runningHours < plant.getTechnology().getMinimumRunningHours()) { // logger.warn(agent+ - // " will not invest in {} technology as he expect to have {} running, which is lower then required", + // " will not invest in {} technology as he expect to have + // {} running, which is lower then required", // technology, runningHours); } else { @@ -241,6 +260,57 @@ public void act(T agent) { // plant.getActualNominalCapacity(); double operatingProfit = expectedGrossProfit - fixedOMCost; + // logger.warn("Operating Profit without Capacity Revenue" + + // operatingProfit); + Segment peakSegment = reps.segmentRepository.findPeakSegmentforMarket(market); + + Zone zoneTemp = market.getZone(); + Regulator regulator = reps.regulatorRepository.findRegulatorForZone(zoneTemp); + CapacityMarket cMarket = reps.capacityMarketRepository.findCapacityMarketForZone(zoneTemp); + + double capacityRevenue = 0d; + double sumCapacityRevenue = 0d; + // the following is a piece of bad coding - as it requires + // each agent to have the property of + // 'issimplecapacitymarketenabled. While the concept of + // 'enablingCapacityMarket' should not be related + // to an agent but to the zone in question., and therefore + // be accessed by the zone as well. + + if ((agent.isSimpleCapacityMarketEnabled()) && (regulator != null)) { + + long time = 0l; + for (time = getCurrentTick(); time > getCurrentTick() + - agent.getNumberOfYearsBacklookingForForecasting() && time > 0; time = time - 1) { + double capacityRevenueTemp = reps.capacityMarketRepository + .findOneClearingPointForTimeAndCapacityMarket(time, cMarket).getPrice(); + sumCapacityRevenue += capacityRevenueTemp; + } + // logger.warn(" And capacity (peak segment) is" + // + plant.getExpectedAvailableCapacity(futureTimePoint, + // peakSegment, numberOfSegments)); + // logger.warn(" And capacity (null) is" + // + plant.getExpectedAvailableCapacity(futureTimePoint, + // null, numberOfSegments)); + + // -------expected capacity revenue, N years in the + // future, is the AVERAGE of the past few years of + // capacity revenue----- + capacityRevenue = plant.getExpectedAvailableCapacity(futureTimePoint, peakSegment, + numberOfSegments) * sumCapacityRevenue / (getCurrentTick() - time); + + } else { + capacityRevenue = 0; + } + // logger.warn("Capacity Revenue" + capacityRevenue); + + operatingProfit = operatingProfit + capacityRevenue; + + // Feed In Premium revenues : + // if feed in premiumImplemented, then get regulator's + // feedInPremiumFactor and then + // if technology is eligible, + // // TODO Alter discount rate on the basis of the amount // in long-term contracts? @@ -267,20 +337,24 @@ public void act(T agent) { // negative!! // plant.getActualNominalCapacity(); - // logger.warn("Agent {} found that the discounted capital for technology {} to be " + // logger.warn("Agent {} found that the discounted capital + // for technology {} to be " // + discountedCapitalCosts, agent, // technology); double discountedOpProfit = npv(discountedProjectCashInflow, wacc); - // logger.warn("Agent {} found that the projected discounted inflows for technology {} to be " + // logger.warn("Agent {} found that the projected discounted + // inflows for technology {} to be " // + discountedOpProfit, // agent, technology); double projectValue = discountedOpProfit + discountedCapitalCosts; + // logger.warn("Project value" + projectValue); // logger.warn( - // "Agent {} found the project value for technology {} to be " + // "Agent {} found the project value for technology {} to be + // " // + Math.round(projectValue / // plant.getActualNominalCapacity()) + // " EUR/kW (running hours: " @@ -307,28 +381,31 @@ public void act(T agent) { } if (bestTechnology != null) { - // logger.warn("Agent {} invested in technology {} at tick " + getCurrentTick(), agent, bestTechnology); + // logger.warn("Agent {} invested in technology {} at tick " + + // getCurrentTick(), agent, bestTechnology); PowerPlant plant = new PowerPlant(); plant.specifyAndPersist(getCurrentTick(), agent, getNodeForZone(market.getZone()), bestTechnology); PowerPlantManufacturer manufacturer = reps.genericRepository.findFirst(PowerPlantManufacturer.class); BigBank bigbank = reps.genericRepository.findFirst(BigBank.class); - double investmentCostPayedByEquity = plant.getActualInvestedCapital() * (1 - agent.getDebtRatioOfInvestments()); + double investmentCostPayedByEquity = plant.getActualInvestedCapital() + * (1 - agent.getDebtRatioOfInvestments()); double investmentCostPayedByDebt = plant.getActualInvestedCapital() * agent.getDebtRatioOfInvestments(); double downPayment = investmentCostPayedByEquity; createSpreadOutDownPayments(agent, manufacturer, downPayment, plant); - double amount = determineLoanAnnuities(investmentCostPayedByDebt, plant.getTechnology().getDepreciationTime(), - agent.getLoanInterestRate()); + double amount = determineLoanAnnuities(investmentCostPayedByDebt, + plant.getTechnology().getDepreciationTime(), agent.getLoanInterestRate()); // logger.warn("Loan amount is: " + amount); - Loan loan = reps.loanRepository.createLoan(agent, bigbank, amount, plant.getTechnology().getDepreciationTime(), - getCurrentTick(), plant); + Loan loan = reps.loanRepository.createLoan(agent, bigbank, amount, + plant.getTechnology().getDepreciationTime(), getCurrentTick(), plant); // Create the loan plant.createOrUpdateLoan(loan); } else { - // logger.warn("{} found no suitable technology anymore to invest in at tick " + // logger.warn("{} found no suitable technology anymore to invest in + // at tick " // + getCurrentTick(), agent); // agent will not participate in the next round of investment if // he does not invest now @@ -341,8 +418,8 @@ public void act(T agent) { // Creates n downpayments of equal size in each of the n building years of a // power plant @Transactional - private void createSpreadOutDownPayments(EnergyProducer agent, PowerPlantManufacturer manufacturer, double totalDownPayment, - PowerPlant plant) { + private void createSpreadOutDownPayments(EnergyProducer agent, PowerPlantManufacturer manufacturer, + double totalDownPayment, PowerPlant plant) { int buildingTime = (int) plant.getActualLeadtime(); reps.nonTransactionalCreateRepository.createCashFlow(agent, manufacturer, totalDownPayment / buildingTime, CashFlow.DOWNPAYMENT, getCurrentTick(), plant); @@ -357,29 +434,37 @@ private void setNotWillingToInvest(EnergyProducer agent) { } /** - * Predicts fuel prices for {@link futureTimePoint} using a geometric trend regression forecast. Only predicts fuels that are - * traded on a commodity market. + * Predicts fuel prices for {@link futureTimePoint} using a geometric trend + * regression forecast. Only predicts fuels that are traded on a commodity + * market. + * * @param agent * @param futureTimePoint * @return Map of predicted prices. */ - public Map predictFuelPrices(EnergyProducer agent, long futureTimePoint){ + public Map predictFuelPrices(EnergyProducer agent, long futureTimePoint) { // Fuel Prices Map expectedFuelPrices = new HashMap(); for (Substance substance : reps.substanceRepository.findAllSubstancesTradedOnCommodityMarkets()) { - //Find Clearing Points for the last 5 years (counting current year as one of the last 5 years). + // Find Clearing Points for the last 5 years (counting current year + // as one of the last 5 years). Iterable cps = reps.clearingPointRepository - .findAllClearingPointsForSubstanceTradedOnCommodityMarkesAndTimeRange(substance, getCurrentTick() - - (agent.getNumberOfYearsBacklookingForForecasting() - 1), getCurrentTick(), false); - //logger.warn("{}, {}", getCurrentTick()-(agent.getNumberOfYearsBacklookingForForecasting()-1), getCurrentTick()); - //Create regression object + .findAllClearingPointsForSubstanceTradedOnCommodityMarkesAndTimeRange(substance, + getCurrentTick() - (agent.getNumberOfYearsBacklookingForForecasting() - 1), + getCurrentTick(), false); + // logger.warn("{}, {}", + // getCurrentTick()-(agent.getNumberOfYearsBacklookingForForecasting()-1), + // getCurrentTick()); + // Create regression object GeometricTrendRegression gtr = new GeometricTrendRegression(); for (ClearingPoint clearingPoint : cps) { - //logger.warn("CP {}: {} , in" + clearingPoint.getTime(), substance.getName(), clearingPoint.getPrice()); + // logger.warn("CP {}: {} , in" + clearingPoint.getTime(), + // substance.getName(), clearingPoint.getPrice()); gtr.addData(clearingPoint.getTime(), clearingPoint.getPrice()); } expectedFuelPrices.put(substance, gtr.predict(futureTimePoint)); - //logger.warn("Forecast {}: {}, in Step " + futureTimePoint, substance, expectedFuelPrices.get(substance)); + // logger.warn("Forecast {}: {}, in Step " + futureTimePoint, + // substance, expectedFuelPrices.get(substance)); } return expectedFuelPrices; } @@ -409,7 +494,8 @@ private double npv(TreeMap netCashFlow, double wacc) { return npv; } - public double determineExpectedMarginalCost(PowerPlant plant, Map expectedFuelPrices, double expectedCO2Price) { + public double determineExpectedMarginalCost(PowerPlant plant, Map expectedFuelPrices, + double expectedCO2Price) { double mc = determineExpectedMarginalFuelCost(plant, expectedFuelPrices); double co2Intensity = plant.calculateEmissionIntensity(); mc += co2Intensity * expectedCO2Price; @@ -442,27 +528,35 @@ private class MarketInformation { Map meritOrder; double capacitySum; - MarketInformation(ElectricitySpotMarket market, Map expectedDemand, Map fuelPrices, double co2price, long time) { + MarketInformation(ElectricitySpotMarket market, Map expectedDemand, + Map fuelPrices, double co2price, long time) { // determine expected power prices expectedElectricityPricesPerSegment = new HashMap(); Map marginalCostMap = new HashMap(); capacitySum = 0d; // get merit order for this market - for (PowerPlant plant : reps.powerPlantRepository.findExpectedOperationalPowerPlantsInMarket(market, time)) { + for (PowerPlant plant : reps.powerPlantRepository.findExpectedOperationalPowerPlantsInMarket(market, + time)) { double plantMarginalCost = determineExpectedMarginalCost(plant, fuelPrices, co2price); marginalCostMap.put(plant, plantMarginalCost); capacitySum += plant.getActualNominalCapacity(); } - //get difference between technology target and expected operational capacity - for(PowerGeneratingTechnologyTarget pggt : reps.powerGenerationTechnologyTargetRepository.findAllByMarket(market)){ - double expectedTechnologyCapacity = reps.powerPlantRepository.calculateCapacityOfExpectedOperationalPowerPlantsInMarketAndTechnology(market, pggt.getPowerGeneratingTechnology(), time); + // get difference between technology target and expected operational + // capacity + for (PowerGeneratingTechnologyTarget pggt : reps.powerGenerationTechnologyTargetRepository + .findAllByMarket(market)) { + double expectedTechnologyCapacity = reps.powerPlantRepository + .calculateCapacityOfExpectedOperationalPowerPlantsInMarketAndTechnology(market, + pggt.getPowerGeneratingTechnology(), time); double targetDifference = pggt.getTrend().getValue(time) - expectedTechnologyCapacity; - if(targetDifference > 0){ + if (targetDifference > 0) { PowerPlant plant = new PowerPlant(); - plant.specifyNotPersist(getCurrentTick(), new EnergyProducer(), reps.powerGridNodeRepository.findFirstPowerGridNodeByElectricitySpotMarket(market), pggt.getPowerGeneratingTechnology()); + plant.specifyNotPersist(getCurrentTick(), new EnergyProducer(), + reps.powerGridNodeRepository.findFirstPowerGridNodeByElectricitySpotMarket(market), + pggt.getPowerGeneratingTechnology()); plant.setActualNominalCapacity(targetDifference); double plantMarginalCost = determineExpectedMarginalCost(plant, fuelPrices, co2price); marginalCostMap.put(plant, plantMarginalCost); @@ -496,7 +590,8 @@ private class MarketInformation { double plantCapacity = 0d; // Determine available capacity in the future in this // segment - plantCapacity = plant.getExpectedAvailableCapacity(time, segmentLoad.getSegment(), numberOfSegments); + plantCapacity = plant.getExpectedAvailableCapacity(time, segmentLoad.getSegment(), + numberOfSegments); totalCapacityAvailable += plantCapacity; // logger.warn("Capacity of plant " + plant.toString() + // " is " + @@ -517,8 +612,8 @@ private class MarketInformation { double reservePrice = 0; double reserveVolume = 0; for (StrategicReserveOperator operator : strategicReserveOperatorRepository.findAll()) { - ElectricitySpotMarket market1 = reps.marketRepository.findElectricitySpotMarketForZone(operator - .getZone()); + ElectricitySpotMarket market1 = reps.marketRepository + .findElectricitySpotMarketForZone(operator.getZone()); if (market.getNodeId().intValue() == market1.getNodeId().intValue()) { reservePrice = operator.getReservePriceSR(); reserveVolume = operator.getReserveVolume(); diff --git a/emlab-generation/src/main/java/emlab/gen/role/investment/InvestInPowerGenerationTechnologiesStandard.java b/emlab-generation/src/main/java/emlab/gen/role/investment/InvestInPowerGenerationTechnologiesStandard.java index 9f9e90fa..39f92417 100644 --- a/emlab-generation/src/main/java/emlab/gen/role/investment/InvestInPowerGenerationTechnologiesStandard.java +++ b/emlab-generation/src/main/java/emlab/gen/role/investment/InvestInPowerGenerationTechnologiesStandard.java @@ -49,6 +49,7 @@ import emlab.gen.domain.market.electricity.Segment; import emlab.gen.domain.market.electricity.SegmentLoad; import emlab.gen.domain.policy.PowerGeneratingTechnologyTarget; +import emlab.gen.domain.policy.renewablesupport.BaseCostFip; import emlab.gen.domain.technology.PowerGeneratingTechnology; import emlab.gen.domain.technology.PowerGeneratingTechnologyNodeLimit; import emlab.gen.domain.technology.PowerGridNode; @@ -63,15 +64,15 @@ /** * {@link EnergyProducer}s decide to invest in new {@link PowerPlant} * - * @author Emile Chappin @author Alfredas Chmieliauskas + * @author Emile Chappin @author + * Alfredas + * Chmieliauskas * @author JCRichstein */ @Configurable @NodeEntity public class InvestInPowerGenerationTechnologiesStandard extends GenericInvestmentRole -implements -Role, -NodeBacked { + implements Role, NodeBacked { @Transient @Autowired @@ -101,51 +102,55 @@ public void act(T agent) { // CO2 Map expectedCO2Price = determineExpectedCO2PriceInclTaxAndFundamentalForecast( - futureTimePoint, - agent.getNumberOfYearsBacklookingForForecasting(), 0, getCurrentTick()); + futureTimePoint, agent.getNumberOfYearsBacklookingForForecasting(), 0, getCurrentTick()); // logger.warn("{} expects CO2 prices {}", agent.getName(), // expectedCO2Price); Map expectedCO2PriceOld = determineExpectedCO2PriceInclTax(futureTimePoint, agent.getNumberOfYearsBacklookingForForecasting(), getCurrentTick()); - // logger.warn("{} used to expect CO2 prices {}", agent.getName(), - // expectedCO2PriceOld); + // logger.warn("{} used to expect CO2 prices {}", + // agent.getName(), + // expectedCO2PriceOld); // logger.warn(expectedCO2Price.toString()); - //Demand + // Demand Map expectedDemand = new HashMap(); - for(ElectricitySpotMarket elm : reps.template.findAll(ElectricitySpotMarket.class)){ + for (ElectricitySpotMarket elm : reps.template.findAll(ElectricitySpotMarket.class)) { GeometricTrendRegression gtr = new GeometricTrendRegression(); - for(long time = getCurrentTick(); time>getCurrentTick()-agent.getNumberOfYearsBacklookingForForecasting() && time>=0; time=time-1){ + for (long time = getCurrentTick(); time > getCurrentTick() + - agent.getNumberOfYearsBacklookingForForecasting() && time >= 0; time = time - 1) { gtr.addData(time, elm.getDemandGrowthTrend().getValue(time)); } expectedDemand.put(elm, gtr.predict(futureTimePoint)); } - - // Investment decision // for (ElectricitySpotMarket market : // reps.genericRepository.findAllAtRandom(ElectricitySpotMarket.class)) // { ElectricitySpotMarket market = agent.getInvestorMarket(); - MarketInformation marketInformation = new MarketInformation(market, expectedDemand, expectedFuelPrices, expectedCO2Price.get(market) - .doubleValue(), futureTimePoint); - /* - * if (marketInfoMap.containsKey(market) && marketInfoMap.get(market).time == futureTimePoint) { marketInformation = marketInfoMap.get(market); } else { marketInformation = new - * MarketInformation(market, expectedFuelPrices, expectedCO2Price, futureTimePoint); marketInfoMap.put(market, marketInformation); } - */ + MarketInformation marketInformation = new MarketInformation(market, expectedDemand, expectedFuelPrices, + expectedCO2Price.get(market).doubleValue(), futureTimePoint); + /* + * if (marketInfoMap.containsKey(market) && + * marketInfoMap.get(market).time == futureTimePoint) { + * marketInformation = marketInfoMap.get(market); } else { + * marketInformation = new MarketInformation(market, + * expectedFuelPrices, expectedCO2Price, futureTimePoint); + * marketInfoMap.put(market, marketInformation); } + */ // logger.warn(agent + " is expecting a CO2 price of " + // expectedCO2Price.get(market) + " Euro/MWh at timepoint " // + futureTimePoint + " in Market " + market); - // logger.warn("Agent {} found the expected prices to be {}", agent, + // logger.warn("Agent {} found the expected prices to be {}", agent, // marketInformation.expectedElectricityPricesPerSegment); - // logger.warn("Agent {} found that the installed capacity in the market {} in future to be " + // logger.warn("Agent {} found that the installed capacity in the market + // {} in future to be " // + marketInformation.capacitySum + // "and expectde maximum demand to be " // + marketInformation.maxExpectedLoad, agent, market); @@ -167,12 +172,12 @@ public void act(T agent) { * For dispatchable technologies just choose a random node. For * intermittent evaluate all possibilities. */ - if(technology.isIntermittent()) + if (technology.isIntermittent()) possibleInstallationNodes = reps.powerGridNodeRepository.findAllPowerGridNodesByZone(market.getZone()); - else{ + else { possibleInstallationNodes = new LinkedList(); - ((LinkedList) possibleInstallationNodes).add(reps.powerGridNodeRepository - .findAllPowerGridNodesByZone(market.getZone()).iterator().next()); + ((LinkedList) possibleInstallationNodes).add( + reps.powerGridNodeRepository.findAllPowerGridNodesByZone(market.getZone()).iterator().next()); } // logger.warn("Calculating for " + technology.getName() + @@ -186,13 +191,14 @@ public void act(T agent) { // if too much capacity of this technology in the pipeline (not // limited to the 5 years) double expectedInstalledCapacityOfTechnology = reps.powerPlantRepository - .calculateCapacityOfExpectedOperationalPowerPlantsInMarketAndTechnology(market, technology, futureTimePoint); + .calculateCapacityOfExpectedOperationalPowerPlantsInMarketAndTechnology(market, technology, + futureTimePoint); PowerGeneratingTechnologyTarget technologyTarget = reps.powerGenerationTechnologyTargetRepository .findOneByTechnologyAndMarket(technology, market); if (technologyTarget != null) { double technologyTargetCapacity = technologyTarget.getTrend().getValue(futureTimePoint); - expectedInstalledCapacityOfTechnology = (technologyTargetCapacity > expectedInstalledCapacityOfTechnology) ? technologyTargetCapacity - : expectedInstalledCapacityOfTechnology; + expectedInstalledCapacityOfTechnology = (technologyTargetCapacity > expectedInstalledCapacityOfTechnology) + ? technologyTargetCapacity : expectedInstalledCapacityOfTechnology; } double pgtNodeLimit = Double.MAX_VALUE; PowerGeneratingTechnologyNodeLimit pgtLimit = reps.powerGeneratingTechnologyNodeLimitRepository @@ -204,43 +210,51 @@ public void act(T agent) { .calculateCapacityOfExpectedOperationalPowerPlantsByNodeAndTechnology(plant.getLocation(), technology, futureTimePoint); double expectedOwnedTotalCapacityInMarket = reps.powerPlantRepository - .calculateCapacityOfExpectedOperationalPowerPlantsInMarketByOwner(market, futureTimePoint, agent); - double expectedOwnedCapacityInMarketOfThisTechnology = reps.powerPlantRepository - .calculateCapacityOfExpectedOperationalPowerPlantsInMarketByOwnerAndTechnology(market, technology, futureTimePoint, + .calculateCapacityOfExpectedOperationalPowerPlantsInMarketByOwner(market, futureTimePoint, agent); - double capacityOfTechnologyInPipeline = reps.powerPlantRepository.calculateCapacityOfPowerPlantsByTechnologyInPipeline( - technology, getCurrentTick()); - double operationalCapacityOfTechnology = reps.powerPlantRepository.calculateCapacityOfOperationalPowerPlantsByTechnology( - technology, getCurrentTick()); + double expectedOwnedCapacityInMarketOfThisTechnology = reps.powerPlantRepository + .calculateCapacityOfExpectedOperationalPowerPlantsInMarketByOwnerAndTechnology(market, + technology, futureTimePoint, agent); + double capacityOfTechnologyInPipeline = reps.powerPlantRepository + .calculateCapacityOfPowerPlantsByTechnologyInPipeline(technology, getCurrentTick()); + double operationalCapacityOfTechnology = reps.powerPlantRepository + .calculateCapacityOfOperationalPowerPlantsByTechnology(technology, getCurrentTick()); double capacityInPipelineInMarket = reps.powerPlantRepository .calculateCapacityOfPowerPlantsByMarketInPipeline(market, getCurrentTick()); if ((expectedInstalledCapacityOfTechnology + plant.getActualNominalCapacity()) / (marketInformation.maxExpectedLoad + plant.getActualNominalCapacity()) > technology - .getMaximumInstalledCapacityFractionInCountry()) { + .getMaximumInstalledCapacityFractionInCountry()) { // logger.warn(agent + - // " will not invest in {} technology because there's too much of this type in the market", + // " will not invest in {} technology because there's too + // much of this type in the market", // technology); - } else if ((expectedInstalledCapacityOfTechnologyInNode + plant.getActualNominalCapacity()) > pgtNodeLimit) { + } else if ((expectedInstalledCapacityOfTechnologyInNode + + plant.getActualNominalCapacity()) > pgtNodeLimit) { } else if (expectedOwnedCapacityInMarketOfThisTechnology > expectedOwnedTotalCapacityInMarket * technology.getMaximumInstalledCapacityFractionPerAgent()) { // logger.warn(agent + - // " will not invest in {} technology because there's too much capacity planned by him", + // " will not invest in {} technology because there's too + // much capacity planned by him", // technology); } else if (capacityInPipelineInMarket > 0.2 * marketInformation.maxExpectedLoad) { - // logger.warn("Not investing because more than 20% of demand in pipeline."); + // logger.warn("Not investing because more than 20% of + // demand in pipeline."); } else if ((capacityOfTechnologyInPipeline > 2.0 * operationalCapacityOfTechnology) && capacityOfTechnologyInPipeline > 9000) { // TODO: // reflects that you cannot expand a technology out of zero. // logger.warn(agent + - // " will not invest in {} technology because there's too much capacity in the pipeline", + // " will not invest in {} technology because there's too + // much capacity in the pipeline", // technology); - } else if (plant.getActualInvestedCapital() * (1 - agent.getDebtRatioOfInvestments()) > agent - .getDownpaymentFractionOfCash() * agent.getCash()) { + } else if (plant.getActualInvestedCapital() + * (1 - agent.getDebtRatioOfInvestments()) > agent.getDownpaymentFractionOfCash() + * agent.getCash()) { // logger.warn(agent + - // " will not invest in {} technology as he does not have enough money for downpayment", + // " will not invest in {} technology as he does not have + // enough money for downpayment", // technology); } else { @@ -248,36 +262,54 @@ public void act(T agent) { for (Substance fuel : technology.getFuels()) { myFuelPrices.put(fuel, expectedFuelPrices.get(fuel)); } - Set fuelMix = calculateFuelMix(plant, myFuelPrices, expectedCO2Price.get(market)); + Set fuelMix = calculateFuelMix(plant, myFuelPrices, + expectedCO2Price.get(market)); plant.setFuelMix(fuelMix); - double expectedMarginalCost = determineExpectedMarginalCost(plant, expectedFuelPrices, expectedCO2Price.get(market)); + double expectedMarginalCost = determineExpectedMarginalCost(plant, expectedFuelPrices, + expectedCO2Price.get(market)); double runningHours = 0d; + double totalFlh = 0d; double expectedGrossProfit = 0d; - + double expectedRevenue = 0d; + double expectedGeneration = 0d; + double loadFactor = 0d; long numberOfSegments = reps.segmentRepository.count(); // TODO somehow the prices of long-term contracts could also // be used here to determine the expected profit. Maybe not // though... for (SegmentLoad segmentLoad : market.getLoadDurationCurve()) { - double expectedElectricityPrice = marketInformation.expectedElectricityPricesPerSegment.get(segmentLoad - .getSegment()); + double expectedElectricityPrice = marketInformation.expectedElectricityPricesPerSegment + .get(segmentLoad.getSegment()); double hours = segmentLoad.getSegment().getLengthInHours(); if (expectedMarginalCost <= expectedElectricityPrice) { runningHours += hours; - if (technology.isIntermittent()) - expectedGrossProfit += (expectedElectricityPrice - expectedMarginalCost) - * hours - * plant.getActualNominalCapacity() - * reps.intermittentTechnologyNodeLoadFactorRepository - .findIntermittentTechnologyNodeLoadFactorForNodeAndTechnology(node, - technology).getLoadFactorForSegment(segmentLoad.getSegment()); - else - expectedGrossProfit += (expectedElectricityPrice - expectedMarginalCost) - * hours - * plant.getAvailableCapacity(futureTimePoint, segmentLoad.getSegment(), numberOfSegments); + if (technology.isIntermittent()) { + loadFactor = reps.intermittentTechnologyNodeLoadFactorRepository + .findIntermittentTechnologyNodeLoadFactorForNodeAndTechnology(node, technology) + .getLoadFactorForSegment(segmentLoad.getSegment()); + expectedGrossProfit += (expectedElectricityPrice - expectedMarginalCost) * hours + * plant.getActualNominalCapacity() * loadFactor; + } else { + expectedGrossProfit += (expectedElectricityPrice - expectedMarginalCost) * hours + * plant.getAvailableCapacity(futureTimePoint, segmentLoad.getSegment(), + numberOfSegments); + double flh = hours * plant.getAvailableCapacity(futureTimePoint, + segmentLoad.getSegment(), numberOfSegments); + expectedRevenue += expectedElectricityPrice * flh; + double generationInSegment = hours * plant.getAvailableCapacity(futureTimePoint, + segmentLoad.getSegment(), numberOfSegments); + expectedGeneration += generationInSegment; + totalFlh += flh; + // logger.warn("Expected generation in segment" + // + segmentLoad.getSegment() + // + " is, in MWh, " + generationInSegment); + + } + } + } // logger.warn(agent + @@ -286,21 +318,39 @@ public void act(T agent) { // expect to meet minimum running hours? if (runningHours < plant.getTechnology().getMinimumRunningHours()) { // logger.warn(agent+ - // " will not invest in {} technology as he expect to have {} running, which is lower then required", + // " will not invest in {} technology as he expect to + // have {} running, which is lower then required", // technology, runningHours); } else { - double fixedOMCost = calculateFixedOperatingCost(plant, getCurrentTick());// / + double fixedOMCost = calculateFixedOperatingCost(plant, getCurrentTick()); // plant.getActualNominalCapacity(); - double operatingProfit = expectedGrossProfit - fixedOMCost; - - // TODO Alter discount rate on the basis of the amount - // in long-term contracts? - // TODO Alter discount rate on the basis of other stuff, - // such as amount of money, market share, portfolio - // size. - + double expectedBaseCost = predictSubsidyFip(agent, futureTimePoint, node, technology); + // logger.warn(" expected base cost " + + // plant.getTechnology().getName() + "for node " + // + node.getNodeId() + " is , " + supportFromFip); + + // if condition to make sure support is zero if FiP + // scheme for a certain country is not on, based on the + // existence of BaseCost objects. + double supportFromFip = 0d; + if ((expectedBaseCost > 0d) && (expectedBaseCost * expectedGeneration >= expectedRevenue)) + // if (expectedBaseCost > 0d) + supportFromFip = (expectedBaseCost * expectedGeneration) - expectedRevenue; + + logger.warn(" expected FIP details for technology " + plant.getTechnology().getName() + + "for node " + node.getNodeId()); + + logger.warn("Expected Base Cost " + expectedBaseCost); + // logger.warn("Expected flh " + totalFlh); + // logger.warn("Expected Total Generation " + + // expectedGeneration); + // logger.warn("Expected Revenue from EM " + + // expectedRevenue); + logger.warn("Expected Annual Subsidy " + supportFromFip); + + double operatingProfit = expectedGrossProfit - fixedOMCost + supportFromFip; // Calculation of weighted average cost of capital, // based on the companies debt-ratio double wacc = (1 - agent.getDebtRatioOfInvestments()) * agent.getEquityInterestRate() @@ -316,45 +366,12 @@ public void act(T agent) { technology.getDepreciationTime(), (int) plant.getActualLeadtime(), 0, operatingProfit); double discountedCapitalCosts = npv(discountedProjectCapitalOutflow, wacc);// are - // defined - // negative!! - // plant.getActualNominalCapacity(); - - // logger.warn("Agent {} found that the discounted capital for technology {} to be " - // + discountedCapitalCosts, agent, - // technology); double discountedOpProfit = npv(discountedProjectCashInflow, wacc); - // logger.warn("Agent {} found that the projected discounted inflows for technology {} to be " - // + discountedOpProfit, - // agent, technology); - double projectValue = discountedOpProfit + discountedCapitalCosts; - // if (technology.isIntermittent()) { - // logger.warn(technology + "in " + node.getName() + - // ", NPV: " + projectValue - // + ", GrossProfit: " + expectedGrossProfit); - // } - - // logger.warn( - // "Agent {} found the project value for technology {} to be " - // + Math.round(projectValue / - // plant.getActualNominalCapacity()) - // + " EUR/kW (running hours: " + runningHours + "", - // agent, technology); - - // double projectTotalValue = projectValuePerMW * - // plant.getActualNominalCapacity(); - - // double projectReturnOnInvestment = discountedOpProfit - // / (-discountedCapitalCosts); - - /* - * Divide by capacity, in order not to favour large power plants (which have the single largest NPV - */ - + logger.warn("Expected Project Value " + projectValue); if (projectValue > 0 && projectValue / plant.getActualNominalCapacity() > highestValue) { highestValue = projectValue / plant.getActualNominalCapacity(); bestTechnology = plant.getTechnology(); @@ -376,21 +393,23 @@ public void act(T agent) { PowerPlantManufacturer manufacturer = reps.genericRepository.findFirst(PowerPlantManufacturer.class); BigBank bigbank = reps.genericRepository.findFirst(BigBank.class); - double investmentCostPayedByEquity = plant.getActualInvestedCapital() * (1 - agent.getDebtRatioOfInvestments()); + double investmentCostPayedByEquity = plant.getActualInvestedCapital() + * (1 - agent.getDebtRatioOfInvestments()); double investmentCostPayedByDebt = plant.getActualInvestedCapital() * agent.getDebtRatioOfInvestments(); double downPayment = investmentCostPayedByEquity; createSpreadOutDownPayments(agent, manufacturer, downPayment, plant); - double amount = determineLoanAnnuities(investmentCostPayedByDebt, plant.getTechnology().getDepreciationTime(), - agent.getLoanInterestRate()); + double amount = determineLoanAnnuities(investmentCostPayedByDebt, + plant.getTechnology().getDepreciationTime(), agent.getLoanInterestRate()); // logger.warn("Loan amount is: " + amount); - Loan loan = reps.loanRepository.createLoan(agent, bigbank, amount, plant.getTechnology().getDepreciationTime(), - getCurrentTick(), plant); + Loan loan = reps.loanRepository.createLoan(agent, bigbank, amount, + plant.getTechnology().getDepreciationTime(), getCurrentTick(), plant); // Create the loan plant.createOrUpdateLoan(loan); } else { - // logger.warn("{} found no suitable technology anymore to invest in at tick " + // logger.warn("{} found no suitable technology anymore to invest in + // at tick " // + getCurrentTick(), agent); // agent will not participate in the next round of investment if // he does not invest now @@ -403,8 +422,8 @@ public void act(T agent) { // Creates n downpayments of equal size in each of the n building years of a // power plant @Transactional - private void createSpreadOutDownPayments(EnergyProducer agent, PowerPlantManufacturer manufacturer, double totalDownPayment, - PowerPlant plant) { + private void createSpreadOutDownPayments(EnergyProducer agent, PowerPlantManufacturer manufacturer, + double totalDownPayment, PowerPlant plant) { int buildingTime = (int) plant.getActualLeadtime(); reps.nonTransactionalCreateRepository.createCashFlow(agent, manufacturer, totalDownPayment / buildingTime, CashFlow.DOWNPAYMENT, getCurrentTick(), plant); @@ -419,30 +438,62 @@ private void setNotWillingToInvest(EnergyProducer agent) { } /** - * Predicts fuel prices for {@link futureTimePoint} using a geometric trend regression forecast. Only predicts fuels that are - * traded on a commodity market. + * Predicts fuel prices for {@link futureTimePoint} using a geometric trend + * regression forecast. Only predicts fuels that are traded on a commodity + * market. + * * @param agent * @param futureTimePoint * @return Map of predicted prices. */ - public Map predictFuelPrices(EnergyProducer agent, long futureTimePoint){ + + public double predictSubsidyFip(EnergyProducer agent, long futureTimePoint, PowerGridNode node, + PowerGeneratingTechnology technology) { + // Fuel Prices + double expectedBaseCostFip = 0d; + // Find Clearing Points for the last 5 years (counting current year + // as one of the last 5 years). + Iterable BaseCostFipSet = reps.baseCostFipRepository + .findAllBaseCostFipsForTechnologyLocationAndTimeRange(node, technology, + getCurrentTick() - (agent.getNumberOfYearsBacklookingForForecasting() - 1), getCurrentTick()); + + SimpleRegression gtr = new SimpleRegression(); + if (BaseCostFipSet != null) { + for (BaseCostFip baseCostFip : BaseCostFipSet) { + logger.warn("Base cost FIP {} , in" + baseCostFip.getCostPerMWh()); + + gtr.addData(baseCostFip.getStartTime(), baseCostFip.getCostPerMWh()); + } + expectedBaseCostFip = gtr.predict(futureTimePoint); + } + logger.warn("Forecast {}: in Step " + futureTimePoint, gtr.predict(futureTimePoint)); + return expectedBaseCostFip; + } + + public Map predictFuelPrices(EnergyProducer agent, long futureTimePoint) { // Fuel Prices Map expectedFuelPrices = new HashMap(); for (Substance substance : reps.substanceRepository.findAllSubstancesTradedOnCommodityMarkets()) { - //Find Clearing Points for the last 5 years (counting current year as one of the last 5 years). + // Find Clearing Points for the last 5 years (counting current year + // as one of the last 5 years). Iterable cps = reps.clearingPointRepository - .findAllClearingPointsForSubstanceTradedOnCommodityMarkesAndTimeRange(substance, getCurrentTick() - - (agent.getNumberOfYearsBacklookingForForecasting() - 1), getCurrentTick(), false); - //logger.warn("{}, {}", getCurrentTick()-(agent.getNumberOfYearsBacklookingForForecasting()-1), getCurrentTick()); - //Create regression object + .findAllClearingPointsForSubstanceTradedOnCommodityMarkesAndTimeRange(substance, + getCurrentTick() - (agent.getNumberOfYearsBacklookingForForecasting() - 1), + getCurrentTick(), false); + // logger.warn("{}, {}", + // getCurrentTick()-(agent.getNumberOfYearsBacklookingForForecasting()-1), + // getCurrentTick()); + // Create regression object SimpleRegression gtr = new SimpleRegression(); for (ClearingPoint clearingPoint : cps) { - //logger.warn("CP {}: {} , in" + clearingPoint.getTime(), substance.getName(), clearingPoint.getPrice()); + // logger.warn("CP {}: {} , in" + clearingPoint.getTime(), + // substance.getName(), clearingPoint.getPrice()); gtr.addData(clearingPoint.getTime(), clearingPoint.getPrice()); } gtr.addData(getCurrentTick(), findLastKnownPriceForSubstance(substance, getCurrentTick())); expectedFuelPrices.put(substance, gtr.predict(futureTimePoint)); - //logger.warn("Forecast {}: {}, in Step " + futureTimePoint, substance, expectedFuelPrices.get(substance)); + // logger.warn("Forecast {}: {}, in Step " + futureTimePoint, + // substance, expectedFuelPrices.get(substance)); } return expectedFuelPrices; } @@ -472,7 +523,8 @@ private double npv(TreeMap netCashFlow, double wacc) { return npv; } - public double determineExpectedMarginalCost(PowerPlant plant, Map expectedFuelPrices, double expectedCO2Price) { + public double determineExpectedMarginalCost(PowerPlant plant, Map expectedFuelPrices, + double expectedCO2Price) { double mc = determineExpectedMarginalFuelCost(plant, expectedFuelPrices); double co2Intensity = plant.calculateEmissionIntensity(); mc += co2Intensity * expectedCO2Price; @@ -505,21 +557,24 @@ private class MarketInformation { Map meritOrder; double capacitySum; - MarketInformation(ElectricitySpotMarket market, Map expectedDemand, Map fuelPrices, double co2price, long time) { + MarketInformation(ElectricitySpotMarket market, Map expectedDemand, + Map fuelPrices, double co2price, long time) { // determine expected power prices expectedElectricityPricesPerSegment = new HashMap(); Map marginalCostMap = new HashMap(); capacitySum = 0d; // get merit order for this market - for (PowerPlant plant : reps.powerPlantRepository.findExpectedOperationalPowerPlantsInMarket(market, time)) { + for (PowerPlant plant : reps.powerPlantRepository.findExpectedOperationalPowerPlantsInMarket(market, + time)) { double plantMarginalCost = determineExpectedMarginalCost(plant, fuelPrices, co2price); marginalCostMap.put(plant, plantMarginalCost); capacitySum += plant.getActualNominalCapacity(); } - //get difference between technology target and expected operational capacity + // get difference between technology target and expected operational + // capacity for (TargetInvestor targetInvestor : reps.targetInvestorRepository.findAllByMarket(market)) { if (!(targetInvestor instanceof StochasticTargetInvestor)) { for (PowerGeneratingTechnologyTarget pggt : targetInvestor.getPowerGenerationTechnologyTargets()) { @@ -547,9 +602,10 @@ private class MarketInformation { long contructionTime = getCurrentTick() + pggt.getPowerGeneratingTechnology().getExpectedLeadtime() + pggt.getPowerGeneratingTechnology().getExpectedPermittime(); - for (long investmentTimeStep = contructionTime + 1; investmentTimeStep <= time; investmentTimeStep = investmentTimeStep + 1) { - expectedTechnologyAddition += (pggt.getTrend().getValue(investmentTimeStep) - pggt - .getTrend().getValue(investmentTimeStep - 1)); + for (long investmentTimeStep = contructionTime + + 1; investmentTimeStep <= time; investmentTimeStep = investmentTimeStep + 1) { + expectedTechnologyAddition += (pggt.getTrend().getValue(investmentTimeStep) + - pggt.getTrend().getValue(investmentTimeStep - 1)); } if (expectedTechnologyAddition > 0) { PowerPlant plant = new PowerPlant(); @@ -592,7 +648,8 @@ private class MarketInformation { double plantCapacity = 0d; // Determine available capacity in the future in this // segment - plantCapacity = plant.getExpectedAvailableCapacity(time, segmentLoad.getSegment(), numberOfSegments); + plantCapacity = plant.getExpectedAvailableCapacity(time, segmentLoad.getSegment(), + numberOfSegments); totalCapacityAvailable += plantCapacity; // logger.warn("Capacity of plant " + plant.toString() + // " is " + @@ -613,8 +670,8 @@ private class MarketInformation { double reservePrice = 0; double reserveVolume = 0; for (StrategicReserveOperator operator : strategicReserveOperatorRepository.findAll()) { - ElectricitySpotMarket market1 = reps.marketRepository.findElectricitySpotMarketForZone(operator - .getZone()); + ElectricitySpotMarket market1 = reps.marketRepository + .findElectricitySpotMarketForZone(operator.getZone()); if (market.getNodeId().intValue() == market1.getNodeId().intValue()) { reservePrice = operator.getReservePriceSR(); reserveVolume = operator.getReserveVolume(); @@ -677,15 +734,15 @@ protected HashMap determineExpectedCO2PriceInclTa if (i > 1) { expectedRegressionCO2Price = sr.predict(futureTimePoint); expectedRegressionCO2Price = Math.max(0, expectedRegressionCO2Price); - expectedRegressionCO2Price = Math - .min(expectedRegressionCO2Price, government.getCo2Penalty(futureTimePoint)); + expectedRegressionCO2Price = Math.min(expectedRegressionCO2Price, + government.getCo2Penalty(futureTimePoint)); } else { expectedRegressionCO2Price = lastPrice; } ClearingPoint expectedCO2ClearingPoint = reps.clearingPointRepository.findClearingPointForMarketAndTime( co2Auction, getCurrentTick() - + reps.genericRepository.findFirst(DecarbonizationModel.class).getCentralForecastingYear(), + + reps.genericRepository.findFirst(DecarbonizationModel.class).getCentralForecastingYear(), true); expectedCO2Price = (expectedCO2ClearingPoint == null) ? 0 : expectedCO2ClearingPoint.getPrice(); expectedCO2Price = (expectedCO2Price + expectedRegressionCO2Price) / 2; diff --git a/emlab-generation/src/main/java/emlab/gen/role/investment/InvestWithHistoricalCVar.java b/emlab-generation/src/main/java/emlab/gen/role/investment/InvestWithHistoricalCVar.java new file mode 100644 index 00000000..3b2b8e4f --- /dev/null +++ b/emlab-generation/src/main/java/emlab/gen/role/investment/InvestWithHistoricalCVar.java @@ -0,0 +1,793 @@ +/******************************************************************************* + * Copyright 2014 the original author or authors. + * + * Licensed 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. + ******************************************************************************/ +package emlab.gen.role.investment; + +import java.util.HashMap; +import java.util.LinkedList; +import java.util.Map; +import java.util.Map.Entry; +import java.util.Set; +import java.util.TreeMap; + +import org.apache.commons.math.stat.regression.SimpleRegression; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.beans.factory.annotation.Configurable; +import org.springframework.data.annotation.Transient; +import org.springframework.data.neo4j.annotation.NodeEntity; +import org.springframework.data.neo4j.aspects.core.NodeBacked; +import org.springframework.data.neo4j.support.Neo4jTemplate; +import org.springframework.transaction.annotation.Transactional; + +import agentspring.role.Role; +import emlab.gen.domain.agent.BigBank; +import emlab.gen.domain.agent.DecarbonizationModel; +import emlab.gen.domain.agent.EnergyProducer; +import emlab.gen.domain.agent.Government; +import emlab.gen.domain.agent.PowerPlantManufacturer; +import emlab.gen.domain.agent.StochasticTargetInvestor; +import emlab.gen.domain.agent.StrategicReserveOperator; +import emlab.gen.domain.agent.TargetInvestor; +import emlab.gen.domain.contract.CashFlow; +import emlab.gen.domain.contract.Loan; +import emlab.gen.domain.gis.Zone; +import emlab.gen.domain.market.CO2Auction; +import emlab.gen.domain.market.ClearingPoint; +import emlab.gen.domain.market.electricity.ElectricitySpotMarket; +import emlab.gen.domain.market.electricity.Segment; +import emlab.gen.domain.market.electricity.SegmentLoad; +import emlab.gen.domain.policy.PowerGeneratingTechnologyTarget; +import emlab.gen.domain.technology.PowerGeneratingTechnology; +import emlab.gen.domain.technology.PowerGeneratingTechnologyNodeLimit; +import emlab.gen.domain.technology.PowerGridNode; +import emlab.gen.domain.technology.PowerPlant; +import emlab.gen.domain.technology.Substance; +import emlab.gen.domain.technology.SubstanceShareInFuelMix; +import emlab.gen.repository.Reps; +import emlab.gen.repository.StrategicReserveOperatorRepository; +import emlab.gen.util.GeometricTrendRegression; +import emlab.gen.util.MapValueComparator; + +/** + * {@link EnergyProducer}s decide to invest in new {@link PowerPlant} + * + * @author Emile Chappin @author Alfredas Chmieliauskas + * @author JCRichstein + */ +@Configurable +@NodeEntity +public class InvestWithHistoricalCVar extends GenericInvestmentRole +implements +Role, +NodeBacked { + + @Transient + @Autowired + Reps reps; + + @Transient + @Autowired + Neo4jTemplate template; + + @Transient + @Autowired + StrategicReserveOperatorRepository strategicReserveOperatorRepository; + + // market expectations + @Transient + Map marketInfoMap = new HashMap(); + + @Override + public void act(T agent) { + + long futureTimePoint = getCurrentTick() + agent.getInvestmentFutureTimeHorizon(); + // logger.warn(agent + " is looking at timepoint " + futureTimePoint); + + // ==== Expectations === + + Map expectedFuelPrices = predictFuelPrices(agent, futureTimePoint); + + // CO2 + Map expectedCO2Price = determineExpectedCO2PriceInclTaxAndFundamentalForecast( + futureTimePoint, + agent.getNumberOfYearsBacklookingForForecasting(), 0, getCurrentTick()); + + // logger.warn("{} expects CO2 prices {}", agent.getName(), + // expectedCO2Price); + + Map expectedCO2PriceOld = determineExpectedCO2PriceInclTax(futureTimePoint, + agent.getNumberOfYearsBacklookingForForecasting(), getCurrentTick()); + // logger.warn("{} used to expect CO2 prices {}", agent.getName(), + // expectedCO2PriceOld); + + // logger.warn(expectedCO2Price.toString()); + + //Demand + Map expectedDemand = new HashMap(); + for(ElectricitySpotMarket elm : reps.template.findAll(ElectricitySpotMarket.class)){ + GeometricTrendRegression gtr = new GeometricTrendRegression(); + for(long time = getCurrentTick(); time>getCurrentTick()-agent.getNumberOfYearsBacklookingForForecasting() && time>=0; time=time-1){ + gtr.addData(time, elm.getDemandGrowthTrend().getValue(time)); + } + expectedDemand.put(elm, gtr.predict(futureTimePoint)); + } + + + + // Investment decision + // for (ElectricitySpotMarket market : + // reps.genericRepository.findAllAtRandom(ElectricitySpotMarket.class)) + // { + ElectricitySpotMarket market = agent.getInvestorMarket(); + MarketInformation marketInformation = new MarketInformation(market, expectedDemand, expectedFuelPrices, expectedCO2Price.get(market) + .doubleValue(), futureTimePoint); + /* + * if (marketInfoMap.containsKey(market) && marketInfoMap.get(market).time == futureTimePoint) { marketInformation = marketInfoMap.get(market); } else { marketInformation = new + * MarketInformation(market, expectedFuelPrices, expectedCO2Price, futureTimePoint); marketInfoMap.put(market, marketInformation); } + */ + + // logger.warn(agent + " is expecting a CO2 price of " + + // expectedCO2Price.get(market) + " Euro/MWh at timepoint " + // + futureTimePoint + " in Market " + market); + + // logger.warn("Agent {} found the expected prices to be {}", agent, + // marketInformation.expectedElectricityPricesPerSegment); + + // logger.warn("Agent {} found that the installed capacity in the market {} in future to be " + // + marketInformation.capacitySum + + // "and expectde maximum demand to be " + // + marketInformation.maxExpectedLoad, agent, market); + + double highestValue = Double.MIN_VALUE; + double highestValueWithoutCvar = Double.MIN_VALUE; + PowerGeneratingTechnology bestTechnology = null; + PowerGeneratingTechnology bestTechnologyWithoutCVar = null; + PowerGridNode bestNode = null; + PowerGridNode bestNodeWithoutCvar = null; + + for (PowerGeneratingTechnology technology : reps.genericRepository.findAll(PowerGeneratingTechnology.class)) { + + DecarbonizationModel model = reps.genericRepository.findAll(DecarbonizationModel.class).iterator().next(); + + if (technology.isIntermittent() && model.isNoPrivateIntermittentRESInvestment()) + continue; + + Iterable possibleInstallationNodes; + + /* + * For dispatchable technologies just choose a random node. For + * intermittent evaluate all possibilities. + */ + if(technology.isIntermittent()) + possibleInstallationNodes = reps.powerGridNodeRepository.findAllPowerGridNodesByZone(market.getZone()); + else{ + possibleInstallationNodes = new LinkedList(); + ((LinkedList) possibleInstallationNodes).add(reps.powerGridNodeRepository + .findAllPowerGridNodesByZone(market.getZone()).iterator().next()); + } + + // logger.warn("Calculating for " + technology.getName() + + // ", for Nodes: " + // + possibleInstallationNodes.toString()); + + for (PowerGridNode node : possibleInstallationNodes) { + + PowerPlant plant = new PowerPlant(); + plant.specifyNotPersist(getCurrentTick(), agent, node, technology); + // if too much capacity of this technology in the pipeline (not + // limited to the 5 years) + double expectedInstalledCapacityOfTechnology = reps.powerPlantRepository + .calculateCapacityOfExpectedOperationalPowerPlantsInMarketAndTechnology(market, technology, futureTimePoint); + PowerGeneratingTechnologyTarget technologyTarget = reps.powerGenerationTechnologyTargetRepository + .findOneByTechnologyAndMarket(technology, market); + if (technologyTarget != null) { + double technologyTargetCapacity = technologyTarget.getTrend().getValue(futureTimePoint); + expectedInstalledCapacityOfTechnology = (technologyTargetCapacity > expectedInstalledCapacityOfTechnology) ? technologyTargetCapacity + : expectedInstalledCapacityOfTechnology; + } + double pgtNodeLimit = Double.MAX_VALUE; + PowerGeneratingTechnologyNodeLimit pgtLimit = reps.powerGeneratingTechnologyNodeLimitRepository + .findOneByTechnologyAndNode(technology, plant.getLocation()); + if (pgtLimit != null) { + pgtNodeLimit = pgtLimit.getUpperCapacityLimit(futureTimePoint); + } + double expectedInstalledCapacityOfTechnologyInNode = reps.powerPlantRepository + .calculateCapacityOfExpectedOperationalPowerPlantsByNodeAndTechnology(plant.getLocation(), + technology, futureTimePoint); + double expectedOwnedTotalCapacityInMarket = reps.powerPlantRepository + .calculateCapacityOfExpectedOperationalPowerPlantsInMarketByOwner(market, futureTimePoint, agent); + double expectedOwnedCapacityInMarketOfThisTechnology = reps.powerPlantRepository + .calculateCapacityOfExpectedOperationalPowerPlantsInMarketByOwnerAndTechnology(market, technology, futureTimePoint, + agent); + double capacityOfTechnologyInPipeline = reps.powerPlantRepository.calculateCapacityOfPowerPlantsByTechnologyInPipeline( + technology, getCurrentTick()); + double operationalCapacityOfTechnology = reps.powerPlantRepository.calculateCapacityOfOperationalPowerPlantsByTechnology( + technology, getCurrentTick()); + double capacityInPipelineInMarket = reps.powerPlantRepository + .calculateCapacityOfPowerPlantsByMarketInPipeline(market, getCurrentTick()); + + if ((expectedInstalledCapacityOfTechnology + plant.getActualNominalCapacity()) + / (marketInformation.maxExpectedLoad + plant.getActualNominalCapacity()) > technology + .getMaximumInstalledCapacityFractionInCountry()) { + // logger.warn(agent + + // " will not invest in {} technology because there's too much of this type in the market", + // technology); + } else if ((expectedInstalledCapacityOfTechnologyInNode + plant.getActualNominalCapacity()) > pgtNodeLimit) { + + } else if (expectedOwnedCapacityInMarketOfThisTechnology > expectedOwnedTotalCapacityInMarket + * technology.getMaximumInstalledCapacityFractionPerAgent()) { + // logger.warn(agent + + // " will not invest in {} technology because there's too much capacity planned by him", + // technology); + } else if (capacityInPipelineInMarket > 0.2 * marketInformation.maxExpectedLoad) { + // logger.warn("Not investing because more than 20% of demand in pipeline."); + + } else if ((capacityOfTechnologyInPipeline > 2.0 * operationalCapacityOfTechnology) + && capacityOfTechnologyInPipeline > 9000) { // TODO: + // reflects that you cannot expand a technology out of zero. + // logger.warn(agent + + // " will not invest in {} technology because there's too much capacity in the pipeline", + // technology); + } else if (plant.getActualInvestedCapital() * (1 - agent.getDebtRatioOfInvestments()) > agent + .getDownpaymentFractionOfCash() * agent.getCash()) { + // logger.warn(agent + + // " will not invest in {} technology as he does not have enough money for downpayment", + // technology); + } else { + + Map myFuelPrices = new HashMap(); + for (Substance fuel : technology.getFuels()) { + myFuelPrices.put(fuel, expectedFuelPrices.get(fuel)); + } + Set fuelMix = calculateFuelMix(plant, myFuelPrices, expectedCO2Price.get(market)); + plant.setFuelMix(fuelMix); + + double expectedMarginalCost = determineExpectedMarginalCost(plant, expectedFuelPrices, expectedCO2Price.get(market)); + double runningHours = 0d; + double expectedGrossProfit = 0d; + + long numberOfSegments = reps.segmentRepository.count(); + + // TODO somehow the prices of long-term contracts could also + // be used here to determine the expected profit. Maybe not + // though... + for (SegmentLoad segmentLoad : market.getLoadDurationCurve()) { + double expectedElectricityPrice = marketInformation.expectedElectricityPricesPerSegment.get(segmentLoad + .getSegment()); + double hours = segmentLoad.getSegment().getLengthInHours(); + if (expectedMarginalCost <= expectedElectricityPrice) { + runningHours += hours; + if (technology.isIntermittent()) + expectedGrossProfit += (expectedElectricityPrice - expectedMarginalCost) + * hours + * plant.getActualNominalCapacity() + * reps.intermittentTechnologyNodeLoadFactorRepository + .findIntermittentTechnologyNodeLoadFactorForNodeAndTechnology(node, + technology).getLoadFactorForSegment(segmentLoad.getSegment()); + else + expectedGrossProfit += (expectedElectricityPrice - expectedMarginalCost) + * hours + * plant.getAvailableCapacity(futureTimePoint, segmentLoad.getSegment(), numberOfSegments); + } + } + + // logger.warn(agent + + // "expects technology {} to have {} running", technology, + // runningHours); + // expect to meet minimum running hours? + if (runningHours < plant.getTechnology().getMinimumRunningHours()) { + // logger.warn(agent+ + // " will not invest in {} technology as he expect to have {} running, which is lower then required", + // technology, runningHours); + } else { + + double fixedOMCost = calculateFixedOperatingCost(plant, getCurrentTick());// / + // plant.getActualNominalCapacity(); + + + Double cVarOfHistoricalGrossProfitsResult = reps.financialPowerPlantReportRepository + .calculateHistoricalCVarRelativePerMWForOperationaPlantsForEnergyProducerAndTechnologyForYearsFromToAndAlphaValue( + getCurrentTick() - 5, getCurrentTick(), agent, technology, + agent.getHistoricalCVarAlpha()); + + double cVarOfHistoricalGrossProfits = 0; + if (cVarOfHistoricalGrossProfitsResult != null) { + cVarOfHistoricalGrossProfits = cVarOfHistoricalGrossProfitsResult.doubleValue() + * plant.getActualNominalCapacity(); + } else { + cVarOfHistoricalGrossProfits = agent.getHistoricalCVarPropensityForNewTechnologies() + * expectedGrossProfit; + } + + + + double operatingProfit = expectedGrossProfit - fixedOMCost; + + double historicalCvarOperatingProfit = cVarOfHistoricalGrossProfits - fixedOMCost; + + + // TODO Alter discount rate on the basis of the amount + // in long-term contracts? + // TODO Alter discount rate on the basis of other stuff, + // such as amount of money, market share, portfolio + // size. + + // Calculation of weighted average cost of capital, + // based on the companies debt-ratio + double wacc = (1 - agent.getDebtRatioOfInvestments()) * agent.getEquityInterestRate() + + agent.getDebtRatioOfInvestments() * agent.getLoanInterestRate(); + if (cVarOfHistoricalGrossProfitsResult == null) + wacc += agent.getHistoricalCVarInterestRateIncreaseForNewTechnologies(); + + // Creation of out cash-flow during power plant building + // phase (note that the cash-flow is negative!) + TreeMap projectCapitalOutflow = calculateSimplePowerPlantInvestmentCashFlow( + technology.getDepreciationTime(), (int) plant.getActualLeadtime(), + plant.getActualInvestedCapital(), 0); + // Creation of in cashflow during operation + TreeMap projectCashInflow = calculateSimplePowerPlantInvestmentCashFlow( + technology.getDepreciationTime(), (int) plant.getActualLeadtime(), 0, operatingProfit); + + TreeMap projectCashInflowHistoricalCVar = calculateSimplePowerPlantInvestmentCashFlow( + technology.getDepreciationTime(), (int) plant.getActualLeadtime(), 0, + historicalCvarOperatingProfit); + + double discountedCapitalCosts = npv(projectCapitalOutflow, wacc);// are + // defined + // negative!! + // plant.getActualNominalCapacity(); + + // logger.warn("Agent {} found that the discounted capital for technology {} to be " + // + discountedCapitalCosts, agent, + // technology); + + double discountedOpProfit = npv(projectCashInflow, wacc); + + double discountedHistoricalCvarOpProfit = npv(projectCashInflowHistoricalCVar, wacc); + + // logger.warn("Agent {} found that the projected discounted inflows for technology {} to be " + // + discountedOpProfit, + // agent, technology); + + double projectValue = discountedOpProfit + discountedCapitalCosts; + double oldProjectValue = projectValue; + + double historicalCvarProjectValue = discountedHistoricalCvarOpProfit + discountedCapitalCosts; + + if (cVarOfHistoricalGrossProfitsResult != null + || (agent.getHistoricalCVarInterestRateIncreaseForNewTechnologies() == 0 & cVarOfHistoricalGrossProfitsResult == null)) { + projectValue += (agent.getHistoricalCVarBeta() * historicalCvarProjectValue < 0) ? agent + .getHistoricalCVarBeta() * historicalCvarProjectValue : 0; + } + // if (historicalCvarProjectValue < 0) { + // logger.warn("Adjusting NPV!"); + // projectValue += beta * historicalCvarProjectValue; + // } + + // if (technology.isIntermittent()) { + // logger.warn(technology + "in " + node.getName() + + // ", NPV: " + projectValue + // + ", GrossProfit: " + expectedGrossProfit); + // } + + // logger.warn(technology + "in " + node.getName() + + // ", NPV: " + projectValue + ", GrossProfit: " + // + expectedGrossProfit); + // + // logger.warn("CVar: " + historicalCvarProjectValue); + // + // logger.warn("NPV-CVAR: " + projectValue); + + // logger.warn( + // "Agent {} found the project value for technology {} to be " + // + Math.round(projectValue / + // plant.getActualNominalCapacity()) + // + " EUR/kW (running hours: " + runningHours + "", + // agent, technology); + + // double projectTotalValue = projectValuePerMW * + // plant.getActualNominalCapacity(); + + // double projectReturnOnInvestment = discountedOpProfit + // / (-discountedCapitalCosts); + + /* + * Divide by capacity, in order not to favour large power plants (which have the single largest NPV + */ + if (projectValue < 0 && oldProjectValue > 0) { + logger.warn( + "Not profitable w CVAR. NPV-CVAR: {}, NPV: {}, CVAR-GP: " + + cVarOfHistoricalGrossProfits / plant.getActualNominalCapacity() + " Tech:" + + technology + " in " + + node.getName(), projectValue / plant.getActualNominalCapacity(), + oldProjectValue / plant.getActualNominalCapacity()); + } + if (projectValue > 0) { + logger.warn( + "Is profitable w CVAR. NPV-CVAR: {}, NPV: {}, CVAR-GP: " + + cVarOfHistoricalGrossProfits / plant.getActualNominalCapacity() + " Tech:" + + technology + " in " + + node.getName(), projectValue / plant.getActualNominalCapacity(), + oldProjectValue / plant.getActualNominalCapacity()); + } + + if (projectValue > 0 && projectValue / plant.getActualNominalCapacity() > highestValue) { + highestValue = projectValue / plant.getActualNominalCapacity(); + bestTechnology = plant.getTechnology(); + bestNode = node; + } + + if (oldProjectValue > 0 + && oldProjectValue / plant.getActualNominalCapacity() > highestValueWithoutCvar) { + highestValueWithoutCvar = oldProjectValue / plant.getActualNominalCapacity(); + bestTechnologyWithoutCVar = plant.getTechnology(); + bestNodeWithoutCvar = node; + } + } + + } + + } + } + + if (bestTechnology != null && bestTechnologyWithoutCVar != null + && !bestTechnologyWithoutCVar.equals(bestTechnology)) { + logger.warn("Because of CVar investing in {}, instead of in {}", bestTechnology.getName(), + bestTechnologyWithoutCVar.getName()); + } + if (bestTechnology == null && bestTechnologyWithoutCVar != null) { + logger.warn("Not investing. W/o CVar would have invested in {}", + bestTechnologyWithoutCVar.getName()); + } + + if (bestTechnology != null) { + // logger.warn("Agent {} invested in technology {} at tick " + + // getCurrentTick(), agent, bestTechnology); + + PowerPlant plant = new PowerPlant(); + plant.specifyAndPersist(getCurrentTick(), agent, bestNode, bestTechnology); + PowerPlantManufacturer manufacturer = reps.genericRepository.findFirst(PowerPlantManufacturer.class); + BigBank bigbank = reps.genericRepository.findFirst(BigBank.class); + + double investmentCostPayedByEquity = plant.getActualInvestedCapital() * (1 - agent.getDebtRatioOfInvestments()); + double investmentCostPayedByDebt = plant.getActualInvestedCapital() * agent.getDebtRatioOfInvestments(); + double downPayment = investmentCostPayedByEquity; + createSpreadOutDownPayments(agent, manufacturer, downPayment, plant); + + double amount = determineLoanAnnuities(investmentCostPayedByDebt, plant.getTechnology().getDepreciationTime(), + agent.getLoanInterestRate()); + // logger.warn("Loan amount is: " + amount); + Loan loan = reps.loanRepository.createLoan(agent, bigbank, amount, plant.getTechnology().getDepreciationTime(), + getCurrentTick(), plant); + // Create the loan + plant.createOrUpdateLoan(loan); + + } else { + // logger.warn("{} found no suitable technology anymore to invest in at tick " + // + getCurrentTick(), agent); + // agent will not participate in the next round of investment if + // he does not invest now + setNotWillingToInvest(agent); + } + } + + // } + + // Creates n downpayments of equal size in each of the n building years of a + // power plant + @Transactional + private void createSpreadOutDownPayments(EnergyProducer agent, PowerPlantManufacturer manufacturer, double totalDownPayment, + PowerPlant plant) { + int buildingTime = (int) plant.getActualLeadtime(); + reps.nonTransactionalCreateRepository.createCashFlow(agent, manufacturer, totalDownPayment / buildingTime, + CashFlow.DOWNPAYMENT, getCurrentTick(), plant); + Loan downpayment = reps.loanRepository.createLoan(agent, manufacturer, totalDownPayment / buildingTime, + buildingTime - 1, getCurrentTick(), plant); + plant.createOrUpdateDownPayment(downpayment); + } + + @Transactional + private void setNotWillingToInvest(EnergyProducer agent) { + agent.setWillingToInvest(false); + } + + /** + * Predicts fuel prices for {@link futureTimePoint} using a geometric trend regression forecast. Only predicts fuels that are + * traded on a commodity market. + * @param agent + * @param futureTimePoint + * @return Map of predicted prices. + */ + public Map predictFuelPrices(EnergyProducer agent, long futureTimePoint){ + // Fuel Prices + Map expectedFuelPrices = new HashMap(); + for (Substance substance : reps.substanceRepository.findAllSubstancesTradedOnCommodityMarkets()) { + //Find Clearing Points for the last 5 years (counting current year as one of the last 5 years). + Iterable cps = reps.clearingPointRepository + .findAllClearingPointsForSubstanceTradedOnCommodityMarkesAndTimeRange(substance, getCurrentTick() + - (agent.getNumberOfYearsBacklookingForForecasting() - 1), getCurrentTick(), false); + //logger.warn("{}, {}", getCurrentTick()-(agent.getNumberOfYearsBacklookingForForecasting()-1), getCurrentTick()); + //Create regression object + SimpleRegression gtr = new SimpleRegression(); + for (ClearingPoint clearingPoint : cps) { + //logger.warn("CP {}: {} , in" + clearingPoint.getTime(), substance.getName(), clearingPoint.getPrice()); + gtr.addData(clearingPoint.getTime(), clearingPoint.getPrice()); + } + gtr.addData(getCurrentTick(), findLastKnownPriceForSubstance(substance, getCurrentTick())); + expectedFuelPrices.put(substance, gtr.predict(futureTimePoint)); + //logger.warn("Forecast {}: {}, in Step " + futureTimePoint, substance, expectedFuelPrices.get(substance)); + } + return expectedFuelPrices; + } + + // Create a powerplant investment and operation cash-flow in the form of a + // map. If only investment, or operation costs should be considered set + // totalInvestment or operatingProfit to 0 + private TreeMap calculateSimplePowerPlantInvestmentCashFlow(int depriacationTime, int buildingTime, + double totalInvestment, double operatingProfit) { + TreeMap investmentCashFlow = new TreeMap(); + double equalTotalDownPaymentInstallement = totalInvestment / buildingTime; + for (int i = 0; i < buildingTime; i++) { + investmentCashFlow.put(new Integer(i), -equalTotalDownPaymentInstallement); + } + for (int i = buildingTime; i < depriacationTime + buildingTime; i++) { + investmentCashFlow.put(new Integer(i), operatingProfit); + } + + return investmentCashFlow; + } + + private double npv(TreeMap netCashFlow, double wacc) { + double npv = 0; + for (Integer iterator : netCashFlow.keySet()) { + npv += netCashFlow.get(iterator).doubleValue() / Math.pow(1 + wacc, iterator.intValue()); + } + return npv; + } + + public double determineExpectedMarginalCost(PowerPlant plant, Map expectedFuelPrices, double expectedCO2Price) { + double mc = determineExpectedMarginalFuelCost(plant, expectedFuelPrices); + double co2Intensity = plant.calculateEmissionIntensity(); + mc += co2Intensity * expectedCO2Price; + return mc; + } + + public double determineExpectedMarginalFuelCost(PowerPlant powerPlant, Map expectedFuelPrices) { + double fc = 0d; + for (SubstanceShareInFuelMix mix : powerPlant.getFuelMix()) { + double amount = mix.getShare(); + double fuelPrice = expectedFuelPrices.get(mix.getSubstance()); + fc += amount * fuelPrice; + } + return fc; + } + + private PowerGridNode getNodeForZone(Zone zone) { + for (PowerGridNode node : reps.genericRepository.findAll(PowerGridNode.class)) { + if (node.getZone().equals(zone)) { + return node; + } + } + return null; + } + + private class MarketInformation { + + Map expectedElectricityPricesPerSegment; + double maxExpectedLoad = 0d; + Map meritOrder; + double capacitySum; + + MarketInformation(ElectricitySpotMarket market, Map expectedDemand, Map fuelPrices, double co2price, long time) { + // determine expected power prices + expectedElectricityPricesPerSegment = new HashMap(); + Map marginalCostMap = new HashMap(); + capacitySum = 0d; + + // get merit order for this market + for (PowerPlant plant : reps.powerPlantRepository.findExpectedOperationalPowerPlantsInMarket(market, time)) { + + double plantMarginalCost = determineExpectedMarginalCost(plant, fuelPrices, co2price); + marginalCostMap.put(plant, plantMarginalCost); + capacitySum += plant.getActualNominalCapacity(); + } + + //get difference between technology target and expected operational capacity + for (TargetInvestor targetInvestor : reps.targetInvestorRepository.findAllByMarket(market)) { + if (!(targetInvestor instanceof StochasticTargetInvestor)) { + for (PowerGeneratingTechnologyTarget pggt : targetInvestor.getPowerGenerationTechnologyTargets()) { + double expectedTechnologyCapacity = reps.powerPlantRepository + .calculateCapacityOfExpectedOperationalPowerPlantsInMarketAndTechnology(market, + pggt.getPowerGeneratingTechnology(), time); + double targetDifference = pggt.getTrend().getValue(time) - expectedTechnologyCapacity; + if (targetDifference > 0) { + PowerPlant plant = new PowerPlant(); + plant.specifyNotPersist(getCurrentTick(), new EnergyProducer(), + reps.powerGridNodeRepository.findFirstPowerGridNodeByElectricitySpotMarket(market), + pggt.getPowerGeneratingTechnology()); + plant.setActualNominalCapacity(targetDifference); + double plantMarginalCost = determineExpectedMarginalCost(plant, fuelPrices, co2price); + marginalCostMap.put(plant, plantMarginalCost); + capacitySum += targetDifference; + } + } + } else { + for (PowerGeneratingTechnologyTarget pggt : targetInvestor.getPowerGenerationTechnologyTargets()) { + double expectedTechnologyCapacity = reps.powerPlantRepository + .calculateCapacityOfExpectedOperationalPowerPlantsInMarketAndTechnology(market, + pggt.getPowerGeneratingTechnology(), time); + double expectedTechnologyAddition = 0; + long contructionTime = getCurrentTick() + + pggt.getPowerGeneratingTechnology().getExpectedLeadtime() + + pggt.getPowerGeneratingTechnology().getExpectedPermittime(); + for (long investmentTimeStep = contructionTime + 1; investmentTimeStep <= time; investmentTimeStep = investmentTimeStep + 1) { + expectedTechnologyAddition += (pggt.getTrend().getValue(investmentTimeStep) - pggt + .getTrend().getValue(investmentTimeStep - 1)); + } + if (expectedTechnologyAddition > 0) { + PowerPlant plant = new PowerPlant(); + plant.specifyNotPersist(getCurrentTick(), new EnergyProducer(), + reps.powerGridNodeRepository.findFirstPowerGridNodeByElectricitySpotMarket(market), + pggt.getPowerGeneratingTechnology()); + plant.setActualNominalCapacity(expectedTechnologyAddition); + double plantMarginalCost = determineExpectedMarginalCost(plant, fuelPrices, co2price); + marginalCostMap.put(plant, plantMarginalCost); + capacitySum += expectedTechnologyAddition; + } + } + } + + } + + MapValueComparator comp = new MapValueComparator(marginalCostMap); + meritOrder = new TreeMap(comp); + meritOrder.putAll(marginalCostMap); + + long numberOfSegments = reps.segmentRepository.count(); + + double demandFactor = expectedDemand.get(market).doubleValue(); + + // find expected prices per segment given merit order + for (SegmentLoad segmentLoad : market.getLoadDurationCurve()) { + + double expectedSegmentLoad = segmentLoad.getBaseLoad() * demandFactor; + + if (expectedSegmentLoad > maxExpectedLoad) { + maxExpectedLoad = expectedSegmentLoad; + } + + double segmentSupply = 0d; + double segmentPrice = 0d; + double totalCapacityAvailable = 0d; + + for (Entry plantCost : meritOrder.entrySet()) { + PowerPlant plant = plantCost.getKey(); + double plantCapacity = 0d; + // Determine available capacity in the future in this + // segment + plantCapacity = plant.getExpectedAvailableCapacity(time, segmentLoad.getSegment(), numberOfSegments); + totalCapacityAvailable += plantCapacity; + // logger.warn("Capacity of plant " + plant.toString() + + // " is " + + // plantCapacity/plant.getActualNominalCapacity()); + if (segmentSupply < expectedSegmentLoad) { + segmentSupply += plantCapacity; + segmentPrice = plantCost.getValue(); + } + + } + + // logger.warn("Segment " + + // segmentLoad.getSegment().getSegmentID() + " supply equals " + + // segmentSupply + " and segment demand equals " + + // expectedSegmentLoad); + + // Find strategic reserve operator for the market. + double reservePrice = 0; + double reserveVolume = 0; + for (StrategicReserveOperator operator : strategicReserveOperatorRepository.findAll()) { + ElectricitySpotMarket market1 = reps.marketRepository.findElectricitySpotMarketForZone(operator + .getZone()); + if (market.getNodeId().intValue() == market1.getNodeId().intValue()) { + reservePrice = operator.getReservePriceSR(); + reserveVolume = operator.getReserveVolume(); + } + } + + if (segmentSupply >= expectedSegmentLoad + && ((totalCapacityAvailable - expectedSegmentLoad) <= (reserveVolume))) { + expectedElectricityPricesPerSegment.put(segmentLoad.getSegment(), reservePrice); + // logger.warn("Price: "+ + // expectedElectricityPricesPerSegment); + } else if (segmentSupply >= expectedSegmentLoad + && ((totalCapacityAvailable - expectedSegmentLoad) > (reserveVolume))) { + expectedElectricityPricesPerSegment.put(segmentLoad.getSegment(), segmentPrice); + // logger.warn("Price: "+ + // expectedElectricityPricesPerSegment); + } else { + expectedElectricityPricesPerSegment.put(segmentLoad.getSegment(), market.getValueOfLostLoad()); + } + + } + } + } + + /** + * Calculates expected CO2 price based on a geometric trend estimation, of + * the past years. The adjustmentForDetermineFuelMix needs to be set to 1, + * if this is used in the determine fuel mix role. + * + * @param futureTimePoint + * Year the prediction is made for + * @param yearsLookingBackForRegression + * How many years are used as input for the regression, incl. the + * current tick. + * @return + */ + protected HashMap determineExpectedCO2PriceInclTaxAndFundamentalForecast( + long futureTimePoint, long yearsLookingBackForRegression, int adjustmentForDetermineFuelMix, + long clearingTick) { + HashMap co2Prices = new HashMap(); + CO2Auction co2Auction = reps.genericRepository.findFirst(CO2Auction.class); + Iterable cps = reps.clearingPointRepository.findAllClearingPointsForMarketAndTimeRange( + co2Auction, clearingTick - yearsLookingBackForRegression + 1 - adjustmentForDetermineFuelMix, + clearingTick - adjustmentForDetermineFuelMix, false); + // Create regression object and calculate average + SimpleRegression sr = new SimpleRegression(); + Government government = reps.template.findAll(Government.class).iterator().next(); + double lastPrice = 0; + double averagePrice = 0; + int i = 0; + for (ClearingPoint clearingPoint : cps) { + sr.addData(clearingPoint.getTime(), clearingPoint.getPrice()); + lastPrice = clearingPoint.getPrice(); + averagePrice += lastPrice; + i++; + } + averagePrice = averagePrice / i; + double expectedCO2Price; + double expectedRegressionCO2Price; + if (i > 1) { + expectedRegressionCO2Price = sr.predict(futureTimePoint); + expectedRegressionCO2Price = Math.max(0, expectedRegressionCO2Price); + expectedRegressionCO2Price = Math + .min(expectedRegressionCO2Price, government.getCo2Penalty(futureTimePoint)); + } else { + expectedRegressionCO2Price = lastPrice; + } + ClearingPoint expectedCO2ClearingPoint = reps.clearingPointRepository.findClearingPointForMarketAndTime( + co2Auction, + getCurrentTick() + + reps.genericRepository.findFirst(DecarbonizationModel.class).getCentralForecastingYear(), + true); + expectedCO2Price = (expectedCO2ClearingPoint == null) ? 0 : expectedCO2ClearingPoint.getPrice(); + expectedCO2Price = (expectedCO2Price + expectedRegressionCO2Price) / 2; + for (ElectricitySpotMarket esm : reps.marketRepository.findAllElectricitySpotMarkets()) { + double nationalCo2MinPriceinFutureTick = reps.nationalGovernmentRepository + .findNationalGovernmentByElectricitySpotMarket(esm).getMinNationalCo2PriceTrend() + .getValue(futureTimePoint); + double co2PriceInCountry = 0d; + if (expectedCO2Price > nationalCo2MinPriceinFutureTick) { + co2PriceInCountry = expectedCO2Price; + } else { + co2PriceInCountry = nationalCo2MinPriceinFutureTick; + } + co2PriceInCountry += reps.genericRepository.findFirst(Government.class).getCO2Tax(futureTimePoint); + co2Prices.put(esm, Double.valueOf(co2PriceInCountry)); + } + return co2Prices; + } + +} diff --git a/emlab-generation/src/main/java/emlab/gen/role/investment/StochasticTargetInvestmentRole.java b/emlab-generation/src/main/java/emlab/gen/role/investment/StochasticTargetInvestmentRole.java index 863df1c9..4997b055 100644 --- a/emlab-generation/src/main/java/emlab/gen/role/investment/StochasticTargetInvestmentRole.java +++ b/emlab-generation/src/main/java/emlab/gen/role/investment/StochasticTargetInvestmentRole.java @@ -50,11 +50,11 @@ public class StochasticTargetInvestmentRole extends GenericInvestmentRole expectedInstalledCapacity + targetInstallationDelta) { installedCapacityDeviation = targetInstallationDelta; diff --git a/emlab-generation/src/main/java/emlab/gen/role/market/AbstractClearElectricitySpotMarketRole.java b/emlab-generation/src/main/java/emlab/gen/role/market/AbstractClearElectricitySpotMarketRole.java index 0d50c3b7..f1e6c32b 100644 --- a/emlab-generation/src/main/java/emlab/gen/role/market/AbstractClearElectricitySpotMarketRole.java +++ b/emlab-generation/src/main/java/emlab/gen/role/market/AbstractClearElectricitySpotMarketRole.java @@ -619,6 +619,15 @@ CO2PriceStability determineStabilityOfCO2andElectricityPricesAndAdjustIfNecessar .findClearingPointsForMarketAndTime(market, getCurrentTick(), false)); Substance substance = market.getSubstance(); + for (CommoditySupplier supplier : reps.genericRepository.findAll(CommoditySupplier.class)) { + if (supplier.getSubstance().equals(substance)) { + + logger.info("Price found for {} by asking the supplier {} directly", substance.getName(), + supplier.getName()); + return supplier.getPriceOfCommodity().getValue(getCurrentTick()); + } + } + if (average != null) { logger.info("Average price found on market for this tick for {}", substance.getName()); return average; @@ -636,13 +645,7 @@ CO2PriceStability determineStabilityOfCO2andElectricityPricesAndAdjustIfNecessar return market.getReferencePrice(); } - for (CommoditySupplier supplier : reps.genericRepository.findAll(CommoditySupplier.class)) { - if (supplier.getSubstance().equals(substance)) { - logger.info("Price found for {} by asking the supplier {} directly", substance.getName(), supplier.getName()); - return supplier.getPriceOfCommodity().getValue(getCurrentTick()); - } - } logger.info("No price has been found for {}", substance.getName()); return 0d; diff --git a/emlab-generation/src/main/java/emlab/gen/role/market/ClearIterativeCO2AndElectricitySpotMarketTwoCountryRole.java b/emlab-generation/src/main/java/emlab/gen/role/market/ClearIterativeCO2AndElectricitySpotMarketTwoCountryRole.java index 6804904d..20112262 100644 --- a/emlab-generation/src/main/java/emlab/gen/role/market/ClearIterativeCO2AndElectricitySpotMarketTwoCountryRole.java +++ b/emlab-generation/src/main/java/emlab/gen/role/market/ClearIterativeCO2AndElectricitySpotMarketTwoCountryRole.java @@ -105,7 +105,7 @@ public void makeCentralElectricityMarketForecastForTimeStep(long clearingTick) { Map fuelPriceMap = predictFuelPrices(model.getCentralForecastBacklookingYears(), clearingTick); - logger.warn("Fuel prices: {}", fuelPriceMap); + // logger.warn("Fuel prices: {}", fuelPriceMap); Map demandGrowthMap = predictDemand(model.getCentralForecastBacklookingYears(), clearingTick); @@ -628,7 +628,6 @@ public void clearIterativeCO2ElectricitySpotMarketAndFutureMarketTwoCountryForTi double targetEnergyProducerBanking = calculateTargetCO2EmissionBankingOfEnergyProducers(clearingTick, clearingTick + model.getCentralForecastingYear(), government, model); - logger.warn("Hedging Target: {}, Relative Hedging: {}", targetEnergyProducerBanking, targetEnergyProducerBanking/government.getCo2Cap(getCurrentTick())); double deltaBankedEmissionCertificateToReachBankingTarget = (targetEnergyProducerBanking - previouslyBankedCertificates) / model.getCentralCO2TargetReversionSpeedFactor(); @@ -684,6 +683,7 @@ public void clearIterativeCO2ElectricitySpotMarketAndFutureMarketTwoCountryForTi futureCO2Price = co2SecantSearch.co2Price * Math.pow(1 + model.getCentralPrivateDiscountingRate(), model.getCentralForecastingYear()); + logger.warn("Iteration " + breakOffIterator + ", CO2Price for clearing: " + co2SecantSearch.co2Price); clearOneOrTwoConnectedElectricityMarketsAtAGivenCO2PriceForSegments(government, clearingTick + model.getCentralForecastingYear(), true, futureDemandGrowthMap, futureFuelPriceMap, futureCO2Price, futureNationalMinCo2Prices, segments, interconnector, model); @@ -706,13 +706,16 @@ public void clearIterativeCO2ElectricitySpotMarketAndFutureMarketTwoCountryForTi clearingTick, -deltaBankedEmissionCertificateToReachBankingTarget, currentEmissions, futureEmissions, previouslyBankedCertificates, averageCO2PriceOfLastTwoYears); - logger.warn("Iteration: " + breakOffIterator + ": " + co2SecantSearch.toString() + ", Future: " - + futureCO2Price); + // logger.warn("Iteration: " + breakOffIterator + ": " + + // co2SecantSearch.toString() + ", Future: " + // + futureCO2Price); if (!co2SecantSearch.stable) { targetEnergyProducerBanking = calculateTargetCO2EmissionBankingOfEnergyProducers(currentEmissions, futureEmissions, model); - logger.warn("Hedging Target: {}, Relative Hedging: {}", targetEnergyProducerBanking, targetEnergyProducerBanking/government.getCo2Cap(getCurrentTick())); + // logger.warn("Hedging Target: {}, Relative Hedging: {}", + // targetEnergyProducerBanking, + // targetEnergyProducerBanking/government.getCo2Cap(getCurrentTick())); deltaBankedEmissionCertificateToReachBankingTarget = (targetEnergyProducerBanking - previouslyBankedCertificates) / model.getCentralCO2TargetReversionSpeedFactor(); @@ -791,6 +794,7 @@ public void clearIterativeCO2ElectricitySpotMarketAndFutureMarketTwoCountryForTi } } + logger.warn("CO2Price that is saved: " + co2SecantSearch.co2Price); reps.clearingPointRepositoryOld.createOrUpdateCO2MarketClearingPoint(co2Auction, co2SecantSearch.co2Price, currentEmissions, emergencyPriceTriggerActive, emergencyAllowancesToBeReleased, clearingTick, false); reps.clearingPointRepositoryOld.createOrUpdateCO2MarketClearingPoint(co2Auction, @@ -815,10 +819,11 @@ public void clearIterativeCO2ElectricitySpotMarketAndFutureMarketTwoCountryForTi producer.setCo2Allowances(bankedEmissionsOfProducer); } } else { - clearIterativeCO2AndElectricitySpotMarketTwoCountryForTimestepAndFuelPrices(model, false, clearingTick, - fuelPriceMap, null, previouslyBankedCertificates); + logger.warn("Banking exhausted."); clearIterativeCO2AndElectricitySpotMarketTwoCountryForTimestepAndFuelPrices(model, true, clearingTick + model.getCentralForecastingYear(), futureFuelPriceMap, futureDemandGrowthMap, 0); + clearIterativeCO2AndElectricitySpotMarketTwoCountryForTimestepAndFuelPrices(model, false, clearingTick, + fuelPriceMap, null, previouslyBankedCertificates); for (EnergyProducer producer : reps.energyProducerRepository.findAll()) { producer.setLastYearsCo2Allowances(producer.getCo2Allowances()); producer.setCo2Allowances(0); @@ -948,18 +953,19 @@ CO2SecantSearch co2PriceSecantSearchUpdateWithCO2Banking(CO2SecantSearch co2Seca DecarbonizationModel model, Government government, long clearingTick, double co2CapAdjustment, double currentEmissions, double futureEmissions, double previouslyBankedCertificates, double averageCO2PriceOfLastTwoYears) { + co2SecantSearch.stable = false; double capDeviationCriterion = model.getCapDeviationCriterion(); double currentCap = government.getCo2Cap(clearingTick); - logger.warn("Current cap: {}", currentCap); + // logger.warn("Current cap: {}", currentCap); double futureCap = government.getCo2Cap(clearingTick + model.getCentralForecastingYear()); - logger.warn("Future cap: {}", futureCap); + // logger.warn("Future cap: {}", futureCap); // logger.warn("Is MSR active in future ? {}.", // (model.isStabilityReserveIsActive() && (model.getStabilityReserveFirstYearOfOperation() <= clearingTick // + model.getCentralForecastingYear()))); // logger.warn("First year MSR is active: {}", model.getStabilityReserveFirstYearOfOperation()); double expectedBankedPermits = calculateExpectedBankedCertificates(currentEmissions, futureEmissions, - currentCap, futureCap, previouslyBankedCertificates, model.getCentralForecastingYear()); + currentCap, futureCap, previouslyBankedCertificates, model.getCentralForecastingYear(), government); double effectiveCapInFuture = (model.isStabilityReserveIsActive() && (model .getStabilityReserveFirstYearOfOperation() <= clearingTick + model.getCentralForecastingYear())) ? futureCap - marketStabilityReserveRole.calculateInflowToMarketReserveForTimeStep( @@ -967,7 +973,7 @@ CO2SecantSearch co2PriceSecantSearchUpdateWithCO2Banking(CO2SecantSearch co2Seca expectedBankedPermits, government) : futureCap; - logger.warn("effective future cap: {}", effectiveCapInFuture); + // logger.warn("effective future cap: {}", effectiveCapInFuture); effectiveCapInFuture -= (government.isActivelyAdjustingTheCO2Cap() & getCurrentTick() > 0) ? renewableAdaptiveCO2CapRole .calculatedExpectedCapReductionForTimeStep(government, clearingTick, clearingTick + model.getCentralForecastingYear(), currentEmissions, futureEmissions, @@ -991,7 +997,7 @@ CO2SecantSearch co2PriceSecantSearchUpdateWithCO2Banking(CO2SecantSearch co2Seca return co2SecantSearch; } - // Check and update the twoPricesExistWithBelowAboveEmissions + // Check and update the twoPricesExistWithBelowAboveEmissions if (co2SecantSearch.tooHighEmissionsPair != null && co2SecantSearch.tooLowEmissionsPair != null) { co2SecantSearch.twoPricesExistWithBelowAboveEmissions = true; @@ -1113,10 +1119,11 @@ CO2SecantSearch co2PriceSecantSearchUpdateWithCO2Banking(CO2SecantSearch co2Seca } double calculateExpectedBankedCertificates(double currentEmissions, double futureEmissions, double currentCap, - double futureCap, double currentlyBankedEmissions, long centralForecastingYear) { + double futureCap, double currentlyBankedEmissions, long centralForecastingYear, Government government) { double expectedBankedCertificates = currentlyBankedEmissions + currentCap - currentEmissions + futureCap - futureEmissions; - expectedBankedCertificates = 1 / 3.0 + expectedBankedCertificates = government.isStabilityReserveHasOneYearDelayInsteadOfTwoYearDelay() ? 2.0 / 3.0 + * expectedBankedCertificates + 1.0 / 3.0 * currentlyBankedEmissions : 1 / 3.0 * expectedBankedCertificates + 2 / 3.0 * currentlyBankedEmissions; return expectedBankedCertificates; diff --git a/emlab-generation/src/main/java/emlab/gen/role/market/CreatingFinancialReports.java b/emlab-generation/src/main/java/emlab/gen/role/market/CreatingFinancialReports.java new file mode 100644 index 00000000..c3a47f55 --- /dev/null +++ b/emlab-generation/src/main/java/emlab/gen/role/market/CreatingFinancialReports.java @@ -0,0 +1,145 @@ +/******************************************************************************* + * Copyright 2013 the original author or authors. + * + * Licensed 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. + ******************************************************************************/ +package emlab.gen.role.market; + +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.transaction.annotation.Transactional; +import java.util.Collections; +import java.util.HashMap; +import java.util.List; +import java.util.Map; + + +import agentspring.role.RoleComponent; +import emlab.gen.domain.agent.DecarbonizationModel; +import org.springframework.data.neo4j.support.Neo4jTemplate; +import emlab.gen.domain.market.electricity.FinancialPowerPlantReport; +import emlab.gen.domain.technology.PowerPlant; +import emlab.gen.domain.technology.Substance; +import emlab.gen.domain.technology.SubstanceShareInFuelMix; +import emlab.gen.repository.Reps; + +/** + * Creating finanical reports for each power plant. Currently implemented for + * use with spot markets only. Long-term contracts are ignored since costs can + * not easily be assigned to individual power plants. + * + * @author Joern + * + */ +@RoleComponent +public class CreatingFinancialReports extends AbstractClearElectricitySpotMarketRole { + + @Autowired + private Reps reps; + + @Autowired + Neo4jTemplate template; + + @Transactional + public void act(DecarbonizationModel model) { + + Map fuelPriceMap = new HashMap(); + for (Substance substance : template.findAll(Substance.class)) { + fuelPriceMap.put(substance, findLastKnownPriceForSubstance(substance)); + } + logger.warn(fuelPriceMap.toString()); + + createFinancialReportsForPowerPlantsAndTick( + reps.powerPlantRepository.findAllPowerPlantsWhichAreNotDismantledBeforeTick(getCurrentTick() - 2), + getCurrentTick()); + + } + + public void createFinancialReportsForNewInvestments(DecarbonizationModel model) { + createFinancialReportsForPowerPlantsAndTick( + reps.powerPlantRepository.findAllPowerPlantsWithConstructionStartTimeInTick(getCurrentTick()), + getCurrentTick()); + } + + void createFinancialReportsForPowerPlantsAndTick(Iterable plants, long tick) { + + for (PowerPlant plant : plants) { + + FinancialPowerPlantReport financialPowerPlantReport = new FinancialPowerPlantReport(); + financialPowerPlantReport.setTime(tick); + financialPowerPlantReport.setFullLoadHours(0); + financialPowerPlantReport.setPowerPlant(plant); + financialPowerPlantReport.setCommodityCosts(0); + financialPowerPlantReport.persist(); + + + // Determining variable and CO2 costs in current time step. + double totalSupply = plant.calculateElectricityOutputAtTime(tick, false); + financialPowerPlantReport.setProduction(totalSupply); + + for (SubstanceShareInFuelMix share : plant.getFuelMix()) { + + double amount = share.getShare() * totalSupply; + Substance substance = share.getSubstance(); + double substanceCost = findLastKnownPriceForSubstance(substance) * amount; + financialPowerPlantReport.setCommodityCosts(financialPowerPlantReport.getCommodityCosts() + + substanceCost); + + + } + financialPowerPlantReport.setCo2Costs(reps.powerPlantRepository.calculateCO2CostsOfPowerPlant(plant, + tick)); + financialPowerPlantReport.setVariableCosts(financialPowerPlantReport.getCommodityCosts()+financialPowerPlantReport.getCo2Costs()); + + //Determine fixed costs + financialPowerPlantReport.setFixedCosts(reps.powerPlantRepository + .calculateFixedCostsOfPowerPlant(plant, + tick)); + + //Calculate overall revenue + financialPowerPlantReport.setSpotMarketRevenue(reps.powerPlantRepository + .calculateSpotMarketRevenueOfPowerPlant(plant, tick)); + + financialPowerPlantReport.setStrategicReserveRevenue(reps.powerPlantRepository + .calculateStrategicReserveRevenueOfPowerPlant(plant, tick)); + + financialPowerPlantReport.setCapacityMarketRevenue(reps.powerPlantRepository + .calculateCapacityMarketRevenueOfPowerPlant(plant, tick)); + + financialPowerPlantReport.setCo2HedgingRevenue(reps.powerPlantRepository + .calculateCO2HedgingRevenueOfPowerPlant(plant, tick)); + + + financialPowerPlantReport.setOverallRevenue(financialPowerPlantReport.getCapacityMarketRevenue() + financialPowerPlantReport.getCo2HedgingRevenue() + financialPowerPlantReport.getSpotMarketRevenue() + financialPowerPlantReport + .getStrategicReserveRevenue()); + + // Calculate Full load hours + financialPowerPlantReport.setFullLoadHours(reps.powerPlantRepository.calculateFullLoadHoursOfPowerPlant( + plant, tick)); + + int operationalStatus; + if (plant.isOperational(tick)) + operationalStatus = 1; + else if (plant.isInPipeline(tick)) + operationalStatus = 0; + else + operationalStatus = 2; + + financialPowerPlantReport.setPowerPlantStatus(operationalStatus); + + + + } + + } + +} diff --git a/emlab-generation/src/main/java/emlab/gen/role/market/DetermineResidualLoadCurvesForTwoCountriesRole.java b/emlab-generation/src/main/java/emlab/gen/role/market/DetermineResidualLoadCurvesForTwoCountriesRole.java index d51faa7c..20740ec4 100644 --- a/emlab-generation/src/main/java/emlab/gen/role/market/DetermineResidualLoadCurvesForTwoCountriesRole.java +++ b/emlab-generation/src/main/java/emlab/gen/role/market/DetermineResidualLoadCurvesForTwoCountriesRole.java @@ -1,7 +1,5 @@ package emlab.gen.role.market; -import hep.aida.bin.DynamicBin1D; - import java.util.HashMap; import java.util.List; import java.util.Map; @@ -27,7 +25,9 @@ import emlab.gen.domain.technology.PowerGeneratingTechnology; import emlab.gen.domain.technology.PowerGridNode; import emlab.gen.repository.Reps; +import emlab.gen.trend.HourlyCSVTimeSeries; import emlab.gen.util.Utils; +import hep.aida.bin.DynamicBin1D; /** * * @@ -38,8 +38,8 @@ * */ @RoleComponent -public class DetermineResidualLoadCurvesForTwoCountriesRole extends AbstractRole implements -Role { +public class DetermineResidualLoadCurvesForTwoCountriesRole extends AbstractRole + implements Role { @Autowired private Reps reps; @@ -70,8 +70,8 @@ public void act(DecarbonizationModel model) { // original matrix is changed as well (see Colt package). List zoneList = Utils.asList(reps.template.findAll(Zone.class)); - List technologyList = Utils.asList(reps.powerGeneratingTechnologyRepository - .findAllIntermittentPowerGeneratingTechnologies()); + List technologyList = Utils + .asList(reps.powerGeneratingTechnologyRepository.findAllIntermittentPowerGeneratingTechnologies()); Map> zoneToNodeList = new HashMap>(); for (Zone zone : zoneList) { List nodeList = Utils.asList(reps.powerGridNodeRepository.findAllPowerGridNodesByZone(zone)); @@ -158,17 +158,21 @@ public void act(DecarbonizationModel model) { for (Zone zone : zoneList) { for (PowerGridNode node : zoneToNodeList.get(zone)) { - DoubleMatrix1D hourlyArray = new DenseDoubleMatrix1D(node.getHourlyDemand().getHourlyArray(getCurrentTick())); - double growthRate = reps.marketRepository.findElectricitySpotMarketForZone(zone).getDemandGrowthTrend() - .getValue(clearingTick); - DoubleMatrix1D growthFactors = hourlyArray.copy(); - growthFactors.assign(growthRate); - hourlyArray.assign(growthFactors, Functions.mult); - m.viewColumn(LOADINZONE.get(zone)).assign(hourlyArray, Functions.plus); - m.viewColumn(RLOADINZONE.get(zone)).assign(hourlyArray, Functions.plus); - + HourlyCSVTimeSeries hourlyTimeSeriesInNode = node.getHourlyDemand(); + if (hourlyTimeSeriesInNode != null) { + DoubleMatrix1D hourlyArray = new DenseDoubleMatrix1D( + hourlyTimeSeriesInNode.getHourlyArray(getCurrentTick())); + double growthRate = reps.marketRepository.findElectricitySpotMarketForZone(zone) + .getDemandGrowthTrend().getValue(clearingTick); + DoubleMatrix1D growthFactors = hourlyArray.copy(); + growthFactors.assign(growthRate); + hourlyArray.assign(growthFactors, Functions.mult); + m.viewColumn(LOADINZONE.get(zone)).assign(hourlyArray, Functions.plus); + m.viewColumn(RLOADINZONE.get(zone)).assign(hourlyArray, Functions.plus); + } } - + // logger.warn("Zone: " + zone); + // logger.warn("" + m.viewColumn(LOADINZONE.get(zone))); } // 3. For each power grid node multiply the time series of each @@ -188,8 +192,8 @@ public void act(DecarbonizationModel model) { for (PowerGeneratingTechnology technology : technologyList) { double intermittentCapacityOfTechnologyInNode = reps.powerPlantRepository - .calculateCapacityOfOperationalIntermittentPowerPlantsByPowerGridNodeAndTechnology(node, technology, - getCurrentTick()); + .calculateCapacityOfOperationalIntermittentPowerPlantsByPowerGridNodeAndTechnology(node, + technology, getCurrentTick()); // logger.warn(technology.getName() + ": " + // intermittentCapacityOfTechnologyInNode + " MW in Node " @@ -197,22 +201,28 @@ public void act(DecarbonizationModel model) { IntermittentResourceProfile intermittentResourceProfile = reps.intermittentResourceProfileRepository .findIntermittentResourceProfileByTechnologyAndNode(technology, node); - // Calculates hourly production of intermittent renewable // technology per node - DoubleMatrix1D hourlyProductionPerNode = new DenseDoubleMatrix1D( - intermittentResourceProfile.getHourlyArray(getCurrentTick())); - m.viewColumn(TECHNOLOGYLOADFACTORSFORZONEANDNODE.get(zone).get(node).get(technology)).assign( - hourlyProductionPerNode, Functions.plus); - hourlyProductionPerNode.assign(Functions.mult(intermittentCapacityOfTechnologyInNode)); - m.viewColumn(IPROD.get(zone)).assign(hourlyProductionPerNode, Functions.plus); - // Add to zonal-technological RES column + if (intermittentResourceProfile != null) { + DoubleMatrix1D hourlyProductionPerNode = new DenseDoubleMatrix1D( + intermittentResourceProfile.getHourlyArray(getCurrentTick())); - // Substracts the above from the residual load curve - m.viewColumn(RLOADINZONE.get(zone)).assign(hourlyProductionPerNode, Functions.minus); + // WARNING!!!!!!! This is a very memory consuming + // logger.warn....!!!!!!! + // logger.warn("production profiles hourly data is " + + // hourlyProductionPerNode); - } + m.viewColumn(TECHNOLOGYLOADFACTORSFORZONEANDNODE.get(zone).get(node).get(technology)) + .assign(hourlyProductionPerNode, Functions.plus); + hourlyProductionPerNode.assign(Functions.mult(intermittentCapacityOfTechnologyInNode)); + m.viewColumn(IPROD.get(zone)).assign(hourlyProductionPerNode, Functions.plus); + // Add to zonal-technological RES column + // Substracts the above from the residual load curve + m.viewColumn(RLOADINZONE.get(zone)).assign(hourlyProductionPerNode, Functions.minus); + + } + } } m.viewColumn(RLOADTOTAL).assign(m.viewColumn(RLOADINZONE.get(zone)), Functions.plus); @@ -234,8 +244,8 @@ public void act(DecarbonizationModel model) { for (PowerGridNode node : zoneToNodeList.get(zone)) { for (PowerGeneratingTechnology technology : technologyList) { - m.viewColumn(TECHNOLOGYLOADFACTORSFORZONEANDNODE.get(zone).get(node).get(technology)).assign(spillVector, - Functions.mult); + m.viewColumn(TECHNOLOGYLOADFACTORSFORZONEANDNODE.get(zone).get(node).get(technology)) + .assign(spillVector, Functions.mult); } } @@ -264,7 +274,7 @@ public void act(DecarbonizationModel model) { Map spillFactorMap = new HashMap(); // Get old values of IPROD to calculate spill factors later on. - for(Zone zone: zoneList){ + for (Zone zone : zoneList) { spillFactorMap.put(zone, m.viewColumn(IPROD.get(zone)).copy()); } @@ -312,7 +322,8 @@ public void act(DecarbonizationModel model) { } else { m.set(row, INTERCONNECTOR, 0); m.viewColumn(RLOADINZONE.get(zoneSmallerResidual)).set(row, 0); - m.viewColumn(RLOADINZONE.get(zoneBiggerResidual)).set(row, biggerResidual + m.get(row, INTERCONNECTOR)); + m.viewColumn(RLOADINZONE.get(zoneBiggerResidual)).set(row, + biggerResidual + m.get(row, INTERCONNECTOR)); } } else { // Country BiggerResidual can import less than Country @@ -322,11 +333,13 @@ public void act(DecarbonizationModel model) { m.set(row, INTERCONNECTOR, m.get(row, INTERCONNECTOR) + biggerResidual); m.set(row, RLOADINZONE.get(zoneBiggerResidual), 0); m.set(row, RLOADINZONE.get(zoneSmallerResidual), 0); - m.set(row, IPROD.get(zoneSmallerResidual), (m.get(row, IPROD.get(zoneSmallerResidual)) - biggerResidual)); + m.set(row, IPROD.get(zoneSmallerResidual), + (m.get(row, IPROD.get(zoneSmallerResidual)) - biggerResidual)); } else { // Interconnector capacity is limiting m.set(row, INTERCONNECTOR, 0); - m.set(row, RLOADINZONE.get(zoneBiggerResidual), biggerResidual + m.viewColumn(INTERCONNECTOR).get(row)); + m.set(row, RLOADINZONE.get(zoneBiggerResidual), + biggerResidual + m.viewColumn(INTERCONNECTOR).get(row)); m.set(row, RLOADINZONE.get(zoneSmallerResidual), 0); m.set(row, IPROD.get(zoneSmallerResidual), (m.get(row, IPROD.get(zoneSmallerResidual)) - m.get(row, INTERCONNECTOR))); @@ -360,8 +373,8 @@ public void act(DecarbonizationModel model) { for (Zone zone : zoneList) { for (PowerGridNode node : zoneToNodeList.get(zone)) { for (PowerGeneratingTechnology technology : technologyList) { - m.viewColumn(TECHNOLOGYLOADFACTORSFORZONEANDNODE.get(zone).get(node).get(technology)).assign( - spillFactorMap.get(zone), Functions.div); + m.viewColumn(TECHNOLOGYLOADFACTORSFORZONEANDNODE.get(zone).get(node).get(technology)) + .assign(spillFactorMap.get(zone), Functions.div); } } } @@ -369,9 +382,11 @@ public void act(DecarbonizationModel model) { // Make the interconnector capacity postive m.viewColumn(INTERCONNECTOR).assign(Functions.mult(-1)); - // logger.warn("Number of hours where both countries of negative residual load: " + // logger.warn("Number of hours where both countries of negative + // residual load: " // + numberOfHoursWereBothCountriesHaveNegativeResidualLoad); - // logger.warn("Number of hours where one country exports to the other: " + // logger.warn("Number of hours where one country exports to the other: + // " // + numberOfHoursWhereOneCountryExportsREStoTheOther); // 5. Order the hours in the global residual load curve. Peak load @@ -428,7 +443,6 @@ public void act(DecarbonizationModel model) { segmentInterConnectorBins[i] = new DynamicBin1D(); } - Map segmentRloadBinsByZone = new HashMap(); Map segmentLoadBinsByZone = new HashMap(); @@ -495,14 +509,15 @@ public void act(DecarbonizationModel model) { currentSegmentID = 1; hoursAssignedToCurrentSegment = 0; for (int row = 0; row < m.rows() && currentSegmentID <= noSegments; row++) { - // IMPORTANT: since [] is zero-based index, it checks one index + // IMPORTANT: since [] is zero-based index, it checks + // one index // ahead of current segment. while (currentSegmentID < noSegments && hoursAssignedToCurrentSegment > 0 && m.get(row, RLOADTOTAL) <= upperBoundSplit[currentSegmentID]) { currentSegmentID++; hoursAssignedToCurrentSegment = 0; } - currentBinArray[currentSegmentID - 1].add(m.get(row,columnNumber)); + currentBinArray[currentSegmentID - 1].add(m.get(row, columnNumber)); hoursAssignedToCurrentSegment++; } loadFactorBinMap.get(zone).get(node).put(technology, currentBinArray); @@ -510,7 +525,6 @@ public void act(DecarbonizationModel model) { } } - // Assign hours to segments according to residual load in this country. // Only for error estimation purposes @@ -556,7 +570,6 @@ public void act(DecarbonizationModel model) { } - // m = m.viewSorted(RLOADTOTAL).viewRowFlip(); // // logger.debug("First 30 values of matrix: \n " + m.viewPart(0, 0, 30, @@ -565,22 +578,22 @@ public void act(DecarbonizationModel model) { // Printing of segments int it = 1; for (DynamicBin1D bin : segmentRloadBins) { - // logger.warn("Segment " + it + "\n Size: " + bin.size() + - // "\n Mean RLOAD~: " + Math.round(bin.mean()) - // + "\n Max RLOAD~: " + Math.round(bin.max()) + - // "\n Min RLOAD~: " + Math.round(bin.min()) - // + "\n Std RLOAD~: " + Math.round(bin.standardDeviation())); + // logger.warn("Segment " + it + "\n Size: " + bin.size() + + // "\n Mean RLOAD~: " + Math.round(bin.mean()) + // + "\n Max RLOAD~: " + Math.round(bin.max()) + + // "\n Min RLOAD~: " + Math.round(bin.min()) + // + "\n Std RLOAD~: " + Math.round(bin.standardDeviation())); it++; } it = 1; for (DynamicBin1D bin : segmentInterConnectorBins) { - // logger.warn("Segment " + it + "\n Size: " + bin.size() + - // "\n Mean IntCapacity~: " - // + Math.round(bin.mean()) + "\n Max IntCapacity~: " + + // logger.warn("Segment " + it + "\n Size: " + bin.size() + + // "\n Mean IntCapacity~: " + // + Math.round(bin.mean()) + "\n Max IntCapacity~: " + // Math.round(bin.max()) - // + "\n Min IntCapacity~: " + Math.round(bin.min()) + - // "\n STD IntCapacity~: " + // + "\n Min IntCapacity~: " + Math.round(bin.min()) + + // "\n STD IntCapacity~: " // + Math.round(bin.standardDeviation())); it++; } @@ -592,11 +605,11 @@ public void act(DecarbonizationModel model) { String meanLoad = new String("Load in " + zone.getName() + ":"); String segmentLength = new String("Segment length " + zone.getName() + ":"); for (DynamicBin1D bin : segmentRloadBinsByZone.get(zone)) { - // logger.warn("Segment " + it + "\n Size: " + bin.size() + - // "\n Mean RLOAD~: " + Math.round(bin.mean()) - // + "\n Max RLOAD~: " + Math.round(bin.max()) + - // "\n Min RLOAD~: " + Math.round(bin.min()) - // + "\n Std RLOAD~: " + + // logger.warn("Segment " + it + "\n Size: " + bin.size() + + // "\n Mean RLOAD~: " + Math.round(bin.mean()) + // + "\n Max RLOAD~: " + Math.round(bin.max()) + + // "\n Min RLOAD~: " + Math.round(bin.min()) + // + "\n Std RLOAD~: " + // Math.round(bin.standardDeviation())); it++; double mean = bin.mean() * 1000; @@ -607,12 +620,12 @@ public void act(DecarbonizationModel model) { } it = 1; for (DynamicBin1D bin : segmentLoadBinsByZone.get(zone)) { - // logger.warn("Segment " + it + "\n Size: " + bin.size() + - // "\n Mean LOAD~: " - // + Math.round(bin.mean()) + "\n Max LOAD~: " + + // logger.warn("Segment " + it + "\n Size: " + bin.size() + + // "\n Mean LOAD~: " + // + Math.round(bin.mean()) + "\n Max LOAD~: " + // Math.round(bin.max()) - // + "\n Min LOAD~: " + Math.round(bin.min()) + - // "\n Std LOAD~: " + // + "\n Min LOAD~: " + Math.round(bin.min()) + + // "\n Std LOAD~: " // + Math.round(bin.standardDeviation())); it++; double mean = bin.mean() * 1000; @@ -647,11 +660,11 @@ public void act(DecarbonizationModel model) { ; it = 1; for (DynamicBin1D bin : loadFactorBinMap.get(zone).get(node).get(technology)) { - // logger.warn("Segment " + it + "\n Size: " + - // bin.size() + "\n Mean RLOAD~: " - // + bin.mean() + "\n Max RLOAD~: " + bin.max() + - // "\n Min RLOAD~: " + bin.min() - // + "\n Std RLOAD~: " + bin.standardDeviation()); + // logger.warn("Segment " + it + "\n Size: " + + // bin.size() + "\n Mean RLOAD~: " + // + bin.mean() + "\n Max RLOAD~: " + bin.max() + + // "\n Min RLOAD~: " + bin.min() + // + "\n Std RLOAD~: " + bin.standardDeviation()); intTechnologyNodeLoadFactor.setLoadFactorForSegmentId(it, bin.mean()); double mean = bin.mean() * 1000000; mean = Math.round(mean); @@ -674,8 +687,8 @@ public void act(DecarbonizationModel model) { Zone zone = segmentLoad.getElectricitySpotMarket().getZone(); double demandGrowthFactor = reps.marketRepository.findElectricitySpotMarketForZone(zone) .getDemandGrowthTrend().getValue(clearingTick); - segmentLoad.setBaseLoad(segmentLoadBinsByZone.get(zone)[segment.getSegmentID() - 1].mean() - / demandGrowthFactor); + segmentLoad.setBaseLoad( + segmentLoadBinsByZone.get(zone)[segment.getSegmentID() - 1].mean() / demandGrowthFactor); // logger.warn("Segment " + segment.getSegmentID() + ": " + // segmentLoad.getBaseLoad() + "MW"); } @@ -686,10 +699,7 @@ public void act(DecarbonizationModel model) { } for (Zone zone : zoneList) { - double intermittentCapacityOfTechnologyInZone=0; - - - + double intermittentCapacityOfTechnologyInZone = 0; for (PowerGeneratingTechnology technology : technologyList) { double productionOfTechInZone = 0; @@ -697,13 +707,12 @@ public void act(DecarbonizationModel model) { for (PowerGridNode node : zoneToNodeList.get(zone)) { intermittentCapacityOfTechnologyInZone += reps.powerPlantRepository - .calculateCapacityOfOperationalIntermittentPowerPlantsByPowerGridNodeAndTechnology(node, technology, - getCurrentTick()); - productionOfTechInZone += m.viewColumn( - TECHNOLOGYLOADFACTORSFORZONEANDNODE.get(zone).get(node).get(technology)).zSum() + .calculateCapacityOfOperationalIntermittentPowerPlantsByPowerGridNodeAndTechnology(node, + technology, getCurrentTick()); + productionOfTechInZone += m + .viewColumn(TECHNOLOGYLOADFACTORSFORZONEANDNODE.get(zone).get(node).get(technology)).zSum() * intermittentCapacityOfTechnologyInZone; - } // logger.warn(technology.getName() + " is producing " + diff --git a/emlab-generation/src/main/java/emlab/gen/role/renewablesupport/ComputePremiumRole.java b/emlab-generation/src/main/java/emlab/gen/role/renewablesupport/ComputePremiumRole.java new file mode 100644 index 00000000..efb42e66 --- /dev/null +++ b/emlab-generation/src/main/java/emlab/gen/role/renewablesupport/ComputePremiumRole.java @@ -0,0 +1,236 @@ +/******************************************************************************* + * Copyright 2013 the original author or authors. + * + * Licensed 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. + ******************************************************************************/ +package emlab.gen.role.renewablesupport; + +import java.util.HashMap; +import java.util.Map; +import java.util.Set; +import java.util.TreeMap; + +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.data.annotation.Transient; +import org.springframework.data.neo4j.support.Neo4jTemplate; +import org.springframework.transaction.annotation.Transactional; + +import agentspring.role.Role; +import agentspring.role.RoleComponent; +import emlab.gen.domain.agent.DecarbonizationModel; +import emlab.gen.domain.agent.EnergyProducer; +import emlab.gen.domain.agent.Regulator; +import emlab.gen.domain.market.electricity.ElectricitySpotMarket; +import emlab.gen.domain.market.electricity.Segment; +import emlab.gen.domain.market.electricity.SegmentLoad; +import emlab.gen.domain.policy.renewablesupport.BaseCostFip; +import emlab.gen.domain.policy.renewablesupport.RenewableSupportFipScheme; +import emlab.gen.domain.technology.PowerGeneratingTechnology; +import emlab.gen.domain.technology.PowerGridNode; +import emlab.gen.domain.technology.PowerPlant; +import emlab.gen.domain.technology.Substance; +import emlab.gen.domain.technology.SubstanceShareInFuelMix; +import emlab.gen.repository.Reps; +import emlab.gen.role.AbstractEnergyProducerRole; + +/** + * @author Kaveri3012 This role loops through eligible technologies, eligible + * nodes, + * + * computes LCOE per technology per node and creates an object, + * BaseCost, to store it. + * + * In technology neutral mode, after computing LCOE per technology, it + * should store LCOE per technology and create a merit order upto which + * a cetrain target is filled. + * + */ + +@RoleComponent +public class ComputePremiumRole extends AbstractEnergyProducerRoleimplements Role { + + @Transient + @Autowired + Reps reps; + + @Transient + @Autowired + Neo4jTemplate template; + + @SuppressWarnings("unchecked") + @Transactional + public void act(RenewableSupportFipScheme scheme) { + + Regulator regulator = scheme.getRegulator(); + + ElectricitySpotMarket eMarket = reps.marketRepository.findElectricitySpotMarketForZone(regulator.getZone()); + + Iterable eligibleTechnologies = scheme.getPowerGeneratingTechnologiesEligible(); + + for (PowerGeneratingTechnology technology : eligibleTechnologies) { + // for (PowerGeneratingTechnology technology : + // reps.powerGeneratingTechnologyRepository.findAll()) { + DecarbonizationModel model = reps.genericRepository.findAll(DecarbonizationModel.class).iterator().next(); + if (technology.isIntermittent() && model.isNoPrivateIntermittentRESInvestment()) + continue; + // logger.warn( + // "Calculating for " + technology.getName() + ", for Nodes: " + + // possibleInstallationNodes.toString()); + + for (PowerGridNode node : reps.powerGridNodeRepository.findAllPowerGridNodesByZone(regulator.getZone())) { + + // or create a new power plant if above statement returns null, + // and assign it to a random energy producer. + PowerPlant plant = new PowerPlant(); + + EnergyProducer producer = reps.energyProducerRepository.findAll().iterator().next(); + + plant.specifyNotPersist(getCurrentTick(), producer, node, technology); + // logger.warn("creating a new power plant for " + + // producer.getName() + ", of technology " + // + plant.getTechnology().getName()); + + Map myFuelPrices = new HashMap(); + for (Substance fuel : technology.getFuels()) { + myFuelPrices.put(fuel, findLastKnownPriceForSubstance(fuel, getCurrentTick())); + } + + Set fuelMix = calculateFuelMix(plant, myFuelPrices, + findLastKnownCO2Price(getCurrentTick())); + plant.setFuelMix(fuelMix); + + double mc = 0d; + double annualMarginalCost = 0d; + double totalGenerationinMWh = 0d; + double lcoe = 0d; + long numberOfSegments = reps.segmentRepository.count(); + double factor = 0d; + double fullLoadHours = 0d; + + mc = calculateMarginalCostExclCO2MarketCost(plant, getCurrentTick()); + + for (SegmentLoad segmentLoad : eMarket.getLoadDurationCurve()) { + double hours = segmentLoad.getSegment().getLengthInHours(); + Segment segment = segmentLoad.getSegment(); + + if (technology.isIntermittent()) { + factor = plant.getIntermittentTechnologyNodeLoadFactor().getLoadFactorForSegment(segment); + } else { + double segmentID = segment.getSegmentID(); + double min = technology.getPeakSegmentDependentAvailability(); + double max = technology.getBaseSegmentDependentAvailability(); + double segmentPortion = (numberOfSegments - segmentID) / (numberOfSegments - 1); // start + // counting + // at + // 1. + + double range = max - min; + factor = max - segmentPortion * range; + + } + + fullLoadHours += factor * segment.getLengthInHours(); + + } + + totalGenerationinMWh = fullLoadHours * plant.getActualNominalCapacity(); + annualMarginalCost = totalGenerationinMWh * mc; + + logger.warn("for technology " + plant.getTechnology().getName() + " total generation is " + + totalGenerationinMWh + " and running hours is " + fullLoadHours); + + double fixedOMCost = calculateFixedOperatingCost(plant, getCurrentTick()); + double operatingCost = fixedOMCost + annualMarginalCost; + + long durationOfSupportScheme = scheme.getSupportSchemeDuration(); + + // logger.warn("Fixed OM cost for technology " + + // plant.getTechnology().getName() + " is " + fixedOMCost + // + " and operatingCost is " + operatingCost); + + TreeMap discountedProjectCapitalOutflow = calculateSimplePowerPlantInvestmentCashFlow( + (int) durationOfSupportScheme, (int) plant.getActualLeadtime(), + plant.getActualInvestedCapital(), 0); + + // Creation of in cashflow during operation + TreeMap discountedProjectCashOutflow = calculateSimplePowerPlantInvestmentCashFlow( + (int) durationOfSupportScheme, (int) plant.getActualLeadtime(), 0, operatingCost); + + TreeMap factorDiscountedGenerationSeries = calculateSimplePowerPlantInvestmentCashFlow( + (int) durationOfSupportScheme, (int) plant.getActualLeadtime(), 0, 1); + + // Calculation of weighted average cost of capital, + // based on regulator's assumption of companies debt-ratio + double wacc = (1 - regulator.getDebtRatioOfInvestments()) * regulator.getEquityInterestRate() + + regulator.getDebtRatioOfInvestments() * regulator.getLoanInterestRate(); + + double discountedCapitalCosts = npv(discountedProjectCapitalOutflow, wacc); + logger.warn("discountedCapitalCosts " + discountedCapitalCosts); + double discountedOpCost = npv(discountedProjectCashOutflow, wacc); + double factorDiscountedGeneration = npv(factorDiscountedGenerationSeries, wacc); + + double biasFactor = scheme.getBiasFactors().get(technology); + logger.warn("biasFactor " + biasFactor); + lcoe = (discountedCapitalCosts + discountedOpCost) * biasFactor + / (totalGenerationinMWh * factorDiscountedGeneration); + + BaseCostFip baseCostFip = new BaseCostFip(); + + baseCostFip.setCostPerMWh(lcoe); + baseCostFip.setStartTime(getCurrentTick()); + baseCostFip.setNode(node); + baseCostFip.setTechnology(technology); + baseCostFip.setEndTime(getCurrentTick() + scheme.getSupportSchemeDuration()); + baseCostFip.persist(); + + logger.warn("LCOE in per MWH for technology " + plant.getTechnology().getName() + "for node " + + baseCostFip.getNode().getNodeId() + " is , " + baseCostFip.getCostPerMWh()); + + } + } + + } + + private TreeMap calculateSimplePowerPlantInvestmentCashFlow(int depreciationTime, int buildingTime, + double totalInvestment, double operatingProfit) { + TreeMap investmentCashFlow = new TreeMap(); + double equalTotalDownPaymentInstallement = totalInvestment / buildingTime; + for (int i = 0; i < buildingTime; i++) { + investmentCashFlow.put(new Integer(i), equalTotalDownPaymentInstallement); + } + for (int i = buildingTime; i < depreciationTime + buildingTime; i++) { + investmentCashFlow.put(new Integer(i), operatingProfit); + } + return investmentCashFlow; + } + + private double npv(TreeMap netCashFlow, double wacc) { + double npv = 0; + for (Integer iterator : netCashFlow.keySet()) { + npv += netCashFlow.get(iterator).doubleValue() / Math.pow(1 + wacc, iterator.intValue()); + } + return npv; + } + + /* + * (non-Javadoc) + * + * @see agentspring.role.Role#act(agentspring.agent.Agent) + */ + @Override + public void act(EnergyProducer arg0) { + // TODO Auto-generated method stub + + } + +} diff --git a/emlab-generation/src/main/java/emlab/gen/role/renewablesupport/FeedInPremiumRole.java b/emlab-generation/src/main/java/emlab/gen/role/renewablesupport/FeedInPremiumRole.java new file mode 100644 index 00000000..731af629 --- /dev/null +++ b/emlab-generation/src/main/java/emlab/gen/role/renewablesupport/FeedInPremiumRole.java @@ -0,0 +1,214 @@ +/******************************************************************************* + * Copyright 2013 the original author or authors. + * + * Licensed 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. + ******************************************************************************/ +package emlab.gen.role.renewablesupport; + +import java.util.HashSet; +import java.util.Set; + +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.data.annotation.Transient; +import org.springframework.data.neo4j.support.Neo4jTemplate; +import org.springframework.transaction.annotation.Transactional; + +import agentspring.role.AbstractRole; +import agentspring.role.RoleComponent; +import emlab.gen.domain.agent.Regulator; +import emlab.gen.domain.contract.CashFlow; +import emlab.gen.domain.market.electricity.ElectricitySpotMarket; +import emlab.gen.domain.market.electricity.PowerPlantDispatchPlan; +import emlab.gen.domain.market.electricity.SegmentLoad; +import emlab.gen.domain.policy.renewablesupport.BaseCostFip; +import emlab.gen.domain.policy.renewablesupport.RenewableSupportFipScheme; +import emlab.gen.domain.policy.renewablesupport.SupportPriceContract; +import emlab.gen.domain.technology.PowerGeneratingTechnology; +import emlab.gen.domain.technology.PowerGridNode; +import emlab.gen.domain.technology.PowerPlant; +import emlab.gen.repository.Reps; + +/** + * @author Kaveri3012 for loop through eligible, operational power plants, + * create support price contract for each technology, using + * + * supportPrice = baseCost*TotalGeneration - ElectricityMarketRevenue + * + * Assumption: when the policy is implemented for a certain country, all + * operational, eligible plants in that zone receive the premium by + * default. there is no need for an energy producer agent to voluntarily + * apply for the scheme. + * + * + */ +@RoleComponent +public class FeedInPremiumRole extends AbstractRole { + + @Transient + @Autowired + Reps reps; + + @Transient + @Autowired + Neo4jTemplate template; + + @Transactional + public void act(RenewableSupportFipScheme renewableSupportScheme) { + + Regulator regulator = new Regulator(); + regulator = renewableSupportScheme.getRegulator(); + + Set technologySet = new HashSet(); + technologySet = renewableSupportScheme.getPowerGeneratingTechnologiesEligible(); + + ElectricitySpotMarket eMarket = reps.marketRepository.findElectricitySpotMarketForZone(regulator.getZone()); + SupportPriceContract contract = null; + + for (PowerGeneratingTechnology technology : technologySet) { + + Iterable possibleInstallationNodes = reps.powerGridNodeRepository + .findAllPowerGridNodesByZone(regulator.getZone()); + + // logger.warn("Calculating FEED IN PREMIUM for " + + // technology.getName() + ", for Nodes: " + // + possibleInstallationNodes.toString()); + + for (PowerGridNode node : possibleInstallationNodes) { + + // logger.warn("Inside power grid node loop"); + + Iterable plantSet; + + if (getCurrentTick() >= 1) { + plantSet = reps.powerPlantRepository + .findPowerPlantsStartingOperationThisTickByPowerGridNodeAndTechnology(node, technology, + getCurrentTick()); + } else { + plantSet = reps.powerPlantRepository.findOperationalPowerPlantsByPowerGridNodeAndTechnology(node, + technology, getCurrentTick()); + } + + // query to find power plants by node and technology who have + // finished construction this tick + for (PowerPlant plant : plantSet) { + + long finishedConstruction = plant.getConstructionStartTime() + plant.calculateActualPermittime() + + plant.calculateActualLeadtime(); + + long contractFinishTime = finishedConstruction + renewableSupportScheme.getSupportSchemeDuration(); + + logger.warn("Printing finished construction" + finishedConstruction + "and current tick " + + getCurrentTick()); + // long timeNow = getCurrentTick(); + + // logger.warn("Inside contract creation loop"); + // create a query to get base cost. + BaseCostFip baseCost = reps.baseCostFipRepository.findOneBaseCostForTechnologyAndNodeAndTime(node, + technology, getCurrentTick()); + contract = new SupportPriceContract(); + contract.setStart(getCurrentTick()); + contract.setPricePerUnit(baseCost.getCostPerMWh()); + contract.setFinish(contractFinishTime); + contract.setPlant(plant); + contract.persist(); + + // logger.warn("Contract price for plant of technology " + + // plant.getTechnology().getName() + // + "for node " + node.getNodeId() + " is , " + + // contract.getPricePerUnit()); + + } + + for (PowerPlant plant : reps.powerPlantRepository + .findOperationalPowerPlantsByPowerGridNodeAndTechnology(node, technology, getCurrentTick())) { + // .findAllPowerPlantsWithConstructionStartTimeInTick(getCurrentTick()) + // //findOperationalPowerPlantsByMarketAndTechnology(eMarket, + // technology, getCurrentTick())) { + + logger.warn("Compute FiP for power plant" + plant.getName()); + + // existing eligible plants at the start of the simulation + // (tick + // 0) do not get contracts. + + // if plant is new (begins operation this year), get + // corresponding base cost, and create supportPriceContract + // for it, with base cost, start tick and end tick. + + // for all eligible plants, the support price is calculated, + // and + // payment is made. + contract = reps.supportPriceContractRepository.findOneContractByPowerPlant(plant); + if (contract != null) { + if (getCurrentTick() <= (contract.getStart() + + renewableSupportScheme.getSupportSchemeDuration())) { + logger.warn("Inside contract payment loop"); + double sumEMR = 0d; + double electricityPrice = 0d; + double totalGenerationInMwh = 0d; + + // the for loop below calculates the electricity + // market + // price the plant earned + // throughout the year, for its total production + for (SegmentLoad segmentLoad : eMarket.getLoadDurationCurve()) { + // logger.warn("Inside segment loop for + // calculating + // total production"); + PowerPlantDispatchPlan ppdp = reps.powerPlantDispatchPlanRepository + .findOnePowerPlantDispatchPlanForPowerPlantForSegmentForTime(plant, + segmentLoad.getSegment(), getCurrentTick(), false); + if (ppdp.getStatus() < 0) { + sumEMR = 0d; + } else if (ppdp.getStatus() >= 2) { + electricityPrice = reps.segmentClearingPointRepository + .findOneSegmentClearingPointForMarketSegmentAndTime(getCurrentTick(), + segmentLoad.getSegment(), eMarket, false) + .getPrice(); + + double hours = segmentLoad.getSegment().getLengthInHours(); + sumEMR = sumEMR + electricityPrice * hours * ppdp.getAcceptedAmount(); + totalGenerationInMwh += hours * ppdp.getAcceptedAmount(); + + } + + } + + double supportPrice = contract.getPricePerUnit() * totalGenerationInMwh - sumEMR; + if (supportPrice < 0) + supportPrice = 0; + // payment + logger.warn("Base Cost " + contract.getPricePerUnit()); + logger.warn("Total Generation " + totalGenerationInMwh); + logger.warn("Revenue from EM " + sumEMR); + logger.warn("Annual Subsidy " + supportPrice); + reps.nonTransactionalCreateRepository.createCashFlow(eMarket, plant.getOwner(), + supportPrice, CashFlow.FEED_IN_PREMIUM, getCurrentTick(), plant); + + } + // delete contract. not sure if necessary. contract has + // been mainly used to control period of payment + if (getCurrentTick() > (contract.getStart() + + renewableSupportScheme.getSupportSchemeDuration())) { + contract = null; + } + + } + + } + + } + + } + } +} diff --git a/emlab-generation/src/main/java/emlab/gen/role/renewablesupport/package-info.java b/emlab-generation/src/main/java/emlab/gen/role/renewablesupport/package-info.java new file mode 100644 index 00000000..41860bc2 --- /dev/null +++ b/emlab-generation/src/main/java/emlab/gen/role/renewablesupport/package-info.java @@ -0,0 +1,20 @@ +/******************************************************************************* + * Copyright 2013 the original author or authors. + * + * Licensed 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. + ******************************************************************************/ +/** + * @author Kaveri3012 + * + */ +package emlab.gen.role.renewablesupport; \ No newline at end of file diff --git a/emlab-generation/src/main/java/emlab/gen/trend/HourlyCSVTimeSeries.java b/emlab-generation/src/main/java/emlab/gen/trend/HourlyCSVTimeSeries.java index 50181c9a..97d9ef1f 100644 --- a/emlab-generation/src/main/java/emlab/gen/trend/HourlyCSVTimeSeries.java +++ b/emlab-generation/src/main/java/emlab/gen/trend/HourlyCSVTimeSeries.java @@ -30,10 +30,16 @@ @NodeEntity public class HourlyCSVTimeSeries implements HourlyTimeSeries { - Logger logger = LoggerFactory.getLogger(HourlyCSVTimeSeries.class); + Logger logger = LoggerFactory.getLogger(HourlyCSVTimeSeries.class); private String filename; + private String variableName; + + private String delimiter; + + private boolean timeSeriesAreInDifferentColumns; + private double[] hourlyArray; @Transactional @@ -45,24 +51,90 @@ private void readData() { String data = new String(); // Save the data in a long String - try { + if (variableName == null) { + try { - InputStreamReader inputStreamReader = new InputStreamReader(this.getClass().getResourceAsStream(filename)); - BufferedReader bufferedReader = new BufferedReader(inputStreamReader); + InputStreamReader inputStreamReader = new InputStreamReader( + this.getClass().getResourceAsStream(filename)); + BufferedReader bufferedReader = new BufferedReader(inputStreamReader); - String line; + String line; - while ((line = bufferedReader.readLine()) != null) { - data = data.concat(line + ","); + while ((line = bufferedReader.readLine()) != null) { + data = data.concat(line + ","); + } + bufferedReader.close(); + + String[] vals = data.split(","); + setHourlyArray(parseString(vals), 0); + + } catch (Exception e) { + logger.error("Couldn't read CSV file: " + filename); + e.printStackTrace(); } - bufferedReader.close(); + } else { + logger.warn("Trying to read variable " + variableName + " from CSV file: " + filename + " with delimiter " + + delimiter); + + // Save the data in a long String + try { - String[] vals = data.split(","); - setHourlyArray(parseString(vals), 0); + InputStreamReader inputStreamReader = new InputStreamReader( + this.getClass().getResourceAsStream(filename)); + BufferedReader bufferedReader = new BufferedReader(inputStreamReader); + + if (!timeSeriesAreInDifferentColumns) { + + String line; + String[] lineContentSplit = null; + while ((line = bufferedReader.readLine()) != null) { + if (line.startsWith(variableName)) { + lineContentSplit = line.split(delimiter); + break; + } + } + bufferedReader.close(); + double[] timeSeries = new double[lineContentSplit.length - 1]; + int i = 0; + for (String s : lineContentSplit) { + if (i > 0) + timeSeries[i - 1] = Double.parseDouble(s); + i++; + } + setHourlyArray(timeSeries, 0); + this.persist(); + } else { + String firstLine = bufferedReader.readLine(); + String[] firstLineContentSplit = firstLine.split(delimiter); + int columnNumber = -1; + for (int col = 0; col < firstLineContentSplit.length; col++) { + if (variableName.equals(firstLineContentSplit[col])) { + columnNumber = col; + break; + } + } + if (columnNumber == -1) { + throw new Exception("Couldn't find column name!"); + } + + String line; + + while ((line = bufferedReader.readLine()) != null) { + String[] lineContentSplit = null; + lineContentSplit = line.split(delimiter); + data = data.concat(lineContentSplit[columnNumber] + ","); + } + bufferedReader.close(); + + String[] vals = data.split(","); + setHourlyArray(parseString(vals), 0); + + } - } catch (Exception e) { - logger.error("Couldn't read CSV file: " + filename); - e.printStackTrace(); + } catch (Exception e) { + logger.error("Couldn't read CSV file: " + filename); + e.printStackTrace(); + } } } @@ -115,4 +187,28 @@ public void setFilename(String filename) { this.filename = filename; } + public String getDelimiter() { + return delimiter; + } + + public void setDelimiter(String delimiter) { + this.delimiter = delimiter; + } + + public String getVariableName() { + return variableName; + } + + public void setVariableName(String variable) { + this.variableName = variable; + } + + public boolean isTimeSeriesAreInDifferentColumns() { + return timeSeriesAreInDifferentColumns; + } + + public void setTimeSeriesAreInDifferentColumns(boolean timeSeriesAreInDifferentColumns) { + this.timeSeriesAreInDifferentColumns = timeSeriesAreInDifferentColumns; + } + } diff --git a/emlab-generation/src/main/java/emlab/gen/util/PredictionAnalysis.java b/emlab-generation/src/main/java/emlab/gen/util/PredictionAnalysis.java new file mode 100644 index 00000000..5329730b --- /dev/null +++ b/emlab-generation/src/main/java/emlab/gen/util/PredictionAnalysis.java @@ -0,0 +1,219 @@ +/******************************************************************************* + * Copyright 2013 the original author or authors. + * + * Licensed 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. + ******************************************************************************/ +package emlab.gen.util; + +import java.io.BufferedReader; +import java.io.FileNotFoundException; +import java.io.FileReader; +import java.io.FileWriter; +import java.io.IOException; + +import org.apache.commons.math.stat.regression.SimpleRegression; + +/** + * @author manebel, jrichstein + * + */ +public class PredictionAnalysis { + + /** + * @param args + */ + public static void main(String[] args) { + // read in data + String inputFolder = "/home/jrichstein/emlab-generation/emlab-generation" + + "/src/main/resources/data/stochasticFuelPrices/"; + + String outputFile = "/home/jrichstein/Desktop/emlabGen/PredictionAnalyse/"; + // First year, where Prediction shall be calculated for + int startYear = 2022; + // Last year, where Prediction shall be calculated for + int endYear = 2050; + double[] confidenceLevels = { 0.95 }; + + // Create data for different confidence levels + for (int i = 0; i < confidenceLevels.length; i++) { + createData(startYear, endYear, confidenceLevels[i], outputFile, inputFolder); + } + } + + public static void createData(int startingYear, int endYear, double predictionInterval, String outputFile, + String inputFolder) { + BufferedReader br = null; + String line = ""; + String cvsSplitBy = ","; + String[] years = new String[200]; + String[] coalMedium = new String[200]; + String[] gasMedium = new String[200]; + StringBuffer bufCoal = new StringBuffer(); + StringBuffer bufGas = new StringBuffer(); + bufCoal.append("stochId,year,real,prediction-6-8,prediction-4-6,prediction-4-8,prediction-6-6,prediction-5-7\n"); + bufGas.append("stochId,year,real,prediction-6-8,prediction-4-6,prediction-4-8,prediction-6-6,prediction-5-7\n"); + + for (int j = 1; j <= 120; j++) { + String filename = "fuelPrices-" + j + ".csv"; + String fuelFile = inputFolder + filename; + try { + + br = new BufferedReader(new FileReader(fuelFile)); + int i = 0; + while ((line = br.readLine()) != null) { + if (i == 0) { + years = line.split(cvsSplitBy); + } + if (i == 1) { + coalMedium = line.split(cvsSplitBy); + } + if (i == 2) { + gasMedium = line.split(cvsSplitBy); + } + i++; + + } + + } catch (FileNotFoundException e) { + e.printStackTrace(); + } catch (IOException e) { + e.printStackTrace(); + } finally { + if (br != null) { + try { + br.close(); + } catch (IOException e) { + e.printStackTrace(); + } + } + } + + // FORECASTS FOR COAL PRICES + // according to different values for numberOfYearsBackLooking and + // futureTimePoint + double[][] coal1 = new double[endYear - startingYear + 1][3]; + coal1 = getData(6, 8, predictionInterval, coalMedium, years, startingYear, endYear); + double[][] coal2 = new double[endYear - startingYear + 1][3]; + coal2 = getData(4, 6, predictionInterval, coalMedium, years, startingYear, endYear); + double[][] coal3 = new double[endYear - startingYear + 1][3]; + coal3 = getData(4, 8, predictionInterval, coalMedium, years, startingYear, endYear); + double[][] coal4 = new double[endYear - startingYear + 1][3]; + coal4 = getData(6, 6, predictionInterval, coalMedium, years, startingYear, endYear); + double[][] coal5 = new double[endYear - startingYear + 1][3]; + coal5 = getData(5, 7, predictionInterval, coalMedium, years, startingYear, endYear); + // Calculating the average. There are 4 agents, that have + // numberOfYearsBackLooking: 6 and futureTimePoint: 8 + for (int i = 0; i < endYear - startingYear + 1; i++) { + bufCoal.append(j); + bufCoal.append(","); + bufCoal.append(coal1[i][0]); + bufCoal.append(","); + bufCoal.append(coal1[i][2]); + bufCoal.append(","); + bufCoal.append(coal1[i][1]); + bufCoal.append(","); + bufCoal.append(coal2[i][1]); + bufCoal.append(","); + bufCoal.append(coal3[i][1]); + bufCoal.append(","); + bufCoal.append(coal4[i][1]); + bufCoal.append(","); + bufCoal.append(coal5[i][1]); + bufCoal.append("\n"); + + } + + // FORECASTS FOR GAS PRICES + // according to different values for numberOfYearsBackLooking and + // futureTimePoint + double[][] gas1 = new double[endYear - startingYear + 1][3]; + gas1 = getData(6, 8, predictionInterval, gasMedium, years, startingYear, endYear); + double[][] gas2 = new double[endYear - startingYear + 1][3]; + gas2 = getData(4, 6, predictionInterval, gasMedium, years, startingYear, endYear); + double[][] gas3 = new double[endYear - startingYear + 1][3]; + gas3 = getData(4, 8, predictionInterval, gasMedium, years, startingYear, endYear); + double[][] gas4 = new double[endYear - startingYear + 1][3]; + gas4 = getData(6, 6, predictionInterval, gasMedium, years, startingYear, endYear); + double[][] gas5 = new double[endYear - startingYear + 1][3]; + gas5 = getData(5, 7, predictionInterval, gasMedium, years, startingYear, endYear); + // Calculating the average. There are 4 agents, that have + // numberOfYearsBackLooking: 6 and futureTimePoint: 8 + for (int i = 0; i < endYear - startingYear + 1; i++) { + bufGas.append(j); + bufGas.append(","); + bufGas.append(gas1[i][0]); + bufGas.append(","); + bufGas.append(gas1[i][2]); + bufGas.append(","); + bufGas.append(gas1[i][1]); + bufGas.append(","); + bufGas.append(gas2[i][1]); + bufGas.append(","); + bufGas.append(gas3[i][1]); + bufGas.append(","); + bufGas.append(gas4[i][1]); + bufGas.append(","); + bufGas.append(gas5[i][1]); + bufGas.append("\n"); + + } + } + + try { + FileWriter writer = new FileWriter(outputFile + "Coal" + "_" + predictionInterval + ".csv"); + writer.append(bufCoal); + writer.flush(); + writer.close(); + + } catch (IOException e) { + e.printStackTrace(); + } + + try { + FileWriter writer = new FileWriter(outputFile + "Gas" + "_" + predictionInterval + ".csv"); + writer.append(bufGas); + writer.flush(); + writer.close(); + + } catch (IOException e) { + e.printStackTrace(); + } + } + + public static double[][] getData(int yearsBack, int yearsAhead, double alpha, String[] data, String[] years, + int startYear, int endYear) { + double[][] result = new double[endYear - startYear + 1][3]; + int currentYear = startYear - yearsAhead; + int i = 0; + while (currentYear + yearsAhead <= endYear) { + int startToCollect = Math.max(1, currentYear - 2011 - yearsBack); + SimpleRegression sr = new SimpleRegression(); + while (startToCollect <= currentYear - 2011) { + sr.addData(Integer.parseInt(years[startToCollect]), Double.parseDouble(data[startToCollect])); + startToCollect++; + } + + result[i][0] = Integer.parseInt(years[currentYear - 2011 + yearsAhead]); + result[i][1] = sr.predict(currentYear + yearsAhead); + // result[i][2] = Math.max(0, sr.getPredictionInterval(currentYear + + // yearsAhead, alpha)[0]); + // result[i][3] = sr.getPredictionInterval(currentYear + yearsAhead, + // alpha)[1]; + result[i][2] = Double.parseDouble(data[currentYear - 2011 + yearsAhead]); + + i++; + currentYear++; + } + return result; + } +} diff --git a/emlab-generation/src/main/resources/data/Load_DE_2010.csv b/emlab-generation/src/main/resources/data/Load_DE_2010.csv new file mode 100644 index 00000000..aa4ac56d --- /dev/null +++ b/emlab-generation/src/main/resources/data/Load_DE_2010.csv @@ -0,0 +1,8761 @@ +hour,de_demand +1,45423000 +2,44958000 +3,43357000 +4,41577000 +5,40239000 +6,39146000 +7,37415000 +8,36844000 +9,37079000 +10,38899000 +11,40984000 +12,43556000 +13,45168000 +14,45006000 +15,44513000 +16,44689000 +17,47069000 +18,50440000 +19,51420000 +20,50351000 +21,48600000 +22,47511000 +23,48469000 +24,46351000 +25,43731000 +26,41647000 +27,40550000 +28,39944000 +29,39962000 +30,39604000 +31,39023000 +32,41494000 +33,44873000 +34,48209000 +35,50078000 +36,51656000 +37,52257000 +38,51440000 +39,50802000 +40,50959000 +41,52592000 +42,57243000 +43,57623000 +44,56395000 +45,53209000 +46,51751000 +47,52337000 +48,50131000 +49,47263000 +50,45232000 +51,43657000 +52,42125000 +53,41626000 +54,40730000 +55,39329000 +56,40137000 +57,41573000 +58,43922000 +59,46302000 +60,48891000 +61,49692000 +62,48422000 +63,47521000 +64,47382000 +65,49893000 +66,54129000 +67,55223000 +68,54069000 +69,51966000 +70,51092000 +71,52157000 +72,49795000 +73,47204000 +74,44941000 +75,43753000 +76,43205000 +77,43571000 +78,44570000 +79,48193000 +80,53556000 +81,56857000 +82,58919000 +83,60324000 +84,61495000 +85,61932000 +86,61270000 +87,60665000 +88,60261000 +89,61349000 +90,65184000 +91,64950000 +92,63907000 +93,60948000 +94,59205000 +95,58347000 +96,55551000 +97,53297000 +98,51163000 +99,49721000 +100,48922000 +101,49203000 +102,50640000 +103,54785000 +104,60992000 +105,63970000 +106,64783000 +107,65411000 +108,66271000 +109,66488000 +110,66132000 +111,65248000 +112,64694000 +113,65363000 +114,68283000 +115,68976000 +116,67865000 +117,64787000 +118,61942000 +119,60837000 +120,56903000 +121,53995000 +122,51815000 +123,50321000 +124,49454000 +125,49559000 +126,50533000 +127,54066000 +128,59468000 +129,61945000 +130,62833000 +131,63884000 +132,64938000 +133,64994000 +134,64128000 +135,63125000 +136,62716000 +137,63390000 +138,66524000 +139,67648000 +140,66439000 +141,63308000 +142,61222000 +143,60573000 +144,57111000 +145,54061000 +146,51688000 +147,50290000 +148,49504000 +149,50040000 +150,52251000 +151,57664000 +152,64486000 +153,66659000 +154,66796000 +155,67289000 +156,67868000 +157,67812000 +158,67186000 +159,66318000 +160,66071000 +161,66256000 +162,69530000 +163,70325000 +164,69366000 +165,66340000 +166,63738000 +167,62153000 +168,58461000 +169,55341000 +170,53153000 +171,51585000 +172,50510000 +173,50897000 +174,52784000 +175,57548000 +176,64071000 +177,66313000 +178,66785000 +179,67401000 +180,68027000 +181,68069000 +182,66788000 +183,65745000 +184,65066000 +185,65664000 +186,69108000 +187,69571000 +188,67826000 +189,64220000 +190,61985000 +191,61411000 +192,58556000 +193,56357000 +194,54357000 +195,52955000 +196,51845000 +197,51403000 +198,50970000 +199,50405000 +200,52576000 +201,55607000 +202,58712000 +203,60814000 +204,62197000 +205,62602000 +206,61571000 +207,59878000 +208,59388000 +209,60229000 +210,63236000 +211,64299000 +212,62678000 +213,59335000 +214,57697000 +215,57941000 +216,56065000 +217,53311000 +218,51000000 +219,49590000 +220,48107000 +221,47138000 +222,45745000 +223,43458000 +224,44170000 +225,46722000 +226,49746000 +227,51746000 +228,54398000 +229,54543000 +230,52611000 +231,51258000 +232,50884000 +233,51949000 +234,56620000 +235,59123000 +236,58793000 +237,56553000 +238,55160000 +239,56106000 +240,53812000 +241,51530000 +242,49510000 +243,48602000 +244,48104000 +245,48616000 +246,50866000 +247,57089000 +248,63443000 +249,66093000 +250,66924000 +251,67796000 +252,68898000 +253,69031000 +254,68524000 +255,67511000 +256,66892000 +257,66849000 +258,69473000 +259,70517000 +260,69733000 +261,66858000 +262,64265000 +263,62967000 +264,59053000 +265,55873000 +266,53774000 +267,52538000 +268,51955000 +269,52302000 +270,54271000 +271,60837000 +272,67604000 +273,69715000 +274,69721000 +275,70035000 +276,70226000 +277,70462000 +278,69951000 +279,69081000 +280,68666000 +281,68926000 +282,72034000 +283,73130000 +284,72159000 +285,68926000 +286,66326000 +287,64397000 +288,60593000 +289,57709000 +290,55812000 +291,54351000 +292,53481000 +293,54061000 +294,56034000 +295,62174000 +296,68976000 +297,71193000 +298,71106000 +299,71663000 +300,72084000 +301,71727000 +302,71549000 +303,70770000 +304,70386000 +305,70354000 +306,73133000 +307,73992000 +308,72740000 +309,68928000 +310,65904000 +311,64238000 +312,60545000 +313,56186000 +314,54058000 +315,52495000 +316,51937000 +317,52103000 +318,54181000 +319,59925000 +320,66378000 +321,68461000 +322,68593000 +323,69142000 +324,69836000 +325,69798000 +326,69269000 +327,68230000 +328,67521000 +329,67240000 +330,70093000 +331,71013000 +332,69779000 +333,66324000 +334,63228000 +335,61605000 +336,57775000 +337,54672000 +338,52604000 +339,51447000 +340,50935000 +341,51437000 +342,53496000 +343,58974000 +344,65633000 +345,67984000 +346,68282000 +347,69138000 +348,69801000 +349,69341000 +350,68346000 +351,66811000 +352,66051000 +353,65859000 +354,68350000 +355,69039000 +356,67475000 +357,63861000 +358,61037000 +359,60138000 +360,56942000 +361,53932000 +362,51634000 +363,50164000 +364,49217000 +365,48789000 +366,47953000 +367,47460000 +368,50464000 +369,53854000 +370,56916000 +371,58678000 +372,59943000 +373,59620000 +374,58059000 +375,56887000 +376,56775000 +377,57458000 +378,61046000 +379,62847000 +380,61434000 +381,57828000 +382,56382000 +383,56615000 +384,54349000 +385,51934000 +386,49482000 +387,47536000 +388,46738000 +389,46033000 +390,44376000 +391,42324000 +392,42701000 +393,45240000 +394,48679000 +395,51170000 +396,53765000 +397,53721000 +398,51865000 +399,50363000 +400,49705000 +401,50070000 +402,54227000 +403,57036000 +404,56633000 +405,54517000 +406,53362000 +407,53978000 +408,51023000 +409,48355000 +410,46399000 +411,45423000 +412,45350000 +413,46405000 +414,49129000 +415,54989000 +416,61833000 +417,64738000 +418,65560000 +419,66077000 +420,67287000 +421,67005000 +422,66687000 +423,65658000 +424,65026000 +425,64707000 +426,67437000 +427,68671000 +428,67565000 +429,64256000 +430,61582000 +431,59748000 +432,55070000 +433,51541000 +434,49737000 +435,49043000 +436,49056000 +437,50105000 +438,52381000 +439,58516000 +440,65302000 +441,67824000 +442,67815000 +443,68318000 +444,68798000 +445,68363000 +446,67758000 +447,66724000 +448,66352000 +449,66145000 +450,68712000 +451,69869000 +452,68970000 +453,65333000 +454,62500000 +455,60407000 +456,55945000 +457,52613000 +458,50859000 +459,49667000 +460,49683000 +461,50497000 +462,52635000 +463,58712000 +464,65713000 +465,67899000 +466,67835000 +467,68057000 +468,68381000 +469,67688000 +470,67096000 +471,66311000 +472,66045000 +473,66044000 +474,68984000 +475,70624000 +476,69444000 +477,66084000 +478,62654000 +479,60741000 +480,56675000 +481,53484000 +482,51562000 +483,50604000 +484,50348000 +485,50905000 +486,53045000 +487,58821000 +488,65885000 +489,67924000 +490,67670000 +491,67702000 +492,68688000 +493,68447000 +494,68037000 +495,67392000 +496,66877000 +497,66524000 +498,69043000 +499,70225000 +500,69383000 +501,66019000 +502,62905000 +503,60872000 +504,56625000 +505,53083000 +506,51239000 +507,49811000 +508,49736000 +509,50300000 +510,52435000 +511,58295000 +512,65261000 +513,67907000 +514,68007000 +515,68118000 +516,68422000 +517,66569000 +518,65504000 +519,64819000 +520,64224000 +521,64095000 +522,67370000 +523,68458000 +524,67035000 +525,63557000 +526,60386000 +527,59338000 +528,55714000 +529,52411000 +530,50356000 +531,48885000 +532,48177000 +533,47883000 +534,47234000 +535,46839000 +536,49948000 +537,53896000 +538,56885000 +539,58579000 +540,59628000 +541,59050000 +542,57101000 +543,55631000 +544,55310000 +545,55633000 +546,59168000 +547,60940000 +548,59526000 +549,56161000 +550,54083000 +551,54214000 +552,51760000 +553,48800000 +554,46625000 +555,45130000 +556,44350000 +557,43972000 +558,42781000 +559,41098000 +560,41995000 +561,44581000 +562,47624000 +563,50054000 +564,52544000 +565,52552000 +566,50709000 +567,49261000 +568,48919000 +569,49584000 +570,53756000 +571,56810000 +572,56694000 +573,54719000 +574,53335000 +575,53879000 +576,51562000 +577,48539000 +578,46602000 +579,45768000 +580,45448000 +581,46674000 +582,49332000 +583,55246000 +584,61529000 +585,63903000 +586,64829000 +587,66040000 +588,67255000 +589,67012000 +590,66512000 +591,65361000 +592,64709000 +593,63988000 +594,66814000 +595,68565000 +596,67628000 +597,64661000 +598,62022000 +599,60366000 +600,56307000 +601,53158000 +602,51086000 +603,50219000 +604,49977000 +605,50665000 +606,53123000 +607,59314000 +608,65985000 +609,68011000 +610,68350000 +611,69028000 +612,69471000 +613,69039000 +614,68933000 +615,68302000 +616,67570000 +617,67032000 +618,70491000 +619,71912000 +620,70817000 +621,67695000 +622,64964000 +623,63789000 +624,60717000 +625,58168000 +626,56176000 +627,54844000 +628,53478000 +629,53386000 +630,55372000 +631,61232000 +632,68118000 +633,69899000 +634,70090000 +635,70683000 +636,71510000 +637,71280000 +638,71263000 +639,70859000 +640,70554000 +641,70684000 +642,74955000 +643,76824000 +644,75447000 +645,71705000 +646,68819000 +647,67364000 +648,64045000 +649,60710000 +650,58699000 +651,56940000 +652,55873000 +653,55471000 +654,56938000 +655,62257000 +656,68580000 +657,70526000 +658,70931000 +659,71889000 +660,73138000 +661,73216000 +662,72610000 +663,71553000 +664,70685000 +665,69389000 +666,71652000 +667,73150000 +668,71378000 +669,67821000 +670,64553000 +671,62877000 +672,59129000 +673,56014000 +674,53435000 +675,51882000 +676,51491000 +677,51599000 +678,53581000 +679,58662000 +680,65108000 +681,67367000 +682,68138000 +683,68525000 +684,68863000 +685,68463000 +686,67174000 +687,65891000 +688,65125000 +689,64696000 +690,68166000 +691,69264000 +692,67650000 +693,63637000 +694,61212000 +695,60484000 +696,57719000 +697,54888000 +698,53088000 +699,51870000 +700,51438000 +701,51248000 +702,50074000 +703,49012000 +704,51344000 +705,54605000 +706,58101000 +707,59309000 +708,60164000 +709,59860000 +710,57995000 +711,56599000 +712,55594000 +713,55188000 +714,58637000 +715,61344000 +716,59592000 +717,56081000 +718,53918000 +719,54777000 +720,52751000 +721,50344000 +722,48278000 +723,46782000 +724,45570000 +725,44563000 +726,43616000 +727,42080000 +728,42704000 +729,45109000 +730,48321000 +731,50594000 +732,53236000 +733,53087000 +734,51373000 +735,49680000 +736,49182000 +737,49444000 +738,53800000 +739,57907000 +740,57350000 +741,55547000 +742,54303000 +743,55544000 +744,52968000 +745,52597000 +746,51072000 +747,50746000 +748,50320000 +749,51221000 +750,52911000 +751,59149000 +752,66104000 +753,68495000 +754,69443000 +755,70404000 +756,70930000 +757,70736000 +758,70564000 +759,69824000 +760,69131000 +761,67886000 +762,70366000 +763,72522000 +764,70836000 +765,67558000 +766,64944000 +767,63211000 +768,60058000 +769,58022000 +770,56961000 +771,55739000 +772,54640000 +773,54977000 +774,56706000 +775,61476000 +776,67964000 +777,70576000 +778,71095000 +779,71994000 +780,73159000 +781,73453000 +782,74014000 +783,73753000 +784,73389000 +785,72746000 +786,74791000 +787,76352000 +788,74451000 +789,70363000 +790,66545000 +791,64177000 +792,60701000 +793,57603000 +794,55119000 +795,53634000 +796,54472000 +797,55479000 +798,56287000 +799,61220000 +800,68542000 +801,71161000 +802,71673000 +803,72746000 +804,73753000 +805,73546000 +806,73124000 +807,72067000 +808,71514000 +809,70836000 +810,72886000 +811,75373000 +812,73030000 +813,68360000 +814,64728000 +815,62446000 +816,58325000 +817,55260000 +818,54375000 +819,53992000 +820,53529000 +821,53372000 +822,54963000 +823,60155000 +824,66706000 +825,68484000 +826,68593000 +827,68920000 +828,69190000 +829,68584000 +830,67967000 +831,67000000 +832,66532000 +833,65800000 +834,68446000 +835,71561000 +836,70046000 +837,66514000 +838,63473000 +839,61509000 +840,57407000 +841,54553000 +842,53389000 +843,52859000 +844,53055000 +845,54192000 +846,55594000 +847,60414000 +848,67152000 +849,69032000 +850,68868000 +851,69704000 +852,70072000 +853,69720000 +854,68233000 +855,66714000 +856,65697000 +857,65227000 +858,68224000 +859,69978000 +860,67970000 +861,64017000 +862,60722000 +863,59478000 +864,55954000 +865,52820000 +866,50854000 +867,49296000 +868,48891000 +869,48536000 +870,48188000 +871,47138000 +872,49352000 +873,52683000 +874,56161000 +875,57968000 +876,58978000 +877,58224000 +878,56653000 +879,55375000 +880,54900000 +881,55126000 +882,58173000 +883,60882000 +884,59041000 +885,55337000 +886,53210000 +887,53660000 +888,51134000 +889,48044000 +890,46189000 +891,45315000 +892,45418000 +893,45158000 +894,44101000 +895,41514000 +896,42190000 +897,44345000 +898,47326000 +899,50023000 +900,52855000 +901,52564000 +902,50404000 +903,48975000 +904,48522000 +905,48921000 +906,52379000 +907,56767000 +908,56197000 +909,54261000 +910,53041000 +911,54168000 +912,51808000 +913,51013000 +914,49942000 +915,49358000 +916,49217000 +917,49361000 +918,51523000 +919,58382000 +920,65830000 +921,68421000 +922,69240000 +923,70165000 +924,70923000 +925,70531000 +926,69999000 +927,68767000 +928,68011000 +929,66816000 +930,68719000 +931,71688000 +932,70412000 +933,67080000 +934,63991000 +935,62501000 +936,58697000 +937,56438000 +938,55221000 +939,54872000 +940,54308000 +941,54278000 +942,55753000 +943,60698000 +944,67171000 +945,69438000 +946,70023000 +947,69687000 +948,69604000 +949,70638000 +950,70461000 +951,69782000 +952,69315000 +953,68092000 +954,69913000 +955,72289000 +956,70758000 +957,67769000 +958,65431000 +959,63499000 +960,60095000 +961,57745000 +962,56077000 +963,55277000 +964,54742000 +965,55213000 +966,56578000 +967,61282000 +968,67331000 +969,69223000 +970,69763000 +971,70768000 +972,71640000 +973,71528000 +974,71002000 +975,70296000 +976,70055000 +977,68787000 +978,70400000 +979,73127000 +980,71980000 +981,68573000 +982,66090000 +983,64570000 +984,61081000 +985,58650000 +986,57168000 +987,55768000 +988,56074000 +989,56279000 +990,57299000 +991,62240000 +992,67873000 +993,69797000 +994,70670000 +995,72022000 +996,72846000 +997,72635000 +998,72299000 +999,71287000 +1000,70308000 +1001,68450000 +1002,69857000 +1003,72782000 +1004,71716000 +1005,68257000 +1006,65453000 +1007,64336000 +1008,62287000 +1009,59367000 +1010,57259000 +1011,56638000 +1012,55856000 +1013,55800000 +1014,56582000 +1015,60928000 +1016,66445000 +1017,68520000 +1018,69622000 +1019,70323000 +1020,71287000 +1021,71242000 +1022,69929000 +1023,68256000 +1024,67251000 +1025,66375000 +1026,68005000 +1027,71501000 +1028,70041000 +1029,66080000 +1030,63170000 +1031,62205000 +1032,59239000 +1033,56873000 +1034,54773000 +1035,52934000 +1036,52192000 +1037,51482000 +1038,50394000 +1039,49048000 +1040,49902000 +1041,52800000 +1042,56311000 +1043,58596000 +1044,59836000 +1045,59647000 +1046,58013000 +1047,56327000 +1048,55743000 +1049,55156000 +1050,57756000 +1051,61760000 +1052,60206000 +1053,56807000 +1054,55151000 +1055,55593000 +1056,53967000 +1057,51210000 +1058,49545000 +1059,48713000 +1060,48385000 +1061,47669000 +1062,46413000 +1063,43651000 +1064,43587000 +1065,45893000 +1066,48896000 +1067,51722000 +1068,54303000 +1069,53693000 +1070,51388000 +1071,49771000 +1072,49161000 +1073,49028000 +1074,51602000 +1075,57035000 +1076,56980000 +1077,55186000 +1078,54441000 +1079,55945000 +1080,54080000 +1081,52393000 +1082,51708000 +1083,51019000 +1084,50490000 +1085,50480000 +1086,51614000 +1087,55056000 +1088,60779000 +1089,63881000 +1090,65862000 +1091,66863000 +1092,67829000 +1093,67422000 +1094,66510000 +1095,65356000 +1096,64644000 +1097,63549000 +1098,64874000 +1099,68803000 +1100,68090000 +1101,65259000 +1102,62989000 +1103,61881000 +1104,58503000 +1105,55745000 +1106,54640000 +1107,54205000 +1108,53525000 +1109,54032000 +1110,54714000 +1111,59099000 +1112,64461000 +1113,66352000 +1114,67365000 +1115,68015000 +1116,68606000 +1117,67630000 +1118,66068000 +1119,64386000 +1120,63653000 +1121,63146000 +1122,65173000 +1123,70090000 +1124,69866000 +1125,66785000 +1126,64237000 +1127,63060000 +1128,59554000 +1129,57744000 +1130,57031000 +1131,55694000 +1132,54943000 +1133,55328000 +1134,56199000 +1135,60881000 +1136,66405000 +1137,67900000 +1138,68365000 +1139,68457000 +1140,69171000 +1141,68829000 +1142,68164000 +1143,67642000 +1144,67252000 +1145,66527000 +1146,68125000 +1147,72161000 +1148,71057000 +1149,67490000 +1150,64765000 +1151,62704000 +1152,59056000 +1153,56280000 +1154,54413000 +1155,53520000 +1156,53064000 +1157,53908000 +1158,54933000 +1159,60052000 +1160,66031000 +1161,67886000 +1162,68661000 +1163,69859000 +1164,70431000 +1165,70100000 +1166,69111000 +1167,67948000 +1168,66836000 +1169,65488000 +1170,67002000 +1171,71069000 +1172,70482000 +1173,66990000 +1174,64197000 +1175,62195000 +1176,58488000 +1177,55881000 +1178,54552000 +1179,53694000 +1180,53387000 +1181,53859000 +1182,54533000 +1183,59377000 +1184,65717000 +1185,68247000 +1186,68837000 +1187,69457000 +1188,69813000 +1189,68997000 +1190,67646000 +1191,66357000 +1192,65542000 +1193,64774000 +1194,66551000 +1195,69826000 +1196,68734000 +1197,64408000 +1198,61498000 +1199,60346000 +1200,56887000 +1201,53977000 +1202,52666000 +1203,51456000 +1204,50936000 +1205,51420000 +1206,50652000 +1207,49453000 +1208,50976000 +1209,53879000 +1210,56008000 +1211,57123000 +1212,57841000 +1213,58516000 +1214,57025000 +1215,55507000 +1216,54940000 +1217,54650000 +1218,56772000 +1219,61701000 +1220,61150000 +1221,57487000 +1222,55587000 +1223,55394000 +1224,52825000 +1225,50455000 +1226,48049000 +1227,47027000 +1228,46589000 +1229,46017000 +1230,45596000 +1231,43659000 +1232,44402000 +1233,45704000 +1234,47387000 +1235,49526000 +1236,51781000 +1237,51262000 +1238,49223000 +1239,47619000 +1240,47066000 +1241,47495000 +1242,50540000 +1243,56868000 +1244,57048000 +1245,55168000 +1246,54142000 +1247,54700000 +1248,52043000 +1249,50166000 +1250,49136000 +1251,49068000 +1252,49064000 +1253,49926000 +1254,51304000 +1255,58421000 +1256,64909000 +1257,67290000 +1258,67780000 +1259,68193000 +1260,69134000 +1261,68711000 +1262,67905000 +1263,66726000 +1264,65896000 +1265,64823000 +1266,66633000 +1267,71638000 +1268,70988000 +1269,67337000 +1270,64285000 +1271,62275000 +1272,58593000 +1273,55511000 +1274,54222000 +1275,53568000 +1276,53377000 +1277,54042000 +1278,55242000 +1279,60977000 +1280,66487000 +1281,68384000 +1282,68481000 +1283,68967000 +1284,69803000 +1285,69372000 +1286,69005000 +1287,67958000 +1288,67379000 +1289,66002000 +1290,66934000 +1291,70674000 +1292,70180000 +1293,66390000 +1294,63143000 +1295,60915000 +1296,56955000 +1297,53709000 +1298,52138000 +1299,51607000 +1300,51271000 +1301,51885000 +1302,53805000 +1303,59756000 +1304,65754000 +1305,67637000 +1306,67261000 +1307,67423000 +1308,67871000 +1309,67251000 +1310,66480000 +1311,65237000 +1312,64780000 +1313,63893000 +1314,65498000 +1315,70029000 +1316,69911000 +1317,66559000 +1318,63237000 +1319,60612000 +1320,56367000 +1321,52399000 +1322,51356000 +1323,51278000 +1324,51798000 +1325,52682000 +1326,54127000 +1327,59849000 +1328,65334000 +1329,67049000 +1330,66452000 +1331,66770000 +1332,66504000 +1333,66147000 +1334,65935000 +1335,64866000 +1336,64674000 +1337,64005000 +1338,65931000 +1339,69924000 +1340,69396000 +1341,66143000 +1342,63039000 +1343,60763000 +1344,56216000 +1345,52794000 +1346,50705000 +1347,50312000 +1348,50449000 +1349,51061000 +1350,52464000 +1351,57612000 +1352,63362000 +1353,65954000 +1354,66314000 +1355,66346000 +1356,66613000 +1357,65900000 +1358,64647000 +1359,63535000 +1360,63173000 +1361,62657000 +1362,63882000 +1363,67516000 +1364,66965000 +1365,63857000 +1366,61046000 +1367,59404000 +1368,55949000 +1369,53560000 +1370,51752000 +1371,51948000 +1372,52162000 +1373,52050000 +1374,50783000 +1375,50092000 +1376,51033000 +1377,53451000 +1378,55278000 +1379,55816000 +1380,55931000 +1381,55329000 +1382,53938000 +1383,51690000 +1384,51461000 +1385,51641000 +1386,53446000 +1387,58587000 +1388,58826000 +1389,55105000 +1390,52420000 +1391,51899000 +1392,49167000 +1393,45989000 +1394,43289000 +1395,42171000 +1396,42624000 +1397,43653000 +1398,43708000 +1399,42688000 +1400,42729000 +1401,45049000 +1402,47781000 +1403,50317000 +1404,52451000 +1405,52000000 +1406,50482000 +1407,49565000 +1408,49650000 +1409,50695000 +1410,52976000 +1411,58022000 +1412,59400000 +1413,57212000 +1414,56414000 +1415,57094000 +1416,54433000 +1417,52912000 +1418,51810000 +1419,51121000 +1420,51459000 +1421,52520000 +1422,54905000 +1423,61487000 +1424,66950000 +1425,68283000 +1426,68087000 +1427,68085000 +1428,68637000 +1429,68108000 +1430,67726000 +1431,66984000 +1432,66640000 +1433,66081000 +1434,67591000 +1435,71684000 +1436,72768000 +1437,69090000 +1438,66036000 +1439,64071000 +1440,59900000 +1441,57370000 +1442,56512000 +1443,56072000 +1444,55847000 +1445,55913000 +1446,57343000 +1447,63699000 +1448,69187000 +1449,71218000 +1450,70895000 +1451,70478000 +1452,71031000 +1453,70917000 +1454,70407000 +1455,69434000 +1456,68735000 +1457,67642000 +1458,67942000 +1459,71929000 +1460,72738000 +1461,69018000 +1462,65839000 +1463,63475000 +1464,59300000 +1465,57074000 +1466,55643000 +1467,55438000 +1468,55444000 +1469,56316000 +1470,57313000 +1471,62899000 +1472,67462000 +1473,68897000 +1474,68236000 +1475,68015000 +1476,67856000 +1477,66621000 +1478,65998000 +1479,65466000 +1480,65487000 +1481,65441000 +1482,67591000 +1483,72500000 +1484,73112000 +1485,69526000 +1486,66222000 +1487,63902000 +1488,59863000 +1489,57240000 +1490,56324000 +1491,55859000 +1492,55876000 +1493,56357000 +1494,58094000 +1495,63594000 +1496,68082000 +1497,69417000 +1498,69031000 +1499,68793000 +1500,68997000 +1501,67918000 +1502,67348000 +1503,66454000 +1504,66159000 +1505,65926000 +1506,66728000 +1507,70697000 +1508,71903000 +1509,68440000 +1510,65476000 +1511,63619000 +1512,60139000 +1513,56953000 +1514,55874000 +1515,54598000 +1516,54318000 +1517,54881000 +1518,56235000 +1519,61691000 +1520,65938000 +1521,67179000 +1522,66697000 +1523,66833000 +1524,67647000 +1525,66817000 +1526,65718000 +1527,64639000 +1528,64060000 +1529,64337000 +1530,66635000 +1531,70874000 +1532,71436000 +1533,66824000 +1534,63126000 +1535,61227000 +1536,57475000 +1537,54471000 +1538,52326000 +1539,51156000 +1540,51890000 +1541,52064000 +1542,51491000 +1543,49485000 +1544,50300000 +1545,53535000 +1546,56505000 +1547,57741000 +1548,58440000 +1549,57273000 +1550,55173000 +1551,53767000 +1552,53509000 +1553,53720000 +1554,55223000 +1555,59999000 +1556,61222000 +1557,57988000 +1558,55686000 +1559,56193000 +1560,54300000 +1561,51902000 +1562,50339000 +1563,49436000 +1564,48696000 +1565,48474000 +1566,47590000 +1567,45127000 +1568,45105000 +1569,47237000 +1570,48978000 +1571,50245000 +1572,51514000 +1573,50675000 +1574,48236000 +1575,46838000 +1576,46575000 +1577,47349000 +1578,50395000 +1579,56151000 +1580,59008000 +1581,57102000 +1582,55852000 +1583,57136000 +1584,54999000 +1585,53351000 +1586,52872000 +1587,52879000 +1588,52531000 +1589,53415000 +1590,55938000 +1591,61897000 +1592,66391000 +1593,68375000 +1594,68242000 +1595,68383000 +1596,69079000 +1597,68551000 +1598,68070000 +1599,67052000 +1600,66565000 +1601,66059000 +1602,67273000 +1603,70515000 +1604,72634000 +1605,69229000 +1606,65890000 +1607,63968000 +1608,60771000 +1609,58597000 +1610,57515000 +1611,56558000 +1612,56408000 +1613,57207000 +1614,58503000 +1615,63459000 +1616,67907000 +1617,68775000 +1618,68093000 +1619,68050000 +1620,68331000 +1621,68009000 +1622,67722000 +1623,66971000 +1624,66781000 +1625,66887000 +1626,68204000 +1627,71786000 +1628,74102000 +1629,70798000 +1630,67782000 +1631,66206000 +1632,63040000 +1633,57710000 +1634,56418000 +1635,55353000 +1636,55026000 +1637,55510000 +1638,57057000 +1639,62214000 +1640,66594000 +1641,68176000 +1642,69119000 +1643,70563000 +1644,70424000 +1645,69358000 +1646,68539000 +1647,66352000 +1648,66695000 +1649,66301000 +1650,66963000 +1651,70282000 +1652,72151000 +1653,68426000 +1654,64985000 +1655,63589000 +1656,60294000 +1657,58030000 +1658,56908000 +1659,55856000 +1660,55654000 +1661,56435000 +1662,57969000 +1663,63199000 +1664,67851000 +1665,70182000 +1666,70728000 +1667,71135000 +1668,71739000 +1669,70854000 +1670,70764000 +1671,69491000 +1672,68803000 +1673,67573000 +1674,68361000 +1675,71400000 +1676,73481000 +1677,70230000 +1678,66976000 +1679,64912000 +1680,61294000 +1681,59017000 +1682,57105000 +1683,55706000 +1684,55362000 +1685,55573000 +1686,57272000 +1687,61956000 +1688,66158000 +1689,68882000 +1690,69682000 +1691,70065000 +1692,70078000 +1693,69048000 +1694,67302000 +1695,65325000 +1696,63917000 +1697,63190000 +1698,63707000 +1699,66092000 +1700,66613000 +1701,62870000 +1702,60030000 +1703,58907000 +1704,55806000 +1705,52274000 +1706,50248000 +1707,48736000 +1708,48443000 +1709,48600000 +1710,48128000 +1711,47328000 +1712,48334000 +1713,51765000 +1714,54483000 +1715,56093000 +1716,56749000 +1717,56401000 +1718,54977000 +1719,53772000 +1720,53165000 +1721,53333000 +1722,54720000 +1723,57357000 +1724,57760000 +1725,54277000 +1726,52559000 +1727,52524000 +1728,49997000 +1729,48358000 +1730,46098000 +1731,44404000 +1732,43916000 +1733,43664000 +1734,43170000 +1735,41639000 +1736,41726000 +1737,44509000 +1738,47193000 +1739,49072000 +1740,51435000 +1741,51791000 +1742,49858000 +1743,48529000 +1744,48013000 +1745,47871000 +1746,49564000 +1747,53246000 +1748,55071000 +1749,52684000 +1750,51352000 +1751,51682000 +1752,49516000 +1753,48158000 +1754,46823000 +1755,47052000 +1756,47379000 +1757,48811000 +1758,51301000 +1759,57580000 +1760,62715000 +1761,65513000 +1762,66067000 +1763,66644000 +1764,67678000 +1765,67610000 +1766,67845000 +1767,67583000 +1768,67219000 +1769,66345000 +1770,66707000 +1771,69554000 +1772,70477000 +1773,66350000 +1774,62622000 +1775,60125000 +1776,56056000 +1777,53734000 +1778,52298000 +1779,51925000 +1780,52173000 +1781,53163000 +1782,54564000 +1783,59701000 +1784,64486000 +1785,67039000 +1786,66958000 +1787,67208000 +1788,67945000 +1789,67452000 +1790,66987000 +1791,66202000 +1792,65978000 +1793,65182000 +1794,65750000 +1795,68266000 +1796,70147000 +1797,66513000 +1798,63513000 +1799,61350000 +1800,57288000 +1801,54631000 +1802,53396000 +1803,52616000 +1804,52683000 +1805,53447000 +1806,54921000 +1807,59949000 +1808,64564000 +1809,66650000 +1810,66213000 +1811,65889000 +1812,66097000 +1813,64466000 +1814,63535000 +1815,62647000 +1816,62657000 +1817,62228000 +1818,63541000 +1819,66984000 +1820,69433000 +1821,65762000 +1822,61722000 +1823,58532000 +1824,53954000 +1825,50881000 +1826,49807000 +1827,49511000 +1828,50016000 +1829,51092000 +1830,53223000 +1831,58090000 +1832,62443000 +1833,64342000 +1834,63681000 +1835,63441000 +1836,63796000 +1837,62989000 +1838,62437000 +1839,61667000 +1840,61557000 +1841,61514000 +1842,62964000 +1843,66116000 +1844,68625000 +1845,64706000 +1846,60783000 +1847,57309000 +1848,52798000 +1849,49161000 +1850,47306000 +1851,47109000 +1852,47335000 +1853,48345000 +1854,50563000 +1855,55356000 +1856,60425000 +1857,63587000 +1858,64114000 +1859,64183000 +1860,63875000 +1861,62506000 +1862,60640000 +1863,58788000 +1864,58455000 +1865,58542000 +1866,60015000 +1867,62185000 +1868,64924000 +1869,60988000 +1870,56855000 +1871,54500000 +1872,50160000 +1873,46164000 +1874,44570000 +1875,43785000 +1876,44665000 +1877,45271000 +1878,45417000 +1879,45117000 +1880,46984000 +1881,50143000 +1882,52385000 +1883,53329000 +1884,53565000 +1885,52422000 +1886,50721000 +1887,49232000 +1888,49348000 +1889,49385000 +1890,51196000 +1891,53687000 +1892,55031000 +1893,51868000 +1894,49414000 +1895,48511000 +1896,45424000 +1897,42547000 +1898,39952000 +1899,38207000 +1900,38532000 +1901,40011000 +1902,40034000 +1903,38845000 +1904,39228000 +1905,42020000 +1906,44230000 +1907,46347000 +1908,48483000 +1909,48346000 +1910,46269000 +1911,44407000 +1912,43463000 +1913,43539000 +1914,45946000 +1915,50084000 +1916,53204000 +1917,51025000 +1918,49334000 +1919,49153000 +1920,45590000 +1921,43193000 +1922,42481000 +1923,42913000 +1924,43528000 +1925,45990000 +1926,49391000 +1927,55444000 +1928,61170000 +1929,64141000 +1930,64273000 +1931,64765000 +1932,65844000 +1933,65031000 +1934,64505000 +1935,63363000 +1936,59015000 +1937,61640000 +1938,62203000 +1939,64967000 +1940,68566000 +1941,65146000 +1942,61047000 +1943,57550000 +1944,52614000 +1945,49835000 +1946,48299000 +1947,47584000 +1948,47824000 +1949,48971000 +1950,51066000 +1951,56136000 +1952,61028000 +1953,63044000 +1954,62040000 +1955,60901000 +1956,60863000 +1957,60271000 +1958,59810000 +1959,59274000 +1960,58787000 +1961,58327000 +1962,60000000 +1963,63361000 +1964,67832000 +1965,64974000 +1966,61320000 +1967,57929000 +1968,53228000 +1969,49985000 +1970,48085000 +1971,47827000 +1972,48363000 +1973,49591000 +1974,51498000 +1975,55922000 +1976,59995000 +1977,61988000 +1978,62016000 +1979,61637000 +1980,61983000 +1981,60990000 +1982,60414000 +1983,59394000 +1984,58640000 +1985,58240000 +1986,59265000 +1987,61818000 +1988,65433000 +1989,62182000 +1990,58086000 +1991,54349000 +1992,49839000 +1993,46634000 +1994,46269000 +1995,45577000 +1996,46124000 +1997,47581000 +1998,49847000 +1999,54830000 +2000,59449000 +2001,61834000 +2002,61857000 +2003,62279000 +2004,63085000 +2005,62094000 +2006,61394000 +2007,61113000 +2008,60528000 +2009,59927000 +2010,60980000 +2011,63249000 +2012,66372000 +2013,62805000 +2014,58360000 +2015,54508000 +2016,49582000 +2017,46963000 +2018,45576000 +2019,44837000 +2020,45475000 +2021,47018000 +2022,49445000 +2023,54138000 +2024,59271000 +2025,62088000 +2026,62272000 +2027,62651000 +2028,63309000 +2029,63345000 +2030,62190000 +2031,61014000 +2032,60811000 +2033,60058000 +2034,60304000 +2035,61503000 +2036,62473000 +2037,58688000 +2038,54829000 +2039,52014000 +2040,47998000 +2041,44781000 +2042,42719000 +2043,42420000 +2044,43182000 +2045,44317000 +2046,44212000 +2047,43930000 +2048,45196000 +2049,47782000 +2050,49472000 +2051,50168000 +2052,51045000 +2053,50277000 +2054,49232000 +2055,48033000 +2056,47398000 +2057,47461000 +2058,49406000 +2059,52144000 +2060,54783000 +2061,51681000 +2062,48754000 +2063,47341000 +2064,43811000 +2065,40690000 +2066,38647000 +2067,38647000 +2068,38725000 +2069,39609000 +2070,39654000 +2071,38867000 +2072,38492000 +2073,40145000 +2074,42430000 +2075,44375000 +2076,46739000 +2077,47128000 +2078,45279000 +2079,43634000 +2080,42949000 +2081,42864000 +2082,43931000 +2083,46538000 +2084,48521000 +2085,50612000 +2086,49298000 +2087,48667000 +2088,48667000 +2089,42311000 +2090,41091000 +2091,41286000 +2092,41866000 +2093,43484000 +2094,45759000 +2095,52172000 +2096,58258000 +2097,62080000 +2098,63528000 +2099,64638000 +2100,65230000 +2101,64209000 +2102,63158000 +2103,61394000 +2104,59926000 +2105,58312000 +2106,58320000 +2107,59328000 +2108,60821000 +2109,63091000 +2110,60427000 +2111,56972000 +2112,52028000 +2113,48521000 +2114,46665000 +2115,45824000 +2116,46202000 +2117,47682000 +2118,49703000 +2119,54348000 +2120,59144000 +2121,61342000 +2122,61419000 +2123,61384000 +2124,61437000 +2125,60195000 +2126,59387000 +2127,58601000 +2128,58131000 +2129,57184000 +2130,57423000 +2131,58357000 +2132,59042000 +2133,59881000 +2134,56923000 +2135,53924000 +2136,49783000 +2137,46675000 +2138,45170000 +2139,44698000 +2140,45228000 +2141,46614000 +2142,48339000 +2143,53287000 +2144,58324000 +2145,61199000 +2146,61457000 +2147,61301000 +2148,61993000 +2149,61300000 +2150,60688000 +2151,60105000 +2152,58763000 +2153,58187000 +2154,58353000 +2155,59958000 +2156,61046000 +2157,61947000 +2158,58556000 +2159,55184000 +2160,50758000 +2161,50374000 +2162,49041000 +2163,48264000 +2164,48737000 +2165,50209000 +2166,52103000 +2167,57096000 +2168,61526000 +2169,63746000 +2170,65303000 +2171,66967000 +2172,67615000 +2173,66428000 +2174,65242000 +2175,64645000 +2176,63376000 +2177,61857000 +2178,60279000 +2179,60382000 +2180,60250000 +2181,60561000 +2182,57445000 +2183,54932000 +2184,50772000 +2185,47281000 +2186,45830000 +2187,45527000 +2188,45422000 +2189,45114000 +2190,43984000 +2191,41200000 +2192,40523000 +2193,42139000 +2194,43616000 +2195,44600000 +2196,46340000 +2197,45982000 +2198,44108000 +2199,41695000 +2200,41175000 +2201,41117000 +2202,43015000 +2203,45564000 +2204,47377000 +2205,49963000 +2206,48782000 +2207,48016000 +2208,44625000 +2209,42124000 +2210,40757000 +2211,40431000 +2212,40242000 +2213,41175000 +2214,41833000 +2215,41663000 +2216,42931000 +2217,45888000 +2218,47781000 +2219,48307000 +2220,48880000 +2221,48326000 +2222,47174000 +2223,46723000 +2224,46672000 +2225,46915000 +2226,47849000 +2227,49286000 +2228,50084000 +2229,50849000 +2230,49500000 +2231,48492000 +2232,44808000 +2233,41160000 +2234,38752000 +2235,38079000 +2236,38285000 +2237,38651000 +2238,38575000 +2239,38021000 +2240,38093000 +2241,40906000 +2242,42908000 +2243,44426000 +2244,46126000 +2245,44634000 +2246,42304000 +2247,41227000 +2248,40486000 +2249,40253000 +2250,41696000 +2251,43938000 +2252,45106000 +2253,46466000 +2254,46228000 +2255,45890000 +2256,42619000 +2257,39942000 +2258,38930000 +2259,38497000 +2260,38191000 +2261,38950000 +2262,38926000 +2263,38278000 +2264,38846000 +2265,41043000 +2266,43623000 +2267,45162000 +2268,46292000 +2269,45657000 +2270,44042000 +2271,42317000 +2272,41262000 +2273,40799000 +2274,42401000 +2275,44576000 +2276,46044000 +2277,48549000 +2278,48422000 +2279,47994000 +2280,44580000 +2281,41787000 +2282,41101000 +2283,41585000 +2284,42118000 +2285,43840000 +2286,46694000 +2287,53074000 +2288,58329000 +2289,61066000 +2290,61027000 +2291,60962000 +2292,61249000 +2293,59886000 +2294,58749000 +2295,57422000 +2296,56460000 +2297,55320000 +2298,56051000 +2299,57652000 +2300,58944000 +2301,60771000 +2302,59145000 +2303,56144000 +2304,51733000 +2305,48581000 +2306,47254000 +2307,46153000 +2308,46252000 +2309,47393000 +2310,49220000 +2311,55448000 +2312,59975000 +2313,61893000 +2314,61559000 +2315,61104000 +2316,61327000 +2317,60364000 +2318,59113000 +2319,57844000 +2320,57583000 +2321,57281000 +2322,57614000 +2323,58702000 +2324,60157000 +2325,62315000 +2326,60031000 +2327,55917000 +2328,51061000 +2329,47009000 +2330,46344000 +2331,45898000 +2332,46174000 +2333,47478000 +2334,49996000 +2335,55686000 +2336,60084000 +2337,62344000 +2338,62508000 +2339,63403000 +2340,63772000 +2341,62734000 +2342,61844000 +2343,60654000 +2344,60181000 +2345,59350000 +2346,59375000 +2347,60540000 +2348,61558000 +2349,62436000 +2350,60270000 +2351,56923000 +2352,52143000 +2353,48805000 +2354,47004000 +2355,47168000 +2356,47480000 +2357,48755000 +2358,50650000 +2359,55712000 +2360,60940000 +2361,63342000 +2362,63699000 +2363,64238000 +2364,64615000 +2365,63203000 +2366,61453000 +2367,60080000 +2368,59192000 +2369,58531000 +2370,58804000 +2371,59345000 +2372,59684000 +2373,59660000 +2374,58043000 +2375,55156000 +2376,50862000 +2377,47032000 +2378,45363000 +2379,44284000 +2380,44980000 +2381,45727000 +2382,45524000 +2383,44581000 +2384,46055000 +2385,49562000 +2386,52002000 +2387,52625000 +2388,53417000 +2389,52016000 +2390,50381000 +2391,49354000 +2392,49101000 +2393,48724000 +2394,50101000 +2395,51324000 +2396,51810000 +2397,51605000 +2398,50346000 +2399,49216000 +2400,45617000 +2401,42750000 +2402,41120000 +2403,40738000 +2404,41402000 +2405,42194000 +2406,42018000 +2407,40856000 +2408,40764000 +2409,42690000 +2410,44880000 +2411,47281000 +2412,49669000 +2413,48811000 +2414,46695000 +2415,45036000 +2416,44210000 +2417,43890000 +2418,45559000 +2419,47733000 +2420,49070000 +2421,50879000 +2422,51158000 +2423,50979000 +2424,47566000 +2425,45253000 +2426,44325000 +2427,43929000 +2428,44859000 +2429,46613000 +2430,49443000 +2431,56843000 +2432,62507000 +2433,65036000 +2434,65552000 +2435,66529000 +2436,67202000 +2437,65970000 +2438,64903000 +2439,63799000 +2440,63396000 +2441,62159000 +2442,61886000 +2443,61790000 +2444,61940000 +2445,62690000 +2446,61235000 +2447,57972000 +2448,53014000 +2449,49493000 +2450,47042000 +2451,46449000 +2452,47193000 +2453,48732000 +2454,51502000 +2455,57899000 +2456,63030000 +2457,64844000 +2458,64814000 +2459,65016000 +2460,65593000 +2461,65294000 +2462,64687000 +2463,63352000 +2464,62794000 +2465,61347000 +2466,61363000 +2467,61814000 +2468,62259000 +2469,62963000 +2470,61147000 +2471,57652000 +2472,52109000 +2473,48447000 +2474,47075000 +2475,46387000 +2476,47126000 +2477,48264000 +2478,50744000 +2479,57943000 +2480,62849000 +2481,64672000 +2482,64675000 +2483,65144000 +2484,66125000 +2485,65798000 +2486,65287000 +2487,64161000 +2488,63283000 +2489,61751000 +2490,61854000 +2491,62268000 +2492,62866000 +2493,63112000 +2494,61117000 +2495,57615000 +2496,52789000 +2497,48498000 +2498,46700000 +2499,46425000 +2500,47015000 +2501,47908000 +2502,50427000 +2503,57695000 +2504,62475000 +2505,64128000 +2506,64058000 +2507,64657000 +2508,65606000 +2509,65092000 +2510,64383000 +2511,63170000 +2512,62120000 +2513,60816000 +2514,60966000 +2515,61779000 +2516,61980000 +2517,62373000 +2518,60711000 +2519,56936000 +2520,51316000 +2521,47514000 +2522,46171000 +2523,46222000 +2524,46806000 +2525,48499000 +2526,51303000 +2527,57340000 +2528,62099000 +2529,64432000 +2530,64813000 +2531,65184000 +2532,64927000 +2533,63334000 +2534,61536000 +2535,60393000 +2536,58969000 +2537,58034000 +2538,58702000 +2539,59294000 +2540,59294000 +2541,59289000 +2542,58339000 +2543,56299000 +2544,51702000 +2545,47554000 +2546,45400000 +2547,44992000 +2548,46004000 +2549,46440000 +2550,46077000 +2551,44530000 +2552,46156000 +2553,49257000 +2554,50607000 +2555,50651000 +2556,50317000 +2557,49045000 +2558,47310000 +2559,46256000 +2560,45664000 +2561,45371000 +2562,46799000 +2563,49057000 +2564,49778000 +2565,50105000 +2566,49928000 +2567,48880000 +2568,45356000 +2569,42164000 +2570,39821000 +2571,38547000 +2572,39327000 +2573,40459000 +2574,40765000 +2575,39460000 +2576,39812000 +2577,41274000 +2578,42666000 +2579,44020000 +2580,45617000 +2581,43951000 +2582,41280000 +2583,39475000 +2584,38948000 +2585,39145000 +2586,41621000 +2587,44972000 +2588,46930000 +2589,48723000 +2590,49675000 +2591,48855000 +2592,44986000 +2593,41937000 +2594,40251000 +2595,40761000 +2596,41903000 +2597,43783000 +2598,47351000 +2599,54913000 +2600,59914000 +2601,61263000 +2602,60771000 +2603,60884000 +2604,61149000 +2605,60441000 +2606,59837000 +2607,58756000 +2608,57852000 +2609,56714000 +2610,57102000 +2611,58618000 +2612,59351000 +2613,59615000 +2614,58797000 +2615,54797000 +2616,49183000 +2617,46202000 +2618,44828000 +2619,44587000 +2620,45652000 +2621,46849000 +2622,49637000 +2623,55744000 +2624,60576000 +2625,62073000 +2626,61171000 +2627,61972000 +2628,62935000 +2629,62425000 +2630,62055000 +2631,60952000 +2632,60627000 +2633,59346000 +2634,59545000 +2635,60922000 +2636,61240000 +2637,60506000 +2638,59347000 +2639,55500000 +2640,50939000 +2641,47174000 +2642,46016000 +2643,46116000 +2644,47028000 +2645,48072000 +2646,50147000 +2647,56733000 +2648,61648000 +2649,63978000 +2650,63932000 +2651,64010000 +2652,64936000 +2653,64487000 +2654,64160000 +2655,63068000 +2656,62482000 +2657,61763000 +2658,61996000 +2659,62492000 +2660,61647000 +2661,60820000 +2662,60229000 +2663,56820000 +2664,51490000 +2665,48250000 +2666,46245000 +2667,46179000 +2668,46876000 +2669,48291000 +2670,50693000 +2671,56331000 +2672,60568000 +2673,62124000 +2674,61831000 +2675,62040000 +2676,62672000 +2677,61479000 +2678,60340000 +2679,59372000 +2680,58623000 +2681,57313000 +2682,57865000 +2683,59302000 +2684,60099000 +2685,59489000 +2686,59023000 +2687,55582000 +2688,50583000 +2689,46958000 +2690,45099000 +2691,44800000 +2692,45347000 +2693,47002000 +2694,50270000 +2695,55492000 +2696,59871000 +2697,61138000 +2698,60321000 +2699,59694000 +2700,59936000 +2701,58405000 +2702,56631000 +2703,55145000 +2704,54273000 +2705,53933000 +2706,54963000 +2707,56138000 +2708,56740000 +2709,56494000 +2710,56485000 +2711,53558000 +2712,48895000 +2713,44752000 +2714,43097000 +2715,42483000 +2716,42380000 +2717,42759000 +2718,43034000 +2719,43192000 +2720,45157000 +2721,47958000 +2722,49406000 +2723,49530000 +2724,49253000 +2725,47619000 +2726,45225000 +2727,43322000 +2728,42979000 +2729,42944000 +2730,44690000 +2731,47011000 +2732,48014000 +2733,48224000 +2734,48935000 +2735,47428000 +2736,43589000 +2737,40906000 +2738,39020000 +2739,38059000 +2740,38566000 +2741,38911000 +2742,39254000 +2743,38246000 +2744,38556000 +2745,40079000 +2746,42144000 +2747,42447000 +2748,43728000 +2749,42631000 +2750,40113000 +2751,38451000 +2752,38926000 +2753,39565000 +2754,41886000 +2755,44736000 +2756,46235000 +2757,47676000 +2758,49197000 +2759,48235000 +2760,44577000 +2761,42308000 +2762,40567000 +2763,40580000 +2764,41102000 +2765,42235000 +2766,45682000 +2767,52799000 +2768,59174000 +2769,62229000 +2770,63364000 +2771,64464000 +2772,65421000 +2773,64235000 +2774,63442000 +2775,62514000 +2776,61360000 +2777,60121000 +2778,60333000 +2779,60189000 +2780,60636000 +2781,59596000 +2782,58993000 +2783,55154000 +2784,50208000 +2785,47397000 +2786,46098000 +2787,45408000 +2788,45726000 +2789,47097000 +2790,50188000 +2791,55541000 +2792,60359000 +2793,62472000 +2794,61847000 +2795,61700000 +2796,62230000 +2797,61962000 +2798,61738000 +2799,60713000 +2800,60059000 +2801,58118000 +2802,58126000 +2803,58764000 +2804,59321000 +2805,59065000 +2806,58688000 +2807,54583000 +2808,49176000 +2809,46485000 +2810,45091000 +2811,44733000 +2812,44802000 +2813,46477000 +2814,50114000 +2815,55357000 +2816,60113000 +2817,61663000 +2818,60854000 +2819,60992000 +2820,61433000 +2821,60476000 +2822,59801000 +2823,58656000 +2824,57861000 +2825,57142000 +2826,57623000 +2827,58722000 +2828,59407000 +2829,58957000 +2830,57796000 +2831,54090000 +2832,49018000 +2833,45790000 +2834,44411000 +2835,43485000 +2836,43728000 +2837,44880000 +2838,48178000 +2839,54217000 +2840,59169000 +2841,60636000 +2842,60197000 +2843,60375000 +2844,61050000 +2845,60278000 +2846,59632000 +2847,58865000 +2848,58541000 +2849,58039000 +2850,58643000 +2851,59652000 +2852,59856000 +2853,59449000 +2854,59025000 +2855,54903000 +2856,49410000 +2857,45802000 +2858,44952000 +2859,44211000 +2860,44298000 +2861,45524000 +2862,48904000 +2863,55403000 +2864,60211000 +2865,62511000 +2866,63987000 +2867,65415000 +2868,66622000 +2869,64291000 +2870,62362000 +2871,60665000 +2872,59698000 +2873,58901000 +2874,59229000 +2875,58593000 +2876,57407000 +2877,55458000 +2878,54011000 +2879,50764000 +2880,46321000 +2881,42470000 +2882,40317000 +2883,39395000 +2884,38797000 +2885,38976000 +2886,38552000 +2887,36960000 +2888,38441000 +2889,40748000 +2890,42814000 +2891,44394000 +2892,46621000 +2893,46073000 +2894,44324000 +2895,43278000 +2896,42405000 +2897,42745000 +2898,43472000 +2899,44641000 +2900,44688000 +2901,44064000 +2902,44939000 +2903,43662000 +2904,40225000 +2905,37375000 +2906,35544000 +2907,34728000 +2908,35160000 +2909,35708000 +2910,36246000 +2911,36120000 +2912,38375000 +2913,41050000 +2914,43425000 +2915,45184000 +2916,47997000 +2917,47147000 +2918,45050000 +2919,43664000 +2920,43382000 +2921,43906000 +2922,45567000 +2923,47244000 +2924,47710000 +2925,47786000 +2926,48247000 +2927,47117000 +2928,43332000 +2929,40874000 +2930,40515000 +2931,39847000 +2932,40621000 +2933,42487000 +2934,45603000 +2935,52807000 +2936,59361000 +2937,62898000 +2938,63559000 +2939,64805000 +2940,66433000 +2941,66133000 +2942,65547000 +2943,64350000 +2944,63562000 +2945,61806000 +2946,61818000 +2947,61516000 +2948,61251000 +2949,59826000 +2950,58416000 +2951,54573000 +2952,49210000 +2953,46164000 +2954,45167000 +2955,44440000 +2956,44979000 +2957,46926000 +2958,49097000 +2959,55317000 +2960,61197000 +2961,64213000 +2962,64407000 +2963,65943000 +2964,67007000 +2965,66014000 +2966,64467000 +2967,63599000 +2968,62707000 +2969,61396000 +2970,62201000 +2971,61150000 +2972,60145000 +2973,58605000 +2974,58108000 +2975,54719000 +2976,50066000 +2977,47231000 +2978,46373000 +2979,45521000 +2980,46061000 +2981,47616000 +2982,49263000 +2983,55032000 +2984,60609000 +2985,63719000 +2986,63613000 +2987,64267000 +2988,65068000 +2989,64174000 +2990,63544000 +2991,62175000 +2992,61654000 +2993,60358000 +2994,60257000 +2995,60720000 +2996,60727000 +2997,59330000 +2998,58766000 +2999,56565000 +3000,51870000 +3001,48681000 +3002,47521000 +3003,46923000 +3004,47089000 +3005,48546000 +3006,51086000 +3007,57514000 +3008,63406000 +3009,66767000 +3010,67844000 +3011,69334000 +3012,70829000 +3013,70799000 +3014,70159000 +3015,68835000 +3016,67672000 +3017,65502000 +3018,65296000 +3019,65132000 +3020,64651000 +3021,62649000 +3022,60907000 +3023,57171000 +3024,52420000 +3025,49325000 +3026,47983000 +3027,47259000 +3028,47539000 +3029,48463000 +3030,50220000 +3031,55790000 +3032,61839000 +3033,64877000 +3034,65662000 +3035,66876000 +3036,67418000 +3037,66364000 +3038,64153000 +3039,62317000 +3040,61360000 +3041,60237000 +3042,60258000 +3043,59896000 +3044,59256000 +3045,57696000 +3046,56828000 +3047,54193000 +3048,49755000 +3049,46229000 +3050,44486000 +3051,43405000 +3052,43707000 +3053,44223000 +3054,44119000 +3055,44407000 +3056,46441000 +3057,49427000 +3058,51669000 +3059,52634000 +3060,54228000 +3061,53422000 +3062,51240000 +3063,48758000 +3064,48080000 +3065,47702000 +3066,48469000 +3067,49300000 +3068,49492000 +3069,48663000 +3070,49227000 +3071,48273000 +3072,44823000 +3073,42179000 +3074,39918000 +3075,39396000 +3076,39150000 +3077,39568000 +3078,39573000 +3079,38177000 +3080,38905000 +3081,41939000 +3082,43719000 +3083,45167000 +3084,46996000 +3085,46042000 +3086,43750000 +3087,42272000 +3088,41496000 +3089,41548000 +3090,43357000 +3091,45943000 +3092,46923000 +3093,47424000 +3094,48927000 +3095,48730000 +3096,44871000 +3097,42591000 +3098,41705000 +3099,41481000 +3100,42012000 +3101,43926000 +3102,46467000 +3103,53625000 +3104,59969000 +3105,63541000 +3106,64443000 +3107,65606000 +3108,66730000 +3109,66733000 +3110,66053000 +3111,63865000 +3112,62611000 +3113,60768000 +3114,60920000 +3115,61593000 +3116,61496000 +3117,59380000 +3118,58528000 +3119,55323000 +3120,50398000 +3121,47201000 +3122,45597000 +3123,44949000 +3124,45291000 +3125,46911000 +3126,49237000 +3127,55110000 +3128,60481000 +3129,62874000 +3130,63298000 +3131,64188000 +3132,65116000 +3133,63767000 +3134,62925000 +3135,61980000 +3136,62212000 +3137,61318000 +3138,61827000 +3139,62483000 +3140,62501000 +3141,60764000 +3142,59892000 +3143,57157000 +3144,51945000 +3145,48146000 +3146,47143000 +3147,46370000 +3148,46869000 +3149,48262000 +3150,49923000 +3151,56142000 +3152,62327000 +3153,65121000 +3154,65422000 +3155,66158000 +3156,67295000 +3157,66307000 +3158,65742000 +3159,64377000 +3160,63615000 +3161,61980000 +3162,61384000 +3163,61467000 +3164,60959000 +3165,59316000 +3166,58267000 +3167,54688000 +3168,49076000 +3169,44692000 +3170,42394000 +3171,41050000 +3172,41451000 +3173,42233000 +3174,41167000 +3175,39073000 +3176,39973000 +3177,42760000 +3178,45809000 +3179,47851000 +3180,50061000 +3181,49560000 +3182,47801000 +3183,46278000 +3184,45430000 +3185,45218000 +3186,46220000 +3187,47445000 +3188,47659000 +3189,47398000 +3190,47937000 +3191,47410000 +3192,43820000 +3193,41524000 +3194,40560000 +3195,40227000 +3196,40539000 +3197,41960000 +3198,42819000 +3199,46608000 +3200,51734000 +3201,55491000 +3202,57542000 +3203,58298000 +3204,59569000 +3205,59189000 +3206,57844000 +3207,56427000 +3208,55753000 +3209,55038000 +3210,55597000 +3211,55940000 +3212,55347000 +3213,53629000 +3214,53212000 +3215,51085000 +3216,46618000 +3217,43269000 +3218,41765000 +3219,41425000 +3220,41106000 +3221,41770000 +3222,41966000 +3223,43080000 +3224,45637000 +3225,49750000 +3226,52977000 +3227,54502000 +3228,55664000 +3229,55414000 +3230,53723000 +3231,52032000 +3232,51068000 +3233,50722000 +3234,51742000 +3235,52756000 +3236,52556000 +3237,50645000 +3238,50430000 +3239,49498000 +3240,45559000 +3241,42159000 +3242,40772000 +3243,40610000 +3244,41405000 +3245,41770000 +3246,41027000 +3247,39738000 +3248,40878000 +3249,42846000 +3250,45153000 +3251,47233000 +3252,49704000 +3253,49552000 +3254,48326000 +3255,46901000 +3256,45865000 +3257,45627000 +3258,46590000 +3259,47875000 +3260,47804000 +3261,46717000 +3262,48002000 +3263,49030000 +3264,45033000 +3265,42055000 +3266,41638000 +3267,41599000 +3268,42173000 +3269,43593000 +3270,45885000 +3271,52743000 +3272,59241000 +3273,61929000 +3274,62241000 +3275,63014000 +3276,64490000 +3277,64515000 +3278,64167000 +3279,62783000 +3280,61606000 +3281,60708000 +3282,60489000 +3283,60977000 +3284,60969000 +3285,59312000 +3286,58474000 +3287,56088000 +3288,50437000 +3289,46363000 +3290,45257000 +3291,45231000 +3292,45724000 +3293,47354000 +3294,49396000 +3295,54998000 +3296,60490000 +3297,63044000 +3298,63326000 +3299,64822000 +3300,66548000 +3301,66093000 +3302,65785000 +3303,64418000 +3304,62448000 +3305,61379000 +3306,61091000 +3307,61099000 +3308,60888000 +3309,59371000 +3310,59083000 +3311,56925000 +3312,52426000 +3313,49042000 +3314,48254000 +3315,47941000 +3316,48617000 +3317,49433000 +3318,51027000 +3319,56707000 +3320,62435000 +3321,65278000 +3322,65940000 +3323,67301000 +3324,68757000 +3325,68024000 +3326,67629000 +3327,65407000 +3328,64099000 +3329,62935000 +3330,62854000 +3331,63037000 +3332,62246000 +3333,60092000 +3334,58819000 +3335,56202000 +3336,51157000 +3337,47528000 +3338,46220000 +3339,45691000 +3340,46020000 +3341,47008000 +3342,48820000 +3343,55111000 +3344,61355000 +3345,64402000 +3346,64829000 +3347,65674000 +3348,66997000 +3349,66528000 +3350,65755000 +3351,64701000 +3352,63386000 +3353,61865000 +3354,61486000 +3355,61355000 +3356,60730000 +3357,58998000 +3358,57803000 +3359,55846000 +3360,50648000 +3361,46741000 +3362,45290000 +3363,45117000 +3364,45796000 +3365,46905000 +3366,48714000 +3367,54268000 +3368,59987000 +3369,62628000 +3370,62698000 +3371,63133000 +3372,63460000 +3373,62302000 +3374,60773000 +3375,59107000 +3376,57897000 +3377,56878000 +3378,56997000 +3379,57032000 +3380,56858000 +3381,55198000 +3382,54382000 +3383,52593000 +3384,48238000 +3385,44472000 +3386,42397000 +3387,41455000 +3388,41921000 +3389,42497000 +3390,42091000 +3391,42234000 +3392,44789000 +3393,48040000 +3394,49718000 +3395,50233000 +3396,50436000 +3397,48938000 +3398,46777000 +3399,44819000 +3400,43956000 +3401,43828000 +3402,45266000 +3403,46787000 +3404,47225000 +3405,45888000 +3406,45673000 +3407,45180000 +3408,41721000 +3409,39118000 +3410,37881000 +3411,37216000 +3412,36709000 +3413,36598000 +3414,35955000 +3415,35556000 +3416,36559000 +3417,39068000 +3418,40056000 +3419,40929000 +3420,42430000 +3421,41349000 +3422,39428000 +3423,38129000 +3424,37528000 +3425,37953000 +3426,40145000 +3427,42109000 +3428,42953000 +3429,42665000 +3430,43283000 +3431,43636000 +3432,40802000 +3433,37711000 +3434,36170000 +3435,35842000 +3436,35867000 +3437,36258000 +3438,35971000 +3439,36110000 +3440,37243000 +3441,38683000 +3442,39927000 +3443,41282000 +3444,42956000 +3445,42552000 +3446,41027000 +3447,39984000 +3448,39584000 +3449,40250000 +3450,42415000 +3451,43756000 +3452,44906000 +3453,44670000 +3454,45422000 +3455,46057000 +3456,42774000 +3457,39808000 +3458,38736000 +3459,39010000 +3460,39231000 +3461,40478000 +3462,42579000 +3463,49356000 +3464,56399000 +3465,59795000 +3466,60867000 +3467,61870000 +3468,63106000 +3469,62675000 +3470,62145000 +3471,61391000 +3472,60917000 +3473,59405000 +3474,59283000 +3475,59508000 +3476,58865000 +3477,56572000 +3478,55538000 +3479,53609000 +3480,48963000 +3481,45004000 +3482,44076000 +3483,43493000 +3484,43510000 +3485,44487000 +3486,46626000 +3487,53046000 +3488,59547000 +3489,62803000 +3490,63488000 +3491,64698000 +3492,66073000 +3493,65303000 +3494,64538000 +3495,63112000 +3496,61888000 +3497,60673000 +3498,60783000 +3499,61435000 +3500,60710000 +3501,58399000 +3502,57062000 +3503,53842000 +3504,48292000 +3505,45653000 +3506,44833000 +3507,44134000 +3508,44454000 +3509,45473000 +3510,47533000 +3511,53941000 +3512,60063000 +3513,63092000 +3514,63955000 +3515,64669000 +3516,65462000 +3517,64409000 +3518,63282000 +3519,61943000 +3520,61155000 +3521,59566000 +3522,59664000 +3523,59978000 +3524,59869000 +3525,58123000 +3526,56888000 +3527,53980000 +3528,48746000 +3529,45475000 +3530,44802000 +3531,44033000 +3532,44245000 +3533,45551000 +3534,47139000 +3535,52907000 +3536,58979000 +3537,61967000 +3538,61868000 +3539,62580000 +3540,63282000 +3541,62362000 +3542,61020000 +3543,59241000 +3544,58433000 +3545,57376000 +3546,57677000 +3547,57676000 +3548,57037000 +3549,54849000 +3550,53272000 +3551,52056000 +3552,47952000 +3553,44244000 +3554,42708000 +3555,42072000 +3556,42589000 +3557,43098000 +3558,42833000 +3559,42800000 +3560,44752000 +3561,47873000 +3562,49674000 +3563,50394000 +3564,50742000 +3565,49064000 +3566,46948000 +3567,45396000 +3568,44810000 +3569,44872000 +3570,46302000 +3571,47653000 +3572,48179000 +3573,46920000 +3574,46570000 +3575,46173000 +3576,43462000 +3577,41369000 +3578,39270000 +3579,38482000 +3580,38034000 +3581,37829000 +3582,37358000 +3583,37674000 +3584,38497000 +3585,40496000 +3586,42641000 +3587,44746000 +3588,47281000 +3589,46967000 +3590,45190000 +3591,43859000 +3592,43359000 +3593,43398000 +3594,44874000 +3595,46985000 +3596,47603000 +3597,46950000 +3598,47675000 +3599,47709000 +3600,44379000 +3601,41575000 +3602,40554000 +3603,41104000 +3604,41762000 +3605,43393000 +3606,45673000 +3607,52533000 +3608,58029000 +3609,61658000 +3610,63013000 +3611,64522000 +3612,65813000 +3613,64923000 +3614,64588000 +3615,63441000 +3616,62487000 +3617,61522000 +3618,61488000 +3619,61491000 +3620,60860000 +3621,58640000 +3622,56869000 +3623,54545000 +3624,50244000 +3625,46859000 +3626,44977000 +3627,44344000 +3628,44801000 +3629,45909000 +3630,47201000 +3631,53178000 +3632,59364000 +3633,62135000 +3634,62658000 +3635,63464000 +3636,64065000 +3637,62728000 +3638,61798000 +3639,61156000 +3640,60705000 +3641,59341000 +3642,59896000 +3643,59952000 +3644,59280000 +3645,57406000 +3646,55845000 +3647,53258000 +3648,48519000 +3649,45905000 +3650,44170000 +3651,43190000 +3652,43383000 +3653,44710000 +3654,47348000 +3655,53395000 +3656,59115000 +3657,62255000 +3658,62859000 +3659,63980000 +3660,65282000 +3661,64728000 +3662,64136000 +3663,62957000 +3664,62210000 +3665,61029000 +3666,60388000 +3667,59756000 +3668,58846000 +3669,56649000 +3670,54542000 +3671,52812000 +3672,49515000 +3673,46126000 +3674,44376000 +3675,43334000 +3676,43212000 +3677,43493000 +3678,42960000 +3679,43396000 +3680,45618000 +3681,48109000 +3682,49779000 +3683,51678000 +3684,53424000 +3685,53101000 +3686,51575000 +3687,50120000 +3688,48913000 +3689,48138000 +3690,48894000 +3691,49828000 +3692,49827000 +3693,49105000 +3694,48450000 +3695,48587000 +3696,45087000 +3697,42327000 +3698,40397000 +3699,39419000 +3700,39423000 +3701,40722000 +3702,42918000 +3703,47612000 +3704,52624000 +3705,55098000 +3706,55898000 +3707,56890000 +3708,57765000 +3709,56677000 +3710,54998000 +3711,53687000 +3712,52649000 +3713,52271000 +3714,52593000 +3715,52807000 +3716,52426000 +3717,50681000 +3718,49799000 +3719,49292000 +3720,45561000 +3721,41993000 +3722,39891000 +3723,39038000 +3724,39325000 +3725,39215000 +3726,39042000 +3727,41010000 +3728,43853000 +3729,46985000 +3730,48969000 +3731,50257000 +3732,50552000 +3733,49037000 +3734,47070000 +3735,45818000 +3736,44999000 +3737,44897000 +3738,45585000 +3739,46507000 +3740,46519000 +3741,44749000 +3742,44194000 +3743,44741000 +3744,41764000 +3745,39083000 +3746,37068000 +3747,36110000 +3748,35589000 +3749,35356000 +3750,34608000 +3751,35558000 +3752,37956000 +3753,40380000 +3754,42128000 +3755,43568000 +3756,45047000 +3757,44510000 +3758,42916000 +3759,41721000 +3760,41473000 +3761,41958000 +3762,44137000 +3763,46439000 +3764,47174000 +3765,46510000 +3766,46367000 +3767,46801000 +3768,42999000 +3769,40568000 +3770,40010000 +3771,38954000 +3772,39335000 +3773,40425000 +3774,42988000 +3775,50901000 +3776,57827000 +3777,62110000 +3778,64456000 +3779,66053000 +3780,67913000 +3781,67017000 +3782,66162000 +3783,64584000 +3784,63239000 +3785,61544000 +3786,60070000 +3787,59641000 +3788,58719000 +3789,56319000 +3790,54161000 +3791,52377000 +3792,47786000 +3793,44694000 +3794,43107000 +3795,42426000 +3796,42599000 +3797,43695000 +3798,45940000 +3799,52726000 +3800,59270000 +3801,62267000 +3802,62831000 +3803,63738000 +3804,64832000 +3805,64098000 +3806,63852000 +3807,63471000 +3808,62463000 +3809,61057000 +3810,60818000 +3811,60450000 +3812,59379000 +3813,57116000 +3814,55608000 +3815,53468000 +3816,48834000 +3817,45979000 +3818,44020000 +3819,43027000 +3820,42974000 +3821,43761000 +3822,46257000 +3823,54003000 +3824,60231000 +3825,62982000 +3826,63296000 +3827,64453000 +3828,65543000 +3829,65080000 +3830,65025000 +3831,64079000 +3832,62898000 +3833,61466000 +3834,60785000 +3835,60623000 +3836,59905000 +3837,57563000 +3838,55669000 +3839,53850000 +3840,49331000 +3841,46277000 +3842,44562000 +3843,43691000 +3844,43647000 +3845,44513000 +3846,46954000 +3847,54411000 +3848,60609000 +3849,63671000 +3850,64096000 +3851,64962000 +3852,66035000 +3853,65275000 +3854,65053000 +3855,64360000 +3856,63454000 +3857,62245000 +3858,61607000 +3859,61172000 +3860,60545000 +3861,58202000 +3862,56448000 +3863,55207000 +3864,50785000 +3865,47249000 +3866,45082000 +3867,44419000 +3868,44709000 +3869,45867000 +3870,47535000 +3871,53747000 +3872,60052000 +3873,63547000 +3874,64531000 +3875,65761000 +3876,66611000 +3877,64932000 +3878,63990000 +3879,62604000 +3880,62356000 +3881,61595000 +3882,61604000 +3883,60752000 +3884,59149000 +3885,56389000 +3886,54869000 +3887,54221000 +3888,50026000 +3889,46463000 +3890,43793000 +3891,42367000 +3892,41658000 +3893,41506000 +3894,41168000 +3895,43256000 +3896,46319000 +3897,50205000 +3898,53690000 +3899,55718000 +3900,55932000 +3901,54785000 +3902,52961000 +3903,50933000 +3904,49632000 +3905,49095000 +3906,49763000 +3907,50313000 +3908,49488000 +3909,47187000 +3910,45956000 +3911,45875000 +3912,42907000 +3913,39549000 +3914,38237000 +3915,37721000 +3916,37574000 +3917,37501000 +3918,36651000 +3919,36941000 +3920,39010000 +3921,41718000 +3922,44464000 +3923,46424000 +3924,48186000 +3925,47451000 +3926,45748000 +3927,44411000 +3928,43362000 +3929,43229000 +3930,44467000 +3931,45993000 +3932,45998000 +3933,44752000 +3934,44262000 +3935,45536000 +3936,42736000 +3937,40366000 +3938,39467000 +3939,39470000 +3940,39747000 +3941,40892000 +3942,42940000 +3943,50895000 +3944,57516000 +3945,60728000 +3946,61867000 +3947,62968000 +3948,63447000 +3949,62561000 +3950,61882000 +3951,60968000 +3952,59468000 +3953,57315000 +3954,57365000 +3955,58456000 +3956,58083000 +3957,55942000 +3958,53989000 +3959,52280000 +3960,47526000 +3961,44991000 +3962,43803000 +3963,42785000 +3964,42945000 +3965,43725000 +3966,45213000 +3967,52036000 +3968,58458000 +3969,61726000 +3970,62693000 +3971,63510000 +3972,63785000 +3973,62280000 +3974,61662000 +3975,60508000 +3976,59347000 +3977,58184000 +3978,58103000 +3979,57988000 +3980,57617000 +3981,55680000 +3982,53682000 +3983,51901000 +3984,47964000 +3985,44906000 +3986,43532000 +3987,42877000 +3988,43021000 +3989,43636000 +3990,45542000 +3991,52310000 +3992,58035000 +3993,60731000 +3994,60963000 +3995,61945000 +3996,63526000 +3997,63040000 +3998,62699000 +3999,61953000 +4000,61269000 +4001,59568000 +4002,59163000 +4003,58858000 +4004,58403000 +4005,56381000 +4006,54304000 +4007,52693000 +4008,48760000 +4009,45841000 +4010,44625000 +4011,43671000 +4012,43898000 +4013,44815000 +4014,46282000 +4015,53211000 +4016,59066000 +4017,61810000 +4018,62306000 +4019,63693000 +4020,65117000 +4021,64542000 +4022,63927000 +4023,62984000 +4024,62224000 +4025,60882000 +4026,60554000 +4027,60083000 +4028,59168000 +4029,56993000 +4030,54724000 +4031,53458000 +4032,48853000 +4033,45537000 +4034,44483000 +4035,44340000 +4036,44461000 +4037,45175000 +4038,46751000 +4039,52923000 +4040,58822000 +4041,61849000 +4042,62822000 +4043,63851000 +4044,65020000 +4045,63867000 +4046,60153000 +4047,57670000 +4048,57132000 +4049,58518000 +4050,58440000 +4051,58178000 +4052,57180000 +4053,55044000 +4054,53036000 +4055,51440000 +4056,47431000 +4057,44024000 +4058,42455000 +4059,42305000 +4060,41858000 +4061,41799000 +4062,41594000 +4063,42482000 +4064,45118000 +4065,49077000 +4066,52272000 +4067,53878000 +4068,54767000 +4069,53803000 +4070,52045000 +4071,50868000 +4072,49494000 +4073,48951000 +4074,49587000 +4075,49933000 +4076,49437000 +4077,47071000 +4078,45455000 +4079,45121000 +4080,41830000 +4081,39069000 +4082,37376000 +4083,36571000 +4084,37187000 +4085,37039000 +4086,36290000 +4087,36661000 +4088,37712000 +4089,40303000 +4090,43106000 +4091,45449000 +4092,48049000 +4093,47949000 +4094,46068000 +4095,44217000 +4096,43456000 +4097,43665000 +4098,44627000 +4099,46507000 +4100,46586000 +4101,45857000 +4102,45565000 +4103,46317000 +4104,42895000 +4105,40982000 +4106,40301000 +4107,40046000 +4108,40212000 +4109,41921000 +4110,44544000 +4111,51981000 +4112,58484000 +4113,61480000 +4114,61904000 +4115,63062000 +4116,64506000 +4117,64203000 +4118,63158000 +4119,61786000 +4120,60705000 +4121,59250000 +4122,58838000 +4123,58623000 +4124,58035000 +4125,56002000 +4126,53992000 +4127,52536000 +4128,47785000 +4129,44212000 +4130,42951000 +4131,42725000 +4132,43449000 +4133,44335000 +4134,45847000 +4135,52827000 +4136,59003000 +4137,61232000 +4138,60691000 +4139,61675000 +4140,63319000 +4141,63278000 +4142,62787000 +4143,61644000 +4144,60554000 +4145,59305000 +4146,58871000 +4147,58545000 +4148,57969000 +4149,56030000 +4150,54337000 +4151,52877000 +4152,48389000 +4153,45382000 +4154,44205000 +4155,43265000 +4156,43299000 +4157,44058000 +4158,45708000 +4159,52639000 +4160,58698000 +4161,60853000 +4162,60399000 +4163,60999000 +4164,62772000 +4165,62203000 +4166,61206000 +4167,60373000 +4168,59955000 +4169,58549000 +4170,58675000 +4171,59045000 +4172,58010000 +4173,54113000 +4174,51591000 +4175,51751000 +4176,49097000 +4177,45740000 +4178,44484000 +4179,43496000 +4180,43541000 +4181,44443000 +4182,45848000 +4183,52092000 +4184,57316000 +4185,59300000 +4186,60121000 +4187,61603000 +4188,62627000 +4189,62123000 +4190,61373000 +4191,60661000 +4192,60108000 +4193,58953000 +4194,59006000 +4195,59380000 +4196,58994000 +4197,57215000 +4198,55380000 +4199,53682000 +4200,48967000 +4201,46070000 +4202,44241000 +4203,44042000 +4204,44239000 +4205,45036000 +4206,46333000 +4207,53067000 +4208,58798000 +4209,61702000 +4210,61984000 +4211,62523000 +4212,63213000 +4213,62324000 +4214,61280000 +4215,60116000 +4216,59085000 +4217,58368000 +4218,58467000 +4219,57823000 +4220,56824000 +4221,54410000 +4222,52434000 +4223,51445000 +4224,47825000 +4225,44504000 +4226,42650000 +4227,42371000 +4228,42348000 +4229,42104000 +4230,41943000 +4231,43124000 +4232,45877000 +4233,49620000 +4234,51810000 +4235,52346000 +4236,52614000 +4237,51050000 +4238,49419000 +4239,47747000 +4240,46988000 +4241,46894000 +4242,47403000 +4243,48090000 +4244,47928000 +4245,46021000 +4246,44893000 +4247,45121000 +4248,42282000 +4249,39411000 +4250,37526000 +4251,37297000 +4252,37248000 +4253,36898000 +4254,36197000 +4255,37101000 +4256,38700000 +4257,41003000 +4258,43110000 +4259,44439000 +4260,45375000 +4261,45006000 +4262,43409000 +4263,42475000 +4264,42111000 +4265,41600000 +4266,41843000 +4267,44241000 +4268,45292000 +4269,45367000 +4270,45261000 +4271,46634000 +4272,43196000 +4273,41033000 +4274,40858000 +4275,41030000 +4276,40894000 +4277,41740000 +4278,43528000 +4279,50809000 +4280,57397000 +4281,61369000 +4282,62243000 +4283,63129000 +4284,64177000 +4285,63462000 +4286,62975000 +4287,62382000 +4288,61783000 +4289,60639000 +4290,60283000 +4291,60268000 +4292,59880000 +4293,58241000 +4294,56104000 +4295,54457000 +4296,49903000 +4297,46238000 +4298,44991000 +4299,44434000 +4300,44495000 +4301,45350000 +4302,46701000 +4303,53115000 +4304,59775000 +4305,62549000 +4306,62866000 +4307,64008000 +4308,64746000 +4309,64594000 +4310,64125000 +4311,63306000 +4312,62728000 +4313,61918000 +4314,61929000 +4315,61760000 +4316,61109000 +4317,58793000 +4318,56870000 +4319,54395000 +4320,49731000 +4321,46845000 +4322,45783000 +4323,44896000 +4324,45210000 +4325,46052000 +4326,47204000 +4327,53668000 +4328,60104000 +4329,62531000 +4330,62743000 +4331,63037000 +4332,65000000 +4333,64279000 +4334,64202000 +4335,63546000 +4336,62713000 +4337,61285000 +4338,60830000 +4339,60633000 +4340,60166000 +4341,57733000 +4342,55969000 +4343,54678000 +4344,50285000 +4345,46825000 +4346,45110000 +4347,44851000 +4348,45268000 +4349,46094000 +4350,47318000 +4351,53719000 +4352,59516000 +4353,62191000 +4354,62646000 +4355,63918000 +4356,65463000 +4357,65036000 +4358,64289000 +4359,63564000 +4360,62451000 +4361,61138000 +4362,61001000 +4363,60883000 +4364,60552000 +4365,58199000 +4366,55894000 +4367,54957000 +4368,50506000 +4369,47457000 +4370,46376000 +4371,46408000 +4372,46431000 +4373,46965000 +4374,48541000 +4375,54932000 +4376,60425000 +4377,63233000 +4378,63414000 +4379,64443000 +4380,65046000 +4381,64268000 +4382,62685000 +4383,61278000 +4384,60563000 +4385,59877000 +4386,59774000 +4387,59777000 +4388,59109000 +4389,56999000 +4390,55351000 +4391,54686000 +4392,51027000 +4393,47508000 +4394,45236000 +4395,44052000 +4396,44148000 +4397,44027000 +4398,43354000 +4399,44105000 +4400,47645000 +4401,51206000 +4402,53144000 +4403,54102000 +4404,54529000 +4405,53222000 +4406,51798000 +4407,49932000 +4408,49757000 +4409,48517000 +4410,48790000 +4411,49829000 +4412,49474000 +4413,47032000 +4414,46680000 +4415,46727000 +4416,43956000 +4417,41682000 +4418,40435000 +4419,40106000 +4420,39481000 +4421,39218000 +4422,38405000 +4423,38633000 +4424,40399000 +4425,42910000 +4426,44667000 +4427,46339000 +4428,48074000 +4429,47367000 +4430,45839000 +4431,44363000 +4432,43509000 +4433,43321000 +4434,44867000 +4435,46528000 +4436,46965000 +4437,46598000 +4438,46642000 +4439,47605000 +4440,44646000 +4441,42406000 +4442,42288000 +4443,41719000 +4444,41950000 +4445,42825000 +4446,44592000 +4447,51837000 +4448,59008000 +4449,61821000 +4450,62163000 +4451,63435000 +4452,65463000 +4453,65308000 +4454,64771000 +4455,63325000 +4456,62799000 +4457,61389000 +4458,60808000 +4459,60728000 +4460,59800000 +4461,57672000 +4462,56039000 +4463,54340000 +4464,50268000 +4465,46954000 +4466,44783000 +4467,44376000 +4468,45310000 +4469,46129000 +4470,47547000 +4471,53766000 +4472,59343000 +4473,62078000 +4474,62903000 +4475,63983000 +4476,65343000 +4477,64660000 +4478,63586000 +4479,61925000 +4480,60768000 +4481,59578000 +4482,59784000 +4483,59782000 +4484,58993000 +4485,57093000 +4486,55248000 +4487,54314000 +4488,50221000 +4489,47403000 +4490,46039000 +4491,45546000 +4492,45580000 +4493,46451000 +4494,47760000 +4495,53832000 +4496,59447000 +4497,61681000 +4498,61693000 +4499,62644000 +4500,64113000 +4501,63306000 +4502,62341000 +4503,61154000 +4504,59974000 +4505,59144000 +4506,59255000 +4507,59351000 +4508,57889000 +4509,53566000 +4510,51633000 +4511,51494000 +4512,49389000 +4513,46480000 +4514,45501000 +4515,44804000 +4516,44865000 +4517,45615000 +4518,46707000 +4519,53579000 +4520,59313000 +4521,61611000 +4522,62184000 +4523,63445000 +4524,64441000 +4525,63215000 +4526,62183000 +4527,61405000 +4528,60626000 +4529,60110000 +4530,60307000 +4531,60456000 +4532,60369000 +4533,58418000 +4534,56542000 +4535,55390000 +4536,51497000 +4537,48636000 +4538,47337000 +4539,46185000 +4540,46081000 +4541,46902000 +4542,48126000 +4543,54494000 +4544,60218000 +4545,62553000 +4546,63284000 +4547,64634000 +4548,65614000 +4549,64638000 +4550,63313000 +4551,62063000 +4552,61086000 +4553,60654000 +4554,60732000 +4555,60423000 +4556,59591000 +4557,57173000 +4558,54968000 +4559,54076000 +4560,50302000 +4561,47390000 +4562,45394000 +4563,44299000 +4564,43513000 +4565,43807000 +4566,43275000 +4567,45528000 +4568,48011000 +4569,50451000 +4570,52823000 +4571,54237000 +4572,54490000 +4573,52753000 +4574,50438000 +4575,48812000 +4576,48124000 +4577,48316000 +4578,49233000 +4579,50870000 +4580,51004000 +4581,49112000 +4582,48211000 +4583,47972000 +4584,45558000 +4585,42301000 +4586,41022000 +4587,40617000 +4588,40416000 +4589,40362000 +4590,39337000 +4591,40058000 +4592,41632000 +4593,43281000 +4594,44972000 +4595,46566000 +4596,47967000 +4597,46650000 +4598,45119000 +4599,44396000 +4600,44066000 +4601,44338000 +4602,45696000 +4603,47728000 +4604,48664000 +4605,48560000 +4606,48518000 +4607,49372000 +4608,47070000 +4609,44138000 +4610,43203000 +4611,43832000 +4612,43670000 +4613,44387000 +4614,46189000 +4615,53609000 +4616,59548000 +4617,63109000 +4618,64353000 +4619,65611000 +4620,66931000 +4621,66177000 +4622,65595000 +4623,64590000 +4624,63031000 +4625,62522000 +4626,62404000 +4627,61800000 +4628,60958000 +4629,58670000 +4630,57260000 +4631,55548000 +4632,51540000 +4633,48832000 +4634,48273000 +4635,46622000 +4636,46295000 +4637,46757000 +4638,48000000 +4639,54453000 +4640,59684000 +4641,62376000 +4642,63399000 +4643,65014000 +4644,66027000 +4645,64941000 +4646,64217000 +4647,63150000 +4648,62591000 +4649,61558000 +4650,60946000 +4651,60391000 +4652,60000000 +4653,58003000 +4654,56241000 +4655,54864000 +4656,50704000 +4657,47849000 +4658,46032000 +4659,45458000 +4660,45833000 +4661,46813000 +4662,48231000 +4663,54612000 +4664,59960000 +4665,62901000 +4666,63697000 +4667,65095000 +4668,66293000 +4669,65749000 +4670,65012000 +4671,63790000 +4672,62872000 +4673,61080000 +4674,60837000 +4675,61929000 +4676,61639000 +4677,59612000 +4678,58108000 +4679,56234000 +4680,52418000 +4681,49748000 +4682,47995000 +4683,47119000 +4684,47012000 +4685,47599000 +4686,49304000 +4687,54882000 +4688,60647000 +4689,62938000 +4690,63843000 +4691,65314000 +4692,66864000 +4693,65675000 +4694,64472000 +4695,62995000 +4696,62043000 +4697,60985000 +4698,59940000 +4699,59020000 +4700,59151000 +4701,57650000 +4702,55610000 +4703,54485000 +4704,50159000 +4705,46764000 +4706,45526000 +4707,44518000 +4708,45119000 +4709,46205000 +4710,47515000 +4711,53150000 +4712,57960000 +4713,60025000 +4714,59818000 +4715,61015000 +4716,64146000 +4717,62817000 +4718,61133000 +4719,59622000 +4720,58858000 +4721,58508000 +4722,58915000 +4723,58662000 +4724,58155000 +4725,55742000 +4726,53713000 +4727,53025000 +4728,49085000 +4729,45759000 +4730,43895000 +4731,42393000 +4732,42844000 +4733,43856000 +4734,43702000 +4735,44431000 +4736,46098000 +4737,48601000 +4738,51039000 +4739,53120000 +4740,54256000 +4741,53101000 +4742,51320000 +4743,49463000 +4744,48242000 +4745,48503000 +4746,48912000 +4747,48660000 +4748,48157000 +4749,45843000 +4750,44438000 +4751,44558000 +4752,41852000 +4753,39075000 +4754,37720000 +4755,37073000 +4756,37577000 +4757,37503000 +4758,36542000 +4759,37127000 +4760,38720000 +4761,40065000 +4762,41166000 +4763,42684000 +4764,44534000 +4765,43745000 +4766,41530000 +4767,40303000 +4768,39505000 +4769,39479000 +4770,41181000 +4771,42758000 +4772,43697000 +4773,43690000 +4774,43925000 +4775,45107000 +4776,42157000 +4777,39897000 +4778,38351000 +4779,38498000 +4780,39340000 +4781,40472000 +4782,42269000 +4783,49125000 +4784,55220000 +4785,58294000 +4786,59266000 +4787,61450000 +4788,63025000 +4789,62115000 +4790,60883000 +4791,59748000 +4792,58913000 +4793,58715000 +4794,59066000 +4795,58632000 +4796,58149000 +4797,55981000 +4798,54620000 +4799,53345000 +4800,48858000 +4801,45954000 +4802,44788000 +4803,44591000 +4804,44512000 +4805,45399000 +4806,47005000 +4807,52667000 +4808,57670000 +4809,60379000 +4810,61370000 +4811,62498000 +4812,63565000 +4813,62874000 +4814,62105000 +4815,61132000 +4816,59980000 +4817,59238000 +4818,59878000 +4819,59895000 +4820,59529000 +4821,57351000 +4822,55889000 +4823,54465000 +4824,49989000 +4825,46630000 +4826,45423000 +4827,45318000 +4828,45116000 +4829,46157000 +4830,47568000 +4831,53345000 +4832,58639000 +4833,61191000 +4834,61903000 +4835,63294000 +4836,64484000 +4837,63799000 +4838,63369000 +4839,62419000 +4840,62075000 +4841,61526000 +4842,61781000 +4843,61673000 +4844,60556000 +4845,57664000 +4846,56516000 +4847,54600000 +4848,50277000 +4849,47479000 +4850,46017000 +4851,46195000 +4852,46385000 +4853,47384000 +4854,48931000 +4855,54346000 +4856,59667000 +4857,62450000 +4858,63236000 +4859,64650000 +4860,65833000 +4861,65307000 +4862,64725000 +4863,63854000 +4864,62808000 +4865,61954000 +4866,61739000 +4867,61100000 +4868,59857000 +4869,57495000 +4870,55782000 +4871,53404000 +4872,49035000 +4873,46264000 +4874,44757000 +4875,44805000 +4876,45021000 +4877,45898000 +4878,47519000 +4879,53006000 +4880,58562000 +4881,61963000 +4882,63106000 +4883,63932000 +4884,64930000 +4885,63877000 +4886,62650000 +4887,61009000 +4888,59948000 +4889,59438000 +4890,58997000 +4891,58163000 +4892,56835000 +4893,53969000 +4894,52237000 +4895,50156000 +4896,46142000 +4897,42995000 +4898,41684000 +4899,40843000 +4900,40848000 +4901,41461000 +4902,42156000 +4903,44078000 +4904,46733000 +4905,49933000 +4906,53297000 +4907,55620000 +4908,56557000 +4909,55086000 +4910,53216000 +4911,51188000 +4912,50108000 +4913,49641000 +4914,49579000 +4915,49728000 +4916,48813000 +4917,46782000 +4918,45738000 +4919,45395000 +4920,42436000 +4921,40740000 +4922,39136000 +4923,37888000 +4924,38237000 +4925,38395000 +4926,37763000 +4927,37930000 +4928,38646000 +4929,40630000 +4930,42243000 +4931,44218000 +4932,46021000 +4933,44666000 +4934,43402000 +4935,42787000 +4936,42412000 +4937,42330000 +4938,43143000 +4939,44504000 +4940,44951000 +4941,44501000 +4942,44695000 +4943,44944000 +4944,41688000 +4945,39673000 +4946,39225000 +4947,39219000 +4948,39611000 +4949,40754000 +4950,42893000 +4951,49046000 +4952,55723000 +4953,59355000 +4954,61161000 +4955,62823000 +4956,64497000 +4957,64272000 +4958,63169000 +4959,62030000 +4960,61136000 +4961,59688000 +4962,59334000 +4963,59195000 +4964,57701000 +4965,54800000 +4966,53297000 +4967,50902000 +4968,46460000 +4969,43571000 +4970,42369000 +4971,42225000 +4972,42118000 +4973,43052000 +4974,44900000 +4975,50576000 +4976,56472000 +4977,59597000 +4978,61302000 +4979,62833000 +4980,64127000 +4981,63202000 +4982,62321000 +4983,61028000 +4984,59789000 +4985,58262000 +4986,57989000 +4987,57870000 +4988,57547000 +4989,55524000 +4990,54502000 +4991,52215000 +4992,47426000 +4993,44254000 +4994,43267000 +4995,43243000 +4996,43331000 +4997,44490000 +4998,46037000 +4999,51794000 +5000,57565000 +5001,61414000 +5002,63101000 +5003,64733000 +5004,66410000 +5005,65700000 +5006,64614000 +5007,63014000 +5008,61179000 +5009,59576000 +5010,59066000 +5011,58905000 +5012,58002000 +5013,55525000 +5014,53551000 +5015,51153000 +5016,46698000 +5017,44385000 +5018,43037000 +5019,43068000 +5020,43043000 +5021,43908000 +5022,45569000 +5023,51079000 +5024,56612000 +5025,60645000 +5026,62474000 +5027,63491000 +5028,64262000 +5029,63095000 +5030,62047000 +5031,60825000 +5032,60114000 +5033,59034000 +5034,58888000 +5035,58311000 +5036,57685000 +5037,55572000 +5038,54533000 +5039,51898000 +5040,47534000 +5041,43937000 +5042,42949000 +5043,42682000 +5044,42661000 +5045,43227000 +5046,44683000 +5047,50043000 +5048,55638000 +5049,58990000 +5050,59946000 +5051,60998000 +5052,62238000 +5053,61262000 +5054,59328000 +5055,57583000 +5056,56378000 +5057,55556000 +5058,55277000 +5059,54822000 +5060,53938000 +5061,51750000 +5062,50998000 +5063,48995000 +5064,45219000 +5065,42090000 +5066,40364000 +5067,39579000 +5068,39169000 +5069,39570000 +5070,39845000 +5071,41254000 +5072,43509000 +5073,46229000 +5074,48864000 +5075,50345000 +5076,50795000 +5077,50072000 +5078,48494000 +5079,47389000 +5080,46217000 +5081,45954000 +5082,46928000 +5083,47813000 +5084,47595000 +5085,45501000 +5086,44997000 +5087,44104000 +5088,41754000 +5089,38053000 +5090,36829000 +5091,36069000 +5092,36255000 +5093,36357000 +5094,36341000 +5095,36701000 +5096,37413000 +5097,39283000 +5098,41305000 +5099,43494000 +5100,45394000 +5101,44192000 +5102,42617000 +5103,41912000 +5104,41138000 +5105,41299000 +5106,42548000 +5107,44233000 +5108,44780000 +5109,44479000 +5110,45336000 +5111,44742000 +5112,41250000 +5113,39349000 +5114,38886000 +5115,38877000 +5116,38795000 +5117,39894000 +5118,42387000 +5119,48356000 +5120,54831000 +5121,58560000 +5122,60389000 +5123,62391000 +5124,64181000 +5125,63570000 +5126,62410000 +5127,60615000 +5128,59732000 +5129,58235000 +5130,57732000 +5131,57594000 +5132,56848000 +5133,54359000 +5134,53020000 +5135,49933000 +5136,45598000 +5137,42878000 +5138,42427000 +5139,41696000 +5140,41588000 +5141,42800000 +5142,44357000 +5143,49623000 +5144,55110000 +5145,58590000 +5146,60398000 +5147,60993000 +5148,62630000 +5149,62235000 +5150,60719000 +5151,59279000 +5152,58410000 +5153,57270000 +5154,57071000 +5155,57010000 +5156,56086000 +5157,54170000 +5158,53607000 +5159,50952000 +5160,46267000 +5161,43061000 +5162,42409000 +5163,41709000 +5164,41627000 +5165,42682000 +5166,44536000 +5167,49764000 +5168,55481000 +5169,58506000 +5170,59147000 +5171,60308000 +5172,61796000 +5173,61441000 +5174,61237000 +5175,60042000 +5176,59301000 +5177,57988000 +5178,57236000 +5179,57215000 +5180,56718000 +5181,54822000 +5182,54281000 +5183,51033000 +5184,46367000 +5185,43213000 +5186,42621000 +5187,41985000 +5188,41909000 +5189,42682000 +5190,44520000 +5191,50092000 +5192,55620000 +5193,59014000 +5194,60550000 +5195,61981000 +5196,63139000 +5197,62199000 +5198,61159000 +5199,59570000 +5200,58645000 +5201,57883000 +5202,58089000 +5203,57925000 +5204,57142000 +5205,55344000 +5206,54333000 +5207,50961000 +5208,46056000 +5209,43361000 +5210,42660000 +5211,41991000 +5212,41955000 +5213,42866000 +5214,44810000 +5215,49950000 +5216,55268000 +5217,58599000 +5218,59771000 +5219,61498000 +5220,62942000 +5221,62295000 +5222,60312000 +5223,58843000 +5224,57575000 +5225,57060000 +5226,57339000 +5227,56895000 +5228,55850000 +5229,53735000 +5230,52312000 +5231,49716000 +5232,45702000 +5233,42992000 +5234,41363000 +5235,40069000 +5236,40236000 +5237,40460000 +5238,41183000 +5239,42103000 +5240,44317000 +5241,47152000 +5242,48955000 +5243,50133000 +5244,50903000 +5245,49880000 +5246,47648000 +5247,46317000 +5248,45481000 +5249,45115000 +5250,46251000 +5251,47306000 +5252,47177000 +5253,45849000 +5254,45986000 +5255,44247000 +5256,40901000 +5257,38234000 +5258,37160000 +5259,36799000 +5260,36973000 +5261,36983000 +5262,37044000 +5263,36677000 +5264,37783000 +5265,40392000 +5266,42839000 +5267,45322000 +5268,47292000 +5269,46174000 +5270,44960000 +5271,43900000 +5272,43198000 +5273,43040000 +5274,43773000 +5275,45009000 +5276,45187000 +5277,45127000 +5278,45886000 +5279,44804000 +5280,41460000 +5281,39336000 +5282,38826000 +5283,39028000 +5284,39268000 +5285,40392000 +5286,43120000 +5287,49757000 +5288,55676000 +5289,58964000 +5290,60213000 +5291,61373000 +5292,62901000 +5293,62632000 +5294,62204000 +5295,60449000 +5296,58539000 +5297,57274000 +5298,57303000 +5299,57426000 +5300,57118000 +5301,55564000 +5302,55336000 +5303,51937000 +5304,46938000 +5305,43340000 +5306,42416000 +5307,42431000 +5308,42618000 +5309,43594000 +5310,45641000 +5311,51152000 +5312,55887000 +5313,58154000 +5314,59196000 +5315,60726000 +5316,62024000 +5317,61962000 +5318,61705000 +5319,60157000 +5320,59094000 +5321,58180000 +5322,58460000 +5323,58499000 +5324,57713000 +5325,56048000 +5326,56184000 +5327,52731000 +5328,47834000 +5329,44673000 +5330,43678000 +5331,43236000 +5332,43444000 +5333,44343000 +5334,46659000 +5335,52415000 +5336,57853000 +5337,60683000 +5338,62135000 +5339,63559000 +5340,64797000 +5341,64132000 +5342,62821000 +5343,60892000 +5344,59442000 +5345,58499000 +5346,58810000 +5347,58772000 +5348,58246000 +5349,57062000 +5350,56227000 +5351,52646000 +5352,47534000 +5353,44405000 +5354,43568000 +5355,43034000 +5356,43209000 +5357,44419000 +5358,46535000 +5359,52600000 +5360,58092000 +5361,61637000 +5362,62460000 +5363,63853000 +5364,65240000 +5365,64182000 +5366,62873000 +5367,61580000 +5368,60309000 +5369,59296000 +5370,59537000 +5371,59312000 +5372,58571000 +5373,56779000 +5374,55367000 +5375,51719000 +5376,47076000 +5377,43687000 +5378,42501000 +5379,42207000 +5380,42238000 +5381,43253000 +5382,45929000 +5383,51065000 +5384,56491000 +5385,59858000 +5386,60727000 +5387,61618000 +5388,62634000 +5389,61743000 +5390,58876000 +5391,57369000 +5392,56483000 +5393,56113000 +5394,57046000 +5395,57280000 +5396,56230000 +5397,54711000 +5398,53830000 +5399,50946000 +5400,46806000 +5401,43349000 +5402,41623000 +5403,40349000 +5404,40537000 +5405,41096000 +5406,41627000 +5407,42569000 +5408,44286000 +5409,47652000 +5410,50523000 +5411,52068000 +5412,52677000 +5413,51469000 +5414,49392000 +5415,47513000 +5416,46597000 +5417,47015000 +5418,48507000 +5419,49413000 +5420,48883000 +5421,47898000 +5422,47216000 +5423,44116000 +5424,40749000 +5425,38509000 +5426,37189000 +5427,36733000 +5428,36696000 +5429,36773000 +5430,37302000 +5431,37658000 +5432,39289000 +5433,41566000 +5434,44030000 +5435,46535000 +5436,48638000 +5437,47955000 +5438,46497000 +5439,45319000 +5440,45034000 +5441,44977000 +5442,45911000 +5443,46823000 +5444,46934000 +5445,46881000 +5446,46605000 +5447,44941000 +5448,40977000 +5449,39667000 +5450,38851000 +5451,38724000 +5452,39169000 +5453,40232000 +5454,43066000 +5455,50351000 +5456,56665000 +5457,60296000 +5458,62131000 +5459,64083000 +5460,66372000 +5461,65591000 +5462,64739000 +5463,63323000 +5464,61605000 +5465,60146000 +5466,59891000 +5467,59565000 +5468,59049000 +5469,57669000 +5470,56212000 +5471,51508000 +5472,46196000 +5473,44294000 +5474,43630000 +5475,42785000 +5476,42988000 +5477,43901000 +5478,46778000 +5479,52618000 +5480,58174000 +5481,62386000 +5482,63643000 +5483,64945000 +5484,66697000 +5485,65492000 +5486,64814000 +5487,64215000 +5488,63455000 +5489,62637000 +5490,62115000 +5491,61643000 +5492,61262000 +5493,60224000 +5494,58127000 +5495,53906000 +5496,49135000 +5497,47202000 +5498,46034000 +5499,44855000 +5500,44895000 +5501,45484000 +5502,47878000 +5503,53421000 +5504,58784000 +5505,62622000 +5506,64365000 +5507,65925000 +5508,67318000 +5509,66344000 +5510,65550000 +5511,63853000 +5512,62049000 +5513,60854000 +5514,60639000 +5515,59955000 +5516,58957000 +5517,58214000 +5518,57342000 +5519,53442000 +5520,48826000 +5521,45839000 +5522,44844000 +5523,43811000 +5524,44019000 +5525,44953000 +5526,47297000 +5527,53575000 +5528,58323000 +5529,60938000 +5530,61666000 +5531,62270000 +5532,63991000 +5533,63104000 +5534,62159000 +5535,60427000 +5536,58612000 +5537,57897000 +5538,58239000 +5539,58236000 +5540,58224000 +5541,57685000 +5542,57218000 +5543,53142000 +5544,48473000 +5545,45377000 +5546,44514000 +5547,43743000 +5548,43556000 +5549,44424000 +5550,46902000 +5551,52248000 +5552,57473000 +5553,60459000 +5554,61092000 +5555,61883000 +5556,63138000 +5557,62638000 +5558,61308000 +5559,57927000 +5560,57138000 +5561,56817000 +5562,57380000 +5563,57569000 +5564,57128000 +5565,55926000 +5566,55461000 +5567,52174000 +5568,47904000 +5569,43794000 +5570,41882000 +5571,41735000 +5572,42480000 +5573,42384000 +5574,42726000 +5575,43138000 +5576,45598000 +5577,48540000 +5578,51004000 +5579,52012000 +5580,52940000 +5581,52311000 +5582,50407000 +5583,48012000 +5584,47374000 +5585,47161000 +5586,47857000 +5587,48477000 +5588,48349000 +5589,47494000 +5590,47555000 +5591,45258000 +5592,42069000 +5593,39835000 +5594,38397000 +5595,38347000 +5596,38518000 +5597,38291000 +5598,38438000 +5599,38448000 +5600,39230000 +5601,41509000 +5602,43071000 +5603,44973000 +5604,47335000 +5605,47503000 +5606,45988000 +5607,45051000 +5608,44961000 +5609,45539000 +5610,46757000 +5611,47622000 +5612,47878000 +5613,48237000 +5614,48118000 +5615,46186000 +5616,42712000 +5617,42692000 +5618,42903000 +5619,40786000 +5620,40444000 +5621,41925000 +5622,45318000 +5623,52990000 +5624,58784000 +5625,62745000 +5626,65213000 +5627,66962000 +5628,68814000 +5629,67787000 +5630,66635000 +5631,65888000 +5632,65593000 +5633,63956000 +5634,63454000 +5635,62829000 +5636,62203000 +5637,61405000 +5638,59634000 +5639,55272000 +5640,50148000 +5641,48002000 +5642,46717000 +5643,45507000 +5644,45645000 +5645,46949000 +5646,49213000 +5647,54994000 +5648,59500000 +5649,62857000 +5650,64565000 +5651,65960000 +5652,67431000 +5653,66652000 +5654,65093000 +5655,63828000 +5656,62616000 +5657,61169000 +5658,60907000 +5659,60690000 +5660,59914000 +5661,59019000 +5662,57638000 +5663,53900000 +5664,50836000 +5665,48418000 +5666,47342000 +5667,46157000 +5668,45792000 +5669,47015000 +5670,49896000 +5671,55673000 +5672,60359000 +5673,63066000 +5674,63892000 +5675,65043000 +5676,66191000 +5677,65228000 +5678,64229000 +5679,62935000 +5680,61176000 +5681,59917000 +5682,60179000 +5683,60046000 +5684,59615000 +5685,59099000 +5686,57360000 +5687,52926000 +5688,48496000 +5689,45613000 +5690,44564000 +5691,43667000 +5692,43884000 +5693,44852000 +5694,47418000 +5695,53870000 +5696,59172000 +5697,61800000 +5698,62592000 +5699,63916000 +5700,65196000 +5701,64594000 +5702,64518000 +5703,63535000 +5704,62916000 +5705,61627000 +5706,61774000 +5707,61390000 +5708,61202000 +5709,60450000 +5710,57848000 +5711,53644000 +5712,48751000 +5713,46194000 +5714,45274000 +5715,44657000 +5716,44708000 +5717,45660000 +5718,48813000 +5719,55489000 +5720,60978000 +5721,64531000 +5722,65790000 +5723,67292000 +5724,68652000 +5725,66850000 +5726,64462000 +5727,61223000 +5728,59603000 +5729,58819000 +5730,59634000 +5731,60017000 +5732,59344000 +5733,58188000 +5734,55716000 +5735,52238000 +5736,48157000 +5737,45243000 +5738,44174000 +5739,43419000 +5740,42735000 +5741,42480000 +5742,42968000 +5743,44174000 +5744,46283000 +5745,49537000 +5746,51953000 +5747,53836000 +5748,54830000 +5749,53222000 +5750,50924000 +5751,49386000 +5752,48518000 +5753,48385000 +5754,48918000 +5755,49791000 +5756,49874000 +5757,49316000 +5758,48022000 +5759,45813000 +5760,42567000 +5761,39468000 +5762,38158000 +5763,37326000 +5764,36842000 +5765,38044000 +5766,38114000 +5767,38661000 +5768,39936000 +5769,41766000 +5770,43768000 +5771,45718000 +5772,48341000 +5773,48444000 +5774,47227000 +5775,46000000 +5776,45130000 +5777,45987000 +5778,46582000 +5779,48251000 +5780,48795000 +5781,49421000 +5782,48060000 +5783,46288000 +5784,42793000 +5785,40567000 +5786,39736000 +5787,39857000 +5788,40596000 +5789,40872000 +5790,44033000 +5791,52385000 +5792,58191000 +5793,61789000 +5794,63084000 +5795,64162000 +5796,65253000 +5797,64531000 +5798,63548000 +5799,62377000 +5800,61240000 +5801,59993000 +5802,60094000 +5803,60173000 +5804,60154000 +5805,59548000 +5806,57007000 +5807,52607000 +5808,47792000 +5809,44973000 +5810,44383000 +5811,44203000 +5812,44654000 +5813,45932000 +5814,48557000 +5815,54707000 +5816,59663000 +5817,62012000 +5818,62774000 +5819,64297000 +5820,65008000 +5821,63548000 +5822,62268000 +5823,60700000 +5824,59371000 +5825,58092000 +5826,58406000 +5827,58650000 +5828,58763000 +5829,59419000 +5830,57145000 +5831,52382000 +5832,47586000 +5833,46272000 +5834,45853000 +5835,45512000 +5836,45606000 +5837,46795000 +5838,49365000 +5839,55816000 +5840,60610000 +5841,62736000 +5842,62937000 +5843,63418000 +5844,64519000 +5845,63887000 +5846,63701000 +5847,62785000 +5848,61317000 +5849,59465000 +5850,59349000 +5851,59738000 +5852,60369000 +5853,60895000 +5854,58107000 +5855,53628000 +5856,49074000 +5857,46211000 +5858,45323000 +5859,45067000 +5860,45114000 +5861,46529000 +5862,49063000 +5863,55361000 +5864,60135000 +5865,62121000 +5866,62298000 +5867,63045000 +5868,64372000 +5869,63799000 +5870,63745000 +5871,62434000 +5872,61508000 +5873,60146000 +5874,60122000 +5875,60544000 +5876,60975000 +5877,61408000 +5878,58413000 +5879,53956000 +5880,49448000 +5881,46943000 +5882,45966000 +5883,45756000 +5884,46037000 +5885,47573000 +5886,50076000 +5887,56428000 +5888,61115000 +5889,63499000 +5890,63661000 +5891,64400000 +5892,64824000 +5893,63551000 +5894,62340000 +5895,61093000 +5896,59849000 +5897,58559000 +5898,58996000 +5899,58983000 +5900,59222000 +5901,59838000 +5902,56829000 +5903,52993000 +5904,48460000 +5905,44952000 +5906,43238000 +5907,43047000 +5908,42542000 +5909,42838000 +5910,43529000 +5911,44683000 +5912,47020000 +5913,50789000 +5914,52826000 +5915,53940000 +5916,54670000 +5917,52870000 +5918,51251000 +5919,49601000 +5920,48404000 +5921,48001000 +5922,48952000 +5923,50290000 +5924,51045000 +5925,51508000 +5926,49327000 +5927,47145000 +5928,43204000 +5929,40178000 +5930,39113000 +5931,38828000 +5932,38691000 +5933,39008000 +5934,39275000 +5935,38407000 +5936,39566000 +5937,41438000 +5938,43562000 +5939,44822000 +5940,45761000 +5941,44941000 +5942,43279000 +5943,42095000 +5944,41323000 +5945,41815000 +5946,44041000 +5947,47179000 +5948,49072000 +5949,50771000 +5950,49784000 +5951,47822000 +5952,43951000 +5953,41232000 +5954,40685000 +5955,40566000 +5956,40924000 +5957,42602000 +5958,46236000 +5959,54391000 +5960,59576000 +5961,62035000 +5962,62027000 +5963,62303000 +5964,63084000 +5965,62099000 +5966,60846000 +5967,59982000 +5968,59181000 +5969,58166000 +5970,58645000 +5971,59636000 +5972,60738000 +5973,61481000 +5974,58297000 +5975,53894000 +5976,49524000 +5977,45831000 +5978,44839000 +5979,43977000 +5980,44177000 +5981,45509000 +5982,48867000 +5983,55857000 +5984,60921000 +5985,64126000 +5986,65677000 +5987,66446000 +5988,68976000 +5989,67710000 +5990,67150000 +5991,66499000 +5992,65961000 +5993,64308000 +5994,64221000 +5995,63717000 +5996,63999000 +5997,64009000 +5998,60347000 +5999,55923000 +6000,51320000 +6001,48643000 +6002,47310000 +6003,46048000 +6004,46289000 +6005,47805000 +6006,50615000 +6007,57803000 +6008,63411000 +6009,66198000 +6010,67296000 +6011,69021000 +6012,70578000 +6013,70066000 +6014,69865000 +6015,68385000 +6016,67274000 +6017,66048000 +6018,65156000 +6019,64409000 +6020,64394000 +6021,63569000 +6022,60231000 +6023,55704000 +6024,50710000 +6025,48067000 +6026,47136000 +6027,46138000 +6028,46128000 +6029,47331000 +6030,50473000 +6031,57750000 +6032,63184000 +6033,65967000 +6034,66287000 +6035,67015000 +6036,69056000 +6037,67903000 +6038,66310000 +6039,65788000 +6040,64304000 +6041,62926000 +6042,62626000 +6043,62773000 +6044,63340000 +6045,63371000 +6046,59817000 +6047,55370000 +6048,50842000 +6049,47551000 +6050,46572000 +6051,45582000 +6052,45664000 +6053,46686000 +6054,49414000 +6055,57032000 +6056,62333000 +6057,64589000 +6058,64984000 +6059,66147000 +6060,66634000 +6061,65200000 +6062,63578000 +6063,61891000 +6064,60969000 +6065,60157000 +6066,60426000 +6067,60461000 +6068,60914000 +6069,61324000 +6070,57492000 +6071,53890000 +6072,49309000 +6073,44786000 +6074,42726000 +6075,42153000 +6076,42283000 +6077,42487000 +6078,43067000 +6079,44541000 +6080,46835000 +6081,50692000 +6082,53112000 +6083,53648000 +6084,53371000 +6085,52151000 +6086,50301000 +6087,48617000 +6088,47290000 +6089,47334000 +6090,48718000 +6091,50200000 +6092,51073000 +6093,52035000 +6094,48914000 +6095,46481000 +6096,42945000 +6097,40982000 +6098,38799000 +6099,38005000 +6100,38469000 +6101,38461000 +6102,38935000 +6103,39618000 +6104,40347000 +6105,42523000 +6106,44107000 +6107,45976000 +6108,47914000 +6109,47584000 +6110,45897000 +6111,44418000 +6112,43495000 +6113,43903000 +6114,45637000 +6115,47574000 +6116,49931000 +6117,51916000 +6118,49807000 +6119,48190000 +6120,44643000 +6121,42114000 +6122,41487000 +6123,40966000 +6124,41127000 +6125,42732000 +6126,45913000 +6127,55824000 +6128,62074000 +6129,64954000 +6130,65661000 +6131,66715000 +6132,67935000 +6133,66869000 +6134,66165000 +6135,64493000 +6136,63676000 +6137,62124000 +6138,62064000 +6139,62121000 +6140,63253000 +6141,63546000 +6142,59410000 +6143,54394000 +6144,48964000 +6145,46374000 +6146,45069000 +6147,44913000 +6148,45587000 +6149,46943000 +6150,50331000 +6151,58376000 +6152,63814000 +6153,66711000 +6154,67258000 +6155,66549000 +6156,69683000 +6157,67714000 +6158,67160000 +6159,65843000 +6160,64673000 +6161,63445000 +6162,63229000 +6163,63476000 +6164,64612000 +6165,63969000 +6166,59821000 +6167,55338000 +6168,50897000 +6169,48521000 +6170,48103000 +6171,47555000 +6172,48083000 +6173,49344000 +6174,52439000 +6175,60097000 +6176,64422000 +6177,66206000 +6178,66375000 +6179,67537000 +6180,68883000 +6181,68091000 +6182,67247000 +6183,66078000 +6184,64792000 +6185,63522000 +6186,63227000 +6187,63030000 +6188,63852000 +6189,64342000 +6190,60967000 +6191,56768000 +6192,51766000 +6193,48524000 +6194,47730000 +6195,46658000 +6196,46878000 +6197,48295000 +6198,51470000 +6199,59045000 +6200,63911000 +6201,65491000 +6202,65161000 +6203,65765000 +6204,67736000 +6205,68121000 +6206,67585000 +6207,66487000 +6208,65593000 +6209,63795000 +6210,63244000 +6211,62988000 +6212,64265000 +6213,64076000 +6214,60149000 +6215,55851000 +6216,51024000 +6217,47058000 +6218,46271000 +6219,45340000 +6220,45633000 +6221,47058000 +6222,50060000 +6223,57648000 +6224,62624000 +6225,64464000 +6226,64382000 +6227,65256000 +6228,66585000 +6229,65640000 +6230,64402000 +6231,62840000 +6232,62245000 +6233,61705000 +6234,61553000 +6235,61656000 +6236,62540000 +6237,62677000 +6238,58639000 +6239,55502000 +6240,51316000 +6241,47670000 +6242,45877000 +6243,45088000 +6244,45497000 +6245,45841000 +6246,45805000 +6247,46543000 +6248,48586000 +6249,51834000 +6250,54376000 +6251,55278000 +6252,55275000 +6253,54304000 +6254,52597000 +6255,51532000 +6256,50963000 +6257,50396000 +6258,50939000 +6259,51846000 +6260,53336000 +6261,53169000 +6262,50115000 +6263,48242000 +6264,44804000 +6265,41991000 +6266,40264000 +6267,39792000 +6268,39424000 +6269,39778000 +6270,39451000 +6271,39605000 +6272,40389000 +6273,42307000 +6274,44280000 +6275,46190000 +6276,47864000 +6277,47124000 +6278,45070000 +6279,43780000 +6280,42954000 +6281,42713000 +6282,44704000 +6283,47486000 +6284,50166000 +6285,51147000 +6286,48860000 +6287,47696000 +6288,44372000 +6289,42499000 +6290,41900000 +6291,41357000 +6292,41808000 +6293,43113000 +6294,46228000 +6295,55797000 +6296,61549000 +6297,63894000 +6298,63981000 +6299,64689000 +6300,65403000 +6301,64503000 +6302,63858000 +6303,62682000 +6304,61994000 +6305,60962000 +6306,61252000 +6307,62231000 +6308,64282000 +6309,63853000 +6310,59771000 +6311,55751000 +6312,50836000 +6313,47409000 +6314,46752000 +6315,46035000 +6316,46087000 +6317,47802000 +6318,50698000 +6319,59189000 +6320,63563000 +6321,65306000 +6322,65095000 +6323,65726000 +6324,66265000 +6325,65273000 +6326,64446000 +6327,63568000 +6328,62624000 +6329,61330000 +6330,61518000 +6331,62158000 +6332,64315000 +6333,64002000 +6334,59741000 +6335,55320000 +6336,50192000 +6337,47703000 +6338,46280000 +6339,45222000 +6340,45568000 +6341,47391000 +6342,49938000 +6343,58772000 +6344,63377000 +6345,64783000 +6346,64383000 +6347,64815000 +6348,65481000 +6349,64674000 +6350,64074000 +6351,63175000 +6352,62491000 +6353,61013000 +6354,61343000 +6355,61798000 +6356,64259000 +6357,64116000 +6358,59916000 +6359,55365000 +6360,50856000 +6361,47413000 +6362,46735000 +6363,45832000 +6364,46005000 +6365,47453000 +6366,50560000 +6367,58655000 +6368,63067000 +6369,64411000 +6370,64160000 +6371,64712000 +6372,65207000 +6373,64179000 +6374,63510000 +6375,62971000 +6376,59815000 +6377,59787000 +6378,61015000 +6379,62130000 +6380,64988000 +6381,64648000 +6382,60419000 +6383,55591000 +6384,50800000 +6385,47675000 +6386,46477000 +6387,45011000 +6388,45514000 +6389,47377000 +6390,50283000 +6391,58504000 +6392,63391000 +6393,65016000 +6394,64635000 +6395,65346000 +6396,65744000 +6397,64419000 +6398,63083000 +6399,62134000 +6400,61696000 +6401,61244000 +6402,62085000 +6403,62796000 +6404,64263000 +6405,61943000 +6406,57850000 +6407,53887000 +6408,48979000 +6409,45161000 +6410,43143000 +6411,41940000 +6412,42672000 +6413,42967000 +6414,43889000 +6415,45201000 +6416,47715000 +6417,51772000 +6418,54515000 +6419,55483000 +6420,56076000 +6421,54816000 +6422,52244000 +6423,50767000 +6424,50187000 +6425,50215000 +6426,51503000 +6427,53080000 +6428,54584000 +6429,52539000 +6430,49510000 +6431,47429000 +6432,43503000 +6433,41030000 +6434,39788000 +6435,39220000 +6436,39099000 +6437,39198000 +6438,38972000 +6439,39279000 +6440,40308000 +6441,43247000 +6442,45013000 +6443,47265000 +6444,49198000 +6445,48279000 +6446,46290000 +6447,45065000 +6448,44692000 +6449,45138000 +6450,46632000 +6451,49315000 +6452,52189000 +6453,51878000 +6454,49657000 +6455,48279000 +6456,44653000 +6457,42649000 +6458,42376000 +6459,42539000 +6460,43230000 +6461,45262000 +6462,48490000 +6463,57974000 +6464,64109000 +6465,66247000 +6466,65866000 +6467,66533000 +6468,67538000 +6469,67077000 +6470,66866000 +6471,66233000 +6472,66165000 +6473,65527000 +6474,66205000 +6475,67102000 +6476,68897000 +6477,66177000 +6478,62219000 +6479,58213000 +6480,53639000 +6481,50209000 +6482,49116000 +6483,48217000 +6484,48343000 +6485,50065000 +6486,52693000 +6487,60302000 +6488,65942000 +6489,67969000 +6490,68346000 +6491,69457000 +6492,70406000 +6493,69717000 +6494,69054000 +6495,68383000 +6496,67183000 +6497,66104000 +6498,66261000 +6499,66642000 +6500,68180000 +6501,65114000 +6502,61104000 +6503,57129000 +6504,52138000 +6505,48736000 +6506,47986000 +6507,47321000 +6508,48054000 +6509,49385000 +6510,51889000 +6511,60002000 +6512,64889000 +6513,65945000 +6514,65587000 +6515,65786000 +6516,66275000 +6517,65028000 +6518,64195000 +6519,62909000 +6520,62159000 +6521,61205000 +6522,61785000 +6523,63185000 +6524,66086000 +6525,64144000 +6526,60088000 +6527,56226000 +6528,51403000 +6529,48413000 +6530,47471000 +6531,46838000 +6532,47379000 +6533,48794000 +6534,51754000 +6535,59190000 +6536,63810000 +6537,64993000 +6538,64942000 +6539,65044000 +6540,65713000 +6541,64891000 +6542,64468000 +6543,64153000 +6544,63891000 +6545,63256000 +6546,63756000 +6547,64782000 +6548,67000000 +6549,64225000 +6550,60242000 +6551,56430000 +6552,51752000 +6553,48308000 +6554,46769000 +6555,46498000 +6556,47027000 +6557,48508000 +6558,51185000 +6559,58607000 +6560,63658000 +6561,65730000 +6562,66004000 +6563,66971000 +6564,67646000 +6565,66450000 +6566,64392000 +6567,62194000 +6568,61043000 +6569,59810000 +6570,60622000 +6571,61659000 +6572,64664000 +6573,62431000 +6574,58426000 +6575,55080000 +6576,50443000 +6577,46633000 +6578,44800000 +6579,43871000 +6580,43887000 +6581,44664000 +6582,44555000 +6583,46144000 +6584,48672000 +6585,52132000 +6586,55261000 +6587,56915000 +6588,57907000 +6589,57088000 +6590,54985000 +6591,53103000 +6592,51920000 +6593,51645000 +6594,52716000 +6595,54462000 +6596,56741000 +6597,53894000 +6598,50957000 +6599,49215000 +6600,45142000 +6601,41979000 +6602,40131000 +6603,38913000 +6604,39568000 +6605,40597000 +6606,41005000 +6607,41338000 +6608,42006000 +6609,43723000 +6610,45411000 +6611,46834000 +6612,48720000 +6613,48332000 +6614,46362000 +6615,45109000 +6616,44332000 +6617,44653000 +6618,46435000 +6619,49652000 +6620,53933000 +6621,52947000 +6622,50474000 +6623,48569000 +6624,44696000 +6625,41993000 +6626,41973000 +6627,41738000 +6628,42285000 +6629,43187000 +6630,46492000 +6631,55706000 +6632,61437000 +6633,64090000 +6634,64352000 +6635,65102000 +6636,66146000 +6637,65342000 +6638,64741000 +6639,63937000 +6640,63242000 +6641,61602000 +6642,61765000 +6643,63392000 +6644,66952000 +6645,64250000 +6646,60174000 +6647,55726000 +6648,50965000 +6649,47833000 +6650,46954000 +6651,46020000 +6652,46315000 +6653,47130000 +6654,49513000 +6655,57750000 +6656,63898000 +6657,65402000 +6658,65532000 +6659,66840000 +6660,67904000 +6661,67063000 +6662,66713000 +6663,65623000 +6664,64648000 +6665,63282000 +6666,63329000 +6667,64186000 +6668,67169000 +6669,63908000 +6670,59654000 +6671,55732000 +6672,50579000 +6673,47846000 +6674,46937000 +6675,45433000 +6676,45936000 +6677,46842000 +6678,49647000 +6679,58149000 +6680,64183000 +6681,65473000 +6682,65138000 +6683,65791000 +6684,66810000 +6685,65890000 +6686,65527000 +6687,64423000 +6688,63666000 +6689,62162000 +6690,62452000 +6691,64009000 +6692,67178000 +6693,63803000 +6694,59475000 +6695,55277000 +6696,50577000 +6697,47750000 +6698,46961000 +6699,46063000 +6700,46202000 +6701,47139000 +6702,49896000 +6703,57986000 +6704,64411000 +6705,65927000 +6706,65993000 +6707,66821000 +6708,67984000 +6709,67114000 +6710,65854000 +6711,64729000 +6712,64052000 +6713,62645000 +6714,63225000 +6715,64534000 +6716,66897000 +6717,63380000 +6718,59199000 +6719,55306000 +6720,50224000 +6721,47631000 +6722,46902000 +6723,46286000 +6724,46678000 +6725,47881000 +6726,50890000 +6727,58767000 +6728,64790000 +6729,66459000 +6730,66720000 +6731,67623000 +6732,68697000 +6733,67601000 +6734,65918000 +6735,63513000 +6736,61886000 +6737,60400000 +6738,60710000 +6739,62076000 +6740,65583000 +6741,62547000 +6742,58771000 +6743,55660000 +6744,50994000 +6745,47110000 +6746,45059000 +6747,43663000 +6748,44101000 +6749,44551000 +6750,45393000 +6751,46359000 +6752,48874000 +6753,51528000 +6754,53816000 +6755,55139000 +6756,55593000 +6757,54358000 +6758,52101000 +6759,50877000 +6760,50164000 +6761,49658000 +6762,50780000 +6763,53135000 +6764,56750000 +6765,54068000 +6766,50608000 +6767,48458000 +6768,44526000 +6769,41291000 +6770,39834000 +6771,39729000 +6772,40607000 +6773,40859000 +6774,41043000 +6775,40834000 +6776,41122000 +6777,42994000 +6778,44833000 +6779,46699000 +6780,48696000 +6781,47622000 +6782,45173000 +6783,43168000 +6784,42385000 +6785,42619000 +6786,45085000 +6787,48863000 +6788,53169000 +6789,51182000 +6790,49254000 +6791,48196000 +6792,44536000 +6793,42300000 +6794,41781000 +6795,42222000 +6796,42669000 +6797,44461000 +6798,47048000 +6799,55469000 +6800,61874000 +6801,64003000 +6802,64140000 +6803,64473000 +6804,65020000 +6805,64182000 +6806,63065000 +6807,61755000 +6808,61202000 +6809,60129000 +6810,60953000 +6811,63048000 +6812,66662000 +6813,63238000 +6814,59420000 +6815,55693000 +6816,51040000 +6817,47839000 +6818,46899000 +6819,46504000 +6820,47075000 +6821,48722000 +6822,51288000 +6823,57624000 +6824,63608000 +6825,65080000 +6826,65410000 +6827,66053000 +6828,66979000 +6829,65959000 +6830,64934000 +6831,63677000 +6832,62636000 +6833,61732000 +6834,62329000 +6835,64427000 +6836,67457000 +6837,63887000 +6838,60258000 +6839,56692000 +6840,51739000 +6841,49328000 +6842,48011000 +6843,47410000 +6844,48313000 +6845,49789000 +6846,52367000 +6847,59046000 +6848,63913000 +6849,65591000 +6850,65896000 +6851,66679000 +6852,67523000 +6853,66426000 +6854,65225000 +6855,63765000 +6856,62495000 +6857,61420000 +6858,62029000 +6859,64221000 +6860,67540000 +6861,63864000 +6862,60384000 +6863,57207000 +6864,52339000 +6865,49386000 +6866,48603000 +6867,47948000 +6868,48381000 +6869,49848000 +6870,51840000 +6871,58451000 +6872,64126000 +6873,66106000 +6874,66613000 +6875,67615000 +6876,68604000 +6877,67843000 +6878,66758000 +6879,65386000 +6880,64446000 +6881,63098000 +6882,63775000 +6883,65996000 +6884,67656000 +6885,63995000 +6886,60460000 +6887,57461000 +6888,52660000 +6889,49533000 +6890,48014000 +6891,47733000 +6892,48232000 +6893,49677000 +6894,52020000 +6895,58239000 +6896,64281000 +6897,66425000 +6898,67215000 +6899,68361000 +6900,69266000 +6901,68582000 +6902,67084000 +6903,65167000 +6904,64121000 +6905,62985000 +6906,63205000 +6907,65054000 +6908,65782000 +6909,60925000 +6910,57500000 +6911,55476000 +6912,51316000 +6913,47560000 +6914,45208000 +6915,44167000 +6916,44365000 +6917,45256000 +6918,45170000 +6919,45691000 +6920,48844000 +6921,52650000 +6922,56104000 +6923,58500000 +6924,59719000 +6925,58688000 +6926,56680000 +6927,55087000 +6928,54402000 +6929,53755000 +6930,54896000 +6931,57483000 +6932,57925000 +6933,54095000 +6934,51089000 +6935,50027000 +6936,47332000 +6937,44015000 +6938,42097000 +6939,41057000 +6940,41542000 +6941,42058000 +6942,41862000 +6943,41197000 +6944,41749000 +6945,43858000 +6946,47212000 +6947,50267000 +6948,53117000 +6949,52761000 +6950,50562000 +6951,49076000 +6952,47837000 +6953,47088000 +6954,48371000 +6955,52151000 +6956,54432000 +6957,52117000 +6958,50912000 +6959,50966000 +6960,47740000 +6961,45231000 +6962,43738000 +6963,44043000 +6964,44592000 +6965,46016000 +6966,48723000 +6967,56008000 +6968,62649000 +6969,65177000 +6970,66041000 +6971,67040000 +6972,68001000 +6973,67319000 +6974,66543000 +6975,65088000 +6976,64266000 +6977,62523000 +6978,62709000 +6979,65481000 +6980,67383000 +6981,63662000 +6982,60328000 +6983,57597000 +6984,53021000 +6985,50216000 +6986,49590000 +6987,48699000 +6988,49150000 +6989,50613000 +6990,52989000 +6991,58946000 +6992,65073000 +6993,67380000 +6994,67757000 +6995,68951000 +6996,69686000 +6997,69107000 +6998,68615000 +6999,67448000 +7000,66532000 +7001,64910000 +7002,64708000 +7003,66639000 +7004,67738000 +7005,63754000 +7006,60547000 +7007,57609000 +7008,53538000 +7009,50260000 +7010,49410000 +7011,49117000 +7012,48745000 +7013,49762000 +7014,52081000 +7015,58121000 +7016,64585000 +7017,66829000 +7018,67401000 +7019,68594000 +7020,69589000 +7021,69018000 +7022,68562000 +7023,67533000 +7024,65937000 +7025,64411000 +7026,64878000 +7027,67984000 +7028,69471000 +7029,66915000 +7030,64438000 +7031,62239000 +7032,58027000 +7033,55402000 +7034,54093000 +7035,53215000 +7036,53011000 +7037,52726000 +7038,53365000 +7039,59662000 +7040,65867000 +7041,67323000 +7042,67488000 +7043,68643000 +7044,69801000 +7045,69343000 +7046,68289000 +7047,66328000 +7048,65229000 +7049,63916000 +7050,64442000 +7051,67682000 +7052,70907000 +7053,67998000 +7054,65404000 +7055,62710000 +7056,58605000 +7057,55939000 +7058,55067000 +7059,54229000 +7060,54187000 +7061,54557000 +7062,56542000 +7063,61822000 +7064,67145000 +7065,68669000 +7066,68713000 +7067,69286000 +7068,69835000 +7069,69146000 +7070,67689000 +7071,66166000 +7072,64823000 +7073,63419000 +7074,63586000 +7075,65967000 +7076,66515000 +7077,62751000 +7078,59553000 +7079,57643000 +7080,53668000 +7081,50056000 +7082,48370000 +7083,47107000 +7084,46509000 +7085,46488000 +7086,46678000 +7087,46992000 +7088,49588000 +7089,53132000 +7090,55541000 +7091,57184000 +7092,58128000 +7093,57201000 +7094,55270000 +7095,53861000 +7096,53210000 +7097,53075000 +7098,54956000 +7099,58841000 +7100,58935000 +7101,55137000 +7102,53224000 +7103,51961000 +7104,48562000 +7105,45474000 +7106,43871000 +7107,44098000 +7108,43936000 +7109,44592000 +7110,44686000 +7111,44666000 +7112,46154000 +7113,48392000 +7114,51075000 +7115,54352000 +7116,57045000 +7117,57334000 +7118,55294000 +7119,53121000 +7120,51917000 +7121,51426000 +7122,52012000 +7123,55456000 +7124,56768000 +7125,54257000 +7126,52641000 +7127,52298000 +7128,48785000 +7129,46761000 +7130,45457000 +7131,45784000 +7132,46745000 +7133,47549000 +7134,49720000 +7135,57957000 +7136,64930000 +7137,66860000 +7138,67267000 +7139,67619000 +7140,68240000 +7141,67567000 +7142,67413000 +7143,66525000 +7144,65532000 +7145,63740000 +7146,63978000 +7147,67291000 +7148,68821000 +7149,65412000 +7150,62349000 +7151,59612000 +7152,55354000 +7153,52494000 +7154,51637000 +7155,50774000 +7156,51140000 +7157,51865000 +7158,53875000 +7159,60801000 +7160,67556000 +7161,68359000 +7162,67027000 +7163,66763000 +7164,67562000 +7165,66886000 +7166,66473000 +7167,65330000 +7168,64535000 +7169,63485000 +7170,63825000 +7171,67977000 +7172,68569000 +7173,65093000 +7174,61899000 +7175,59010000 +7176,54518000 +7177,51426000 +7178,50267000 +7179,49714000 +7180,50233000 +7181,51303000 +7182,53504000 +7183,60735000 +7184,66718000 +7185,68272000 +7186,67860000 +7187,68416000 +7188,68978000 +7189,68179000 +7190,67573000 +7191,66549000 +7192,65660000 +7193,64401000 +7194,65223000 +7195,68680000 +7196,68836000 +7197,64945000 +7198,61593000 +7199,58513000 +7200,54125000 +7201,51104000 +7202,49860000 +7203,48998000 +7204,49067000 +7205,50052000 +7206,52153000 +7207,59670000 +7208,66331000 +7209,68119000 +7210,67565000 +7211,68161000 +7212,68940000 +7213,68012000 +7214,67174000 +7215,65909000 +7216,65199000 +7217,64024000 +7218,64703000 +7219,68168000 +7220,68371000 +7221,65102000 +7222,61739000 +7223,58728000 +7224,53913000 +7225,51129000 +7226,49893000 +7227,49286000 +7228,49499000 +7229,50921000 +7230,53000000 +7231,59696000 +7232,66507000 +7233,67620000 +7234,66433000 +7235,66296000 +7236,66356000 +7237,65142000 +7238,63870000 +7239,62589000 +7240,61329000 +7241,60687000 +7242,61910000 +7243,66504000 +7244,66935000 +7245,62833000 +7246,59234000 +7247,57090000 +7248,52908000 +7249,49324000 +7250,48264000 +7251,47482000 +7252,47169000 +7253,47395000 +7254,47022000 +7255,47206000 +7256,50357000 +7257,53144000 +7258,55251000 +7259,56657000 +7260,57103000 +7261,56273000 +7262,54601000 +7263,53182000 +7264,52452000 +7265,52315000 +7266,54129000 +7267,58064000 +7268,57814000 +7269,54084000 +7270,51252000 +7271,50449000 +7272,46684000 +7273,43668000 +7274,41927000 +7275,41029000 +7276,41698000 +7277,41748000 +7278,41362000 +7279,41225000 +7280,43381000 +7281,46080000 +7282,48128000 +7283,49828000 +7284,51834000 +7285,50727000 +7286,48368000 +7287,47113000 +7288,47056000 +7289,47841000 +7290,52925000 +7291,54059000 +7292,52374000 +7293,49631000 +7294,48293000 +7295,47687000 +7296,43876000 +7297,41808000 +7298,41035000 +7299,41532000 +7300,42210000 +7301,43426000 +7302,43638000 +7303,46189000 +7304,49028000 +7305,50974000 +7306,52108000 +7307,52726000 +7308,54157000 +7309,53560000 +7310,52654000 +7311,51946000 +7312,52023000 +7313,53646000 +7314,58843000 +7315,60312000 +7316,59000000 +7317,55978000 +7318,53465000 +7319,51876000 +7320,47922000 +7321,45101000 +7322,44217000 +7323,43836000 +7324,44628000 +7325,46220000 +7326,49025000 +7327,57829000 +7328,64340000 +7329,66594000 +7330,67292000 +7331,68470000 +7332,69866000 +7333,69189000 +7334,68542000 +7335,67642000 +7336,67531000 +7337,67534000 +7338,70994000 +7339,71079000 +7340,69118000 +7341,65162000 +7342,61580000 +7343,58222000 +7344,53126000 +7345,48822000 +7346,48464000 +7347,48252000 +7348,49120000 +7349,50733000 +7350,52744000 +7351,60626000 +7352,66757000 +7353,68847000 +7354,68694000 +7355,69474000 +7356,70855000 +7357,69839000 +7358,68750000 +7359,66172000 +7360,66384000 +7361,66541000 +7362,69943000 +7363,69846000 +7364,67813000 +7365,64200000 +7366,60746000 +7367,57754000 +7368,51872000 +7369,48008000 +7370,47081000 +7371,46781000 +7372,47791000 +7373,49463000 +7374,51810000 +7375,59173000 +7376,65100000 +7377,67003000 +7378,68879000 +7379,69560000 +7380,70421000 +7381,70268000 +7382,70111000 +7383,69475000 +7384,68760000 +7385,69384000 +7386,72264000 +7387,72836000 +7388,71703000 +7389,68044000 +7390,64809000 +7391,61761000 +7392,56618000 +7393,54227000 +7394,52736000 +7395,51813000 +7396,51946000 +7397,53471000 +7398,56620000 +7399,64118000 +7400,68988000 +7401,69911000 +7402,69107000 +7403,69573000 +7404,70310000 +7405,69033000 +7406,67854000 +7407,66572000 +7408,66155000 +7409,66473000 +7410,69677000 +7411,69344000 +7412,66915000 +7413,62464000 +7414,58728000 +7415,56173000 +7416,52191000 +7417,48322000 +7418,46377000 +7419,45851000 +7420,46424000 +7421,46765000 +7422,47109000 +7423,47514000 +7424,49933000 +7425,52584000 +7426,55496000 +7427,57544000 +7428,58903000 +7429,57357000 +7430,55658000 +7431,54310000 +7432,54097000 +7433,55532000 +7434,59637000 +7435,60086000 +7436,58048000 +7437,53851000 +7438,51193000 +7439,50273000 +7440,47141000 +7441,43774000 +7442,42379000 +7443,41745000 +7444,41686000 +7445,42251000 +7446,41744000 +7447,41005000 +7448,41459000 +7449,43705000 +7450,46718000 +7451,49114000 +7452,51912000 +7453,51670000 +7454,50048000 +7455,49032000 +7456,48703000 +7457,50698000 +7458,55587000 +7459,56742000 +7460,55552000 +7461,53333000 +7462,51598000 +7463,51603000 +7464,48130000 +7465,45421000 +7466,45076000 +7467,44710000 +7468,45651000 +7469,46626000 +7470,49353000 +7471,57986000 +7472,64453000 +7473,66936000 +7474,66976000 +7475,67627000 +7476,68531000 +7477,68000000 +7478,68040000 +7479,67246000 +7480,67072000 +7481,67362000 +7482,70963000 +7483,70691000 +7484,68839000 +7485,65008000 +7486,61475000 +7487,58546000 +7488,53578000 +7489,50034000 +7490,48955000 +7491,48691000 +7492,48967000 +7493,50374000 +7494,52182000 +7495,60060000 +7496,66792000 +7497,68695000 +7498,67984000 +7499,68071000 +7500,68508000 +7501,67185000 +7502,66811000 +7503,66672000 +7504,67176000 +7505,68359000 +7506,72095000 +7507,71926000 +7508,69817000 +7509,65711000 +7510,62061000 +7511,58957000 +7512,53673000 +7513,50919000 +7514,49653000 +7515,48986000 +7516,49228000 +7517,50502000 +7518,52376000 +7519,59772000 +7520,65874000 +7521,67332000 +7522,67273000 +7523,68290000 +7524,69075000 +7525,68407000 +7526,68485000 +7527,68207000 +7528,68489000 +7529,69426000 +7530,72373000 +7531,71483000 +7532,69325000 +7533,65494000 +7534,62085000 +7535,59621000 +7536,55396000 +7537,52071000 +7538,51112000 +7539,49732000 +7540,49825000 +7541,51148000 +7542,53199000 +7543,59833000 +7544,65503000 +7545,66444000 +7546,65349000 +7547,65070000 +7548,65824000 +7549,66043000 +7550,66098000 +7551,66334000 +7552,67633000 +7553,69694000 +7554,72995000 +7555,73157000 +7556,71872000 +7557,68335000 +7558,65086000 +7559,62169000 +7560,57625000 +7561,54108000 +7562,52273000 +7563,51939000 +7564,51608000 +7565,52306000 +7566,54440000 +7567,61144000 +7568,67331000 +7569,69354000 +7570,70097000 +7571,70718000 +7572,71809000 +7573,70846000 +7574,69696000 +7575,69061000 +7576,69032000 +7577,69381000 +7578,72255000 +7579,71700000 +7580,69578000 +7581,65037000 +7582,60804000 +7583,57906000 +7584,52945000 +7585,49263000 +7586,47008000 +7587,45969000 +7588,45873000 +7589,46781000 +7590,46739000 +7591,47521000 +7592,50228000 +7593,54119000 +7594,56118000 +7595,57236000 +7596,58664000 +7597,57389000 +7598,55643000 +7599,54068000 +7600,53907000 +7601,55534000 +7602,59983000 +7603,60479000 +7604,57855000 +7605,53576000 +7606,51455000 +7607,50934000 +7608,46531000 +7609,43324000 +7610,41050000 +7611,40857000 +7612,41681000 +7613,42536000 +7614,42765000 +7615,41996000 +7616,42968000 +7617,44418000 +7618,45752000 +7619,46989000 +7620,48597000 +7621,48714000 +7622,47955000 +7623,47047000 +7624,47210000 +7625,50150000 +7626,54805000 +7627,56389000 +7628,55416000 +7629,53036000 +7630,51196000 +7631,50263000 +7632,47023000 +7633,44827000 +7634,44660000 +7635,44138000 +7636,45054000 +7637,47287000 +7638,50356000 +7639,58271000 +7640,64500000 +7641,65825000 +7642,65567000 +7643,66485000 +7644,67718000 +7645,67701000 +7646,67987000 +7647,67085000 +7648,66978000 +7649,68020000 +7650,70911000 +7651,70260000 +7652,68344000 +7653,64330000 +7654,61289000 +7655,58134000 +7656,53627000 +7657,50376000 +7658,49498000 +7659,49249000 +7660,49970000 +7661,51551000 +7662,54099000 +7663,60464000 +7664,66383000 +7665,68439000 +7666,69369000 +7667,70303000 +7668,71090000 +7669,70388000 +7670,70429000 +7671,69932000 +7672,69960000 +7673,70722000 +7674,73088000 +7675,72186000 +7676,70012000 +7677,66271000 +7678,63124000 +7679,60006000 +7680,54773000 +7681,51623000 +7682,51244000 +7683,50895000 +7684,51197000 +7685,52256000 +7686,54570000 +7687,60495000 +7688,66538000 +7689,68589000 +7690,69065000 +7691,69748000 +7692,71008000 +7693,70716000 +7694,70350000 +7695,69598000 +7696,69170000 +7697,69692000 +7698,72076000 +7699,71259000 +7700,69045000 +7701,65327000 +7702,62121000 +7703,59623000 +7704,54589000 +7705,51566000 +7706,49998000 +7707,49458000 +7708,50200000 +7709,51447000 +7710,54546000 +7711,61230000 +7712,67247000 +7713,69090000 +7714,69227000 +7715,70114000 +7716,70979000 +7717,70521000 +7718,70132000 +7719,69473000 +7720,69311000 +7721,69996000 +7722,72498000 +7723,71862000 +7724,69801000 +7725,66089000 +7726,62954000 +7727,60429000 +7728,55410000 +7729,52205000 +7730,50528000 +7731,49737000 +7732,50295000 +7733,51856000 +7734,54498000 +7735,60741000 +7736,66800000 +7737,68615000 +7738,68840000 +7739,69687000 +7740,70165000 +7741,69346000 +7742,68152000 +7743,66836000 +7744,66486000 +7745,67981000 +7746,71072000 +7747,70271000 +7748,67588000 +7749,63783000 +7750,60557000 +7751,58529000 +7752,54009000 +7753,50524000 +7754,49069000 +7755,47957000 +7756,47867000 +7757,49117000 +7758,48801000 +7759,48915000 +7760,51392000 +7761,54592000 +7762,56889000 +7763,58053000 +7764,58663000 +7765,57636000 +7766,56052000 +7767,54751000 +7768,55138000 +7769,57387000 +7770,61567000 +7771,61535000 +7772,59360000 +7773,55446000 +7774,53220000 +7775,52720000 +7776,48988000 +7777,44977000 +7778,43310000 +7779,42543000 +7780,43233000 +7781,43397000 +7782,42713000 +7783,41852000 +7784,42825000 +7785,45256000 +7786,47545000 +7787,49999000 +7788,52946000 +7789,52609000 +7790,50809000 +7791,49600000 +7792,49410000 +7793,51753000 +7794,56054000 +7795,57169000 +7796,55955000 +7797,53676000 +7798,52581000 +7799,52411000 +7800,48755000 +7801,46567000 +7802,45631000 +7803,45517000 +7804,46348000 +7805,48431000 +7806,51567000 +7807,59630000 +7808,66998000 +7809,69648000 +7810,70231000 +7811,71698000 +7812,72971000 +7813,72867000 +7814,72852000 +7815,72150000 +7816,71948000 +7817,72280000 +7818,73758000 +7819,72606000 +7820,70635000 +7821,66909000 +7822,64019000 +7823,61898000 +7824,56912000 +7825,53417000 +7826,52343000 +7827,52793000 +7828,53084000 +7829,54303000 +7830,56139000 +7831,63314000 +7832,69867000 +7833,71667000 +7834,71997000 +7835,72739000 +7836,74273000 +7837,74062000 +7838,73765000 +7839,73303000 +7840,72898000 +7841,73383000 +7842,75514000 +7843,74736000 +7844,72322000 +7845,68603000 +7846,65766000 +7847,63281000 +7848,58966000 +7849,55141000 +7850,53459000 +7851,52677000 +7852,53056000 +7853,53509000 +7854,55987000 +7855,63013000 +7856,69466000 +7857,71412000 +7858,71834000 +7859,72857000 +7860,73794000 +7861,73237000 +7862,72669000 +7863,71832000 +7864,71402000 +7865,72314000 +7866,74870000 +7867,74058000 +7868,72195000 +7869,68596000 +7870,65467000 +7871,62862000 +7872,58046000 +7873,54357000 +7874,52969000 +7875,52523000 +7876,52533000 +7877,53346000 +7878,55334000 +7879,62146000 +7880,68807000 +7881,70547000 +7882,70404000 +7883,71070000 +7884,71919000 +7885,71791000 +7886,71605000 +7887,71247000 +7888,71439000 +7889,72634000 +7890,74643000 +7891,73841000 +7892,72070000 +7893,68518000 +7894,65462000 +7895,62946000 +7896,58319000 +7897,55081000 +7898,53565000 +7899,52975000 +7900,53197000 +7901,54411000 +7902,56445000 +7903,62515000 +7904,68683000 +7905,70133000 +7906,70299000 +7907,70860000 +7908,71337000 +7909,71016000 +7910,69788000 +7911,68992000 +7912,68637000 +7913,70257000 +7914,72682000 +7915,71662000 +7916,69304000 +7917,65779000 +7918,63085000 +7919,61560000 +7920,57777000 +7921,54450000 +7922,52385000 +7923,51219000 +7924,51424000 +7925,51509000 +7926,50927000 +7927,50205000 +7928,53159000 +7929,56267000 +7930,59088000 +7931,60109000 +7932,60344000 +7933,59535000 +7934,58135000 +7935,57338000 +7936,57605000 +7937,59974000 +7938,63565000 +7939,63277000 +7940,61348000 +7941,57788000 +7942,55911000 +7943,56014000 +7944,53268000 +7945,50749000 +7946,48439000 +7947,47265000 +7948,47265000 +7949,47397000 +7950,46273000 +7951,44710000 +7952,45922000 +7953,48289000 +7954,51000000 +7955,53227000 +7956,55405000 +7957,55250000 +7958,53693000 +7959,52822000 +7960,52509000 +7961,54927000 +7962,59228000 +7963,60466000 +7964,59528000 +7965,57774000 +7966,56921000 +7967,57189000 +7968,54460000 +7969,52762000 +7970,51541000 +7971,51419000 +7972,51372000 +7973,52450000 +7974,55079000 +7975,62726000 +7976,70013000 +7977,72305000 +7978,73195000 +7979,74567000 +7980,75587000 +7981,75606000 +7982,75307000 +7983,74420000 +7984,73863000 +7985,74931000 +7986,76837000 +7987,75836000 +7988,74382000 +7989,70810000 +7990,67778000 +7991,65542000 +7992,61728000 +7993,59155000 +7994,57617000 +7995,56211000 +7996,55712000 +7997,56045000 +7998,57578000 +7999,63934000 +8000,70300000 +8001,71603000 +8002,71842000 +8003,72519000 +8004,73543000 +8005,72961000 +8006,72770000 +8007,72067000 +8008,71933000 +8009,73604000 +8010,76166000 +8011,75629000 +8012,73847000 +8013,70728000 +8014,67727000 +8015,65924000 +8016,61706000 +8017,60195000 +8018,59210000 +8019,58195000 +8020,58147000 +8021,59027000 +8022,61049000 +8023,67297000 +8024,73955000 +8025,75300000 +8026,75352000 +8027,75678000 +8028,76812000 +8029,77057000 +8030,77204000 +8031,76379000 +8032,76500000 +8033,77999000 +8034,79884000 +8035,79019000 +8036,77265000 +8037,74666000 +8038,71772000 +8039,69945000 +8040,67054000 +8041,64802000 +8042,62466000 +8043,60656000 +8044,59149000 +8045,59278000 +8046,60645000 +8047,65984000 +8048,71701000 +8049,73006000 +8050,73224000 +8051,74142000 +8052,74871000 +8053,74694000 +8054,74424000 +8055,73386000 +8056,73084000 +8057,74283000 +8058,76533000 +8059,75721000 +8060,74378000 +8061,71534000 +8062,69036000 +8063,67339000 +8064,64154000 +8065,61208000 +8066,60438000 +8067,59131000 +8068,58595000 +8069,58435000 +8070,60228000 +8071,65375000 +8072,71423000 +8073,72929000 +8074,73175000 +8075,73972000 +8076,74423000 +8077,73975000 +8078,72452000 +8079,71085000 +8080,70527000 +8081,72405000 +8082,74731000 +8083,74086000 +8084,72093000 +8085,68579000 +8086,66481000 +8087,65809000 +8088,62330000 +8089,59682000 +8090,57589000 +8091,55851000 +8092,55255000 +8093,55193000 +8094,54562000 +8095,53917000 +8096,56514000 +8097,59482000 +8098,62306000 +8099,63570000 +8100,64307000 +8101,63848000 +8102,61967000 +8103,60748000 +8104,60380000 +8105,63126000 +8106,66705000 +8107,66009000 +8108,64198000 +8109,60845000 +8110,59497000 +8111,58627000 +8112,56467000 +8113,53774000 +8114,51839000 +8115,50996000 +8116,50145000 +8117,50177000 +8118,50003000 +8119,48507000 +8120,49574000 +8121,52441000 +8122,54858000 +8123,56863000 +8124,59681000 +8125,60046000 +8126,58500000 +8127,56812000 +8128,56407000 +8129,58444000 +8130,61187000 +8131,61547000 +8132,60550000 +8133,58382000 +8134,57371000 +8135,57955000 +8136,54902000 +8137,52261000 +8138,50805000 +8139,50791000 +8140,50560000 +8141,51901000 +8142,54635000 +8143,61701000 +8144,68523000 +8145,70754000 +8146,71133000 +8147,72140000 +8148,73181000 +8149,73103000 +8150,72660000 +8151,71776000 +8152,71297000 +8153,72328000 +8154,74491000 +8155,73744000 +8156,72122000 +8157,68908000 +8158,66418000 +8159,65018000 +8160,60692000 +8161,57652000 +8162,56018000 +8163,55449000 +8164,55119000 +8165,55855000 +8166,57618000 +8167,63442000 +8168,70062000 +8169,71938000 +8170,71766000 +8171,72446000 +8172,73245000 +8173,73132000 +8174,72752000 +8175,72183000 +8176,71882000 +8177,73586000 +8178,75112000 +8179,74155000 +8180,72355000 +8181,69174000 +8182,66458000 +8183,64333000 +8184,60182000 +8185,56918000 +8186,55766000 +8187,54850000 +8188,54691000 +8189,55414000 +8190,56530000 +8191,63012000 +8192,69988000 +8193,71956000 +8194,72098000 +8195,72969000 +8196,73971000 +8197,73473000 +8198,73198000 +8199,72568000 +8200,72677000 +8201,73930000 +8202,75576000 +8203,74821000 +8204,73002000 +8205,69569000 +8206,67098000 +8207,65045000 +8208,60749000 +8209,57853000 +8210,56103000 +8211,55502000 +8212,55658000 +8213,56492000 +8214,57962000 +8215,63504000 +8216,69798000 +8217,71483000 +8218,71885000 +8219,73143000 +8220,74094000 +8221,73885000 +8222,73566000 +8223,73231000 +8224,73308000 +8225,74540000 +8226,76825000 +8227,76072000 +8228,74035000 +8229,70448000 +8230,68089000 +8231,65692000 +8232,61496000 +8233,58839000 +8234,57739000 +8235,56416000 +8236,56682000 +8237,57202000 +8238,58800000 +8239,64265000 +8240,70253000 +8241,71788000 +8242,71810000 +8243,72562000 +8244,72947000 +8245,72427000 +8246,71257000 +8247,69852000 +8248,69693000 +8249,71827000 +8250,73990000 +8251,72704000 +8252,70427000 +8253,66816000 +8254,64367000 +8255,63794000 +8256,60095000 +8257,56524000 +8258,55944000 +8259,54874000 +8260,54349000 +8261,54586000 +8262,54303000 +8263,54629000 +8264,56773000 +8265,59851000 +8266,63184000 +8267,65036000 +8268,65776000 +8269,65743000 +8270,64531000 +8271,63393000 +8272,63155000 +8273,64632000 +8274,66908000 +8275,66233000 +8276,64041000 +8277,60920000 +8278,59079000 +8279,58855000 +8280,55894000 +8281,52974000 +8282,50974000 +8283,49441000 +8284,48878000 +8285,48524000 +8286,48027000 +8287,45834000 +8288,46629000 +8289,48403000 +8290,50923000 +8291,53790000 +8292,56766000 +8293,57259000 +8294,55142000 +8295,54172000 +8296,54096000 +8297,56509000 +8298,59581000 +8299,60445000 +8300,59286000 +8301,57423000 +8302,56854000 +8303,56937000 +8304,54505000 +8305,52887000 +8306,51786000 +8307,51094000 +8308,50884000 +8309,52089000 +8310,54534000 +8311,61368000 +8312,68528000 +8313,70610000 +8314,70536000 +8315,71079000 +8316,71787000 +8317,71518000 +8318,71356000 +8319,70630000 +8320,70804000 +8321,72627000 +8322,74978000 +8323,74613000 +8324,72928000 +8325,69679000 +8326,66840000 +8327,65388000 +8328,61376000 +8329,59099000 +8330,56875000 +8331,56643000 +8332,56245000 +8333,56927000 +8334,58499000 +8335,64349000 +8336,70269000 +8337,71955000 +8338,71848000 +8339,72770000 +8340,73808000 +8341,73580000 +8342,73711000 +8343,73092000 +8344,73374000 +8345,74962000 +8346,77216000 +8347,76564000 +8348,75058000 +8349,72401000 +8350,69948000 +8351,68193000 +8352,64929000 +8353,62588000 +8354,61112000 +8355,59752000 +8356,58912000 +8357,59030000 +8358,60390000 +8359,65477000 +8360,71121000 +8361,72700000 +8362,72442000 +8363,73432000 +8364,74201000 +8365,73655000 +8366,73061000 +8367,72273000 +8368,72207000 +8369,73364000 +8370,75612000 +8371,74729000 +8372,73121000 +8373,70134000 +8374,67755000 +8375,66420000 +8376,63100000 +8377,60222000 +8378,58678000 +8379,57961000 +8380,57356000 +8381,57444000 +8382,59016000 +8383,64349000 +8384,70505000 +8385,72500000 +8386,72795000 +8387,74027000 +8388,75118000 +8389,75350000 +8390,75294000 +8391,74957000 +8392,74992000 +8393,76071000 +8394,77251000 +8395,76229000 +8396,74019000 +8397,70619000 +8398,68232000 +8399,66714000 +8400,63032000 +8401,59678000 +8402,57644000 +8403,56017000 +8404,55606000 +8405,55954000 +8406,57586000 +8407,62191000 +8408,68354000 +8409,70197000 +8410,70763000 +8411,71848000 +8412,72433000 +8413,71795000 +8414,70247000 +8415,68855000 +8416,68456000 +8417,70109000 +8418,72552000 +8419,71316000 +8420,69186000 +8421,65908000 +8422,63707000 +8423,63153000 +8424,60241000 +8425,57593000 +8426,55736000 +8427,53949000 +8428,52942000 +8429,52951000 +8430,52242000 +8431,50841000 +8432,53437000 +8433,56245000 +8434,59116000 +8435,60989000 +8436,62011000 +8437,61755000 +8438,60268000 +8439,58808000 +8440,58929000 +8441,61587000 +8442,65406000 +8443,64728000 +8444,63178000 +8445,59734000 +8446,58182000 +8447,58912000 +8448,56967000 +8449,53698000 +8450,50961000 +8451,49881000 +8452,48651000 +8453,47825000 +8454,46646000 +8455,44821000 +8456,45922000 +8457,47547000 +8458,50636000 +8459,53411000 +8460,56411000 +8461,56470000 +8462,54619000 +8463,53135000 +8464,53112000 +8465,55133000 +8466,59021000 +8467,59713000 +8468,58728000 +8469,56915000 +8470,56113000 +8471,56556000 +8472,53881000 +8473,51448000 +8474,50669000 +8475,50205000 +8476,50156000 +8477,52257000 +8478,55147000 +8479,61510000 +8480,67673000 +8481,69611000 +8482,69484000 +8483,70157000 +8484,70985000 +8485,70866000 +8486,70374000 +8487,69171000 +8488,68121000 +8489,69342000 +8490,71878000 +8491,71129000 +8492,69799000 +8493,67017000 +8494,64596000 +8495,62941000 +8496,59198000 +8497,56551000 +8498,54732000 +8499,53758000 +8500,53198000 +8501,53363000 +8502,54848000 +8503,60169000 +8504,66619000 +8505,68681000 +8506,68804000 +8507,69576000 +8508,70325000 +8509,70306000 +8510,69603000 +8511,68646000 +8512,68304000 +8513,69806000 +8514,72158000 +8515,71409000 +8516,69651000 +8517,66143000 +8518,63838000 +8519,62058000 +8520,57326000 +8521,53991000 +8522,52589000 +8523,51214000 +8524,51196000 +8525,51757000 +8526,53129000 +8527,58177000 +8528,64613000 +8529,67187000 +8530,67588000 +8531,67712000 +8532,68256000 +8533,67634000 +8534,66766000 +8535,66194000 +8536,65888000 +8537,67960000 +8538,70280000 +8539,69302000 +8540,67282000 +8541,64117000 +8542,61560000 +8543,60006000 +8544,55211000 +8545,51911000 +8546,49463000 +8547,49204000 +8548,49423000 +8549,50036000 +8550,50670000 +8551,53621000 +8552,59600000 +8553,63102000 +8554,64420000 +8555,65043000 +8556,65935000 +8557,65302000 +8558,63795000 +8559,62630000 +8560,62647000 +8561,64969000 +8562,67186000 +8563,66571000 +8564,64390000 +8565,60686000 +8566,57719000 +8567,56657000 +8568,53282000 +8569,49834000 +8570,48012000 +8571,46955000 +8572,45992000 +8573,45939000 +8574,44939000 +8575,43650000 +8576,46096000 +8577,49980000 +8578,53470000 +8579,55696000 +8580,56743000 +8581,56613000 +8582,54872000 +8583,53219000 +8584,52207000 +8585,53506000 +8586,55640000 +8587,53788000 +8588,50748000 +8589,48969000 +8590,49194000 +8591,51285000 +8592,49848000 +8593,47962000 +8594,45375000 +8595,44444000 +8596,43393000 +8597,43326000 +8598,42458000 +8599,40469000 +8600,41465000 +8601,43568000 +8602,47262000 +8603,50447000 +8604,53155000 +8605,51703000 +8606,48434000 +8607,46974000 +8608,46042000 +8609,47580000 +8610,51148000 +8611,52533000 +8612,52092000 +8613,50879000 +8614,51184000 +8615,52583000 +8616,50698000 +8617,48343000 +8618,47280000 +8619,46234000 +8620,44508000 +8621,43517000 +8622,42756000 +8623,40167000 +8624,41425000 +8625,43624000 +8626,46708000 +8627,49361000 +8628,51776000 +8629,51340000 +8630,48908000 +8631,47616000 +8632,46810000 +8633,48493000 +8634,51868000 +8635,52832000 +8636,52128000 +8637,51196000 +8638,51239000 +8639,52242000 +8640,49772000 +8641,47456000 +8642,45400000 +8643,44896000 +8644,44532000 +8645,44899000 +8646,45204000 +8647,46916000 +8648,51563000 +8649,55305000 +8650,58529000 +8651,60633000 +8652,62147000 +8653,62776000 +8654,61795000 +8655,60421000 +8656,59771000 +8657,61537000 +8658,64652000 +8659,64365000 +8660,62824000 +8661,59956000 +8662,58270000 +8663,57767000 +8664,54375000 +8665,51207000 +8666,49885000 +8667,48561000 +8668,47562000 +8669,47851000 +8670,48374000 +8671,49536000 +8672,53233000 +8673,56497000 +8674,59078000 +8675,60808000 +8676,62306000 +8677,62495000 +8678,61064000 +8679,59636000 +8680,59148000 +8681,60938000 +8682,64080000 +8683,63870000 +8684,62115000 +8685,59083000 +8686,57547000 +8687,57155000 +8688,54539000 +8689,52403000 +8690,50535000 +8691,49643000 +8692,48592000 +8693,48770000 +8694,48833000 +8695,49478000 +8696,53369000 +8697,56581000 +8698,59004000 +8699,60487000 +8700,61563000 +8701,61862000 +8702,60614000 +8703,59291000 +8704,58755000 +8705,60595000 +8706,64102000 +8707,63902000 +8708,62117000 +8709,58994000 +8710,57224000 +8711,57205000 +8712,54163000 +8713,51513000 +8714,49898000 +8715,49186000 +8716,48444000 +8717,48271000 +8718,47980000 +8719,48433000 +8720,52260000 +8721,55535000 +8722,58076000 +8723,59524000 +8724,60694000 +8725,60877000 +8726,59530000 +8727,58422000 +8728,57839000 +8729,59568000 +8730,63046000 +8731,62894000 +8732,61069000 +8733,58091000 +8734,55930000 +8735,55102000 +8736,52165000 +8737,49533000 +8738,47575000 +8739,46315000 +8740,45468000 +8741,45323000 +8742,45025000 +8743,43713000 +8744,44794000 +8745,47074000 +8746,50380000 +8747,52284000 +8748,53908000 +8749,54477000 +8750,53254000 +8751,52023000 +8752,51420000 +8753,53127000 +8754,56562000 +8755,55597000 +8756,52687000 +8757,49591000 +8758,49087000 +8759,51208000 +8760,51099000 diff --git a/emlab-generation/src/main/resources/data/Load_NL_2010.csv b/emlab-generation/src/main/resources/data/Load_NL_2010.csv new file mode 100644 index 00000000..4882cfa2 --- /dev/null +++ b/emlab-generation/src/main/resources/data/Load_NL_2010.csv @@ -0,0 +1,8761 @@ +hour,nl_demand +1,11081000 +2,10752000 +3,10172000 +4,9581000 +5,9206000 +6,9139000 +7,9318000 +8,9610000 +9,9891000 +10,10251000 +11,10912000 +12,11450000 +13,11681000 +14,11708000 +15,11653000 +16,11598000 +17,11951000 +18,13422000 +19,13841000 +20,13744000 +21,13483000 +22,12968000 +23,12239000 +24,11335000 +25,10383000 +26,9644000 +27,9307000 +28,9168000 +29,9183000 +30,9310000 +31,9769000 +32,10555000 +33,11595000 +34,12777000 +35,13533000 +36,13830000 +37,13878000 +38,13733000 +39,13604000 +40,13464000 +41,13998000 +42,15116000 +43,15027000 +44,14663000 +45,14043000 +46,13181000 +47,12484000 +48,11615000 +49,10731000 +50,9838000 +51,9280000 +52,9072000 +53,9082000 +54,9137000 +55,9386000 +56,9798000 +57,10456000 +58,11176000 +59,11864000 +60,12305000 +61,12533000 +62,12440000 +63,12308000 +64,12210000 +65,12606000 +66,14437000 +67,14757000 +68,14646000 +69,14185000 +70,13419000 +71,12511000 +72,11311000 +73,10347000 +74,9758000 +75,9577000 +76,9562000 +77,9670000 +78,10102000 +79,11542000 +80,13992000 +81,15634000 +82,16135000 +83,16348000 +84,16526000 +85,16385000 +86,16494000 +87,16397000 +88,16302000 +89,16553000 +90,17353000 +91,16780000 +92,16508000 +93,15699000 +94,14806000 +95,13568000 +96,12361000 +97,11102000 +98,10343000 +99,10035000 +100,9946000 +101,9972000 +102,10392000 +103,11729000 +104,14151000 +105,15853000 +106,16339000 +107,16498000 +108,16516000 +109,16271000 +110,16339000 +111,16077000 +112,15984000 +113,16220000 +114,17258000 +115,16717000 +116,16289000 +117,15486000 +118,14633000 +119,13506000 +120,12358000 +121,11129000 +122,10355000 +123,10066000 +124,10000000 +125,10046000 +126,10444000 +127,11833000 +128,14439000 +129,16125000 +130,16590000 +131,16694000 +132,16673000 +133,16388000 +134,16425000 +135,16309000 +136,16245000 +137,16472000 +138,17518000 +139,16848000 +140,16338000 +141,15556000 +142,14699000 +143,13602000 +144,12534000 +145,11311000 +146,10543000 +147,10183000 +148,10111000 +149,10169000 +150,10518000 +151,11926000 +152,14433000 +153,16148000 +154,16629000 +155,16638000 +156,16703000 +157,16460000 +158,16401000 +159,16281000 +160,16187000 +161,16399000 +162,17487000 +163,17143000 +164,16722000 +165,16049000 +166,14983000 +167,13791000 +168,12751000 +169,11579000 +170,10789000 +171,10459000 +172,10366000 +173,10431000 +174,10784000 +175,12095000 +176,14578000 +177,16264000 +178,16825000 +179,17007000 +180,16985000 +181,16643000 +182,16562000 +183,16384000 +184,16028000 +185,16037000 +186,17184000 +187,16833000 +188,16275000 +189,15482000 +190,14524000 +191,13610000 +192,12732000 +193,11620000 +194,10833000 +195,10339000 +196,10138000 +197,10045000 +198,10100000 +199,10532000 +200,11455000 +201,12684000 +202,13771000 +203,14483000 +204,14727000 +205,14751000 +206,14576000 +207,14385000 +208,14223000 +209,14516000 +210,15672000 +211,15562000 +212,15085000 +213,14302000 +214,13450000 +215,12814000 +216,11988000 +217,11026000 +218,10296000 +219,9808000 +220,9609000 +221,9519000 +222,9537000 +223,9721000 +224,10223000 +225,11060000 +226,11858000 +227,12603000 +228,13047000 +229,13301000 +230,13250000 +231,13025000 +232,12808000 +233,13132000 +234,14813000 +235,15036000 +236,14859000 +237,14348000 +238,13571000 +239,12676000 +240,11542000 +241,10533000 +242,9961000 +243,9680000 +244,9675000 +245,9776000 +246,10250000 +247,11749000 +248,14255000 +249,15957000 +250,16349000 +251,16511000 +252,16628000 +253,16483000 +254,16560000 +255,16391000 +256,16229000 +257,16365000 +258,17304000 +259,16780000 +260,16340000 +261,15461000 +262,14629000 +263,13478000 +264,12325000 +265,11078000 +266,10312000 +267,10017000 +268,9917000 +269,10021000 +270,10432000 +271,11899000 +272,14473000 +273,16130000 +274,16577000 +275,16646000 +276,16739000 +277,16516000 +278,16483000 +279,16424000 +280,16298000 +281,16446000 +282,17396000 +283,16934000 +284,16474000 +285,15699000 +286,14765000 +287,13578000 +288,12513000 +289,11371000 +290,10612000 +291,10235000 +292,10148000 +293,10207000 +294,10616000 +295,12043000 +296,14634000 +297,16362000 +298,16883000 +299,16957000 +300,16935000 +301,16766000 +302,16871000 +303,16722000 +304,16440000 +305,16595000 +306,17745000 +307,17123000 +308,16615000 +309,15753000 +310,14826000 +311,13645000 +312,12600000 +313,11383000 +314,10540000 +315,10148000 +316,10061000 +317,10116000 +318,10504000 +319,11937000 +320,14309000 +321,16053000 +322,16590000 +323,16653000 +324,16587000 +325,16227000 +326,16222000 +327,16065000 +328,15943000 +329,15983000 +330,16939000 +331,16754000 +332,16389000 +333,15638000 +334,14588000 +335,13424000 +336,12345000 +337,11156000 +338,10399000 +339,10035000 +340,9937000 +341,9964000 +342,10342000 +343,11722000 +344,14172000 +345,15949000 +346,16489000 +347,16666000 +348,16680000 +349,16443000 +350,16459000 +351,16245000 +352,16066000 +353,16029000 +354,16873000 +355,16475000 +356,15919000 +357,15047000 +358,14030000 +359,12995000 +360,12143000 +361,11094000 +362,10242000 +363,9785000 +364,9579000 +365,9532000 +366,9631000 +367,10092000 +368,11074000 +369,12331000 +370,13576000 +371,14227000 +372,14412000 +373,14334000 +374,14152000 +375,13887000 +376,13736000 +377,14147000 +378,15293000 +379,15175000 +380,14768000 +381,14046000 +382,13251000 +383,12576000 +384,11700000 +385,10794000 +386,10013000 +387,9539000 +388,9288000 +389,9226000 +390,9252000 +391,9425000 +392,9915000 +393,10683000 +394,11520000 +395,12245000 +396,12653000 +397,12830000 +398,12704000 +399,12370000 +400,12138000 +401,12277000 +402,13944000 +403,14518000 +404,14328000 +405,13841000 +406,13077000 +407,12241000 +408,11196000 +409,10239000 +410,9638000 +411,9392000 +412,9242000 +413,9313000 +414,9848000 +415,11439000 +416,14092000 +417,15700000 +418,16156000 +419,16332000 +420,16523000 +421,16409000 +422,16595000 +423,16440000 +424,16284000 +425,16350000 +426,17102000 +427,16523000 +428,16139000 +429,15260000 +430,14304000 +431,13064000 +432,11914000 +433,10774000 +434,10037000 +435,9681000 +436,9574000 +437,9635000 +438,10019000 +439,11513000 +440,14105000 +441,15763000 +442,16268000 +443,16345000 +444,16452000 +445,16223000 +446,16349000 +447,16258000 +448,16186000 +449,16268000 +450,17004000 +451,16506000 +452,16106000 +453,15267000 +454,14305000 +455,13135000 +456,12045000 +457,10837000 +458,10134000 +459,9800000 +460,9697000 +461,9755000 +462,10143000 +463,11627000 +464,14195000 +465,15874000 +466,16361000 +467,16414000 +468,16376000 +469,16097000 +470,16141000 +471,16000000 +472,15890000 +473,15931000 +474,16849000 +475,16543000 +476,16137000 +477,15223000 +478,14357000 +479,13242000 +480,12111000 +481,10920000 +482,10110000 +483,9763000 +484,9689000 +485,9738000 +486,10147000 +487,11612000 +488,14189000 +489,15759000 +490,16239000 +491,16369000 +492,16435000 +493,16248000 +494,16384000 +495,16341000 +496,16272000 +497,16371000 +498,17085000 +499,16768000 +500,16357000 +501,15484000 +502,14427000 +503,13228000 +504,12165000 +505,11007000 +506,10201000 +507,9826000 +508,9688000 +509,9729000 +510,10162000 +511,11586000 +512,14109000 +513,15729000 +514,16224000 +515,16376000 +516,16378000 +517,16087000 +518,16040000 +519,15849000 +520,15550000 +521,15505000 +522,16451000 +523,16288000 +524,15786000 +525,14897000 +526,13817000 +527,12804000 +528,11997000 +529,10976000 +530,10143000 +531,9692000 +532,9483000 +533,9405000 +534,9491000 +535,9997000 +536,10995000 +537,12284000 +538,13535000 +539,14134000 +540,14335000 +541,14244000 +542,14008000 +543,13724000 +544,13536000 +545,13793000 +546,14913000 +547,15010000 +548,14507000 +549,13741000 +550,13001000 +551,12355000 +552,11487000 +553,10617000 +554,9904000 +555,9419000 +556,9212000 +557,9145000 +558,9154000 +559,9404000 +560,9916000 +561,10637000 +562,11479000 +563,12234000 +564,12677000 +565,12948000 +566,12878000 +567,12690000 +568,12479000 +569,12608000 +570,14063000 +571,14592000 +572,14441000 +573,13991000 +574,13227000 +575,12382000 +576,11232000 +577,10268000 +578,9706000 +579,9459000 +580,9462000 +581,9557000 +582,10000000 +583,11485000 +584,13995000 +585,15744000 +586,16286000 +587,16479000 +588,16643000 +589,16484000 +590,16631000 +591,16505000 +592,16325000 +593,16378000 +594,17110000 +595,16920000 +596,16495000 +597,15680000 +598,14753000 +599,13541000 +600,12451000 +601,11223000 +602,10526000 +603,10208000 +604,10146000 +605,10197000 +606,10614000 +607,12095000 +608,14595000 +609,16087000 +610,16597000 +611,16733000 +612,16729000 +613,16418000 +614,16386000 +615,16247000 +616,16197000 +617,16216000 +618,17019000 +619,17076000 +620,16648000 +621,15891000 +622,14964000 +623,13700000 +624,12619000 +625,11517000 +626,10690000 +627,10399000 +628,10365000 +629,10412000 +630,10855000 +631,12289000 +632,14758000 +633,16278000 +634,16845000 +635,16988000 +636,17061000 +637,16913000 +638,16984000 +639,16945000 +640,16868000 +641,16898000 +642,17559000 +643,17107000 +644,16649000 +645,15753000 +646,14815000 +647,13605000 +648,12513000 +649,11353000 +650,10529000 +651,10161000 +652,10022000 +653,10057000 +654,10466000 +655,11904000 +656,14341000 +657,15839000 +658,16411000 +659,16531000 +660,16563000 +661,16346000 +662,16306000 +663,16211000 +664,16084000 +665,16076000 +666,16821000 +667,16832000 +668,16552000 +669,15731000 +670,14622000 +671,13373000 +672,12305000 +673,11158000 +674,10397000 +675,10023000 +676,9917000 +677,9977000 +678,10365000 +679,11765000 +680,14288000 +681,15981000 +682,16676000 +683,16819000 +684,16868000 +685,16693000 +686,16658000 +687,16468000 +688,16119000 +689,15901000 +690,16433000 +691,16502000 +692,15932000 +693,15106000 +694,14063000 +695,13095000 +696,12362000 +697,11284000 +698,10446000 +699,9958000 +700,9745000 +701,9667000 +702,9725000 +703,10177000 +704,11152000 +705,12318000 +706,13537000 +707,14111000 +708,14121000 +709,13899000 +710,13609000 +711,13316000 +712,13150000 +713,13283000 +714,14369000 +715,15042000 +716,14599000 +717,13957000 +718,13139000 +719,12416000 +720,11570000 +721,10719000 +722,10052000 +723,9601000 +724,9391000 +725,9279000 +726,9245000 +727,9595000 +728,10092000 +729,10656000 +730,11588000 +731,12250000 +732,12528000 +733,12633000 +734,12459000 +735,12378000 +736,12222000 +737,12323000 +738,13637000 +739,14625000 +740,14486000 +741,14028000 +742,13281000 +743,12430000 +744,11293000 +745,10340000 +746,9824000 +747,9607000 +748,9572000 +749,9690000 +750,10148000 +751,11646000 +752,14158000 +753,15661000 +754,16221000 +755,16389000 +756,16427000 +757,16279000 +758,16409000 +759,16268000 +760,16165000 +761,16088000 +762,16517000 +763,16644000 +764,16380000 +765,15544000 +766,14576000 +767,13357000 +768,12281000 +769,11122000 +770,10367000 +771,9997000 +772,9912000 +773,9970000 +774,10366000 +775,11883000 +776,14432000 +777,15968000 +778,16593000 +779,16774000 +780,16912000 +781,16877000 +782,16935000 +783,16775000 +784,16590000 +785,16638000 +786,17135000 +787,16868000 +788,16476000 +789,15580000 +790,14667000 +791,13490000 +792,12408000 +793,11144000 +794,10397000 +795,10055000 +796,9954000 +797,9967000 +798,10383000 +799,11833000 +800,14315000 +801,15671000 +802,16316000 +803,16216000 +804,16179000 +805,15985000 +806,16030000 +807,15964000 +808,15718000 +809,15633000 +810,16214000 +811,16477000 +812,15994000 +813,15278000 +814,14441000 +815,13299000 +816,12288000 +817,11008000 +818,10231000 +819,9857000 +820,9751000 +821,9806000 +822,10192000 +823,11681000 +824,14184000 +825,15623000 +826,16214000 +827,16305000 +828,16243000 +829,16067000 +830,16122000 +831,16032000 +832,15883000 +833,15877000 +834,16298000 +835,16415000 +836,16096000 +837,15327000 +838,14290000 +839,13089000 +840,12051000 +841,10989000 +842,10260000 +843,9889000 +844,9827000 +845,9861000 +846,10245000 +847,11634000 +848,14150000 +849,15692000 +850,16367000 +851,16479000 +852,16588000 +853,16338000 +854,16289000 +855,16162000 +856,15833000 +857,15791000 +858,16199000 +859,16170000 +860,15638000 +861,14744000 +862,13794000 +863,12828000 +864,12051000 +865,11015000 +866,10190000 +867,9729000 +868,9585000 +869,9480000 +870,9591000 +871,10073000 +872,11122000 +873,12229000 +874,13511000 +875,14095000 +876,14180000 +877,14017000 +878,13787000 +879,13491000 +880,13347000 +881,13580000 +882,14374000 +883,14820000 +884,14413000 +885,13759000 +886,12922000 +887,12250000 +888,11394000 +889,10522000 +890,9777000 +891,9366000 +892,9137000 +893,9089000 +894,9086000 +895,9361000 +896,9889000 +897,10634000 +898,11564000 +899,12307000 +900,12770000 +901,13026000 +902,12959000 +903,12750000 +904,12590000 +905,12756000 +906,13880000 +907,14613000 +908,14410000 +909,13933000 +910,13218000 +911,12390000 +912,11257000 +913,10302000 +914,9734000 +915,9529000 +916,9456000 +917,9645000 +918,10134000 +919,11618000 +920,14133000 +921,15545000 +922,16000000 +923,16391000 +924,16601000 +925,16424000 +926,16555000 +927,16504000 +928,16419000 +929,16432000 +930,16783000 +931,16880000 +932,16564000 +933,15677000 +934,14767000 +935,13556000 +936,12433000 +937,11334000 +938,10633000 +939,10290000 +940,10187000 +941,10239000 +942,10624000 +943,12110000 +944,14664000 +945,16094000 +946,16595000 +947,16709000 +948,16680000 +949,16436000 +950,16389000 +951,16316000 +952,16257000 +953,16323000 +954,16719000 +955,16852000 +956,16538000 +957,15781000 +958,14898000 +959,13579000 +960,12494000 +961,11322000 +962,10616000 +963,10329000 +964,10248000 +965,10282000 +966,10651000 +967,12111000 +968,14542000 +969,15956000 +970,16727000 +971,16885000 +972,16812000 +973,16600000 +974,16681000 +975,16620000 +976,16491000 +977,16414000 +978,16721000 +979,16889000 +980,16616000 +981,15875000 +982,15025000 +983,13835000 +984,12803000 +985,11531000 +986,10795000 +987,10447000 +988,10343000 +989,10382000 +990,10766000 +991,12215000 +992,14625000 +993,15891000 +994,16669000 +995,16800000 +996,16801000 +997,16534000 +998,16563000 +999,16375000 +1000,16241000 +1001,16161000 +1002,16359000 +1003,16987000 +1004,16728000 +1005,16074000 +1006,14991000 +1007,13717000 +1008,12717000 +1009,11568000 +1010,10830000 +1011,10488000 +1012,10361000 +1013,10418000 +1014,10835000 +1015,12238000 +1016,14442000 +1017,15777000 +1018,16491000 +1019,16568000 +1020,16581000 +1021,16363000 +1022,16255000 +1023,15982000 +1024,15743000 +1025,15586000 +1026,15810000 +1027,16430000 +1028,16099000 +1029,15287000 +1030,14283000 +1031,13235000 +1032,12350000 +1033,11333000 +1034,10538000 +1035,10143000 +1036,9953000 +1037,9894000 +1038,9958000 +1039,10439000 +1040,11360000 +1041,12484000 +1042,13774000 +1043,14363000 +1044,14581000 +1045,14476000 +1046,14078000 +1047,13709000 +1048,13494000 +1049,13524000 +1050,13973000 +1051,14847000 +1052,14583000 +1053,14009000 +1054,13218000 +1055,12506000 +1056,11734000 +1057,10892000 +1058,10068000 +1059,9649000 +1060,9473000 +1061,9406000 +1062,9404000 +1063,9649000 +1064,10107000 +1065,10749000 +1066,11584000 +1067,12292000 +1068,12631000 +1069,12871000 +1070,12749000 +1071,12514000 +1072,12344000 +1073,12414000 +1074,13288000 +1075,14371000 +1076,14340000 +1077,13951000 +1078,13292000 +1079,12453000 +1080,11579000 +1081,10566000 +1082,9926000 +1083,9646000 +1084,9600000 +1085,9716000 +1086,10094000 +1087,11456000 +1088,13561000 +1089,14878000 +1090,15546000 +1091,15743000 +1092,15847000 +1093,15618000 +1094,15581000 +1095,15456000 +1096,15349000 +1097,15334000 +1098,15540000 +1099,15985000 +1100,15875000 +1101,15096000 +1102,14295000 +1103,13165000 +1104,12127000 +1105,11087000 +1106,10449000 +1107,10114000 +1108,9946000 +1109,9965000 +1110,10339000 +1111,11728000 +1112,13862000 +1113,15092000 +1114,15859000 +1115,16144000 +1116,16196000 +1117,15986000 +1118,15907000 +1119,15588000 +1120,15335000 +1121,15291000 +1122,15432000 +1123,15950000 +1124,15963000 +1125,15237000 +1126,14424000 +1127,13300000 +1128,12283000 +1129,11235000 +1130,10478000 +1131,10070000 +1132,10015000 +1133,10121000 +1134,10545000 +1135,11956000 +1136,14112000 +1137,15473000 +1138,16199000 +1139,16388000 +1140,16278000 +1141,16108000 +1142,16168000 +1143,16115000 +1144,16057000 +1145,15958000 +1146,16213000 +1147,16441000 +1148,16243000 +1149,15399000 +1150,14570000 +1151,13346000 +1152,12232000 +1153,11109000 +1154,10420000 +1155,10083000 +1156,9976000 +1157,10049000 +1158,10411000 +1159,11843000 +1160,14150000 +1161,15504000 +1162,16235000 +1163,16323000 +1164,16453000 +1165,16199000 +1166,16193000 +1167,15999000 +1168,15857000 +1169,15758000 +1170,15911000 +1171,16279000 +1172,16068000 +1173,15329000 +1174,14318000 +1175,13151000 +1176,12132000 +1177,10944000 +1178,10129000 +1179,9739000 +1180,9667000 +1181,9726000 +1182,10055000 +1183,11463000 +1184,13720000 +1185,15194000 +1186,16065000 +1187,16285000 +1188,16392000 +1189,16198000 +1190,16240000 +1191,16076000 +1192,15780000 +1193,15671000 +1194,15814000 +1195,15960000 +1196,15609000 +1197,14744000 +1198,13751000 +1199,12808000 +1200,11989000 +1201,10978000 +1202,10154000 +1203,9710000 +1204,9481000 +1205,9442000 +1206,9548000 +1207,9994000 +1208,10817000 +1209,11869000 +1210,13054000 +1211,13684000 +1212,13809000 +1213,13658000 +1214,13402000 +1215,13090000 +1216,12862000 +1217,12940000 +1218,13323000 +1219,14258000 +1220,14203000 +1221,13579000 +1222,12701000 +1223,12000000 +1224,11158000 +1225,10417000 +1226,9811000 +1227,9448000 +1228,9173000 +1229,9111000 +1230,9150000 +1231,9433000 +1232,9835000 +1233,10475000 +1234,11321000 +1235,12061000 +1236,12419000 +1237,12548000 +1238,12462000 +1239,12296000 +1240,12167000 +1241,12279000 +1242,13131000 +1243,14186000 +1244,14176000 +1245,13737000 +1246,12983000 +1247,12151000 +1248,11122000 +1249,10236000 +1250,9752000 +1251,9427000 +1252,9378000 +1253,9494000 +1254,9958000 +1255,11461000 +1256,13616000 +1257,15166000 +1258,15890000 +1259,16243000 +1260,16467000 +1261,16341000 +1262,16462000 +1263,16253000 +1264,16119000 +1265,16106000 +1266,16236000 +1267,16349000 +1268,16089000 +1269,15265000 +1270,14306000 +1271,13139000 +1272,12153000 +1273,11079000 +1274,10341000 +1275,10045000 +1276,9946000 +1277,10037000 +1278,10350000 +1279,11704000 +1280,13874000 +1281,15331000 +1282,16133000 +1283,16320000 +1284,16389000 +1285,16166000 +1286,16088000 +1287,15884000 +1288,15696000 +1289,15647000 +1290,15729000 +1291,16097000 +1292,16065000 +1293,15273000 +1294,14379000 +1295,13308000 +1296,12368000 +1297,11240000 +1298,10367000 +1299,10015000 +1300,9900000 +1301,9938000 +1302,10280000 +1303,11609000 +1304,13663000 +1305,15136000 +1306,15851000 +1307,16070000 +1308,16052000 +1309,15802000 +1310,15837000 +1311,15726000 +1312,15600000 +1313,15571000 +1314,15636000 +1315,15699000 +1316,15634000 +1317,14954000 +1318,14216000 +1319,13107000 +1320,12139000 +1321,10999000 +1322,10229000 +1323,9899000 +1324,9788000 +1325,9830000 +1326,10225000 +1327,11583000 +1328,13695000 +1329,15185000 +1330,15909000 +1331,16166000 +1332,16240000 +1333,16059000 +1334,15895000 +1335,15680000 +1336,15568000 +1337,15461000 +1338,15476000 +1339,15844000 +1340,15815000 +1341,15127000 +1342,14119000 +1343,12955000 +1344,12009000 +1345,10918000 +1346,10182000 +1347,9866000 +1348,9746000 +1349,9752000 +1350,10112000 +1351,11406000 +1352,13283000 +1353,14791000 +1354,15598000 +1355,15873000 +1356,15927000 +1357,15761000 +1358,15805000 +1359,15659000 +1360,15402000 +1361,15230000 +1362,15288000 +1363,15571000 +1364,15463000 +1365,14705000 +1366,13650000 +1367,12708000 +1368,11995000 +1369,10938000 +1370,10094000 +1371,9607000 +1372,9401000 +1373,9335000 +1374,9388000 +1375,9855000 +1376,10565000 +1377,11694000 +1378,12973000 +1379,13624000 +1380,13828000 +1381,13626000 +1382,13275000 +1383,12947000 +1384,12708000 +1385,12801000 +1386,13082000 +1387,13840000 +1388,13944000 +1389,13370000 +1390,12575000 +1391,11882000 +1392,11094000 +1393,10296000 +1394,9537000 +1395,9123000 +1396,8935000 +1397,8852000 +1398,8854000 +1399,9095000 +1400,9454000 +1401,10268000 +1402,11263000 +1403,11979000 +1404,12307000 +1405,12583000 +1406,12610000 +1407,12495000 +1408,12330000 +1409,12514000 +1410,13366000 +1411,14234000 +1412,14328000 +1413,13900000 +1414,13155000 +1415,12295000 +1416,11165000 +1417,9869000 +1418,9624000 +1419,9582000 +1420,9889000 +1421,10786000 +1422,12116000 +1423,13587000 +1424,14801000 +1425,15485000 +1426,15712000 +1427,15726000 +1428,15707000 +1429,15590000 +1430,15504000 +1431,15424000 +1432,15312000 +1433,15504000 +1434,15568000 +1435,15432000 +1436,15055000 +1437,14154000 +1438,13094000 +1439,12015000 +1440,11109000 +1441,10458000 +1442,10075000 +1443,9981000 +1444,10253000 +1445,11084000 +1446,12317000 +1447,13740000 +1448,14928000 +1449,15583000 +1450,15810000 +1451,15739000 +1452,15640000 +1453,15490000 +1454,15367000 +1455,15289000 +1456,15182000 +1457,15408000 +1458,15509000 +1459,15392000 +1460,15046000 +1461,14126000 +1462,13071000 +1463,12010000 +1464,11107000 +1465,10473000 +1466,10110000 +1467,10034000 +1468,10320000 +1469,11143000 +1470,12382000 +1471,13796000 +1472,14973000 +1473,15623000 +1474,15821000 +1475,15752000 +1476,15652000 +1477,15537000 +1478,15473000 +1479,15442000 +1480,15426000 +1481,15583000 +1482,15617000 +1483,15461000 +1484,15035000 +1485,14188000 +1486,13127000 +1487,12055000 +1488,11143000 +1489,10470000 +1490,10105000 +1491,9998000 +1492,10271000 +1493,11075000 +1494,12329000 +1495,13726000 +1496,14851000 +1497,15502000 +1498,15694000 +1499,15657000 +1500,15592000 +1501,15468000 +1502,15343000 +1503,15267000 +1504,15165000 +1505,15390000 +1506,15539000 +1507,15433000 +1508,15072000 +1509,14162000 +1510,13064000 +1511,11969000 +1512,11077000 +1513,10418000 +1514,10033000 +1515,9944000 +1516,10198000 +1517,10974000 +1518,12199000 +1519,13620000 +1520,14847000 +1521,15544000 +1522,15793000 +1523,15760000 +1524,15691000 +1525,15622000 +1526,15554000 +1527,15534000 +1528,15564000 +1529,15684000 +1530,15661000 +1531,15336000 +1532,14708000 +1533,13835000 +1534,12839000 +1535,11897000 +1536,11056000 +1537,10353000 +1538,9888000 +1539,9648000 +1540,9624000 +1541,9820000 +1542,10327000 +1543,11158000 +1544,12092000 +1545,12870000 +1546,13373000 +1547,13479000 +1548,13330000 +1549,13100000 +1550,12828000 +1551,12715000 +1552,12803000 +1553,13233000 +1554,13625000 +1555,13725000 +1556,13527000 +1557,12863000 +1558,12042000 +1559,11262000 +1560,10543000 +1561,9971000 +1562,9600000 +1563,9399000 +1564,9350000 +1565,9372000 +1566,9615000 +1567,10067000 +1568,10637000 +1569,11270000 +1570,11763000 +1571,12023000 +1572,12053000 +1573,11924000 +1574,11708000 +1575,11663000 +1576,11891000 +1577,12543000 +1578,13214000 +1579,13555000 +1580,13518000 +1581,12862000 +1582,11968000 +1583,11098000 +1584,10339000 +1585,9828000 +1586,9571000 +1587,9542000 +1588,9853000 +1589,10685000 +1590,12022000 +1591,13524000 +1592,14846000 +1593,15698000 +1594,16049000 +1595,16125000 +1596,16111000 +1597,16001000 +1598,15862000 +1599,15719000 +1600,15489000 +1601,15585000 +1602,15604000 +1603,15444000 +1604,15105000 +1605,14205000 +1606,13103000 +1607,12002000 +1608,11073000 +1609,10429000 +1610,10076000 +1611,9992000 +1612,10264000 +1613,11013000 +1614,12236000 +1615,13624000 +1616,14796000 +1617,15491000 +1618,15698000 +1619,15637000 +1620,15523000 +1621,15366000 +1622,15240000 +1623,15160000 +1624,15011000 +1625,15217000 +1626,15357000 +1627,15281000 +1628,14997000 +1629,14127000 +1630,13034000 +1631,11934000 +1632,11006000 +1633,10333000 +1634,9954000 +1635,9864000 +1636,10142000 +1637,10916000 +1638,12170000 +1639,13596000 +1640,14811000 +1641,15516000 +1642,15725000 +1643,15695000 +1644,15608000 +1645,15509000 +1646,15415000 +1647,15327000 +1648,15208000 +1649,15354000 +1650,15411000 +1651,15258000 +1652,14891000 +1653,14041000 +1654,12975000 +1655,11913000 +1656,11012000 +1657,10363000 +1658,10010000 +1659,9925000 +1660,10189000 +1661,10947000 +1662,12234000 +1663,13713000 +1664,14983000 +1665,15773000 +1666,16021000 +1667,15967000 +1668,15863000 +1669,15707000 +1670,15588000 +1671,15501000 +1672,15396000 +1673,15507000 +1674,15536000 +1675,15372000 +1676,14929000 +1677,14060000 +1678,12968000 +1679,11851000 +1680,10928000 +1681,10259000 +1682,9872000 +1683,9769000 +1684,10028000 +1685,10768000 +1686,12038000 +1687,13522000 +1688,14819000 +1689,15675000 +1690,16001000 +1691,15996000 +1692,15904000 +1693,15707000 +1694,15468000 +1695,15298000 +1696,15138000 +1697,15198000 +1698,15191000 +1699,14924000 +1700,14399000 +1701,13550000 +1702,12570000 +1703,11606000 +1704,10782000 +1705,10094000 +1706,9638000 +1707,9416000 +1708,9399000 +1709,9576000 +1710,10064000 +1711,10889000 +1712,11816000 +1713,12637000 +1714,13181000 +1715,13321000 +1716,13262000 +1717,13118000 +1718,12961000 +1719,12943000 +1720,13041000 +1721,13373000 +1722,13613000 +1723,13575000 +1724,13278000 +1725,12591000 +1726,11767000 +1727,10975000 +1728,10230000 +1729,9626000 +1730,9214000 +1731,8976000 +1732,8902000 +1733,8924000 +1734,9169000 +1735,9680000 +1736,10323000 +1737,11007000 +1738,11570000 +1739,11883000 +1740,11983000 +1741,11965000 +1742,11836000 +1743,11804000 +1744,12019000 +1745,12556000 +1746,13105000 +1747,13352000 +1748,13214000 +1749,12526000 +1750,11603000 +1751,10724000 +1752,9946000 +1753,9437000 +1754,9216000 +1755,9210000 +1756,9543000 +1757,10345000 +1758,11624000 +1759,13054000 +1760,14272000 +1761,15050000 +1762,15336000 +1763,15420000 +1764,15475000 +1765,15451000 +1766,15446000 +1767,15454000 +1768,15413000 +1769,15573000 +1770,15589000 +1771,15352000 +1772,14850000 +1773,13906000 +1774,12783000 +1775,11688000 +1776,10752000 +1777,10094000 +1778,9729000 +1779,9609000 +1780,9880000 +1781,10638000 +1782,11883000 +1783,13301000 +1784,14500000 +1785,15236000 +1786,15476000 +1787,15453000 +1788,15377000 +1789,15234000 +1790,15107000 +1791,15001000 +1792,14800000 +1793,14911000 +1794,14990000 +1795,14854000 +1796,14559000 +1797,13744000 +1798,12692000 +1799,11635000 +1800,10733000 +1801,10083000 +1802,9703000 +1803,9617000 +1804,9869000 +1805,10594000 +1806,11799000 +1807,13170000 +1808,14331000 +1809,15015000 +1810,15200000 +1811,15128000 +1812,15059000 +1813,14939000 +1814,14822000 +1815,14753000 +1816,14567000 +1817,14688000 +1818,14788000 +1819,14661000 +1820,14360000 +1821,13583000 +1822,12533000 +1823,11470000 +1824,10573000 +1825,9883000 +1826,9516000 +1827,9429000 +1828,9712000 +1829,10457000 +1830,11671000 +1831,13024000 +1832,14170000 +1833,14896000 +1834,15118000 +1835,15101000 +1836,15030000 +1837,14917000 +1838,14820000 +1839,14752000 +1840,14618000 +1841,14732000 +1842,14842000 +1843,14749000 +1844,14408000 +1845,13593000 +1846,12517000 +1847,11449000 +1848,10573000 +1849,9913000 +1850,9528000 +1851,9419000 +1852,9660000 +1853,10392000 +1854,11651000 +1855,13073000 +1856,14338000 +1857,15163000 +1858,15447000 +1859,15447000 +1860,15354000 +1861,15163000 +1862,14974000 +1863,14842000 +1864,14705000 +1865,14762000 +1866,14719000 +1867,14424000 +1868,13906000 +1869,13090000 +1870,12159000 +1871,11255000 +1872,10476000 +1873,9837000 +1874,9405000 +1875,9198000 +1876,9173000 +1877,9343000 +1878,9844000 +1879,10675000 +1880,11632000 +1881,12474000 +1882,12994000 +1883,13116000 +1884,12993000 +1885,12774000 +1886,12567000 +1887,12498000 +1888,12597000 +1889,12908000 +1890,13168000 +1891,13140000 +1892,12866000 +1893,12254000 +1894,11471000 +1895,10720000 +1896,9976000 +1897,9378000 +1898,8973000 +1899,8759000 +1900,8702000 +1901,8723000 +1902,8957000 +1903,9429000 +1904,10037000 +1905,10672000 +1906,11182000 +1907,11416000 +1908,11408000 +1909,11273000 +1910,11043000 +1911,10991000 +1912,11177000 +1913,11682000 +1914,12344000 +1915,12688000 +1916,12700000 +1917,12205000 +1918,11340000 +1919,10474000 +1920,9726000 +1921,9237000 +1922,9014000 +1923,9028000 +1924,9352000 +1925,10113000 +1926,11369000 +1927,12808000 +1928,14019000 +1929,14804000 +1930,15079000 +1931,15078000 +1932,15035000 +1933,14913000 +1934,14809000 +1935,14694000 +1936,14512000 +1937,14534000 +1938,14574000 +1939,14473000 +1940,14170000 +1941,13457000 +1942,12407000 +1943,11335000 +1944,10433000 +1945,9789000 +1946,9445000 +1947,9364000 +1948,9634000 +1949,10335000 +1950,11506000 +1951,12835000 +1952,13963000 +1953,14687000 +1954,14928000 +1955,14906000 +1956,14853000 +1957,14727000 +1958,14600000 +1959,14506000 +1960,14319000 +1961,14372000 +1962,14483000 +1963,14390000 +1964,14106000 +1965,13369000 +1966,12308000 +1967,11254000 +1968,10369000 +1969,9739000 +1970,9384000 +1971,9302000 +1972,9579000 +1973,10276000 +1974,11472000 +1975,12813000 +1976,13930000 +1977,14663000 +1978,14870000 +1979,14860000 +1980,14811000 +1981,14707000 +1982,14604000 +1983,14507000 +1984,14319000 +1985,14254000 +1986,14285000 +1987,14161000 +1988,13880000 +1989,13260000 +1990,12285000 +1991,11271000 +1992,10399000 +1993,9758000 +1994,9406000 +1995,9303000 +1996,9525000 +1997,10177000 +1998,11292000 +1999,12584000 +2000,13709000 +2001,14403000 +2002,14679000 +2003,14713000 +2004,14718000 +2005,14704000 +2006,14654000 +2007,14592000 +2008,14461000 +2009,14486000 +2010,14556000 +2011,14435000 +2012,14090000 +2013,13365000 +2014,12314000 +2015,11260000 +2016,10381000 +2017,9746000 +2018,9381000 +2019,9289000 +2020,9489000 +2021,10124000 +2022,11261000 +2023,12594000 +2024,13811000 +2025,14665000 +2026,14998000 +2027,15046000 +2028,15025000 +2029,14883000 +2030,14704000 +2031,14541000 +2032,14304000 +2033,14192000 +2034,14163000 +2035,13954000 +2036,13564000 +2037,12936000 +2038,12036000 +2039,11112000 +2040,10319000 +2041,9657000 +2042,9218000 +2043,9010000 +2044,8977000 +2045,9116000 +2046,9583000 +2047,10365000 +2048,11239000 +2049,12017000 +2050,12474000 +2051,12545000 +2052,12405000 +2053,12186000 +2054,11955000 +2055,11858000 +2056,11912000 +2057,12151000 +2058,12510000 +2059,12602000 +2060,12440000 +2061,11949000 +2062,11149000 +2063,10380000 +2064,9678000 +2065,9142000 +2066,8804000 +2067,8804000 +2068,8660000 +2069,8660000 +2070,8755000 +2071,9033000 +2072,9485000 +2073,10036000 +2074,10642000 +2075,11103000 +2076,11320000 +2077,11324000 +2078,11188000 +2079,11121000 +2080,11226000 +2081,11397000 +2082,11724000 +2083,12055000 +2084,12099000 +2085,11898000 +2086,11315000 +2087,10466000 +2088,10466000 +2089,9222000 +2090,8967000 +2091,8958000 +2092,9215000 +2093,10002000 +2094,11291000 +2095,12709000 +2096,13987000 +2097,14760000 +2098,15037000 +2099,15104000 +2100,15087000 +2101,14996000 +2102,14893000 +2103,14757000 +2104,14506000 +2105,14186000 +2106,13958000 +2107,13837000 +2108,13586000 +2109,13182000 +2110,12401000 +2111,11342000 +2112,10429000 +2113,9758000 +2114,9400000 +2115,9316000 +2116,9554000 +2117,10323000 +2118,11512000 +2119,12862000 +2120,14033000 +2121,14736000 +2122,15016000 +2123,15032000 +2124,15060000 +2125,15035000 +2126,15015000 +2127,15018000 +2128,14822000 +2129,14515000 +2130,14221000 +2131,14001000 +2132,13701000 +2133,13263000 +2134,12500000 +2135,11459000 +2136,10538000 +2137,9858000 +2138,9467000 +2139,9354000 +2140,9597000 +2141,10366000 +2142,11618000 +2143,13036000 +2144,14243000 +2145,14947000 +2146,15185000 +2147,15230000 +2148,15255000 +2149,15240000 +2150,15193000 +2151,15120000 +2152,14903000 +2153,14598000 +2154,14407000 +2155,14224000 +2156,13930000 +2157,13511000 +2158,12526000 +2159,11406000 +2160,10469000 +2161,10617000 +2162,9833000 +2163,9505000 +2164,9405000 +2165,9443000 +2166,9830000 +2167,11267000 +2168,13275000 +2169,14702000 +2170,15397000 +2171,15570000 +2172,15682000 +2173,15469000 +2174,15480000 +2175,15285000 +2176,15059000 +2177,14872000 +2178,14571000 +2179,13887000 +2180,13653000 +2181,14154000 +2182,13859000 +2183,12765000 +2184,11754000 +2185,10612000 +2186,9869000 +2187,9500000 +2188,9362000 +2189,9369000 +2190,9693000 +2191,10842000 +2192,12239000 +2193,13725000 +2194,14455000 +2195,14650000 +2196,14469000 +2197,14424000 +2198,14324000 +2199,14072000 +2200,13784000 +2201,13649000 +2202,13771000 +2203,13282000 +2204,12936000 +2205,13296000 +2206,13017000 +2207,12155000 +2208,11379000 +2209,10326000 +2210,9503000 +2211,9064000 +2212,8883000 +2213,8792000 +2214,8819000 +2215,9215000 +2216,9746000 +2217,10946000 +2218,12042000 +2219,12539000 +2220,12703000 +2221,12671000 +2222,12519000 +2223,12318000 +2224,12095000 +2225,12056000 +2226,12248000 +2227,12244000 +2228,12216000 +2229,12595000 +2230,12180000 +2231,11502000 +2232,10652000 +2233,9755000 +2234,9025000 +2235,8628000 +2236,8431000 +2237,8371000 +2238,8380000 +2239,8545000 +2240,8735000 +2241,9598000 +2242,10446000 +2243,10974000 +2244,11124000 +2245,11148000 +2246,10952000 +2247,10757000 +2248,10641000 +2249,10643000 +2250,11186000 +2251,11416000 +2252,11325000 +2253,11715000 +2254,11755000 +2255,11124000 +2256,10264000 +2257,9360000 +2258,8730000 +2259,8405000 +2260,8334000 +2261,8353000 +2262,8440000 +2263,8770000 +2264,9059000 +2265,9843000 +2266,10791000 +2267,11332000 +2268,11395000 +2269,11322000 +2270,11101000 +2271,10906000 +2272,10791000 +2273,10913000 +2274,11516000 +2275,11608000 +2276,11596000 +2277,12108000 +2278,12076000 +2279,11232000 +2280,10229000 +2281,9314000 +2282,8773000 +2283,8596000 +2284,8586000 +2285,8634000 +2286,9079000 +2287,10558000 +2288,12463000 +2289,14041000 +2290,14718000 +2291,14891000 +2292,14731000 +2293,14691000 +2294,14653000 +2295,14473000 +2296,14280000 +2297,14078000 +2298,13986000 +2299,13243000 +2300,12944000 +2301,13290000 +2302,13404000 +2303,12298000 +2304,11195000 +2305,10068000 +2306,9328000 +2307,9025000 +2308,8900000 +2309,8937000 +2310,9317000 +2311,10679000 +2312,12481000 +2313,13979000 +2314,14638000 +2315,14754000 +2316,14816000 +2317,14621000 +2318,14665000 +2319,14561000 +2320,14425000 +2321,14299000 +2322,14224000 +2323,13514000 +2324,13246000 +2325,13545000 +2326,13351000 +2327,12254000 +2328,11230000 +2329,10162000 +2330,9419000 +2331,9116000 +2332,9009000 +2333,9023000 +2334,9342000 +2335,10630000 +2336,12653000 +2337,14204000 +2338,14906000 +2339,15127000 +2340,15178000 +2341,14951000 +2342,14892000 +2343,14750000 +2344,14538000 +2345,14362000 +2346,14117000 +2347,13464000 +2348,13142000 +2349,13327000 +2350,13439000 +2351,12360000 +2352,11341000 +2353,10273000 +2354,9534000 +2355,9198000 +2356,9098000 +2357,9144000 +2358,9478000 +2359,10723000 +2360,12615000 +2361,14120000 +2362,14832000 +2363,14929000 +2364,14947000 +2365,14666000 +2366,14453000 +2367,14314000 +2368,14035000 +2369,13784000 +2370,13724000 +2371,13138000 +2372,12724000 +2373,12873000 +2374,12809000 +2375,11929000 +2376,11237000 +2377,10216000 +2378,9416000 +2379,9009000 +2380,8826000 +2381,8758000 +2382,8818000 +2383,9151000 +2384,9740000 +2385,10947000 +2386,12045000 +2387,12464000 +2388,12570000 +2389,12421000 +2390,12151000 +2391,11874000 +2392,11589000 +2393,11544000 +2394,11752000 +2395,11762000 +2396,11625000 +2397,11865000 +2398,11996000 +2399,11437000 +2400,10619000 +2401,9726000 +2402,9054000 +2403,8698000 +2404,8550000 +2405,8466000 +2406,8454000 +2407,8543000 +2408,8698000 +2409,9479000 +2410,10311000 +2411,10918000 +2412,11216000 +2413,11411000 +2414,11302000 +2415,11113000 +2416,10937000 +2417,11049000 +2418,11653000 +2419,11881000 +2420,11870000 +2421,12043000 +2422,12171000 +2423,11461000 +2424,10408000 +2425,9486000 +2426,8931000 +2427,8715000 +2428,8697000 +2429,8781000 +2430,9241000 +2431,10564000 +2432,12500000 +2433,14077000 +2434,14665000 +2435,14817000 +2436,14919000 +2437,14729000 +2438,14802000 +2439,14618000 +2440,14440000 +2441,14355000 +2442,14272000 +2443,13475000 +2444,13131000 +2445,13212000 +2446,13475000 +2447,12380000 +2448,11300000 +2449,10234000 +2450,9478000 +2451,9202000 +2452,9108000 +2453,9188000 +2454,9573000 +2455,10807000 +2456,12710000 +2457,14047000 +2458,14709000 +2459,14843000 +2460,14909000 +2461,14704000 +2462,14721000 +2463,14609000 +2464,14398000 +2465,14319000 +2466,14151000 +2467,13354000 +2468,13050000 +2469,13115000 +2470,13406000 +2471,12407000 +2472,11343000 +2473,10245000 +2474,9524000 +2475,9208000 +2476,9087000 +2477,9113000 +2478,9509000 +2479,10749000 +2480,12628000 +2481,14207000 +2482,14791000 +2483,14880000 +2484,14889000 +2485,14760000 +2486,14843000 +2487,14671000 +2488,14452000 +2489,14339000 +2490,14218000 +2491,13373000 +2492,12993000 +2493,12916000 +2494,13264000 +2495,12332000 +2496,11416000 +2497,10253000 +2498,9493000 +2499,9143000 +2500,9054000 +2501,9073000 +2502,9433000 +2503,10648000 +2504,12544000 +2505,14012000 +2506,14596000 +2507,14757000 +2508,14847000 +2509,14667000 +2510,14656000 +2511,14516000 +2512,14296000 +2513,14221000 +2514,14120000 +2515,13536000 +2516,13211000 +2517,13243000 +2518,13369000 +2519,12319000 +2520,11339000 +2521,10204000 +2522,9456000 +2523,9143000 +2524,9031000 +2525,9059000 +2526,9420000 +2527,10602000 +2528,12443000 +2529,14025000 +2530,14795000 +2531,14955000 +2532,15079000 +2533,14886000 +2534,14787000 +2535,14518000 +2536,14178000 +2537,13957000 +2538,13875000 +2539,13219000 +2540,12752000 +2541,12612000 +2542,12770000 +2543,11986000 +2544,11271000 +2545,10235000 +2546,9479000 +2547,9097000 +2548,8889000 +2549,8777000 +2550,8866000 +2551,9117000 +2552,9818000 +2553,10970000 +2554,11969000 +2555,12331000 +2556,12329000 +2557,12147000 +2558,11860000 +2559,11580000 +2560,11283000 +2561,11253000 +2562,11406000 +2563,11463000 +2564,11344000 +2565,11317000 +2566,11740000 +2567,11238000 +2568,10441000 +2569,9579000 +2570,8951000 +2571,8563000 +2572,8409000 +2573,8358000 +2574,8375000 +2575,8390000 +2576,8677000 +2577,9472000 +2578,10247000 +2579,10750000 +2580,10929000 +2581,10951000 +2582,10733000 +2583,10455000 +2584,10256000 +2585,10228000 +2586,10858000 +2587,11234000 +2588,11250000 +2589,11403000 +2590,11949000 +2591,11291000 +2592,10327000 +2593,9445000 +2594,8951000 +2595,8762000 +2596,8757000 +2597,8860000 +2598,9301000 +2599,10469000 +2600,12471000 +2601,14042000 +2602,14629000 +2603,14762000 +2604,14874000 +2605,14750000 +2606,14807000 +2607,14672000 +2608,14464000 +2609,14392000 +2610,14205000 +2611,13448000 +2612,13054000 +2613,12907000 +2614,13317000 +2615,12294000 +2616,11266000 +2617,10182000 +2618,9535000 +2619,9261000 +2620,9171000 +2621,9172000 +2622,9550000 +2623,10691000 +2624,12624000 +2625,14067000 +2626,14796000 +2627,14927000 +2628,15000000 +2629,14828000 +2630,14796000 +2631,14697000 +2632,14556000 +2633,14479000 +2634,14343000 +2635,13613000 +2636,13229000 +2637,13094000 +2638,13473000 +2639,12560000 +2640,11493000 +2641,10394000 +2642,9700000 +2643,9410000 +2644,9291000 +2645,9348000 +2646,9733000 +2647,10839000 +2648,12714000 +2649,14269000 +2650,14960000 +2651,15055000 +2652,15227000 +2653,15033000 +2654,15060000 +2655,14889000 +2656,14762000 +2657,14621000 +2658,14509000 +2659,13670000 +2660,13286000 +2661,13102000 +2662,13529000 +2663,12604000 +2664,11578000 +2665,10438000 +2666,9726000 +2667,9437000 +2668,9340000 +2669,9384000 +2670,9743000 +2671,10778000 +2672,12671000 +2673,14156000 +2674,14875000 +2675,14966000 +2676,15010000 +2677,14780000 +2678,14828000 +2679,14760000 +2680,14563000 +2681,14454000 +2682,14267000 +2683,13638000 +2684,13303000 +2685,13048000 +2686,13423000 +2687,12594000 +2688,11562000 +2689,10412000 +2690,9691000 +2691,9374000 +2692,9318000 +2693,9381000 +2694,9809000 +2695,10798000 +2696,12663000 +2697,14233000 +2698,14911000 +2699,14978000 +2700,14979000 +2701,14696000 +2702,14703000 +2703,14505000 +2704,14161000 +2705,13916000 +2706,13833000 +2707,13294000 +2708,12837000 +2709,12645000 +2710,12926000 +2711,12216000 +2712,11448000 +2713,10404000 +2714,9595000 +2715,9194000 +2716,8953000 +2717,8925000 +2718,9010000 +2719,9100000 +2720,9890000 +2721,11099000 +2722,12109000 +2723,12475000 +2724,12485000 +2725,12291000 +2726,12039000 +2727,11765000 +2728,11557000 +2729,11475000 +2730,11608000 +2731,11641000 +2732,11389000 +2733,11336000 +2734,11797000 +2735,11332000 +2736,10546000 +2737,9747000 +2738,9132000 +2739,8790000 +2740,8607000 +2741,8530000 +2742,8508000 +2743,8387000 +2744,8724000 +2745,9545000 +2746,10348000 +2747,10862000 +2748,11060000 +2749,11149000 +2750,10971000 +2751,10795000 +2752,10616000 +2753,10664000 +2754,11218000 +2755,11466000 +2756,11476000 +2757,11567000 +2758,11971000 +2759,11369000 +2760,10453000 +2761,9616000 +2762,9105000 +2763,8930000 +2764,8848000 +2765,8928000 +2766,9412000 +2767,10454000 +2768,12446000 +2769,14015000 +2770,14694000 +2771,14896000 +2772,15056000 +2773,14921000 +2774,14899000 +2775,14820000 +2776,14622000 +2777,14506000 +2778,14376000 +2779,13613000 +2780,13196000 +2781,12788000 +2782,13212000 +2783,12414000 +2784,11488000 +2785,10436000 +2786,9725000 +2787,9391000 +2788,9270000 +2789,9298000 +2790,9692000 +2791,10581000 +2792,12552000 +2793,14059000 +2794,14780000 +2795,14981000 +2796,15108000 +2797,14957000 +2798,15027000 +2799,14925000 +2800,14751000 +2801,14640000 +2802,14405000 +2803,13582000 +2804,13207000 +2805,12928000 +2806,13337000 +2807,12551000 +2808,11658000 +2809,10526000 +2810,9799000 +2811,9500000 +2812,9341000 +2813,9355000 +2814,9713000 +2815,10566000 +2816,12509000 +2817,14045000 +2818,14784000 +2819,14995000 +2820,15144000 +2821,14991000 +2822,15087000 +2823,14979000 +2824,14828000 +2825,14586000 +2826,14536000 +2827,13652000 +2828,13245000 +2829,13028000 +2830,13421000 +2831,12623000 +2832,11705000 +2833,10600000 +2834,9840000 +2835,9494000 +2836,9360000 +2837,9364000 +2838,9668000 +2839,10561000 +2840,12509000 +2841,14060000 +2842,14800000 +2843,15023000 +2844,15193000 +2845,15039000 +2846,15094000 +2847,15055000 +2848,14822000 +2849,14503000 +2850,14220000 +2851,13497000 +2852,13076000 +2853,12783000 +2854,12883000 +2855,12091000 +2856,11341000 +2857,10347000 +2858,9603000 +2859,9193000 +2860,9003000 +2861,8901000 +2862,8888000 +2863,8814000 +2864,9435000 +2865,10375000 +2866,11088000 +2867,11430000 +2868,11551000 +2869,11496000 +2870,11248000 +2871,10983000 +2872,10673000 +2873,10670000 +2874,11018000 +2875,11078000 +2876,10921000 +2877,10761000 +2878,11265000 +2879,11091000 +2880,10440000 +2881,9685000 +2882,9049000 +2883,8691000 +2884,8586000 +2885,8540000 +2886,8599000 +2887,8700000 +2888,9447000 +2889,10573000 +2890,11721000 +2891,12288000 +2892,12440000 +2893,12417000 +2894,12225000 +2895,11973000 +2896,11744000 +2897,11712000 +2898,11813000 +2899,11717000 +2900,11510000 +2901,11271000 +2902,11558000 +2903,11280000 +2904,10565000 +2905,9784000 +2906,9086000 +2907,8726000 +2908,8527000 +2909,8441000 +2910,8422000 +2911,8310000 +2912,8640000 +2913,9370000 +2914,10267000 +2915,10994000 +2916,11360000 +2917,11618000 +2918,11636000 +2919,11534000 +2920,11359000 +2921,11353000 +2922,11900000 +2923,12115000 +2924,12074000 +2925,12069000 +2926,12146000 +2927,11589000 +2928,10684000 +2929,9777000 +2930,9189000 +2931,8935000 +2932,8882000 +2933,8951000 +2934,9366000 +2935,10365000 +2936,12058000 +2937,13768000 +2938,14650000 +2939,15009000 +2940,15137000 +2941,15130000 +2942,15231000 +2943,15102000 +2944,14975000 +2945,14849000 +2946,14746000 +2947,13994000 +2948,13717000 +2949,13371000 +2950,13294000 +2951,12479000 +2952,11590000 +2953,10487000 +2954,9730000 +2955,9410000 +2956,9303000 +2957,9325000 +2958,9630000 +2959,10558000 +2960,12132000 +2961,13697000 +2962,14465000 +2963,14751000 +2964,14870000 +2965,14733000 +2966,14648000 +2967,14491000 +2968,14306000 +2969,14145000 +2970,13978000 +2971,13250000 +2972,12795000 +2973,12263000 +2974,12718000 +2975,12311000 +2976,11536000 +2977,10475000 +2978,9720000 +2979,9351000 +2980,9175000 +2981,9151000 +2982,9174000 +2983,9355000 +2984,10278000 +2985,11453000 +2986,12230000 +2987,12665000 +2988,12907000 +2989,12885000 +2990,12671000 +2991,12416000 +2992,12208000 +2993,12128000 +2994,12306000 +2995,12029000 +2996,11715000 +2997,11485000 +2998,11876000 +2999,11747000 +3000,11039000 +3001,10063000 +3002,9354000 +3003,9073000 +3004,8941000 +3005,9005000 +3006,9285000 +3007,10201000 +3008,11936000 +3009,13464000 +3010,14233000 +3011,14537000 +3012,14648000 +3013,14489000 +3014,14548000 +3015,14434000 +3016,14254000 +3017,14071000 +3018,14034000 +3019,13528000 +3020,13206000 +3021,12834000 +3022,12839000 +3023,12246000 +3024,11370000 +3025,10312000 +3026,9621000 +3027,9321000 +3028,9169000 +3029,9178000 +3030,9527000 +3031,10395000 +3032,12029000 +3033,13710000 +3034,14563000 +3035,14918000 +3036,15072000 +3037,14834000 +3038,14886000 +3039,14683000 +3040,14376000 +3041,14171000 +3042,14191000 +3043,13688000 +3044,13313000 +3045,12994000 +3046,12784000 +3047,12081000 +3048,11334000 +3049,10311000 +3050,9541000 +3051,9099000 +3052,8875000 +3053,8774000 +3054,8849000 +3055,9036000 +3056,9783000 +3057,10991000 +3058,12117000 +3059,12595000 +3060,12775000 +3061,12660000 +3062,12410000 +3063,12200000 +3064,12038000 +3065,12016000 +3066,12184000 +3067,12124000 +3068,11892000 +3069,11641000 +3070,11658000 +3071,11367000 +3072,10641000 +3073,9799000 +3074,9082000 +3075,8699000 +3076,8486000 +3077,8431000 +3078,8404000 +3079,8300000 +3080,8682000 +3081,9523000 +3082,10347000 +3083,10913000 +3084,11108000 +3085,11197000 +3086,11116000 +3087,10951000 +3088,10708000 +3089,10646000 +3090,11057000 +3091,11335000 +3092,11324000 +3093,11300000 +3094,11613000 +3095,11589000 +3096,10625000 +3097,9683000 +3098,9139000 +3099,8869000 +3100,8857000 +3101,8970000 +3102,9295000 +3103,10342000 +3104,12182000 +3105,13798000 +3106,14531000 +3107,14809000 +3108,14972000 +3109,14853000 +3110,14979000 +3111,14817000 +3112,14595000 +3113,14417000 +3114,14352000 +3115,13634000 +3116,13233000 +3117,12791000 +3118,12911000 +3119,12514000 +3120,11560000 +3121,10426000 +3122,9701000 +3123,9384000 +3124,9273000 +3125,9308000 +3126,9587000 +3127,10543000 +3128,12378000 +3129,13926000 +3130,14691000 +3131,14921000 +3132,15077000 +3133,14979000 +3134,15017000 +3135,14929000 +3136,14802000 +3137,14760000 +3138,14698000 +3139,14039000 +3140,13758000 +3141,13531000 +3142,13493000 +3143,12738000 +3144,11748000 +3145,10673000 +3146,9902000 +3147,9554000 +3148,9426000 +3149,9500000 +3150,9827000 +3151,10847000 +3152,12631000 +3153,14269000 +3154,15068000 +3155,15346000 +3156,15489000 +3157,15334000 +3158,15374000 +3159,15223000 +3160,14991000 +3161,14795000 +3162,14649000 +3163,13814000 +3164,13395000 +3165,13053000 +3166,12973000 +3167,12245000 +3168,11362000 +3169,10236000 +3170,9445000 +3171,9034000 +3172,8825000 +3173,8739000 +3174,8694000 +3175,8726000 +3176,9272000 +3177,10128000 +3178,10924000 +3179,11448000 +3180,11740000 +3181,11821000 +3182,11673000 +3183,11424000 +3184,11175000 +3185,11300000 +3186,11742000 +3187,11776000 +3188,11642000 +3189,11395000 +3190,11462000 +3191,11408000 +3192,10678000 +3193,9785000 +3194,9118000 +3195,8829000 +3196,8715000 +3197,8700000 +3198,8844000 +3199,9472000 +3200,10602000 +3201,11888000 +3202,12883000 +3203,13259000 +3204,13329000 +3205,13180000 +3206,13121000 +3207,12931000 +3208,12783000 +3209,12860000 +3210,13167000 +3211,12819000 +3212,12475000 +3213,12116000 +3214,11981000 +3215,11854000 +3216,11275000 +3217,10268000 +3218,9453000 +3219,9073000 +3220,8885000 +3221,8807000 +3222,8705000 +3223,8868000 +3224,9614000 +3225,10711000 +3226,11792000 +3227,12240000 +3228,12317000 +3229,12227000 +3230,12031000 +3231,11789000 +3232,11605000 +3233,11621000 +3234,11815000 +3235,11798000 +3236,11615000 +3237,11314000 +3238,11270000 +3239,11313000 +3240,10561000 +3241,9648000 +3242,9001000 +3243,8654000 +3244,8476000 +3245,8386000 +3246,8250000 +3247,8178000 +3248,8523000 +3249,9299000 +3250,10072000 +3251,10638000 +3252,10976000 +3253,11074000 +3254,10995000 +3255,10776000 +3256,10541000 +3257,10558000 +3258,11176000 +3259,11435000 +3260,11447000 +3261,11320000 +3262,11387000 +3263,11346000 +3264,10414000 +3265,9497000 +3266,8940000 +3267,8705000 +3268,8638000 +3269,8705000 +3270,9044000 +3271,10143000 +3272,12159000 +3273,13691000 +3274,14370000 +3275,14604000 +3276,14808000 +3277,14695000 +3278,14842000 +3279,14721000 +3280,14512000 +3281,14432000 +3282,14213000 +3283,13410000 +3284,13020000 +3285,12545000 +3286,12408000 +3287,12204000 +3288,11333000 +3289,10244000 +3290,9610000 +3291,9263000 +3292,9132000 +3293,9154000 +3294,9357000 +3295,10360000 +3296,12295000 +3297,13755000 +3298,14487000 +3299,14651000 +3300,14786000 +3301,14606000 +3302,14656000 +3303,14569000 +3304,14366000 +3305,14290000 +3306,14134000 +3307,13402000 +3308,12922000 +3309,12407000 +3310,12309000 +3311,12275000 +3312,11454000 +3313,10377000 +3314,9661000 +3315,9300000 +3316,9172000 +3317,9146000 +3318,9313000 +3319,10232000 +3320,12189000 +3321,13783000 +3322,14517000 +3323,14684000 +3324,14765000 +3325,14597000 +3326,14668000 +3327,14572000 +3328,14359000 +3329,14273000 +3330,14173000 +3331,13378000 +3332,12928000 +3333,12443000 +3334,12310000 +3335,12307000 +3336,11505000 +3337,10400000 +3338,9691000 +3339,9346000 +3340,9220000 +3341,9184000 +3342,9369000 +3343,10426000 +3344,12263000 +3345,13670000 +3346,14400000 +3347,14660000 +3348,14828000 +3349,14713000 +3350,14779000 +3351,14708000 +3352,14542000 +3353,14443000 +3354,14294000 +3355,13611000 +3356,13206000 +3357,12722000 +3358,12383000 +3359,12355000 +3360,11613000 +3361,10517000 +3362,9790000 +3363,9454000 +3364,9290000 +3365,9278000 +3366,9383000 +3367,10360000 +3368,12200000 +3369,13730000 +3370,14483000 +3371,14772000 +3372,14825000 +3373,14694000 +3374,14692000 +3375,14513000 +3376,14241000 +3377,13970000 +3378,13843000 +3379,13228000 +3380,12714000 +3381,12170000 +3382,11883000 +3383,11906000 +3384,11401000 +3385,10456000 +3386,9668000 +3387,9220000 +3388,8979000 +3389,8890000 +3390,8744000 +3391,8957000 +3392,9761000 +3393,10903000 +3394,11977000 +3395,12421000 +3396,12448000 +3397,12264000 +3398,12028000 +3399,11812000 +3400,11558000 +3401,11555000 +3402,11575000 +3403,11526000 +3404,11335000 +3405,11106000 +3406,10927000 +3407,11197000 +3408,10575000 +3409,9801000 +3410,9155000 +3411,8752000 +3412,8536000 +3413,8451000 +3414,8190000 +3415,8112000 +3416,8478000 +3417,9206000 +3418,9983000 +3419,10390000 +3420,10511000 +3421,10557000 +3422,10439000 +3423,10283000 +3424,10121000 +3425,10163000 +3426,10665000 +3427,10897000 +3428,10748000 +3429,10633000 +3430,10584000 +3431,10988000 +3432,10435000 +3433,9542000 +3434,8858000 +3435,8628000 +3436,8531000 +3437,8476000 +3438,8285000 +3439,8391000 +3440,8902000 +3441,9812000 +3442,10668000 +3443,11172000 +3444,11326000 +3445,11356000 +3446,11223000 +3447,11024000 +3448,10913000 +3449,11005000 +3450,11503000 +3451,11600000 +3452,11478000 +3453,11308000 +3454,11298000 +3455,11477000 +3456,10691000 +3457,9738000 +3458,9175000 +3459,8955000 +3460,8829000 +3461,8896000 +3462,9035000 +3463,10081000 +3464,12061000 +3465,13711000 +3466,14587000 +3467,14847000 +3468,15014000 +3469,14897000 +3470,14925000 +3471,14854000 +3472,14681000 +3473,14530000 +3474,14297000 +3475,13469000 +3476,12972000 +3477,12452000 +3478,12188000 +3479,12215000 +3480,11407000 +3481,10336000 +3482,9592000 +3483,9244000 +3484,9119000 +3485,9106000 +3486,9244000 +3487,10285000 +3488,12149000 +3489,13737000 +3490,14516000 +3491,14776000 +3492,14943000 +3493,14847000 +3494,14957000 +3495,14865000 +3496,14715000 +3497,14541000 +3498,14413000 +3499,13631000 +3500,13127000 +3501,12538000 +3502,12320000 +3503,12180000 +3504,11393000 +3505,10287000 +3506,9522000 +3507,9142000 +3508,8971000 +3509,8969000 +3510,9088000 +3511,10045000 +3512,11980000 +3513,13530000 +3514,14271000 +3515,14540000 +3516,14665000 +3517,14523000 +3518,14613000 +3519,14484000 +3520,14336000 +3521,14248000 +3522,14163000 +3523,13557000 +3524,13138000 +3525,12846000 +3526,12459000 +3527,12101000 +3528,11287000 +3529,10193000 +3530,9468000 +3531,9089000 +3532,8968000 +3533,8973000 +3534,9070000 +3535,10144000 +3536,11992000 +3537,13573000 +3538,14252000 +3539,14538000 +3540,14719000 +3541,14576000 +3542,14580000 +3543,14410000 +3544,14111000 +3545,13849000 +3546,13741000 +3547,13136000 +3548,12606000 +3549,12071000 +3550,11602000 +3551,11797000 +3552,11341000 +3553,10323000 +3554,9474000 +3555,9028000 +3556,8777000 +3557,8703000 +3558,8502000 +3559,8814000 +3560,9614000 +3561,10816000 +3562,11847000 +3563,12282000 +3564,12387000 +3565,12234000 +3566,12036000 +3567,11815000 +3568,11578000 +3569,11591000 +3570,11798000 +3571,11818000 +3572,11672000 +3573,11475000 +3574,11272000 +3575,11212000 +3576,10592000 +3577,9832000 +3578,9059000 +3579,8649000 +3580,8435000 +3581,8398000 +3582,8219000 +3583,8194000 +3584,8565000 +3585,9333000 +3586,10148000 +3587,10771000 +3588,11221000 +3589,11490000 +3590,11497000 +3591,11330000 +3592,11057000 +3593,11049000 +3594,11645000 +3595,11735000 +3596,11576000 +3597,11293000 +3598,11242000 +3599,11403000 +3600,10538000 +3601,9645000 +3602,9109000 +3603,8859000 +3604,8775000 +3605,8835000 +3606,8987000 +3607,10153000 +3608,12095000 +3609,13752000 +3610,14413000 +3611,14771000 +3612,14944000 +3613,14797000 +3614,14964000 +3615,14881000 +3616,14727000 +3617,14616000 +3618,14441000 +3619,13636000 +3620,13177000 +3621,12659000 +3622,12207000 +3623,12227000 +3624,11521000 +3625,10355000 +3626,9559000 +3627,9273000 +3628,9141000 +3629,9104000 +3630,9193000 +3631,10342000 +3632,12261000 +3633,13816000 +3634,14585000 +3635,14729000 +3636,14848000 +3637,14718000 +3638,14806000 +3639,14774000 +3640,14595000 +3641,14450000 +3642,14218000 +3643,13403000 +3644,12958000 +3645,12476000 +3646,12274000 +3647,12283000 +3648,11589000 +3649,10491000 +3650,9741000 +3651,9389000 +3652,9238000 +3653,9260000 +3654,9309000 +3655,10408000 +3656,12325000 +3657,13853000 +3658,14650000 +3659,14870000 +3660,14971000 +3661,14898000 +3662,14959000 +3663,14904000 +3664,14721000 +3665,14545000 +3666,14359000 +3667,13495000 +3668,13066000 +3669,12553000 +3670,12172000 +3671,12254000 +3672,11662000 +3673,10569000 +3674,9821000 +3675,9485000 +3676,9313000 +3677,9245000 +3678,9277000 +3679,10365000 +3680,12277000 +3681,13742000 +3682,14542000 +3683,14767000 +3684,14935000 +3685,14848000 +3686,14976000 +3687,14901000 +3688,14751000 +3689,14586000 +3690,14396000 +3691,13754000 +3692,13296000 +3693,12754000 +3694,12216000 +3695,12234000 +3696,11700000 +3697,10588000 +3698,9717000 +3699,9402000 +3700,9290000 +3701,9258000 +3702,9265000 +3703,10277000 +3704,12171000 +3705,13807000 +3706,14623000 +3707,14806000 +3708,14940000 +3709,14686000 +3710,14891000 +3711,14775000 +3712,14506000 +3713,14214000 +3714,14067000 +3715,13420000 +3716,12907000 +3717,12354000 +3718,11732000 +3719,11828000 +3720,11532000 +3721,10540000 +3722,9736000 +3723,9284000 +3724,9105000 +3725,8993000 +3726,8696000 +3727,8960000 +3728,9820000 +3729,10992000 +3730,12076000 +3731,12467000 +3732,12526000 +3733,12434000 +3734,12238000 +3735,12061000 +3736,11886000 +3737,11735000 +3738,11700000 +3739,11598000 +3740,11328000 +3741,11066000 +3742,10832000 +3743,11171000 +3744,10778000 +3745,10020000 +3746,9344000 +3747,8916000 +3748,8731000 +3749,8592000 +3750,8219000 +3751,8222000 +3752,8660000 +3753,9517000 +3754,10364000 +3755,10898000 +3756,11180000 +3757,11389000 +3758,11328000 +3759,11210000 +3760,11088000 +3761,11133000 +3762,11619000 +3763,11746000 +3764,11667000 +3765,11463000 +3766,11180000 +3767,11283000 +3768,10636000 +3769,9843000 +3770,9175000 +3771,8981000 +3772,8954000 +3773,9018000 +3774,9198000 +3775,10248000 +3776,12173000 +3777,13777000 +3778,14470000 +3779,14791000 +3780,15015000 +3781,14822000 +3782,15011000 +3783,14915000 +3784,14773000 +3785,14630000 +3786,14341000 +3787,13500000 +3788,13047000 +3789,12432000 +3790,12059000 +3791,12033000 +3792,11455000 +3793,10460000 +3794,9783000 +3795,9425000 +3796,9308000 +3797,9305000 +3798,9345000 +3799,10260000 +3800,12132000 +3801,13813000 +3802,14570000 +3803,14816000 +3804,14917000 +3805,14877000 +3806,15059000 +3807,15057000 +3808,15001000 +3809,14856000 +3810,14654000 +3811,13880000 +3812,13449000 +3813,12917000 +3814,12525000 +3815,12328000 +3816,11704000 +3817,10612000 +3818,9879000 +3819,9525000 +3820,9388000 +3821,9370000 +3822,9478000 +3823,10444000 +3824,12392000 +3825,14001000 +3826,14842000 +3827,15187000 +3828,15198000 +3829,15099000 +3830,15256000 +3831,15173000 +3832,15062000 +3833,14888000 +3834,14653000 +3835,13742000 +3836,13264000 +3837,12789000 +3838,12507000 +3839,12429000 +3840,11835000 +3841,10776000 +3842,10009000 +3843,9617000 +3844,9453000 +3845,9419000 +3846,9558000 +3847,10606000 +3848,12538000 +3849,14104000 +3850,14962000 +3851,15318000 +3852,15497000 +3853,15380000 +3854,15530000 +3855,15497000 +3856,15376000 +3857,15309000 +3858,15080000 +3859,14196000 +3860,13724000 +3861,13309000 +3862,12784000 +3863,12587000 +3864,11984000 +3865,10913000 +3866,10118000 +3867,9697000 +3868,9594000 +3869,9579000 +3870,9576000 +3871,10611000 +3872,12499000 +3873,14198000 +3874,15084000 +3875,15366000 +3876,15513000 +3877,15291000 +3878,15274000 +3879,15107000 +3880,14841000 +3881,14542000 +3882,14318000 +3883,13603000 +3884,12977000 +3885,12391000 +3886,11856000 +3887,11781000 +3888,11415000 +3889,10477000 +3890,9667000 +3891,9249000 +3892,9001000 +3893,8889000 +3894,8585000 +3895,8860000 +3896,9729000 +3897,10882000 +3898,11971000 +3899,12404000 +3900,12530000 +3901,12345000 +3902,12150000 +3903,11926000 +3904,11672000 +3905,11631000 +3906,11655000 +3907,11506000 +3908,11310000 +3909,11003000 +3910,10596000 +3911,10879000 +3912,10528000 +3913,9729000 +3914,9089000 +3915,8700000 +3916,8464000 +3917,8415000 +3918,8122000 +3919,8129000 +3920,8520000 +3921,9278000 +3922,10028000 +3923,10597000 +3924,10845000 +3925,11048000 +3926,11032000 +3927,10870000 +3928,10707000 +3929,10778000 +3930,11236000 +3931,11450000 +3932,11363000 +3933,11256000 +3934,11005000 +3935,11195000 +3936,10499000 +3937,9645000 +3938,9090000 +3939,8892000 +3940,8851000 +3941,8890000 +3942,8989000 +3943,10105000 +3944,12011000 +3945,13516000 +3946,14247000 +3947,14543000 +3948,14769000 +3949,14710000 +3950,14669000 +3951,14448000 +3952,14284000 +3953,14332000 +3954,14166000 +3955,13332000 +3956,12937000 +3957,12416000 +3958,11920000 +3959,11882000 +3960,11349000 +3961,10252000 +3962,9580000 +3963,9249000 +3964,9129000 +3965,9114000 +3966,9133000 +3967,10193000 +3968,12113000 +3969,13676000 +3970,14408000 +3971,14622000 +3972,14736000 +3973,14560000 +3974,14761000 +3975,14733000 +3976,14637000 +3977,14508000 +3978,14312000 +3979,13467000 +3980,13023000 +3981,12490000 +3982,12025000 +3983,11969000 +3984,11429000 +3985,10364000 +3986,9614000 +3987,9329000 +3988,9171000 +3989,9125000 +3990,9141000 +3991,10271000 +3992,12203000 +3993,13767000 +3994,14478000 +3995,14749000 +3996,14953000 +3997,14873000 +3998,14980000 +3999,14963000 +4000,14808000 +4001,14700000 +4002,14533000 +4003,13633000 +4004,13100000 +4005,12593000 +4006,12091000 +4007,12021000 +4008,11593000 +4009,10454000 +4010,9740000 +4011,9341000 +4012,9208000 +4013,9194000 +4014,9214000 +4015,10236000 +4016,12145000 +4017,13731000 +4018,14564000 +4019,14893000 +4020,15128000 +4021,15011000 +4022,15163000 +4023,15177000 +4024,15015000 +4025,14845000 +4026,14564000 +4027,13848000 +4028,13365000 +4029,12820000 +4030,12169000 +4031,12049000 +4032,11663000 +4033,10598000 +4034,9809000 +4035,9455000 +4036,9343000 +4037,9336000 +4038,9361000 +4039,10323000 +4040,12113000 +4041,13662000 +4042,14543000 +4043,14851000 +4044,15035000 +4045,14973000 +4046,14974000 +4047,14832000 +4048,14521000 +4049,14220000 +4050,14056000 +4051,13284000 +4052,12754000 +4053,12182000 +4054,11668000 +4055,11606000 +4056,11248000 +4057,10360000 +4058,9603000 +4059,9159000 +4060,8951000 +4061,8817000 +4062,8604000 +4063,8851000 +4064,9626000 +4065,10771000 +4066,11854000 +4067,12388000 +4068,12513000 +4069,12443000 +4070,12185000 +4071,11759000 +4072,11486000 +4073,11638000 +4074,11711000 +4075,11577000 +4076,11316000 +4077,11055000 +4078,10750000 +4079,10991000 +4080,10551000 +4081,9728000 +4082,9089000 +4083,8671000 +4084,8431000 +4085,8429000 +4086,8154000 +4087,8159000 +4088,8567000 +4089,9333000 +4090,10089000 +4091,10688000 +4092,10976000 +4093,11104000 +4094,11089000 +4095,10937000 +4096,10743000 +4097,10764000 +4098,11201000 +4099,11395000 +4100,11329000 +4101,11231000 +4102,11071000 +4103,11198000 +4104,10496000 +4105,9599000 +4106,9023000 +4107,8813000 +4108,8731000 +4109,8798000 +4110,8899000 +4111,9996000 +4112,11900000 +4113,13475000 +4114,14227000 +4115,14544000 +4116,14782000 +4117,14720000 +4118,14887000 +4119,14791000 +4120,14695000 +4121,14492000 +4122,14278000 +4123,13494000 +4124,13042000 +4125,12485000 +4126,12104000 +4127,12066000 +4128,11603000 +4129,10488000 +4130,9780000 +4131,9435000 +4132,9255000 +4133,9269000 +4134,9315000 +4135,10378000 +4136,12251000 +4137,13792000 +4138,14598000 +4139,14832000 +4140,14974000 +4141,14847000 +4142,14995000 +4143,14940000 +4144,14893000 +4145,14771000 +4146,14582000 +4147,13733000 +4148,13248000 +4149,12738000 +4150,12246000 +4151,12186000 +4152,11780000 +4153,10673000 +4154,9915000 +4155,9565000 +4156,9442000 +4157,9389000 +4158,9398000 +4159,10423000 +4160,12279000 +4161,13876000 +4162,14755000 +4163,15090000 +4164,15261000 +4165,15194000 +4166,15340000 +4167,15324000 +4168,15210000 +4169,14983000 +4170,14895000 +4171,14017000 +4172,13413000 +4173,12928000 +4174,12429000 +4175,12334000 +4176,11876000 +4177,10725000 +4178,9968000 +4179,9645000 +4180,9533000 +4181,9474000 +4182,9452000 +4183,10479000 +4184,12427000 +4185,14069000 +4186,15013000 +4187,15386000 +4188,15670000 +4189,15540000 +4190,15689000 +4191,15649000 +4192,15490000 +4193,15375000 +4194,15117000 +4195,14343000 +4196,13801000 +4197,13055000 +4198,12318000 +4199,12282000 +4200,12081000 +4201,10999000 +4202,10215000 +4203,9880000 +4204,9689000 +4205,9597000 +4206,9603000 +4207,10622000 +4208,12435000 +4209,14105000 +4210,15067000 +4211,15331000 +4212,15584000 +4213,15402000 +4214,15414000 +4215,15242000 +4216,15030000 +4217,14798000 +4218,14597000 +4219,13791000 +4220,13165000 +4221,12671000 +4222,12075000 +4223,12010000 +4224,11832000 +4225,10841000 +4226,10021000 +4227,9598000 +4228,9314000 +4229,9170000 +4230,8858000 +4231,9164000 +4232,9996000 +4233,11224000 +4234,12306000 +4235,12743000 +4236,12814000 +4237,12701000 +4238,12537000 +4239,12331000 +4240,12163000 +4241,12163000 +4242,12125000 +4243,12039000 +4244,11791000 +4245,11500000 +4246,11097000 +4247,11287000 +4248,11034000 +4249,10274000 +4250,9565000 +4251,9107000 +4252,8906000 +4253,8773000 +4254,8422000 +4255,8434000 +4256,8864000 +4257,9716000 +4258,10515000 +4259,11030000 +4260,11327000 +4261,11402000 +4262,11280000 +4263,11134000 +4264,11072000 +4265,11203000 +4266,11549000 +4267,11777000 +4268,11727000 +4269,11722000 +4270,11540000 +4271,11766000 +4272,11312000 +4273,10375000 +4274,9710000 +4275,9453000 +4276,9407000 +4277,9396000 +4278,9475000 +4279,10689000 +4280,12754000 +4281,14476000 +4282,15392000 +4283,15706000 +4284,16040000 +4285,15994000 +4286,16180000 +4287,16046000 +4288,15612000 +4289,15059000 +4290,14756000 +4291,14280000 +4292,13829000 +4293,13308000 +4294,12818000 +4295,12721000 +4296,12271000 +4297,11097000 +4298,10369000 +4299,9994000 +4300,9824000 +4301,9777000 +4302,9765000 +4303,10787000 +4304,12713000 +4305,14417000 +4306,15406000 +4307,15705000 +4308,15957000 +4309,15878000 +4310,15920000 +4311,15758000 +4312,15638000 +4313,15488000 +4314,15133000 +4315,14209000 +4316,13712000 +4317,13213000 +4318,12658000 +4319,12580000 +4320,12155000 +4321,11090000 +4322,10303000 +4323,9921000 +4324,9771000 +4325,9747000 +4326,9770000 +4327,10858000 +4328,12856000 +4329,14491000 +4330,15393000 +4331,15701000 +4332,15931000 +4333,15907000 +4334,16057000 +4335,16022000 +4336,15808000 +4337,15590000 +4338,15366000 +4339,14396000 +4340,13845000 +4341,13312000 +4342,12743000 +4343,12686000 +4344,12263000 +4345,11113000 +4346,10328000 +4347,9941000 +4348,9784000 +4349,9779000 +4350,9780000 +4351,10809000 +4352,12752000 +4353,14430000 +4354,15352000 +4355,15767000 +4356,15955000 +4357,15958000 +4358,16051000 +4359,16024000 +4360,15889000 +4361,15679000 +4362,15392000 +4363,14687000 +4364,14204000 +4365,13688000 +4366,13025000 +4367,12919000 +4368,12557000 +4369,11447000 +4370,10684000 +4371,10271000 +4372,10112000 +4373,10105000 +4374,10183000 +4375,11396000 +4376,13300000 +4377,14978000 +4378,15996000 +4379,16391000 +4380,16472000 +4381,16342000 +4382,16235000 +4383,15840000 +4384,15209000 +4385,14690000 +4386,14364000 +4387,14170000 +4388,13793000 +4389,13336000 +4390,12718000 +4391,12674000 +4392,12429000 +4393,11424000 +4394,10540000 +4395,10035000 +4396,9772000 +4397,9682000 +4398,9439000 +4399,9657000 +4400,10483000 +4401,11649000 +4402,12738000 +4403,13303000 +4404,13431000 +4405,13405000 +4406,13221000 +4407,13068000 +4408,12941000 +4409,12900000 +4410,12733000 +4411,12555000 +4412,12256000 +4413,11931000 +4414,11515000 +4415,11591000 +4416,11287000 +4417,10462000 +4418,9812000 +4419,9234000 +4420,9084000 +4421,9025000 +4422,8766000 +4423,8687000 +4424,9053000 +4425,9872000 +4426,10614000 +4427,11092000 +4428,11335000 +4429,11475000 +4430,11396000 +4431,11253000 +4432,11140000 +4433,11175000 +4434,11521000 +4435,11712000 +4436,11640000 +4437,11462000 +4438,11257000 +4439,11536000 +4440,11167000 +4441,10312000 +4442,9702000 +4443,9411000 +4444,9340000 +4445,9356000 +4446,9470000 +4447,10529000 +4448,12399000 +4449,14029000 +4450,14827000 +4451,15182000 +4452,15509000 +4453,15498000 +4454,15673000 +4455,15576000 +4456,15390000 +4457,15124000 +4458,14848000 +4459,14012000 +4460,13518000 +4461,12949000 +4462,12389000 +4463,12375000 +4464,11948000 +4465,10800000 +4466,10055000 +4467,9747000 +4468,9631000 +4469,9590000 +4470,9640000 +4471,10640000 +4472,12393000 +4473,14021000 +4474,14870000 +4475,15121000 +4476,15333000 +4477,15209000 +4478,15294000 +4479,15273000 +4480,15104000 +4481,14872000 +4482,14578000 +4483,13705000 +4484,13136000 +4485,12141000 +4486,11520000 +4487,11649000 +4488,11833000 +4489,10905000 +4490,10054000 +4491,9701000 +4492,9448000 +4493,9438000 +4494,9506000 +4495,10487000 +4496,12191000 +4497,13793000 +4498,14646000 +4499,15064000 +4500,15289000 +4501,15272000 +4502,15427000 +4503,15417000 +4504,15369000 +4505,15164000 +4506,14979000 +4507,14130000 +4508,13643000 +4509,13181000 +4510,12766000 +4511,12693000 +4512,12240000 +4513,11109000 +4514,10325000 +4515,9946000 +4516,9802000 +4517,9759000 +4518,9773000 +4519,10795000 +4520,12615000 +4521,14273000 +4522,15217000 +4523,15643000 +4524,15862000 +4525,15805000 +4526,15932000 +4527,15905000 +4528,15811000 +4529,15628000 +4530,15348000 +4531,14654000 +4532,14167000 +4533,13600000 +4534,12972000 +4535,12877000 +4536,12506000 +4537,11384000 +4538,10617000 +4539,10230000 +4540,10050000 +4541,10040000 +4542,10103000 +4543,11069000 +4544,12875000 +4545,14626000 +4546,15672000 +4547,16159000 +4548,16247000 +4549,15988000 +4550,15986000 +4551,15845000 +4552,15603000 +4553,15338000 +4554,15166000 +4555,14470000 +4556,13966000 +4557,13386000 +4558,12698000 +4559,12652000 +4560,12367000 +4561,11432000 +4562,10657000 +4563,10080000 +4564,9831000 +4565,9775000 +4566,9514000 +4567,9734000 +4568,10522000 +4569,11701000 +4570,12785000 +4571,13272000 +4572,13363000 +4573,13284000 +4574,13185000 +4575,13000000 +4576,12820000 +4577,12740000 +4578,12680000 +4579,12575000 +4580,12392000 +4581,12185000 +4582,12190000 +4583,12167000 +4584,11604000 +4585,10869000 +4586,10246000 +4587,9836000 +4588,9597000 +4589,9488000 +4590,9254000 +4591,9150000 +4592,9459000 +4593,10221000 +4594,10996000 +4595,11525000 +4596,11779000 +4597,11963000 +4598,11983000 +4599,11852000 +4600,11747000 +4601,11785000 +4602,12142000 +4603,12187000 +4604,11896000 +4605,11304000 +4606,10850000 +4607,11070000 +4608,11245000 +4609,10780000 +4610,10095000 +4611,9694000 +4612,9542000 +4613,9541000 +4614,9619000 +4615,10617000 +4616,12324000 +4617,14140000 +4618,15084000 +4619,15529000 +4620,15913000 +4621,15870000 +4622,15972000 +4623,15889000 +4624,15718000 +4625,15457000 +4626,15117000 +4627,14210000 +4628,13662000 +4629,13041000 +4630,12496000 +4631,12405000 +4632,11888000 +4633,10852000 +4634,10132000 +4635,9849000 +4636,9731000 +4637,9664000 +4638,9712000 +4639,10530000 +4640,12259000 +4641,13865000 +4642,14788000 +4643,15150000 +4644,15516000 +4645,15526000 +4646,15700000 +4647,15737000 +4648,15622000 +4649,15438000 +4650,15114000 +4651,14140000 +4652,13625000 +4653,13103000 +4654,12674000 +4655,12692000 +4656,12220000 +4657,11227000 +4658,10468000 +4659,10098000 +4660,9901000 +4661,9895000 +4662,9945000 +4663,10870000 +4664,12659000 +4665,14300000 +4666,15254000 +4667,15643000 +4668,15883000 +4669,15801000 +4670,15979000 +4671,15939000 +4672,15825000 +4673,15655000 +4674,15416000 +4675,14595000 +4676,13897000 +4677,13264000 +4678,12699000 +4679,12584000 +4680,12089000 +4681,11074000 +4682,10358000 +4683,10052000 +4684,9915000 +4685,9844000 +4686,9886000 +4687,10712000 +4688,12367000 +4689,13865000 +4690,14708000 +4691,15059000 +4692,15293000 +4693,15189000 +4694,15261000 +4695,15156000 +4696,14978000 +4697,14768000 +4698,14579000 +4699,13850000 +4700,13319000 +4701,12826000 +4702,12205000 +4703,12223000 +4704,11841000 +4705,10843000 +4706,10122000 +4707,9765000 +4708,9591000 +4709,9597000 +4710,9685000 +4711,10500000 +4712,12093000 +4713,13719000 +4714,14633000 +4715,15099000 +4716,15266000 +4717,15171000 +4718,15215000 +4719,15049000 +4720,14717000 +4721,14471000 +4722,14288000 +4723,13576000 +4724,12943000 +4725,12388000 +4726,11897000 +4727,11913000 +4728,11532000 +4729,10657000 +4730,9936000 +4731,9523000 +4732,9302000 +4733,9207000 +4734,9054000 +4735,9110000 +4736,9845000 +4737,10828000 +4738,11839000 +4739,12374000 +4740,12512000 +4741,12428000 +4742,12238000 +4743,12078000 +4744,11897000 +4745,11832000 +4746,11787000 +4747,11636000 +4748,11353000 +4749,10994000 +4750,10646000 +4751,10962000 +4752,10608000 +4753,9906000 +4754,9296000 +4755,8883000 +4756,8718000 +4757,8638000 +4758,8378000 +4759,8265000 +4760,8632000 +4761,9324000 +4762,10011000 +4763,10479000 +4764,10710000 +4765,10849000 +4766,10797000 +4767,10654000 +4768,10535000 +4769,10570000 +4770,11010000 +4771,11183000 +4772,11133000 +4773,10991000 +4774,10770000 +4775,11192000 +4776,10712000 +4777,9965000 +4778,9443000 +4779,9140000 +4780,9026000 +4781,9076000 +4782,9062000 +4783,9934000 +4784,11697000 +4785,13354000 +4786,14191000 +4787,14594000 +4788,14888000 +4789,14939000 +4790,15132000 +4791,15094000 +4792,14865000 +4793,14673000 +4794,14432000 +4795,13703000 +4796,13229000 +4797,12694000 +4798,12239000 +4799,12345000 +4800,11835000 +4801,10803000 +4802,10043000 +4803,9634000 +4804,9489000 +4805,9517000 +4806,9618000 +4807,10448000 +4808,12148000 +4809,13713000 +4810,14616000 +4811,15088000 +4812,15412000 +4813,15435000 +4814,15598000 +4815,15584000 +4816,15428000 +4817,15281000 +4818,15013000 +4819,14100000 +4820,13432000 +4821,12998000 +4822,12589000 +4823,12629000 +4824,12097000 +4825,11111000 +4826,10392000 +4827,10049000 +4828,9888000 +4829,9836000 +4830,9983000 +4831,10732000 +4832,12387000 +4833,13965000 +4834,14911000 +4835,15229000 +4836,15483000 +4837,15443000 +4838,15506000 +4839,15391000 +4840,15182000 +4841,14968000 +4842,14673000 +4843,13813000 +4844,13309000 +4845,12734000 +4846,12358000 +4847,12453000 +4848,11910000 +4849,10874000 +4850,10226000 +4851,9856000 +4852,9708000 +4853,9678000 +4854,9748000 +4855,10399000 +4856,12006000 +4857,13514000 +4858,14394000 +4859,14744000 +4860,14835000 +4861,14683000 +4862,14780000 +4863,14782000 +4864,14652000 +4865,14556000 +4866,14317000 +4867,13670000 +4868,13209000 +4869,12690000 +4870,12075000 +4871,12128000 +4872,11661000 +4873,10653000 +4874,9940000 +4875,9614000 +4876,9413000 +4877,9431000 +4878,9579000 +4879,10266000 +4880,11729000 +4881,13205000 +4882,14177000 +4883,14551000 +4884,14702000 +4885,14580000 +4886,14587000 +4887,14372000 +4888,14059000 +4889,13881000 +4890,13718000 +4891,13075000 +4892,12581000 +4893,12076000 +4894,11591000 +4895,11712000 +4896,11346000 +4897,10513000 +4898,9762000 +4899,9378000 +4900,9146000 +4901,9034000 +4902,8923000 +4903,8949000 +4904,9465000 +4905,10447000 +4906,11458000 +4907,11949000 +4908,12077000 +4909,11945000 +4910,11812000 +4911,11620000 +4912,11441000 +4913,11412000 +4914,11398000 +4915,11312000 +4916,11061000 +4917,10649000 +4918,10521000 +4919,10868000 +4920,10415000 +4921,9703000 +4922,9126000 +4923,8736000 +4924,8549000 +4925,8468000 +4926,8340000 +4927,8209000 +4928,8508000 +4929,9067000 +4930,9727000 +4931,10238000 +4932,10554000 +4933,10730000 +4934,10751000 +4935,10664000 +4936,10579000 +4937,10558000 +4938,10859000 +4939,11037000 +4940,10992000 +4941,10846000 +4942,10777000 +4943,11017000 +4944,10428000 +4945,9811000 +4946,9320000 +4947,9083000 +4948,8977000 +4949,8990000 +4950,9181000 +4951,9940000 +4952,11305000 +4953,12770000 +4954,13593000 +4955,13931000 +4956,14165000 +4957,14171000 +4958,14250000 +4959,14133000 +4960,13949000 +4961,13758000 +4962,13611000 +4963,12852000 +4964,12398000 +4965,11900000 +4966,11616000 +4967,11680000 +4968,11129000 +4969,10207000 +4970,9553000 +4971,9214000 +4972,9023000 +4973,8954000 +4974,9151000 +4975,9814000 +4976,11197000 +4977,12642000 +4978,13527000 +4979,13879000 +4980,14053000 +4981,14006000 +4982,14047000 +4983,13956000 +4984,13825000 +4985,13658000 +4986,13504000 +4987,12794000 +4988,12385000 +4989,12044000 +4990,12022000 +4991,11878000 +4992,11250000 +4993,10343000 +4994,9735000 +4995,9400000 +4996,9288000 +4997,9303000 +4998,9515000 +4999,10140000 +5000,11456000 +5001,12868000 +5002,13713000 +5003,14090000 +5004,14297000 +5005,14265000 +5006,14264000 +5007,14133000 +5008,13859000 +5009,13784000 +5010,13601000 +5011,12810000 +5012,12297000 +5013,11800000 +5014,11694000 +5015,11698000 +5016,11134000 +5017,10189000 +5018,9532000 +5019,9213000 +5020,9089000 +5021,9038000 +5022,9270000 +5023,9938000 +5024,11234000 +5025,12658000 +5026,13467000 +5027,13879000 +5028,14092000 +5029,14023000 +5030,14017000 +5031,13904000 +5032,13751000 +5033,13552000 +5034,13467000 +5035,12862000 +5036,12433000 +5037,12015000 +5038,11849000 +5039,11690000 +5040,11091000 +5041,10168000 +5042,9508000 +5043,9229000 +5044,9077000 +5045,9069000 +5046,9208000 +5047,9781000 +5048,11167000 +5049,12551000 +5050,13445000 +5051,13810000 +5052,13978000 +5053,13879000 +5054,13843000 +5055,13715000 +5056,13490000 +5057,13277000 +5058,13194000 +5059,12696000 +5060,12216000 +5061,11754000 +5062,11408000 +5063,11439000 +5064,11040000 +5065,10148000 +5066,9435000 +5067,9059000 +5068,8854000 +5069,8794000 +5070,8804000 +5071,8831000 +5072,9377000 +5073,10306000 +5074,11362000 +5075,11877000 +5076,12070000 +5077,12020000 +5078,11847000 +5079,11736000 +5080,11555000 +5081,11547000 +5082,11558000 +5083,11494000 +5084,11290000 +5085,11023000 +5086,10993000 +5087,11054000 +5088,10457000 +5089,9784000 +5090,9194000 +5091,8859000 +5092,8687000 +5093,8590000 +5094,8468000 +5095,8270000 +5096,8549000 +5097,9131000 +5098,9863000 +5099,10367000 +5100,10638000 +5101,10794000 +5102,10732000 +5103,10645000 +5104,10525000 +5105,10558000 +5106,10907000 +5107,11044000 +5108,10939000 +5109,10675000 +5110,10802000 +5111,11011000 +5112,10357000 +5113,9693000 +5114,9183000 +5115,8920000 +5116,8871000 +5117,8876000 +5118,9094000 +5119,9771000 +5120,11093000 +5121,12452000 +5122,13251000 +5123,13610000 +5124,13881000 +5125,13915000 +5126,13977000 +5127,13864000 +5128,13726000 +5129,13583000 +5130,13507000 +5131,12783000 +5132,12264000 +5133,11840000 +5134,11726000 +5135,11692000 +5136,11047000 +5137,10166000 +5138,9593000 +5139,9295000 +5140,9146000 +5141,9099000 +5142,9281000 +5143,9826000 +5144,11070000 +5145,12391000 +5146,13268000 +5147,13622000 +5148,13774000 +5149,13751000 +5150,13811000 +5151,13697000 +5152,13576000 +5153,13419000 +5154,13313000 +5155,12554000 +5156,12035000 +5157,11622000 +5158,11670000 +5159,11607000 +5160,11015000 +5161,10117000 +5162,9521000 +5163,9191000 +5164,9038000 +5165,9067000 +5166,9243000 +5167,9767000 +5168,11033000 +5169,12389000 +5170,13245000 +5171,13660000 +5172,13893000 +5173,13895000 +5174,13954000 +5175,13848000 +5176,13689000 +5177,13564000 +5178,13458000 +5179,12681000 +5180,12198000 +5181,11724000 +5182,11732000 +5183,11626000 +5184,11022000 +5185,10109000 +5186,9446000 +5187,9125000 +5188,9007000 +5189,8965000 +5190,9116000 +5191,9686000 +5192,10950000 +5193,12364000 +5194,13238000 +5195,13621000 +5196,13828000 +5197,13783000 +5198,13795000 +5199,13669000 +5200,13504000 +5201,13364000 +5202,13253000 +5203,12731000 +5204,12218000 +5205,11782000 +5206,11682000 +5207,11594000 +5208,10975000 +5209,10027000 +5210,9348000 +5211,9079000 +5212,8953000 +5213,8962000 +5214,9149000 +5215,9689000 +5216,10911000 +5217,12324000 +5218,13206000 +5219,13590000 +5220,13811000 +5221,13779000 +5222,13752000 +5223,13607000 +5224,13379000 +5225,13251000 +5226,13184000 +5227,12608000 +5228,12091000 +5229,11589000 +5230,11533000 +5231,11463000 +5232,10952000 +5233,10092000 +5234,9406000 +5235,9037000 +5236,8855000 +5237,8776000 +5238,8760000 +5239,8806000 +5240,9335000 +5241,10296000 +5242,11361000 +5243,11883000 +5244,12074000 +5245,12047000 +5246,11930000 +5247,11755000 +5248,11605000 +5249,11601000 +5250,11664000 +5251,11664000 +5252,11532000 +5253,11273000 +5254,11274000 +5255,11198000 +5256,10595000 +5257,9838000 +5258,9250000 +5259,8881000 +5260,8722000 +5261,8643000 +5262,8598000 +5263,8379000 +5264,8643000 +5265,9252000 +5266,9888000 +5267,10431000 +5268,10718000 +5269,10885000 +5270,10883000 +5271,10729000 +5272,10573000 +5273,10582000 +5274,10998000 +5275,11202000 +5276,11121000 +5277,10922000 +5278,11133000 +5279,11178000 +5280,10467000 +5281,9723000 +5282,9135000 +5283,8933000 +5284,8862000 +5285,8855000 +5286,9113000 +5287,9792000 +5288,11125000 +5289,12532000 +5290,13327000 +5291,13709000 +5292,13952000 +5293,14025000 +5294,14168000 +5295,14010000 +5296,13749000 +5297,13645000 +5298,13433000 +5299,12721000 +5300,12276000 +5301,11858000 +5302,12008000 +5303,11881000 +5304,11263000 +5305,10304000 +5306,9593000 +5307,9270000 +5308,9116000 +5309,9082000 +5310,9285000 +5311,9874000 +5312,11194000 +5313,12639000 +5314,13567000 +5315,13957000 +5316,14142000 +5317,14046000 +5318,14069000 +5319,14129000 +5320,14044000 +5321,13878000 +5322,13815000 +5323,13133000 +5324,12698000 +5325,12347000 +5326,12361000 +5327,11937000 +5328,11270000 +5329,10350000 +5330,9649000 +5331,9342000 +5332,9248000 +5333,9267000 +5334,9489000 +5335,10129000 +5336,11412000 +5337,12784000 +5338,13667000 +5339,14075000 +5340,14241000 +5341,14147000 +5342,14079000 +5343,13940000 +5344,13769000 +5345,13636000 +5346,13465000 +5347,12751000 +5348,12263000 +5349,11854000 +5350,12078000 +5351,11826000 +5352,11202000 +5353,10239000 +5354,9506000 +5355,9191000 +5356,9067000 +5357,8958000 +5358,9244000 +5359,9815000 +5360,11079000 +5361,12483000 +5362,13381000 +5363,13830000 +5364,14020000 +5365,13997000 +5366,14031000 +5367,13911000 +5368,13762000 +5369,13664000 +5370,13578000 +5371,12961000 +5372,12547000 +5373,12127000 +5374,12092000 +5375,11706000 +5376,11073000 +5377,10187000 +5378,9502000 +5379,9171000 +5380,9052000 +5381,8978000 +5382,9226000 +5383,9834000 +5384,11040000 +5385,12357000 +5386,13338000 +5387,13768000 +5388,13934000 +5389,13844000 +5390,13831000 +5391,13656000 +5392,13455000 +5393,13275000 +5394,13175000 +5395,12673000 +5396,12246000 +5397,11857000 +5398,11795000 +5399,11495000 +5400,10993000 +5401,10104000 +5402,9416000 +5403,9019000 +5404,8894000 +5405,8753000 +5406,8766000 +5407,8795000 +5408,9279000 +5409,10255000 +5410,11320000 +5411,11856000 +5412,12007000 +5413,11988000 +5414,11847000 +5415,11646000 +5416,11487000 +5417,11434000 +5418,11495000 +5419,11448000 +5420,11233000 +5421,11085000 +5422,11304000 +5423,11171000 +5424,10574000 +5425,9844000 +5426,9215000 +5427,8830000 +5428,8654000 +5429,8547000 +5430,8479000 +5431,8341000 +5432,8544000 +5433,9186000 +5434,9854000 +5435,10401000 +5436,10754000 +5437,10958000 +5438,10939000 +5439,10777000 +5440,10616000 +5441,10581000 +5442,11089000 +5443,11372000 +5444,11478000 +5445,11576000 +5446,11707000 +5447,11290000 +5448,10545000 +5449,9825000 +5450,9354000 +5451,9169000 +5452,9128000 +5453,9158000 +5454,9467000 +5455,10327000 +5456,11861000 +5457,13313000 +5458,14076000 +5459,14460000 +5460,14783000 +5461,14686000 +5462,14757000 +5463,14654000 +5464,14486000 +5465,14253000 +5466,14040000 +5467,13306000 +5468,12769000 +5469,12560000 +5470,12806000 +5471,12208000 +5472,11421000 +5473,10446000 +5474,9771000 +5475,9418000 +5476,9323000 +5477,9275000 +5478,9600000 +5479,10509000 +5480,11935000 +5481,13407000 +5482,14291000 +5483,14665000 +5484,14896000 +5485,14768000 +5486,14782000 +5487,14652000 +5488,14468000 +5489,14242000 +5490,14119000 +5491,13451000 +5492,13090000 +5493,12887000 +5494,12874000 +5495,12193000 +5496,11420000 +5497,10464000 +5498,9724000 +5499,9439000 +5500,9332000 +5501,9343000 +5502,9633000 +5503,10477000 +5504,11955000 +5505,13491000 +5506,14313000 +5507,14672000 +5508,14910000 +5509,14806000 +5510,14802000 +5511,14689000 +5512,14406000 +5513,14140000 +5514,13890000 +5515,13187000 +5516,12685000 +5517,12429000 +5518,12732000 +5519,12149000 +5520,11370000 +5521,10326000 +5522,9614000 +5523,9275000 +5524,9174000 +5525,9173000 +5526,9435000 +5527,10083000 +5528,11636000 +5529,13122000 +5530,13950000 +5531,14379000 +5532,14590000 +5533,14512000 +5534,14567000 +5535,14449000 +5536,14309000 +5537,14129000 +5538,13906000 +5539,13336000 +5540,12919000 +5541,12606000 +5542,12801000 +5543,12164000 +5544,11442000 +5545,10423000 +5546,9670000 +5547,9345000 +5548,9238000 +5549,9240000 +5550,9514000 +5551,10318000 +5552,11692000 +5553,13175000 +5554,14112000 +5555,14590000 +5556,14832000 +5557,14814000 +5558,14844000 +5559,14680000 +5560,14457000 +5561,14239000 +5562,14067000 +5563,13358000 +5564,12830000 +5565,12412000 +5566,12455000 +5567,11927000 +5568,11372000 +5569,10505000 +5570,9735000 +5571,9323000 +5572,9103000 +5573,8976000 +5574,9035000 +5575,9110000 +5576,9740000 +5577,10887000 +5578,11924000 +5579,12481000 +5580,12572000 +5581,12522000 +5582,12374000 +5583,12205000 +5584,12011000 +5585,11976000 +5586,11956000 +5587,11827000 +5588,11586000 +5589,11436000 +5590,11708000 +5591,11445000 +5592,10823000 +5593,10077000 +5594,9425000 +5595,9081000 +5596,8937000 +5597,8823000 +5598,8758000 +5599,8647000 +5600,8797000 +5601,9473000 +5602,10199000 +5603,10783000 +5604,11101000 +5605,11259000 +5606,11208000 +5607,11040000 +5608,10902000 +5609,10916000 +5610,11375000 +5611,11644000 +5612,11632000 +5613,11697000 +5614,11989000 +5615,11589000 +5616,10832000 +5617,10061000 +5618,9550000 +5619,9331000 +5620,9296000 +5621,9290000 +5622,9668000 +5623,10686000 +5624,12611000 +5625,14218000 +5626,14988000 +5627,15376000 +5628,15618000 +5629,15546000 +5630,15647000 +5631,15494000 +5632,15217000 +5633,14937000 +5634,14607000 +5635,13786000 +5636,13384000 +5637,13085000 +5638,13310000 +5639,12540000 +5640,11709000 +5641,10635000 +5642,9930000 +5643,9629000 +5644,9463000 +5645,9447000 +5646,9669000 +5647,10547000 +5648,12097000 +5649,13632000 +5650,14447000 +5651,14807000 +5652,14976000 +5653,14844000 +5654,14900000 +5655,14816000 +5656,14659000 +5657,14512000 +5658,14242000 +5659,13459000 +5660,13073000 +5661,12957000 +5662,13126000 +5663,12342000 +5664,11521000 +5665,10554000 +5666,9864000 +5667,9555000 +5668,9423000 +5669,9430000 +5670,9710000 +5671,10588000 +5672,12174000 +5673,13669000 +5674,14432000 +5675,14731000 +5676,14936000 +5677,14851000 +5678,14884000 +5679,14810000 +5680,14630000 +5681,14411000 +5682,14196000 +5683,13468000 +5684,13077000 +5685,13119000 +5686,13180000 +5687,12354000 +5688,11602000 +5689,10561000 +5690,9867000 +5691,9608000 +5692,9506000 +5693,9505000 +5694,9892000 +5695,10843000 +5696,12712000 +5697,14322000 +5698,15151000 +5699,15534000 +5700,15685000 +5701,15554000 +5702,15651000 +5703,15553000 +5704,15379000 +5705,15189000 +5706,14974000 +5707,14283000 +5708,13931000 +5709,13902000 +5710,13656000 +5711,12748000 +5712,11913000 +5713,10862000 +5714,10118000 +5715,9755000 +5716,9612000 +5717,9629000 +5718,9920000 +5719,10959000 +5720,12549000 +5721,14084000 +5722,14908000 +5723,15230000 +5724,15308000 +5725,15081000 +5726,15047000 +5727,14813000 +5728,14486000 +5729,14269000 +5730,14078000 +5731,13440000 +5732,12913000 +5733,12848000 +5734,12731000 +5735,11925000 +5736,11287000 +5737,10340000 +5738,9575000 +5739,9142000 +5740,8954000 +5741,8863000 +5742,8918000 +5743,9141000 +5744,9642000 +5745,10724000 +5746,11728000 +5747,12287000 +5748,12460000 +5749,12422000 +5750,12257000 +5751,11979000 +5752,11703000 +5753,11671000 +5754,11747000 +5755,11645000 +5756,11429000 +5757,11562000 +5758,11667000 +5759,11210000 +5760,10558000 +5761,9845000 +5762,9291000 +5763,8952000 +5764,8726000 +5765,8676000 +5766,8647000 +5767,8596000 +5768,8617000 +5769,9336000 +5770,10092000 +5771,10730000 +5772,11128000 +5773,11404000 +5774,11422000 +5775,11279000 +5776,11085000 +5777,11175000 +5778,11799000 +5779,12077000 +5780,11978000 +5781,12097000 +5782,12162000 +5783,11554000 +5784,10638000 +5785,9849000 +5786,9241000 +5787,9038000 +5788,8992000 +5789,9108000 +5790,9450000 +5791,10562000 +5792,12361000 +5793,13924000 +5794,14621000 +5795,14861000 +5796,15074000 +5797,15001000 +5798,15119000 +5799,15045000 +5800,14850000 +5801,14671000 +5802,14415000 +5803,13728000 +5804,13345000 +5805,13226000 +5806,13430000 +5807,12478000 +5808,11563000 +5809,10496000 +5810,9820000 +5811,9527000 +5812,9390000 +5813,9404000 +5814,9727000 +5815,10800000 +5816,12403000 +5817,13827000 +5818,14598000 +5819,14837000 +5820,14993000 +5821,14889000 +5822,14943000 +5823,14840000 +5824,14672000 +5825,14491000 +5826,14266000 +5827,13573000 +5828,13144000 +5829,13169000 +5830,13413000 +5831,12496000 +5832,11557000 +5833,10501000 +5834,9800000 +5835,9455000 +5836,9376000 +5837,9409000 +5838,9727000 +5839,10834000 +5840,12443000 +5841,13888000 +5842,14590000 +5843,14892000 +5844,15037000 +5845,14935000 +5846,15015000 +5847,14908000 +5848,14732000 +5849,14520000 +5850,14328000 +5851,13546000 +5852,13167000 +5853,13264000 +5854,13370000 +5855,12426000 +5856,11623000 +5857,10486000 +5858,9842000 +5859,9523000 +5860,9433000 +5861,9423000 +5862,9769000 +5863,10764000 +5864,12487000 +5865,13951000 +5866,14627000 +5867,14920000 +5868,15086000 +5869,14962000 +5870,15057000 +5871,14863000 +5872,14702000 +5873,14472000 +5874,14372000 +5875,13805000 +5876,13519000 +5877,13636000 +5878,13506000 +5879,12488000 +5880,11540000 +5881,10485000 +5882,9843000 +5883,9499000 +5884,9418000 +5885,9412000 +5886,9686000 +5887,10774000 +5888,12392000 +5889,13815000 +5890,14593000 +5891,14865000 +5892,14961000 +5893,14825000 +5894,14807000 +5895,14673000 +5896,14401000 +5897,14131000 +5898,14019000 +5899,13461000 +5900,13051000 +5901,13209000 +5902,13048000 +5903,12198000 +5904,11469000 +5905,10476000 +5906,9735000 +5907,9300000 +5908,9119000 +5909,9031000 +5910,9064000 +5911,9344000 +5912,9877000 +5913,10902000 +5914,11938000 +5915,12376000 +5916,12457000 +5917,12342000 +5918,12162000 +5919,11910000 +5920,11682000 +5921,11617000 +5922,11735000 +5923,11701000 +5924,11585000 +5925,11874000 +5926,11878000 +5927,11285000 +5928,10603000 +5929,9863000 +5930,9215000 +5931,8854000 +5932,8677000 +5933,8642000 +5934,8628000 +5935,8672000 +5936,8712000 +5937,9428000 +5938,10182000 +5939,10711000 +5940,10969000 +5941,11134000 +5942,11051000 +5943,10818000 +5944,10637000 +5945,10684000 +5946,11164000 +5947,11376000 +5948,11447000 +5949,11935000 +5950,12014000 +5951,11391000 +5952,10502000 +5953,9684000 +5954,9186000 +5955,8967000 +5956,8949000 +5957,9033000 +5958,9465000 +5959,10708000 +5960,12339000 +5961,13824000 +5962,14390000 +5963,14622000 +5964,14867000 +5965,14826000 +5966,14958000 +5967,14761000 +5968,14626000 +5969,14486000 +5970,14336000 +5971,13647000 +5972,13330000 +5973,13639000 +5974,13420000 +5975,12342000 +5976,11438000 +5977,10330000 +5978,9673000 +5979,9412000 +5980,9348000 +5981,9434000 +5982,9770000 +5983,11065000 +5984,12948000 +5985,14349000 +5986,15060000 +5987,15323000 +5988,15422000 +5989,15290000 +5990,15294000 +5991,15161000 +5992,14945000 +5993,14817000 +5994,14609000 +5995,13871000 +5996,13673000 +5997,13968000 +5998,13585000 +5999,12542000 +6000,11589000 +6001,10546000 +6002,9875000 +6003,9593000 +6004,9438000 +6005,9492000 +6006,9794000 +6007,11015000 +6008,12899000 +6009,14404000 +6010,15106000 +6011,15356000 +6012,15508000 +6013,15402000 +6014,15426000 +6015,15360000 +6016,15182000 +6017,15008000 +6018,14825000 +6019,14060000 +6020,13771000 +6021,14104000 +6022,13679000 +6023,12612000 +6024,11683000 +6025,10606000 +6026,9899000 +6027,9596000 +6028,9506000 +6029,9535000 +6030,9897000 +6031,11069000 +6032,12857000 +6033,14222000 +6034,14921000 +6035,15185000 +6036,15274000 +6037,15127000 +6038,15228000 +6039,15070000 +6040,14913000 +6041,14800000 +6042,14589000 +6043,13965000 +6044,13624000 +6045,13989000 +6046,13578000 +6047,12556000 +6048,11679000 +6049,10600000 +6050,9917000 +6051,9600000 +6052,9478000 +6053,9523000 +6054,9839000 +6055,11023000 +6056,12770000 +6057,14270000 +6058,14990000 +6059,15214000 +6060,15258000 +6061,15122000 +6062,15082000 +6063,14904000 +6064,14570000 +6065,14376000 +6066,14317000 +6067,13855000 +6068,13618000 +6069,13767000 +6070,13066000 +6071,12170000 +6072,11561000 +6073,10558000 +6074,9769000 +6075,9366000 +6076,9150000 +6077,9081000 +6078,9125000 +6079,9497000 +6080,10029000 +6081,11119000 +6082,12151000 +6083,12590000 +6084,12709000 +6085,12622000 +6086,12406000 +6087,12193000 +6088,11947000 +6089,11917000 +6090,12008000 +6091,11953000 +6092,11812000 +6093,12344000 +6094,12058000 +6095,11494000 +6096,10802000 +6097,10068000 +6098,9452000 +6099,9083000 +6100,8855000 +6101,8826000 +6102,8789000 +6103,8921000 +6104,9022000 +6105,9627000 +6106,10464000 +6107,11144000 +6108,11473000 +6109,11630000 +6110,11595000 +6111,11363000 +6112,11111000 +6113,11108000 +6114,11578000 +6115,11774000 +6116,11762000 +6117,12429000 +6118,12230000 +6119,11572000 +6120,10592000 +6121,9740000 +6122,9236000 +6123,9059000 +6124,9012000 +6125,9101000 +6126,9474000 +6127,10784000 +6128,12572000 +6129,14007000 +6130,14586000 +6131,14887000 +6132,15016000 +6133,14919000 +6134,15034000 +6135,14946000 +6136,14767000 +6137,14591000 +6138,14373000 +6139,13644000 +6140,13512000 +6141,14075000 +6142,13550000 +6143,12441000 +6144,11480000 +6145,10390000 +6146,9718000 +6147,9451000 +6148,9359000 +6149,9400000 +6150,9771000 +6151,11096000 +6152,13032000 +6153,14448000 +6154,15122000 +6155,15331000 +6156,15391000 +6157,15311000 +6158,15463000 +6159,15440000 +6160,15264000 +6161,15174000 +6162,15085000 +6163,14502000 +6164,14396000 +6165,14474000 +6166,13796000 +6167,12707000 +6168,11744000 +6169,10558000 +6170,9854000 +6171,9556000 +6172,9443000 +6173,9469000 +6174,9756000 +6175,11036000 +6176,12759000 +6177,14151000 +6178,14788000 +6179,14952000 +6180,15112000 +6181,14943000 +6182,14986000 +6183,14909000 +6184,14767000 +6185,14697000 +6186,14634000 +6187,14021000 +6188,14095000 +6189,14275000 +6190,13582000 +6191,12564000 +6192,11641000 +6193,10526000 +6194,9889000 +6195,9595000 +6196,9390000 +6197,9417000 +6198,9770000 +6199,11117000 +6200,12905000 +6201,14162000 +6202,14815000 +6203,15001000 +6204,15117000 +6205,14970000 +6206,15080000 +6207,14989000 +6208,14823000 +6209,14721000 +6210,14612000 +6211,14062000 +6212,14012000 +6213,14474000 +6214,13710000 +6215,12647000 +6216,11661000 +6217,10618000 +6218,9908000 +6219,9570000 +6220,9504000 +6221,9504000 +6222,9793000 +6223,11050000 +6224,12863000 +6225,14275000 +6226,14959000 +6227,15145000 +6228,15250000 +6229,15080000 +6230,14976000 +6231,14754000 +6232,14467000 +6233,14304000 +6234,14200000 +6235,13660000 +6236,13516000 +6237,13888000 +6238,13111000 +6239,12129000 +6240,11456000 +6241,10417000 +6242,9629000 +6243,9245000 +6244,9087000 +6245,9045000 +6246,9056000 +6247,9467000 +6248,10114000 +6249,11170000 +6250,12130000 +6251,12537000 +6252,12606000 +6253,12483000 +6254,12241000 +6255,11980000 +6256,11708000 +6257,11691000 +6258,11885000 +6259,11852000 +6260,11887000 +6261,12457000 +6262,11960000 +6263,11370000 +6264,10632000 +6265,9815000 +6266,9156000 +6267,8791000 +6268,8628000 +6269,8603000 +6270,8607000 +6271,8746000 +6272,8959000 +6273,9600000 +6274,10360000 +6275,10968000 +6276,11273000 +6277,11488000 +6278,11405000 +6279,11224000 +6280,11075000 +6281,11139000 +6282,11713000 +6283,11976000 +6284,12247000 +6285,12782000 +6286,12241000 +6287,11505000 +6288,10484000 +6289,9666000 +6290,9156000 +6291,8997000 +6292,8960000 +6293,9007000 +6294,9431000 +6295,10845000 +6296,12870000 +6297,14240000 +6298,14776000 +6299,14969000 +6300,15126000 +6301,14987000 +6302,15103000 +6303,14976000 +6304,14819000 +6305,14695000 +6306,14559000 +6307,13820000 +6308,13959000 +6309,14280000 +6310,13564000 +6311,12426000 +6312,11454000 +6313,10399000 +6314,9745000 +6315,9444000 +6316,9363000 +6317,9383000 +6318,9713000 +6319,11040000 +6320,12913000 +6321,14221000 +6322,14850000 +6323,14998000 +6324,15116000 +6325,14904000 +6326,14905000 +6327,14845000 +6328,14696000 +6329,14612000 +6330,14425000 +6331,13669000 +6332,13547000 +6333,14151000 +6334,13500000 +6335,12454000 +6336,11494000 +6337,10435000 +6338,9733000 +6339,9441000 +6340,9299000 +6341,9304000 +6342,9634000 +6343,10944000 +6344,12843000 +6345,14080000 +6346,14699000 +6347,14886000 +6348,15008000 +6349,14882000 +6350,15023000 +6351,14948000 +6352,14837000 +6353,14708000 +6354,14552000 +6355,13710000 +6356,13755000 +6357,14258000 +6358,13603000 +6359,12534000 +6360,11515000 +6361,10428000 +6362,9737000 +6363,9421000 +6364,9308000 +6365,9309000 +6366,9649000 +6367,10971000 +6368,12904000 +6369,14109000 +6370,14729000 +6371,14892000 +6372,15077000 +6373,15038000 +6374,15156000 +6375,15082000 +6376,14970000 +6377,14935000 +6378,14791000 +6379,14275000 +6380,14687000 +6381,14594000 +6382,13660000 +6383,12593000 +6384,11631000 +6385,10598000 +6386,9952000 +6387,9656000 +6388,9524000 +6389,9516000 +6390,9868000 +6391,11164000 +6392,13127000 +6393,14443000 +6394,15108000 +6395,15214000 +6396,15294000 +6397,15079000 +6398,15059000 +6399,14869000 +6400,14609000 +6401,14378000 +6402,14254000 +6403,13629000 +6404,13741000 +6405,14047000 +6406,13173000 +6407,12264000 +6408,11542000 +6409,10499000 +6410,9721000 +6411,9292000 +6412,9120000 +6413,8996000 +6414,9036000 +6415,9452000 +6416,10163000 +6417,11182000 +6418,12129000 +6419,12552000 +6420,12648000 +6421,12496000 +6422,12280000 +6423,12044000 +6424,11839000 +6425,11847000 +6426,12099000 +6427,12099000 +6428,12402000 +6429,12730000 +6430,12027000 +6431,11423000 +6432,10737000 +6433,9953000 +6434,9322000 +6435,8888000 +6436,8731000 +6437,8691000 +6438,8689000 +6439,8813000 +6440,9102000 +6441,9712000 +6442,10522000 +6443,11162000 +6444,11484000 +6445,11680000 +6446,11559000 +6447,11302000 +6448,11046000 +6449,11047000 +6450,11545000 +6451,11818000 +6452,12353000 +6453,12875000 +6454,12328000 +6455,11524000 +6456,10503000 +6457,9655000 +6458,9170000 +6459,8994000 +6460,8926000 +6461,8974000 +6462,9396000 +6463,10785000 +6464,12871000 +6465,14224000 +6466,14801000 +6467,15097000 +6468,15316000 +6469,15297000 +6470,15459000 +6471,15347000 +6472,15232000 +6473,15170000 +6474,15148000 +6475,14641000 +6476,14990000 +6477,14687000 +6478,13817000 +6479,12658000 +6480,11597000 +6481,10507000 +6482,9814000 +6483,9529000 +6484,9441000 +6485,9508000 +6486,9865000 +6487,11207000 +6488,13414000 +6489,14664000 +6490,15238000 +6491,15390000 +6492,15429000 +6493,15323000 +6494,15360000 +6495,15257000 +6496,15091000 +6497,14982000 +6498,14890000 +6499,14352000 +6500,14706000 +6501,14599000 +6502,13791000 +6503,12678000 +6504,11658000 +6505,10485000 +6506,9759000 +6507,9448000 +6508,9351000 +6509,9316000 +6510,9684000 +6511,11029000 +6512,13100000 +6513,14294000 +6514,14825000 +6515,14897000 +6516,14970000 +6517,14794000 +6518,14859000 +6519,14726000 +6520,14542000 +6521,14434000 +6522,14361000 +6523,13675000 +6524,14165000 +6525,14334000 +6526,13576000 +6527,12440000 +6528,11426000 +6529,10289000 +6530,9596000 +6531,9295000 +6532,9228000 +6533,9264000 +6534,9651000 +6535,11050000 +6536,13264000 +6537,14506000 +6538,15184000 +6539,15363000 +6540,15480000 +6541,15355000 +6542,15397000 +6543,15287000 +6544,15127000 +6545,15006000 +6546,14864000 +6547,14378000 +6548,14853000 +6549,14757000 +6550,13846000 +6551,12665000 +6552,11623000 +6553,10500000 +6554,9780000 +6555,9490000 +6556,9346000 +6557,9358000 +6558,9724000 +6559,11041000 +6560,13148000 +6561,14371000 +6562,14916000 +6563,15032000 +6564,14955000 +6565,14841000 +6566,14847000 +6567,14640000 +6568,14343000 +6569,14157000 +6570,14111000 +6571,13639000 +6572,14172000 +6573,14121000 +6574,13109000 +6575,12207000 +6576,11480000 +6577,10491000 +6578,9759000 +6579,9384000 +6580,9197000 +6581,9100000 +6582,9167000 +6583,9543000 +6584,10447000 +6585,11448000 +6586,12525000 +6587,12958000 +6588,13043000 +6589,12885000 +6590,12655000 +6591,12392000 +6592,12200000 +6593,12306000 +6594,12618000 +6595,12826000 +6596,13292000 +6597,12954000 +6598,12195000 +6599,11534000 +6600,10746000 +6601,9916000 +6602,9217000 +6603,8831000 +6604,8655000 +6605,8578000 +6606,8565000 +6607,8734000 +6608,9034000 +6609,9603000 +6610,10394000 +6611,10944000 +6612,11208000 +6613,11331000 +6614,11213000 +6615,11005000 +6616,10852000 +6617,10941000 +6618,11530000 +6619,11891000 +6620,12800000 +6621,12872000 +6622,12201000 +6623,11395000 +6624,10353000 +6625,9552000 +6626,9108000 +6627,8934000 +6628,8865000 +6629,8946000 +6630,9351000 +6631,10754000 +6632,13044000 +6633,14300000 +6634,14808000 +6635,14997000 +6636,15119000 +6637,14972000 +6638,15203000 +6639,15101000 +6640,14883000 +6641,14747000 +6642,14629000 +6643,14154000 +6644,14790000 +6645,14463000 +6646,13602000 +6647,12452000 +6648,11439000 +6649,10356000 +6650,9643000 +6651,9339000 +6652,9291000 +6653,9299000 +6654,9648000 +6655,11016000 +6656,13236000 +6657,14448000 +6658,15013000 +6659,15191000 +6660,15265000 +6661,15069000 +6662,15108000 +6663,15043000 +6664,14922000 +6665,14798000 +6666,14709000 +6667,14186000 +6668,14812000 +6669,14485000 +6670,13631000 +6671,12479000 +6672,11489000 +6673,10400000 +6674,9782000 +6675,9469000 +6676,9374000 +6677,9391000 +6678,9755000 +6679,11124000 +6680,13393000 +6681,14625000 +6682,15172000 +6683,15327000 +6684,15398000 +6685,15264000 +6686,15323000 +6687,15200000 +6688,15097000 +6689,15027000 +6690,15027000 +6691,14516000 +6692,14831000 +6693,14410000 +6694,13576000 +6695,12461000 +6696,11550000 +6697,10475000 +6698,9779000 +6699,9477000 +6700,9348000 +6701,9368000 +6702,9699000 +6703,11054000 +6704,13304000 +6705,14467000 +6706,15027000 +6707,15130000 +6708,15249000 +6709,15092000 +6710,15164000 +6711,15051000 +6712,14908000 +6713,14812000 +6714,14736000 +6715,14401000 +6716,15118000 +6717,14701000 +6718,13718000 +6719,12613000 +6720,11631000 +6721,10590000 +6722,9870000 +6723,9574000 +6724,9401000 +6725,9456000 +6726,9812000 +6727,11103000 +6728,13335000 +6729,14548000 +6730,15090000 +6731,15215000 +6732,15264000 +6733,15091000 +6734,15072000 +6735,14892000 +6736,14658000 +6737,14442000 +6738,14467000 +6739,14151000 +6740,14640000 +6741,14145000 +6742,13129000 +6743,12191000 +6744,11425000 +6745,10448000 +6746,9625000 +6747,9232000 +6748,9016000 +6749,8900000 +6750,8918000 +6751,9358000 +6752,10332000 +6753,11263000 +6754,12254000 +6755,12591000 +6756,12613000 +6757,12424000 +6758,12201000 +6759,11938000 +6760,11718000 +6761,11704000 +6762,11938000 +6763,12104000 +6764,12941000 +6765,12706000 +6766,11984000 +6767,11366000 +6768,10600000 +6769,9811000 +6770,9187000 +6771,8816000 +6772,8617000 +6773,8571000 +6774,8560000 +6775,8720000 +6776,9128000 +6777,9700000 +6778,10460000 +6779,10883000 +6780,11087000 +6781,11158000 +6782,10966000 +6783,10728000 +6784,10566000 +6785,10639000 +6786,11329000 +6787,11752000 +6788,12831000 +6789,12776000 +6790,12156000 +6791,11395000 +6792,10418000 +6793,9602000 +6794,9083000 +6795,8905000 +6796,8883000 +6797,8992000 +6798,9444000 +6799,10939000 +6800,13245000 +6801,14393000 +6802,14833000 +6803,14918000 +6804,14989000 +6805,14861000 +6806,14946000 +6807,14799000 +6808,14618000 +6809,14513000 +6810,14453000 +6811,13984000 +6812,14818000 +6813,14589000 +6814,13713000 +6815,12571000 +6816,11517000 +6817,10396000 +6818,9681000 +6819,9420000 +6820,9347000 +6821,9373000 +6822,9776000 +6823,11157000 +6824,13614000 +6825,14653000 +6826,15122000 +6827,15169000 +6828,15194000 +6829,15034000 +6830,15090000 +6831,14981000 +6832,14829000 +6833,14745000 +6834,14652000 +6835,14203000 +6836,14944000 +6837,14604000 +6838,13798000 +6839,12572000 +6840,11527000 +6841,10414000 +6842,9685000 +6843,9382000 +6844,9246000 +6845,9306000 +6846,9653000 +6847,10947000 +6848,13350000 +6849,14625000 +6850,15165000 +6851,15315000 +6852,15354000 +6853,15244000 +6854,15305000 +6855,15175000 +6856,14984000 +6857,14875000 +6858,14845000 +6859,14381000 +6860,14970000 +6861,14580000 +6862,13749000 +6863,12636000 +6864,11650000 +6865,10517000 +6866,9808000 +6867,9524000 +6868,9425000 +6869,9413000 +6870,9801000 +6871,11183000 +6872,13569000 +6873,14789000 +6874,15324000 +6875,15465000 +6876,15535000 +6877,15335000 +6878,15385000 +6879,15352000 +6880,15232000 +6881,15193000 +6882,15173000 +6883,15014000 +6884,15502000 +6885,14935000 +6886,13992000 +6887,12821000 +6888,11777000 +6889,10671000 +6890,9934000 +6891,9610000 +6892,9521000 +6893,9489000 +6894,9846000 +6895,11202000 +6896,13457000 +6897,14813000 +6898,15326000 +6899,15427000 +6900,15499000 +6901,15321000 +6902,15349000 +6903,15268000 +6904,15086000 +6905,14971000 +6906,15122000 +6907,15068000 +6908,15178000 +6909,14528000 +6910,13537000 +6911,12593000 +6912,11815000 +6913,10747000 +6914,9923000 +6915,9510000 +6916,9303000 +6917,9210000 +6918,9213000 +6919,9682000 +6920,10696000 +6921,11707000 +6922,12744000 +6923,13174000 +6924,13293000 +6925,13145000 +6926,12893000 +6927,12666000 +6928,12400000 +6929,12397000 +6930,12626000 +6931,12914000 +6932,13574000 +6933,13105000 +6934,12402000 +6935,11829000 +6936,11067000 +6937,10181000 +6938,9493000 +6939,9110000 +6940,8950000 +6941,8826000 +6942,8903000 +6943,9083000 +6944,9565000 +6945,10198000 +6946,10957000 +6947,11348000 +6948,11638000 +6949,11750000 +6950,11624000 +6951,11364000 +6952,11138000 +6953,11254000 +6954,11993000 +6955,12644000 +6956,13470000 +6957,13284000 +6958,12674000 +6959,11916000 +6960,10795000 +6961,9915000 +6962,9342000 +6963,9175000 +6964,9151000 +6965,9230000 +6966,9683000 +6967,11165000 +6968,13537000 +6969,14786000 +6970,15293000 +6971,15411000 +6972,15504000 +6973,15300000 +6974,15431000 +6975,15344000 +6976,15237000 +6977,15165000 +6978,15282000 +6979,15301000 +6980,15584000 +6981,14879000 +6982,13993000 +6983,12819000 +6984,11805000 +6985,10675000 +6986,9986000 +6987,9654000 +6988,9583000 +6989,9631000 +6990,10028000 +6991,11454000 +6992,13787000 +6993,15033000 +6994,15453000 +6995,15536000 +6996,15589000 +6997,15401000 +6998,15474000 +6999,15477000 +7000,15374000 +7001,15312000 +7002,15329000 +7003,15235000 +7004,15602000 +7005,14988000 +7006,14149000 +7007,13043000 +7008,12031000 +7009,10833000 +7010,10116000 +7011,9792000 +7012,9681000 +7013,9718000 +7014,10128000 +7015,11547000 +7016,13825000 +7017,15184000 +7018,15597000 +7019,15684000 +7020,15736000 +7021,15591000 +7022,15661000 +7023,15588000 +7024,15414000 +7025,15355000 +7026,15407000 +7027,15236000 +7028,15627000 +7029,14998000 +7030,14111000 +7031,13010000 +7032,11969000 +7033,10755000 +7034,10035000 +7035,9731000 +7036,9602000 +7037,9627000 +7038,10019000 +7039,11444000 +7040,13700000 +7041,15047000 +7042,15639000 +7043,15719000 +7044,15718000 +7045,15488000 +7046,15434000 +7047,15247000 +7048,15078000 +7049,15016000 +7050,14980000 +7051,15045000 +7052,15681000 +7053,15093000 +7054,14112000 +7055,12895000 +7056,11858000 +7057,10726000 +7058,9950000 +7059,9627000 +7060,9511000 +7061,9533000 +7062,9846000 +7063,11229000 +7064,13484000 +7065,14928000 +7066,15454000 +7067,15632000 +7068,15655000 +7069,15412000 +7070,15379000 +7071,15203000 +7072,14910000 +7073,14688000 +7074,14716000 +7075,14797000 +7076,15214000 +7077,14541000 +7078,13572000 +7079,12626000 +7080,11834000 +7081,10745000 +7082,9927000 +7083,9471000 +7084,9277000 +7085,9205000 +7086,9266000 +7087,9738000 +7088,10731000 +7089,11694000 +7090,12814000 +7091,13382000 +7092,13511000 +7093,13454000 +7094,13339000 +7095,13268000 +7096,13147000 +7097,13224000 +7098,13488000 +7099,13851000 +7100,13987000 +7101,13374000 +7102,12546000 +7103,11923000 +7104,11085000 +7105,10237000 +7106,9498000 +7107,9111000 +7108,8920000 +7109,8819000 +7110,8830000 +7111,9038000 +7112,9603000 +7113,10192000 +7114,10974000 +7115,11486000 +7116,11764000 +7117,11935000 +7118,11932000 +7119,11714000 +7120,11481000 +7121,11529000 +7122,12173000 +7123,12989000 +7124,13611000 +7125,13265000 +7126,12661000 +7127,11956000 +7128,10938000 +7129,10002000 +7130,9454000 +7131,9169000 +7132,9116000 +7133,9210000 +7134,9646000 +7135,11086000 +7136,13458000 +7137,14923000 +7138,15384000 +7139,15559000 +7140,15594000 +7141,15340000 +7142,15420000 +7143,15227000 +7144,15055000 +7145,15001000 +7146,14987000 +7147,15055000 +7148,15633000 +7149,15005000 +7150,14092000 +7151,12944000 +7152,11948000 +7153,10782000 +7154,10043000 +7155,9748000 +7156,9614000 +7157,9614000 +7158,10050000 +7159,11431000 +7160,13773000 +7161,15147000 +7162,15639000 +7163,15774000 +7164,15803000 +7165,15639000 +7166,15684000 +7167,15621000 +7168,15497000 +7169,15412000 +7170,15456000 +7171,15696000 +7172,15762000 +7173,15086000 +7174,14188000 +7175,13024000 +7176,11964000 +7177,10827000 +7178,10074000 +7179,9765000 +7180,9647000 +7181,9690000 +7182,10085000 +7183,11448000 +7184,13753000 +7185,15375000 +7186,15974000 +7187,16072000 +7188,16084000 +7189,15900000 +7190,15950000 +7191,15846000 +7192,15688000 +7193,15594000 +7194,15763000 +7195,15718000 +7196,15677000 +7197,14954000 +7198,14099000 +7199,12984000 +7200,12016000 +7201,10787000 +7202,10015000 +7203,9687000 +7204,9558000 +7205,9548000 +7206,9933000 +7207,11311000 +7208,13631000 +7209,15132000 +7210,15600000 +7211,15768000 +7212,15863000 +7213,15657000 +7214,15692000 +7215,15557000 +7216,15395000 +7217,15339000 +7218,15440000 +7219,15589000 +7220,15759000 +7221,15108000 +7222,14105000 +7223,12974000 +7224,12002000 +7225,10843000 +7226,10032000 +7227,9739000 +7228,9578000 +7229,9608000 +7230,9944000 +7231,11263000 +7232,13423000 +7233,14979000 +7234,15552000 +7235,15676000 +7236,15609000 +7237,15364000 +7238,15329000 +7239,15126000 +7240,14859000 +7241,14717000 +7242,14891000 +7243,15135000 +7244,15130000 +7245,14447000 +7246,13430000 +7247,12480000 +7248,11745000 +7249,10708000 +7250,9866000 +7251,9451000 +7252,9186000 +7253,9090000 +7254,9141000 +7255,9563000 +7256,10561000 +7257,11806000 +7258,12800000 +7259,13317000 +7260,13426000 +7261,13315000 +7262,13068000 +7263,12804000 +7264,12582000 +7265,12550000 +7266,12895000 +7267,13612000 +7268,13839000 +7269,13205000 +7270,12458000 +7271,11817000 +7272,11101000 +7273,10218000 +7274,9511000 +7275,9054000 +7276,8852000 +7277,8743000 +7278,8769000 +7279,8848000 +7280,9086000 +7281,9618000 +7282,10432000 +7283,11212000 +7284,11730000 +7285,11962000 +7286,12110000 +7287,12007000 +7288,11798000 +7289,11517000 +7290,11729000 +7291,13277000 +7292,13882000 +7293,13701000 +7294,13155000 +7295,12448000 +7296,11686000 +7297,9776000 +7298,9292000 +7299,9109000 +7300,9124000 +7301,9244000 +7302,9628000 +7303,11194000 +7304,13542000 +7305,14932000 +7306,15532000 +7307,15726000 +7308,15871000 +7309,15689000 +7310,15740000 +7311,15632000 +7312,15579000 +7313,15825000 +7314,16532000 +7315,16247000 +7316,15796000 +7317,14886000 +7318,13880000 +7319,12653000 +7320,11662000 +7321,10587000 +7322,9926000 +7323,9619000 +7324,9543000 +7325,9591000 +7326,10010000 +7327,11558000 +7328,13812000 +7329,15007000 +7330,15628000 +7331,15837000 +7332,15956000 +7333,15819000 +7334,15878000 +7335,15752000 +7336,15591000 +7337,15684000 +7338,16531000 +7339,16195000 +7340,15719000 +7341,14960000 +7342,14069000 +7343,12892000 +7344,11854000 +7345,10797000 +7346,10070000 +7347,9752000 +7348,9652000 +7349,9675000 +7350,10054000 +7351,11511000 +7352,13829000 +7353,15191000 +7354,15783000 +7355,15877000 +7356,15830000 +7357,15608000 +7358,15610000 +7359,15498000 +7360,15404000 +7361,15531000 +7362,16628000 +7363,16225000 +7364,15738000 +7365,14939000 +7366,14115000 +7367,13005000 +7368,11983000 +7369,10848000 +7370,10144000 +7371,9809000 +7372,9642000 +7373,9670000 +7374,10073000 +7375,11558000 +7376,13796000 +7377,15027000 +7378,15698000 +7379,15903000 +7380,15999000 +7381,15822000 +7382,15925000 +7383,15853000 +7384,15767000 +7385,16016000 +7386,16841000 +7387,16521000 +7388,16061000 +7389,15213000 +7390,14129000 +7391,12994000 +7392,12011000 +7393,10862000 +7394,10113000 +7395,9777000 +7396,9709000 +7397,9722000 +7398,10043000 +7399,11425000 +7400,13757000 +7401,15093000 +7402,15691000 +7403,15827000 +7404,16002000 +7405,15851000 +7406,15885000 +7407,15728000 +7408,15525000 +7409,15661000 +7410,16541000 +7411,15969000 +7412,15465000 +7413,14605000 +7414,13688000 +7415,12615000 +7416,11893000 +7417,10910000 +7418,10184000 +7419,9785000 +7420,9623000 +7421,9581000 +7422,9506000 +7423,9991000 +7424,10951000 +7425,12054000 +7426,13059000 +7427,13479000 +7428,13529000 +7429,13411000 +7430,13241000 +7431,13028000 +7432,12884000 +7433,13165000 +7434,14362000 +7435,14431000 +7436,13988000 +7437,13233000 +7438,12509000 +7439,11874000 +7440,11120000 +7441,10346000 +7442,9634000 +7443,9263000 +7444,9064000 +7445,8988000 +7446,9005000 +7447,9233000 +7448,9644000 +7449,10329000 +7450,11169000 +7451,11780000 +7452,12169000 +7453,12361000 +7454,12244000 +7455,12027000 +7456,11885000 +7457,11968000 +7458,13707000 +7459,14213000 +7460,14032000 +7461,13560000 +7462,12817000 +7463,12061000 +7464,11016000 +7465,10162000 +7466,9607000 +7467,9371000 +7468,9374000 +7469,9504000 +7470,9931000 +7471,11458000 +7472,13825000 +7473,15143000 +7474,15671000 +7475,15799000 +7476,15919000 +7477,15727000 +7478,15912000 +7479,15837000 +7480,15702000 +7481,15892000 +7482,16810000 +7483,16446000 +7484,16045000 +7485,15163000 +7486,14243000 +7487,13092000 +7488,11984000 +7489,10837000 +7490,10157000 +7491,9785000 +7492,9675000 +7493,9727000 +7494,10111000 +7495,11630000 +7496,14032000 +7497,15371000 +7498,15918000 +7499,16124000 +7500,16181000 +7501,16054000 +7502,16125000 +7503,16059000 +7504,15975000 +7505,16253000 +7506,17093000 +7507,16571000 +7508,16159000 +7509,15334000 +7510,14422000 +7511,13155000 +7512,12132000 +7513,10997000 +7514,10269000 +7515,9867000 +7516,9815000 +7517,9890000 +7518,10244000 +7519,11700000 +7520,14126000 +7521,15435000 +7522,16069000 +7523,16217000 +7524,16261000 +7525,16088000 +7526,16103000 +7527,15985000 +7528,15829000 +7529,16002000 +7530,16985000 +7531,16512000 +7532,15975000 +7533,15191000 +7534,14294000 +7535,13123000 +7536,12046000 +7537,10935000 +7538,10183000 +7539,9818000 +7540,9712000 +7541,9745000 +7542,10114000 +7543,11640000 +7544,14030000 +7545,15237000 +7546,15984000 +7547,16267000 +7548,16417000 +7549,16329000 +7550,16522000 +7551,16675000 +7552,16699000 +7553,17015000 +7554,17476000 +7555,16830000 +7556,16350000 +7557,15468000 +7558,14385000 +7559,13226000 +7560,12154000 +7561,11094000 +7562,10371000 +7563,10036000 +7564,9908000 +7565,9894000 +7566,10226000 +7567,11586000 +7568,13855000 +7569,15203000 +7570,15890000 +7571,16047000 +7572,16090000 +7573,15831000 +7574,15863000 +7575,15746000 +7576,15564000 +7577,15869000 +7578,16748000 +7579,16166000 +7580,15497000 +7581,14738000 +7582,13752000 +7583,12734000 +7584,12022000 +7585,11014000 +7586,10280000 +7587,9799000 +7588,9518000 +7589,9398000 +7590,9516000 +7591,9999000 +7592,10984000 +7593,11959000 +7594,13045000 +7595,13677000 +7596,13938000 +7597,13742000 +7598,13514000 +7599,13299000 +7600,13096000 +7601,13539000 +7602,14793000 +7603,14611000 +7604,14151000 +7605,13482000 +7606,12708000 +7607,12061000 +7608,11266000 +7609,10475000 +7610,9772000 +7611,9323000 +7612,9155000 +7613,9026000 +7614,9091000 +7615,9331000 +7616,9777000 +7617,10360000 +7618,11215000 +7619,11867000 +7620,12234000 +7621,12514000 +7622,12575000 +7623,12460000 +7624,12399000 +7625,12901000 +7626,14210000 +7627,14326000 +7628,14045000 +7629,13536000 +7630,12846000 +7631,12064000 +7632,11064000 +7633,10137000 +7634,9589000 +7635,9371000 +7636,9329000 +7637,9417000 +7638,9860000 +7639,11440000 +7640,13821000 +7641,15087000 +7642,15687000 +7643,15866000 +7644,15903000 +7645,15658000 +7646,15776000 +7647,15639000 +7648,15553000 +7649,15771000 +7650,16860000 +7651,16417000 +7652,15922000 +7653,15156000 +7654,14278000 +7655,13053000 +7656,11960000 +7657,10897000 +7658,10146000 +7659,9777000 +7660,9636000 +7661,9617000 +7662,9992000 +7663,11507000 +7664,13815000 +7665,14982000 +7666,15620000 +7667,15654000 +7668,15621000 +7669,15385000 +7670,15417000 +7671,15389000 +7672,15411000 +7673,15717000 +7674,16690000 +7675,16176000 +7676,15768000 +7677,14999000 +7678,14072000 +7679,12837000 +7680,11787000 +7681,10661000 +7682,9985000 +7683,9685000 +7684,9556000 +7685,9620000 +7686,10023000 +7687,11492000 +7688,13911000 +7689,15218000 +7690,15776000 +7691,15919000 +7692,15986000 +7693,15833000 +7694,15925000 +7695,15919000 +7696,15971000 +7697,16433000 +7698,17128000 +7699,16401000 +7700,15855000 +7701,15011000 +7702,14176000 +7703,13017000 +7704,11983000 +7705,10797000 +7706,10074000 +7707,9729000 +7708,9617000 +7709,9660000 +7710,10068000 +7711,11588000 +7712,14026000 +7713,15362000 +7714,15921000 +7715,16143000 +7716,16192000 +7717,15963000 +7718,16019000 +7719,15931000 +7720,15947000 +7721,16093000 +7722,17049000 +7723,16516000 +7724,16061000 +7725,15316000 +7726,14240000 +7727,13039000 +7728,12043000 +7729,10939000 +7730,10233000 +7731,9844000 +7732,9711000 +7733,9708000 +7734,10113000 +7735,11573000 +7736,13919000 +7737,15311000 +7738,15937000 +7739,16095000 +7740,16133000 +7741,15889000 +7742,15865000 +7743,15758000 +7744,15578000 +7745,15841000 +7746,16589000 +7747,15975000 +7748,15355000 +7749,14577000 +7750,13603000 +7751,12598000 +7752,11852000 +7753,10880000 +7754,10063000 +7755,9638000 +7756,9417000 +7757,9300000 +7758,9379000 +7759,9888000 +7760,10922000 +7761,12033000 +7762,13159000 +7763,13631000 +7764,13714000 +7765,13520000 +7766,13156000 +7767,12878000 +7768,12826000 +7769,13328000 +7770,14653000 +7771,14480000 +7772,14069000 +7773,13394000 +7774,12633000 +7775,12021000 +7776,11271000 +7777,10379000 +7778,9686000 +7779,9240000 +7780,9036000 +7781,8969000 +7782,8990000 +7783,9207000 +7784,9757000 +7785,10405000 +7786,11201000 +7787,11771000 +7788,12070000 +7789,12169000 +7790,12098000 +7791,11958000 +7792,11910000 +7793,12428000 +7794,14158000 +7795,14335000 +7796,14139000 +7797,13667000 +7798,12946000 +7799,12091000 +7800,11028000 +7801,10086000 +7802,9536000 +7803,9340000 +7804,9271000 +7805,9343000 +7806,9817000 +7807,11380000 +7808,13936000 +7809,15408000 +7810,15885000 +7811,16018000 +7812,16088000 +7813,15945000 +7814,16066000 +7815,15923000 +7816,15922000 +7817,16340000 +7818,17242000 +7819,16605000 +7820,16162000 +7821,15362000 +7822,14434000 +7823,13207000 +7824,12025000 +7825,10933000 +7826,10186000 +7827,9847000 +7828,9739000 +7829,9772000 +7830,10179000 +7831,11719000 +7832,14218000 +7833,15501000 +7834,16094000 +7835,16214000 +7836,16252000 +7837,15997000 +7838,16003000 +7839,15911000 +7840,15902000 +7841,16265000 +7842,17159000 +7843,16597000 +7844,16205000 +7845,15375000 +7846,14439000 +7847,13188000 +7848,12104000 +7849,10927000 +7850,10212000 +7851,9875000 +7852,9767000 +7853,9806000 +7854,10269000 +7855,11743000 +7856,14262000 +7857,15625000 +7858,16121000 +7859,16192000 +7860,16233000 +7861,16075000 +7862,16114000 +7863,16023000 +7864,15980000 +7865,16452000 +7866,17303000 +7867,16602000 +7868,16175000 +7869,15366000 +7870,14478000 +7871,13357000 +7872,12250000 +7873,11014000 +7874,10269000 +7875,9964000 +7876,9830000 +7877,9822000 +7878,10252000 +7879,11725000 +7880,14222000 +7881,15685000 +7882,16278000 +7883,16368000 +7884,16395000 +7885,16179000 +7886,16249000 +7887,16220000 +7888,16231000 +7889,16654000 +7890,17327000 +7891,16795000 +7892,16402000 +7893,15614000 +7894,14559000 +7895,13368000 +7896,12290000 +7897,11130000 +7898,10431000 +7899,10051000 +7900,9916000 +7901,9977000 +7902,10410000 +7903,11891000 +7904,14317000 +7905,15690000 +7906,16197000 +7907,16333000 +7908,16369000 +7909,16147000 +7910,16190000 +7911,16024000 +7912,15798000 +7913,16188000 +7914,17064000 +7915,16520000 +7916,15980000 +7917,15180000 +7918,14150000 +7919,13133000 +7920,12343000 +7921,11242000 +7922,10378000 +7923,9952000 +7924,9710000 +7925,9628000 +7926,9725000 +7927,10236000 +7928,11329000 +7929,12599000 +7930,13770000 +7931,14356000 +7932,14455000 +7933,14358000 +7934,14112000 +7935,13894000 +7936,13740000 +7937,14216000 +7938,15281000 +7939,15078000 +7940,14640000 +7941,13968000 +7942,13175000 +7943,12589000 +7944,11780000 +7945,10838000 +7946,10103000 +7947,9684000 +7948,9429000 +7949,9373000 +7950,9448000 +7951,9694000 +7952,10236000 +7953,10978000 +7954,11826000 +7955,12445000 +7956,12820000 +7957,13042000 +7958,12945000 +7959,12756000 +7960,12680000 +7961,13260000 +7962,14796000 +7963,14902000 +7964,14717000 +7965,14266000 +7966,13536000 +7967,12668000 +7968,11586000 +7969,10605000 +7970,10028000 +7971,9804000 +7972,9770000 +7973,9866000 +7974,10322000 +7975,11861000 +7976,14440000 +7977,16012000 +7978,16674000 +7979,16956000 +7980,17139000 +7981,16995000 +7982,17070000 +7983,16902000 +7984,16830000 +7985,17303000 +7986,17829000 +7987,17166000 +7988,16729000 +7989,15905000 +7990,14946000 +7991,13719000 +7992,12587000 +7993,11310000 +7994,10593000 +7995,10270000 +7996,10167000 +7997,10225000 +7998,10649000 +7999,12145000 +8000,14682000 +8001,16172000 +8002,16746000 +8003,16945000 +8004,16794000 +8005,16715000 +8006,16721000 +8007,16649000 +8008,16550000 +8009,17043000 +8010,18051000 +8011,17344000 +8012,16890000 +8013,16065000 +8014,15163000 +8015,13945000 +8016,12771000 +8017,12771000 +8018,12771000 +8019,12771000 +8020,12771000 +8021,12771000 +8022,12771000 +8023,12771000 +8024,12771000 +8025,12771000 +8026,12771000 +8027,12771000 +8028,12771000 +8029,12771000 +8030,12771000 +8031,12771000 +8032,12771000 +8033,12771000 +8034,12771000 +8035,12771000 +8036,12771000 +8037,12771000 +8038,12771000 +8039,12771000 +8040,12771000 +8041,12771000 +8042,12771000 +8043,12771000 +8044,12771000 +8045,12771000 +8046,12771000 +8047,12771000 +8048,12771000 +8049,12771000 +8050,12771000 +8051,12771000 +8052,12771000 +8053,12771000 +8054,12771000 +8055,12771000 +8056,12771000 +8057,12771000 +8058,12771000 +8059,12771000 +8060,12771000 +8061,12771000 +8062,12771000 +8063,12771000 +8064,12771000 +8065,12771000 +8066,12771000 +8067,12771000 +8068,12771000 +8069,12771000 +8070,12771000 +8071,12771000 +8072,12771000 +8073,12771000 +8074,12771000 +8075,12771000 +8076,12771000 +8077,12771000 +8078,12771000 +8079,12771000 +8080,12771000 +8081,12771000 +8082,12771000 +8083,12771000 +8084,12771000 +8085,12771000 +8086,12771000 +8087,12771000 +8088,12771000 +8089,12771000 +8090,12771000 +8091,12771000 +8092,12771000 +8093,12771000 +8094,12771000 +8095,12771000 +8096,12771000 +8097,12771000 +8098,12771000 +8099,12771000 +8100,12771000 +8101,12771000 +8102,12771000 +8103,12771000 +8104,12771000 +8105,12771000 +8106,12771000 +8107,12771000 +8108,12771000 +8109,12771000 +8110,12771000 +8111,12771000 +8112,12771000 +8113,12771000 +8114,12771000 +8115,12771000 +8116,12771000 +8117,12771000 +8118,12771000 +8119,12771000 +8120,12771000 +8121,12771000 +8122,12771000 +8123,12771000 +8124,12771000 +8125,12771000 +8126,12771000 +8127,12771000 +8128,12771000 +8129,12771000 +8130,12771000 +8131,12771000 +8132,12771000 +8133,12771000 +8134,12771000 +8135,12771000 +8136,12771000 +8137,12771000 +8138,12771000 +8139,12771000 +8140,12771000 +8141,12771000 +8142,12771000 +8143,12771000 +8144,12771000 +8145,12771000 +8146,12771000 +8147,12771000 +8148,12771000 +8149,12771000 +8150,12771000 +8151,12771000 +8152,12771000 +8153,12771000 +8154,12771000 +8155,12771000 +8156,12771000 +8157,12771000 +8158,12771000 +8159,12771000 +8160,12771000 +8161,12771000 +8162,12771000 +8163,12771000 +8164,12771000 +8165,12771000 +8166,12771000 +8167,12771000 +8168,12771000 +8169,12771000 +8170,12771000 +8171,12771000 +8172,12771000 +8173,12771000 +8174,12771000 +8175,12771000 +8176,12771000 +8177,12771000 +8178,12771000 +8179,12771000 +8180,12771000 +8181,12771000 +8182,12771000 +8183,12771000 +8184,12771000 +8185,12771000 +8186,12771000 +8187,12771000 +8188,12771000 +8189,12771000 +8190,12771000 +8191,12771000 +8192,12771000 +8193,12771000 +8194,12771000 +8195,12771000 +8196,12771000 +8197,12771000 +8198,12771000 +8199,12771000 +8200,12771000 +8201,12771000 +8202,12771000 +8203,12771000 +8204,12771000 +8205,12771000 +8206,12771000 +8207,12771000 +8208,12771000 +8209,12771000 +8210,12771000 +8211,12771000 +8212,12771000 +8213,12771000 +8214,12771000 +8215,12771000 +8216,12771000 +8217,12771000 +8218,12771000 +8219,12771000 +8220,12771000 +8221,12771000 +8222,12771000 +8223,12771000 +8224,12771000 +8225,12771000 +8226,12771000 +8227,12771000 +8228,12771000 +8229,12771000 +8230,12771000 +8231,12771000 +8232,12771000 +8233,12771000 +8234,12771000 +8235,12771000 +8236,12771000 +8237,12771000 +8238,12771000 +8239,12771000 +8240,12771000 +8241,12771000 +8242,12771000 +8243,12771000 +8244,12771000 +8245,12771000 +8246,12771000 +8247,12771000 +8248,12771000 +8249,12771000 +8250,12771000 +8251,12771000 +8252,12771000 +8253,12771000 +8254,12771000 +8255,12771000 +8256,12771000 +8257,12771000 +8258,12771000 +8259,12771000 +8260,12771000 +8261,12771000 +8262,12771000 +8263,12771000 +8264,12771000 +8265,12771000 +8266,12771000 +8267,12771000 +8268,12771000 +8269,12771000 +8270,12771000 +8271,12771000 +8272,12771000 +8273,12771000 +8274,12771000 +8275,12771000 +8276,12771000 +8277,12771000 +8278,12771000 +8279,12771000 +8280,12771000 +8281,12771000 +8282,12771000 +8283,12771000 +8284,12771000 +8285,12771000 +8286,12771000 +8287,12771000 +8288,12771000 +8289,12771000 +8290,12771000 +8291,12771000 +8292,12771000 +8293,12771000 +8294,12771000 +8295,12771000 +8296,12771000 +8297,12771000 +8298,12771000 +8299,12771000 +8300,12771000 +8301,12771000 +8302,12771000 +8303,12771000 +8304,12771000 +8305,12771000 +8306,12771000 +8307,12771000 +8308,12771000 +8309,12771000 +8310,12771000 +8311,12771000 +8312,12771000 +8313,12771000 +8314,12771000 +8315,12771000 +8316,12771000 +8317,12771000 +8318,12771000 +8319,12771000 +8320,12771000 +8321,12771000 +8322,12771000 +8323,12771000 +8324,12771000 +8325,12771000 +8326,12771000 +8327,12771000 +8328,12771000 +8329,12771000 +8330,12771000 +8331,12771000 +8332,12771000 +8333,12771000 +8334,12771000 +8335,12771000 +8336,12771000 +8337,12771000 +8338,12771000 +8339,12771000 +8340,12771000 +8341,12771000 +8342,12771000 +8343,12771000 +8344,12771000 +8345,12771000 +8346,12771000 +8347,12771000 +8348,12771000 +8349,12771000 +8350,12771000 +8351,12771000 +8352,12771000 +8353,12771000 +8354,12771000 +8355,12771000 +8356,12771000 +8357,12771000 +8358,12771000 +8359,12771000 +8360,12771000 +8361,12771000 +8362,12771000 +8363,12771000 +8364,12771000 +8365,12771000 +8366,12771000 +8367,12771000 +8368,12771000 +8369,12771000 +8370,12771000 +8371,12771000 +8372,12771000 +8373,12771000 +8374,12771000 +8375,12771000 +8376,12771000 +8377,12771000 +8378,12771000 +8379,12771000 +8380,12771000 +8381,12771000 +8382,12771000 +8383,12771000 +8384,12771000 +8385,12771000 +8386,12771000 +8387,12771000 +8388,12771000 +8389,12771000 +8390,12771000 +8391,12771000 +8392,12771000 +8393,12771000 +8394,12771000 +8395,12771000 +8396,12771000 +8397,12771000 +8398,12771000 +8399,12771000 +8400,12771000 +8401,12771000 +8402,12771000 +8403,12771000 +8404,12771000 +8405,12771000 +8406,12771000 +8407,12771000 +8408,12771000 +8409,12771000 +8410,12771000 +8411,12771000 +8412,12771000 +8413,12771000 +8414,12771000 +8415,12771000 +8416,12771000 +8417,12771000 +8418,12771000 +8419,12771000 +8420,12771000 +8421,12771000 +8422,12771000 +8423,12771000 +8424,12771000 +8425,12771000 +8426,12771000 +8427,12771000 +8428,12771000 +8429,12771000 +8430,12771000 +8431,12771000 +8432,12771000 +8433,12771000 +8434,12771000 +8435,12771000 +8436,12771000 +8437,12771000 +8438,12771000 +8439,12771000 +8440,12771000 +8441,12771000 +8442,12771000 +8443,12771000 +8444,12771000 +8445,12771000 +8446,12771000 +8447,12771000 +8448,12771000 +8449,12771000 +8450,12771000 +8451,12771000 +8452,12771000 +8453,12771000 +8454,12771000 +8455,12771000 +8456,12771000 +8457,12771000 +8458,12771000 +8459,12771000 +8460,12771000 +8461,12771000 +8462,12771000 +8463,12771000 +8464,12771000 +8465,12771000 +8466,12771000 +8467,12771000 +8468,12771000 +8469,12771000 +8470,12771000 +8471,12771000 +8472,12771000 +8473,12771000 +8474,12771000 +8475,12771000 +8476,12771000 +8477,12771000 +8478,12771000 +8479,12771000 +8480,12771000 +8481,12771000 +8482,12771000 +8483,12771000 +8484,12771000 +8485,12771000 +8486,12771000 +8487,12771000 +8488,12771000 +8489,12771000 +8490,12771000 +8491,12771000 +8492,12771000 +8493,12771000 +8494,12771000 +8495,12771000 +8496,12771000 +8497,12771000 +8498,12771000 +8499,12771000 +8500,12771000 +8501,12771000 +8502,12771000 +8503,12771000 +8504,12771000 +8505,12771000 +8506,12771000 +8507,12771000 +8508,12771000 +8509,12771000 +8510,12771000 +8511,12771000 +8512,12771000 +8513,12771000 +8514,12771000 +8515,12771000 +8516,12771000 +8517,12771000 +8518,12771000 +8519,12771000 +8520,12771000 +8521,12771000 +8522,12771000 +8523,12771000 +8524,12771000 +8525,12771000 +8526,12771000 +8527,12771000 +8528,12771000 +8529,12771000 +8530,12771000 +8531,12771000 +8532,12771000 +8533,12771000 +8534,12771000 +8535,12771000 +8536,12771000 +8537,12771000 +8538,12771000 +8539,12771000 +8540,12771000 +8541,12771000 +8542,12771000 +8543,12771000 +8544,12771000 +8545,12771000 +8546,12771000 +8547,12771000 +8548,12771000 +8549,12771000 +8550,12771000 +8551,12771000 +8552,12771000 +8553,12771000 +8554,12771000 +8555,12771000 +8556,12771000 +8557,12771000 +8558,12771000 +8559,12771000 +8560,12771000 +8561,12771000 +8562,12771000 +8563,12771000 +8564,12771000 +8565,12771000 +8566,12771000 +8567,12771000 +8568,12771000 +8569,12771000 +8570,12771000 +8571,12771000 +8572,12771000 +8573,12771000 +8574,12771000 +8575,12771000 +8576,12771000 +8577,12771000 +8578,12771000 +8579,12771000 +8580,12771000 +8581,12771000 +8582,12771000 +8583,12771000 +8584,12771000 +8585,12771000 +8586,12771000 +8587,12771000 +8588,12771000 +8589,12771000 +8590,12771000 +8591,12771000 +8592,12771000 +8593,12771000 +8594,12771000 +8595,12771000 +8596,12771000 +8597,12771000 +8598,12771000 +8599,12771000 +8600,12771000 +8601,12771000 +8602,12771000 +8603,12771000 +8604,12771000 +8605,12771000 +8606,12771000 +8607,12771000 +8608,12771000 +8609,12771000 +8610,12771000 +8611,12771000 +8612,12771000 +8613,12771000 +8614,12771000 +8615,12771000 +8616,12771000 +8617,12771000 +8618,12771000 +8619,12771000 +8620,12771000 +8621,12771000 +8622,12771000 +8623,12771000 +8624,12771000 +8625,12771000 +8626,12771000 +8627,12771000 +8628,12771000 +8629,12771000 +8630,12771000 +8631,12771000 +8632,12771000 +8633,12771000 +8634,12771000 +8635,12771000 +8636,12771000 +8637,12771000 +8638,12771000 +8639,12771000 +8640,12771000 +8641,12771000 +8642,12771000 +8643,12771000 +8644,12771000 +8645,12771000 +8646,12771000 +8647,12771000 +8648,12771000 +8649,12771000 +8650,12771000 +8651,12771000 +8652,12771000 +8653,12771000 +8654,12771000 +8655,12771000 +8656,12771000 +8657,12771000 +8658,12771000 +8659,12771000 +8660,12771000 +8661,12771000 +8662,12771000 +8663,12771000 +8664,12771000 +8665,12771000 +8666,12771000 +8667,12771000 +8668,12771000 +8669,12771000 +8670,12771000 +8671,12771000 +8672,12771000 +8673,12771000 +8674,12771000 +8675,12771000 +8676,12771000 +8677,12771000 +8678,12771000 +8679,12771000 +8680,12771000 +8681,12771000 +8682,12771000 +8683,12771000 +8684,12771000 +8685,12771000 +8686,12771000 +8687,12771000 +8688,12771000 +8689,12771000 +8690,12771000 +8691,12771000 +8692,12771000 +8693,12771000 +8694,12771000 +8695,12771000 +8696,12771000 +8697,12771000 +8698,12771000 +8699,12771000 +8700,12771000 +8701,12771000 +8702,12771000 +8703,12771000 +8704,12771000 +8705,12771000 +8706,12771000 +8707,12771000 +8708,12771000 +8709,12771000 +8710,12771000 +8711,12771000 +8712,12771000 +8713,12771000 +8714,12771000 +8715,12771000 +8716,12771000 +8717,12771000 +8718,12771000 +8719,12771000 +8720,12771000 +8721,12771000 +8722,12771000 +8723,12771000 +8724,12771000 +8725,12771000 +8726,12771000 +8727,12771000 +8728,12771000 +8729,12771000 +8730,12771000 +8731,12771000 +8732,12771000 +8733,12771000 +8734,12771000 +8735,12771000 +8736,12771000 +8737,12771000 +8738,12771000 +8739,12771000 +8740,12771000 +8741,12771000 +8742,12771000 +8743,12771000 +8744,12771000 +8745,12771000 +8746,12771000 +8747,12771000 +8748,12771000 +8749,12771000 +8750,12771000 +8751,12771000 +8752,12771000 +8753,12771000 +8754,12771000 +8755,12771000 +8756,12771000 +8757,12771000 +8758,12771000 +8759,12771000 +8760,12771000 diff --git a/emlab-generation/src/main/resources/data/learningCurves.csv b/emlab-generation/src/main/resources/data/learningCurves.csv index 4e2065ad..b0f5498b 100644 --- a/emlab-generation/src/main/resources/data/learningCurves.csv +++ b/emlab-generation/src/main/resources/data/learningCurves.csv @@ -1,26 +1 @@ -realtime,1961,1962,1963,1964,1965,1966,1967,1968,1969,1970,1971,1972,1973,1974,1975,1976,1977,1978,1979,1980,1981,1982,1983,1984,1985,1986,1987,1988,1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020,2021,2022,2023,2024,2025,2026,2027,2028,2029,2030,2031,2032,2033,2034,2035,2036,2037,2038,2039,2040,2041,2042,2043,2044,2045,2046,2047,2048,2049,2050,2051,2052,2053,2054,2055,2056,2057,2058,2059,2060,2061,2062,2063,2064,2065,2066,2067,2068,2069,2070,2071,2072,2073,2074,2075,2076 -timestep,-50,-49,-48,-47,-46,-45,-44,-43,-42,-41,-40,-39,-38,-37,-36,-35,-34,-33,-32,-31,-30,-29,-28,-27,-26,-25,-24,-23,-22,-21,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-4,-3,-2,-1,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65 -PV_Inv,13864745.333,13344475.511,12843728.637,12361772.118,11897900.852,11451436.196,11021724.974,10608138.518,10210071.753,9826942.306,9458189.661,9103274.332,8761677.080,8432898.148,8116456.532,7811889.280,7518750.809,7236612.260,6965060.862,6703699.338,6452145.316,6210030.772,5977001.494,5752716.560,5536847.840,5329079.521,5129107.637,4936639.629,4751393.917,4573099.487,4401495.495,4236330.883,4077364.018,3924362.329,3777101.976,3635367.518,3498951.597,3367654.636,3241284.549,3119656.456,3002592.416,2889921.163,2781477.861,2677103.857,2576646.451,2479958.675,2386899.075,2297331.505,2211124.927,2128153.221,2048295.000,1971433.431,1897456.067,1826254.678,1757725.096,1691767.064,1628284.084,1567183.281,1508375.265,1451774.000,1426977.842,1402605.201,1378648.841,1355101.654,1331956.650,1309206.961,1286845.835,1264866.634,1243262.836,1222028.028,1201155.909,1180640.284,1160475.063,1140654.263,1121172.000,1102022.492,1083200.056,1064699.105,1046514.149,1028639.789,1011070.723,993801.734,976827.697,960143.576,943744.418,927625.356,911781.605,896208.465,880901.312,865855.604,851066.875,836530.736,822242.873,808199.045,794395.085,780826.895,767490.448,754381.786,741497.019,728832.323,716383.938,704148.170,692121.389,680300.023,668680.565,657259.567,646033.638,634999.447,624153.718,613493.234,603014.830,592715.395,582591.874,572641.262,562860.606,553247.002 -PV_OM,31173.146,30912.411,30653.856,30397.464,30143.216,29891.095,29641.083,29393.161,29147.314,28903.523,28661.770,28422.040,28184.315,27948.578,27714.814,27483.004,27253.133,27025.185,26799.143,26574.992,26352.716,26132.299,25913.726,25696.981,25482.048,25268.914,25057.562,24847.978,24640.146,24434.054,24229.684,24027.025,23826.060,23626.776,23429.159,23233.195,23038.870,22846.171,22655.083,22465.593,22277.689,22091.356,21906.581,21723.352,21541.656,21361.479,21182.809,21005.634,20829.941,20655.717,20482.950,20311.628,20141.740,19973.272,19806.213,19640.552,19476.276,19313.375,19151.836,18991.648,18935.396,18879.311,18823.391,18767.638,18712.050,18656.626,18601.367,18546.271,18491.338,18436.568,18381.961,18327.515,18273.230,18219.106,18165.143,18111.339,18057.694,18004.209,17950.882,17897.713,17844.701,17791.846,17739.148,17686.606,17634.220,17581.989,17529.912,17477.990,17426.222,17374.606,17323.144,17271.834,17220.677,17169.670,17118.815,17068.110,17017.556,16967.151,16916.896,16866.789,16816.831,16767.021,16717.359,16667.843,16618.474,16569.252,16520.175,16471.243,16422.457,16373.815,16325.317,16276.962,16228.751,16180.683,16132.757,16084.973 -PV_Eff,0.316,0.323,0.330,0.338,0.346,0.354,0.362,0.371,0.379,0.388,0.397,0.407,0.416,0.426,0.436,0.446,0.456,0.467,0.478,0.489,0.501,0.512,0.524,0.536,0.549,0.562,0.575,0.588,0.602,0.616,0.630,0.645,0.660,0.676,0.691,0.707,0.724,0.741,0.758,0.776,0.794,0.813,0.831,0.851,0.871,0.891,0.912,0.933,0.955,0.977,1.000,1.023,1.047,1.072,1.097,1.122,1.148,1.175,1.203,1.231,1.236,1.241,1.246,1.251,1.256,1.261,1.266,1.271,1.276,1.282,1.287,1.292,1.297,1.302,1.308,1.313,1.318,1.324,1.329,1.334,1.340,1.345,1.351,1.356,1.362,1.367,1.373,1.378,1.384,1.389,1.395,1.401,1.406,1.412,1.418,1.424,1.429,1.435,1.441,1.447,1.453,1.458,1.464,1.470,1.476,1.482,1.488,1.494,1.500,1.506,1.512,1.519,1.525,1.531,1.537,1.543 -Wind_Inv,1484743.979,1478792.463,1472864.803,1466960.903,1461080.670,1455224.006,1449390.819,1443581.014,1437794.497,1432031.175,1426290.955,1420573.745,1414879.451,1409207.983,1403559.249,1397933.157,1392329.617,1386748.539,1381189.832,1375653.407,1370139.174,1364647.045,1359176.930,1353728.743,1348302.394,1342897.796,1337514.863,1332153.506,1326813.641,1321495.180,1316198.037,1310922.128,1305667.367,1300433.670,1295220.952,1290029.128,1284858.116,1279707.831,1274578.191,1269469.113,1264380.514,1259312.313,1254264.427,1249236.776,1244229.277,1239241.851,1234274.417,1229326.894,1224399.203,1219491.265,1214603.000,1209734.329,1204885.174,1200055.457,1195245.099,1190454.023,1185682.152,1180929.409,1176195.717,1171481.000,1171000.489,1170520.176,1170040.060,1169560.140,1169080.417,1168600.892,1168121.562,1167642.430,1167163.494,1166684.754,1166206.211,1165727.864,1165249.713,1164771.759,1164294.000,1163816.437,1163339.071,1162861.900,1162384.925,1161908.145,1161431.561,1160955.172,1160478.979,1160002.982,1159527.179,1159051.572,1158576.159,1158100.942,1157625.920,1157151.092,1156676.459,1156202.021,1155727.778,1155253.729,1154779.874,1154306.214,1153832.748,1153359.476,1152886.399,1152413.515,1151940.826,1151468.330,1150996.028,1150523.920,1150052.006,1149580.285,1149108.757,1148637.423,1148166.282,1147695.335,1147224.581,1146754.020,1146283.651,1145813.476,1145343.494,1144873.704 -Wind_OM,21166.116,21102.741,21039.555,20976.559,20913.751,20851.131,20788.699,20726.454,20664.395,20602.521,20540.834,20479.330,20418.011,20356.876,20295.924,20235.154,20174.566,20114.159,20053.934,19993.888,19934.023,19874.336,19814.829,19755.500,19696.348,19637.373,19578.575,19519.953,19461.507,19403.235,19345.138,19287.215,19229.466,19171.889,19114.485,19057.252,19000.191,18943.301,18886.581,18830.031,18773.650,18717.438,18661.395,18605.519,18549.810,18494.269,18438.893,18383.684,18328.640,18273.760,18219.045,18164.494,18140.625,18116.787,18092.981,18069.206,18045.462,18021.749,17998.068,17733.923,17999.224,17975.572,17951.951,17928.362,17904.803,17881.275,17857.778,17834.312,17810.877,17787.473,17764.100,17740.757,17717.444,17694.163,17653.069,17647.692,17624.502,17601.342,17578.213,17555.115,17532.047,17509.009,17486.001,17463.024,17440.076,17417.159,17394.272,17371.416,17348.589,17325.792,17303.025,17280.288,17257.581,17234.904,17212.256,17189.638,17167.051,17144.492,17121.964,17099.465,17076.995,17054.555,17032.145,17009.764,16987.412,16965.090,16942.797,16920.533,16898.299,16876.094,16853.918,16831.771,16809.653,16787.565,16765.505,16743.474 -Wind_Eff,1.000,1.000,1.000,1.000,1.000,1.000,1.000,1.000,1.000,1.000,1.000,1.000,1.000,1.000,1.000,1.000,1.000,1.000,1.000,1.000,1.000,1.000,1.000,1.000,1.000,1.000,1.000,1.000,1.000,1.000,1.000,1.000,1.000,1.000,1.000,1.000,1.000,1.000,1.000,1.000,1.000,1.000,1.000,1.000,1.000,1.000,1.000,1.000,1.000,1.000,1.000,1.000,1.000,1.000,1.000,1.000,1.000,1.000,1.000,1.000,1.000,1.000,1.000,1.000,1.000,1.000,1.000,1.000,1.000,1.000,1.000,1.000,1.000,1.000,1.000,1.000,1.000,1.000,1.000,1.000,1.000,1.000,1.000,1.000,1.000,1.000,1.000,1.000,1.000,1.000,1.000,1.000,1.000,1.000,1.000,1.000,1.000,1.000,1.000,1.000,1.000,1.000,1.000,1.000,1.000,1.000,1.000,1.000,1.000,1.000,1.000,1.000,1.000,1.000,1.000,1.000 -WindOffshore_Inv,12316633.424,11925269.871,11546341.976,11179454.593,10824225.131,10480283.158,10147270.012,9824838.427,9512652.171,9210385.698,8917723.804,8634361.302,8360002.701,8094361.901,7837161.892,7588134.466,7347019.938,7113566.873,6887531.827,6668679.091,6456780.446,6251614.923,6052968.577,5860634.260,5674411.404,5494105.819,5319529.480,5150500.340,4986842.136,4828384.204,4674961.306,4526413.452,4382585.737,4243328.176,4108495.554,3977947.265,3851547.175,3729163.474,3610668.540,3495938.807,3384854.634,3277300.184,3173163.299,3072335.385,2974711.298,2880189.236,2788670.633,2700060.052,2614265.090,2531196.281,2450767.000,2372893.376,2297494.203,2224490.853,2153807.200,2085369.535,2019106.490,1954948.968,1892830.063,1832685.000,1807381.515,1782427.390,1757817.802,1733547.992,1709613.271,1686009.011,1662730.649,1639773.688,1617133.688,1594806.273,1572787.129,1551071.997,1529656.682,1508537.044,1487709.000,1467168.524,1446911.646,1426934.451,1407233.076,1387803.714,1368642.609,1349746.057,1331110.405,1312732.052,1294607.445,1276733.081,1259105.504,1241721.307,1224577.130,1207669.659,1190995.626,1174551.807,1158335.025,1142342.144,1126570.074,1111015.765,1095676.211,1080548.447,1065629.548,1050916.632,1036406.854,1022097.409,1007985.532,994068.494,980343.605,966808.214,953459.702,940295.491,927313.035,914509.824,901883.385,889431.277,877151.092,865040.457,853097.031,841318.505 -WindOffshore_OM,235671.987,230245.033,224943.048,219763.156,214702.543,209758.465,204928.236,200209.236,195598.903,191094.735,186694.286,182395.170,178195.051,174091.652,170082.743,166166.150,162339.747,158601.456,154949.250,151381.144,147895.204,144489.536,141162.292,137911.667,134735.896,131633.255,128602.061,125640.667,122747.467,119920.891,117159.404,114461.507,111825.736,109250.661,106734.883,104277.037,101875.790,99529.838,97237.907,94998.754,92811.163,90673.947,88585.946,86546.027,84553.082,82606.029,80703.813,78845.400,77029.782,75255.972,73523.010,71829.953,70175.884,68559.903,66981.135,65438.722,63931.827,62459.632,61021.338,59616.165,59064.341,58517.625,57975.970,57439.328,56907.654,56380.901,55859.024,55341.977,54829.717,54322.198,53819.376,53321.209,52827.654,52338.666,51854.205,51374.228,50898.694,50427.562,49960.790,49498.339,49040.169,48586.240,48136.512,47690.947,47249.507,46812.152,46378.846,45949.550,45524.229,45102.844,44685.359,44271.739,43861.948,43455.950,43053.709,42655.192,42260.364,41869.190,41481.638,41097.672,40717.261,40340.370,39966.969,39597.023,39230.502,38867.374,38507.607,38151.170,37798.032,37448.163,37101.532,36758.110,36417.867,36080.773,35746.800,35415.917 -WindOffshore_Eff,0.734,0.739,0.744,0.748,0.753,0.757,0.762,0.767,0.772,0.776,0.781,0.786,0.791,0.796,0.801,0.806,0.811,0.816,0.821,0.826,0.831,0.836,0.841,0.846,0.852,0.857,0.862,0.868,0.873,0.878,0.884,0.889,0.895,0.900,0.906,0.912,0.917,0.923,0.929,0.934,0.940,0.946,0.952,0.958,0.964,0.970,0.976,0.982,0.988,0.994,1.000,1.006,1.012,1.019,1.025,1.031,1.038,1.044,1.051,1.057,1.063,1.068,1.074,1.079,1.085,1.091,1.096,1.102,1.108,1.114,1.119,1.125,1.131,1.137,1.143,1.149,1.155,1.161,1.167,1.173,1.179,1.185,1.191,1.198,1.204,1.210,1.216,1.223,1.229,1.236,1.242,1.248,1.255,1.261,1.268,1.275,1.281,1.288,1.295,1.301,1.308,1.315,1.322,1.329,1.336,1.343,1.350,1.357,1.364,1.371,1.378,1.385,1.392,1.400,1.407,1.414 -Biomass_Inv,2164261.917,2153919.862,2143627.227,2133383.776,2123189.274,2113043.487,2102946.182,2092897.127,2082896.093,2072942.849,2063037.168,2053178.821,2043367.583,2033603.228,2023885.534,2014214.275,2004589.232,1995010.182,1985476.906,1975989.186,1966546.803,1957149.541,1947797.185,1938489.519,1929226.331,1920007.408,1910832.537,1901701.509,1892614.115,1883570.145,1874569.392,1865611.650,1856696.713,1847824.376,1838994.437,1830206.692,1821460.939,1812756.979,1804094.611,1795473.637,1786893.859,1778355.079,1769857.103,1761399.735,1752982.781,1744606.047,1736269.343,1727972.476,1719715.256,1711497.493,1703319.000,1695179.588,1687079.071,1679017.262,1670993.978,1663009.033,1655062.245,1647153.431,1639282.409,1631449.000,1624540.035,1617660.328,1610809.756,1603988.195,1597195.523,1590431.616,1583696.354,1576989.615,1570311.278,1563661.223,1557039.330,1550445.479,1543879.553,1537341.432,1530831.000,1524348.138,1517892.731,1511464.661,1505063.813,1498690.072,1492343.323,1486023.451,1479730.344,1473463.886,1467223.967,1461010.472,1454823.291,1448662.312,1442527.423,1436418.515,1430335.478,1424278.201,1418246.576,1412240.494,1406259.847,1400304.528,1394374.428,1388469.441,1382589.462,1376734.383,1370904.099,1365098.507,1359317.500,1353560.974,1347828.827,1342120.955,1336437.255,1330777.624,1325141.962,1319530.165,1313942.134,1308377.767,1302836.965,1297319.627,1291825.654,1286354.948 -Biomass_OM,75749.167,75387.195,75026.953,74668.432,74311.625,73956.522,73603.116,73251.399,72901.363,72553.000,72206.301,71861.259,71517.865,71176.113,70835.994,70497.500,70160.623,69825.356,69491.692,69159.622,68829.138,68500.234,68172.901,67847.133,67522.922,67200.259,66879.139,66559.553,66241.494,65924.955,65609.929,65296.408,64984.385,64673.853,64364.805,64057.234,63751.133,63446.494,63143.311,62841.577,62541.285,62242.428,61944.999,61648.991,61354.397,61061.212,60769.427,60479.037,60190.034,59902.412,59616.165,59331.286,59047.767,58765.604,58484.789,58205.316,57927.179,57650.370,57374.884,57100.715,56827.856,56556.300,56286.043,56017.077,55749.396,55482.994,55217.865,54954.003,54691.402,54430.056,54169.959,53911.104,53653.487,53397.100,53141.939,52887.997,52635.269,52383.748,52133.429,51884.306,51636.374,51389.627,51144.058,50899.663,50656.436,50414.371,50173.463,49933.706,49695.095,49457.624,49221.288,48986.081,48751.998,48519.034,48287.183,48056.440,47826.799,47598.256,47370.805,47144.440,46919.158,46694.952,46471.817,46249.749,46028.742,45808.791,45589.891,45372.036,45155.223,44939.447,44724.701,44510.981,44298.283,44086.601,43875.930,43666.266 -Biomass_Eff,0.350,0.350,0.350,0.350,0.350,0.350,0.350,0.350,0.350,0.350,0.350,0.350,0.350,0.350,0.350,0.350,0.350,0.350,0.350,0.350,0.350,0.350,0.350,0.350,0.350,0.350,0.350,0.350,0.350,0.350,0.350,0.350,0.350,0.350,0.350,0.350,0.350,0.350,0.350,0.350,0.350,0.350,0.350,0.350,0.350,0.350,0.350,0.350,0.350,0.350,0.350,0.350,0.350,0.350,0.350,0.350,0.350,0.350,0.350,0.350,0.350,0.350,0.350,0.350,0.350,0.350,0.350,0.350,0.350,0.350,0.350,0.350,0.350,0.350,0.350,0.350,0.350,0.350,0.350,0.350,0.350,0.350,0.350,0.350,0.350,0.350,0.350,0.350,0.350,0.350,0.350,0.350,0.350,0.350,0.350,0.350,0.350,0.350,0.350,0.350,0.350,0.350,0.350,0.350,0.350,0.350,0.350,0.350,0.350,0.350,0.350,0.350,0.350,0.350,0.350,0.350 -Biogas_Inv,2521166.319,2510004.766,2498892.626,2487829.681,2476815.713,2465850.505,2454933.842,2444065.509,2433245.291,2422472.976,2411748.351,2401071.206,2390441.330,2379858.514,2369322.549,2358833.229,2348390.347,2337993.696,2327643.073,2317338.273,2307079.095,2296865.335,2286696.793,2276573.268,2266494.562,2256460.475,2246470.811,2236525.373,2226623.964,2216766.390,2206952.457,2197181.972,2187454.742,2177770.575,2168129.282,2158530.673,2148974.557,2139460.748,2129989.058,2120559.300,2111171.290,2101824.841,2092519.770,2083255.894,2074033.031,2064850.998,2055709.616,2046608.703,2037548.082,2028527.574,2019547.000,2010606.185,2001704.952,1992843.126,1984020.532,1975236.997,1966492.348,1957786.413,1949119.021,1940490.000,1935613.822,1930749.896,1925898.193,1921058.682,1916231.332,1911416.112,1906612.992,1901821.942,1897042.931,1892275.929,1887520.906,1882777.831,1878046.675,1873327.408,1868620.000,1863924.421,1859240.641,1854568.631,1849908.361,1845259.801,1840622.923,1835997.696,1831384.092,1826782.082,1822191.635,1817612.724,1813045.319,1808489.391,1803944.912,1799411.852,1794890.183,1790379.876,1785880.904,1781393.236,1776916.846,1772451.703,1767997.782,1763555.052,1759123.486,1754703.056,1750293.734,1745895.492,1741508.303,1737132.137,1732766.968,1728412.769,1724069.511,1719737.166,1715415.709,1711105.110,1706805.344,1702516.382,1698238.198,1693970.764,1689714.054,1685468.040 -Biogas_OM,95804.320,95380.181,94957.920,94537.528,94118.997,93702.319,93287.486,92874.489,92463.321,92053.973,91646.437,91240.706,90836.771,90434.624,90034.257,89635.663,89238.833,88843.760,88450.437,88058.854,87669.006,87280.883,86894.478,86509.784,86126.793,85745.498,85365.891,84987.964,84611.711,84237.123,83864.193,83492.915,83123.280,82755.282,82388.913,82024.166,81661.033,81299.508,80939.584,80581.253,80224.509,79869.344,79515.751,79163.724,78813.255,78464.338,78116.965,77771.131,77426.827,77084.048,76742.786,76403.035,76064.788,75728.039,75392.780,75059.006,74726.709,74395.884,74066.523,73738.620,73412.169,73087.163,72763.596,72441.461,72120.753,71801.464,71483.589,71167.122,70852.055,70538.383,70226.100,69915.199,69605.675,69297.521,68990.731,68685.299,68381.220,68078.487,67777.094,67477.035,67178.305,66880.897,66584.806,66290.026,65996.551,65704.375,65413.493,65123.898,64835.586,64548.549,64262.784,63978.284,63695.043,63413.056,63132.318,62852.822,62574.564,62297.538,62021.738,61747.159,61473.796,61201.643,60930.694,60660.946,60392.391,60125.026,59858.844,59593.841,59330.010,59067.348,58805.849,58545.507,58286.318,58028.276,57771.377,57515.615 -Biogas_Eff,0.300,0.300,0.300,0.300,0.300,0.300,0.300,0.300,0.300,0.300,0.300,0.300,0.300,0.300,0.300,0.300,0.300,0.300,0.300,0.300,0.300,0.300,0.300,0.300,0.300,0.300,0.300,0.300,0.300,0.300,0.300,0.300,0.300,0.300,0.300,0.300,0.300,0.300,0.300,0.300,0.300,0.300,0.300,0.300,0.300,0.300,0.300,0.300,0.300,0.300,0.300,0.300,0.300,0.300,0.300,0.300,0.300,0.300,0.300,0.300,0.300,0.300,0.300,0.300,0.300,0.300,0.300,0.300,0.300,0.300,0.300,0.300,0.300,0.300,0.300,0.300,0.300,0.300,0.300,0.300,0.300,0.300,0.300,0.300,0.300,0.300,0.300,0.300,0.300,0.300,0.300,0.300,0.300,0.300,0.300,0.300,0.300,0.300,0.300,0.300,0.300,0.300,0.300,0.300,0.300,0.300,0.300,0.300,0.300,0.300,0.300,0.300,0.300,0.300,0.300,0.300 -Igcc_Inv,1724880.000,1724880.000,1724880.000,1724880.000,1724880.000,1724880.000,1724880.000,1724880.000,1724880.000,1724880.000,1724880.000,1724880.000,1724880.000,1724880.000,1724880.000,1724880.000,1724880.000,1724880.000,1724880.000,1724880.000,1724880.000,1724880.000,1724880.000,1724880.000,1724880.000,1724880.000,1724880.000,1724880.000,1724880.000,1724880.000,1724880.000,1724880.000,1724880.000,1724880.000,1724880.000,1724880.000,1724880.000,1724880.000,1724880.000,1724880.000,1724880.000,1724880.000,1724880.000,1724880.000,1724880.000,1724880.000,1724880.000,1724880.000,1724880.000,1724880.000,1724880.000,1724880.000,1724880.000,1724880.000,1724880.000,1724880.000,1724880.000,1724880.000,1724880.000,1724880.000,1714903.352,1704984.408,1695122.835,1685318.302,1675570.477,1665879.033,1656243.645,1646663.987,1637139.737,1627670.576,1618256.184,1608896.244,1599590.442,1590338.464,1581140.000,1575417.997,1569716.701,1564036.037,1558375.932,1552736.310,1547117.097,1541518.219,1535939.604,1530381.177,1524842.865,1519324.596,1513826.297,1508347.896,1502889.321,1497450.500,1492031.361,1486631.834,1481251.847,1475891.330,1470550.213,1465228.424,1459925.894,1454642.554,1449378.333,1444133.164,1438906.976,1433699.701,1428511.271,1423341.617,1418190.672,1413058.368,1407944.637,1402849.412,1397772.626,1392714.213,1387674.106,1382652.238,1377648.544,1372662.958,1367695.415,1362745.848 -Igcc_OM,60370.800,60370.800,60370.800,60370.800,60370.800,60370.800,60370.800,60370.800,60370.800,60370.800,60370.800,60370.800,60370.800,60370.800,60370.800,60370.800,60370.800,60370.800,60370.800,60370.800,60370.800,60370.800,60370.800,60370.800,60370.800,60370.800,60370.800,60370.800,60370.800,60370.800,60370.800,60370.800,60370.800,60370.800,60370.800,60370.800,60370.800,60370.800,60370.800,60370.800,60370.800,60370.800,60370.800,60370.800,60370.800,60370.800,60370.800,60370.800,60370.800,60370.800,60370.800,60370.800,60370.800,60370.800,60370.800,60370.800,60370.800,60370.800,60370.800,60370.800,60021.617,59674.454,59329.299,58986.141,58644.967,58305.766,57968.528,57633.240,57299.891,56968.470,56638.966,56311.369,55985.665,55661.846,55339.900,55139.630,54940.085,54741.261,54543.158,54345.771,54149.098,53953.138,53757.886,53563.341,53369.500,53176.361,52983.920,52792.176,52601.126,52410.767,52221.098,52032.114,51843.815,51656.197,51469.257,51282.995,51097.406,50912.489,50728.242,50544.661,50361.744,50179.490,49997.894,49816.957,49636.674,49457.043,49278.062,49099.729,48922.042,48744.997,48568.594,48392.828,48217.699,48043.204,47869.340,47696.105 -Igcc_Eff,0.383,0.384,0.386,0.388,0.390,0.391,0.393,0.395,0.397,0.399,0.400,0.402,0.404,0.406,0.408,0.410,0.411,0.413,0.415,0.417,0.419,0.421,0.423,0.425,0.427,0.429,0.430,0.432,0.434,0.436,0.438,0.440,0.442,0.444,0.446,0.448,0.450,0.453,0.455,0.457,0.459,0.461,0.463,0.465,0.467,0.469,0.471,0.474,0.476,0.478,0.480,0.482,0.484,0.487,0.489,0.491,0.493,0.495,0.498,0.500,0.501,0.503,0.504,0.505,0.507,0.508,0.509,0.511,0.512,0.513,0.515,0.516,0.517,0.519,0.520,0.522,0.523,0.525,0.527,0.529,0.531,0.532,0.534,0.536,0.538,0.539,0.541,0.543,0.545,0.547,0.549,0.550,0.552,0.554,0.556,0.558,0.560,0.561,0.563,0.565,0.567,0.569,0.571,0.573,0.575,0.577,0.579,0.580,0.582,0.584,0.586,0.588,0.590,0.592,0.594,0.596 -IgccCCS_Inv,2501076.000,2501076.000,2501076.000,2501076.000,2501076.000,2501076.000,2501076.000,2501076.000,2501076.000,2501076.000,2501076.000,2501076.000,2501076.000,2501076.000,2501076.000,2501076.000,2501076.000,2501076.000,2501076.000,2501076.000,2501076.000,2501076.000,2501076.000,2501076.000,2501076.000,2501076.000,2501076.000,2501076.000,2501076.000,2501076.000,2501076.000,2501076.000,2501076.000,2501076.000,2501076.000,2501076.000,2501076.000,2501076.000,2501076.000,2501076.000,2501076.000,2501076.000,2501076.000,2501076.000,2501076.000,2501076.000,2501076.000,2501076.000,2501076.000,2501076.000,2501076.000,2501076.000,2501076.000,2501076.000,2501076.000,2501076.000,2501076.000,2501076.000,2501076.000,2501076.000,2470860.002,2441009.049,2411518.731,2382384.692,2353602.627,2325168.284,2297077.462,2269326.010,2241909.830,2214824.870,2188067.128,2161632.653,2135517.537,2109717.923,2084230.000,2068456.653,2052802.678,2037267.171,2021849.237,2006547.984,1991362.531,1976292.000,1961335.522,1946492.235,1931761.280,1917141.809,1902632.977,1888233.947,1873943.888,1859761.976,1845687.391,1831719.323,1817856.964,1804099.514,1790446.181,1776896.175,1763448.715,1750103.024,1736858.333,1723713.878,1710668.898,1697722.643,1684874.364,1672123.320,1659468.776,1646910.000,1634446.269,1622076.862,1609801.067,1597618.174,1585527.481,1573528.289,1561619.907,1549801.646,1538072.826,1526432.769 -IgccCCS_OM,87681.400,87681.400,87681.400,87681.400,87681.400,87681.400,87681.400,87681.400,87681.400,87681.400,87681.400,87681.400,87681.400,87681.400,87681.400,87681.400,87681.400,87681.400,87681.400,87681.400,87681.400,87681.400,87681.400,87681.400,87681.400,87681.400,87681.400,87681.400,87681.400,87681.400,87681.400,87681.400,87681.400,87681.400,87681.400,87681.400,87681.400,87681.400,87681.400,87681.400,87681.400,87681.400,87681.400,87681.400,87681.400,87681.400,87681.400,87681.400,87681.400,87681.400,87681.400,87681.400,87681.400,87681.400,87681.400,87681.400,87681.400,87681.400,87681.400,87681.400,86641.008,85612.962,84597.113,83593.319,82601.434,81621.320,80652.834,79695.841,78750.203,77815.785,76892.455,75980.080,75078.532,74187.681,73307.400,72762.537,72221.723,71684.929,71152.125,70623.281,70098.367,69577.355,69060.216,68546.920,68037.439,67531.745,67029.810,66531.605,66037.103,65546.277,65059.099,64575.542,64095.579,63619.183,63146.328,62676.988,62211.136,61748.746,61289.793,60834.252,60382.096,59933.301,59487.842,59045.694,58606.832,58171.231,57738.869,57309.720,56883.761,56460.967,56041.316,55624.785,55211.349,54800.986,54393.673,53989.387 -IgccCCS_Eff,0.295,0.297,0.299,0.300,0.302,0.304,0.305,0.307,0.309,0.311,0.312,0.314,0.316,0.318,0.319,0.321,0.323,0.325,0.326,0.328,0.330,0.332,0.334,0.336,0.338,0.339,0.341,0.343,0.345,0.347,0.349,0.351,0.353,0.355,0.357,0.359,0.361,0.363,0.365,0.367,0.369,0.371,0.373,0.375,0.377,0.379,0.381,0.384,0.386,0.388,0.390,0.392,0.394,0.397,0.399,0.401,0.403,0.405,0.408,0.410,0.413,0.415,0.418,0.420,0.423,0.426,0.428,0.431,0.434,0.436,0.439,0.442,0.444,0.447,0.450,0.453,0.455,0.458,0.461,0.464,0.466,0.469,0.472,0.475,0.478,0.481,0.483,0.486,0.489,0.492,0.495,0.498,0.501,0.504,0.507,0.510,0.513,0.516,0.519,0.522,0.525,0.529,0.532,0.535,0.538,0.541,0.545,0.548,0.551,0.554,0.558,0.561,0.564,0.568,0.571,0.575 -CcgtCCS_Inv,1164294.000,1164294.000,1164294.000,1164294.000,1164294.000,1164294.000,1164294.000,1164294.000,1164294.000,1164294.000,1164294.000,1164294.000,1164294.000,1164294.000,1164294.000,1164294.000,1164294.000,1164294.000,1164294.000,1164294.000,1164294.000,1164294.000,1164294.000,1164294.000,1164294.000,1164294.000,1164294.000,1164294.000,1164294.000,1164294.000,1164294.000,1164294.000,1164294.000,1164294.000,1164294.000,1164294.000,1164294.000,1164294.000,1164294.000,1164294.000,1164294.000,1164294.000,1164294.000,1164294.000,1164294.000,1164294.000,1164294.000,1164294.000,1164294.000,1164294.000,1164294.000,1164294.000,1164294.000,1164294.000,1164294.000,1164294.000,1164294.000,1164294.000,1164294.000,1164294.000,1150227.932,1136331.799,1122603.547,1109041.150,1095642.602,1082405.925,1069329.163,1056410.384,1043647.679,1031039.163,1018582.974,1006277.269,994120.233,982110.068,970245.000,962902.235,955615.040,948382.994,941205.679,934082.682,927013.592,919998.000,913035.502,906125.695,899268.182,892462.566,885708.455,879005.458,872353.189,865751.265,859199.303,852696.926,846243.759,839839.429,833483.567,827175.806,820915.781,814703.132,808537.500,802418.529,796345.866,790319.161,784338.066,778402.235,772511.327,766665.000,760862.918,755104.746,749390.152,743718.805,738090.379,732504.548,726960.991,721459.387,715999.419,710580.772 -CcgtCCS_OM,29466.700,29466.700,29466.700,29466.700,29466.700,29466.700,29466.700,29466.700,29466.700,29466.700,29466.700,29466.700,29466.700,29466.700,29466.700,29466.700,29466.700,29466.700,29466.700,29466.700,29466.700,29466.700,29466.700,29466.700,29466.700,29466.700,29466.700,29466.700,29466.700,29466.700,29466.700,29466.700,29466.700,29466.700,29466.700,29466.700,29466.700,29466.700,29466.700,29466.700,29466.700,29466.700,29466.700,29466.700,29466.700,29466.700,29466.700,29466.700,29466.700,29466.700,29466.700,29466.700,29466.700,29466.700,29466.700,29466.700,29466.700,29466.700,29466.700,29466.700,29101.218,28740.270,28383.798,28031.748,27684.065,27340.693,27001.581,26666.675,26335.923,26009.273,25686.674,25368.077,25053.432,24742.689,24435.800,24245.931,24057.536,23870.606,23685.128,23501.091,23318.485,23137.297,22957.517,22779.134,22602.137,22426.515,22252.258,22079.355,21907.796,21737.569,21568.665,21401.074,21234.784,21069.787,20906.072,20743.629,20582.448,20422.520,20263.834,20106.381,19950.152,19795.137,19641.326,19488.710,19337.280,19187.027,19037.941,18890.014,18743.236,18597.598,18453.092,18309.709,18167.440,18026.277,17886.210,17747.232 -CcgtCCS_Eff,0.412,0.414,0.415,0.417,0.419,0.421,0.423,0.424,0.426,0.428,0.430,0.432,0.434,0.435,0.437,0.439,0.441,0.443,0.445,0.447,0.449,0.451,0.452,0.454,0.456,0.458,0.460,0.462,0.464,0.466,0.468,0.470,0.472,0.474,0.476,0.478,0.480,0.482,0.485,0.487,0.489,0.491,0.493,0.495,0.497,0.499,0.501,0.504,0.506,0.508,0.510,0.512,0.514,0.517,0.519,0.521,0.523,0.525,0.528,0.530,0.531,0.533,0.534,0.535,0.537,0.538,0.539,0.541,0.542,0.543,0.545,0.546,0.547,0.549,0.550,0.552,0.553,0.555,0.557,0.559,0.560,0.562,0.564,0.566,0.568,0.569,0.571,0.573,0.575,0.577,0.578,0.580,0.582,0.584,0.586,0.588,0.589,0.591,0.593,0.595,0.597,0.599,0.601,0.603,0.604,0.606,0.608,0.610,0.612,0.614,0.616,0.618,0.620,0.622,0.624,0.626 +realtime,1961,1962,1963,1964,1965,1966,1967,1968,1969,1970,1971,1972,1973,1974,1975,1976,1977,1978,1979,1980,1981,1982,1983,1984,1985,1986,1987,1988,1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020,2021,2022,2023,2024,2025,2026,2027,2028,2029,2030,2031,2032,2033,2034,2035,2036,2037,2038,2039,2040,2041,2042,2043,2044,2045,2046,2047,2048,2049,2050,2051,2052,2053,2054,2055,2056,2057,2058,2059,2060,2061,2062,2063,2064,2065,2066,2067,2068,2069,2070,2071,2072,2073,2074,2075,2076,2077,2078,2079,2080,2081,2082,2083,2084,2085,2086,2087,2088,2089,2090,2091,2092,2093,2094,2095,2096,2097,2098,2099,2100,2101,2102,2103,2104,2105,2106,2107,2108,2109,2110,2111,2112,2113,2114,2115,2116,2117,2118,2119,2120,2121 timestep,-50,-49,-48,-47,-46,-45,-44,-43,-42,-41,-40,-39,-38,-37,-36,-35,-34,-33,-32,-31,-30,-29,-28,-27,-26,-25,-24,-23,-22,-21,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-4,-3,-2,-1,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110 PV_Inv,13864745.33,13344475.51,12843728.64,12361772.12,11897900.85,11451436.2,11021724.97,10608138.52,10210071.75,9826942.306,9458189.661,9103274.332,8761677.08,8432898.148,8116456.532,7811889.28,7518750.809,7236612.26,6965060.862,6703699.338,6452145.316,6210030.772,5977001.494,5752716.56,5536847.84,5329079.521,5129107.637,4936639.629,4751393.917,4573099.487,4401495.495,4236330.883,4077364.018,3924362.329,3777101.976,3635367.518,3498951.597,3367654.636,3241284.549,3119656.456,3002592.416,2889921.163,2781477.861,2677103.857,2576646.451,2479958.675,2386899.075,2297331.505,2211124.927,2128153.221,2048295,1971433.431,1897456.067,1826254.678,1757725.096,1691767.064,1628284.084,1567183.281,1508375.265,1451774,1426977.842,1402605.201,1378648.841,1355101.654,1331956.65,1309206.961,1286845.835,1264866.634,1243262.836,1222028.028,1201155.909,1180640.284,1160475.063,1140654.263,1121172,1102022.492,1083200.056,1064699.105,1046514.149,1028639.789,1011070.723,993801.734,976827.697,960143.576,943744.418,927625.356,911781.605,896208.465,880901.312,865855.604,851066.875,836530.736,822242.873,808199.045,794395.085,780826.895,767490.448,754381.786,741497.019,728832.323,716383.938,704148.17,692121.389,680300.023,668680.565,657259.567,646033.638,634999.447,624153.718,613493.234,603014.83,592715.395,582591.874,572641.262,562860.606,553247.002,543797.597,534509.587,525380.216,516406.773,507586.596,498917.067,490395.612,482019.703,473786.854,465694.621,457740.602,449922.438,442237.807,434684.428,427260.061,419962.501,412789.582,405739.177,398809.191,391997.569,385302.289,378721.364,372252.84,365894.798,359645.351,353502.643,347464.853,341530.187,335696.885,329963.215,324327.476,318787.994,313343.127,307991.257,302730.796,297560.184,292477.885,287482.391,282572.22,277745.914,273002.041,268339.193,263755.986,259251.06,254823.077 PV_OM,31173.146,30912.411,30653.856,30397.464,30143.216,29891.095,29641.083,29393.161,29147.314,28903.523,28661.77,28422.04,28184.315,27948.578,27714.814,27483.004,27253.133,27025.185,26799.143,26574.992,26352.716,26132.299,25913.726,25696.981,25482.048,25268.914,25057.562,24847.978,24640.146,24434.054,24229.684,24027.025,23826.06,23626.776,23429.159,23233.195,23038.87,22846.171,22655.083,22465.593,22277.689,22091.356,21906.581,21723.352,21541.656,21361.479,21182.809,21005.634,20829.941,20655.717,20482.95,20311.628,20141.74,19973.272,19806.213,19640.552,19476.276,19313.375,19151.836,18991.648,18935.396,18879.311,18823.391,18767.638,18712.05,18656.626,18601.367,18546.271,18491.338,18436.568,18381.961,18327.515,18273.23,18219.106,18165.143,18111.339,18057.694,18004.209,17950.882,17897.713,17844.701,17791.846,17739.148,17686.606,17634.22,17581.989,17529.912,17477.99,17426.222,17374.606,17323.144,17271.834,17220.677,17169.67,17118.815,17068.11,17017.556,16967.151,16916.896,16866.789,16816.831,16767.021,16717.359,16667.843,16618.474,16569.252,16520.175,16471.243,16422.457,16373.815,16325.317,16276.962,16228.751,16180.683,16132.757,16084.973,16037.331,15989.829,15942.469,15895.248,15848.168,15801.227,15754.425,15707.761,15661.236,15614.849,15568.599,15522.486,15476.509,15430.669,15384.965,15339.396,15293.962,15248.662,15203.497,15158.465,15113.567,15068.802,15024.169,14979.669,14935.3,14891.063,14846.957,14802.981,14759.136,14715.42,14671.834,14628.378,14585.049,14541.85,14498.778,14455.834,14413.017,14370.326,14327.762,14285.325,14243.013,14200.826,14158.764,14116.827,14075.014 PV_Eff,0.316,0.323,0.33,0.338,0.346,0.354,0.362,0.371,0.379,0.388,0.397,0.407,0.416,0.426,0.436,0.446,0.456,0.467,0.478,0.489,0.501,0.512,0.524,0.536,0.549,0.562,0.575,0.588,0.602,0.616,0.63,0.645,0.66,0.676,0.691,0.707,0.724,0.741,0.758,0.776,0.794,0.813,0.831,0.851,0.871,0.891,0.912,0.933,0.955,0.977,1,1.023,1.047,1.072,1.097,1.122,1.148,1.175,1.203,1.231,1.236,1.241,1.246,1.251,1.256,1.261,1.266,1.271,1.276,1.282,1.287,1.292,1.297,1.302,1.308,1.313,1.318,1.324,1.329,1.334,1.34,1.345,1.351,1.356,1.362,1.367,1.373,1.378,1.384,1.389,1.395,1.401,1.406,1.412,1.418,1.424,1.429,1.435,1.441,1.447,1.453,1.458,1.464,1.47,1.476,1.482,1.488,1.494,1.5,1.506,1.512,1.519,1.525,1.531,1.537,1.543,1.55,1.556,1.562,1.569,1.575,1.581,1.588,1.594,1.601,1.607,1.614,1.62,1.627,1.633,1.64,1.646,1.653,1.66,1.667,1.673,1.68,1.687,1.694,1.701,1.707,1.714,1.721,1.728,1.735,1.742,1.749,1.756,1.764,1.771,1.778,1.785,1.792,1.8,1.807,1.814,1.822,1.829,1.836,1.844,1.851 Wind_Inv,1484743.979,1478792.463,1472864.803,1466960.903,1461080.67,1455224.006,1449390.819,1443581.014,1437794.497,1432031.175,1426290.955,1420573.745,1414879.451,1409207.983,1403559.249,1397933.157,1392329.617,1386748.539,1381189.832,1375653.407,1370139.174,1364647.045,1359176.93,1353728.743,1348302.394,1342897.796,1337514.863,1332153.506,1326813.641,1321495.18,1316198.037,1310922.128,1305667.367,1300433.67,1295220.952,1290029.128,1284858.116,1279707.831,1274578.191,1269469.113,1264380.514,1259312.313,1254264.427,1249236.776,1244229.277,1239241.851,1234274.417,1229326.894,1224399.203,1219491.265,1214603,1209734.329,1204885.174,1200055.457,1195245.099,1190454.023,1185682.152,1180929.409,1176195.717,1171481,1171000.489,1170520.176,1170040.06,1169560.14,1169080.417,1168600.892,1168121.562,1167642.43,1167163.494,1166684.754,1166206.211,1165727.864,1165249.713,1164771.759,1164294,1163816.437,1163339.071,1162861.9,1162384.925,1161908.145,1161431.561,1160955.172,1160478.979,1160002.982,1159527.179,1159051.572,1158576.159,1158100.942,1157625.92,1157151.092,1156676.459,1156202.021,1155727.778,1155253.729,1154779.874,1154306.214,1153832.748,1153359.476,1152886.399,1152413.515,1151940.826,1151468.33,1150996.028,1150523.92,1150052.006,1149580.285,1149108.757,1148637.423,1148166.282,1147695.335,1147224.581,1146754.02,1146283.651,1145813.476,1145343.494,1144873.704,1144404.107,1143934.703,1143465.491,1142996.472,1142527.645,1142059.01,1141590.568,1141122.318,1140654.259,1140186.393,1139718.719,1139251.236,1138783.946,1138316.847,1137849.939,1137383.223,1136916.699,1136450.365,1135984.224,1135518.273,1135052.513,1134586.945,1134121.567,1133656.38,1133191.385,1132726.579,1132261.965,1131797.541,1131333.308,1130869.265,1130405.412,1129941.749,1129478.277,1129014.995,1128551.903,1128089.001,1127626.289,1127163.766,1126701.433,1126239.29,1125777.337,1125315.573,1124853.998,1124392.612,1123931.416 Wind_OM,21166.116,21102.741,21039.555,20976.559,20913.751,20851.131,20788.699,20726.454,20664.395,20602.521,20540.834,20479.33,20418.011,20356.876,20295.924,20235.154,20174.566,20114.159,20053.934,19993.888,19934.023,19874.336,19814.829,19755.5,19696.348,19637.373,19578.575,19519.953,19461.507,19403.235,19345.138,19287.215,19229.466,19171.889,19114.485,19057.252,19000.191,18943.301,18886.581,18830.031,18773.65,18717.438,18661.395,18605.519,18549.81,18494.269,18438.893,18383.684,18328.64,18273.76,18219.045,18164.494,18140.625,18116.787,18092.981,18069.206,18045.462,18021.749,17998.068,17733.923,17999.224,17975.572,17951.951,17928.362,17904.803,17881.275,17857.778,17834.312,17810.877,17787.473,17764.1,17740.757,17717.444,17694.163,17653.069,17647.692,17624.502,17601.342,17578.213,17555.115,17532.047,17509.009,17486.001,17463.024,17440.076,17417.159,17394.272,17371.416,17348.589,17325.792,17303.025,17280.288,17257.581,17234.904,17212.256,17189.638,17167.051,17144.492,17121.964,17099.465,17076.995,17054.555,17032.145,17009.764,16987.412,16965.09,16942.797,16920.533,16898.299,16876.094,16853.918,16831.771,16809.653,16787.565,16765.505,16743.474,16721.473,16699.5,16677.556,16655.641,16633.755,16611.897,16590.068,16568.268,16546.497,16524.754,16503.04,16481.354,16459.697,16438.068,16416.467,16394.895,16373.352,16351.836,16330.349,16308.89,16287.46,16266.057,16244.683,16223.337,16202.019,16180.728,16159.466,16138.232,16117.025,16095.847,16074.696,16053.573,16032.478,16011.411,15990.371,15969.359,15948.375,15927.418,15906.488,15885.586,15864.712,15843.865,15823.046,15802.253,15781.488 Wind_Eff,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 WindOffshore_Inv,12316633.42,11925269.87,11546341.98,11179454.59,10824225.13,10480283.16,10147270.01,9824838.427,9512652.171,9210385.698,8917723.804,8634361.302,8360002.701,8094361.901,7837161.892,7588134.466,7347019.938,7113566.873,6887531.827,6668679.091,6456780.446,6251614.923,6052968.577,5860634.26,5674411.404,5494105.819,5319529.48,5150500.34,4986842.136,4828384.204,4674961.306,4526413.452,4382585.737,4243328.176,4108495.554,3977947.265,3851547.175,3729163.474,3610668.54,3495938.807,3384854.634,3277300.184,3173163.299,3072335.385,2974711.298,2880189.236,2788670.633,2700060.052,2614265.09,2531196.281,2450767,2372893.376,2297494.203,2224490.853,2153807.2,2085369.535,2019106.49,1954948.968,1892830.063,1832685,1807381.515,1782427.39,1757817.802,1733547.992,1709613.271,1686009.011,1662730.649,1639773.688,1617133.688,1594806.273,1572787.129,1551071.997,1529656.682,1508537.044,1487709,1467168.524,1446911.646,1426934.451,1407233.076,1387803.714,1368642.609,1349746.057,1331110.405,1312732.052,1294607.445,1276733.081,1259105.504,1241721.307,1224577.13,1207669.659,1190995.626,1174551.807,1158335.025,1142342.144,1126570.074,1111015.765,1095676.211,1080548.447,1065629.548,1050916.632,1036406.854,1022097.409,1007985.532,994068.494,980343.605,966808.214,953459.702,940295.491,927313.035,914509.824,901883.385,889431.277,877151.092,865040.457,853097.031,841318.505,829702.603,818247.079,806949.718,795808.338,784820.785,773984.935,763298.692,752759.993,742366.799,732117.101,722008.919,712040.298,702209.312,692514.06,682952.669,673523.289,664224.099,655053.301,646009.122,637089.814,628293.653,619618.939,611063.994,602627.166,594306.823,586101.358,578009.183,570028.736,562158.472,554396.872,546742.435,539193.68,531749.15,524407.405,517167.025,510026.612,502984.785,496040.183,489191.464,482437.304,475776.396,469207.455,462729.209,456340.407,450039.814 WindOffshore_OM,235671.987,230245.033,224943.048,219763.156,214702.543,209758.465,204928.236,200209.236,195598.903,191094.735,186694.286,182395.17,178195.051,174091.652,170082.743,166166.15,162339.747,158601.456,154949.25,151381.144,147895.204,144489.536,141162.292,137911.667,134735.896,131633.255,128602.061,125640.667,122747.467,119920.891,117159.404,114461.507,111825.736,109250.661,106734.883,104277.037,101875.79,99529.838,97237.907,94998.754,92811.163,90673.947,88585.946,86546.027,84553.082,82606.029,80703.813,78845.4,77029.782,75255.972,73523.01,71829.953,70175.884,68559.903,66981.135,65438.722,63931.827,62459.632,61021.338,59616.165,59064.341,58517.625,57975.97,57439.328,56907.654,56380.901,55859.024,55341.977,54829.717,54322.198,53819.376,53321.209,52827.654,52338.666,51854.205,51374.228,50898.694,50427.562,49960.79,49498.339,49040.169,48586.24,48136.512,47690.947,47249.507,46812.152,46378.846,45949.55,45524.229,45102.844,44685.359,44271.739,43861.948,43455.95,43053.709,42655.192,42260.364,41869.19,41481.638,41097.672,40717.261,40340.37,39966.969,39597.023,39230.502,38867.374,38507.607,38151.17,37798.032,37448.163,37101.532,36758.11,36417.867,36080.773,35746.8,35415.917,35088.098,34763.313,34441.534,34122.734,33806.884,33493.958,33183.929,32876.769,32572.453,32270.953,31972.244,31676.3,31383.096,31092.605,30804.803,30519.666,30237.167,29957.284,29679.991,29405.265,29133.081,28863.417,28596.25,28331.555,28069.31,27809.493,27552.08,27297.051,27044.382,26794.051,26546.038,26300.321,26056.878,25815.688,25576.731,25339.986,25105.432,24873.049,24642.817,24414.716,24188.727,23964.829,23743.004,23523.233,23305.495 WindOffshore_Eff,0.734,0.739,0.744,0.748,0.753,0.757,0.762,0.767,0.772,0.776,0.781,0.786,0.791,0.796,0.801,0.806,0.811,0.816,0.821,0.826,0.831,0.836,0.841,0.846,0.852,0.857,0.862,0.868,0.873,0.878,0.884,0.889,0.895,0.9,0.906,0.912,0.917,0.923,0.929,0.934,0.94,0.946,0.952,0.958,0.964,0.97,0.976,0.982,0.988,0.994,1,1.006,1.012,1.019,1.025,1.031,1.038,1.044,1.051,1.057,1.063,1.068,1.074,1.079,1.085,1.091,1.096,1.102,1.108,1.114,1.119,1.125,1.131,1.137,1.143,1.149,1.155,1.161,1.167,1.173,1.179,1.185,1.191,1.198,1.204,1.21,1.216,1.223,1.229,1.236,1.242,1.248,1.255,1.261,1.268,1.275,1.281,1.288,1.295,1.301,1.308,1.315,1.322,1.329,1.336,1.343,1.35,1.357,1.364,1.371,1.378,1.385,1.392,1.4,1.407,1.414,1.422,1.429,1.437,1.444,1.452,1.459,1.467,1.474,1.482,1.49,1.498,1.505,1.513,1.521,1.529,1.537,1.545,1.553,1.561,1.569,1.577,1.586,1.594,1.602,1.611,1.619,1.627,1.636,1.644,1.653,1.662,1.67,1.679,1.688,1.696,1.705,1.714,1.723,1.732,1.741,1.75,1.759,1.768,1.778,1.787 Biomass_Inv,2164261.917,2153919.862,2143627.227,2133383.776,2123189.274,2113043.487,2102946.182,2092897.127,2082896.093,2072942.849,2063037.168,2053178.821,2043367.583,2033603.228,2023885.534,2014214.275,2004589.232,1995010.182,1985476.906,1975989.186,1966546.803,1957149.541,1947797.185,1938489.519,1929226.331,1920007.408,1910832.537,1901701.509,1892614.115,1883570.145,1874569.392,1865611.65,1856696.713,1847824.376,1838994.437,1830206.692,1821460.939,1812756.979,1804094.611,1795473.637,1786893.859,1778355.079,1769857.103,1761399.735,1752982.781,1744606.047,1736269.343,1727972.476,1719715.256,1711497.493,1703319,1695179.588,1687079.071,1679017.262,1670993.978,1663009.033,1655062.245,1647153.431,1639282.409,1631449,1624540.035,1617660.328,1610809.756,1603988.195,1597195.523,1590431.616,1583696.354,1576989.615,1570311.278,1563661.223,1557039.33,1550445.479,1543879.553,1537341.432,1530831,1524348.138,1517892.731,1511464.661,1505063.813,1498690.072,1492343.323,1486023.451,1479730.344,1473463.886,1467223.967,1461010.472,1454823.291,1448662.312,1442527.423,1436418.515,1430335.478,1424278.201,1418246.576,1412240.494,1406259.847,1400304.528,1394374.428,1388469.441,1382589.462,1376734.383,1370904.099,1365098.507,1359317.5,1353560.974,1347828.827,1342120.955,1336437.255,1330777.624,1325141.962,1319530.165,1313942.134,1308377.767,1302836.965,1297319.627,1291825.654,1286354.948,1280907.409,1275482.94,1270081.443,1264702.82,1259346.975,1254013.812,1248703.233,1243415.145,1238149.45,1232906.055,1227684.865,1222485.786,1217308.725,1212153.588,1207020.282,1201908.714,1196818.794,1191750.429,1186703.527,1181677.999,1176673.753,1171690.699,1166728.748,1161787.81,1156867.796,1151968.618,1147090.187,1142232.416,1137395.217,1132578.502,1127782.186,1123006.181,1118250.402,1113514.764,1108799.18,1104103.565,1099427.837,1094771.909,1090135.698,1085519.122,1080922.095,1076344.537,1071786.364,1067247.494,1062727.846 Biomass_OM,75749.167,75387.195,75026.953,74668.432,74311.625,73956.522,73603.116,73251.399,72901.363,72553,72206.301,71861.259,71517.865,71176.113,70835.994,70497.5,70160.623,69825.356,69491.692,69159.622,68829.138,68500.234,68172.901,67847.133,67522.922,67200.259,66879.139,66559.553,66241.494,65924.955,65609.929,65296.408,64984.385,64673.853,64364.805,64057.234,63751.133,63446.494,63143.311,62841.577,62541.285,62242.428,61944.999,61648.991,61354.397,61061.212,60769.427,60479.037,60190.034,59902.412,59616.165,59331.286,59047.767,58765.604,58484.789,58205.316,57927.179,57650.37,57374.884,57100.715,56827.856,56556.3,56286.043,56017.077,55749.396,55482.994,55217.865,54954.003,54691.402,54430.056,54169.959,53911.104,53653.487,53397.1,53141.939,52887.997,52635.269,52383.748,52133.429,51884.306,51636.374,51389.627,51144.058,50899.663,50656.436,50414.371,50173.463,49933.706,49695.095,49457.624,49221.288,48986.081,48751.998,48519.034,48287.183,48056.44,47826.799,47598.256,47370.805,47144.44,46919.158,46694.952,46471.817,46249.749,46028.742,45808.791,45589.891,45372.036,45155.223,44939.447,44724.701,44510.981,44298.283,44086.601,43875.93,43666.266,43457.605,43249.94,43043.267,42837.583,42632.881,42429.157,42226.407,42024.625,41823.808,41623.95,41425.048,41227.096,41030.09,40834.025,40638.897,40444.702,40251.434,40059.09,39867.666,39677.156,39487.556,39298.862,39111.07,38924.176,38738.174,38553.061,38368.833,38185.486,38003.014,37821.414,37640.682,37460.814,37281.805,37103.652,36926.35,36749.895,36574.284,36399.511,36225.574,36052.468,35880.189,35708.733,35538.097,35368.276,35199.267 Biomass_Eff,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35 Biogas_Inv,2521166.319,2510004.766,2498892.626,2487829.681,2476815.713,2465850.505,2454933.842,2444065.509,2433245.291,2422472.976,2411748.351,2401071.206,2390441.33,2379858.514,2369322.549,2358833.229,2348390.347,2337993.696,2327643.073,2317338.273,2307079.095,2296865.335,2286696.793,2276573.268,2266494.562,2256460.475,2246470.811,2236525.373,2226623.964,2216766.39,2206952.457,2197181.972,2187454.742,2177770.575,2168129.282,2158530.673,2148974.557,2139460.748,2129989.058,2120559.3,2111171.29,2101824.841,2092519.77,2083255.894,2074033.031,2064850.998,2055709.616,2046608.703,2037548.082,2028527.574,2019547,2010606.185,2001704.952,1992843.126,1984020.532,1975236.997,1966492.348,1957786.413,1949119.021,1940490,1935613.822,1930749.896,1925898.193,1921058.682,1916231.332,1911416.112,1906612.992,1901821.942,1897042.931,1892275.929,1887520.906,1882777.831,1878046.675,1873327.408,1868620,1863924.421,1859240.641,1854568.631,1849908.361,1845259.801,1840622.923,1835997.696,1831384.092,1826782.082,1822191.635,1817612.724,1813045.319,1808489.391,1803944.912,1799411.852,1794890.183,1790379.876,1785880.904,1781393.236,1776916.846,1772451.703,1767997.782,1763555.052,1759123.486,1754703.056,1750293.734,1745895.492,1741508.303,1737132.137,1732766.968,1728412.769,1724069.511,1719737.166,1715415.709,1711105.11,1706805.344,1702516.382,1698238.198,1693970.764,1689714.054,1685468.04,1681232.696,1677007.995,1672793.91,1668590.414,1664397.481,1660215.084,1656043.197,1651881.794,1647730.847,1643590.331,1639460.22,1635340.487,1631231.106,1627132.052,1623043.298,1618964.819,1614896.588,1610838.58,1606790.769,1602753.13,1598725.637,1594708.264,1590700.987,1586703.779,1582716.615,1578739.471,1574772.321,1570815.14,1566867.902,1562930.583,1559003.159,1555085.603,1551177.892,1547280,1543391.903,1539513.576,1535644.995,1531786.135,1527936.972,1524097.481,1520267.639,1516447.42,1512636.801,1508835.758,1505044.266 Biogas_OM,95804.32,95380.181,94957.92,94537.528,94118.997,93702.319,93287.486,92874.489,92463.321,92053.973,91646.437,91240.706,90836.771,90434.624,90034.257,89635.663,89238.833,88843.76,88450.437,88058.854,87669.006,87280.883,86894.478,86509.784,86126.793,85745.498,85365.891,84987.964,84611.711,84237.123,83864.193,83492.915,83123.28,82755.282,82388.913,82024.166,81661.033,81299.508,80939.584,80581.253,80224.509,79869.344,79515.751,79163.724,78813.255,78464.338,78116.965,77771.131,77426.827,77084.048,76742.786,76403.035,76064.788,75728.039,75392.78,75059.006,74726.709,74395.884,74066.523,73738.62,73412.169,73087.163,72763.596,72441.461,72120.753,71801.464,71483.589,71167.122,70852.055,70538.383,70226.1,69915.199,69605.675,69297.521,68990.731,68685.299,68381.22,68078.487,67777.094,67477.035,67178.305,66880.897,66584.806,66290.026,65996.551,65704.375,65413.493,65123.898,64835.586,64548.549,64262.784,63978.284,63695.043,63413.056,63132.318,62852.822,62574.564,62297.538,62021.738,61747.159,61473.796,61201.643,60930.694,60660.946,60392.391,60125.026,59858.844,59593.841,59330.01,59067.348,58805.849,58545.507,58286.318,58028.276,57771.377,57515.615,57260.986,57007.483,56755.103,56503.841,56253.69,56004.647,55756.707,55509.864,55264.114,55019.452,54775.874,54533.373,54291.946,54051.588,53812.294,53574.06,53336.88,53100.75,52865.666,52631.622,52398.615,52166.639,51935.69,51705.763,51476.855,51248.96,51022.073,50796.192,50571.31,50347.424,50124.528,49902.62,49681.694,49461.747,49242.773,49024.768,48807.729,48591.65,48376.528,48162.358,47949.137,47736.859,47525.522,47315.12,47105.649 Biogas_Eff,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 Igcc_Inv,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1714903.352,1704984.408,1695122.835,1685318.302,1675570.477,1665879.033,1656243.645,1646663.987,1637139.737,1627670.576,1618256.184,1608896.244,1599590.442,1590338.464,1581140,1575417.997,1569716.701,1564036.037,1558375.932,1552736.31,1547117.097,1541518.219,1535939.604,1530381.177,1524842.865,1519324.596,1513826.297,1508347.896,1502889.321,1497450.5,1492031.361,1486631.834,1481251.847,1475891.33,1470550.213,1465228.424,1459925.894,1454642.554,1449378.333,1444133.164,1438906.976,1433699.701,1428511.271,1423341.617,1418190.672,1413058.368,1407944.637,1402849.412,1397772.626,1392714.213,1387674.106,1382652.238,1377648.544,1372662.958,1367695.415,1362745.848,1357814.193,1352900.386,1348004.362,1343126.055,1338265.403,1333422.341,1328596.806,1323788.733,1318998.061,1314224.726,1309468.665,1304729.816,1300008.116,1295303.504,1290615.917,1285945.294,1281291.574,1276654.695,1272034.597,1267431.218,1262844.499,1258274.378,1253720.797,1249183.694,1244663.011,1240158.687,1235670.665,1231198.884,1226743.286,1222303.813,1217880.405,1213473.006,1209081.556,1204705.999,1200346.276,1196002.331,1191674.106,1187361.545,1183064.591,1178783.186,1174517.276,1170266.804,1166031.714,1161811.95,1157607.457 Igcc_OM,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60021.617,59674.454,59329.299,58986.141,58644.967,58305.766,57968.528,57633.24,57299.891,56968.47,56638.966,56311.369,55985.665,55661.846,55339.9,55139.63,54940.085,54741.261,54543.158,54345.771,54149.098,53953.138,53757.886,53563.341,53369.5,53176.361,52983.92,52792.176,52601.126,52410.767,52221.098,52032.114,51843.815,51656.197,51469.257,51282.995,51097.406,50912.489,50728.242,50544.661,50361.744,50179.49,49997.894,49816.957,49636.674,49457.043,49278.062,49099.729,48922.042,48744.997,48568.594,48392.828,48217.699,48043.204,47869.34,47696.105,47523.497,47351.514,47180.153,47009.412,46839.289,46669.782,46500.888,46332.606,46164.932,45997.865,45831.403,45665.544,45500.284,45335.623,45171.557,45008.085,44845.205,44682.914,44521.211,44360.093,44199.557,44039.603,43880.228,43721.429,43563.205,43405.554,43248.473,43091.961,42936.015,42780.633,42625.814,42471.555,42317.854,42164.71,42012.12,41860.082,41708.594,41557.654,41407.261,41257.412,41108.105,40959.338,40811.11,40663.418,40516.261 Igcc_Eff,0.383,0.384,0.386,0.388,0.39,0.391,0.393,0.395,0.397,0.399,0.4,0.402,0.404,0.406,0.408,0.41,0.411,0.413,0.415,0.417,0.419,0.421,0.423,0.425,0.427,0.429,0.43,0.432,0.434,0.436,0.438,0.44,0.442,0.444,0.446,0.448,0.45,0.453,0.455,0.457,0.459,0.461,0.463,0.465,0.467,0.469,0.471,0.474,0.476,0.478,0.48,0.482,0.484,0.487,0.489,0.491,0.493,0.495,0.498,0.5,0.501,0.503,0.504,0.505,0.507,0.508,0.509,0.511,0.512,0.513,0.515,0.516,0.517,0.519,0.52,0.522,0.523,0.525,0.527,0.529,0.531,0.532,0.534,0.536,0.538,0.539,0.541,0.543,0.545,0.547,0.549,0.55,0.552,0.554,0.556,0.558,0.56,0.561,0.563,0.565,0.567,0.569,0.571,0.573,0.575,0.577,0.579,0.58,0.582,0.584,0.586,0.588,0.59,0.592,0.594,0.596,0.598,0.6,0.602,0.604,0.606,0.608,0.61,0.612,0.614,0.616,0.618,0.621,0.623,0.625,0.627,0.629,0.631,0.633,0.635,0.637,0.639,0.642,0.644,0.646,0.648,0.65,0.652,0.655,0.657,0.659,0.661,0.663,0.666,0.668,0.67,0.672,0.674,0.677,0.679,0.681,0.684,0.686,0.688,0.69,0.693 IgccCCS_Inv,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2470860.002,2441009.049,2411518.731,2382384.692,2353602.627,2325168.284,2297077.462,2269326.01,2241909.83,2214824.87,2188067.128,2161632.653,2135517.537,2109717.923,2084230,2068456.653,2052802.678,2037267.171,2021849.237,2006547.984,1991362.531,1976292,1961335.522,1946492.235,1931761.28,1917141.809,1902632.977,1888233.947,1873943.888,1859761.976,1845687.391,1831719.323,1817856.964,1804099.514,1790446.181,1776896.175,1763448.715,1750103.024,1736858.333,1723713.878,1710668.898,1697722.643,1684874.364,1672123.32,1659468.776,1646910,1634446.269,1622076.862,1609801.067,1597618.174,1585527.481,1573528.289,1561619.907,1549801.646,1538072.826,1526432.769,1514880.803,1503416.262,1492038.484,1480746.812,1469540.596,1458419.187,1447381.944,1436428.231,1425557.415,1414768.869,1404061.97,1393436.1,1382890.646,1372425,1362038.557,1351730.719,1341500.889,1331348.478,1321272.9,1311273.574,1301349.922,1291501.372,1281727.355,1272027.307,1262400.669,1252846.885,1243365.403,1233955.677,1224617.163,1215349.322,1206151.62,1197023.526,1187964.513,1178974.058,1170051.642,1161196.75,1152408.872,1143687.5,1135032.131,1126442.265,1117917.407,1109457.065,1101060.75,1092727.978,1084458.269 IgccCCS_OM,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,86641.008,85612.962,84597.113,83593.319,82601.434,81621.32,80652.834,79695.841,78750.203,77815.785,76892.455,75980.08,75078.532,74187.681,73307.4,72762.537,72221.723,71684.929,71152.125,70623.281,70098.367,69577.355,69060.216,68546.92,68037.439,67531.745,67029.81,66531.605,66037.103,65546.277,65059.099,64575.542,64095.579,63619.183,63146.328,62676.988,62211.136,61748.746,61289.793,60834.252,60382.096,59933.301,59487.842,59045.694,58606.832,58171.231,57738.869,57309.72,56883.761,56460.967,56041.316,55624.785,55211.349,54800.986,54393.673,53989.387,53588.107,53189.809,52794.471,52402.072,52012.589,51626.001,51242.286,50861.424,50483.392,50108.17,49735.737,49366.072,48999.154,48634.964,48273.481,47914.684,47558.554,47205.071,46854.215,46505.967,46160.308,45817.218,45476.677,45138.668,44803.171,44470.168,44139.64,43811.568,43485.935,43162.722,42841.912,42523.485,42207.426,41893.716,41582.337,41273.273,40966.506,40662.019,40359.795,40059.818,39762.07,39466.535,39173.196,38882.038,38593.044 IgccCCS_Eff,0.295,0.297,0.299,0.3,0.302,0.304,0.305,0.307,0.309,0.311,0.312,0.314,0.316,0.318,0.319,0.321,0.323,0.325,0.326,0.328,0.33,0.332,0.334,0.336,0.338,0.339,0.341,0.343,0.345,0.347,0.349,0.351,0.353,0.355,0.357,0.359,0.361,0.363,0.365,0.367,0.369,0.371,0.373,0.375,0.377,0.379,0.381,0.384,0.386,0.388,0.39,0.392,0.394,0.397,0.399,0.401,0.403,0.405,0.408,0.41,0.413,0.415,0.418,0.42,0.423,0.426,0.428,0.431,0.434,0.436,0.439,0.442,0.444,0.447,0.45,0.453,0.455,0.458,0.461,0.464,0.466,0.469,0.472,0.475,0.478,0.481,0.483,0.486,0.489,0.492,0.495,0.498,0.501,0.504,0.507,0.51,0.513,0.516,0.519,0.522,0.525,0.529,0.532,0.535,0.538,0.541,0.545,0.548,0.551,0.554,0.558,0.561,0.564,0.568,0.571,0.575,0.578,0.582,0.585,0.588,0.592,0.596,0.599,0.603,0.606,0.61,0.614,0.617,0.621,0.625,0.628,0.632,0.636,0.64,0.644,0.647,0.651,0.655,0.659,0.663,0.667,0.671,0.675,0.679,0.683,0.687,0.691,0.695,0.7,0.704,0.708,0.712,0.716,0.721,0.725,0.729,0.734,0.738,0.743,0.747,0.751 CcgtCCS_Inv,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1150227.932,1136331.799,1122603.547,1109041.15,1095642.602,1082405.925,1069329.163,1056410.384,1043647.679,1031039.163,1018582.974,1006277.269,994120.233,982110.068,970245,962902.235,955615.04,948382.994,941205.679,934082.682,927013.592,919998,913035.502,906125.695,899268.182,892462.566,885708.455,879005.458,872353.189,865751.265,859199.303,852696.926,846243.759,839839.429,833483.567,827175.806,820915.781,814703.132,808537.5,802418.529,796345.866,790319.161,784338.066,778402.235,772511.327,766665,760862.918,755104.746,749390.152,743718.805,738090.379,732504.548,726960.991,721459.387,715999.419,710580.772,705203.133,699866.191,694569.639,689313.171,684096.484,678919.277,673781.25,668682.108,663621.555,658599.301,653615.055,648668.529,643759.439,638887.5,634052.432,629253.955,624491.793,619765.671,615075.316,610420.457,605800.826,601216.156,596666.183,592150.643,587669.277,583221.826,578808.033,574427.643,570080.403,565766.064,561484.375,557235.09,553017.963,548832.751,544679.212,540557.108,536466.199,532406.25,528377.027,524378.296,520409.828,516471.392,512562.763,508683.714,504834.022 CcgtCCS_OM,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29101.218,28740.27,28383.798,28031.748,27684.065,27340.693,27001.581,26666.675,26335.923,26009.273,25686.674,25368.077,25053.432,24742.689,24435.8,24245.931,24057.536,23870.606,23685.128,23501.091,23318.485,23137.297,22957.517,22779.134,22602.137,22426.515,22252.258,22079.355,21907.796,21737.569,21568.665,21401.074,21234.784,21069.787,20906.072,20743.629,20582.448,20422.52,20263.834,20106.381,19950.152,19795.137,19641.326,19488.71,19337.28,19187.027,19037.941,18890.014,18743.236,18597.598,18453.092,18309.709,18167.44,18026.277,17886.21,17747.232,17609.333,17472.507,17336.743,17202.034,17068.372,16935.748,16804.155,16673.585,16544.029,16415.479,16287.929,16161.369,16035.793,15911.193,15787.561,15664.889,15543.171,15422.398,15302.564,15183.661,15065.682,14948.62,14832.467,14717.217,14602.862,14489.396,14376.811,14265.101,14154.26,14044.279,13935.153,13826.875,13719.438,13612.836,13507.063,13402.111,13297.975,13194.648,13092.124,12990.396,12889.459,12789.306,12689.931,12591.329,12493.493 CcgtCCS_Eff,0.412,0.414,0.415,0.417,0.419,0.421,0.423,0.424,0.426,0.428,0.43,0.432,0.434,0.435,0.437,0.439,0.441,0.443,0.445,0.447,0.449,0.451,0.452,0.454,0.456,0.458,0.46,0.462,0.464,0.466,0.468,0.47,0.472,0.474,0.476,0.478,0.48,0.482,0.485,0.487,0.489,0.491,0.493,0.495,0.497,0.499,0.501,0.504,0.506,0.508,0.51,0.512,0.514,0.517,0.519,0.521,0.523,0.525,0.528,0.53,0.531,0.533,0.534,0.535,0.537,0.538,0.539,0.541,0.542,0.543,0.545,0.546,0.547,0.549,0.55,0.552,0.553,0.555,0.557,0.559,0.56,0.562,0.564,0.566,0.568,0.569,0.571,0.573,0.575,0.577,0.578,0.58,0.582,0.584,0.586,0.588,0.589,0.591,0.593,0.595,0.597,0.599,0.601,0.603,0.604,0.606,0.608,0.61,0.612,0.614,0.616,0.618,0.62,0.622,0.624,0.626,0.628,0.63,0.632,0.634,0.636,0.638,0.64,0.642,0.644,0.646,0.648,0.65,0.652,0.654,0.656,0.658,0.66,0.662,0.664,0.666,0.668,0.671,0.673,0.675,0.677,0.679,0.681,0.683,0.686,0.688,0.69,0.692,0.694,0.696,0.699,0.701,0.703,0.705,0.707,0.71,0.712,0.714,0.716,0.719,0.721 \ No newline at end of file diff --git a/emlab-generation/src/main/resources/data/learningCurvesOld.csv b/emlab-generation/src/main/resources/data/learningCurvesOld.csv new file mode 100644 index 00000000..b0f5498b --- /dev/null +++ b/emlab-generation/src/main/resources/data/learningCurvesOld.csv @@ -0,0 +1 @@ +realtime,1961,1962,1963,1964,1965,1966,1967,1968,1969,1970,1971,1972,1973,1974,1975,1976,1977,1978,1979,1980,1981,1982,1983,1984,1985,1986,1987,1988,1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020,2021,2022,2023,2024,2025,2026,2027,2028,2029,2030,2031,2032,2033,2034,2035,2036,2037,2038,2039,2040,2041,2042,2043,2044,2045,2046,2047,2048,2049,2050,2051,2052,2053,2054,2055,2056,2057,2058,2059,2060,2061,2062,2063,2064,2065,2066,2067,2068,2069,2070,2071,2072,2073,2074,2075,2076,2077,2078,2079,2080,2081,2082,2083,2084,2085,2086,2087,2088,2089,2090,2091,2092,2093,2094,2095,2096,2097,2098,2099,2100,2101,2102,2103,2104,2105,2106,2107,2108,2109,2110,2111,2112,2113,2114,2115,2116,2117,2118,2119,2120,2121 timestep,-50,-49,-48,-47,-46,-45,-44,-43,-42,-41,-40,-39,-38,-37,-36,-35,-34,-33,-32,-31,-30,-29,-28,-27,-26,-25,-24,-23,-22,-21,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-4,-3,-2,-1,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110 PV_Inv,13864745.33,13344475.51,12843728.64,12361772.12,11897900.85,11451436.2,11021724.97,10608138.52,10210071.75,9826942.306,9458189.661,9103274.332,8761677.08,8432898.148,8116456.532,7811889.28,7518750.809,7236612.26,6965060.862,6703699.338,6452145.316,6210030.772,5977001.494,5752716.56,5536847.84,5329079.521,5129107.637,4936639.629,4751393.917,4573099.487,4401495.495,4236330.883,4077364.018,3924362.329,3777101.976,3635367.518,3498951.597,3367654.636,3241284.549,3119656.456,3002592.416,2889921.163,2781477.861,2677103.857,2576646.451,2479958.675,2386899.075,2297331.505,2211124.927,2128153.221,2048295,1971433.431,1897456.067,1826254.678,1757725.096,1691767.064,1628284.084,1567183.281,1508375.265,1451774,1426977.842,1402605.201,1378648.841,1355101.654,1331956.65,1309206.961,1286845.835,1264866.634,1243262.836,1222028.028,1201155.909,1180640.284,1160475.063,1140654.263,1121172,1102022.492,1083200.056,1064699.105,1046514.149,1028639.789,1011070.723,993801.734,976827.697,960143.576,943744.418,927625.356,911781.605,896208.465,880901.312,865855.604,851066.875,836530.736,822242.873,808199.045,794395.085,780826.895,767490.448,754381.786,741497.019,728832.323,716383.938,704148.17,692121.389,680300.023,668680.565,657259.567,646033.638,634999.447,624153.718,613493.234,603014.83,592715.395,582591.874,572641.262,562860.606,553247.002,543797.597,534509.587,525380.216,516406.773,507586.596,498917.067,490395.612,482019.703,473786.854,465694.621,457740.602,449922.438,442237.807,434684.428,427260.061,419962.501,412789.582,405739.177,398809.191,391997.569,385302.289,378721.364,372252.84,365894.798,359645.351,353502.643,347464.853,341530.187,335696.885,329963.215,324327.476,318787.994,313343.127,307991.257,302730.796,297560.184,292477.885,287482.391,282572.22,277745.914,273002.041,268339.193,263755.986,259251.06,254823.077 PV_OM,31173.146,30912.411,30653.856,30397.464,30143.216,29891.095,29641.083,29393.161,29147.314,28903.523,28661.77,28422.04,28184.315,27948.578,27714.814,27483.004,27253.133,27025.185,26799.143,26574.992,26352.716,26132.299,25913.726,25696.981,25482.048,25268.914,25057.562,24847.978,24640.146,24434.054,24229.684,24027.025,23826.06,23626.776,23429.159,23233.195,23038.87,22846.171,22655.083,22465.593,22277.689,22091.356,21906.581,21723.352,21541.656,21361.479,21182.809,21005.634,20829.941,20655.717,20482.95,20311.628,20141.74,19973.272,19806.213,19640.552,19476.276,19313.375,19151.836,18991.648,18935.396,18879.311,18823.391,18767.638,18712.05,18656.626,18601.367,18546.271,18491.338,18436.568,18381.961,18327.515,18273.23,18219.106,18165.143,18111.339,18057.694,18004.209,17950.882,17897.713,17844.701,17791.846,17739.148,17686.606,17634.22,17581.989,17529.912,17477.99,17426.222,17374.606,17323.144,17271.834,17220.677,17169.67,17118.815,17068.11,17017.556,16967.151,16916.896,16866.789,16816.831,16767.021,16717.359,16667.843,16618.474,16569.252,16520.175,16471.243,16422.457,16373.815,16325.317,16276.962,16228.751,16180.683,16132.757,16084.973,16037.331,15989.829,15942.469,15895.248,15848.168,15801.227,15754.425,15707.761,15661.236,15614.849,15568.599,15522.486,15476.509,15430.669,15384.965,15339.396,15293.962,15248.662,15203.497,15158.465,15113.567,15068.802,15024.169,14979.669,14935.3,14891.063,14846.957,14802.981,14759.136,14715.42,14671.834,14628.378,14585.049,14541.85,14498.778,14455.834,14413.017,14370.326,14327.762,14285.325,14243.013,14200.826,14158.764,14116.827,14075.014 PV_Eff,0.316,0.323,0.33,0.338,0.346,0.354,0.362,0.371,0.379,0.388,0.397,0.407,0.416,0.426,0.436,0.446,0.456,0.467,0.478,0.489,0.501,0.512,0.524,0.536,0.549,0.562,0.575,0.588,0.602,0.616,0.63,0.645,0.66,0.676,0.691,0.707,0.724,0.741,0.758,0.776,0.794,0.813,0.831,0.851,0.871,0.891,0.912,0.933,0.955,0.977,1,1.023,1.047,1.072,1.097,1.122,1.148,1.175,1.203,1.231,1.236,1.241,1.246,1.251,1.256,1.261,1.266,1.271,1.276,1.282,1.287,1.292,1.297,1.302,1.308,1.313,1.318,1.324,1.329,1.334,1.34,1.345,1.351,1.356,1.362,1.367,1.373,1.378,1.384,1.389,1.395,1.401,1.406,1.412,1.418,1.424,1.429,1.435,1.441,1.447,1.453,1.458,1.464,1.47,1.476,1.482,1.488,1.494,1.5,1.506,1.512,1.519,1.525,1.531,1.537,1.543,1.55,1.556,1.562,1.569,1.575,1.581,1.588,1.594,1.601,1.607,1.614,1.62,1.627,1.633,1.64,1.646,1.653,1.66,1.667,1.673,1.68,1.687,1.694,1.701,1.707,1.714,1.721,1.728,1.735,1.742,1.749,1.756,1.764,1.771,1.778,1.785,1.792,1.8,1.807,1.814,1.822,1.829,1.836,1.844,1.851 Wind_Inv,1484743.979,1478792.463,1472864.803,1466960.903,1461080.67,1455224.006,1449390.819,1443581.014,1437794.497,1432031.175,1426290.955,1420573.745,1414879.451,1409207.983,1403559.249,1397933.157,1392329.617,1386748.539,1381189.832,1375653.407,1370139.174,1364647.045,1359176.93,1353728.743,1348302.394,1342897.796,1337514.863,1332153.506,1326813.641,1321495.18,1316198.037,1310922.128,1305667.367,1300433.67,1295220.952,1290029.128,1284858.116,1279707.831,1274578.191,1269469.113,1264380.514,1259312.313,1254264.427,1249236.776,1244229.277,1239241.851,1234274.417,1229326.894,1224399.203,1219491.265,1214603,1209734.329,1204885.174,1200055.457,1195245.099,1190454.023,1185682.152,1180929.409,1176195.717,1171481,1171000.489,1170520.176,1170040.06,1169560.14,1169080.417,1168600.892,1168121.562,1167642.43,1167163.494,1166684.754,1166206.211,1165727.864,1165249.713,1164771.759,1164294,1163816.437,1163339.071,1162861.9,1162384.925,1161908.145,1161431.561,1160955.172,1160478.979,1160002.982,1159527.179,1159051.572,1158576.159,1158100.942,1157625.92,1157151.092,1156676.459,1156202.021,1155727.778,1155253.729,1154779.874,1154306.214,1153832.748,1153359.476,1152886.399,1152413.515,1151940.826,1151468.33,1150996.028,1150523.92,1150052.006,1149580.285,1149108.757,1148637.423,1148166.282,1147695.335,1147224.581,1146754.02,1146283.651,1145813.476,1145343.494,1144873.704,1144404.107,1143934.703,1143465.491,1142996.472,1142527.645,1142059.01,1141590.568,1141122.318,1140654.259,1140186.393,1139718.719,1139251.236,1138783.946,1138316.847,1137849.939,1137383.223,1136916.699,1136450.365,1135984.224,1135518.273,1135052.513,1134586.945,1134121.567,1133656.38,1133191.385,1132726.579,1132261.965,1131797.541,1131333.308,1130869.265,1130405.412,1129941.749,1129478.277,1129014.995,1128551.903,1128089.001,1127626.289,1127163.766,1126701.433,1126239.29,1125777.337,1125315.573,1124853.998,1124392.612,1123931.416 Wind_OM,21166.116,21102.741,21039.555,20976.559,20913.751,20851.131,20788.699,20726.454,20664.395,20602.521,20540.834,20479.33,20418.011,20356.876,20295.924,20235.154,20174.566,20114.159,20053.934,19993.888,19934.023,19874.336,19814.829,19755.5,19696.348,19637.373,19578.575,19519.953,19461.507,19403.235,19345.138,19287.215,19229.466,19171.889,19114.485,19057.252,19000.191,18943.301,18886.581,18830.031,18773.65,18717.438,18661.395,18605.519,18549.81,18494.269,18438.893,18383.684,18328.64,18273.76,18219.045,18164.494,18140.625,18116.787,18092.981,18069.206,18045.462,18021.749,17998.068,17733.923,17999.224,17975.572,17951.951,17928.362,17904.803,17881.275,17857.778,17834.312,17810.877,17787.473,17764.1,17740.757,17717.444,17694.163,17653.069,17647.692,17624.502,17601.342,17578.213,17555.115,17532.047,17509.009,17486.001,17463.024,17440.076,17417.159,17394.272,17371.416,17348.589,17325.792,17303.025,17280.288,17257.581,17234.904,17212.256,17189.638,17167.051,17144.492,17121.964,17099.465,17076.995,17054.555,17032.145,17009.764,16987.412,16965.09,16942.797,16920.533,16898.299,16876.094,16853.918,16831.771,16809.653,16787.565,16765.505,16743.474,16721.473,16699.5,16677.556,16655.641,16633.755,16611.897,16590.068,16568.268,16546.497,16524.754,16503.04,16481.354,16459.697,16438.068,16416.467,16394.895,16373.352,16351.836,16330.349,16308.89,16287.46,16266.057,16244.683,16223.337,16202.019,16180.728,16159.466,16138.232,16117.025,16095.847,16074.696,16053.573,16032.478,16011.411,15990.371,15969.359,15948.375,15927.418,15906.488,15885.586,15864.712,15843.865,15823.046,15802.253,15781.488 Wind_Eff,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 WindOffshore_Inv,12316633.42,11925269.87,11546341.98,11179454.59,10824225.13,10480283.16,10147270.01,9824838.427,9512652.171,9210385.698,8917723.804,8634361.302,8360002.701,8094361.901,7837161.892,7588134.466,7347019.938,7113566.873,6887531.827,6668679.091,6456780.446,6251614.923,6052968.577,5860634.26,5674411.404,5494105.819,5319529.48,5150500.34,4986842.136,4828384.204,4674961.306,4526413.452,4382585.737,4243328.176,4108495.554,3977947.265,3851547.175,3729163.474,3610668.54,3495938.807,3384854.634,3277300.184,3173163.299,3072335.385,2974711.298,2880189.236,2788670.633,2700060.052,2614265.09,2531196.281,2450767,2372893.376,2297494.203,2224490.853,2153807.2,2085369.535,2019106.49,1954948.968,1892830.063,1832685,1807381.515,1782427.39,1757817.802,1733547.992,1709613.271,1686009.011,1662730.649,1639773.688,1617133.688,1594806.273,1572787.129,1551071.997,1529656.682,1508537.044,1487709,1467168.524,1446911.646,1426934.451,1407233.076,1387803.714,1368642.609,1349746.057,1331110.405,1312732.052,1294607.445,1276733.081,1259105.504,1241721.307,1224577.13,1207669.659,1190995.626,1174551.807,1158335.025,1142342.144,1126570.074,1111015.765,1095676.211,1080548.447,1065629.548,1050916.632,1036406.854,1022097.409,1007985.532,994068.494,980343.605,966808.214,953459.702,940295.491,927313.035,914509.824,901883.385,889431.277,877151.092,865040.457,853097.031,841318.505,829702.603,818247.079,806949.718,795808.338,784820.785,773984.935,763298.692,752759.993,742366.799,732117.101,722008.919,712040.298,702209.312,692514.06,682952.669,673523.289,664224.099,655053.301,646009.122,637089.814,628293.653,619618.939,611063.994,602627.166,594306.823,586101.358,578009.183,570028.736,562158.472,554396.872,546742.435,539193.68,531749.15,524407.405,517167.025,510026.612,502984.785,496040.183,489191.464,482437.304,475776.396,469207.455,462729.209,456340.407,450039.814 WindOffshore_OM,235671.987,230245.033,224943.048,219763.156,214702.543,209758.465,204928.236,200209.236,195598.903,191094.735,186694.286,182395.17,178195.051,174091.652,170082.743,166166.15,162339.747,158601.456,154949.25,151381.144,147895.204,144489.536,141162.292,137911.667,134735.896,131633.255,128602.061,125640.667,122747.467,119920.891,117159.404,114461.507,111825.736,109250.661,106734.883,104277.037,101875.79,99529.838,97237.907,94998.754,92811.163,90673.947,88585.946,86546.027,84553.082,82606.029,80703.813,78845.4,77029.782,75255.972,73523.01,71829.953,70175.884,68559.903,66981.135,65438.722,63931.827,62459.632,61021.338,59616.165,59064.341,58517.625,57975.97,57439.328,56907.654,56380.901,55859.024,55341.977,54829.717,54322.198,53819.376,53321.209,52827.654,52338.666,51854.205,51374.228,50898.694,50427.562,49960.79,49498.339,49040.169,48586.24,48136.512,47690.947,47249.507,46812.152,46378.846,45949.55,45524.229,45102.844,44685.359,44271.739,43861.948,43455.95,43053.709,42655.192,42260.364,41869.19,41481.638,41097.672,40717.261,40340.37,39966.969,39597.023,39230.502,38867.374,38507.607,38151.17,37798.032,37448.163,37101.532,36758.11,36417.867,36080.773,35746.8,35415.917,35088.098,34763.313,34441.534,34122.734,33806.884,33493.958,33183.929,32876.769,32572.453,32270.953,31972.244,31676.3,31383.096,31092.605,30804.803,30519.666,30237.167,29957.284,29679.991,29405.265,29133.081,28863.417,28596.25,28331.555,28069.31,27809.493,27552.08,27297.051,27044.382,26794.051,26546.038,26300.321,26056.878,25815.688,25576.731,25339.986,25105.432,24873.049,24642.817,24414.716,24188.727,23964.829,23743.004,23523.233,23305.495 WindOffshore_Eff,0.734,0.739,0.744,0.748,0.753,0.757,0.762,0.767,0.772,0.776,0.781,0.786,0.791,0.796,0.801,0.806,0.811,0.816,0.821,0.826,0.831,0.836,0.841,0.846,0.852,0.857,0.862,0.868,0.873,0.878,0.884,0.889,0.895,0.9,0.906,0.912,0.917,0.923,0.929,0.934,0.94,0.946,0.952,0.958,0.964,0.97,0.976,0.982,0.988,0.994,1,1.006,1.012,1.019,1.025,1.031,1.038,1.044,1.051,1.057,1.063,1.068,1.074,1.079,1.085,1.091,1.096,1.102,1.108,1.114,1.119,1.125,1.131,1.137,1.143,1.149,1.155,1.161,1.167,1.173,1.179,1.185,1.191,1.198,1.204,1.21,1.216,1.223,1.229,1.236,1.242,1.248,1.255,1.261,1.268,1.275,1.281,1.288,1.295,1.301,1.308,1.315,1.322,1.329,1.336,1.343,1.35,1.357,1.364,1.371,1.378,1.385,1.392,1.4,1.407,1.414,1.422,1.429,1.437,1.444,1.452,1.459,1.467,1.474,1.482,1.49,1.498,1.505,1.513,1.521,1.529,1.537,1.545,1.553,1.561,1.569,1.577,1.586,1.594,1.602,1.611,1.619,1.627,1.636,1.644,1.653,1.662,1.67,1.679,1.688,1.696,1.705,1.714,1.723,1.732,1.741,1.75,1.759,1.768,1.778,1.787 Biomass_Inv,2164261.917,2153919.862,2143627.227,2133383.776,2123189.274,2113043.487,2102946.182,2092897.127,2082896.093,2072942.849,2063037.168,2053178.821,2043367.583,2033603.228,2023885.534,2014214.275,2004589.232,1995010.182,1985476.906,1975989.186,1966546.803,1957149.541,1947797.185,1938489.519,1929226.331,1920007.408,1910832.537,1901701.509,1892614.115,1883570.145,1874569.392,1865611.65,1856696.713,1847824.376,1838994.437,1830206.692,1821460.939,1812756.979,1804094.611,1795473.637,1786893.859,1778355.079,1769857.103,1761399.735,1752982.781,1744606.047,1736269.343,1727972.476,1719715.256,1711497.493,1703319,1695179.588,1687079.071,1679017.262,1670993.978,1663009.033,1655062.245,1647153.431,1639282.409,1631449,1624540.035,1617660.328,1610809.756,1603988.195,1597195.523,1590431.616,1583696.354,1576989.615,1570311.278,1563661.223,1557039.33,1550445.479,1543879.553,1537341.432,1530831,1524348.138,1517892.731,1511464.661,1505063.813,1498690.072,1492343.323,1486023.451,1479730.344,1473463.886,1467223.967,1461010.472,1454823.291,1448662.312,1442527.423,1436418.515,1430335.478,1424278.201,1418246.576,1412240.494,1406259.847,1400304.528,1394374.428,1388469.441,1382589.462,1376734.383,1370904.099,1365098.507,1359317.5,1353560.974,1347828.827,1342120.955,1336437.255,1330777.624,1325141.962,1319530.165,1313942.134,1308377.767,1302836.965,1297319.627,1291825.654,1286354.948,1280907.409,1275482.94,1270081.443,1264702.82,1259346.975,1254013.812,1248703.233,1243415.145,1238149.45,1232906.055,1227684.865,1222485.786,1217308.725,1212153.588,1207020.282,1201908.714,1196818.794,1191750.429,1186703.527,1181677.999,1176673.753,1171690.699,1166728.748,1161787.81,1156867.796,1151968.618,1147090.187,1142232.416,1137395.217,1132578.502,1127782.186,1123006.181,1118250.402,1113514.764,1108799.18,1104103.565,1099427.837,1094771.909,1090135.698,1085519.122,1080922.095,1076344.537,1071786.364,1067247.494,1062727.846 Biomass_OM,75749.167,75387.195,75026.953,74668.432,74311.625,73956.522,73603.116,73251.399,72901.363,72553,72206.301,71861.259,71517.865,71176.113,70835.994,70497.5,70160.623,69825.356,69491.692,69159.622,68829.138,68500.234,68172.901,67847.133,67522.922,67200.259,66879.139,66559.553,66241.494,65924.955,65609.929,65296.408,64984.385,64673.853,64364.805,64057.234,63751.133,63446.494,63143.311,62841.577,62541.285,62242.428,61944.999,61648.991,61354.397,61061.212,60769.427,60479.037,60190.034,59902.412,59616.165,59331.286,59047.767,58765.604,58484.789,58205.316,57927.179,57650.37,57374.884,57100.715,56827.856,56556.3,56286.043,56017.077,55749.396,55482.994,55217.865,54954.003,54691.402,54430.056,54169.959,53911.104,53653.487,53397.1,53141.939,52887.997,52635.269,52383.748,52133.429,51884.306,51636.374,51389.627,51144.058,50899.663,50656.436,50414.371,50173.463,49933.706,49695.095,49457.624,49221.288,48986.081,48751.998,48519.034,48287.183,48056.44,47826.799,47598.256,47370.805,47144.44,46919.158,46694.952,46471.817,46249.749,46028.742,45808.791,45589.891,45372.036,45155.223,44939.447,44724.701,44510.981,44298.283,44086.601,43875.93,43666.266,43457.605,43249.94,43043.267,42837.583,42632.881,42429.157,42226.407,42024.625,41823.808,41623.95,41425.048,41227.096,41030.09,40834.025,40638.897,40444.702,40251.434,40059.09,39867.666,39677.156,39487.556,39298.862,39111.07,38924.176,38738.174,38553.061,38368.833,38185.486,38003.014,37821.414,37640.682,37460.814,37281.805,37103.652,36926.35,36749.895,36574.284,36399.511,36225.574,36052.468,35880.189,35708.733,35538.097,35368.276,35199.267 Biomass_Eff,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35 Biogas_Inv,2521166.319,2510004.766,2498892.626,2487829.681,2476815.713,2465850.505,2454933.842,2444065.509,2433245.291,2422472.976,2411748.351,2401071.206,2390441.33,2379858.514,2369322.549,2358833.229,2348390.347,2337993.696,2327643.073,2317338.273,2307079.095,2296865.335,2286696.793,2276573.268,2266494.562,2256460.475,2246470.811,2236525.373,2226623.964,2216766.39,2206952.457,2197181.972,2187454.742,2177770.575,2168129.282,2158530.673,2148974.557,2139460.748,2129989.058,2120559.3,2111171.29,2101824.841,2092519.77,2083255.894,2074033.031,2064850.998,2055709.616,2046608.703,2037548.082,2028527.574,2019547,2010606.185,2001704.952,1992843.126,1984020.532,1975236.997,1966492.348,1957786.413,1949119.021,1940490,1935613.822,1930749.896,1925898.193,1921058.682,1916231.332,1911416.112,1906612.992,1901821.942,1897042.931,1892275.929,1887520.906,1882777.831,1878046.675,1873327.408,1868620,1863924.421,1859240.641,1854568.631,1849908.361,1845259.801,1840622.923,1835997.696,1831384.092,1826782.082,1822191.635,1817612.724,1813045.319,1808489.391,1803944.912,1799411.852,1794890.183,1790379.876,1785880.904,1781393.236,1776916.846,1772451.703,1767997.782,1763555.052,1759123.486,1754703.056,1750293.734,1745895.492,1741508.303,1737132.137,1732766.968,1728412.769,1724069.511,1719737.166,1715415.709,1711105.11,1706805.344,1702516.382,1698238.198,1693970.764,1689714.054,1685468.04,1681232.696,1677007.995,1672793.91,1668590.414,1664397.481,1660215.084,1656043.197,1651881.794,1647730.847,1643590.331,1639460.22,1635340.487,1631231.106,1627132.052,1623043.298,1618964.819,1614896.588,1610838.58,1606790.769,1602753.13,1598725.637,1594708.264,1590700.987,1586703.779,1582716.615,1578739.471,1574772.321,1570815.14,1566867.902,1562930.583,1559003.159,1555085.603,1551177.892,1547280,1543391.903,1539513.576,1535644.995,1531786.135,1527936.972,1524097.481,1520267.639,1516447.42,1512636.801,1508835.758,1505044.266 Biogas_OM,95804.32,95380.181,94957.92,94537.528,94118.997,93702.319,93287.486,92874.489,92463.321,92053.973,91646.437,91240.706,90836.771,90434.624,90034.257,89635.663,89238.833,88843.76,88450.437,88058.854,87669.006,87280.883,86894.478,86509.784,86126.793,85745.498,85365.891,84987.964,84611.711,84237.123,83864.193,83492.915,83123.28,82755.282,82388.913,82024.166,81661.033,81299.508,80939.584,80581.253,80224.509,79869.344,79515.751,79163.724,78813.255,78464.338,78116.965,77771.131,77426.827,77084.048,76742.786,76403.035,76064.788,75728.039,75392.78,75059.006,74726.709,74395.884,74066.523,73738.62,73412.169,73087.163,72763.596,72441.461,72120.753,71801.464,71483.589,71167.122,70852.055,70538.383,70226.1,69915.199,69605.675,69297.521,68990.731,68685.299,68381.22,68078.487,67777.094,67477.035,67178.305,66880.897,66584.806,66290.026,65996.551,65704.375,65413.493,65123.898,64835.586,64548.549,64262.784,63978.284,63695.043,63413.056,63132.318,62852.822,62574.564,62297.538,62021.738,61747.159,61473.796,61201.643,60930.694,60660.946,60392.391,60125.026,59858.844,59593.841,59330.01,59067.348,58805.849,58545.507,58286.318,58028.276,57771.377,57515.615,57260.986,57007.483,56755.103,56503.841,56253.69,56004.647,55756.707,55509.864,55264.114,55019.452,54775.874,54533.373,54291.946,54051.588,53812.294,53574.06,53336.88,53100.75,52865.666,52631.622,52398.615,52166.639,51935.69,51705.763,51476.855,51248.96,51022.073,50796.192,50571.31,50347.424,50124.528,49902.62,49681.694,49461.747,49242.773,49024.768,48807.729,48591.65,48376.528,48162.358,47949.137,47736.859,47525.522,47315.12,47105.649 Biogas_Eff,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 Igcc_Inv,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1714903.352,1704984.408,1695122.835,1685318.302,1675570.477,1665879.033,1656243.645,1646663.987,1637139.737,1627670.576,1618256.184,1608896.244,1599590.442,1590338.464,1581140,1575417.997,1569716.701,1564036.037,1558375.932,1552736.31,1547117.097,1541518.219,1535939.604,1530381.177,1524842.865,1519324.596,1513826.297,1508347.896,1502889.321,1497450.5,1492031.361,1486631.834,1481251.847,1475891.33,1470550.213,1465228.424,1459925.894,1454642.554,1449378.333,1444133.164,1438906.976,1433699.701,1428511.271,1423341.617,1418190.672,1413058.368,1407944.637,1402849.412,1397772.626,1392714.213,1387674.106,1382652.238,1377648.544,1372662.958,1367695.415,1362745.848,1357814.193,1352900.386,1348004.362,1343126.055,1338265.403,1333422.341,1328596.806,1323788.733,1318998.061,1314224.726,1309468.665,1304729.816,1300008.116,1295303.504,1290615.917,1285945.294,1281291.574,1276654.695,1272034.597,1267431.218,1262844.499,1258274.378,1253720.797,1249183.694,1244663.011,1240158.687,1235670.665,1231198.884,1226743.286,1222303.813,1217880.405,1213473.006,1209081.556,1204705.999,1200346.276,1196002.331,1191674.106,1187361.545,1183064.591,1178783.186,1174517.276,1170266.804,1166031.714,1161811.95,1157607.457 Igcc_OM,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60021.617,59674.454,59329.299,58986.141,58644.967,58305.766,57968.528,57633.24,57299.891,56968.47,56638.966,56311.369,55985.665,55661.846,55339.9,55139.63,54940.085,54741.261,54543.158,54345.771,54149.098,53953.138,53757.886,53563.341,53369.5,53176.361,52983.92,52792.176,52601.126,52410.767,52221.098,52032.114,51843.815,51656.197,51469.257,51282.995,51097.406,50912.489,50728.242,50544.661,50361.744,50179.49,49997.894,49816.957,49636.674,49457.043,49278.062,49099.729,48922.042,48744.997,48568.594,48392.828,48217.699,48043.204,47869.34,47696.105,47523.497,47351.514,47180.153,47009.412,46839.289,46669.782,46500.888,46332.606,46164.932,45997.865,45831.403,45665.544,45500.284,45335.623,45171.557,45008.085,44845.205,44682.914,44521.211,44360.093,44199.557,44039.603,43880.228,43721.429,43563.205,43405.554,43248.473,43091.961,42936.015,42780.633,42625.814,42471.555,42317.854,42164.71,42012.12,41860.082,41708.594,41557.654,41407.261,41257.412,41108.105,40959.338,40811.11,40663.418,40516.261 Igcc_Eff,0.383,0.384,0.386,0.388,0.39,0.391,0.393,0.395,0.397,0.399,0.4,0.402,0.404,0.406,0.408,0.41,0.411,0.413,0.415,0.417,0.419,0.421,0.423,0.425,0.427,0.429,0.43,0.432,0.434,0.436,0.438,0.44,0.442,0.444,0.446,0.448,0.45,0.453,0.455,0.457,0.459,0.461,0.463,0.465,0.467,0.469,0.471,0.474,0.476,0.478,0.48,0.482,0.484,0.487,0.489,0.491,0.493,0.495,0.498,0.5,0.501,0.503,0.504,0.505,0.507,0.508,0.509,0.511,0.512,0.513,0.515,0.516,0.517,0.519,0.52,0.522,0.523,0.525,0.527,0.529,0.531,0.532,0.534,0.536,0.538,0.539,0.541,0.543,0.545,0.547,0.549,0.55,0.552,0.554,0.556,0.558,0.56,0.561,0.563,0.565,0.567,0.569,0.571,0.573,0.575,0.577,0.579,0.58,0.582,0.584,0.586,0.588,0.59,0.592,0.594,0.596,0.598,0.6,0.602,0.604,0.606,0.608,0.61,0.612,0.614,0.616,0.618,0.621,0.623,0.625,0.627,0.629,0.631,0.633,0.635,0.637,0.639,0.642,0.644,0.646,0.648,0.65,0.652,0.655,0.657,0.659,0.661,0.663,0.666,0.668,0.67,0.672,0.674,0.677,0.679,0.681,0.684,0.686,0.688,0.69,0.693 IgccCCS_Inv,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2470860.002,2441009.049,2411518.731,2382384.692,2353602.627,2325168.284,2297077.462,2269326.01,2241909.83,2214824.87,2188067.128,2161632.653,2135517.537,2109717.923,2084230,2068456.653,2052802.678,2037267.171,2021849.237,2006547.984,1991362.531,1976292,1961335.522,1946492.235,1931761.28,1917141.809,1902632.977,1888233.947,1873943.888,1859761.976,1845687.391,1831719.323,1817856.964,1804099.514,1790446.181,1776896.175,1763448.715,1750103.024,1736858.333,1723713.878,1710668.898,1697722.643,1684874.364,1672123.32,1659468.776,1646910,1634446.269,1622076.862,1609801.067,1597618.174,1585527.481,1573528.289,1561619.907,1549801.646,1538072.826,1526432.769,1514880.803,1503416.262,1492038.484,1480746.812,1469540.596,1458419.187,1447381.944,1436428.231,1425557.415,1414768.869,1404061.97,1393436.1,1382890.646,1372425,1362038.557,1351730.719,1341500.889,1331348.478,1321272.9,1311273.574,1301349.922,1291501.372,1281727.355,1272027.307,1262400.669,1252846.885,1243365.403,1233955.677,1224617.163,1215349.322,1206151.62,1197023.526,1187964.513,1178974.058,1170051.642,1161196.75,1152408.872,1143687.5,1135032.131,1126442.265,1117917.407,1109457.065,1101060.75,1092727.978,1084458.269 IgccCCS_OM,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,86641.008,85612.962,84597.113,83593.319,82601.434,81621.32,80652.834,79695.841,78750.203,77815.785,76892.455,75980.08,75078.532,74187.681,73307.4,72762.537,72221.723,71684.929,71152.125,70623.281,70098.367,69577.355,69060.216,68546.92,68037.439,67531.745,67029.81,66531.605,66037.103,65546.277,65059.099,64575.542,64095.579,63619.183,63146.328,62676.988,62211.136,61748.746,61289.793,60834.252,60382.096,59933.301,59487.842,59045.694,58606.832,58171.231,57738.869,57309.72,56883.761,56460.967,56041.316,55624.785,55211.349,54800.986,54393.673,53989.387,53588.107,53189.809,52794.471,52402.072,52012.589,51626.001,51242.286,50861.424,50483.392,50108.17,49735.737,49366.072,48999.154,48634.964,48273.481,47914.684,47558.554,47205.071,46854.215,46505.967,46160.308,45817.218,45476.677,45138.668,44803.171,44470.168,44139.64,43811.568,43485.935,43162.722,42841.912,42523.485,42207.426,41893.716,41582.337,41273.273,40966.506,40662.019,40359.795,40059.818,39762.07,39466.535,39173.196,38882.038,38593.044 IgccCCS_Eff,0.295,0.297,0.299,0.3,0.302,0.304,0.305,0.307,0.309,0.311,0.312,0.314,0.316,0.318,0.319,0.321,0.323,0.325,0.326,0.328,0.33,0.332,0.334,0.336,0.338,0.339,0.341,0.343,0.345,0.347,0.349,0.351,0.353,0.355,0.357,0.359,0.361,0.363,0.365,0.367,0.369,0.371,0.373,0.375,0.377,0.379,0.381,0.384,0.386,0.388,0.39,0.392,0.394,0.397,0.399,0.401,0.403,0.405,0.408,0.41,0.413,0.415,0.418,0.42,0.423,0.426,0.428,0.431,0.434,0.436,0.439,0.442,0.444,0.447,0.45,0.453,0.455,0.458,0.461,0.464,0.466,0.469,0.472,0.475,0.478,0.481,0.483,0.486,0.489,0.492,0.495,0.498,0.501,0.504,0.507,0.51,0.513,0.516,0.519,0.522,0.525,0.529,0.532,0.535,0.538,0.541,0.545,0.548,0.551,0.554,0.558,0.561,0.564,0.568,0.571,0.575,0.578,0.582,0.585,0.588,0.592,0.596,0.599,0.603,0.606,0.61,0.614,0.617,0.621,0.625,0.628,0.632,0.636,0.64,0.644,0.647,0.651,0.655,0.659,0.663,0.667,0.671,0.675,0.679,0.683,0.687,0.691,0.695,0.7,0.704,0.708,0.712,0.716,0.721,0.725,0.729,0.734,0.738,0.743,0.747,0.751 CcgtCCS_Inv,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1150227.932,1136331.799,1122603.547,1109041.15,1095642.602,1082405.925,1069329.163,1056410.384,1043647.679,1031039.163,1018582.974,1006277.269,994120.233,982110.068,970245,962902.235,955615.04,948382.994,941205.679,934082.682,927013.592,919998,913035.502,906125.695,899268.182,892462.566,885708.455,879005.458,872353.189,865751.265,859199.303,852696.926,846243.759,839839.429,833483.567,827175.806,820915.781,814703.132,808537.5,802418.529,796345.866,790319.161,784338.066,778402.235,772511.327,766665,760862.918,755104.746,749390.152,743718.805,738090.379,732504.548,726960.991,721459.387,715999.419,710580.772,705203.133,699866.191,694569.639,689313.171,684096.484,678919.277,673781.25,668682.108,663621.555,658599.301,653615.055,648668.529,643759.439,638887.5,634052.432,629253.955,624491.793,619765.671,615075.316,610420.457,605800.826,601216.156,596666.183,592150.643,587669.277,583221.826,578808.033,574427.643,570080.403,565766.064,561484.375,557235.09,553017.963,548832.751,544679.212,540557.108,536466.199,532406.25,528377.027,524378.296,520409.828,516471.392,512562.763,508683.714,504834.022 CcgtCCS_OM,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29101.218,28740.27,28383.798,28031.748,27684.065,27340.693,27001.581,26666.675,26335.923,26009.273,25686.674,25368.077,25053.432,24742.689,24435.8,24245.931,24057.536,23870.606,23685.128,23501.091,23318.485,23137.297,22957.517,22779.134,22602.137,22426.515,22252.258,22079.355,21907.796,21737.569,21568.665,21401.074,21234.784,21069.787,20906.072,20743.629,20582.448,20422.52,20263.834,20106.381,19950.152,19795.137,19641.326,19488.71,19337.28,19187.027,19037.941,18890.014,18743.236,18597.598,18453.092,18309.709,18167.44,18026.277,17886.21,17747.232,17609.333,17472.507,17336.743,17202.034,17068.372,16935.748,16804.155,16673.585,16544.029,16415.479,16287.929,16161.369,16035.793,15911.193,15787.561,15664.889,15543.171,15422.398,15302.564,15183.661,15065.682,14948.62,14832.467,14717.217,14602.862,14489.396,14376.811,14265.101,14154.26,14044.279,13935.153,13826.875,13719.438,13612.836,13507.063,13402.111,13297.975,13194.648,13092.124,12990.396,12889.459,12789.306,12689.931,12591.329,12493.493 CcgtCCS_Eff,0.412,0.414,0.415,0.417,0.419,0.421,0.423,0.424,0.426,0.428,0.43,0.432,0.434,0.435,0.437,0.439,0.441,0.443,0.445,0.447,0.449,0.451,0.452,0.454,0.456,0.458,0.46,0.462,0.464,0.466,0.468,0.47,0.472,0.474,0.476,0.478,0.48,0.482,0.485,0.487,0.489,0.491,0.493,0.495,0.497,0.499,0.501,0.504,0.506,0.508,0.51,0.512,0.514,0.517,0.519,0.521,0.523,0.525,0.528,0.53,0.531,0.533,0.534,0.535,0.537,0.538,0.539,0.541,0.542,0.543,0.545,0.546,0.547,0.549,0.55,0.552,0.553,0.555,0.557,0.559,0.56,0.562,0.564,0.566,0.568,0.569,0.571,0.573,0.575,0.577,0.578,0.58,0.582,0.584,0.586,0.588,0.589,0.591,0.593,0.595,0.597,0.599,0.601,0.603,0.604,0.606,0.608,0.61,0.612,0.614,0.616,0.618,0.62,0.622,0.624,0.626,0.628,0.63,0.632,0.634,0.636,0.638,0.64,0.642,0.644,0.646,0.648,0.65,0.652,0.654,0.656,0.658,0.66,0.662,0.664,0.666,0.668,0.671,0.673,0.675,0.677,0.679,0.681,0.683,0.686,0.688,0.69,0.692,0.694,0.696,0.699,0.701,0.703,0.705,0.707,0.71,0.712,0.714,0.716,0.719,0.721 \ No newline at end of file diff --git a/emlab-generation/src/main/resources/data/multiNodeProduction_DE_solarPV.csv b/emlab-generation/src/main/resources/data/multiNodeProduction_DE_solarPV.csv new file mode 100644 index 00000000..e307ff97 --- /dev/null +++ b/emlab-generation/src/main/resources/data/multiNodeProduction_DE_solarPV.csv @@ -0,0 +1,8761 @@ +hour,de_node_0,de_node_1,de_node_2,de_node_3,de_node_4,de_node_5,de_node_6,de_node_7,de_node_8,de_node_9,de_node_10,de_node_11,de_node_12,de_node_13,de_node_14,de_node_15,de_node_16,de_node_17,de_node_18 +1,2.89587753792506E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6,0.0055685419,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7,0.01113734,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8,0.0167058819,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +9,0.048876006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +10,0.0810461302,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +11,0.1132162544,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +12,0.1128800251,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +13,0.112544052,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +14,0.1122078227,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +15,0.0848651007,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +16,0.0575221225,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +17,0.0301794006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +18,0.0201601768,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +19,0.0101409531,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +20,0.0001217294,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +21,0.000082776,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +22,4.38225715916093E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +23,4.92042909098771E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +24,4.10035757582309E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +25,3.30591329550737E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +26,2.48071633337297E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +27,0.000001653,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +28,8.27759685619287E-007,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +29,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +30,0.0044191604,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +31,0.0088383208,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +32,0.0132577374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +33,0.0601286686,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +34,0.106999856,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +35,0.1538707872,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +36,0.163449735,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +37,0.1730286829,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +38,0.1826076307,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +39,0.1401745678,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +40,0.0977415049,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +41,0.0553081857,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +42,0.0369834314,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +43,0.0186586771,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +44,0.0003339229,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +45,0.000223982,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +46,0.0001142975,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +47,4.56164780310319E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +48,0.000003024,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +49,1.51713230305454E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +50,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +51,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +52,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +53,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +54,0.0074157529,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +55,0.0148312496,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +56,0.0222470026,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +57,0.0727065154,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +58,0.123165772,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +59,0.1736252849,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +60,0.1761482862,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +61,0.1786715437,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +62,0.181194545,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +63,0.1376833443,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +64,0.0941721436,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +65,0.0506609429,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +66,0.0338720288,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +67,0.0170831148,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +68,0.0002942007,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +69,0.0002009175,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +70,0.0001078907,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +71,1.47612872729631E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +72,1.23266999623182E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +73,9.89211265167321E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +74,7.43189810617935E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +75,4.9716835606855E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +76,2.48071633337297E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +77,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +78,0.009173525,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +79,0.0183467937,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +80,0.0275203187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +81,0.0969375785,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +82,0.1663548384,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +83,0.2357720982,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +84,0.2451001555,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +85,0.2544284689,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +86,0.2637567824,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +87,0.2016919763,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +88,0.1396271701,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +89,0.0775623639,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +90,0.0518715735,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +91,0.0261810394,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +92,0.0004905053,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +93,0.0003295662,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +94,0.0001683709,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +95,7.38064363648157E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +96,6.15053636373464E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +97,4.9460563258366E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +98,3.71594905308968E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +99,2.48071633337297E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +100,1.24035816668649E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +101,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +102,0.010967944,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +103,0.0219358879,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +104,0.0329035756,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +105,0.1003101226,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +106,0.1677166697,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +107,0.2351229604,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +108,0.239097232,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +109,0.2430715035,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +110,0.2470457751,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +111,0.1879967819,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +112,0.1289475325,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +113,0.0698985393,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +114,0.0467499706,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +115,0.0236011457,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +116,0.000452577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +117,0.0003075268,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +118,0.0001624767,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +119,1.75802831063415E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +120,1.4069351932043E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +121,1.05327935228956E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +122,7.02186234859705E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +123,4.68978397734766E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +124,2.34232926518894E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +125,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +126,0.0086643118,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +127,0.0173286237,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +128,0.0259929355,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +129,0.0894259797,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +130,0.152859024,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +131,0.2162920682,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +132,0.2152393014,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +133,0.2141862783,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +134,0.2131335115,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +135,0.1608721478,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +136,0.108610784,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +137,0.0563494203,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +138,0.0376566589,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +139,0.0189636412,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +140,0.0002708799,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +141,0.0001837473,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +142,9.68709477288205E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +143,9.84085818197542E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +144,8.20071515164618E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +145,6.58619935616584E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +146,4.9716835606855E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +147,3.30591329550737E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +148,0.000001653,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +149,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +150,0.0083124499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +151,0.0166246435,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +152,0.0249370934,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +153,0.0882043294,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +154,0.1514718218,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +155,0.2147390578,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +156,0.2247193281,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +157,0.2346995985,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +158,0.2446798688,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +159,0.1874427211,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +160,0.1302055735,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +161,0.0729684258,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +162,0.0488106566,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +163,0.0246528874,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +164,0.0004951182,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +165,0.0003352042,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +166,0.0001752903,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +167,1.55813587881277E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +168,0.000012993,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +169,1.04302845835E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +170,7.86756109861056E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +171,0.000005228,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +172,0.000002614,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +173,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +174,0.005011662,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +175,0.0100230678,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +176,0.0150347299,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +177,0.0559129884,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +178,0.096791247,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +179,0.1376695056,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +180,0.1375969805,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +181,0.1375241992,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +182,0.1374516741,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +183,0.1039222814,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +184,0.070393145,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +185,0.0368637522,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +186,0.0246815899,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +187,0.0124994275,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +188,0.0003172652,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +189,0.0002160376,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +190,0.0001150663,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +191,1.39412157577985E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +192,1.1634764621398E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +193,9.32831348499754E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +194,7.02186234859705E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +195,4.68978397734766E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +196,2.34232926518894E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +197,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +198,0.0031516373,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +199,0.0063032747,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +200,0.009454912,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +201,0.0335414375,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +202,0.057627963,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +203,0.0817144885,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +204,0.0831155294,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +205,0.0845168266,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +206,0.0859178676,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +207,0.0653099829,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +208,0.044701842,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +209,0.0240937011,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +210,0.0161182494,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +211,0.0081427976,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +212,0.0001676021,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +213,0.0001158351,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +214,6.40680871222358E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +215,1.23010727274693E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +216,1.02765211744066E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +217,8.22634238649508E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +218,6.20179083343243E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +219,0.000004126,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +220,2.06811785230577E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +221,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +222,0.0028120765,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +223,0.005624153,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +224,0.0084364857,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +225,0.0315965867,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +226,0.0547566876,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +227,0.0779170448,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +228,0.0869731971,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +229,0.0960296056,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +230,0.1050857579,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +231,0.0816706659,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +232,0.058255574,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +233,0.0348402258,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +234,0.0233248841,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +235,0.0118092861,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +236,0.0002939444,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +237,0.0001968172,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +238,9.96899435621989E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +239,2.48071633337297E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +240,0.000001653,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +241,8.27759685619287E-007,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +242,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +243,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +244,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +245,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +246,0.0042036353,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +247,0.0084072707,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +248,0.0126106497,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +249,0.0442759174,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +250,0.075941185,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +251,0.1076064527,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +252,0.1125909499,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +253,0.1175751908,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +254,0.1225594317,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +255,0.0938879376,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +256,0.0652161872,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +257,0.0365446932,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +258,0.0244440254,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +259,0.0123436139,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +260,0.0002432025,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +261,0.0001655519,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +262,8.76451431832186E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +263,9.84085818197542E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +264,8.20071515164618E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +265,6.58619935616584E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +266,4.9716835606855E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +267,3.30591329550737E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +268,0.000001653,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +269,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +270,0.0083780556,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +271,0.0167563675,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +272,0.0251344231,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +273,0.0964398976,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +274,0.1677456284,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +275,0.2390511029,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +276,0.2544533274,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +277,0.2698552955,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +278,0.2852572636,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +279,0.2194962414,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +280,0.1537352191,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +281,0.0879744532,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +282,0.0589318767,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +283,0.0298893003,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +284,0.0008467238,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +285,0.000570206,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +286,0.0002936881,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +287,1.7221501818457E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +288,1.43768787502297E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +289,1.15322556820024E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +290,8.68763261377518E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +291,5.79175507585012E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +292,2.89587753792506E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +293,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +294,0.0077896543,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +295,0.0155793086,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +296,0.0233687066,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +297,0.0803265175,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +298,0.1372843283,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +299,0.1942421391,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +300,0.1965360329,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +301,0.1988299267,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +302,0.2011235642,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +303,0.1527214057,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +304,0.1043192473,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +305,0.0559170888,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +306,0.0374275514,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +307,0.0189377577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +308,0.0004482203,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +309,0.0003034265,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +310,0.0001586326,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +311,1.39412157577985E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +312,1.1634764621398E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +313,9.32831348499754E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +314,7.02186234859705E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +315,4.68978397734766E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +316,2.34232926518894E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +317,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +318,0.009320369,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +319,0.0186404818,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +320,0.0279608509,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +321,0.0961544102,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +322,0.1643479696,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +323,0.232541529,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +324,0.2482797265,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +325,0.2640181802,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +326,0.2797563777,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +327,0.2156395988,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +328,0.15152282,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +329,0.0874060411,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +330,0.0585861653,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +331,0.0297662895,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +332,0.0009464138,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +333,0.0006350429,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +334,0.000323672,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +335,1.24804633714115E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +336,0.000009969,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +337,7.45752534102825E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +338,4.9716835606855E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +339,3.30591329550737E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +340,0.000001653,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +341,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +342,0.0133822858,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +343,0.0267643153,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +344,0.040146601,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +345,0.1211196936,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +346,0.2020927862,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +347,0.2830661351,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +348,0.2858026112,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +349,0.2885388311,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +350,0.2912753072,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +351,0.2214162338,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +352,0.1515569042,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +353,0.0816975745,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +354,0.054741055,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +355,0.0277842792,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +356,0.0008275034,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +357,0.0005548296,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +358,0.0002818996,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +359,9.0207866668108E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +360,7.53440704557493E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +361,0.000006048,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +362,4.56164780310319E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +363,0.000003024,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +364,1.51713230305454E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +365,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +366,0.0138850921,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +367,0.0277701842,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +368,0.0416552763,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +369,0.1293193837,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +370,0.2169837473,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +371,0.3046478546,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +372,0.313172498,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +373,0.3216971414,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +374,0.3302220411,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +375,0.2523477937,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +376,0.1744735464,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +377,0.096599299,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +378,0.0647682232,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +379,0.0329371473,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +380,0.0011063277,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +381,0.0007419084,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +382,0.0003774892,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +383,1.31211442426339E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +384,1.09428292804779E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +385,8.79014155317076E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +386,6.61182659101474E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +387,4.40788439400982E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +388,2.2065049204898E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +389,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +390,0.003308476,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +391,0.006616952,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +392,0.0099254281,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +393,0.0262996935,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +394,0.0426739589,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +395,0.0590482244,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +396,0.0582043195,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +397,0.0573604147,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +398,0.0565162536,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +399,0.0427446901,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +400,0.0289733829,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +401,0.0152018194,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +402,0.0102091215,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +403,0.0052164237,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +404,0.000223982,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +405,0.0001532509,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +406,0.000082776,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +407,1.23010727274693E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +408,1.02765211744066E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +409,8.22634238649508E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +410,6.20179083343243E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +411,0.000004126,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +412,2.06811785230577E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +413,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +414,0.0054393806,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +415,0.0108787612,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +416,0.0163181418,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +417,0.0597957708,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +418,0.1032731435,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +419,0.1467507725,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +420,0.1626924503,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +421,0.178634128,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +422,0.1945758057,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +423,0.1512668039,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +424,0.1079578021,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +425,0.0646488003,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +426,0.0433963907,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +427,0.0221439811,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +428,0.0008915715,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +429,0.000596602,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +430,0.0003016326,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +431,6.61182659101474E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +432,4.40788439400982E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +433,2.2065049204898E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +434,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +435,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +436,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +437,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +438,0.0070154555,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +439,0.0140309111,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +440,0.0210463666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +441,0.0622216449,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +442,0.1033966668,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +443,0.144571945,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +444,0.1524569327,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +445,0.1603421766,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +446,0.1682274204,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +447,0.1297276255,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +448,0.0912275743,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +449,0.0527277794,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +450,0.0354798816,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +451,0.01823224,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +452,0.0009843421,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +453,0.0006599013,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +454,0.0003352042,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +455,1.066092969714E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +456,8.89265049256633E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +457,7.12437128799262E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +458,5.38171931826781E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +459,3.58781287884521E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +460,1.79134371593771E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +461,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +462,0.0102162972,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +463,0.0204323381,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +464,0.0306486352,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +465,0.0942631203,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +466,0.1578778616,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +467,0.2214923467,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +468,0.2364581393,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +469,0.2514239319,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +470,0.2663894683,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +471,0.2059443033,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +472,0.1454991384,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +473,0.0850537172,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +474,0.0572238215,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +475,0.0293936696,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +476,0.0015637739,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +477,0.0010437973,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +478,0.000524077,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +479,4.10035757582309E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +480,0.000003434,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +481,2.74211412883169E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +482,2.06811785230577E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +483,1.37874523487051E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +484,6.89372617435257E-007,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +485,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +486,0.0095597274,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +487,0.0191194548,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +488,0.0286794385,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +489,0.0926099074,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +490,0.1565403763,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +491,0.2204711014,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +492,0.2269824692,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +493,0.2334938371,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +494,0.2400054612,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +495,0.1835701897,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +496,0.1271349182,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +497,0.0706996467,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +498,0.0474775278,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +499,0.0242556652,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +500,0.0010335464,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +501,0.0006891163,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +502,0.00034443,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +503,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +504,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +505,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +506,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +507,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +508,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +509,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +510,0.0124363845,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +511,0.0248727691,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +512,0.0373094099,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +513,0.1236675533,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +514,0.210025953,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +515,0.2963840965,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +516,0.309896056,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +517,0.3234080156,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +518,0.3369199752,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +519,0.2590008802,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +520,0.1810820414,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +521,0.1031632027,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +522,0.0694200788,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +523,0.0356766987,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +524,0.0019335749,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +525,0.0012890499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +526,0.000644525,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +527,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +528,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +529,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +530,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +531,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +532,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +533,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +534,0.0176125734,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +535,0.0352251468,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +536,0.052837464,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +537,0.1482563726,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +538,0.2436750249,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +539,0.3390939335,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +540,0.3540394806,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +541,0.368985284,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +542,0.3839308311,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +543,0.2956972866,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +544,0.2074637421,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +545,0.1192301976,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +546,0.0803375372,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +547,0.041445133,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +548,0.0025524726,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +549,0.0017047237,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +550,0.0008567185,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +551,9.0207866668108E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +552,7.53440704557493E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +553,0.000006048,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +554,4.56164780310319E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +555,0.000003024,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +556,1.51713230305454E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +557,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +558,0.0095323063,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +559,0.0190646125,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +560,0.0285969188,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +561,0.0817636928,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +562,0.1349304667,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +563,0.188097497,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +564,0.1895928461,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +565,0.1910881953,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +566,0.1925835444,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +567,0.1468232976,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +568,0.1010633071,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +569,0.0553030603,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +570,0.0372632808,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +571,0.0192237577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +572,0.0011842345,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +573,0.0007936755,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +574,0.0004028601,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +575,1.23010727274693E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +576,1.02765211744066E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +577,8.22634238649508E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +578,6.20179083343243E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +579,0.000004126,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +580,2.06811785230577E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +581,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +582,0.0081184517,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +583,0.0162369035,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +584,0.0243553552,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +585,0.0784019121,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +586,0.1324484691,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +587,0.186495026,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +588,0.2059555793,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +589,0.2254158764,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +590,0.2448764297,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +591,0.1905015879,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +592,0.1361267461,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +593,0.0817519043,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +594,0.0549304403,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +595,0.0281089763,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +596,0.001287256,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +597,0.0008613314,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +598,0.0004351504,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +599,9.0207866668108E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +600,7.53440704557493E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +601,0.000006048,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +602,4.56164780310319E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +603,0.000003024,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +604,1.51713230305454E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +605,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +606,0.0121731928,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +607,0.0243463857,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +608,0.0365198347,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +609,0.1174178395,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +610,0.1983158443,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +611,0.2792141054,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +612,0.2973748454,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +613,0.3155355853,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +614,0.3336960691,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +615,0.2580936761,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +616,0.1824910268,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +617,0.1068883776,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +618,0.0720855675,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +619,0.0372827575,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +620,0.0024799475,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +621,0.001657057,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +622,0.0008341665,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +623,0.000011481,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +624,9.58458583348648E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +625,7.6881704546683E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +626,5.79175507585012E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +627,3.86971246218304E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +628,1.92973078412174E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +629,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +630,0.0162061508,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +631,0.0324123015,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +632,0.0486187086,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +633,0.124535804,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +634,0.2004531557,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +635,0.2763705074,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +636,0.2832980615,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +637,0.2902253594,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +638,0.2971529135,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +639,0.2286003166,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +640,0.1600477196,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +641,0.0914951227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +642,0.0619520463,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +643,0.03240897,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +644,0.0028658937,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +645,0.0019107666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +646,0.0009553833,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +647,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +648,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +649,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +650,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +651,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +652,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +653,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +654,0.0080451578,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +655,0.0160900594,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +656,0.0241352172,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +657,0.0784242078,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +658,0.1327134547,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +659,0.1870024452,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +660,0.2071100862,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +661,0.2272177273,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +662,0.2473253683,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +663,0.1931276106,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +664,0.138929853,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +665,0.0847320954,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +666,0.0572371477,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +667,0.0297419437,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +668,0.002246996,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +669,0.0014979119,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +670,0.0007490841,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +671,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +672,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +673,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +674,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +675,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +676,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +677,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +678,0.0051126334,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +679,0.0102252667,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +680,0.0153379001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +681,0.0433694821,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +682,0.0714008078,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +683,0.0994323899,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +684,0.0976087558,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +685,0.0957853781,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +686,0.093961744,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +687,0.0712121914,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +688,0.0484626387,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +689,0.0257130861,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +690,0.0174190878,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +691,0.0091250895,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +692,0.0008310912,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +693,0.0005540608,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +694,0.0002770304,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +695,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +696,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +697,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +698,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +699,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +700,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +701,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +702,0.0086960896,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +703,0.0173921792,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +704,0.0260885251,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +705,0.0986043739,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +706,0.171120479,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +707,0.2436363278,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +708,0.2657951727,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +709,0.2879537613,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +710,0.3101126062,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +711,0.2413875379,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +712,0.172662726,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +713,0.1039376577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +714,0.0703254891,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +715,0.0367133204,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +716,0.0031011517,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +717,0.002067349,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +718,0.0010338027,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +719,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +720,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +721,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +722,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +723,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +724,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +725,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +726,0.0144376153,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +727,0.0288752306,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +728,0.0433125896,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +729,0.1250521928,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +730,0.2067915397,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +731,0.2885308866,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +732,0.3000962014,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +733,0.31166126,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +734,0.3232265748,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +735,0.2494578105,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +736,0.1756890461,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +737,0.1019202818,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +738,0.0690784678,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +739,0.0362363975,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +740,0.0033943273,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +741,0.0022628848,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +742,0.0011314424,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +743,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +744,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +745,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +746,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +747,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +748,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +749,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +750,0.0149911636,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +751,0.0299820709,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +752,0.0449732344,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +753,0.121760887,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +754,0.1985485396,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +755,0.2753361922,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +756,0.2867987418,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +757,0.2982612914,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +758,0.309723841,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +759,0.2389808843,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +760,0.1682379276,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +761,0.0974949709,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +762,0.0659288806,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +763,0.0343627904,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +764,0.0027967001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +765,0.0018643813,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +766,0.0009323188,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +767,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +768,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +769,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +770,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +771,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +772,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +773,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +774,0.0126783056,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +775,0.025356355,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +776,0.0380346606,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +777,0.1068478865,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +778,0.1756611125,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +779,0.2444743384,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +780,0.2415120863,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +781,0.238549578,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +782,0.2355870696,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +783,0.1786669308,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +784,0.1217467921,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +785,0.0648266533,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +786,0.0437749049,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +787,0.0227229003,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +788,0.001671152,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +789,0.0011142722,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +790,0.0005571361,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +791,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +792,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +793,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +794,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +795,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +796,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +797,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +798,0.0127413486,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +799,0.0254826972,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +800,0.0382240459,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +801,0.1047205698,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +802,0.1712173499,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +803,0.2377138738,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +804,0.245605012,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +805,0.2534961501,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +806,0.261387032,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +807,0.2018577845,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +808,0.1423282806,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +809,0.0827990331,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +810,0.0562963719,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +811,0.029793967,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +812,0.003291562,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +813,0.0021942038,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +814,0.0010971019,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +815,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +816,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +817,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +818,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +819,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +820,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +821,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +822,0.0144340275,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +823,0.0288683112,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +824,0.0433023387,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +825,0.1127049911,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +826,0.1821076434,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +827,0.2515102957,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +828,0.2787663976,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +829,0.3060227558,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +830,0.3332791139,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +831,0.2624989977,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +832,0.1917188815,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +833,0.1209387653,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +834,0.0825184149,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +835,0.0440980644,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +836,0.0056777139,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +837,0.0037887304,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +838,0.0018997469,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +839,1.066092969714E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +840,8.89265049256633E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +841,7.12437128799262E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +842,5.38171931826781E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +843,3.58781287884521E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +844,1.79134371593771E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +845,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +846,0.0165313604,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +847,0.033062977,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +848,0.0495943374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +849,0.1181479595,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +850,0.1867018378,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +851,0.2552554598,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +852,0.2651091316,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +853,0.2749628034,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +854,0.2848164752,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +855,0.2202048344,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +856,0.1555931937,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +857,0.0909812966,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +858,0.0616450321,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +859,0.0323085112,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +860,0.0029722467,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +861,0.0019814978,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +862,0.0009907489,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +863,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +864,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +865,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +866,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +867,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +868,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +869,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +870,0.0101796502,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +871,0.0203595567,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +872,0.030539207,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +873,0.0856236669,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +874,0.1407083831,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +875,0.1957928431,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +876,0.2057110955,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +877,0.2156296042,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +878,0.2255478566,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +879,0.1748999836,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +880,0.1242518543,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +881,0.0736039812,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +882,0.0500325631,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +883,0.0264608888,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +884,0.0028894707,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +885,0.0019302433,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +886,0.0009712722,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +887,1.23010727274693E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +888,1.02765211744066E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +889,8.22634238649508E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +890,6.20179083343243E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +891,0.000004126,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +892,2.06811785230577E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +893,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +894,0.0180566934,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +895,0.0361133868,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +896,0.0541700802,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +897,0.152575843,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +898,0.2509816059,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +899,0.3493873687,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +900,0.3816958799,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +901,0.4140041349,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +902,0.4463126461,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +903,0.3511238701,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +904,0.2559353504,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +905,0.1607468306,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +906,0.1101163841,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +907,0.0594859375,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +908,0.008855491,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +909,0.0059037461,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +910,0.0029517449,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +911,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +912,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +913,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +914,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +915,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +916,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +917,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +918,0.0282043096,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +919,0.0564088754,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +920,0.084613185,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +921,0.2054973644,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +922,0.3263812874,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +923,0.4472654667,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +924,0.4776050375,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +925,0.5079448646,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +926,0.5382846917,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +927,0.422803246,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +928,0.3073220566,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +929,0.1918406109,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +930,0.1318036878,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +931,0.0717665085,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +932,0.0117295854,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +933,0.0078239948,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +934,0.0039186605,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +935,1.31211442426339E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +936,1.09428292804779E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +937,8.79014155317076E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +938,6.61182659101474E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +939,4.40788439400982E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +940,2.2065049204898E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +941,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +942,0.0334230397,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +943,0.0668460794,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +944,0.1002691191,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +945,0.2250827223,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +946,0.3498963256,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +947,0.4747099288,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +948,0.4909445258,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +949,0.5071793791,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +950,0.5234139761,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +951,0.4065668551,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +952,0.2897194778,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +953,0.1728723568,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +954,0.1180664649,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +955,0.063260573,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +956,0.008454681,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +957,0.0056426046,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +958,0.0028302718,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +959,1.80415733336216E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +960,1.5043186856301E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +961,1.20704276138292E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +962,9.09766837135748E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +963,6.07365465918796E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +964,0.000003024,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +965,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +966,0.0128310439,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +967,0.0256620879,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +968,0.0384931318,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +969,0.1104759342,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +970,0.1824587365,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +971,0.2544415388,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +972,0.2719997825,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +973,0.2895582825,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +974,0.3071165262,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +975,0.2398824504,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +976,0.172648631,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +977,0.1054145553,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +978,0.0720071482,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +979,0.0385997411,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +980,0.0051925903,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +981,0.003465571,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +982,0.0017385516,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +983,0.000011481,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +984,9.58458583348648E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +985,7.6881704546683E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +986,5.79175507585012E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +987,3.86971246218304E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +988,1.92973078412174E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +989,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +990,0.0088226881,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +991,0.0176456326,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +992,0.0264683207,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +993,0.0812514044,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +994,0.1360342318,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +995,0.1908173154,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +996,0.210627168,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +997,0.2304372768,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +998,0.2502471293,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +999,0.1964535132,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +1000,0.1426598971,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +1001,0.0888662809,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1002,0.0605533119,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1003,0.0322403428,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1004,0.00392763,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1005,0.0026183346,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1006,0.0013092954,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1007,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1008,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1009,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1010,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1011,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1012,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1013,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1014,0.0122946659,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1015,0.0245890756,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1016,0.0368837415,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1017,0.1002383664,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1018,0.163592735,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +1019,0.2269473599,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1020,0.2491205561,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1021,0.2712937522,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1022,0.2934669483,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1023,0.2314026547,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1024,0.1693381048,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +1025,0.1072738112,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1026,0.0735752787,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1027,0.0398770025,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1028,0.00617847,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1029,0.0041190655,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1030,0.0020594046,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1031,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1032,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1033,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1034,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1035,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1036,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1037,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1038,0.0166446328,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1039,0.0332895218,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1040,0.0499341546,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1041,0.1319592451,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +1042,0.2139843357,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1043,0.2960094263,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1044,0.3296390215,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1045,0.3632683604,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +1046,0.3968979556,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +1047,0.3147911142,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1048,0.2326840164,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1049,0.150577175,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +1050,0.103625518,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1051,0.0566738611,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1052,0.0097224604,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1053,0.0064816402,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1054,0.0032408201,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1055,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1056,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1057,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1058,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1059,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1060,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1061,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1062,0.0259378369,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1063,0.0518756739,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1064,0.0778135108,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1065,0.1843531017,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +1066,0.2908929489,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1067,0.3974325398,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +1068,0.4274012845,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1069,0.4573702854,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1070,0.4873390301,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1071,0.3837081304,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +1072,0.2800772307,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1073,0.1764463309,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +1074,0.1212880645,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +1075,0.0661297982,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1076,0.0109715318,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1077,0.0073142691,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1078,0.0036572627,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1079,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1080,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1081,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1082,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1083,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1084,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1085,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1086,0.0360464997,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1087,0.0720927432,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1088,0.1081392429,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1089,0.2438777364,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1090,0.3796162298,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +1091,0.5153547233,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1092,0.5353706188,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1093,0.5553865143,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1094,0.5754024098,0.3,0.3,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1095,0.4503384285,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1096,0.3252747034,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1097,0.2002109784,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +1098,0.1380487887,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +1099,0.075886599,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1100,0.0137241531,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1101,0.0091522544,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1102,0.0045800994,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1103,8.20071515164618E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1104,6.84247170465479E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1105,5.48422825766339E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1106,0.000004126,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1107,2.76774136368059E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1108,1.37874523487051E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1109,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1110,0.0468376158,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1111,0.0936754878,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1112,0.1405131036,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +1113,0.293416719,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1114,0.4463205906,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1115,0.599224206,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +1116,0.6249267849,0.3,0.3,0.3,0.3,0.2,0.2,0.1,,,,,,,,,,, +1117,0.6506296201,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +1118,0.676332199,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +1119,0.5328968218,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1120,0.3894617009,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +1121,0.2460263237,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1122,0.1706248483,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +1123,0.0952231165,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1124,0.0198216411,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1125,0.0132210905,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1126,0.0066207961,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1127,2.05017878791155E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1128,0.000017119,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1129,1.37361978790074E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1130,1.03277756441044E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1131,6.89372617435257E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1132,0.000003434,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1133,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1134,0.0409205435,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1135,0.081841087,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1136,0.1227616306,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +1137,0.2563845958,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1138,0.390007561,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +1139,0.52363027,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1140,0.5419114579,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1141,0.5601926459,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1142,0.5784738339,0.3,0.3,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1143,0.4510836685,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1144,0.323693503,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1145,0.1963033376,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +1146,0.1345645098,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +1147,0.0728254258,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1148,0.0110863418,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1149,0.0073908945,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1150,0.0036954473,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1151,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1152,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1153,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1154,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1155,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1156,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1157,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1158,0.0124966085,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1159,0.0249932171,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1160,0.0374900819,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1161,0.0863140646,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1162,0.1351377911,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +1163,0.1839617738,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +1164,0.217490654,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1165,0.2510192779,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1166,0.2845479018,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1167,0.2318754772,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1168,0.1792030526,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +1169,0.1265303717,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +1170,0.0885551663,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1171,0.0505799609,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1172,0.0126047555,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1173,0.0084031703,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1174,0.0042015852,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1175,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1176,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1177,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1178,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1179,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1180,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1181,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1182,0.0243925147,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1183,0.0487850293,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1184,0.0731778003,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1185,0.1454450649,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +1186,0.2177123296,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1187,0.2899798505,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1188,0.2968100211,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1189,0.303640448,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1190,0.3104706187,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1191,0.2416094698,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1192,0.1727480647,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +1193,0.1038866595,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1194,0.071219367,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1195,0.0385518182,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1196,0.0058845257,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1197,0.0039230171,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1198,0.0019615086,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1199,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1200,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1201,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1202,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1203,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1204,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1205,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1206,0.0392583611,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1207,0.0785164659,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1208,0.1177748269,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +1209,0.2436545231,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1210,0.3695342194,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +1211,0.4954139156,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1212,0.5219734692,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1213,0.5485330229,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1214,0.5750923203,0.3,0.3,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1215,0.4544710764,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1216,0.3338498325,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1217,0.2132283323,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1218,0.1478809336,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +1219,0.0825332786,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1220,0.0171856237,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1221,0.0114571679,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1222,0.0057284558,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1223,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1224,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1225,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1226,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1227,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1228,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1229,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1230,0.033211615,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1231,0.06642323,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1232,0.099634845,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1233,0.2159750593,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1234,0.3323150174,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1235,0.4486552317,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1236,0.4839603355,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1237,0.5192656956,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1238,0.5545707994,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1239,0.4420992725,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1240,0.3296277455,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1241,0.2171562186,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1242,0.1512911497,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +1243,0.0854263372,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1244,0.0195615246,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1245,0.013040931,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1246,0.0065205936,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1247,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1248,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1249,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1250,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1251,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1252,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1253,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1254,0.0178849909,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1255,0.0357697256,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1256,0.0536547165,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1257,0.1272374271,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +1258,0.2008201377,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +1259,0.2744028483,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1260,0.315807234,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1261,0.3572116198,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +1262,0.3986162617,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1263,0.3216435805,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1264,0.2446711555,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1265,0.1676987306,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +1266,0.1167681891,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +1267,0.065837904,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1268,0.0149073625,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1269,0.0099382417,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1270,0.0049691208,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1271,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1272,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1273,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1274,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1275,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1276,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1277,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1278,0.0158317369,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1279,0.0316634737,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1280,0.0474954669,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1281,0.125135225,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +1282,0.2027752395,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +1283,0.2804149976,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1284,0.3019710899,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1285,0.323526926,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1286,0.3450830183,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1287,0.2727493791,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1288,0.2004154837,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +1289,0.1280815882,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +1290,0.0886266663,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1291,0.0491717443,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1292,0.0097168224,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1293,0.0064777962,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1294,0.0032390262,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1295,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1296,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1297,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1298,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1299,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1300,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1301,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1302,0.0261587437,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1303,0.0523174874,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1304,0.0784759748,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1305,0.1667448849,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +1306,0.255013795,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1307,0.3432824488,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1308,0.3751483777,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +1309,0.4070140503,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1310,0.4388799792,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1311,0.3511407841,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +1312,0.2634013327,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1313,0.1756621375,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +1314,0.1224125876,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +1315,0.0691630377,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1316,0.0159134878,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1317,0.0106091627,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1318,0.0053045813,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1319,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1320,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1321,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1322,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1323,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1324,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1325,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1326,0.0440934515,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1327,0.0881869029,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1328,0.1322803544,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +1329,0.2557052178,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1330,0.3791300812,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +1331,0.5025549446,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1332,0.5223758168,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1333,0.5421966891,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1334,0.5620178176,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1335,0.4433919102,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1336,0.3247662591,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1337,0.2061403517,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +1338,0.1430653199,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +1339,0.0799900319,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1340,0.0169147438,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1341,0.0112764959,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1342,0.0056382479,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1343,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1344,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1345,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1346,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1347,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1348,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1349,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1350,0.0215317464,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1351,0.0430637492,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1352,0.0645954956,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1353,0.1461669841,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +1354,0.2277382164,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1355,0.3093097049,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1356,0.3311730678,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1357,0.3530364306,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +1358,0.3748997935,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +1359,0.2964199746,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1360,0.2179401557,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1361,0.1394603368,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +1362,0.096463731,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1363,0.0534673814,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1364,0.0104710319,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1365,0.0069806025,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1366,0.0034904294,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1367,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1368,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1369,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1370,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1371,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1372,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1373,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1374,0.050229124,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1375,0.1004579918,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1376,0.1506871158,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +1377,0.2928490757,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1378,0.4350107793,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1379,0.5771727392,0.3,0.3,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1380,0.6034568001,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +1381,0.6297408609,0.3,0.3,0.3,0.3,0.2,0.2,0.1,,,,,,,,,,, +1382,0.6560249218,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +1383,0.5213727668,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1384,0.3867206119,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +1385,0.2520682006,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1386,0.1762279869,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +1387,0.1003877732,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1388,0.0245475594,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1389,0.0163650396,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1390,0.0081825198,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1391,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1392,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1393,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1394,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1395,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1396,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1397,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1398,0.0181417758,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1399,0.0362835516,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1400,0.0544253275,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1401,0.131688109,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +1402,0.2089506343,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +1403,0.2862134158,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1404,0.3324472539,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1405,0.3786808357,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +1406,0.4249146739,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1407,0.3444546385,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1408,0.2639948594,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1409,0.1835348241,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +1410,0.1282466276,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +1411,0.0729581749,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1412,0.0176699784,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1413,0.011780071,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1414,0.0058899074,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1415,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1416,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1417,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1418,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1419,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1420,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1421,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1422,0.0358781288,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1423,0.0717560013,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1424,0.1076341301,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1425,0.2335691811,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1426,0.3595039759,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +1427,0.485439027,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1428,0.5329060476,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1429,0.5803730683,0.3,0.3,0.3,0.2,0.2,0.1,0.1,,,,,,,,,,, +1430,0.6278400889,0.3,0.3,0.3,0.3,0.2,0.2,0.1,,,,,,,,,,, +1431,0.5062168201,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1432,0.3845935514,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +1433,0.2629702826,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1434,0.1847239278,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +1435,0.106477573,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1436,0.0282312182,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1437,0.0188208975,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1438,0.0094103206,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1439,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1440,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1441,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1442,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1443,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1444,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1445,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1446,0.0520243118,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1447,0.1040488799,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1448,0.1560731918,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +1449,0.2957913385,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1450,0.435509229,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1451,0.5752271195,0.3,0.3,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1452,0.581745663,0.3,0.3,0.3,0.2,0.2,0.1,0.1,,,,,,,,,,, +1453,0.5882642064,0.3,0.3,0.3,0.2,0.2,0.1,0.1,,,,,,,,,,, +1454,0.5947827499,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +1455,0.4690511791,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1456,0.3433196083,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1457,0.2175880375,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1458,0.1524389936,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +1459,0.0872899497,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1460,0.0221409058,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1461,0.0147605185,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1462,0.0073803874,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1463,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1464,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1465,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1466,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1467,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1468,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1469,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1470,0.0687063604,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1471,0.1374124644,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +1472,0.2061188248,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +1473,0.3629608336,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +1474,0.5198025862,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1475,0.676644595,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +1476,0.7081399541,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +1477,0.7396353131,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +1478,0.7711306722,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +1479,0.616268111,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +1480,0.4614052936,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1481,0.3065427324,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1482,0.2150001993,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1483,0.1234576663,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +1484,0.0319151332,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1485,0.0212767555,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1486,0.0106383777,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1487,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1488,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1489,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1490,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1491,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1492,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1493,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1494,0.0575474935,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1495,0.115094987,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1496,0.1726424805,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +1497,0.3163743647,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1498,0.4601065053,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1499,0.6038386459,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +1500,0.6433912076,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +1501,0.682943513,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +1502,0.7224960747,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +1503,0.5814535125,0.3,0.3,0.3,0.2,0.2,0.1,0.1,,,,,,,,,,, +1504,0.4404109502,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1505,0.299368388,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1506,0.2107437719,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1507,0.1221188995,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +1508,0.0334942834,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1509,0.0223295223,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1510,0.0111647611,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1511,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1512,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1513,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1514,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1515,2.74211412883169E-007,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1516,5.45860102281449E-007,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1517,8.20071515164618E-007,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1518,0.0725130298,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1519,0.1450252908,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +1520,0.2175375518,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1521,0.3889381365,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +1522,0.5603389774,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1523,0.7317398184,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +1524,0.7457884122,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +1525,0.7598370061,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +1526,0.7738858562,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +1527,0.6128094594,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +1528,0.4517330626,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1529,0.2906566658,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1530,0.2036158128,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +1531,0.1165749598,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +1532,0.0295341068,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1533,0.0196894045,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1534,0.0098447023,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1535,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1536,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1537,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1538,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1539,9.84085818197542E-007,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1540,1.96817163639508E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1541,2.94713200762285E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1542,0.0362845767,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1543,0.0725663345,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1544,0.1088478359,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1545,0.2357544155,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1546,0.3626607387,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +1547,0.4895673182,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1548,0.5394368921,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1549,0.5893064661,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +1550,0.63917604,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +1551,0.5165279381,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1552,0.3938800925,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +1553,0.2712319906,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1554,0.1908098835,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +1555,0.1103877765,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1556,0.0299656694,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1557,0.0199771984,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1558,0.0099884711,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1559,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1560,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1561,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1562,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1563,1.19166642047359E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1564,2.38333284094717E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1565,3.56218564399631E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1566,0.0844763356,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1567,0.1689170493,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +1568,0.2533577631,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1569,0.4425513369,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1570,0.6317446544,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +1571,0.8209382282,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +1572,0.8486651024,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +1573,0.8763919766,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +1574,0.9041188508,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +1575,0.7241285296,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +1576,0.5441382084,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1577,0.3641478871,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +1578,0.2569645401,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1579,0.1497811931,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +1580,0.042597846,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1581,0.028398564,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1582,0.014199282,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1583,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1584,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1585,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1586,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1587,0.000019938,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1588,3.99784863642752E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1589,5.99677295464127E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1590,0.0716534924,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1591,0.143247017,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +1592,0.2148405416,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1593,0.3882782352,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +1594,0.5617159288,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1595,0.7351538786,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +1596,0.7756218451,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +1597,0.816090068,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +1598,0.8565580345,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +1599,0.6918179682,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +1600,0.5270776456,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1601,0.362337323,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +1602,0.2566483,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1603,0.1509592771,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +1604,0.0452702541,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1605,0.0301801694,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1606,0.0150900847,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1607,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1608,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1609,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1610,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1611,4.76666568189434E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1612,0.000095077,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1613,0.0001427437,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1614,0.0877268941,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1615,0.1753110444,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +1616,0.2628951948,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1617,0.4513396845,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1618,0.6397841743,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +1619,0.8282284077,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +1620,0.8633730851,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +1621,0.8985175061,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +1622,0.9336621835,0.4,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +1623,0.7512513699,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +1624,0.5688410689,0.3,0.3,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1625,0.3864302553,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +1626,0.2731676156,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1627,0.1599047197,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +1628,0.0466418237,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1629,0.0310945491,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1630,0.0155472746,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1631,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1632,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1633,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1634,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1635,7.73942492436609E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1636,0.0001547885,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1637,0.000232439,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1638,0.0777048513,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1639,0.1551775199,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +1640,0.2326499322,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1641,0.4028037519,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1642,0.5729575716,0.3,0.3,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1643,0.7431113913,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +1644,0.7714630575,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +1645,0.7998149799,0.4,0.4,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +1646,0.8281666461,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +1647,0.6629837412,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +1648,0.4978008362,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1649,0.3326181876,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1650,0.2342044803,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1651,0.135790773,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +1652,0.0373770658,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1653,0.0249181293,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1654,0.0124589365,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1655,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1656,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1657,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1658,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1659,9.27705901529975E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1660,0.0001857975,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1661,0.000278568,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1662,0.0587478732,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1663,0.117216922,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +1664,0.1756862271,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +1665,0.3117924714,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1666,0.447898972,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1667,0.5840054725,0.3,0.3,0.3,0.2,0.2,0.1,0.1,,,,,,,,,,, +1668,0.6024934723,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +1669,0.6209814721,0.3,0.3,0.3,0.3,0.2,0.2,0.1,,,,,,,,,,, +1670,0.6394697281,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +1671,0.5102128749,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1672,0.3809562779,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +1673,0.2516994247,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1674,0.1770803487,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +1675,0.1024612727,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1676,0.0278421968,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1677,0.0185615499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1678,0.0092806468,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1679,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1680,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1681,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1682,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1683,6.53494488646805E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1684,0.0001306989,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1685,0.0001960483,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1686,0.0410394539,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1687,0.0818828594,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1688,0.122726265,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +1689,0.2289147627,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1690,0.3351035168,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1691,0.4412920146,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1692,0.4861996433,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1693,0.5311075283,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1694,0.576015157,0.3,0.3,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1695,0.4717397323,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1696,0.3674643076,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +1697,0.2631888829,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1698,0.1870898341,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +1699,0.1109910416,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1700,0.0348919928,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1701,0.0232613285,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1702,0.0116306643,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1703,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1704,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1705,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1706,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1707,8.40573303043734E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1708,0.0001683709,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1709,0.0002524283,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1710,0.0486881584,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1711,0.0971238885,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1712,0.1455596187,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +1713,0.2794009279,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1714,0.4132422372,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1715,0.5470838027,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1716,0.5784407748,0.3,0.3,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1717,0.6097977468,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +1718,0.6411547188,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +1719,0.5171732319,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1720,0.3931920012,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +1721,0.2692107705,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1722,0.1906263925,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +1723,0.1120420145,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1724,0.0334576365,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1725,0.0223049201,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1726,0.0111524601,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1727,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1728,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1729,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1730,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1731,8.91827772741523E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1732,0.0001783656,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1733,0.0002675483,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1734,0.041092246,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1735,0.0819169436,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1736,0.1227416413,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +1737,0.2323206223,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1738,0.3418996032,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1739,0.4514785841,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1740,0.4951143332,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1741,0.538749826,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1742,0.582385575,0.3,0.3,0.3,0.2,0.2,0.1,0.1,,,,,,,,,,, +1743,0.4733739811,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1744,0.3643623871,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +1745,0.2553507931,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1746,0.1804423857,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +1747,0.1055339782,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1748,0.0306255707,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1749,0.020417218,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1750,0.010208609,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1751,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1752,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1753,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1754,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1755,0.0002037365,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1756,0.000407473,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1757,0.0006114658,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1758,0.0598096095,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1759,0.1190074969,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +1760,0.1782056406,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +1761,0.3154845872,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1762,0.4527632774,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1763,0.590042224,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +1764,0.5899338208,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +1765,0.5898254176,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +1766,0.5897172706,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +1767,0.4673679823,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1768,0.345018694,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1769,0.2226694056,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1770,0.1572735715,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +1771,0.0918777373,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1772,0.0264821594,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1773,0.0176548584,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1774,0.008827301,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1775,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1776,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1777,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1778,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1779,0.0001437688,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1780,0.0002872813,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1781,0.0004310501,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1782,0.0432387832,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1783,0.0860465163,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1784,0.1288542494,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +1785,0.2644523056,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1786,0.4000501055,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1787,0.5356481617,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1788,0.5772491083,0.3,0.3,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1789,0.6188497987,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +1790,0.6604507453,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +1791,0.5352732353,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1792,0.4100959816,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1793,0.2849184716,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1794,0.2019756697,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +1795,0.1190331242,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +1796,0.0360903223,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1797,0.0240603857,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1798,0.0120301929,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1799,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1800,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1801,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1802,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1803,0.0004510393,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1804,0.0009018224,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1805,0.0013528617,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1806,0.0750027157,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1807,0.1486528259,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +1808,0.2223029362,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1809,0.3779343144,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +1810,0.5335656926,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1811,0.6891973271,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +1812,0.7297383313,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +1813,0.7702793355,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +1814,0.8108205959,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +1815,0.6622782234,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +1816,0.5137355946,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1817,0.365193222,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +1818,0.260798887,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1819,0.1564042956,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +1820,0.0520099606,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1821,0.0346733925,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1822,0.0173365681,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1823,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1824,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1825,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1826,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1827,0.0005740501,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1828,0.0011481001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1829,0.0017221502,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1830,0.1094787785,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1831,0.217235663,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1832,0.3249922913,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1833,0.5201482976,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1834,0.7153043038,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +1835,0.9104605664,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +1836,0.9299536663,0.4,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +1837,0.9494467662,0.4,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +1838,0.9689401224,0.5,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +1839,0.7765070098,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +1840,0.5840741535,0.3,0.3,0.3,0.2,0.2,0.1,0.1,,,,,,,,,,, +1841,0.3916412972,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +1842,0.2767208317,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1843,0.1618001099,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +1844,0.0468796444,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1845,0.0312531817,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1846,0.0156264627,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1847,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1848,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1849,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1850,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1851,0.0004715411,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1852,0.000942826,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1853,0.0014143671,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1854,0.0501883767,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1855,0.0989626426,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1856,0.1477366523,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +1857,0.2580690739,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1858,0.3684017518,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +1859,0.4787341735,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1860,0.559949956,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1861,0.6411657385,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +1862,0.7223817773,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +1863,0.6037674021,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +1864,0.485153027,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1865,0.3665386519,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +1866,0.2620277129,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1867,0.1575170302,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +1868,0.0530063475,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1869,0.0353373941,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1870,0.0176686971,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1871,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1872,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1873,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1874,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1875,0.0002306451,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1876,0.0004612902,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1877,0.0006919353,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1878,0.0156879681,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1879,0.0306840008,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1880,0.0456800336,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1881,0.1138682112,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1882,0.1820563889,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +1883,0.2502443103,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1884,0.3170201711,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1885,0.3837960318,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +1886,0.4505718926,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1887,0.377422026,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +1888,0.3042724156,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1889,0.2311228053,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1890,0.1644545789,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +1891,0.0977863526,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1892,0.0311183825,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1893,0.0207455029,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1894,0.0103728796,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1895,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1896,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1897,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1898,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1899,0.0002729301,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1900,0.0005456038,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1901,0.0008185339,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1902,0.0248207458,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1903,0.0488232139,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1904,0.0728256821,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1905,0.1493081143,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +1906,0.2257902903,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1907,0.3022727225,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1908,0.366236763,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +1909,0.4302008036,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1910,0.4941648441,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1911,0.4140702532,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1912,0.3339754059,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1913,0.2538808149,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1914,0.1813975127,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +1915,0.1089142105,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1916,0.0364309082,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1917,0.0242871867,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1918,0.0121437215,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1919,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1920,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1921,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1922,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1923,0.0007321701,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1924,0.0014643402,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1925,0.0021965103,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1926,0.0774334589,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1927,0.1526704075,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +1928,0.2279073561,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1929,0.3899252976,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +1930,0.551943239,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1931,0.7139611805,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +1932,0.7440621617,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +1933,0.7741631429,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +1934,0.8042638679,0.4,0.4,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +1935,0.6542171767,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +1936,0.5041702292,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1937,0.3541232817,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +1938,0.2530615122,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1939,0.1519999991,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +1940,0.0509382296,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1941,0.0339589052,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1942,0.0169793244,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1943,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1944,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1945,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1946,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1947,0.0016124656,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1948,0.0032249312,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1949,0.0048373969,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1950,0.1171461909,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +1951,0.2294547286,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1952,0.3417635226,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1953,0.5327015423,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1954,0.7236393057,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +1955,0.9145770691,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +1956,0.9496645977,0.4,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +1957,0.9847521263,0.5,0.4,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +1958,1.0198396549,0.5,0.5,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +1959,0.8365464956,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +1960,0.6532535926,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +1961,0.4699604334,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1962,0.33763395,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1963,0.2053072103,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +1964,0.0729804706,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1965,0.0486538179,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1966,0.024326909,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1967,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1968,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1969,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1970,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1971,0.001914867,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1972,0.003829734,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1973,0.005744601,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1974,0.1172925224,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +1975,0.2288407,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1976,0.3403886214,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1977,0.5348127139,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1978,0.7292368063,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +1979,0.9236611551,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +1980,0.9542749373,0.5,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +1981,0.9848887195,0.5,0.4,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +1982,1.0155027579,0.5,0.4,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +1983,0.8285374722,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +1984,0.6415721865,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +1985,0.4546069007,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1986,0.3256124704,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1987,0.19661804,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +1988,0.0676236097,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1989,0.0450824065,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1990,0.0225412032,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1991,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1992,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1993,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1994,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1995,0.0024535515,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1996,0.0049071029,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1997,0.0073606544,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1998,0.1258753396,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +1999,0.2443900248,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2000,0.36290471,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +2001,0.5575304888,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2002,0.7521565238,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +2003,0.9467825589,0.4,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +2004,0.968947298,0.5,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +2005,0.9911120372,0.5,0.4,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +2006,1.0132767763,0.5,0.4,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +2007,0.8237515861,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +2008,0.6342266521,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +2009,0.4447017182,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2010,0.3180532049,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2011,0.1914046916,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +2012,0.0647561784,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2013,0.043170871,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2014,0.0215853074,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2015,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2016,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2017,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2018,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2019,0.0018110767,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2020,0.0036221534,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2021,0.0054332301,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2022,0.0819997196,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2023,0.1585662092,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +2024,0.2351326987,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2025,0.355284708,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +2026,0.4754367172,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2027,0.5955884701,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +2028,0.5970958641,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +2029,0.5986032581,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +2030,0.6001109083,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +2031,0.4746827639,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2032,0.3492548759,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +2033,0.2238269878,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2034,0.1564191594,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +2035,0.0890110748,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2036,0.0216029902,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2037,0.0144019934,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2038,0.0072009967,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2039,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2040,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2041,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2042,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2043,0.0013379979,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2044,0.0026759959,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2045,0.0040137375,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2046,0.0814751301,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2047,0.1589365227,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +2048,0.236397659,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2049,0.3832091681,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +2050,0.530020421,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2051,0.6768316738,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +2052,0.7025726936,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +2053,0.7283137133,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +2054,0.7540547331,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +2055,0.6106188434,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +2056,0.4671832099,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2057,0.3237473202,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2058,0.2302097069,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2059,0.1366720936,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +2060,0.0431344803,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2061,0.0287563202,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2062,0.0143781601,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2063,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2064,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2065,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2066,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2067,0.0013948904,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2068,0.0027895245,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2069,0.0041844149,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2070,0.0714179781,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2071,0.138651285,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +2072,0.2058848481,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +2073,0.35251261,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +2074,0.4991401155,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2075,0.6457676211,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +2076,0.6723694597,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +2077,0.6989712982,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +2078,0.7255731368,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +2079,0.5880904538,0.3,0.3,0.3,0.2,0.2,0.1,0.1,,,,,,,,,,, +2080,0.4506077707,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2081,0.3131250876,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2082,0.223089436,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2083,0.1330540406,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +2084,0.043018389,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2085,0.028678926,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2086,0.014339463,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2087,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2088,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2089,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2090,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2091,0.0011475876,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2092,0.0022949189,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2093,0.0034425065,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2094,0.0442615661,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2095,0.0850803695,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2096,0.1258994292,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +2097,0.2084637168,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +2098,0.2910277481,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2099,0.3735917794,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +2100,0.4366678363,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2101,0.4997438932,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2102,0.5628202063,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2103,0.48098732,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2104,0.3991546899,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2105,0.3173218036,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2106,0.2304705922,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2107,0.1436191245,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +2108,0.056767913,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2109,0.0378452753,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2110,0.0189226377,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2111,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2112,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2113,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2114,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2115,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2116,0.0027408328,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2117,0.0054816655,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2118,0.0082224983,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2119,0.1052928259,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2120,0.2023631535,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +2121,0.2994334811,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2122,0.4509765466,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2123,0.6025196121,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +2124,0.7540629338,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +2125,0.7648676323,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +2126,0.7756723308,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +2127,0.7864770293,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +2128,0.6329253011,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +2129,0.479373573,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2130,0.3258221011,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2131,0.2311814917,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2132,0.1365408822,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +2133,0.0419002727,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2134,0.0279334297,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2135,0.013966843,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2136,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2137,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2138,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2139,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2140,0.0034186731,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2141,0.0068373463,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2142,0.0102560194,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2143,0.1240486303,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +2144,0.2378414975,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2145,0.3516341084,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +2146,0.5234280711,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2147,0.6952217775,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +2148,0.867015484,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +2149,0.8783322146,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +2150,0.8896484327,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +2151,0.9009651633,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +2152,0.7380120841,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +2153,0.5750590049,0.3,0.3,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2154,0.4121059256,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2155,0.2972303078,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2156,0.1823549462,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +2157,0.0674793284,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2158,0.0449863043,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2159,0.022493024,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2160,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2161,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2162,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2163,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2164,0.0039258361,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2165,0.0078516722,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2166,0.0117775083,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2167,0.1094039469,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2168,0.2070303855,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +2169,0.3046568242,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2170,0.4523071126,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2171,0.5999574011,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +2172,0.7476074334,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +2173,0.7765633897,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +2174,0.8055190899,0.4,0.4,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +2175,0.83447479,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +2176,0.6853734874,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +2177,0.5362721849,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2178,0.3871708824,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +2179,0.2779747723,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2180,0.1687789185,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +2181,0.0595830648,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2182,0.0397219577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2183,0.019861107,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2184,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2185,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2186,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2187,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2188,0.0064867657,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2189,0.0129737876,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2190,0.0194605533,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2191,0.1633172422,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +2192,0.3071739312,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2193,0.4510303638,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2194,0.637946189,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +2195,0.8248620142,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +2196,1.0117778394,0.5,0.4,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +2197,1.0219759412,0.5,0.5,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +2198,1.0321737868,0.5,0.5,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +2199,1.0423716323,0.5,0.5,0.5,0.4,0.4,0.3,0.2,,,,,,,,,,, +2200,0.8562307747,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +2201,0.6700899171,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +2202,0.4839490595,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2203,0.3493604601,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +2204,0.2147718606,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2205,0.0801835175,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2206,0.0534555929,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2207,0.0267279246,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2208,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2209,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2210,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2211,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2212,0.003968121,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2213,0.0079364984,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2214,0.0119046194,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2215,0.1166395404,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +2216,0.2213744614,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2217,0.3261096387,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2218,0.4798146177,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2219,0.633519853,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +2220,0.7872250883,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +2221,0.7815384048,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +2222,0.7758519777,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +2223,0.7701655506,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +2224,0.61601312,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +2225,0.4618604333,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2226,0.3077080027,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2227,0.2183266144,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2228,0.128945226,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +2229,0.0395635814,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2230,0.0263758064,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2231,0.0131877751,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2232,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2233,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2234,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2235,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2236,0.0027387826,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2237,0.0054775652,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2238,0.0082160915,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2239,0.0935991187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2240,0.1789818895,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +2241,0.2643649167,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2242,0.4038132087,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2243,0.5432617569,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2244,0.6827100489,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +2245,0.7024571147,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +2246,0.7222039243,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +2247,0.7419509901,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +2248,0.6069623495,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +2249,0.4719734527,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2250,0.3369848121,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2251,0.2419810647,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2252,0.1469775736,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +2253,0.0519738262,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2254,0.0346493029,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2255,0.0173245233,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2256,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2257,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2258,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2259,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2260,0.0031508685,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2261,0.006301737,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2262,0.0094526056,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2263,0.101821617,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2264,0.1941903721,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +2265,0.2865591272,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2266,0.442807353,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2267,0.5990553225,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +2268,0.755303292,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +2269,0.7889700467,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +2270,0.8226368014,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +2271,0.8563035561,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +2272,0.710913846,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +2273,0.5655243921,0.3,0.3,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2274,0.4201349383,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2275,0.3043372525,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2276,0.1885395668,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +2277,0.0727421373,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2278,0.0484946728,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2279,0.0242474645,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2280,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2281,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2282,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2283,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2284,0.0082035341,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2285,0.0164073246,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2286,0.0246108587,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2287,0.1768263828,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +2288,0.3290421632,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2289,0.4812576873,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2290,0.6840582977,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +2291,0.8868591644,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +2292,1.0896600312,0.5,0.5,0.5,0.4,0.4,0.3,0.3,,,,,,,,,,, +2293,1.1200029335,0.5,0.5,0.5,0.5,0.4,0.3,0.3,,,,,,,,,,, +2294,1.1503460921,0.5,0.5,0.5,0.5,0.4,0.3,0.3,,,,,,,,,,, +2295,1.1806889944,0.6,0.5,0.5,0.5,0.4,0.3,0.3,,,,,,,,,,, +2296,0.9803721756,0.5,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +2297,0.7800551005,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +2298,0.5797382817,0.3,0.3,0.3,0.2,0.2,0.1,0.1,,,,,,,,,,, +2299,0.4203307304,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2300,0.2609229228,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2301,0.1015153715,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2302,0.0676769143,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2303,0.0338384572,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2304,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2305,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2306,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2307,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2308,0.0099669442,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2309,0.0199338884,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2310,0.0299008325,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2311,0.1922816556,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +2312,0.354662735,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +2313,0.5170435581,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2314,0.7344596368,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +2315,0.9518757155,0.4,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +2316,1.1692917943,0.6,0.5,0.5,0.5,0.4,0.3,0.3,,,,,,,,,,, +2317,1.1942870615,0.6,0.5,0.5,0.5,0.5,0.3,0.3,,,,,,,,,,, +2318,1.2192823287,0.6,0.5,0.5,0.5,0.5,0.3,0.3,,,,,,,,,,, +2319,1.2442773397,0.6,0.6,0.5,0.5,0.5,0.3,0.3,,,,,,,,,,, +2320,1.0296866636,0.5,0.5,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +2321,0.8150959875,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +2322,0.6005053114,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +2323,0.4349659316,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2324,0.2694268081,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2325,0.1038874284,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2326,0.069258371,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2327,0.0346290574,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2328,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2329,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2330,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2331,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2332,0.0086363781,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2333,0.0172725,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2334,0.0259088782,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2335,0.1619082569,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +2336,0.2979073793,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2337,0.433906758,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2338,0.6178767326,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +2339,0.8018467071,0.4,0.4,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +2340,0.9858166816,0.5,0.4,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +2341,0.9825158938,0.5,0.4,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +2342,0.9792153622,0.5,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +2343,0.9759148306,0.5,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +2344,0.796206409,0.4,0.4,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +2345,0.6164979873,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +2346,0.4367895657,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2347,0.3149574349,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2348,0.1931250479,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +2349,0.0712926609,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2350,0.047528526,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2351,0.0237641349,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2352,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2353,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2354,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2355,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2356,0.0089413422,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2357,0.0178829407,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2358,0.026824283,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2359,0.1708390919,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +2360,0.3148539009,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2361,0.4588687099,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2362,0.6525165534,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +2363,0.8461643969,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +2364,1.0398124966,0.5,0.5,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +2365,1.0289260473,0.5,0.5,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +2366,1.0180393416,0.5,0.5,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +2367,1.0071528923,0.5,0.4,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +2368,0.8265757074,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +2369,0.6459985225,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +2370,0.4654210813,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2371,0.3379929875,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2372,0.2105646375,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2373,0.0831365438,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2374,0.0554250459,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2375,0.027713548,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2376,1.98611070078931E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2377,1.32236531820295E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2378,6.61182659101474E-007,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2379,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2380,0.0079649446,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2381,0.0159301455,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2382,0.02389509,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2383,0.1483806647,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +2384,0.2728659831,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2385,0.3973515577,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +2386,0.5890263604,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +2387,0.7807011631,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +2388,0.9723759658,0.5,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +2389,0.9989562775,0.5,0.4,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +2390,1.0255368455,0.5,0.5,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +2391,1.0521171572,0.5,0.5,0.5,0.4,0.4,0.3,0.3,,,,,,,,,,, +2392,0.8728656691,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +2393,0.6936139248,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +2394,0.5143624367,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2395,0.3734469856,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +2396,0.2325317907,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2397,0.0916163395,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2398,0.0610786702,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2399,0.0305412571,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2400,3.56218564399631E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2401,2.37051922352272E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2402,1.18654097350381E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2403,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2404,0.0051943842,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2405,0.0103890247,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2406,0.015583409,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2407,0.1073863147,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2408,0.1991889642,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +2409,0.2909916137,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2410,0.4504158227,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2411,0.6098400317,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +2412,0.7692642407,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +2413,0.8218587585,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +2414,0.8744530201,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +2415,0.9270475379,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +2416,0.7765031657,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +2417,0.6259590499,0.3,0.3,0.3,0.3,0.2,0.2,0.1,,,,,,,,,,, +2418,0.4754146778,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2419,0.3450586724,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2420,0.2147026671,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2421,0.0843466618,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2422,0.0562338414,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2423,0.0281207648,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2424,7.94444280315724E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2425,5.30483761372112E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2426,2.63960518943612E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2427,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2428,0.0062156295,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2429,0.0124315154,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2430,0.0186471449,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2431,0.119564633,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +2432,0.2204818648,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2433,0.3213990967,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2434,0.4849011113,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2435,0.6484033822,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +2436,0.8119053968,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +2437,0.8475792765,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +2438,0.8832531562,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +2439,0.918927036,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +2440,0.7682358198,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +2441,0.6175446036,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +2442,0.4668536437,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2443,0.3398081646,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2444,0.2127629417,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2445,0.0857177189,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2446,0.0571507839,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2447,0.0285838489,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2448,1.68627205305725E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2449,1.12503560986646E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2450,5.61236443190786E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2451,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2452,0.0098762238,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2453,0.0197521913,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2454,0.029628415,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2455,0.1606384274,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +2456,0.2916484397,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2457,0.4226584521,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2458,0.5926697844,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +2459,0.7626808604,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +2460,0.9326921926,0.4,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +2461,0.9616043264,0.5,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +2462,0.9905164602,0.5,0.4,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +2463,1.0194285941,0.5,0.5,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +2464,0.8476266869,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +2465,0.6758247797,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +2466,0.5040228726,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2467,0.3654277112,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +2468,0.2268325499,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2469,0.0882373886,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2470,0.0588370559,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2471,0.0294367233,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2472,3.63906734854299E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2473,2.42177369322051E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2474,1.20960548486781E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2475,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2476,0.0106222326,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2477,0.0212444651,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2478,0.0318666977,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2479,0.1665747201,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +2480,0.3012827424,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2481,0.435991021,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2482,0.5938709329,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +2483,0.751751101,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +2484,0.9096310128,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +2485,0.9139686786,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +2486,0.9183063443,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +2487,0.9226440101,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +2488,0.7659168113,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +2489,0.6091896125,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +2490,0.4524624137,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2491,0.3293517402,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2492,0.2062410667,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +2493,0.0831303932,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2494,0.0554363219,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2495,0.0277422505,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2496,4.81792015159213E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2497,0.000032034,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2498,1.60426490154078E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2499,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2500,0.0093065303,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2501,0.0186130607,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2502,0.0279198473,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2503,0.1554327672,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +2504,0.2829459433,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2505,0.4104591195,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2506,0.5919696483,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +2507,0.7734801771,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +2508,0.9549907059,0.5,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +2509,0.9597355885,0.5,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +2510,0.9644802147,0.5,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +2511,0.9692250973,0.5,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +2512,0.8048151097,0.4,0.4,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +2513,0.6404051222,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +2514,0.4759951346,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2515,0.3475196558,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +2516,0.219044177,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2517,0.0905686981,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2518,0.0604072366,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2519,0.0302460314,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2520,8.45698750013513E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2521,5.63799166675675E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2522,0.00002819,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2523,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2524,0.0122367484,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2525,0.0244732405,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2526,0.0367099888,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2527,0.1778143127,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +2528,0.3189188929,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2529,0.4600232168,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2530,0.671361028,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +2531,0.8826985829,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +2532,1.0940361378,0.5,0.5,0.5,0.4,0.4,0.3,0.3,,,,,,,,,,, +2533,1.115355947,0.5,0.5,0.5,0.5,0.4,0.3,0.3,,,,,,,,,,, +2534,1.1366754999,0.5,0.5,0.5,0.5,0.4,0.3,0.3,,,,,,,,,,, +2535,1.1579950529,0.5,0.5,0.5,0.5,0.4,0.3,0.3,,,,,,,,,,, +2536,0.9639971413,0.5,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +2537,0.7699989735,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +2538,0.5760008057,0.3,0.3,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2539,0.4199886068,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2540,0.2639761516,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2541,0.1079636963,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2542,0.0720138113,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2543,0.03606367,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2544,0.0001135287,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2545,7.58566151527272E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2546,3.79283075763636E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2547,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2548,0.0154255452,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2549,0.0308513467,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2550,0.0462768919,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2551,0.21810417,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2552,0.3899314481,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +2553,0.5617587262,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2554,0.7839222502,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +2555,1.006085518,0.5,0.4,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +2556,1.2282487857,0.6,0.5,0.5,0.5,0.5,0.3,0.3,,,,,,,,,,, +2557,1.2605731858,0.6,0.6,0.5,0.5,0.5,0.3,0.3,,,,,,,,,,, +2558,1.2928978422,0.6,0.6,0.6,0.5,0.5,0.3,0.3,,,,,,,,,,, +2559,1.3252222423,0.6,0.6,0.6,0.5,0.5,0.3,0.3,,,,,,,,,,, +2560,1.1114134532,0.5,0.5,0.5,0.4,0.4,0.3,0.3,,,,,,,,,,, +2561,0.8976049203,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +2562,0.6837963874,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +2563,0.4994555868,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2564,0.3151145299,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2565,0.1307737293,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +2566,0.0872258816,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2567,0.0436782903,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2568,0.0001306989,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2569,8.71325984862407E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2570,4.35662992431204E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2571,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2572,0.0174280573,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2573,0.0348558584,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2574,0.0522839157,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2575,0.225362828,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2576,0.3984417403,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2577,0.5715206525,0.3,0.3,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2578,0.777590273,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +2579,0.9836598936,0.5,0.4,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +2580,1.1897292578,0.6,0.5,0.5,0.5,0.4,0.3,0.3,,,,,,,,,,, +2581,1.2007251354,0.6,0.5,0.5,0.5,0.5,0.3,0.3,,,,,,,,,,, +2582,1.2117207568,0.6,0.5,0.5,0.5,0.5,0.3,0.3,,,,,,,,,,, +2583,1.2227163782,0.6,0.5,0.5,0.5,0.5,0.3,0.3,,,,,,,,,,, +2584,1.0189944687,0.5,0.5,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +2585,0.8152725592,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +2586,0.6115506496,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +2587,0.4460604742,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2588,0.2805702987,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2589,0.1150803795,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2590,0.0767717637,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2591,0.038463148,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2592,0.0001545322,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2593,0.0001030215,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2594,5.15107420462776E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2595,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2596,0.0192870569,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2597,0.0385741139,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2598,0.0578611708,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2599,0.2419736328,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2600,0.4260858385,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2601,0.6101983005,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +2602,0.8287424901,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +2603,1.047286936,0.5,0.5,0.5,0.4,0.4,0.3,0.2,,,,,,,,,,, +2604,1.2658311256,0.6,0.6,0.5,0.5,0.5,0.3,0.3,,,,,,,,,,, +2605,1.2580458279,0.6,0.6,0.5,0.5,0.5,0.3,0.3,,,,,,,,,,, +2606,1.2502605302,0.6,0.6,0.5,0.5,0.5,0.3,0.3,,,,,,,,,,, +2607,1.2424752326,0.6,0.5,0.5,0.5,0.5,0.3,0.3,,,,,,,,,,, +2608,1.03079171,0.5,0.5,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +2609,0.8191081874,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +2610,0.6074244086,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +2611,0.4434431647,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2612,0.2794619208,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2613,0.1154806769,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2614,0.0770490504,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2615,0.0386174239,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2616,0.0001860537,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2617,0.0001240358,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2618,6.20179083343243E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2619,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2620,0.0178532132,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2621,0.03570617,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2622,0.0535593832,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2623,0.2204395799,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2624,0.3873200329,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +2625,0.5542002296,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2626,0.7314225532,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +2627,0.9086451331,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +2628,1.0858674567,0.5,0.5,0.5,0.4,0.4,0.3,0.3,,,,,,,,,,, +2629,1.0769002309,0.5,0.5,0.5,0.4,0.4,0.3,0.3,,,,,,,,,,, +2630,1.0679332614,0.5,0.5,0.5,0.4,0.4,0.3,0.3,,,,,,,,,,, +2631,1.058966292,0.5,0.5,0.5,0.4,0.4,0.3,0.3,,,,,,,,,,, +2632,0.8813044613,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +2633,0.7036428869,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +2634,0.5259810562,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2635,0.3844807915,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +2636,0.2429805269,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2637,0.1014802622,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2638,0.0677158677,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2639,0.0339514733,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2640,0.0001870788,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2641,0.0001248046,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2642,6.22741806828132E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2643,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2644,0.0165098335,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2645,0.033019667,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2646,0.0495295005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2647,0.2147088176,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2648,0.3798883911,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +2649,0.5450677082,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2650,0.7359250021,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +2651,0.926782296,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +2652,1.1176398462,0.5,0.5,0.5,0.5,0.4,0.3,0.3,,,,,,,,,,, +2653,1.1233329364,0.5,0.5,0.5,0.5,0.4,0.3,0.3,,,,,,,,,,, +2654,1.1290260266,0.5,0.5,0.5,0.5,0.4,0.3,0.3,,,,,,,,,,, +2655,1.1347188606,0.5,0.5,0.5,0.5,0.4,0.3,0.3,,,,,,,,,,, +2656,0.9463246002,0.4,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +2657,0.7579300836,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +2658,0.5695358232,0.3,0.3,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2659,0.4159502671,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2660,0.2623649673,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2661,0.1087796675,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2662,0.0725934993,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2663,0.0364070749,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2664,0.0002209068,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2665,0.0001473566,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2666,7.35501640163267E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2667,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2668,0.0207811247,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2669,0.0415622495,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2670,0.0623436305,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2671,0.239579024,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2672,0.4168141612,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2673,0.5940495547,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +2674,0.8047177262,0.4,0.4,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +2675,1.0153856415,0.5,0.4,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +2676,1.226053813,0.6,0.5,0.5,0.5,0.5,0.3,0.3,,,,,,,,,,, +2677,1.2368723502,0.6,0.5,0.5,0.5,0.5,0.3,0.3,,,,,,,,,,, +2678,1.2476911437,0.6,0.6,0.5,0.5,0.5,0.3,0.3,,,,,,,,,,, +2679,1.2585099371,0.6,0.6,0.5,0.5,0.5,0.3,0.3,,,,,,,,,,, +2680,1.0570060648,0.5,0.5,0.5,0.4,0.4,0.3,0.3,,,,,,,,,,, +2681,0.8555019362,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +2682,0.6539980638,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +2683,0.4797200532,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2684,0.3054422989,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2685,0.1311642883,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +2686,0.0875357149,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2687,0.0439071415,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2688,0.000278568,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2689,0.0001855412,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2690,9.27705901529975E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2691,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2692,0.0222359829,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2693,0.0444719657,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2694,0.0667079486,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2695,0.2545214958,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2696,0.442335043,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2697,0.630148334,0.3,0.3,0.3,0.3,0.2,0.2,0.1,,,,,,,,,,, +2698,0.8460921281,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +2699,1.0620356659,0.5,0.5,0.5,0.4,0.4,0.3,0.3,,,,,,,,,,, +2700,1.27797946,0.6,0.6,0.6,0.5,0.5,0.3,0.3,,,,,,,,,,, +2701,1.2855315498,0.6,0.6,0.6,0.5,0.5,0.3,0.3,,,,,,,,,,, +2702,1.2930833834,0.6,0.6,0.6,0.5,0.5,0.3,0.3,,,,,,,,,,, +2703,1.3006354732,0.6,0.6,0.6,0.5,0.5,0.3,0.3,,,,,,,,,,, +2704,1.0872684976,0.5,0.5,0.5,0.4,0.4,0.3,0.3,,,,,,,,,,, +2705,0.8739017782,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +2706,0.6605350589,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +2707,0.4831105364,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2708,0.3056860139,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2709,0.1282614914,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +2710,0.0856088031,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2711,0.0429561148,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2712,0.0003034265,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2713,0.0002021989,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2714,0.0001012276,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2715,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2716,0.0233630686,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2717,0.0467261373,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2718,0.0700892059,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2719,0.2629505496,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2720,0.4558118933,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2721,0.648673237,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +2722,0.871402354,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +2723,1.0941314711,0.5,0.5,0.5,0.4,0.4,0.3,0.3,,,,,,,,,,, +2724,1.3168608444,0.6,0.6,0.6,0.5,0.5,0.3,0.3,,,,,,,,,,, +2725,1.3283907937,0.6,0.6,0.6,0.5,0.5,0.3,0.3,,,,,,,,,,, +2726,1.3399207429,0.6,0.6,0.6,0.5,0.5,0.3,0.3,,,,,,,,,,, +2727,1.3514506921,0.6,0.6,0.6,0.5,0.5,0.3,0.3,,,,,,,,,,, +2728,1.1372541629,0.5,0.5,0.5,0.5,0.4,0.3,0.3,,,,,,,,,,, +2729,0.9230576337,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +2730,0.7088608482,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +2731,0.5204653065,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2732,0.3320697647,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2733,0.143674223,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +2734,0.0958945501,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2735,0.0481148772,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2736,0.0003352042,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2737,0.0002234695,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2738,0.0001117347,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2739,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2740,0.0247041418,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2741,0.0494080274,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2742,0.0741121693,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2743,0.2668645972,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2744,0.4596172814,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2745,0.6523699656,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +2746,0.8740109503,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +2747,1.0956521912,0.5,0.5,0.5,0.4,0.4,0.3,0.3,,,,,,,,,,, +2748,1.3172931759,0.6,0.6,0.6,0.5,0.5,0.3,0.3,,,,,,,,,,, +2749,1.3298928059,0.6,0.6,0.6,0.5,0.5,0.3,0.3,,,,,,,,,,, +2750,1.3424926922,0.6,0.6,0.6,0.5,0.5,0.3,0.3,,,,,,,,,,, +2751,1.3550923222,0.6,0.6,0.6,0.5,0.5,0.3,0.3,,,,,,,,,,, +2752,1.1368943565,0.5,0.5,0.5,0.5,0.4,0.3,0.3,,,,,,,,,,, +2753,0.9186961346,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +2754,0.7004979126,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +2755,0.5131866592,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2756,0.3258754058,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2757,0.1385641524,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +2758,0.0925027855,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2759,0.0464411624,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2760,0.0003797956,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2761,0.0002531971,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2762,0.0001265985,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2763,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2764,0.016272269,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2765,0.0325445381,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2766,0.0488165508,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2767,0.1743741127,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +2768,0.2999316746,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2769,0.4254892365,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2770,0.5749088293,0.3,0.3,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2771,0.7243281658,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +2772,0.8737475023,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +2773,0.8959171106,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +2774,0.9180864627,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +2775,0.940256071,0.4,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +2776,0.7935068361,0.4,0.4,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +2777,0.6467573449,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +2778,0.50000811,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2779,0.3666245031,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +2780,0.23324064,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2781,0.0998570331,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2782,0.0666877031,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2783,0.0335181167,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2784,0.0003487867,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2785,0.000232439,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2786,0.0001163476,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2787,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2788,0.0159286078,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2789,0.0318574719,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2790,0.0477860797,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2791,0.1972461636,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +2792,0.3467062474,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2793,0.4961663312,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2794,0.6654690704,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +2795,0.8347718096,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +2796,1.0040745488,0.5,0.4,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +2797,0.9994749727,0.5,0.4,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +2798,0.9948753966,0.5,0.4,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +2799,0.9902758205,0.5,0.4,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +2800,0.8379721387,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +2801,0.6856684569,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +2802,0.5333645188,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2803,0.3943375386,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +2804,0.2553103021,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2805,0.1162833219,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +2806,0.0776733298,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2807,0.0390630815,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2808,0.0004530895,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2809,0.0003021451,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2810,0.0001509444,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2811,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2812,0.0273586108,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2813,0.0547169654,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2814,0.0820755762,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2815,0.2793248151,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2816,0.4765740539,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2817,0.6738232927,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +2818,0.8988865383,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +2819,1.1239497839,0.5,0.5,0.5,0.5,0.4,0.3,0.3,,,,,,,,,,, +2820,1.3490130295,0.6,0.6,0.6,0.5,0.5,0.3,0.3,,,,,,,,,,, +2821,1.3633486484,0.6,0.6,0.6,0.6,0.5,0.3,0.3,,,,,,,,,,, +2822,1.3776840111,0.7,0.6,0.6,0.6,0.5,0.4,0.3,,,,,,,,,,, +2823,1.39201963,0.7,0.6,0.6,0.6,0.5,0.4,0.3,,,,,,,,,,, +2824,1.1692279825,0.6,0.5,0.5,0.5,0.4,0.3,0.3,,,,,,,,,,, +2825,0.9464363349,0.4,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +2826,0.7236446874,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +2827,0.5304345571,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2828,0.3372241705,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2829,0.1440137839,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +2830,0.0961738869,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2831,0.0483342463,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2832,0.0004943494,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2833,0.0003295662,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2834,0.0001647831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2835,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2836,0.0232533841,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2837,0.0465067682,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2838,0.069759896,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2839,0.2553820584,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2840,0.4410042207,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2841,0.6266263831,0.3,0.3,0.3,0.3,0.2,0.2,0.1,,,,,,,,,,, +2842,0.844138564,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +2843,1.0616507448,0.5,0.5,0.5,0.4,0.4,0.3,0.3,,,,,,,,,,, +2844,1.2791629257,0.6,0.6,0.6,0.5,0.5,0.3,0.3,,,,,,,,,,, +2845,1.2949218812,0.6,0.6,0.6,0.5,0.5,0.3,0.3,,,,,,,,,,, +2846,1.310681093,0.6,0.6,0.6,0.5,0.5,0.3,0.3,,,,,,,,,,, +2847,1.3264400485,0.6,0.6,0.6,0.5,0.5,0.3,0.3,,,,,,,,,,, +2848,1.1117015033,0.5,0.5,0.5,0.4,0.4,0.3,0.3,,,,,,,,,,, +2849,0.8969627018,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +2850,0.6822241565,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +2851,0.4994174022,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2852,0.3166103916,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2853,0.1338036372,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +2854,0.0894193167,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2855,0.0450349961,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2856,0.0006504192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2857,0.0004336128,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2858,0.0002168064,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2859,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2860,0.019121505,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2861,0.03824301,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2862,0.057364515,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2863,0.2227965167,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2864,0.3882282621,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +2865,0.5536602638,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2866,0.7182196581,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +2867,0.8827787961,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +2868,1.0473384467,0.5,0.5,0.5,0.4,0.4,0.3,0.2,,,,,,,,,,, +2869,1.0232944624,0.5,0.5,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +2870,0.9992507344,0.5,0.4,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +2871,0.9752067501,0.5,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +2872,0.8006983507,0.4,0.4,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +2873,0.6261899513,0.3,0.3,0.3,0.3,0.2,0.2,0.1,,,,,,,,,,, +2874,0.4516818081,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2875,0.3281083068,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2876,0.2045350617,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +2877,0.0809615603,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2878,0.0541098562,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2879,0.0272581521,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2880,0.0004064479,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2881,0.0002711361,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2882,0.0001355681,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2883,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2884,0.0149578482,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2885,0.0299154401,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2886,0.0448732882,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2887,0.1568645608,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +2888,0.2688558333,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2889,0.3808471059,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +2890,0.5231277199,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2891,0.6654080776,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +2892,0.8076884353,0.4,0.4,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +2893,0.7931542053,0.4,0.4,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +2894,0.7786197191,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +2895,0.7640854891,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +2896,0.6326134177,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +2897,0.50114109,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2898,0.3696690186,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +2899,0.2708857666,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2900,0.1721025146,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +2901,0.0733192626,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2902,0.0490123429,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2903,0.0247054232,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2904,0.0003985035,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2905,0.0002657544,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2906,0.0001327491,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2907,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2908,0.0140970293,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2909,0.028194315,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2910,0.0422913443,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2911,0.1515082124,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +2912,0.2607248243,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2913,0.3699414361,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +2914,0.5131402739,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2915,0.6563388554,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +2916,0.799537437,0.4,0.4,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +2917,0.7941593055,0.4,0.4,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +2918,0.788781174,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +2919,0.7834030425,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +2920,0.6424450501,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +2921,0.501487314,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2922,0.3605293216,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +2923,0.2614941539,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2924,0.1624589861,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +2925,0.0634238184,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2926,0.0424248622,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2927,0.0214261622,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2928,0.000427206,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2929,0.0002847186,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2930,0.0001424874,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2931,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2932,0.0099538743,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2933,0.0199077486,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2934,0.0298616229,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2935,0.1207601435,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +2936,0.2116589204,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2937,0.3025576973,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2938,0.4193210173,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2939,0.5360843373,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2940,0.6528476572,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +2941,0.6757832636,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +2942,0.6987191263,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +2943,0.7216547326,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +2944,0.6087378043,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +2945,0.4958208761,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2946,0.382904204,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +2947,0.2804324241,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2948,0.177960388,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +2949,0.0754886081,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2950,0.050457719,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2951,0.0254265736,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2952,0.0003954282,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2953,0.0002637042,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2954,0.000131724,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2955,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2956,0.010243462,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2957,0.0204869241,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2958,0.0307303861,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2959,0.1371649054,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +2960,0.2435991683,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2961,0.3500334313,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +2962,0.4867649801,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2963,0.6234965289,0.3,0.3,0.3,0.3,0.2,0.2,0.1,,,,,,,,,,, +2964,0.7602278214,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +2965,0.7854452768,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +2966,0.8106629884,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +2967,0.8358804438,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +2968,0.7147217968,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +2969,0.5935631498,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +2970,0.4724045028,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2971,0.3493586662,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +2972,0.2263125733,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2973,0.1032664805,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2974,0.0691368979,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2975,0.0350075716,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2976,0.0008782453,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2977,0.000585326,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2978,0.000292663,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2979,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2980,0.0239963176,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2981,0.0479926352,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2982,0.0719889529,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2983,0.2208401336,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2984,0.369691058,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +2985,0.5185419825,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2986,0.701307477,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +2987,0.8840729715,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +2988,1.0668382097,0.5,0.5,0.5,0.4,0.4,0.3,0.3,,,,,,,,,,, +2989,1.100002158,0.5,0.5,0.5,0.4,0.4,0.3,0.3,,,,,,,,,,, +2990,1.1331658501,0.5,0.5,0.5,0.5,0.4,0.3,0.3,,,,,,,,,,, +2991,1.1663297985,0.6,0.5,0.5,0.5,0.4,0.3,0.3,,,,,,,,,,, +2992,0.9836839832,0.5,0.4,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +2993,0.8010379116,0.4,0.4,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +2994,0.6183920963,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +2995,0.4530641412,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2996,0.2877364423,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2997,0.1224087435,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +2998,0.0818641515,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2999,0.0413193033,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3000,0.0007747113,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3001,0.0005163888,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3002,0.0002583225,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3003,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3004,0.0122375172,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3005,0.0244750344,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3006,0.0367125516,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3007,0.1105697298,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3008,0.1844269081,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +3009,0.2582840864,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3010,0.3359489593,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3011,0.4136138321,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3012,0.491278705,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3013,0.4783061987,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3014,0.4653336924,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3015,0.4523611861,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3016,0.3660048366,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +3017,0.279648487,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3018,0.1932921375,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +3019,0.1389921272,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +3020,0.0846921169,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3021,0.0303918504,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3022,0.0203385424,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3023,0.0102854907,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3024,0.0002321827,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3025,0.0001547885,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3026,7.73942492436609E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3027,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3028,0.0050888,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3029,0.0101776,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3030,0.0152661438,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3031,0.0679106347,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3032,0.1205551256,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +3033,0.1731996165,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +3034,0.2634613004,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3035,0.3537229843,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +3036,0.4439849244,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3037,0.4823704218,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3038,0.5207561756,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3039,0.5591419293,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3040,0.4812051515,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3041,0.4032686299,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3042,0.3253318521,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3043,0.2399462623,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3044,0.1545604161,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +3045,0.0691748262,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3046,0.0462963686,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3047,0.0234179109,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3048,0.000539197,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3049,0.0003595501,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3050,0.0001796469,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3051,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3052,0.0189720982,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3053,0.0379444527,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3054,0.056916551,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3055,0.1782161478,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +3056,0.2995157446,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3057,0.4208150851,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3058,0.5456837869,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3059,0.6705522324,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3060,0.795420678,0.4,0.4,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3061,0.813960701,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +3062,0.8325007241,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +3063,0.8510407471,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +3064,0.7276850773,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3065,0.6043296637,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +3066,0.4809739938,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3067,0.3555863405,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +3068,0.2301989435,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3069,0.1048112902,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3070,0.0702158045,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3071,0.0356203188,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3072,0.0010248331,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3073,0.0006832221,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3074,0.000341611,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3075,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3076,0.0273463098,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3077,0.0546923633,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3078,0.082038673,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3079,0.2355314585,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3080,0.3890245003,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +3081,0.5425172858,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3082,0.6759213944,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3083,0.809325503,0.4,0.4,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3084,0.9427296117,0.4,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +3085,0.9495600386,0.4,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +3086,0.9563904655,0.5,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +3087,0.9632208924,0.5,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +3088,0.8146764697,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +3089,0.6661323032,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3090,0.5175881368,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3091,0.380598778,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +3092,0.2436096755,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3093,0.106620573,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3094,0.071428229,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3095,0.036235885,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3096,0.001043541,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3097,0.0006957794,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3098,0.0003477616,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3099,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3100,0.0188234603,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3101,0.0376469205,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3102,0.0564703808,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3103,0.1750983384,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +3104,0.2937265522,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3105,0.4123547661,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3106,0.5467624372,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3107,0.6811701084,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3108,0.8155777795,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +3109,0.8247341343,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +3110,0.833890489,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +3111,0.8430465875,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +3112,0.7216301305,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3113,0.6002136735,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +3114,0.4787969602,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3115,0.3556406703,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +3116,0.2324843803,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3117,0.1093280903,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3118,0.0733041426,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3119,0.0372801948,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3120,0.0012562471,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3121,0.000837498,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3122,0.000418749,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3123,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3124,0.0197132379,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3125,0.0394262195,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3126,0.0591394573,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3127,0.1796348715,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +3128,0.3001305419,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3129,0.4206259561,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3130,0.5607682336,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3131,0.7009105111,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3132,0.8410527886,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +3133,0.8458919794,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +3134,0.8507311701,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +3135,0.8555703609,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +3136,0.7064554759,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3137,0.5573405909,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3138,0.408225706,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3139,0.2961611395,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3140,0.1840965731,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +3141,0.0720317504,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3142,0.0482166173,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3143,0.0244012279,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3144,0.0005860949,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3145,0.0003908153,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3146,0.0001952795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3147,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3148,0.012029424,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3149,0.0240588481,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3150,0.0360882721,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3151,0.1281143911,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +3152,0.2201402538,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3153,0.3121663728,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3154,0.4571437407,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3155,0.6021213649,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +3156,0.7470987327,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3157,0.7966761562,0.4,0.4,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3158,0.8462538359,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +3159,0.8958315156,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +3160,0.7714066775,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3161,0.6469815832,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +3162,0.5225567451,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3163,0.386718818,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +3164,0.2508806345,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3165,0.1150424511,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3166,0.0771208066,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3167,0.0391989059,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3168,0.0012770051,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3169,0.0008513367,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3170,0.0004256684,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3171,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3172,0.0180784766,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3173,0.0361566968,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3174,0.0542351734,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3175,0.1748031126,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +3176,0.2953713082,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3177,0.4159395037,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3178,0.5557534963,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3179,0.6955672326,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3180,0.8353812253,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +3181,0.8225055899,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +3182,0.8096302109,0.4,0.4,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3183,0.7967548318,0.4,0.4,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3184,0.6550198217,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +3185,0.5132850678,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3186,0.3715503139,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +3187,0.2705067398,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3188,0.1694631657,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +3189,0.0684193353,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3190,0.0458932522,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3191,0.023367169,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3192,0.0008410858,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3193,0.0005607239,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3194,0.0002803619,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3195,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3196,0.0085382258,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3197,0.0170767079,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3198,0.0256149338,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3199,0.1014925633,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3200,0.1773701927,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +3201,0.2532478222,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3202,0.363865475,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +3203,0.4744831278,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3204,0.5851007806,0.3,0.3,0.3,0.2,0.2,0.1,0.1,,,,,,,,,,, +3205,0.5974713031,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +3206,0.6098418256,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +3207,0.6222120919,0.3,0.3,0.3,0.3,0.2,0.2,0.1,,,,,,,,,,, +3208,0.511891715,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3209,0.4015713382,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3210,0.2912509613,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3211,0.2108045084,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3212,0.1303577992,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +3213,0.0499113463,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3214,0.0335734716,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3215,0.0172355968,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3216,0.0008974658,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3217,0.0005983959,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3218,0.0002990698,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3219,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3220,0.0090223243,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3221,0.0180446486,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3222,0.0270669729,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3223,0.1024315451,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3224,0.1777961174,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +3225,0.2531606896,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3226,0.3726123065,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +3227,0.4920641797,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3228,0.6115157966,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +3229,0.625206378,0.3,0.3,0.3,0.3,0.2,0.2,0.1,,,,,,,,,,, +3230,0.6388969594,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +3231,0.6525877971,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +3232,0.5509537715,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3233,0.4493197459,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3234,0.3476857203,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +3235,0.2566031961,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3236,0.1655206719,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +3237,0.0744381477,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3238,0.0499820775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3239,0.0255260073,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3240,0.0010699371,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3241,0.0007132059,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3242,0.0003567311,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3243,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3244,0.0282430067,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3245,0.0564860134,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3246,0.0847287639,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3247,0.2321455882,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3248,0.3795624126,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +3249,0.526979237,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3250,0.6988259918,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3251,0.8706727466,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +3252,1.0425195015,0.5,0.5,0.5,0.4,0.4,0.3,0.2,,,,,,,,,,, +3253,1.0480701043,0.5,0.5,0.5,0.4,0.4,0.3,0.2,,,,,,,,,,, +3254,1.0536204508,0.5,0.5,0.5,0.4,0.4,0.3,0.3,,,,,,,,,,, +3255,1.0591710536,0.5,0.5,0.5,0.4,0.4,0.3,0.3,,,,,,,,,,, +3256,0.893413586,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +3257,0.7276563748,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3258,0.5618989072,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3259,0.4150584393,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3260,0.2682179715,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3261,0.1213772473,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +3262,0.0817562609,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3263,0.0421352744,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3264,0.002514288,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3265,0.0016762774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3266,0.0008380106,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3267,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3268,0.0362151269,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3269,0.0724302539,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3270,0.1086451245,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3271,0.2871280518,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3272,0.4656107228,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3273,0.6440936501,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +3274,0.8056623461,0.4,0.4,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3275,0.9672310421,0.5,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +3276,1.1287997381,0.5,0.5,0.5,0.5,0.4,0.3,0.3,,,,,,,,,,, +3277,1.1065535044,0.5,0.5,0.5,0.4,0.4,0.3,0.3,,,,,,,,,,, +3278,1.0843070143,0.5,0.5,0.5,0.4,0.4,0.3,0.3,,,,,,,,,,, +3279,1.0620607806,0.5,0.5,0.5,0.4,0.4,0.3,0.3,,,,,,,,,,, +3280,0.8986607624,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +3281,0.7352607442,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3282,0.5718609822,0.3,0.3,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3283,0.4246050969,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3284,0.2773492115,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3285,0.1300933262,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +3286,0.0875923511,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3287,0.0450916323,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3288,0.0025909134,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3289,0.0017272756,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3290,0.0008636378,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3291,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3292,0.0212929006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3293,0.0425858012,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3294,0.0638787019,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3295,0.2069750307,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +3296,0.3500711033,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +3297,0.4931674322,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3298,0.6724909328,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3299,0.8518149459,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +3300,1.0311384465,0.5,0.5,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +3301,1.0543872177,0.5,0.5,0.5,0.4,0.4,0.3,0.3,,,,,,,,,,, +3302,1.0776359888,0.5,0.5,0.5,0.4,0.4,0.3,0.3,,,,,,,,,,, +3303,1.10088476,0.5,0.5,0.5,0.4,0.4,0.3,0.3,,,,,,,,,,, +3304,0.9363046076,0.4,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +3305,0.7717244553,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3306,0.6071440466,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +3307,0.4491454807,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3308,0.2911466585,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3309,0.1331480926,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +3310,0.0895218256,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3311,0.0458955586,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3312,0.0022690354,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3313,0.0015127757,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3314,0.0007562597,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3315,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3316,0.0170979785,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3317,0.0341959571,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3318,0.0512936794,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3319,0.1530163752,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +3320,0.254739071,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3321,0.3564617669,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +3322,0.4649841369,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3323,0.573506507,0.3,0.3,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3324,0.6820286207,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3325,0.6847422886,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3326,0.6874559565,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3327,0.6901696244,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3328,0.5802072601,0.3,0.3,0.3,0.2,0.2,0.1,0.1,,,,,,,,,,, +3329,0.4702446394,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3330,0.3602820188,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +3331,0.2652828843,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3332,0.1702837498,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +3333,0.075284359,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3334,0.0506981024,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3335,0.0261115896,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3336,0.001525333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3337,0.0010168887,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3338,0.0005084443,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3339,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3340,0.01374568,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3341,0.0274913599,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3342,0.0412370399,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3343,0.1206830055,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +3344,0.2001287149,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +3345,0.2795746806,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3346,0.3984842815,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3347,0.5173936261,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3348,0.636303227,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +3349,0.6693457022,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3350,0.7023884337,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3351,0.735430909,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3352,0.6399543391,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +3353,0.5444777692,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3354,0.4490011994,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3355,0.3359507532,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3356,0.2229005633,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3357,0.1098503734,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3358,0.0741703431,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3359,0.0384903128,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3360,0.0028100263,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3361,0.0018733509,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3362,0.0009366754,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3363,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3364,0.0297142663,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3365,0.0594287888,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3366,0.0891430551,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3367,0.2471798056,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3368,0.4052168123,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3369,0.5632535628,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3370,0.7565039279,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3371,0.9497545493,0.4,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +3372,1.1430049144,0.5,0.5,0.5,0.5,0.4,0.3,0.3,,,,,,,,,,, +3373,1.177103488,0.6,0.5,0.5,0.5,0.4,0.3,0.3,,,,,,,,,,, +3374,1.2112020616,0.6,0.5,0.5,0.5,0.5,0.3,0.3,,,,,,,,,,, +3375,1.2453006352,0.6,0.6,0.5,0.5,0.5,0.3,0.3,,,,,,,,,,, +3376,1.0716356281,0.5,0.5,0.5,0.4,0.4,0.3,0.3,,,,,,,,,,, +3377,0.8979703647,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +3378,0.7243053575,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3379,0.5393443778,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3380,0.3543833981,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +3381,0.1694226747,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +3382,0.1142551825,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3383,0.0590879466,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3384,0.0039207107,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3385,0.002613978,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3386,0.001306989,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3387,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3388,0.041330323,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3389,0.082660646,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3390,0.1239907127,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +3391,0.3168084901,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3392,0.5096262675,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3393,0.7024440448,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3394,0.8940973207,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +3395,1.0857508527,0.5,0.5,0.5,0.4,0.4,0.3,0.3,,,,,,,,,,, +3396,1.2774041286,0.6,0.6,0.6,0.5,0.5,0.3,0.3,,,,,,,,,,, +3397,1.2605690855,0.6,0.6,0.5,0.5,0.5,0.3,0.3,,,,,,,,,,, +3398,1.2437340423,0.6,0.6,0.5,0.5,0.5,0.3,0.3,,,,,,,,,,, +3399,1.2268989992,0.6,0.5,0.5,0.5,0.5,0.3,0.3,,,,,,,,,,, +3400,1.0409552151,0.5,0.5,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +3401,0.8550111746,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +3402,0.6690671342,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3403,0.4977844348,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3404,0.3265017354,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3405,0.155219036,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +3406,0.1047190321,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3407,0.0542192845,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3408,0.0037192806,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3409,0.0024796912,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3410,0.0012398456,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3411,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3412,0.0401696655,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3413,0.0803393311,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3414,0.1205092529,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +3415,0.3137301467,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3416,0.5069512967,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3417,0.7001721905,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3418,0.8792219922,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +3419,1.0582715376,0.5,0.5,0.5,0.4,0.4,0.3,0.3,,,,,,,,,,, +3420,1.2373210831,0.6,0.5,0.5,0.5,0.5,0.3,0.3,,,,,,,,,,, +3421,1.2336356304,0.6,0.5,0.5,0.5,0.5,0.3,0.3,,,,,,,,,,, +3422,1.2299501778,0.6,0.5,0.5,0.5,0.5,0.3,0.3,,,,,,,,,,, +3423,1.2262644689,0.6,0.5,0.5,0.5,0.5,0.3,0.3,,,,,,,,,,, +3424,1.050890894,0.5,0.5,0.5,0.4,0.4,0.3,0.2,,,,,,,,,,, +3425,0.8755170628,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +3426,0.700143488,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3427,0.5224555175,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3428,0.3447675471,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3429,0.1670795766,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +3430,0.1128169821,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3431,0.0585543875,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3432,0.004291793,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3433,0.0028612808,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3434,0.0014305122,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3435,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3436,0.0390620564,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3437,0.0781241129,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3438,0.1171861693,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +3439,0.2953651576,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3440,0.4735438896,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3441,0.6517226216,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +3442,0.8296320114,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +3443,1.0075414012,0.5,0.4,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +3444,1.1854507909,0.6,0.5,0.5,0.5,0.4,0.3,0.3,,,,,,,,,,, +3445,1.2133752511,0.6,0.5,0.5,0.5,0.5,0.3,0.3,,,,,,,,,,, +3446,1.2412999676,0.6,0.5,0.5,0.5,0.5,0.3,0.3,,,,,,,,,,, +3447,1.269224684,0.6,0.6,0.5,0.5,0.5,0.3,0.3,,,,,,,,,,, +3448,1.094417471,0.5,0.5,0.5,0.4,0.4,0.3,0.3,,,,,,,,,,, +3449,0.919610258,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +3450,0.7448030451,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3451,0.5549885233,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3452,0.3651742579,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +3453,0.1753597362,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +3454,0.1183898806,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +3455,0.0614202812,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3456,0.0044504256,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3457,0.002966865,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3458,0.0014835606,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3459,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3460,0.0363804226,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3461,0.0727605889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3462,0.1091410115,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3463,0.2919367461,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3464,0.474732737,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3465,0.6575284717,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +3466,0.8524066787,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +3467,1.0472848858,0.5,0.5,0.5,0.4,0.4,0.3,0.2,,,,,,,,,,, +3468,1.2421630928,0.6,0.5,0.5,0.5,0.5,0.3,0.3,,,,,,,,,,, +3469,1.2398948263,0.6,0.5,0.5,0.5,0.5,0.3,0.3,,,,,,,,,,, +3470,1.237626816,0.6,0.5,0.5,0.5,0.5,0.3,0.3,,,,,,,,,,, +3471,1.2353588057,0.6,0.5,0.5,0.5,0.5,0.3,0.3,,,,,,,,,,, +3472,1.0649479449,0.5,0.5,0.5,0.4,0.4,0.3,0.3,,,,,,,,,,, +3473,0.8945368277,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +3474,0.7241257106,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3475,0.5431948699,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3476,0.3622642854,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +3477,0.1813334446,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +3478,0.1225645571,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +3479,0.0637956696,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3480,0.0050267821,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3481,0.0033512735,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3482,0.0016755086,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3483,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3484,0.0290658972,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3485,0.0581315382,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3486,0.0871974354,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3487,0.2390864685,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3488,0.3909752454,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +3489,0.5428642785,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3490,0.7102324178,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3491,0.8776003008,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +3492,1.04496844,0.5,0.5,0.5,0.4,0.4,0.3,0.2,,,,,,,,,,, +3493,1.0325697275,0.5,0.5,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +3494,1.020171015,0.5,0.5,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +3495,1.0077723026,0.5,0.4,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +3496,0.842111706,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +3497,0.6764508531,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3498,0.5107902565,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3499,0.3764118004,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +3500,0.2420333443,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3501,0.1076551444,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3502,0.07254327,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3503,0.0374313955,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3504,0.002319521,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3505,0.0015463474,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3506,0.0007731737,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3507,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3508,0.0172960771,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3509,0.0345918979,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3510,0.0518879749,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3511,0.1729046471,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +3512,0.2939213192,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3513,0.4149379913,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3514,0.5640790161,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3515,0.7132202971,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3516,0.8623613218,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +3517,0.8866738795,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +3518,0.910986181,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +3519,0.9352987387,0.4,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +3520,0.8037966834,0.4,0.4,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3521,0.6722943719,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3522,0.5407923166,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3523,0.4032437715,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3524,0.2656954827,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3525,0.1281469377,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +3526,0.0867469086,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3527,0.0453466232,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3528,0.0039463379,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3529,0.0026308919,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3530,0.001315446,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3531,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3532,0.0281699691,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3533,0.0563399382,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3534,0.0845099073,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3535,0.2195820926,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3536,0.354654278,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +3537,0.4897264633,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3538,0.6520216915,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +3539,0.8143169196,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +3540,0.9766121477,0.5,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +3541,1.0062636272,0.5,0.4,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +3542,1.035915363,0.5,0.5,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +3543,1.0655670989,0.5,0.5,0.5,0.4,0.4,0.3,0.3,,,,,,,,,,, +3544,0.9245237678,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +3545,0.7834804367,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3546,0.6424371056,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +3547,0.4816679793,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3548,0.3208988531,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3549,0.160129983,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +3550,0.1085677303,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3551,0.0570057337,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3552,0.005443481,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3553,0.0036290727,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3554,0.0018144082,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3555,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3556,0.0452131054,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3557,0.0904262107,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3558,0.1356393161,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +3559,0.3163141407,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3560,0.4969889654,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3561,0.6776637901,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3562,0.8338569173,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +3563,0.9900500446,0.5,0.4,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +3564,1.1462429155,0.5,0.5,0.5,0.5,0.4,0.3,0.3,,,,,,,,,,, +3565,1.1336350848,0.5,0.5,0.5,0.5,0.4,0.3,0.3,,,,,,,,,,, +3566,1.1210272541,0.5,0.5,0.5,0.5,0.4,0.3,0.3,,,,,,,,,,, +3567,1.1084194233,0.5,0.5,0.5,0.4,0.4,0.3,0.3,,,,,,,,,,, +3568,0.9331703968,0.4,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +3569,0.7579213703,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3570,0.5826720875,0.3,0.3,0.3,0.2,0.2,0.1,0.1,,,,,,,,,,, +3571,0.4303830132,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3572,0.2780936827,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3573,0.1258046084,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +3574,0.084919943,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3575,0.0440350214,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3576,0.003150356,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3577,0.0021001519,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3578,0.0010502041,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3579,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3580,0.0075044232,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3581,0.0150091026,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3582,0.0225135258,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3583,0.0650488414,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3584,0.107584157,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3585,0.1501194726,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +3586,0.2552964634,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3587,0.3604737105,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +3588,0.4656509576,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3589,0.5402579887,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3590,0.6148650199,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +3591,0.6894720511,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3592,0.604808893,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +3593,0.5201459911,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3594,0.435482833,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3595,0.323477978,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3596,0.2114733792,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3597,0.0994685243,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3598,0.0670605793,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3599,0.0346526344,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3600,0.0022444332,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3601,0.0014963742,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3602,0.000748059,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3603,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3604,0.0165631382,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3605,0.0331265326,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3606,0.0496896707,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3607,0.1524141352,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +3608,0.2551383433,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3609,0.3578628078,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +3610,0.4861565895,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3611,0.6144503713,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +3612,0.742744153,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3613,0.7410771014,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3614,0.739410306,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3615,0.7377432544,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3616,0.6263949692,0.3,0.3,0.3,0.3,0.2,0.2,0.1,,,,,,,,,,, +3617,0.5150466839,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3618,0.4036983987,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3619,0.3013186205,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3620,0.1989385861,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +3621,0.096558808,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3622,0.0655244829,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3623,0.0344901577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3624,0.0034558326,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3625,0.0023038884,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3626,0.0011519442,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3627,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3628,0.0256046829,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3629,0.0512093658,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3630,0.0768140486,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3631,0.1845214726,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +3632,0.2922288966,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3633,0.3999360643,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3634,0.5057473292,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3635,0.6115585941,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +3636,0.717369859,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3637,0.7313792432,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3638,0.7453883711,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3639,0.7593980116,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3640,0.638324447,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +3641,0.5172508824,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3642,0.3961773178,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +3643,0.2910313359,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3644,0.1858856103,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +3645,0.0807396285,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3646,0.0547402862,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3647,0.0287406876,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3648,0.0027413453,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3649,0.0018274781,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3650,0.0009138672,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3651,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3652,0.0201532575,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3653,0.040306515,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3654,0.0604597725,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3655,0.1677415281,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +3656,0.2750232837,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3657,0.3823052956,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +3658,0.5174902408,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3659,0.6526754422,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +3660,0.7878606437,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3661,0.8206747803,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +3662,0.8534889169,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +3663,0.8863033097,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +3664,0.7680746245,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3665,0.6498461955,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +3666,0.5316177665,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3667,0.3982628622,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3668,0.2649079578,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3669,0.1315530535,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +3670,0.0894777467,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3671,0.04740244,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3672,0.005326877,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3673,0.0035516785,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3674,0.0017764799,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3675,1.14810012123047E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3676,0.0309784578,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3677,0.0619558904,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3678,0.0929333231,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3679,0.2294370458,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3680,0.3659405122,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +3681,0.5024442349,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3682,0.6679000699,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3683,0.8333559049,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +3684,0.9988117399,0.5,0.4,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +3685,1.0232801112,0.5,0.5,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +3686,1.0477487387,0.5,0.5,0.5,0.4,0.4,0.3,0.2,,,,,,,,,,, +3687,1.0722173663,0.5,0.5,0.5,0.4,0.4,0.3,0.3,,,,,,,,,,, +3688,0.9295754083,0.4,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +3689,0.7869334503,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3690,0.6442914923,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +3691,0.4842160953,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3692,0.3241409545,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3693,0.1640655575,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +3694,0.1115935379,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3695,0.0591215183,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3696,0.0066494986,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3697,0.0044335116,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3698,0.0022172684,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3699,1.14810012123047E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3700,0.0505076921,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3701,0.1010143591,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3702,0.151521026,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +3703,0.3644843727,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +3704,0.5774477194,0.3,0.3,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3705,0.7904113224,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3706,1.0187248702,0.5,0.5,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +3707,1.2470381617,0.6,0.6,0.5,0.5,0.5,0.3,0.3,,,,,,,,,,, +3708,1.4753517095,0.7,0.7,0.6,0.6,0.6,0.4,0.4,,,,,,,,,,, +3709,1.498316531,0.7,0.7,0.6,0.6,0.6,0.4,0.4,,,,,,,,,,, +3710,1.5212810961,0.7,0.7,0.7,0.6,0.6,0.4,0.4,,,,,,,,,,, +3711,1.5442459175,0.7,0.7,0.7,0.6,0.6,0.4,0.4,,,,,,,,,,, +3712,1.337111998,0.6,0.6,0.6,0.5,0.5,0.3,0.3,,,,,,,,,,, +3713,1.1299778221,0.5,0.5,0.5,0.5,0.4,0.3,0.3,,,,,,,,,,, +3714,0.9228436463,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +3715,0.6925629519,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3716,0.4622822575,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3717,0.2320015632,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3718,0.1574050392,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +3719,0.0828085152,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3720,0.0082119911,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3721,0.0054750025,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3722,0.0027380138,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3723,1.14810012123047E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3724,0.0550083471,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3725,0.110015669,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3726,0.165022991,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +3727,0.3865158503,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +3728,0.6080087095,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +3729,0.8295015688,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +3730,1.0527163219,0.5,0.5,0.5,0.4,0.4,0.3,0.3,,,,,,,,,,, +3731,1.2759310751,0.6,0.6,0.6,0.5,0.5,0.3,0.3,,,,,,,,,,, +3732,1.4991460845,0.7,0.7,0.6,0.6,0.6,0.4,0.4,,,,,,,,,,, +3733,1.5145552283,0.7,0.7,0.7,0.6,0.6,0.4,0.4,,,,,,,,,,, +3734,1.5299646284,0.7,0.7,0.7,0.6,0.6,0.4,0.4,,,,,,,,,,, +3735,1.5453737721,0.7,0.7,0.7,0.6,0.6,0.4,0.4,,,,,,,,,,, +3736,1.3367201575,0.6,0.6,0.6,0.5,0.5,0.3,0.3,,,,,,,,,,, +3737,1.1280662867,0.5,0.5,0.5,0.5,0.4,0.3,0.3,,,,,,,,,,, +3738,0.9194124158,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +3739,0.6899458987,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3740,0.4604793816,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3741,0.2310128645,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3742,0.1567569264,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +3743,0.0825009883,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3744,0.008244794,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3745,0.0054972981,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3746,0.002749546,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3747,1.96817163639508E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3748,0.0479488127,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3749,0.0958955752,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3750,0.1438423377,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +3751,0.3441348106,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3752,0.5444272836,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3753,0.7447195003,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3754,0.9195033925,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +3755,1.0942872847,0.5,0.5,0.5,0.4,0.4,0.3,0.3,,,,,,,,,,, +3756,1.2690711769,0.6,0.6,0.5,0.5,0.5,0.3,0.3,,,,,,,,,,, +3757,1.258299025,0.6,0.6,0.5,0.5,0.5,0.3,0.3,,,,,,,,,,, +3758,1.2475266168,0.6,0.6,0.5,0.5,0.5,0.3,0.3,,,,,,,,,,, +3759,1.2367542086,0.6,0.5,0.5,0.5,0.5,0.3,0.3,,,,,,,,,,, +3760,1.0480042423,0.5,0.5,0.5,0.4,0.4,0.3,0.2,,,,,,,,,,, +3761,0.8592540196,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +3762,0.6705040532,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3763,0.4972047467,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3764,0.3239056965,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3765,0.15060639,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +3766,0.1016996313,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3767,0.0527928726,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3768,0.0038861139,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3769,0.0025911697,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3770,0.0012959693,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3771,8.20071515164618E-007,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3772,0.0225412032,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3773,0.0450813814,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3774,0.0676218158,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3775,0.2026086624,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +3776,0.3375957654,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3777,0.4725828683,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3778,0.6411275539,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +3779,0.8096719833,0.4,0.4,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3780,0.9782166689,0.5,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +3781,1.0122926905,0.5,0.4,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +3782,1.0463687121,0.5,0.5,0.5,0.4,0.4,0.3,0.2,,,,,,,,,,, +3783,1.0804447338,0.5,0.5,0.5,0.4,0.4,0.3,0.3,,,,,,,,,,, +3784,0.9467520625,0.4,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +3785,0.8130596474,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +3786,0.6793672324,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3787,0.5127502274,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3788,0.3461334787,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3789,0.1795164737,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +3790,0.1221273565,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +3791,0.0647382393,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3792,0.0073491221,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3793,0.0048999273,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3794,0.0024507325,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3795,1.47612872729631E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3796,0.043592439,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3797,0.0871833404,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3798,0.1307742418,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +3799,0.3065985997,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3800,0.4824227014,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3801,0.6582468031,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +3802,0.7867822496,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3803,0.9153179525,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +3804,1.043853399,0.5,0.5,0.5,0.4,0.4,0.3,0.2,,,,,,,,,,, +3805,1.0221371365,0.5,0.5,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +3806,1.0004206177,0.5,0.4,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +3807,0.9787043552,0.5,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +3808,0.8346347039,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +3809,0.6905653089,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3810,0.5464956577,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3811,0.4076977849,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3812,0.2688999122,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3813,0.1301017832,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +3814,0.088050566,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3815,0.0459996052,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3816,0.0039483881,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3817,0.0026324296,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3818,0.0013162148,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3819,0.000000328,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3820,0.036350695,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3821,0.0727008775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3822,0.1090513162,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3823,0.2769468639,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3824,0.4448424117,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3825,0.6127377032,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +3826,0.7771835688,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3827,0.9416291782,0.4,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +3828,1.1060747876,0.5,0.5,0.5,0.4,0.4,0.3,0.3,,,,,,,,,,, +3829,1.0993714718,0.5,0.5,0.5,0.4,0.4,0.3,0.3,,,,,,,,,,, +3830,1.092668156,0.5,0.5,0.5,0.4,0.4,0.3,0.3,,,,,,,,,,, +3831,1.0859648402,0.5,0.5,0.5,0.4,0.4,0.3,0.3,,,,,,,,,,, +3832,0.9268725039,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +3833,0.7677804238,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3834,0.6086883438,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +3835,0.4544326355,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3836,0.3001771835,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3837,0.1459214752,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +3838,0.098851933,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3839,0.051782647,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3840,0.0047131048,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3841,0.0031439492,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3842,0.0015745373,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3843,5.4073465531167E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3844,0.0252940808,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3845,0.0505827799,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3846,0.0758714789,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3847,0.1992071596,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +3848,0.3225430964,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3849,0.4458787771,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3850,0.6313171922,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +3851,0.816755351,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +3852,1.0021937661,0.5,0.4,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +3853,1.055985332,0.5,0.5,0.5,0.4,0.4,0.3,0.3,,,,,,,,,,, +3854,1.109776898,0.5,0.5,0.5,0.4,0.4,0.3,0.3,,,,,,,,,,, +3855,1.1635682076,0.5,0.5,0.5,0.5,0.4,0.3,0.3,,,,,,,,,,, +3856,1.0141898747,0.5,0.4,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +3857,0.8648112855,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +3858,0.7154329526,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3859,0.5368016436,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3860,0.3581703346,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +3861,0.1795390256,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +3862,0.1217901021,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +3863,0.0640414348,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3864,0.0062925112,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3865,0.0041964597,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3866,0.0021001519,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3867,3.94659416672973E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3868,0.0401199487,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3869,0.080235797,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3870,0.1203519017,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +3871,0.2860722097,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3872,0.451792774,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3873,0.6175130821,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +3874,0.7736408599,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3875,0.9297686377,0.4,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +3876,1.0858964154,0.5,0.5,0.5,0.4,0.4,0.3,0.3,,,,,,,,,,, +3877,1.1360484015,0.5,0.5,0.5,0.5,0.4,0.3,0.3,,,,,,,,,,, +3878,1.1862003876,0.6,0.5,0.5,0.5,0.4,0.3,0.3,,,,,,,,,,, +3879,1.2363523736,0.6,0.5,0.5,0.5,0.5,0.3,0.3,,,,,,,,,,, +3880,1.0750217546,0.5,0.5,0.5,0.4,0.4,0.3,0.3,,,,,,,,,,, +3881,0.9136913919,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +3882,0.7523610292,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3883,0.5618750739,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3884,0.3713893749,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +3885,0.1809034196,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +3886,0.1227295965,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +3887,0.0645555171,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3888,0.0063814377,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3889,0.0042559149,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3890,0.002130392,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3891,5.07419250008108E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3892,0.0276461484,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3893,0.0552874276,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3894,0.0829284506,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3895,0.2040032966,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +3896,0.3250778862,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3897,0.4461527322,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3898,0.587519479,0.3,0.3,0.3,0.2,0.2,0.1,0.1,,,,,,,,,,, +3899,0.728886482,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3900,0.8702532288,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +3901,0.8585736165,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +3902,0.846893748,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +3903,0.8352141357,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +3904,0.7233984097,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3905,0.6115824274,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +3906,0.4997667014,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3907,0.3789545346,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +3908,0.2581421115,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3909,0.1373299447,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +3910,0.093608857,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3911,0.0498880255,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3912,0.0061669378,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3913,0.0041126586,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3914,0.0020583795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3915,3.94659416672973E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3916,0.0313323699,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3917,0.0626608957,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3918,0.0939891652,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3919,0.2407125166,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3920,0.3874356117,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +3921,0.5341587068,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3922,0.6886243022,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3923,0.8430898975,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +3924,0.9975554928,0.5,0.4,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +3925,1.0154292078,0.5,0.4,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +3926,1.0333029227,0.5,0.5,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +3927,1.0511768939,0.5,0.5,0.5,0.4,0.4,0.3,0.2,,,,,,,,,,, +3928,0.9015704786,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +3929,0.7519640633,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3930,0.602357648,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +3931,0.450002968,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3932,0.297648288,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3933,0.145293608,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +3934,0.0989459849,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3935,0.0525983619,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3936,0.0062507389,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3937,0.0041687823,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3938,0.002087082,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3939,5.07419250008108E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3940,0.0299910404,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3941,0.0599772116,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3942,0.0899631266,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3943,0.2286633596,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3944,0.3673635926,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +3945,0.5060638256,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3946,0.6449416553,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +3947,0.7838197413,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3948,0.922697571,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +3949,0.9321025099,0.4,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +3950,0.9415077051,0.4,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +3951,0.950912644,0.4,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +3952,0.8353371464,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +3953,0.7197616488,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3954,0.6041861512,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +3955,0.458698545,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3956,0.3132109389,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3957,0.1677233327,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +3958,0.1145570713,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3959,0.0613905536,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3960,0.0082242922,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3961,0.0054844845,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3962,0.0027449331,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3963,5.07419250008108E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3964,0.0415666061,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3965,0.0831280868,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3966,0.1246895674,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +3967,0.2880921484,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3968,0.4514947293,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3969,0.614897054,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +3970,0.7546585108,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3971,0.8944199675,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +3972,1.0341814243,0.5,0.5,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +3973,1.0523319134,0.5,0.5,0.5,0.4,0.4,0.3,0.3,,,,,,,,,,, +3974,1.0704824025,0.5,0.5,0.5,0.4,0.4,0.3,0.3,,,,,,,,,,, +3975,1.0886328916,0.5,0.5,0.5,0.4,0.4,0.3,0.3,,,,,,,,,,, +3976,0.9548733332,0.5,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +3977,0.8211137748,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +3978,0.6873542164,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3979,0.5195501579,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3980,0.3517460994,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +3981,0.1839422971,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +3982,0.1255232214,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +3983,0.0671041456,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3984,0.0086850699,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3985,0.0057920113,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3986,0.0028989528,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3987,5.74050060615233E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3988,0.0456023831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3989,0.0911988718,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3990,0.1367953606,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +3991,0.3154871499,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3992,0.4941789391,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3993,0.6728704721,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3994,0.8536224348,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +3995,1.0343743974,0.5,0.5,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +3996,1.2151263601,0.6,0.5,0.5,0.5,0.5,0.3,0.3,,,,,,,,,,, +3997,1.2247360606,0.6,0.5,0.5,0.5,0.5,0.3,0.3,,,,,,,,,,, +3998,1.2343455048,0.6,0.5,0.5,0.5,0.5,0.3,0.3,,,,,,,,,,, +3999,1.2439552054,0.6,0.6,0.5,0.5,0.5,0.3,0.3,,,,,,,,,,, +4000,1.0722360742,0.5,0.5,0.5,0.4,0.4,0.3,0.3,,,,,,,,,,, +4001,0.9005171993,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +4002,0.7287983243,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4003,0.5479077183,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4004,0.3670173686,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +4005,0.1861270189,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +4006,0.1271369684,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +4007,0.0681466615,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4008,0.009156611,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4009,0.0061062012,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4010,0.0030560478,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4011,5.74050060615233E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4012,0.0436793153,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4013,0.0873527364,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4014,0.1310261575,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +4015,0.2944528281,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +4016,0.4578792423,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4017,0.6213059129,0.3,0.3,0.3,0.3,0.2,0.2,0.1,,,,,,,,,,, +4018,0.7996294387,0.4,0.4,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4019,0.9779527084,0.5,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +4020,1.1562762342,0.5,0.5,0.5,0.5,0.4,0.3,0.3,,,,,,,,,,, +4021,1.1869097494,0.6,0.5,0.5,0.5,0.4,0.3,0.3,,,,,,,,,,, +4022,1.2175432646,0.6,0.5,0.5,0.5,0.5,0.3,0.3,,,,,,,,,,, +4023,1.2481767798,0.6,0.6,0.5,0.5,0.5,0.3,0.3,,,,,,,,,,, +4024,1.0753661846,0.5,0.5,0.5,0.4,0.4,0.3,0.3,,,,,,,,,,, +4025,0.9025553332,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +4026,0.7297444819,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4027,0.546137389,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4028,0.3625302961,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +4029,0.1789232032,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +4030,0.121964111,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +4031,0.0650047626,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4032,0.0080456704,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4033,0.0053660867,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4034,0.0026862468,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4035,6.56057212131695E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4036,0.034025536,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4037,0.0680446652,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4038,0.1020635381,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4039,0.2340550735,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +4040,0.366046609,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +4041,0.4980381444,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4042,0.6347276646,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +4043,0.771417441,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4044,0.9081069611,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +4045,0.9389062845,0.4,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +4046,0.9697056079,0.5,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +4047,1.0005051876,0.5,0.4,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +4048,0.873723669,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +4049,0.7469418941,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4050,0.6201606317,0.3,0.3,0.3,0.3,0.2,0.2,0.1,,,,,,,,,,, +4051,0.4666245362,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4052,0.3130884407,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +4053,0.1595523452,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +4054,0.1086640887,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4055,0.0577758321,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4056,0.0068875756,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4057,0.0045931693,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4058,0.0022990192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4059,4.58727503795208E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4060,0.0202063059,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4061,0.0404079988,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4062,0.0606096918,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4063,0.1758720246,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +4064,0.2911341011,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +4065,0.406396434,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4066,0.5400665533,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4067,0.6737364164,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4068,0.8074065357,0.4,0.4,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4069,0.8403646974,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +4070,0.873322859,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +4071,0.9062810207,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +4072,0.7860739129,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4073,0.6658670614,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4074,0.5456596973,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4075,0.4095447398,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4076,0.2734295259,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +4077,0.1373143121,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +4078,0.0937905541,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4079,0.0502670523,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4080,0.0067432943,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4081,0.0044968109,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4082,0.0022503275,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4083,3.94659416672973E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4084,0.0344678621,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4085,0.06893188,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4086,0.103395898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4087,0.2429141523,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +4088,0.3824324067,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +4089,0.5219504047,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4090,0.6418235896,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +4091,0.7616965183,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4092,0.8815694469,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +4093,0.8822057711,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +4094,0.8828423517,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +4095,0.8834786759,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +4096,0.7560088098,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4097,0.6285386874,0.3,0.3,0.3,0.3,0.2,0.2,0.1,,,,,,,,,,, +4098,0.5010688212,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4099,0.3750048652,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +4100,0.2489409091,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +4101,0.1228769531,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +4102,0.0839671224,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4103,0.045057548,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4104,0.0061477174,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4105,0.0041003576,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4106,0.0020527415,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4107,5.07419250008108E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4108,0.0327918409,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4109,0.0655788126,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4110,0.0983655281,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4111,0.2391748825,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +4112,0.3799844932,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +4113,0.5207938476,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4114,0.6813515492,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4115,0.8419092508,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +4116,1.0024672087,0.5,0.4,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +4117,1.0140053586,0.5,0.4,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +4118,1.0255437648,0.5,0.5,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +4119,1.037082171,0.5,0.5,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +4120,0.9081633411,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +4121,0.7792442548,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4122,0.6503254248,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +4123,0.4935236507,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4124,0.3367218767,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +4125,0.1799203589,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +4126,0.1229048868,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +4127,0.065889671,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4128,0.0088744552,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4129,0.0059180973,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4130,0.0029617395,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4131,5.4073465531167E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4132,0.0469880476,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4133,0.0939709698,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4134,0.1409536358,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +4135,0.3295144731,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +4136,0.5180750543,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4137,0.7066356354,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4138,0.8622196032,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +4139,1.0178038274,0.5,0.5,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +4140,1.1733877952,0.6,0.5,0.5,0.5,0.4,0.3,0.3,,,,,,,,,,, +4141,1.1561347719,0.5,0.5,0.5,0.5,0.4,0.3,0.3,,,,,,,,,,, +4142,1.1388817486,0.5,0.5,0.5,0.5,0.4,0.3,0.3,,,,,,,,,,, +4143,1.1216287253,0.5,0.5,0.5,0.5,0.4,0.3,0.3,,,,,,,,,,, +4144,0.9593842391,0.5,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +4145,0.7971394966,0.4,0.4,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4146,0.6348950104,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +4147,0.4775396881,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4148,0.3201843658,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +4149,0.1628290434,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +4150,0.111664269,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4151,0.0604992384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4152,0.009334464,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4153,0.0062248553,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4154,0.0031149904,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4155,5.4073465531167E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4156,0.0522382992,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4157,0.104471473,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4158,0.1567043906,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +4159,0.3610449415,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +4160,0.5653854925,0.3,0.3,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4161,0.7697260435,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4162,0.9492535369,0.4,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +4163,1.1287810302,0.5,0.5,0.5,0.5,0.4,0.3,0.3,,,,,,,,,,, +4164,1.3083085236,0.6,0.6,0.6,0.5,0.5,0.3,0.3,,,,,,,,,,, +4165,1.3161755722,0.6,0.6,0.6,0.5,0.5,0.3,0.3,,,,,,,,,,, +4166,1.3240426207,0.6,0.6,0.6,0.5,0.5,0.3,0.3,,,,,,,,,,, +4167,1.3319096693,0.6,0.6,0.6,0.5,0.5,0.3,0.3,,,,,,,,,,, +4168,1.161207683,0.5,0.5,0.5,0.5,0.4,0.3,0.3,,,,,,,,,,, +4169,0.9905054405,0.5,0.4,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +4170,0.819803198,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +4171,0.6195309706,0.3,0.3,0.3,0.3,0.2,0.2,0.1,,,,,,,,,,, +4172,0.4192589994,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4173,0.218986772,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +4174,0.1495464476,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +4175,0.0801063795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4176,0.0106663114,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4177,0.0071125828,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4178,0.0035588541,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4179,5.07419250008108E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4180,0.0509625755,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4181,0.1019197693,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4182,0.1528772193,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +4183,0.3573799907,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +4184,0.5618827621,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4185,0.7663852772,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4186,0.9644412613,0.5,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +4187,1.1624969892,0.5,0.5,0.5,0.5,0.4,0.3,0.3,,,,,,,,,,, +4188,1.3605529734,0.6,0.6,0.6,0.5,0.5,0.3,0.3,,,,,,,,,,, +4189,1.3872332313,0.7,0.6,0.6,0.6,0.5,0.4,0.3,,,,,,,,,,, +4190,1.4139137455,0.7,0.6,0.6,0.6,0.5,0.4,0.3,,,,,,,,,,, +4191,1.4405940035,0.7,0.6,0.6,0.6,0.5,0.4,0.3,,,,,,,,,,, +4192,1.2472926402,0.6,0.6,0.5,0.5,0.5,0.3,0.3,,,,,,,,,,, +4193,1.0539915331,0.5,0.5,0.5,0.4,0.4,0.3,0.3,,,,,,,,,,, +4194,0.8606901699,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +4195,0.6464493055,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +4196,0.4322081849,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4197,0.2179673206,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +4198,0.1487350893,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +4199,0.0795028581,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4200,0.0102706269,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4201,0.006848366,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4202,0.0034263613,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4203,4.25412098491646E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4204,0.0430178764,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4205,0.0860311399,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4206,0.1290446597,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +4207,0.3200572547,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +4208,0.5110698496,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4209,0.7020824446,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4210,0.8729117982,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +4211,1.0437408955,0.5,0.5,0.5,0.4,0.4,0.3,0.2,,,,,,,,,,, +4212,1.2145699928,0.6,0.5,0.5,0.5,0.5,0.3,0.3,,,,,,,,,,, +4213,1.2243009101,0.6,0.5,0.5,0.5,0.5,0.3,0.3,,,,,,,,,,, +4214,1.2340318275,0.6,0.5,0.5,0.5,0.5,0.3,0.3,,,,,,,,,,, +4215,1.2437630011,0.6,0.6,0.5,0.5,0.5,0.3,0.3,,,,,,,,,,, +4216,1.0844238745,0.5,0.5,0.5,0.4,0.4,0.3,0.3,,,,,,,,,,, +4217,0.9250850042,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +4218,0.7657458776,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4219,0.578483316,0.3,0.3,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4220,0.3912210106,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +4221,0.2039584489,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +4222,0.1392530124,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +4223,0.0745478323,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4224,0.0098423958,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4225,0.006562366,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4226,0.0032823362,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4227,2.29620024246093E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4228,0.0466907717,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4229,0.0933789807,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4230,0.140067446,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +4231,0.3418762824,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +4232,0.5436853751,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4233,0.7454942116,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4234,0.9405446336,0.4,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +4235,1.1355947994,0.5,0.5,0.5,0.5,0.4,0.3,0.3,,,,,,,,,,, +4236,1.3306449652,0.6,0.6,0.6,0.5,0.5,0.3,0.3,,,,,,,,,,, +4237,1.356706838,0.6,0.6,0.6,0.5,0.5,0.3,0.3,,,,,,,,,,, +4238,1.3827687107,0.7,0.6,0.6,0.6,0.5,0.4,0.3,,,,,,,,,,, +4239,1.4088305835,0.7,0.6,0.6,0.6,0.5,0.4,0.3,,,,,,,,,,, +4240,1.2342558095,0.6,0.5,0.5,0.5,0.5,0.3,0.3,,,,,,,,,,, +4241,1.0596810356,0.5,0.5,0.5,0.4,0.4,0.3,0.3,,,,,,,,,,, +4242,0.8851060053,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +4243,0.6692447309,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4244,0.4533832002,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4245,0.2375216696,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +4246,0.1621173751,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +4247,0.0867130807,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4248,0.0113087862,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4249,0.0075397888,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4250,0.0037705351,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4251,1.47612872729631E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4252,0.0523290197,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4253,0.1046562454,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4254,0.1569837274,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +4255,0.372279665,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +4256,0.5875756026,0.3,0.3,0.3,0.2,0.2,0.1,0.1,,,,,,,,,,, +4257,0.8028717965,0.4,0.4,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4258,1.0197942947,0.5,0.5,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +4259,1.2367170492,0.6,0.5,0.5,0.5,0.5,0.3,0.3,,,,,,,,,,, +4260,1.4536398036,0.7,0.6,0.6,0.6,0.5,0.4,0.3,,,,,,,,,,, +4261,1.4832354158,0.7,0.7,0.6,0.6,0.6,0.4,0.4,,,,,,,,,,, +4262,1.512831028,0.7,0.7,0.7,0.6,0.6,0.4,0.4,,,,,,,,,,, +4263,1.5424266401,0.7,0.7,0.7,0.6,0.6,0.4,0.4,,,,,,,,,,, +4264,1.3461578993,0.6,0.6,0.6,0.5,0.5,0.3,0.3,,,,,,,,,,, +4265,1.1498889022,0.5,0.5,0.5,0.5,0.4,0.3,0.3,,,,,,,,,,, +4266,0.9536201614,0.5,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +4267,0.7194451524,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4268,0.4852701435,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4269,0.2510951345,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +4270,0.1712304198,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +4271,0.0913659614,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4272,0.011501503,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4273,0.0076681812,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4274,0.0038348594,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4275,1.47612872729631E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4276,0.0532134155,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4277,0.1064255497,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4278,0.1596374276,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +4279,0.375834675,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +4280,0.5920321788,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +4281,0.8082294262,0.4,0.4,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4282,1.0277026031,0.5,0.5,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +4283,1.24717578,0.6,0.6,0.5,0.5,0.5,0.3,0.3,,,,,,,,,,, +4284,1.4666492131,0.7,0.6,0.6,0.6,0.6,0.4,0.3,,,,,,,,,,, +4285,1.487865232,0.7,0.7,0.6,0.6,0.6,0.4,0.4,,,,,,,,,,, +4286,1.509081251,0.7,0.7,0.7,0.6,0.6,0.4,0.4,,,,,,,,,,, +4287,1.5302975261,0.7,0.7,0.7,0.6,0.6,0.4,0.4,,,,,,,,,,, +4288,1.3280027973,0.6,0.6,0.6,0.5,0.5,0.3,0.3,,,,,,,,,,, +4289,1.1257080685,0.5,0.5,0.5,0.5,0.4,0.3,0.3,,,,,,,,,,, +4290,0.9234133397,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +4291,0.6950675016,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4292,0.4667219197,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4293,0.2383760816,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +4294,0.1624187514,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +4295,0.0864614212,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4296,0.010504091,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4297,0.0070031545,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4298,0.0035024742,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4299,1.47612872729631E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4300,0.0517852097,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4301,0.1035691381,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4302,0.1553528102,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +4303,0.3681603433,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +4304,0.5809676201,0.3,0.3,0.3,0.2,0.2,0.1,0.1,,,,,,,,,,, +4305,0.7937748969,0.4,0.4,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4306,0.9767610419,0.5,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +4307,1.1597474432,0.5,0.5,0.5,0.5,0.4,0.3,0.3,,,,,,,,,,, +4308,1.3427338445,0.6,0.6,0.6,0.5,0.5,0.3,0.3,,,,,,,,,,, +4309,1.3337791761,0.6,0.6,0.6,0.5,0.5,0.3,0.3,,,,,,,,,,, +4310,1.3248242514,0.6,0.6,0.6,0.5,0.5,0.3,0.3,,,,,,,,,,, +4311,1.315869583,0.6,0.6,0.6,0.5,0.5,0.3,0.3,,,,,,,,,,, +4312,1.1338421528,0.5,0.5,0.5,0.5,0.4,0.3,0.3,,,,,,,,,,, +4313,0.9518147227,0.4,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +4314,0.7697872926,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4315,0.579172176,0.3,0.3,0.3,0.2,0.2,0.1,0.1,,,,,,,,,,, +4316,0.3885570595,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +4317,0.197941943,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +4318,0.1350606531,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +4319,0.072179107,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4320,0.0092978171,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4321,0.0061989718,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4322,0.0031001266,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4323,1.14810012123047E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4324,0.0475969507,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4325,0.0951926201,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4326,0.1427882895,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +4327,0.3397779244,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +4328,0.5367675594,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4329,0.7337571943,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4330,0.9011063694,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +4331,1.0684555445,0.5,0.5,0.5,0.4,0.4,0.3,0.3,,,,,,,,,,, +4332,1.2358047196,0.6,0.5,0.5,0.5,0.5,0.3,0.3,,,,,,,,,,, +4333,1.2287446727,0.6,0.5,0.5,0.5,0.5,0.3,0.3,,,,,,,,,,, +4334,1.2216843695,0.6,0.5,0.5,0.5,0.5,0.3,0.3,,,,,,,,,,, +4335,1.2146240663,0.6,0.5,0.5,0.5,0.5,0.3,0.3,,,,,,,,,,, +4336,1.0552623877,0.5,0.5,0.5,0.4,0.4,0.3,0.3,,,,,,,,,,, +4337,0.8959009654,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +4338,0.7365392869,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4339,0.5562383636,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4340,0.375937184,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +4341,0.1956362607,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +4342,0.1333472162,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +4343,0.0710581717,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4344,0.0087691272,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4345,0.0058463411,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4346,0.002923555,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4347,8.20071515164618E-007,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4348,0.0417600917,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4349,0.0835191584,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4350,0.1252784813,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +4351,0.3142806197,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +4352,0.5032830143,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4353,0.6922851527,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4354,0.8685121145,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +4355,1.04473882,0.5,0.5,0.5,0.4,0.4,0.3,0.2,,,,,,,,,,, +4356,1.2209657818,0.6,0.5,0.5,0.5,0.5,0.3,0.3,,,,,,,,,,, +4357,1.2258349564,0.6,0.5,0.5,0.5,0.5,0.3,0.3,,,,,,,,,,, +4358,1.230704131,0.6,0.5,0.5,0.5,0.5,0.3,0.3,,,,,,,,,,, +4359,1.2355733057,0.6,0.5,0.5,0.5,0.5,0.3,0.3,,,,,,,,,,, +4360,1.0669068907,0.5,0.5,0.5,0.4,0.4,0.3,0.3,,,,,,,,,,, +4361,0.8982404757,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +4362,0.7295740607,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4363,0.5491039977,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4364,0.3686336783,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +4365,0.1881636152,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +4366,0.1285613301,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +4367,0.0689587886,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4368,0.0093565034,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4369,0.0062381815,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4370,0.0031198596,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4371,1.47612872729631E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4372,0.0476341102,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4373,0.0952669391,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4374,0.142899768,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +4375,0.35262742,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +4376,0.562355072,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4377,0.772082724,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4378,0.9811899407,0.5,0.4,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +4379,1.1902971573,0.6,0.5,0.5,0.5,0.4,0.3,0.3,,,,,,,,,,, +4380,1.3994041177,0.7,0.6,0.6,0.6,0.5,0.4,0.3,,,,,,,,,,, +4381,1.4081199403,0.7,0.6,0.6,0.6,0.5,0.4,0.3,,,,,,,,,,, +4382,1.4168360191,0.7,0.6,0.6,0.6,0.5,0.4,0.3,,,,,,,,,,, +4383,1.4255515854,0.7,0.6,0.6,0.6,0.5,0.4,0.3,,,,,,,,,,, +4384,1.2376544934,0.6,0.5,0.5,0.5,0.5,0.3,0.3,,,,,,,,,,, +4385,1.0497571451,0.5,0.5,0.5,0.4,0.4,0.3,0.2,,,,,,,,,,, +4386,0.8618600531,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +4387,0.6503202993,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +4388,0.4387805456,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4389,0.2272407918,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +4390,0.1550117117,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +4391,0.0827826316,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4392,0.0105538079,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4393,0.0070362136,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4394,0.0035183631,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4395,8.20071515164618E-007,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4396,0.0502337369,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4397,0.1004669613,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4398,0.1506999294,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +4399,0.3619834109,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +4400,0.573266636,0.3,0.3,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4401,0.7845501175,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4402,0.9829802593,0.5,0.4,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +4403,1.1814098885,0.6,0.5,0.5,0.5,0.4,0.3,0.3,,,,,,,,,,, +4404,1.3798400303,0.7,0.6,0.6,0.6,0.5,0.4,0.3,,,,,,,,,,, +4405,1.3878621237,0.7,0.6,0.6,0.6,0.5,0.4,0.3,,,,,,,,,,, +4406,1.3958839607,0.7,0.6,0.6,0.6,0.5,0.4,0.3,,,,,,,,,,, +4407,1.4039063103,0.7,0.6,0.6,0.6,0.5,0.4,0.3,,,,,,,,,,, +4408,1.2072836574,0.6,0.5,0.5,0.5,0.5,0.3,0.3,,,,,,,,,,, +4409,1.0106610045,0.5,0.4,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +4410,0.8140386078,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +4411,0.609284177,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +4412,0.4045300024,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4413,0.1997758279,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +4414,0.1357290114,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +4415,0.0716824511,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4416,0.0076358909,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4417,0.0050905939,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4418,0.002545297,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4419,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4420,0.0408977353,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4421,0.0817954706,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4422,0.1226932058,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +4423,0.2990834131,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +4424,0.4754736204,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4425,0.6518638277,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +4426,0.8323682313,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +4427,1.0128726348,0.5,0.4,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +4428,1.1933767821,0.6,0.5,0.5,0.5,0.5,0.3,0.3,,,,,,,,,,, +4429,1.2028803859,0.6,0.5,0.5,0.5,0.5,0.3,0.3,,,,,,,,,,, +4430,1.2123837334,0.6,0.5,0.5,0.5,0.5,0.3,0.3,,,,,,,,,,, +4431,1.2218870809,0.6,0.5,0.5,0.5,0.5,0.3,0.3,,,,,,,,,,, +4432,1.0539771819,0.5,0.5,0.5,0.4,0.4,0.3,0.3,,,,,,,,,,, +4433,0.8860672829,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +4434,0.7181573839,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4435,0.5397644082,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4436,0.3613716888,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +4437,0.1829787131,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +4438,0.124785157,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +4439,0.0665913447,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4440,0.0083977886,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4441,0.0055985257,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4442,0.0027992629,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4443,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4444,0.0367545802,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4445,0.0735091604,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4446,0.1102637407,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4447,0.2791436305,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +4448,0.4480237766,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4449,0.6169036665,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +4450,0.7868452926,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4451,0.9567871751,0.5,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +4452,1.1267288013,0.5,0.5,0.5,0.5,0.4,0.3,0.3,,,,,,,,,,, +4453,1.1532148048,0.5,0.5,0.5,0.5,0.4,0.3,0.3,,,,,,,,,,, +4454,1.1797010645,0.6,0.5,0.5,0.5,0.4,0.3,0.3,,,,,,,,,,, +4455,1.2061873243,0.6,0.5,0.5,0.5,0.5,0.3,0.3,,,,,,,,,,, +4456,1.0436583758,0.5,0.5,0.5,0.4,0.4,0.3,0.2,,,,,,,,,,, +4457,0.881129171,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +4458,0.7186002225,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4459,0.538454344,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4460,0.3583087217,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +4461,0.1781628431,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +4462,0.1211817115,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +4463,0.0642005799,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4464,0.0072194483,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4465,0.004813051,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4466,0.0024063974,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4467,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4468,0.0341549535,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4469,0.0683096508,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4470,0.1024646043,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4471,0.2456626733,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +4472,0.388860486,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +4473,0.532058555,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4474,0.6960864404,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4475,0.8601143259,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +4476,1.0241422114,0.5,0.5,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +4477,1.0565491312,0.5,0.5,0.5,0.4,0.4,0.3,0.3,,,,,,,,,,, +4478,1.0889557947,0.5,0.5,0.5,0.4,0.4,0.3,0.3,,,,,,,,,,, +4479,1.1213627146,0.5,0.5,0.5,0.5,0.4,0.3,0.3,,,,,,,,,,, +4480,0.9826478741,0.5,0.4,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +4481,0.8439332898,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +4482,0.7052184493,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4483,0.5336612822,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4484,0.3621041152,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +4485,0.1905469481,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +4486,0.1303588243,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +4487,0.0701707006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4488,0.0099825768,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4489,0.0066551366,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4490,0.0033274402,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4491,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4492,0.0487055849,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4493,0.0974109136,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4494,0.1461164985,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +4495,0.3478361522,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +4496,0.5495560621,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4497,0.7512757158,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4498,0.962499742,0.5,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +4499,1.1737237683,0.6,0.5,0.5,0.5,0.4,0.3,0.3,,,,,,,,,,, +4500,1.3849480508,0.7,0.6,0.6,0.6,0.5,0.4,0.3,,,,,,,,,,, +4501,1.4229688727,0.7,0.6,0.6,0.6,0.5,0.4,0.3,,,,,,,,,,, +4502,1.4609899509,0.7,0.6,0.6,0.6,0.6,0.4,0.3,,,,,,,,,,, +4503,1.499011029,0.7,0.7,0.6,0.6,0.6,0.4,0.4,,,,,,,,,,, +4504,1.3131602717,0.6,0.6,0.6,0.5,0.5,0.3,0.3,,,,,,,,,,, +4505,1.1273095144,0.5,0.5,0.5,0.5,0.4,0.3,0.3,,,,,,,,,,, +4506,0.9414587571,0.4,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +4507,0.7105109858,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4508,0.4795629583,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4509,0.248615187,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +4510,0.169314784,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +4511,0.0900141248,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4512,0.0107137218,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4513,0.0071425666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4514,0.0035711552,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4515,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4516,0.045556254,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4517,0.0911125081,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4518,0.1366690184,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +4519,0.3478587041,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +4520,0.5590486462,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4521,0.7702385882,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4522,0.9938269864,0.5,0.4,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +4523,1.217415641,0.6,0.5,0.5,0.5,0.5,0.3,0.3,,,,,,,,,,, +4524,1.4410040392,0.7,0.6,0.6,0.6,0.5,0.4,0.3,,,,,,,,,,, +4525,1.4669967184,0.7,0.6,0.6,0.6,0.6,0.4,0.3,,,,,,,,,,, +4526,1.4929893976,0.7,0.7,0.6,0.6,0.6,0.4,0.4,,,,,,,,,,, +4527,1.5189820769,0.7,0.7,0.7,0.6,0.6,0.4,0.4,,,,,,,,,,, +4528,1.3216459617,0.6,0.6,0.6,0.5,0.5,0.3,0.3,,,,,,,,,,, +4529,1.1243098466,0.5,0.5,0.5,0.5,0.4,0.3,0.3,,,,,,,,,,, +4530,0.9269734752,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +4531,0.6980766515,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4532,0.4691795715,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4533,0.2402827478,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +4534,0.1634902261,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +4535,0.0866977043,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4536,0.0099054388,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4537,0.0066036259,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4538,0.0033018129,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4539,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4540,0.0447625786,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4541,0.0895254134,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4542,0.134287992,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +4543,0.34504509,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +4544,0.555802188,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4545,0.7665595423,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4546,0.9903360445,0.5,0.4,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +4547,1.2141128029,0.6,0.5,0.5,0.5,0.5,0.3,0.3,,,,,,,,,,, +4548,1.4378893051,0.7,0.6,0.6,0.6,0.5,0.4,0.3,,,,,,,,,,, +4549,1.4657135628,0.7,0.6,0.6,0.6,0.6,0.4,0.3,,,,,,,,,,, +4550,1.4935375642,0.7,0.7,0.6,0.6,0.6,0.4,0.4,,,,,,,,,,, +4551,1.5213618219,0.7,0.7,0.7,0.6,0.6,0.4,0.4,,,,,,,,,,, +4552,1.3224883289,0.6,0.6,0.6,0.5,0.5,0.3,0.3,,,,,,,,,,, +4553,1.1236145797,0.5,0.5,0.5,0.5,0.4,0.3,0.3,,,,,,,,,,, +4554,0.9247408305,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +4555,0.6957291968,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4556,0.4667173068,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4557,0.2377054168,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +4558,0.1616701799,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +4559,0.0856349429,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4560,0.0095997059,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4561,0.0063998894,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4562,0.0031998165,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4563,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4564,0.0442715607,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4565,0.0885431215,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4566,0.1328146822,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +4567,0.3388309981,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +4568,0.5448470577,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4569,0.7508631173,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4570,0.9641785822,0.5,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +4571,1.1774940471,0.6,0.5,0.5,0.5,0.4,0.3,0.3,,,,,,,,,,, +4572,1.3908095119,0.7,0.6,0.6,0.6,0.5,0.4,0.3,,,,,,,,,,, +4573,1.4066379173,0.7,0.6,0.6,0.6,0.5,0.4,0.3,,,,,,,,,,, +4574,1.4224665789,0.7,0.6,0.6,0.6,0.5,0.4,0.3,,,,,,,,,,, +4575,1.4382949842,0.7,0.6,0.6,0.6,0.5,0.4,0.3,,,,,,,,,,, +4576,1.2419098958,0.6,0.5,0.5,0.5,0.5,0.3,0.3,,,,,,,,,,, +4577,1.0455248073,0.5,0.5,0.5,0.4,0.4,0.3,0.2,,,,,,,,,,, +4578,0.8491397188,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +4579,0.6373372859,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +4580,0.4255351092,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4581,0.2137326763,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +4582,0.1453692083,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +4583,0.0770057404,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4584,0.0086422724,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4585,0.0057615149,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4586,0.0028807575,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4587,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4588,0.0430663119,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4589,0.0861323675,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4590,0.1291986794,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +4591,0.3261011817,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +4592,0.5230036841,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4593,0.7199061864,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4594,0.9132011429,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +4595,1.1064958431,0.5,0.5,0.5,0.4,0.4,0.3,0.3,,,,,,,,,,, +4596,1.2997907996,0.6,0.6,0.6,0.5,0.5,0.3,0.3,,,,,,,,,,, +4597,1.3066729935,0.6,0.6,0.6,0.5,0.5,0.3,0.3,,,,,,,,,,, +4598,1.3135554437,0.6,0.6,0.6,0.5,0.5,0.3,0.3,,,,,,,,,,, +4599,1.3204378939,0.6,0.6,0.6,0.5,0.5,0.3,0.3,,,,,,,,,,, +4600,1.1348690362,0.5,0.5,0.5,0.5,0.4,0.3,0.3,,,,,,,,,,, +4601,0.9493004347,0.4,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +4602,0.7637318333,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4603,0.5724053047,0.3,0.3,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4604,0.3810787761,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +4605,0.1897522475,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +4606,0.1291991919,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +4607,0.0686458801,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4608,0.0080928245,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4609,0.0053953018,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4610,0.0026975227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4611,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4612,0.04242845,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4613,0.0848569,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4614,0.12728535,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +4615,0.3235766428,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +4616,0.5198679356,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4617,0.7161592284,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4618,0.8975364956,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +4619,1.078914019,0.5,0.5,0.5,0.4,0.4,0.3,0.3,,,,,,,,,,, +4620,1.2602912862,0.6,0.6,0.5,0.5,0.5,0.3,0.3,,,,,,,,,,, +4621,1.2664305466,0.6,0.6,0.5,0.5,0.5,0.3,0.3,,,,,,,,,,, +4622,1.2725700633,0.6,0.6,0.5,0.5,0.5,0.3,0.3,,,,,,,,,,, +4623,1.2787093236,0.6,0.6,0.6,0.5,0.5,0.3,0.3,,,,,,,,,,, +4624,1.0961411588,0.5,0.5,0.5,0.4,0.4,0.3,0.3,,,,,,,,,,, +4625,0.9135727378,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +4626,0.731004573,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4627,0.545630226,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4628,0.360255879,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +4629,0.174881532,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +4630,0.1185977174,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +4631,0.0623139029,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4632,0.0060300884,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4633,0.0040201443,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4634,0.002009944,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4635,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4636,0.0385021014,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4637,0.0770042027,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4638,0.1155063041,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4639,0.2860796416,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +4640,0.4566529791,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4641,0.6272260604,0.3,0.3,0.3,0.3,0.2,0.2,0.1,,,,,,,,,,, +4642,0.7968534967,0.4,0.4,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4643,0.9664806767,0.5,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +4644,1.136108113,0.5,0.5,0.5,0.5,0.4,0.3,0.3,,,,,,,,,,, +4645,1.1442486041,0.5,0.5,0.5,0.5,0.4,0.3,0.3,,,,,,,,,,, +4646,1.1523893515,0.5,0.5,0.5,0.5,0.4,0.3,0.3,,,,,,,,,,, +4647,1.1605298427,0.5,0.5,0.5,0.5,0.4,0.3,0.3,,,,,,,,,,, +4648,1.0157505733,0.5,0.4,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +4649,0.8709713039,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +4650,0.7261920346,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4651,0.5496993183,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4652,0.3732068584,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +4653,0.1967141422,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +4654,0.1339517626,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +4655,0.0711893831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4656,0.0084270036,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4657,0.0056180024,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4658,0.0028090012,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4659,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4660,0.0383247609,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4661,0.0766495218,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4662,0.1149742827,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4663,0.3064750765,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +4664,0.4979758702,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4665,0.689476664,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4666,0.8735509414,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +4667,1.0576249625,0.5,0.5,0.5,0.4,0.4,0.3,0.3,,,,,,,,,,, +4668,1.2416989836,0.6,0.5,0.5,0.5,0.5,0.3,0.3,,,,,,,,,,, +4669,1.2597666967,0.6,0.6,0.5,0.5,0.5,0.3,0.3,,,,,,,,,,, +4670,1.2778344098,0.6,0.6,0.6,0.5,0.5,0.3,0.3,,,,,,,,,,, +4671,1.295902123,0.6,0.6,0.6,0.5,0.5,0.3,0.3,,,,,,,,,,, +4672,1.1216384636,0.5,0.5,0.5,0.5,0.4,0.3,0.3,,,,,,,,,,, +4673,0.9473750605,0.4,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +4674,0.7731116575,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4675,0.5791327101,0.3,0.3,0.3,0.2,0.2,0.1,0.1,,,,,,,,,,, +4676,0.385154019,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +4677,0.1911750716,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +4678,0.1295420843,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +4679,0.0679090971,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4680,0.0062761098,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4681,0.0041841586,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4682,0.0020919512,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4683,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4684,0.0301319902,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4685,0.0602637241,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4686,0.0903957143,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4687,0.2471241945,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +4688,0.4038526746,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4689,0.5605808985,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4690,0.7504574381,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4691,0.9403339778,0.4,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +4692,1.1302102611,0.5,0.5,0.5,0.5,0.4,0.3,0.3,,,,,,,,,,, +4693,1.1669889309,0.6,0.5,0.5,0.5,0.4,0.3,0.3,,,,,,,,,,, +4694,1.2037673445,0.6,0.5,0.5,0.5,0.5,0.3,0.3,,,,,,,,,,, +4695,1.2405460143,0.6,0.5,0.5,0.5,0.5,0.3,0.3,,,,,,,,,,, +4696,1.08844325,0.5,0.5,0.5,0.4,0.4,0.3,0.3,,,,,,,,,,, +4697,0.936340742,0.4,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +4698,0.7842379778,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4699,0.5922530855,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +4700,0.4002684496,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4701,0.2082835573,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +4702,0.1416499277,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +4703,0.0750162981,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4704,0.0083824122,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4705,0.0055882748,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4706,0.0027941374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4707,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4708,0.0421352744,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4709,0.0842702926,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4710,0.1264055671,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +4711,0.3309918832,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +4712,0.5355781994,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4713,0.7401647718,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4714,0.9484565299,0.4,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +4715,1.1567480316,0.5,0.5,0.5,0.5,0.4,0.3,0.3,,,,,,,,,,, +4716,1.3650397897,0.6,0.6,0.6,0.6,0.5,0.3,0.3,,,,,,,,,,, +4717,1.3854539324,0.7,0.6,0.6,0.6,0.5,0.4,0.3,,,,,,,,,,, +4718,1.4058675626,0.7,0.6,0.6,0.6,0.5,0.4,0.3,,,,,,,,,,, +4719,1.4262817053,0.7,0.6,0.6,0.6,0.5,0.4,0.3,,,,,,,,,,, +4720,1.2257437235,0.6,0.5,0.5,0.5,0.5,0.3,0.3,,,,,,,,,,, +4721,1.0252054853,0.5,0.5,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +4722,0.8246675035,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +4723,0.615906767,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +4724,0.4071460306,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4725,0.1983855504,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +4726,0.1345939812,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +4727,0.0708026682,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4728,0.0070110989,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4729,0.0046741514,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4730,0.0023369475,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4731,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4732,0.0339122636,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4733,0.0678247835,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4734,0.1017370471,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4735,0.2664115077,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +4736,0.4310859683,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4737,0.5957604289,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +4738,0.7586653289,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4739,0.9215704852,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +4740,1.0844753853,0.5,0.5,0.5,0.4,0.4,0.3,0.3,,,,,,,,,,, +4741,1.0713560349,0.5,0.5,0.5,0.4,0.4,0.3,0.3,,,,,,,,,,, +4742,1.0582366846,0.5,0.5,0.5,0.4,0.4,0.3,0.3,,,,,,,,,,, +4743,1.0451173343,0.5,0.5,0.5,0.4,0.4,0.3,0.2,,,,,,,,,,, +4744,0.8885577376,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +4745,0.7319978846,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4746,0.5754382879,0.3,0.3,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4747,0.4301556997,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4748,0.2848728551,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +4749,0.1395902669,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +4750,0.0949606936,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4751,0.0503311204,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4752,0.0057015472,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4753,0.0038010315,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4754,0.0019005157,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4755,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4756,0.0360267668,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4757,0.0720532772,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4758,0.108080044,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4759,0.2891618291,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +4760,0.4702436143,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4761,0.6513256558,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +4762,0.8432910713,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +4763,1.0352564868,0.5,0.5,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +4764,1.2272219024,0.6,0.5,0.5,0.5,0.5,0.3,0.3,,,,,,,,,,, +4765,1.2475194412,0.6,0.6,0.5,0.5,0.5,0.3,0.3,,,,,,,,,,, +4766,1.26781698,0.6,0.6,0.5,0.5,0.5,0.3,0.3,,,,,,,,,,, +4767,1.2881147751,0.6,0.6,0.6,0.5,0.5,0.3,0.3,,,,,,,,,,, +4768,1.1193443136,0.5,0.5,0.5,0.5,0.4,0.3,0.3,,,,,,,,,,, +4769,0.9505741083,0.4,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +4770,0.7818036467,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4771,0.5882498552,0.3,0.3,0.3,0.2,0.2,0.1,0.1,,,,,,,,,,, +4772,0.3946960636,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +4773,0.2011422721,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +4774,0.1367271922,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +4775,0.0723121123,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4776,0.0078970324,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4777,0.0052646029,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4778,0.0026324296,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4779,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4780,0.0422880128,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4781,0.0845757693,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4782,0.126863782,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +4783,0.3347865079,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +4784,0.54270949,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4785,0.7506324722,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4786,0.9776139163,0.5,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +4787,1.2045956167,0.6,0.5,0.5,0.5,0.5,0.3,0.3,,,,,,,,,,, +4788,1.4315770609,0.7,0.6,0.6,0.6,0.5,0.4,0.3,,,,,,,,,,, +4789,1.4528276766,0.7,0.6,0.6,0.6,0.5,0.4,0.3,,,,,,,,,,, +4790,1.4740782922,0.7,0.7,0.6,0.6,0.6,0.4,0.4,,,,,,,,,,, +4791,1.4953289079,0.7,0.7,0.6,0.6,0.6,0.4,0.4,,,,,,,,,,, +4792,1.2971914291,0.6,0.6,0.6,0.5,0.5,0.3,0.3,,,,,,,,,,, +4793,1.0990536941,0.5,0.5,0.5,0.4,0.4,0.3,0.3,,,,,,,,,,, +4794,0.9009162153,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +4795,0.6768698584,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4796,0.4528232452,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4797,0.2287766319,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +4798,0.155126778,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +4799,0.081476924,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4800,0.0078270701,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4801,0.0052179613,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4802,0.0026091088,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4803,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4804,0.0414307818,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4805,0.0828613073,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4806,0.124292089,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +4807,0.3289483675,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +4808,0.5336049023,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4809,0.7382614371,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4810,0.9610497531,0.5,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +4811,1.183838069,0.6,0.5,0.5,0.5,0.4,0.3,0.3,,,,,,,,,,, +4812,1.4066261288,0.7,0.6,0.6,0.6,0.5,0.4,0.3,,,,,,,,,,, +4813,1.4341643865,0.7,0.6,0.6,0.6,0.5,0.4,0.3,,,,,,,,,,, +4814,1.4617029005,0.7,0.6,0.6,0.6,0.6,0.4,0.3,,,,,,,,,,, +4815,1.4892411583,0.7,0.7,0.6,0.6,0.6,0.4,0.4,,,,,,,,,,, +4816,1.2889607301,0.6,0.6,0.6,0.5,0.5,0.3,0.3,,,,,,,,,,, +4817,1.088680302,0.5,0.5,0.5,0.4,0.4,0.3,0.3,,,,,,,,,,, +4818,0.8884001301,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +4819,0.6656159145,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4820,0.4428316988,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4821,0.2200474832,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +4822,0.1490587613,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +4823,0.0780700394,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4824,0.0070815738,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4825,0.0047210492,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4826,0.0023605246,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4827,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4828,0.0400107767,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4829,0.0800215534,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4830,0.12003233,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +4831,0.3236437862,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +4832,0.5272549861,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4833,0.7308664422,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4834,0.9428326332,0.4,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +4835,1.1547988241,0.5,0.5,0.5,0.5,0.4,0.3,0.3,,,,,,,,,,, +4836,1.3667647589,0.6,0.6,0.6,0.6,0.5,0.3,0.3,,,,,,,,,,, +4837,1.3669133968,0.6,0.6,0.6,0.6,0.5,0.3,0.3,,,,,,,,,,, +4838,1.3670620348,0.6,0.6,0.6,0.6,0.5,0.3,0.3,,,,,,,,,,, +4839,1.3672104165,0.6,0.6,0.6,0.6,0.5,0.3,0.3,,,,,,,,,,, +4840,1.1574222842,0.5,0.5,0.5,0.5,0.4,0.3,0.3,,,,,,,,,,, +4841,0.9476341519,0.4,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +4842,0.7378460196,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4843,0.5468982616,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4844,0.3559502473,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +4845,0.1650022329,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +4846,0.1114584823,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4847,0.057914988,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4848,0.0043714937,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4849,0.0029143291,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4850,0.0014571646,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4851,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4852,0.0286020443,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4853,0.0572040885,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4854,0.0858063891,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4855,0.247844576,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +4856,0.409882763,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4857,0.5719212062,0.3,0.3,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4858,0.7193403371,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4859,0.8667592116,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +4860,1.0141783424,0.5,0.4,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +4861,1.0287066782,0.5,0.5,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +4862,1.0432350139,0.5,0.5,0.5,0.4,0.4,0.3,0.2,,,,,,,,,,, +4863,1.0577633496,0.5,0.5,0.5,0.4,0.4,0.3,0.3,,,,,,,,,,, +4864,0.8897617051,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +4865,0.7217598043,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4866,0.5537579035,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4867,0.4060832692,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4868,0.2584086348,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +4869,0.1107337441,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4870,0.0745967803,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4871,0.0384598164,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4872,0.0023225963,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4873,0.0015483975,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4874,0.0007741988,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4875,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4876,0.0108610784,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4877,0.0217221568,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4878,0.0325832352,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4879,0.1236319314,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +4880,0.2146803714,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +4881,0.3057290677,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +4882,0.4315972316,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4883,0.5574651393,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4884,0.6833333033,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4885,0.6855864498,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4886,0.6878398525,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4887,0.690092999,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4888,0.5782677909,0.3,0.3,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4889,0.4664423266,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4890,0.3546168622,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +4891,0.262556659,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +4892,0.1704964558,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +4893,0.0784362526,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4894,0.0533284818,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4895,0.0282209673,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4896,0.0031134528,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4897,0.002075806,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4898,0.001037903,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4899,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4900,0.0152684503,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4901,0.0305371568,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4902,0.045805607,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4903,0.1413539332,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +4904,0.236902003,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +4905,0.3324500729,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +4906,0.4621036357,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4907,0.5917571985,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +4908,0.7214105051,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4909,0.7619876437,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4910,0.8025650385,0.4,0.4,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4911,0.8431421771,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +4912,0.7406383631,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4913,0.6381345492,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +4914,0.5356307352,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4915,0.4026697215,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4916,0.2697084514,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +4917,0.1367471814,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +4918,0.0925983751,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4919,0.0484495688,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4920,0.0043007626,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4921,0.002867175,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4922,0.0014335875,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4923,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4924,0.0279746896,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4925,0.0559493791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4926,0.0839240687,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4927,0.255627311,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +4928,0.4273305533,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4929,0.5990335393,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +4930,0.7882758049,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4931,0.9775180705,0.5,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +4932,1.166760336,0.6,0.5,0.5,0.5,0.4,0.3,0.3,,,,,,,,,,, +4933,1.1842288844,0.6,0.5,0.5,0.5,0.4,0.3,0.3,,,,,,,,,,, +4934,1.2016974327,0.6,0.5,0.5,0.5,0.5,0.3,0.3,,,,,,,,,,, +4935,1.2191659811,0.6,0.5,0.5,0.5,0.5,0.3,0.3,,,,,,,,,,, +4936,1.0456465367,0.5,0.5,0.5,0.4,0.4,0.3,0.2,,,,,,,,,,, +4937,0.8721273485,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +4938,0.6986079041,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4939,0.5208281881,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4940,0.3430484721,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +4941,0.1652690125,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +4942,0.1117547332,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4943,0.0582404539,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4944,0.0047264309,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4945,0.0031508685,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4946,0.0015755624,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4947,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4948,0.0252007977,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4949,0.0504015953,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4950,0.075602393,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4951,0.2100779763,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +4952,0.3445538159,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +4953,0.4790293992,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4954,0.6168175589,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +4955,0.7546054624,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4956,0.8923933658,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +4957,0.906488345,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +4958,0.9205830679,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +4959,0.9346777908,0.4,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +4960,0.789460552,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4961,0.6442430569,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +4962,0.4990258181,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4963,0.3676588183,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +4964,0.2362918186,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +4965,0.1049248188,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4966,0.0707962614,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4967,0.0366679602,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4968,0.0025394027,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4969,0.0016929351,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4970,0.0008464676,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4971,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4972,0.0215368719,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4973,0.0430734875,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4974,0.0646103594,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4975,0.1944984114,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +4976,0.3243864634,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +4977,0.4542747717,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4978,0.6110035082,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +4979,0.7677322446,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4980,0.9244609811,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +4981,0.9483235245,0.4,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +4982,0.9721863242,0.5,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +4983,0.9960488677,0.5,0.4,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +4984,0.8594236719,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +4985,0.7227984761,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4986,0.5861730241,0.3,0.3,0.3,0.2,0.2,0.1,0.1,,,,,,,,,,, +4987,0.4378841049,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4988,0.2895951857,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +4989,0.1413060102,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +4990,0.0955001469,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4991,0.0496942836,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4992,0.0038884203,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4993,0.0025921948,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4994,0.0012962255,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4995,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4996,0.0241487997,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4997,0.0482973431,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4998,0.0724461427,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4999,0.1821463405,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +5000,0.2918465383,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5001,0.401546736,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5002,0.4901828844,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5003,0.5788187765,0.3,0.3,0.3,0.2,0.2,0.1,0.1,,,,,,,,,,, +5004,0.6674549248,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5005,0.7018095145,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5006,0.7361638479,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5007,0.7705184376,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5008,0.6807493092,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5009,0.5909801808,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +5010,0.5012110524,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5011,0.3760460997,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +5012,0.2508811471,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5013,0.1257159382,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +5014,0.0849722226,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5015,0.044228507,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5016,0.0034847914,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5017,0.0023233651,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5018,0.0011616826,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5019,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5020,0.0227008609,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5021,0.0454017218,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5022,0.0681025827,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5023,0.187636463,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +5024,0.3071705996,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5025,0.4267047362,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5026,0.5682757321,0.3,0.3,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5027,0.7098467279,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5028,0.85141798,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +5029,0.8767389694,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +5030,0.9020599588,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +5031,0.9273812045,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +5032,0.8010002395,0.4,0.4,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5033,0.6746190183,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5034,0.5482380534,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5035,0.4089878599,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5036,0.2697376665,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5037,0.130487473,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +5038,0.0880054621,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5039,0.0455234512,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5040,0.0030414402,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5041,0.0020276268,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5042,0.0010138134,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5043,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5044,0.016423726,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5045,0.0328471957,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5046,0.0492709217,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5047,0.1621066117,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +5048,0.2749425579,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5049,0.3877785041,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +5050,0.5402154475,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5051,0.692652391,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5052,0.8450893344,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +5053,0.8746582942,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +5054,0.9042272541,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +5055,0.9337964702,0.4,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +5056,0.8006368453,0.4,0.4,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5057,0.6674772205,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5058,0.534317852,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5059,0.3974230577,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +5060,0.2605280071,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5061,0.1236332128,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +5062,0.0835550365,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5063,0.0434768602,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5064,0.0033984276,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5065,0.0022657038,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5066,0.0011327238,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5067,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5068,0.0330383749,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5069,0.0660767498,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5070,0.0991151247,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5071,0.2945917277,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5072,0.4900685869,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5073,0.6855451899,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5074,0.8857256719,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +5075,1.0859058975,0.5,0.5,0.5,0.4,0.4,0.3,0.3,,,,,,,,,,, +5076,1.2860863795,0.6,0.6,0.6,0.5,0.5,0.3,0.3,,,,,,,,,,, +5077,1.2859051949,0.6,0.6,0.6,0.5,0.5,0.3,0.3,,,,,,,,,,, +5078,1.2857237541,0.6,0.6,0.6,0.5,0.5,0.3,0.3,,,,,,,,,,, +5079,1.2855425695,0.6,0.6,0.6,0.5,0.5,0.3,0.3,,,,,,,,,,, +5080,1.091257633,0.5,0.5,0.5,0.4,0.4,0.3,0.3,,,,,,,,,,, +5081,0.8969729527,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +5082,0.7026880161,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5083,0.5208143494,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5084,0.3389409389,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5085,0.1570672722,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +5086,0.1056849226,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5087,0.054302573,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5088,0.0029202234,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5089,0.001946901,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5090,0.0009733224,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5091,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5092,0.0254370808,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5093,0.0508744178,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5094,0.0763114986,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5095,0.2252692886,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5096,0.3742270786,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +5097,0.5231848686,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5098,0.6899282159,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5099,0.8566715632,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +5100,1.0234151667,0.5,0.5,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +5101,1.0507268797,0.5,0.5,0.5,0.4,0.4,0.3,0.2,,,,,,,,,,, +5102,1.078038849,0.5,0.5,0.5,0.4,0.4,0.3,0.3,,,,,,,,,,, +5103,1.105350562,0.5,0.5,0.5,0.4,0.4,0.3,0.3,,,,,,,,,,, +5104,0.9420140993,0.4,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +5105,0.7786773803,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5106,0.6153409177,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +5107,0.454667381,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5108,0.2939941006,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5109,0.1333205639,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +5110,0.0895869188,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5111,0.0458532737,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5112,0.0021196286,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5113,0.0014130857,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5114,0.0007065429,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5115,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5116,0.0185156772,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5117,0.0370313544,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5118,0.0555470315,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5119,0.1881728411,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +5120,0.3207986506,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5121,0.4534247164,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5122,0.5894084625,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +5123,0.7253922086,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5124,0.8613759547,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +5125,0.878420116,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +5126,0.8954640211,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +5127,0.9125081824,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +5128,0.7753463524,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5129,0.638184266,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +5130,0.5010224359,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5131,0.369773834,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +5132,0.2385252321,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5133,0.1072766302,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5134,0.07214246,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5135,0.0370085461,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5136,0.001874376,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5137,0.001249584,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5138,0.000624792,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5139,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5140,0.0110832665,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5141,0.0221662768,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5142,0.0332495433,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5143,0.1198744663,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +5144,0.206499133,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +5145,0.2931240559,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5146,0.4353231753,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5147,0.5775222947,0.3,0.3,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5148,0.7197211578,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5149,0.778346789,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5150,0.8369724203,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +5151,0.8955980515,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +5152,0.7802542241,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5153,0.6649103967,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5154,0.5495665693,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5155,0.4092003097,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5156,0.2688343065,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5157,0.1284680469,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +5158,0.0864265682,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5159,0.0443853457,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5160,0.0023438669,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5161,0.0015624925,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5162,0.0007813744,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5163,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5164,0.0253625055,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5165,0.0507252673,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5166,0.0760877728,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5167,0.2263758726,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5168,0.3766637161,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +5169,0.5269518159,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5170,0.6626418739,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +5171,0.7983321881,0.4,0.4,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5172,0.9340222461,0.4,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +5173,0.9230235495,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +5174,0.9120248528,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +5175,0.9010258999,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +5176,0.7654570587,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5177,0.6298884738,0.3,0.3,0.3,0.3,0.2,0.2,0.1,,,,,,,,,,, +5178,0.4943196326,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5179,0.3667193239,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +5180,0.2391192714,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5181,0.1115189626,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5182,0.07488073,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5183,0.0382424975,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5184,0.0016045212,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5185,0.0010696808,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5186,0.0005348404,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5187,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5188,0.0150170471,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5189,0.0300343504,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5190,0.0450513975,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5191,0.1490487667,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +5192,0.2530463922,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5193,0.3570437614,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +5194,0.483544918,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5195,0.6100458184,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +5196,0.7365467188,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5197,0.7200468799,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5198,0.7035472973,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5199,0.6870474584,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5200,0.5700091582,0.3,0.3,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5201,0.4529711143,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5202,0.3359330704,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5203,0.2473386944,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5204,0.1587443185,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +5205,0.0701499425,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5206,0.0472071605,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5207,0.0242643785,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5208,0.0013218528,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5209,0.0008810643,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5210,0.0004405322,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5211,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5212,0.009709903,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5213,0.019419806,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5214,0.0291294528,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5215,0.1050534675,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5216,0.1809774823,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +5217,0.2569017534,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5218,0.3627319824,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +5219,0.4685624677,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5220,0.5743926967,0.3,0.3,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5221,0.6076345519,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +5222,0.6408761508,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +5223,0.6741180059,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5224,0.5831869387,0.3,0.3,0.3,0.2,0.2,0.1,0.1,,,,,,,,,,, +5225,0.4922561277,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5226,0.4013250605,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5227,0.2982246445,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5228,0.1951242285,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +5229,0.0920238125,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5230,0.06186517,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5231,0.0317062712,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5232,0.0015473724,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5233,0.0010317525,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5234,0.0005158762,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5235,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5236,0.0192921824,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5237,0.0385841085,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5238,0.0578762909,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5239,0.2062233839,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +5240,0.3545704769,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +5241,0.5029175699,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5242,0.684204373,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5243,0.8654914323,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +5244,1.0467782354,0.5,0.5,0.5,0.4,0.4,0.3,0.2,,,,,,,,,,, +5245,1.0826184358,0.5,0.5,0.5,0.4,0.4,0.3,0.3,,,,,,,,,,, +5246,1.1184586363,0.5,0.5,0.5,0.5,0.4,0.3,0.3,,,,,,,,,,, +5247,1.1542988368,0.5,0.5,0.5,0.5,0.4,0.3,0.3,,,,,,,,,,, +5248,0.9903560337,0.5,0.4,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +5249,0.826413487,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +5250,0.6624706839,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +5251,0.4907231065,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5252,0.3189752728,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5253,0.1472276954,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +5254,0.0986697233,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5255,0.0501117513,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5256,0.0015537792,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5257,0.0010358528,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5258,0.0005179264,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5259,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5260,0.0157971401,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5261,0.0315942802,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5262,0.047391164,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5263,0.1581067129,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +5264,0.2688222617,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5265,0.3795375542,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +5266,0.5233463202,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5267,0.6671548299,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5268,0.8109635959,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +5269,0.8106727268,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +5270,0.8103816014,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +5271,0.8100907323,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +5272,0.688690933,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5273,0.5672908774,0.3,0.3,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5274,0.4458910781,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5275,0.3311143814,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5276,0.2163376847,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5277,0.1015607317,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5278,0.0679928981,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5279,0.0344250646,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5280,0.000857231,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5281,0.0005714873,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5282,0.0002857437,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5283,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5284,0.0142592497,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5285,0.0285187558,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5286,0.0427780055,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5287,0.1673519941,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +5288,0.2919257264,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5289,0.416499715,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5290,0.5845900298,0.3,0.3,0.3,0.2,0.2,0.1,0.1,,,,,,,,,,, +5291,0.7526806008,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5292,0.9207711718,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +5293,0.9477343544,0.4,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +5294,0.974697537,0.5,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +5295,1.0016609759,0.5,0.4,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +5296,0.8593544784,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +5297,0.7170482372,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5298,0.574741996,0.3,0.3,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5299,0.4264958743,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5300,0.2782497526,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5301,0.1300036308,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +5302,0.0870626361,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5303,0.0441218977,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5304,0.001180903,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5305,0.0007872687,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5306,0.0003936343,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5307,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5308,0.0237659288,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5309,0.0475316013,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5310,0.0712975301,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5311,0.2440727596,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5312,0.4168479891,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5313,0.5896229624,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +5314,0.7598470007,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5315,0.930071039,0.4,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +5316,1.1002953336,0.5,0.5,0.5,0.4,0.4,0.3,0.3,,,,,,,,,,, +5317,1.1014911004,0.5,0.5,0.5,0.4,0.4,0.3,0.3,,,,,,,,,,, +5318,1.1026868672,0.5,0.5,0.5,0.4,0.4,0.3,0.3,,,,,,,,,,, +5319,1.1038828902,0.5,0.5,0.5,0.4,0.4,0.3,0.3,,,,,,,,,,, +5320,0.9264435039,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +5321,0.7490041177,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5322,0.5715649877,0.3,0.3,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5323,0.4193125603,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5324,0.267060133,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5325,0.1148079619,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5326,0.0768742726,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5327,0.0389405834,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5328,0.0010068941,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5329,0.0006714336,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5330,0.0003357168,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5331,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5332,0.0116755119,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5333,0.0233510238,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5334,0.0350265358,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5335,0.1377538192,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +5336,0.2404813589,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5337,0.3432086424,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5338,0.4815121658,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5339,0.6198156892,0.3,0.3,0.3,0.3,0.2,0.2,0.1,,,,,,,,,,, +5340,0.7581192126,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5341,0.7936254902,0.4,0.4,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5342,0.8291315115,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +5343,0.8646375328,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +5344,0.7428781834,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5345,0.621118834,0.3,0.3,0.3,0.3,0.2,0.2,0.1,,,,,,,,,,, +5346,0.4993594846,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5347,0.3694939846,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +5348,0.2396284845,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5349,0.1097632408,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5350,0.073452268,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5351,0.0371412952,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5352,0.0008305787,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5353,0.0005535483,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5354,0.0002767741,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5355,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5356,0.0111550228,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5357,0.0223100456,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5358,0.0334650684,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5359,0.112139398,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5360,0.1908134713,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +5361,0.2694875447,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5362,0.3726658675,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +5363,0.475843934,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5364,0.5790222567,0.3,0.3,0.3,0.2,0.2,0.1,0.1,,,,,,,,,,, +5365,0.592754098,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +5366,0.6064859392,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +5367,0.6202177805,0.3,0.3,0.3,0.3,0.2,0.2,0.1,,,,,,,,,,, +5368,0.5279771615,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5369,0.4357365426,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5370,0.3434959237,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5371,0.2537982952,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5372,0.1641006668,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +5373,0.0744030384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5374,0.049767065,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5375,0.0251310916,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5376,0.0004953744,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5377,0.0003300788,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5378,0.0001650394,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5379,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5380,0.0154860255,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5381,0.0309720509,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5382,0.0464583327,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5383,0.1694910994,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +5384,0.2925241224,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5385,0.4155571453,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5386,0.5607777157,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5387,0.705998286,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5388,0.8512191127,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +5389,0.8487796562,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +5390,0.8463401997,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +5391,0.8439007432,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +5392,0.7082993555,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5393,0.5726979677,0.3,0.3,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5394,0.4370968362,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5395,0.3216153905,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5396,0.2061339449,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +5397,0.0906524992,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5398,0.0606078979,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5399,0.0305632966,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5400,0.000518439,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5401,0.0003457114,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5402,0.0001727276,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5403,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5404,0.0109535927,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5405,0.0219069292,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5406,0.0328605219,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5407,0.1472174445,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +5408,0.2615743671,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5409,0.3759310334,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +5410,0.5373129069,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5411,0.6986945241,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5412,0.8600761413,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +5413,0.8825053535,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +5414,0.9049345657,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +5415,0.9273637779,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +5416,0.7834202127,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5417,0.6394766475,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +5418,0.4955330822,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5419,0.364516663,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +5420,0.2334999876,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5421,0.1024835684,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5422,0.0685510593,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5423,0.0346188065,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5424,0.0006865536,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5425,0.0004577024,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5426,0.0002288512,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5427,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5428,0.0077929858,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5429,0.0155859717,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5430,0.0233792138,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5431,0.1094293179,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5432,0.1954796783,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +5433,0.2815300386,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5434,0.3965607012,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +5435,0.5115916201,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5436,0.6266222827,0.3,0.3,0.3,0.3,0.2,0.2,0.1,,,,,,,,,,, +5437,0.6471860885,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +5438,0.667749638,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5439,0.6883134438,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5440,0.5786455364,0.3,0.3,0.3,0.2,0.2,0.1,0.1,,,,,,,,,,, +5441,0.4689778852,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5442,0.359310234,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +5443,0.2627191357,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5444,0.1661280374,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +5445,0.0695371953,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5446,0.0464365495,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5447,0.0233361601,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5448,0.0002355143,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5449,0.0001570949,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5450,7.84193386376166E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5451,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5452,0.0103882559,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5453,0.0207762556,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5454,0.0311645115,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5455,0.1258635511,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +5456,0.2205628469,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5457,0.3152618865,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5458,0.437292372,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5459,0.5593228576,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5460,0.6813530868,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5461,0.6801998613,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5462,0.679046892,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5463,0.6778936664,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5464,0.5627071902,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5465,0.4475209703,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5466,0.3323344941,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5467,0.2428393208,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5468,0.1533441475,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +5469,0.0638489743,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5470,0.0426734464,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5471,0.0214979185,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5472,0.0003223906,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5473,0.0002150125,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5474,0.0001073781,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5475,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5476,0.0059688393,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5477,0.0119374223,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5478,0.0179062615,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5479,0.0738476962,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5480,0.1297891309,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +5481,0.1857305656,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +5482,0.2620182308,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5483,0.3383056398,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5484,0.4145930488,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5485,0.4555456263,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5486,0.4964982039,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5487,0.5374507814,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5488,0.4562403807,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5489,0.3750302361,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +5490,0.2938198354,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5491,0.213757791,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5492,0.1336954903,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +5493,0.0536334459,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5494,0.0358235428,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5495,0.0180136396,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5496,0.0002037365,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5497,0.0001358243,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5498,6.791217234957E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5499,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5500,0.004870456,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5501,0.0097411682,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5502,0.0146116242,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5503,0.0754829701,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5504,0.1363545722,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +5505,0.197225918,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +5506,0.305475358,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5507,0.4137245418,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5508,0.5219739818,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5509,0.5780517533,0.3,0.3,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5510,0.6341295249,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +5511,0.6902075527,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5512,0.6003876824,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +5513,0.5105678121,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5514,0.4207479417,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5515,0.3111410271,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5516,0.2015343688,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +5517,0.0919277104,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5518,0.0613872221,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5519,0.0308467338,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5520,0.0003059892,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5521,0.0002039928,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5522,0.0001019964,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5523,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5524,0.0136703359,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5525,0.0273406718,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5526,0.0410112639,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5527,0.1814656811,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +5528,0.3219200984,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5529,0.4623745156,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5530,0.6265156734,0.3,0.3,0.3,0.3,0.2,0.2,0.1,,,,,,,,,,, +5531,0.790656575,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5532,0.9547977329,0.5,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +5533,0.9710984481,0.5,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +5534,0.9873991634,0.5,0.4,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +5535,1.0037001349,0.5,0.4,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +5536,0.8526949851,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +5537,0.7016898353,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5538,0.5506846855,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5539,0.406173477,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5540,0.2616625248,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5541,0.1171515726,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +5542,0.0782363602,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5543,0.0393211478,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5544,0.0004059354,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5545,0.0002706236,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5546,0.0001353118,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5547,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5548,0.0162735504,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5549,0.0325471008,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5550,0.0488206512,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5551,0.2115102825,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5552,0.3741999137,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +5553,0.536889545,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5554,0.7274695522,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5555,0.9180498157,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +5556,1.1086298229,0.5,0.5,0.5,0.4,0.4,0.3,0.3,,,,,,,,,,, +5557,1.1362306111,0.5,0.5,0.5,0.5,0.4,0.3,0.3,,,,,,,,,,, +5558,1.1638313993,0.5,0.5,0.5,0.5,0.4,0.3,0.3,,,,,,,,,,, +5559,1.1914324438,0.6,0.5,0.5,0.5,0.4,0.3,0.3,,,,,,,,,,, +5560,1.0077805033,0.5,0.4,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +5561,0.8241285627,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +5562,0.6404766222,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +5563,0.4702131179,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5564,0.2999496137,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5565,0.1296861094,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +5566,0.0865649552,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5567,0.0434438011,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5568,0.0003226469,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5569,0.0002152688,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5570,0.0001076344,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5571,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5572,0.0182781127,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5573,0.0365564817,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5574,0.0548345944,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5575,0.2289316767,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5576,0.403028759,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5577,0.5771258413,0.3,0.3,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5578,0.7761876945,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5579,0.9752495476,0.5,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +5580,1.1743111445,0.6,0.5,0.5,0.5,0.4,0.3,0.3,,,,,,,,,,, +5581,1.1765655723,0.6,0.5,0.5,0.5,0.4,0.3,0.3,,,,,,,,,,, +5582,1.1788194876,0.6,0.5,0.5,0.5,0.4,0.3,0.3,,,,,,,,,,, +5583,1.1810739155,0.6,0.5,0.5,0.5,0.4,0.3,0.3,,,,,,,,,,, +5584,0.9900510697,0.5,0.4,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +5585,0.7990284801,0.4,0.4,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5586,0.6080058905,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +5587,0.445949252,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5588,0.2838928697,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5589,0.1218362311,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +5590,0.0813100907,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5591,0.0407839504,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5592,0.00025781,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5593,0.0001719587,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5594,8.5851236743796E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5595,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5596,0.0154811563,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5597,0.0309623126,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5598,0.0464434689,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5599,0.2005825733,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +5600,0.3547219339,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +5601,0.5088610382,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5602,0.6802011426,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5603,0.851541247,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +5604,1.0228813514,0.5,0.5,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +5605,1.0341065928,0.5,0.5,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +5606,1.0453318342,0.5,0.5,0.5,0.4,0.4,0.3,0.2,,,,,,,,,,, +5607,1.0565570756,0.5,0.5,0.5,0.4,0.4,0.3,0.3,,,,,,,,,,, +5608,0.8763691684,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +5609,0.6961815175,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5610,0.5159936102,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5611,0.3745387058,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +5612,0.2330840576,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5613,0.0916294094,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5614,0.0611414569,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5615,0.0306535044,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5616,0.0001658082,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5617,0.0001104534,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5618,5.53548272736117E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5619,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5620,0.0082312116,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5621,0.0164626794,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5622,0.024693891,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5623,0.098682537,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5624,0.1726714392,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +5625,0.2466600852,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5626,0.3268256637,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5627,0.4069909858,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5628,0.487156308,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5629,0.5329347501,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5630,0.578712936,0.3,0.3,0.3,0.2,0.2,0.1,0.1,,,,,,,,,,, +5631,0.6244913782,0.3,0.3,0.3,0.3,0.2,0.2,0.1,,,,,,,,,,, +5632,0.5382406128,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5633,0.4519898475,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5634,0.3657393384,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +5635,0.2682453926,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5636,0.1707514468,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +5637,0.073257501,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5638,0.0488895885,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5639,0.0245219322,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5640,0.000154276,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5641,0.0001027652,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5642,5.15107420462776E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5643,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5644,0.0096537794,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5645,0.019307815,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5646,0.0289615944,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5647,0.136765633,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +5648,0.2445694154,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5649,0.3523734541,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +5650,0.5028314624,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5651,0.6532894708,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +5652,0.8037477354,0.4,0.4,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5653,0.8489662225,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +5654,0.8941849658,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +5655,0.9394037091,0.4,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +5656,0.7924907162,0.4,0.4,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5657,0.6455779795,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +5658,0.4986652429,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5659,0.3638190897,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +5660,0.2289729366,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5661,0.0941267834,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5662,0.0628054333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5663,0.0314840831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5664,0.0001627329,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5665,0.0001084032,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5666,5.4329737879656E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5667,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5668,0.013634714,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5669,0.0272691718,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5670,0.0409038858,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5671,0.1832747077,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +5672,0.3256452732,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5673,0.4680160951,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5674,0.6326208496,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +5675,0.7972256041,0.4,0.4,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5676,0.9618303586,0.5,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +5677,0.968003447,0.5,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +5678,0.974176279,0.5,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +5679,0.9803491111,0.5,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +5680,0.819871879,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +5681,0.6593946469,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +5682,0.4989174148,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5683,0.3650076809,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +5684,0.2310979469,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5685,0.0971882129,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5686,0.0648730386,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5687,0.032557608,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5688,0.0002424336,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5689,0.0001614516,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5690,8.07257897740171E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5691,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5692,0.0070951562,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5693,0.0141900562,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5694,0.0212852124,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5695,0.1192053392,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +5696,0.2171254659,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5697,0.3150453363,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5698,0.4538442342,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5699,0.5926428758,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +5700,0.7314415173,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5701,0.7421549829,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5702,0.7528684484,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5703,0.7635819139,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5704,0.6306944503,0.3,0.3,0.3,0.3,0.2,0.2,0.1,,,,,,,,,,, +5705,0.4978067305,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5706,0.3649190106,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +5707,0.264640922,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5708,0.1643630897,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +5709,0.0640850011,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5710,0.0427439213,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5711,0.0214028415,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5712,6.17616359858353E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5713,4.12598481067199E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5714,2.06299240533599E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5715,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5716,0.0026214099,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5717,0.005243076,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5718,0.0078644858,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5719,0.0462161553,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5720,0.0845675686,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5721,0.122919238,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +5722,0.1691318056,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +5723,0.2153443731,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5724,0.2615569406,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5725,0.3140386986,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5726,0.3665204565,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +5727,0.4190022145,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5728,0.3693499595,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +5729,0.3196977046,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5730,0.2700454496,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5731,0.1985575092,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +5732,0.1270693125,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +5733,0.055581372,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5734,0.0370723579,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5735,0.0185636001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5736,0.000054586,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5737,3.63906734854299E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5738,1.8195336742715E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5739,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5740,0.0051185276,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5741,0.010236799,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5742,0.0153553266,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5743,0.0973132738,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5744,0.1792714773,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +5745,0.2612294245,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5746,0.398773613,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5747,0.5363178014,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5748,0.6738619898,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5749,0.7079208412,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5750,0.7419799489,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5751,0.7760388002,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5752,0.6527292594,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +5753,0.5294199749,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5754,0.406110434,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5755,0.2965939835,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5756,0.187077533,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +5757,0.0775610825,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5758,0.051722423,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5759,0.0258837635,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5760,4.5103933334054E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5761,2.99838647732064E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5762,1.49919323866032E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5763,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5764,0.0068629735,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5765,0.0137256907,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5766,0.0205886642,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5767,0.1250255405,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +5768,0.229462673,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5769,0.3338998056,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5770,0.4687569784,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5771,0.6036141513,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +5772,0.7384710679,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5773,0.733974257,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5774,0.7294774461,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5775,0.7249803789,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5776,0.5823973636,0.3,0.3,0.3,0.2,0.2,0.1,0.1,,,,,,,,,,, +5777,0.4398143482,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5778,0.2972313329,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5779,0.2112606732,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5780,0.1252900135,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +5781,0.0393193539,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5782,0.0262166613,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5783,0.0131137123,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5784,1.09940837501757E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5785,7.32938916678378E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5786,3.66469458339189E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5787,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5788,0.0036990351,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5789,0.0073980702,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5790,0.011096849,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5791,0.0770226543,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5792,0.1429482034,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +5793,0.2088737525,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +5794,0.3197151311,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5795,0.4305565096,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5796,0.5413981444,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5797,0.5679248952,0.3,0.3,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5798,0.5944513897,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +5799,0.6209781405,0.3,0.3,0.3,0.3,0.2,0.2,0.1,,,,,,,,,,, +5800,0.5127005106,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5801,0.4044228806,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5802,0.2961452506,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5803,0.2133423735,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5804,0.1305394963,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +5805,0.0477366192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5806,0.0318300508,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5807,0.0159232261,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5808,1.64526847729902E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5809,1.09684565153268E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5810,5.48422825766339E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5811,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5812,0.0067901921,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5813,0.0135803843,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5814,0.0203705764,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5815,0.1192701761,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +5816,0.218170032,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5817,0.3170698879,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5818,0.4612279531,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5819,0.6053862746,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +5820,0.749544596,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5821,0.7700648355,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5822,0.790585075,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5823,0.8111053145,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +5824,0.6754947009,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5825,0.5398840874,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5826,0.4042737301,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5827,0.2941468389,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5828,0.1840199476,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +5829,0.0738933127,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5830,0.0492634898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5831,0.0246339232,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5832,4.30537545461425E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5833,2.87025030307616E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5834,1.43256242805319E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5835,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5836,0.0072519949,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5837,0.0145042461,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5838,0.021756241,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5839,0.1367653768,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +5840,0.2517747688,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5841,0.3667841608,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +5842,0.5181619306,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5843,0.6695394441,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5844,0.8209172139,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +5845,0.8284682787,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +5846,0.8360195997,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +5847,0.8435706644,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +5848,0.6991801602,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5849,0.5547893997,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5850,0.4103988955,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5851,0.2985006498,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5852,0.1866024041,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +5853,0.0747041584,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5854,0.0498034557,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5855,0.0249024966,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5856,1.57094949623722E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5857,1.04815390531978E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5858,5.22795590917444E-007,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5859,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5860,0.0078291202,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5861,0.0156582405,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5862,0.0234871045,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5863,0.1370652154,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +5864,0.2506433264,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5865,0.364221181,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +5866,0.5187085595,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5867,0.6731956817,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5868,0.8276828039,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +5869,0.8204692498,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +5870,0.8132559521,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +5871,0.806042398,0.4,0.4,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5872,0.6601196414,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +5873,0.5141968848,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5874,0.3682743845,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +5875,0.2668802298,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5876,0.1654863314,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +5877,0.064092433,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5878,0.0427282887,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5879,0.0213641443,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5880,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5881,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5882,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5883,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5884,0.0087732276,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5885,0.0175464552,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5886,0.0263196827,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5887,0.1530730114,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +5888,0.2798265963,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5889,0.406579925,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5890,0.5595870744,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5891,0.71259448,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5892,0.8656016294,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +5893,0.8699310945,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +5894,0.8742603033,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +5895,0.8785897683,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +5896,0.7219315068,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5897,0.5652735015,0.3,0.3,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5898,0.40861524,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5899,0.2951427132,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5900,0.1816699302,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +5901,0.0681974035,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5902,0.0454650211,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5903,0.0227323824,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5904,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5905,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5906,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5907,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5908,0.0078760181,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5909,0.0157517799,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5910,0.023627798,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5911,0.1435199471,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +5912,0.2634123524,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5913,0.3833045015,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +5914,0.534467515,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5915,0.6856305286,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5916,0.8367935422,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +5917,0.8527826303,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +5918,0.8687714621,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +5919,0.8847605502,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +5920,0.7325060727,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5921,0.5802515952,0.3,0.3,0.3,0.2,0.2,0.1,0.1,,,,,,,,,,, +5922,0.4279973739,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5923,0.3100400811,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5924,0.1920827883,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +5925,0.0741257517,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5926,0.049416997,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5927,0.0247084985,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5928,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5929,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5930,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5931,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5932,0.0091345716,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5933,0.0182688869,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5934,0.0274034585,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5935,0.1728303281,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +5936,0.318257454,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5937,0.4636843236,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5938,0.6439998544,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +5939,0.824315129,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +5940,1.0046306598,0.5,0.4,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +5941,0.9965667941,0.5,0.4,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +5942,0.9885029284,0.5,0.4,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +5943,0.9804388064,0.5,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +5944,0.802576827,0.4,0.4,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5945,0.6247145914,0.3,0.3,0.3,0.3,0.2,0.2,0.1,,,,,,,,,,, +5946,0.446852612,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5947,0.3231527684,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5948,0.199453181,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +5949,0.0757535937,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5950,0.0505023104,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5951,0.0252512833,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5952,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5953,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5954,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5955,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5956,0.0095317937,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5957,0.0190635875,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5958,0.0285953812,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5959,0.1808852243,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +5960,0.3331750674,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5961,0.4854651667,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5962,0.6812526281,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5963,0.8770400894,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +5964,1.0728275508,0.5,0.5,0.5,0.4,0.4,0.3,0.3,,,,,,,,,,, +5965,1.0792325656,0.5,0.5,0.5,0.4,0.4,0.3,0.3,,,,,,,,,,, +5966,1.0856375804,0.5,0.5,0.5,0.4,0.4,0.3,0.3,,,,,,,,,,, +5967,1.0920425952,0.5,0.5,0.5,0.4,0.4,0.3,0.3,,,,,,,,,,, +5968,0.8943484676,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +5969,0.6966545962,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5970,0.4989607249,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5971,0.3596477447,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +5972,0.2203347645,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5973,0.0810217843,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5974,0.0540145229,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5975,0.0270072614,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5976,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5977,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5978,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5979,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5980,0.0053783878,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5981,0.0107567756,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5982,0.0161349071,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5983,0.1028695146,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5984,0.1896038658,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +5985,0.2763382171,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5986,0.3969963642,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +5987,0.5176547676,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5988,0.6383129147,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +5989,0.6239321919,0.3,0.3,0.3,0.3,0.2,0.2,0.1,,,,,,,,,,, +5990,0.6095512128,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +5991,0.5951704899,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +5992,0.4739593071,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5993,0.3527483805,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +5994,0.2315371977,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5995,0.1643302868,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +5996,0.097123376,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5997,0.0299164651,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5998,0.0199443955,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5999,0.0099720696,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6000,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6001,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6002,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6003,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6004,0.0038953397,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6005,0.0077906794,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6006,0.0116860191,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6007,0.0895038865,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6008,0.1673214977,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6009,0.2451393651,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6010,0.353501565,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +6011,0.4618637648,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6012,0.5702259646,0.3,0.3,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6013,0.5717323335,0.3,0.3,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6014,0.5732384461,0.3,0.3,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6015,0.5747445587,0.3,0.3,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6016,0.4611774674,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6017,0.3476101199,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +6018,0.2340430287,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6019,0.165866127,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6020,0.0976892253,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6021,0.0295125799,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6022,0.0196750533,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6023,0.0098375266,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6024,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6025,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6026,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6027,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6028,0.0026242288,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6029,0.005248714,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6030,0.0078729428,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6031,0.0633715389,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6032,0.1188698787,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +6033,0.1743682185,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6034,0.272483881,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6035,0.3705995435,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +6036,0.4687154623,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6037,0.4904947678,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6038,0.5122743297,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6039,0.5340538915,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6040,0.4384402159,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6041,0.3428267966,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6042,0.247213121,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6043,0.1774550189,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6044,0.1076971731,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6045,0.037939071,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6046,0.0252925432,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6047,0.0126462716,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6048,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6049,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6050,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6051,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6052,0.0036887842,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6053,0.0073775684,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6054,0.0110663526,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6055,0.1042172509,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6056,0.1973678929,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +6057,0.290518535,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6058,0.437779802,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6059,0.5850413254,0.3,0.3,0.3,0.2,0.2,0.1,0.1,,,,,,,,,,, +6060,0.7323025924,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +6061,0.7453222528,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +6062,0.7583419132,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +6063,0.7713615736,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +6064,0.6287303791,0.3,0.3,0.3,0.3,0.2,0.2,0.1,,,,,,,,,,, +6065,0.4860991845,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6066,0.3434677337,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6067,0.2464871014,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6068,0.1495064691,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6069,0.0525258368,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6070,0.03501731,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6071,0.0175085268,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6072,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6073,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6074,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6075,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6076,0.0059780651,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6077,0.0119563864,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6078,0.0179344515,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6079,0.146939389,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6080,0.2759445828,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6081,0.4049495203,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6082,0.5746474315,0.3,0.3,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6083,0.7443453426,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +6084,0.9140432538,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +6085,0.9316389133,0.4,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +6086,0.9492345727,0.4,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +6087,0.9668302322,0.5,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +6088,0.7902667848,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +6089,0.6137035936,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +6090,0.4371401462,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6091,0.3134872005,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6092,0.1898339984,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6093,0.0661810526,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6094,0.0441206163,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6095,0.0220604363,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6096,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6097,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6098,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6099,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6100,0.0061146582,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6101,0.0122290602,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6102,0.0183437184,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6103,0.1484091109,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6104,0.2784745034,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6105,0.4085398959,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6106,0.579134504,0.3,0.3,0.3,0.2,0.2,0.1,0.1,,,,,,,,,,, +6107,0.7497288559,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +6108,0.9203232077,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +6109,0.9049976087,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +6110,0.8896720097,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +6111,0.8743461545,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +6112,0.6988198413,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +6113,0.5232932718,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6114,0.3477667023,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +6115,0.2469171264,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6116,0.1460678067,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6117,0.0452182308,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6118,0.0301455726,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6119,0.0150726582,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6120,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6121,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6122,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6123,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6124,0.0015837631,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6125,0.0031675262,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6126,0.0047512893,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6127,0.0567684255,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6128,0.1087855618,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6129,0.160802698,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6130,0.2665606582,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6131,0.3723188747,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +6132,0.4780770912,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6133,0.5200916614,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6134,0.5621062315,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6135,0.6041208017,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +6136,0.5002784773,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6137,0.3964361529,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +6138,0.2925938284,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6139,0.2100554243,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +6140,0.1275172765,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +6141,0.0449788724,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6142,0.029985915,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6143,0.0149929575,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6144,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6145,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6146,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6147,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6148,0.0017669978,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6149,0.0035339957,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6150,0.0053012498,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6151,0.0427462277,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6152,0.0801912057,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6153,0.1176364399,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +6154,0.185147546,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6155,0.2526589084,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6156,0.3201700145,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6157,0.3333134544,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6158,0.3464568944,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6159,0.359600078,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +6160,0.2909623987,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6161,0.2223247193,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6162,0.1536870399,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6163,0.1090159506,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6164,0.0643451175,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6165,0.0196740282,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6166,0.0131160188,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6167,0.0065580094,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6168,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6169,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6170,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6171,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6172,0.0027618471,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6173,0.0055236942,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6174,0.0082857976,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6175,0.0866987294,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6176,0.1651116612,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6177,0.2435245931,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6178,0.3656150463,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +6179,0.4877057559,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6180,0.6097962091,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +6181,0.6434327237,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +6182,0.6770692383,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +6183,0.7107054965,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +6184,0.5778690312,0.3,0.3,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6185,0.4450325658,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6186,0.3121961004,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6187,0.2212675959,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6188,0.1303390914,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +6189,0.0394105868,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6190,0.02627381,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6191,0.0131367769,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6192,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6193,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6194,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6195,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6196,0.0023864081,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6197,0.0047728162,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6198,0.0071592243,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6199,0.0933395148,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6200,0.1795198052,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6201,0.2657000956,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6202,0.4028383487,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6203,0.5399763454,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6204,0.6771143422,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +6205,0.6709809761,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +6206,0.66484761,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +6207,0.6587142438,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +6208,0.5261350759,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6209,0.3935559079,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +6210,0.2609764837,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6211,0.1853089976,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6212,0.1096412551,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6213,0.033973769,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6214,0.0226490939,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6215,0.0113246751,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6216,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6217,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6218,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6219,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6220,0.0026032145,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6221,0.005206429,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6222,0.0078096435,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6223,0.0805994475,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6224,0.1533895077,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6225,0.2261793117,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6226,0.3563074909,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +6227,0.4864354138,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6228,0.6165635931,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +6229,0.6419704337,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +6230,0.6673775306,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +6231,0.6927846275,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +6232,0.5621746563,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6233,0.4315644288,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6234,0.3009544575,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6235,0.2140622425,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6236,0.1271697712,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +6237,0.0402772999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6238,0.0268517041,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6239,0.0134258521,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6240,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6241,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6242,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6243,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6244,0.0033781821,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6245,0.0067561079,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6246,0.01013429,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6247,0.1147590139,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6248,0.2193837378,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6249,0.3240084617,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6250,0.4543911194,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6251,0.5847735208,0.3,0.3,0.3,0.2,0.2,0.1,0.1,,,,,,,,,,, +6252,0.7151561784,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +6253,0.7017697923,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +6254,0.6883831499,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +6255,0.6749967638,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +6256,0.542041388,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6257,0.4090860123,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6258,0.2761306365,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6259,0.1969801529,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +6260,0.1178299255,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +6261,0.0386794418,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6262,0.02578638,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6263,0.0128930619,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6264,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6265,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6266,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6267,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6268,0.0032620907,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6269,0.0065241814,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6270,0.0097862722,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6271,0.1220532938,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +6272,0.2343203154,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6273,0.346587337,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6274,0.4982903164,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6275,0.6499935521,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +6276,0.8016967878,0.4,0.4,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +6277,0.7971702493,0.4,0.4,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +6278,0.7926439671,0.4,0.4,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +6279,0.7881174286,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +6280,0.629586585,0.3,0.3,0.3,0.3,0.2,0.2,0.1,,,,,,,,,,, +6281,0.4710559977,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6282,0.3125251541,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6283,0.2209792895,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6284,0.1294331686,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +6285,0.037887304,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6286,0.0252582027,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6287,0.0126291013,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6288,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6289,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6290,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6291,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6292,0.0030112001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6293,0.0060221439,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6294,0.009033344,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6295,0.0999646675,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6296,0.1908962473,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6297,0.2818275708,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6298,0.4234247064,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6299,0.5650218421,0.3,0.3,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6300,0.7066189777,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +6301,0.7285259068,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +6302,0.750432836,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +6303,0.7723397652,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +6304,0.6254980159,0.3,0.3,0.3,0.3,0.2,0.2,0.1,,,,,,,,,,, +6305,0.4786562667,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6306,0.3318145175,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6307,0.2357418581,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6308,0.139669455,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6309,0.0435967957,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6310,0.0290643596,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6311,0.0145321798,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6312,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6313,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6314,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6315,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6316,0.0035601355,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6317,0.0071200147,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6318,0.0106801501,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6319,0.1307347759,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +6320,0.2507894016,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6321,0.3708437711,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +6322,0.5464551667,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6323,0.7220665623,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +6324,0.8976779579,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +6325,0.9002614395,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +6326,0.9028454335,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +6327,0.9054289151,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +6328,0.7274603264,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +6329,0.5494917377,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6330,0.3715231491,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +6331,0.2638741552,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6332,0.1562251613,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6333,0.0485759111,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6334,0.0323841116,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6335,0.0161920558,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6336,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6337,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6338,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6339,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6340,0.0034827412,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6341,0.0069654824,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6342,0.0104484799,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6343,0.1377074339,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6344,0.2649666442,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6345,0.3922255982,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +6346,0.5807982241,0.3,0.3,0.3,0.2,0.2,0.1,0.1,,,,,,,,,,, +6347,0.7693705937,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +6348,0.9579429634,0.5,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +6349,0.9677005331,0.5,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +6350,0.9774578464,0.5,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +6351,0.9872154161,0.5,0.4,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +6352,0.7920404457,0.4,0.4,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +6353,0.5968654753,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +6354,0.4016905048,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6355,0.2842352495,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6356,0.1667799942,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6357,0.0493249952,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6358,0.0328833301,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6359,0.0164416651,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6360,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6361,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6362,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6363,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6364,0.0032326194,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6365,0.0064654951,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6366,0.0096981145,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6367,0.1356121512,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6368,0.2615264442,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6369,0.3874404809,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +6370,0.5729337383,0.3,0.3,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6371,0.7584269956,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +6372,0.943920253,0.4,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +6373,0.9477809959,0.4,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +6374,0.9516419952,0.4,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +6375,0.9555027381,0.5,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +6376,0.7623623138,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +6377,0.5692218896,0.3,0.3,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6378,0.3760814653,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +6379,0.2650414757,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6380,0.1540014861,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6381,0.0429614965,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6382,0.0286409977,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6383,0.0143204988,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6384,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6385,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6386,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6387,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6388,0.0023930712,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6389,0.0047858861,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6390,0.0071789573,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6391,0.0930750417,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6392,0.1789713824,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6393,0.2648677231,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6394,0.3870878501,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +6395,0.5093079772,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6396,0.6315281043,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +6397,0.6044047515,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +6398,0.5772813987,0.3,0.3,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6399,0.5501580458,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6400,0.426733695,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6401,0.3033096004,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6402,0.1798855058,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6403,0.1248881785,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +6404,0.0698911074,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6405,0.0148940363,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6406,0.0099292721,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6407,0.0049647642,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6408,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6409,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6410,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6411,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6412,0.0003513494,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6413,0.0007026988,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6414,0.0010540482,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6415,0.0268078816,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6416,0.0525617149,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6417,0.0783155483,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6418,0.1518962088,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6419,0.2254768692,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6420,0.2990575296,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6421,0.294481018,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6422,0.2899047627,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6423,0.2853282511,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6424,0.2247974912,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6425,0.164266475,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6426,0.1037357151,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6427,0.073515311,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6428,0.0432949068,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6429,0.0130745027,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6430,0.0087163351,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6431,0.0043581676,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6432,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6433,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6434,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6435,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6436,0.0006450375,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6437,0.001290075,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6438,0.0019348562,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6439,0.0506573551,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6440,0.099379854,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6441,0.1481026092,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6442,0.2337803496,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6443,0.3194580899,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6444,0.4051358303,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6445,0.4120749167,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6446,0.4190137468,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6447,0.4259528331,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6448,0.3390055196,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6449,0.252058206,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6450,0.1651108924,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6451,0.1158658542,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +6452,0.066620816,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6453,0.0173757778,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6454,0.0115837664,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6455,0.0057920113,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6456,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6457,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6458,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6459,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6460,0.000633249,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6461,0.0012664979,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6462,0.0018997469,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6463,0.0437977132,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6464,0.0856956794,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6465,0.1275933894,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +6466,0.1925430534,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6467,0.2574927174,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6468,0.3224421251,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6469,0.3254899722,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6470,0.3285375629,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6471,0.33158541,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6472,0.2611240966,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6473,0.1906630395,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6474,0.1202019823,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +6475,0.0832836441,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6476,0.0463653058,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6477,0.0094467113,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6478,0.006297893,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6479,0.0031488183,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6480,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6481,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6482,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6483,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6484,0.0004095232,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6485,0.0008190464,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6486,0.0012285696,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6487,0.0402821691,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6488,0.0793357686,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6489,0.118389368,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +6490,0.2027934348,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +6491,0.2871975016,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6492,0.3716015684,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +6493,0.3798773713,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +6494,0.3881531743,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +6495,0.396428721,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +6496,0.3146383759,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6497,0.2328480307,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6498,0.1510576856,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6499,0.1058371484,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6500,0.0606166111,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6501,0.0153960739,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6502,0.0102642201,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6503,0.0051321101,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6504,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6505,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6506,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6507,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6508,0.0006168475,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6509,0.0012339514,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6510,0.0018507989,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6511,0.0569480725,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6512,0.1120450898,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6513,0.1671423633,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6514,0.2882697451,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6515,0.4093971269,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6516,0.5305247649,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6517,0.5499217627,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6518,0.5693190168,0.3,0.3,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6519,0.5887162708,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +6520,0.470830478,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6521,0.3529446851,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +6522,0.2350588923,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6523,0.1654066307,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6524,0.0957546254,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6525,0.0261023638,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6526,0.0174016613,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6527,0.0087007025,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6528,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6529,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6530,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6531,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6532,0.0011363116,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6533,0.0022726232,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6534,0.0034089348,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6535,0.082064044,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6536,0.1607191532,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6537,0.2393745186,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6538,0.3604980563,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +6539,0.4816218503,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6540,0.602745388,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +6541,0.5708617763,0.3,0.3,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6542,0.5389781646,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6543,0.5070945529,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6544,0.3914360231,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +6545,0.2757772369,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6546,0.1601184508,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6547,0.1113172763,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6548,0.0625158455,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6549,0.0137144147,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6550,0.0091430286,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6551,0.0045713862,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6552,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6553,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6554,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6555,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6556,0.0006429873,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6557,0.0012862309,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6558,0.0019292182,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6559,0.0472684096,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6560,0.0926076009,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6561,0.1379470486,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6562,0.2317253016,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6563,0.3255038109,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6564,0.4192823202,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6565,0.4547819347,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6566,0.4902815492,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6567,0.5257811638,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6568,0.422846556,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6569,0.319911692,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6570,0.2169768279,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6571,0.1515207698,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6572,0.0860644553,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6573,0.0206081409,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6574,0.0137387606,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6575,0.0068693803,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6576,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6577,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6578,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6579,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6580,0.0005714873,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6581,0.0011427184,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6582,0.0017142057,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6583,0.0407549916,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6584,0.0797960337,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6585,0.1188370758,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +6586,0.1682417717,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6587,0.2176464676,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6588,0.2670511635,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6589,0.2782805052,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6590,0.289509847,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6591,0.3007391888,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6592,0.2415620594,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6593,0.1823851863,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6594,0.123208057,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +6595,0.0862264195,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6596,0.0492445257,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6597,0.0122628881,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6598,0.0081753442,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6599,0.004087544,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6600,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6601,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6602,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6603,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6604,0.0009848546,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6605,0.001969453,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6606,0.0029543076,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6607,0.0917170545,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6608,0.1804798014,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6609,0.2692425483,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6610,0.419913519,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6611,0.5705844896,0.3,0.3,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6612,0.721255204,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +6613,0.7337971728,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +6614,0.7463391415,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +6615,0.7588811102,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +6616,0.6007418508,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +6617,0.4426025914,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6618,0.2844633319,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6619,0.1981854017,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +6620,0.1119074715,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6621,0.0256295413,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6622,0.0170864463,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6623,0.008543095,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6624,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6625,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6626,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6627,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6628,0.0009292435,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6629,0.0018587433,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6630,0.0027879869,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6631,0.1004169882,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6632,0.1980457333,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +6633,0.2956747346,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6634,0.4572926349,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6635,0.6189105352,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +6636,0.7805281792,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +6637,0.7817810948,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +6638,0.7830334977,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +6639,0.7842864132,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +6640,0.6164236683,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +6641,0.4485609235,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6642,0.2806981786,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6643,0.1948510422,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6644,0.1090041621,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6645,0.0231570257,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6646,0.0154381025,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6647,0.0077189231,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6648,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6649,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6650,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6651,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6652,0.0005479103,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6653,0.0010955643,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6654,0.0016434746,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6655,0.0698419031,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6656,0.138040588,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6657,0.2062390165,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +6658,0.3145925031,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6659,0.4229459897,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6660,0.5312994763,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6661,0.5233147987,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6662,0.5153301211,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6663,0.5073454436,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6664,0.3963354378,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +6665,0.2853251758,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6666,0.1743151701,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6667,0.120786027,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +6668,0.067256884,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6669,0.0137277409,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6670,0.0091517418,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6671,0.0045759991,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6672,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6673,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6674,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6675,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6676,0.0004190053,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6677,0.0008380106,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6678,0.0012572721,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6679,0.0732928666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6680,0.1453287173,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6681,0.217364568,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6682,0.3631192099,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +6683,0.5088738519,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6684,0.6546284938,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +6685,0.6464708324,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +6686,0.6383129147,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +6687,0.6301552533,0.3,0.3,0.3,0.3,0.2,0.2,0.1,,,,,,,,,,, +6688,0.4905152696,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6689,0.3508750297,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +6690,0.211235046,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6691,0.1462231078,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6692,0.0812109133,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6693,0.0161989751,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6694,0.0107993168,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6695,0.0053996584,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6696,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6697,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6698,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6699,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6700,0.0005950644,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6701,0.0011901288,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6702,0.0017851932,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6703,0.0871784712,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6704,0.1725720056,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6705,0.2579652836,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6706,0.4117207483,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6707,0.5654762129,0.3,0.3,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6708,0.7192316776,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +6709,0.6990135832,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +6710,0.6787954888,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +6711,0.6585773944,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +6712,0.5105737063,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6713,0.362569762,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +6714,0.2145658177,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6715,0.1484865052,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6716,0.0824071927,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6717,0.0163278801,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6718,0.010885168,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6719,0.0054427121,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6720,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6721,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6722,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6723,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6724,0.000536378,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6725,0.0010730123,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6726,0.0016093903,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6727,0.0933023553,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6728,0.1849955765,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6729,0.2766887977,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6730,0.4384712248,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6731,0.600253652,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +6732,0.7620363354,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +6733,0.7646802972,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +6734,0.7673245153,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +6735,0.7699684771,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +6736,0.603868886,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +6737,0.4377690386,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6738,0.2716694475,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6739,0.1881338877,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6740,0.1045985841,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6741,0.0210632806,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6742,0.0140421871,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6743,0.0070210935,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6744,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6745,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6746,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6747,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6748,0.0005538045,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6749,0.0011076091,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6750,0.0016614136,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6751,0.0947905288,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6752,0.1879193877,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6753,0.2810485029,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6754,0.4468948969,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6755,0.6127410347,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +6756,0.7785874288,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +6757,0.7833712647,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +6758,0.7881553569,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +6759,0.7929391928,0.4,0.4,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +6760,0.6218363966,0.3,0.3,0.3,0.3,0.2,0.2,0.1,,,,,,,,,,, +6761,0.4507336004,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6762,0.2796308042,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6763,0.1934464134,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6764,0.1072620226,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6765,0.0210776318,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6766,0.0140519254,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6767,0.0070259627,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6768,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6769,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6770,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6771,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6772,0.0004653906,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6773,0.0009310374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6774,0.001396428,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6775,0.1001514901,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6776,0.1989065521,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +6777,0.2976613579,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6778,0.4665561115,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6779,0.6354511214,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +6780,0.804345875,0.4,0.4,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +6781,0.8047915327,0.4,0.4,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +6782,0.8052371903,0.4,0.4,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +6783,0.8056828479,0.4,0.4,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +6784,0.6307433984,0.3,0.3,0.3,0.3,0.2,0.2,0.1,,,,,,,,,,, +6785,0.4558036926,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6786,0.280864243,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6787,0.1941357861,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6788,0.1074075853,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6789,0.0206791283,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6790,0.013786171,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6791,0.0068929574,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6792,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6793,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6794,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6795,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6796,0.0003959408,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6797,0.0007921378,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6798,0.0011880786,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6799,0.0962722955,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6800,0.1913565124,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6801,0.2864407294,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6802,0.4515208691,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6803,0.6166012651,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +6804,0.7816814048,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +6805,0.7802116829,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +6806,0.778741961,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +6807,0.7772722391,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +6808,0.607461568,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +6809,0.4376511533,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6810,0.2678404823,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6811,0.1849435532,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6812,0.1020466241,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6813,0.019149695,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6814,0.0127664633,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6815,0.0063832317,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6816,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6817,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6818,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6819,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6820,0.0002665232,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6821,0.0005330465,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6822,0.000799826,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6823,0.0825499364,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6824,0.164300303,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6825,0.2460504133,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6826,0.3965724898,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +6827,0.5470943099,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6828,0.6976163863,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +6829,0.7009558713,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +6830,0.7042956126,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +6831,0.7076350975,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +6832,0.5532002549,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6833,0.398765156,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6834,0.244330057,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6835,0.1684942,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6836,0.0926580866,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6837,0.0168219732,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6838,0.0112147342,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6839,0.005607239,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6840,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6841,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6842,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6843,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6844,0.0002442275,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6845,0.0004884551,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6846,0.0007324264,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6847,0.0837177694,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6848,0.1667028562,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6849,0.2496881993,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6850,0.4078400161,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6851,0.5659918329,0.3,0.3,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6852,0.7241433934,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +6853,0.7310571088,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +6854,0.7379708242,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +6855,0.7448845397,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +6856,0.5822843474,0.3,0.3,0.3,0.2,0.2,0.1,0.1,,,,,,,,,,, +6857,0.4196844115,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6858,0.2570842193,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6859,0.1770375512,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6860,0.0969908832,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6861,0.0169442151,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6862,0.0112962288,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6863,0.0056479863,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6864,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6865,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6866,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6867,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6868,0.0002109121,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6869,0.0004218243,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6870,0.0006327364,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6871,0.0800289853,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6872,0.1594254904,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6873,0.2388217392,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6874,0.3758808041,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +6875,0.5129396127,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6876,0.6499984213,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +6877,0.6307080328,0.3,0.3,0.3,0.3,0.2,0.2,0.1,,,,,,,,,,, +6878,0.6114179006,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +6879,0.5921277683,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +6880,0.4569679379,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6881,0.3218081074,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6882,0.1866482769,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6883,0.1282550846,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +6884,0.0698618924,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6885,0.0114687001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6886,0.0076458855,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6887,0.0038228146,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6888,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6889,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6890,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6891,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6892,7.91881556830835E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6893,0.0001583763,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6894,0.0002375645,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6895,0.0368337684,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6896,0.0734299723,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6897,0.1100261762,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6898,0.196921979,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +6899,0.2838177819,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6900,0.370713841,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +6901,0.365565842,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +6902,0.3604178431,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +6903,0.3552698442,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +6904,0.2736468449,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6905,0.1920235894,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6906,0.1104005901,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6907,0.0755191045,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6908,0.0406373626,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6909,0.0057558769,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6910,0.0038371659,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6911,0.0019187111,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6912,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6913,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6914,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6915,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6916,3.40842223490295E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6917,6.84247170465479E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6918,0.0001025089,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6919,0.0149355525,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6920,0.029768596,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6921,0.0446013833,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6922,0.0913877446,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6923,0.1381741059,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6924,0.1849602109,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6925,0.1864635045,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6926,0.1879670544,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6927,0.189470348,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6928,0.1466200737,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6929,0.1037697994,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6930,0.060919525,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6931,0.041737796,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6932,0.0225558108,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6933,0.0033738255,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6934,0.0022493024,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6935,0.0011245231,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6936,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6937,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6938,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6939,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6940,3.07526818186732E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6941,6.17616359858353E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6942,9.25143178045085E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6943,0.0389164938,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6944,0.0777404732,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6945,0.1165644526,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +6946,0.2156270415,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6947,0.3146898866,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6948,0.4137524755,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6949,0.4108032933,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6950,0.4078541111,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6951,0.4049051852,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6952,0.3121625287,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6953,0.2194201285,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6954,0.126677472,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +6955,0.0865957079,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6956,0.0465142001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6957,0.0064324359,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6958,0.0042882052,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6959,0.0021442307,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6960,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6961,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6962,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6963,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6964,0.000032034,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6965,6.40680871222358E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6966,9.58458583348648E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6967,0.0646475189,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6968,0.1291991919,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +6969,0.193750865,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6970,0.3261388538,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6971,0.4585268425,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6972,0.5909150876,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +6973,0.5830080606,0.3,0.3,0.3,0.2,0.2,0.1,0.1,,,,,,,,,,, +6974,0.5751010335,0.3,0.3,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6975,0.5671940065,0.3,0.3,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6976,0.4373187681,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6977,0.3074435297,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6978,0.1775682913,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6979,0.1212286094,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +6980,0.0648891837,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6981,0.0085497581,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6982,0.0056997533,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6983,0.0028500048,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6984,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6985,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6986,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6987,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6988,2.53453352655565E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6989,5.07419250008108E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6990,7.61128875012161E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6991,0.0306545295,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6992,0.0612332024,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6993,0.091811619,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6994,0.15770129,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6995,0.223590961,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6996,0.289480632,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6997,0.2882400175,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6998,0.2869994031,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6999,0.2857590449,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7000,0.2205976999,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7001,0.1554360987,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7002,0.0902747538,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7003,0.061529197,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7004,0.0327836402,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7005,0.0040380834,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7006,0.002692141,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7007,0.0013459424,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7008,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7009,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7010,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7011,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7012,0.000011686,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7013,2.33976654170405E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7014,3.51093117429852E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7015,0.0183952292,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7016,0.0367556053,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7017,0.0551157252,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7018,0.1153225568,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7019,0.1755293885,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7020,0.2357362201,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7021,0.2560314525,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7022,0.2763266848,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7023,0.2966219172,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7024,0.2322306707,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7025,0.1678394241,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7026,0.1034481776,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7027,0.0700968941,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7028,0.0367456107,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7029,0.003394071,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7030,0.0022628848,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7031,0.0011314424,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7032,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7033,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7034,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7035,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7036,7.48315257587714E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7037,1.49663051517543E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7038,2.24494577276314E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7039,0.0542815587,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7040,0.1085405654,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7041,0.1627995721,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7042,0.2718021965,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7043,0.380804821,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +7044,0.4898074454,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +7045,0.4966642684,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +7046,0.503520835,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +7047,0.5103774017,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +7048,0.3968413194,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +7049,0.2833054934,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7050,0.1697696674,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7051,0.1158784115,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +7052,0.0619874119,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7053,0.008096156,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7054,0.0053973519,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7055,0.0026988041,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7056,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7057,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7058,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7059,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7060,1.52994592047899E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7061,3.04964094701842E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7062,4.58727503795208E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7063,0.0574475473,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7064,0.1148494781,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7065,0.1722511526,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7066,0.2743146906,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7067,0.3763782287,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +7068,0.4784417667,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +7069,0.4538790872,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +7070,0.4293164077,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +7071,0.4047539845,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +7072,0.3076439346,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7073,0.2105338848,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7074,0.113423835,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7075,0.0771097869,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7076,0.0407957389,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7077,0.0044819471,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7078,0.0029878793,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7079,0.0014940678,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7080,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7081,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7082,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7083,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7084,1.52994592047899E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7085,3.04964094701842E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7086,4.58727503795208E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7087,0.0557628129,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7088,0.1115212691,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7089,0.167279469,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7090,0.2841063445,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7091,0.40093322,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +7092,0.5177600955,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +7093,0.5085865706,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +7094,0.4994130456,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +7095,0.4902395206,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +7096,0.3750638078,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +7097,0.2598883513,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7098,0.1447126386,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7099,0.0977679009,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7100,0.0508234196,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7101,0.003878682,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7102,0.002585788,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7103,0.001292894,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7104,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7105,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7106,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7107,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7108,5.45860102281449E-007,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7109,1.09428292804779E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7110,1.64014303032924E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7111,0.0170362169,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7112,0.0340711525,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7113,0.0511058317,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7114,0.1129230788,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7115,0.1747403259,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7116,0.236557573,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7117,0.2600836309,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7118,0.283609945,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7119,0.3071360029,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7120,0.2409408552,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7121,0.1747454514,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7122,0.1085503037,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7123,0.0735855296,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7124,0.0386207555,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7125,0.0036562376,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7126,0.0024374063,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7127,0.0012188313,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7128,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7129,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7130,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7131,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7132,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7133,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7134,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7135,0.0430440162,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7136,0.0860877761,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7137,0.1291317923,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +7138,0.2179642453,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7139,0.3067969545,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7140,0.3956294075,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +7141,0.3895652349,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +7142,0.3835008061,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +7143,0.3774366335,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +7144,0.2896769366,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7145,0.2019172396,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +7146,0.1141575427,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7147,0.077426027,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7148,0.0406945113,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7149,0.0039632519,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7150,0.0026421679,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7151,0.001321084,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7152,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7153,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7154,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7155,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7156,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7157,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7158,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7159,0.0612493476,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7160,0.1224986951,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +7161,0.1837480427,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7162,0.3092397426,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7163,0.4347314424,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +7164,0.5602231423,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +7165,0.5385335321,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +7166,0.5168439219,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +7167,0.4951540554,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +7168,0.3766398828,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +7169,0.2581257101,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7170,0.1396115375,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7171,0.0945542457,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7172,0.0494969539,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7173,0.0044399184,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7174,0.0029599456,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7175,0.0014799728,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7176,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7177,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7178,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7179,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7180,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7181,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7182,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7183,0.0367192146,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7184,0.0734384293,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7185,0.1101573876,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7186,0.1784091208,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7187,0.2466608541,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7188,0.314912331,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7189,0.3150368794,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7190,0.3151614277,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7191,0.3152857198,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7192,0.2433313637,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7193,0.1713767513,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7194,0.099422139,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7195,0.0673524735,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7196,0.0352825519,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7197,0.0032126302,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7198,0.002141668,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7199,0.0010709621,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7200,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7201,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7202,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7203,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7204,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7205,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7206,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7207,0.0348927616,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7208,0.0697855232,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7209,0.1046782848,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7210,0.2010220803,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +7211,0.2973658758,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7212,0.3937094151,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +7213,0.3987159517,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +7214,0.4037224883,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +7215,0.4087290249,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +7216,0.314324186,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7217,0.2199190908,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7218,0.1255142518,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +7219,0.0846980112,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7220,0.0438820268,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7221,0.0030657861,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7222,0.002043772,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7223,0.0010220141,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7224,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7225,0.000340586,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7226,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7227,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7228,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7229,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7230,0.0592258211,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7231,0.1184518985,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +7232,0.1776777196,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7233,0.3122919462,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7234,0.4469061729,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +7235,0.5815203996,0.3,0.3,0.3,0.2,0.2,0.1,0.1,,,,,,,,,,, +7236,0.5750508041,0.3,0.3,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +7237,0.5685809524,0.3,0.3,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +7238,0.5621111007,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +7239,0.4299732338,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +7240,0.2978356231,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7241,0.1656977561,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7242,0.1116939966,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7243,0.0576902372,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7244,0.0036864777,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7245,0.0024576518,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7246,0.0012288259,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7247,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7248,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7249,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7250,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7251,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7252,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7253,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7254,0.0421475755,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7255,0.084295151,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7256,0.1264427266,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +7257,0.2186062075,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7258,0.3107699448,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7259,0.402933682,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +7260,0.3977410917,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +7261,0.3925485013,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +7262,0.387355911,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +7263,0.2959684227,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7264,0.2045806782,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +7265,0.1131931899,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7266,0.076150047,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7267,0.0391071604,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7268,0.0020640175,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7269,0.0013759262,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7270,0.0006880913,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7271,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7272,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7273,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7274,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7275,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7276,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7277,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7278,0.0326854879,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7279,0.0653709757,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7280,0.0980564636,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7281,0.1946624257,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7282,0.2912686441,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7283,0.3878746062,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +7284,0.3932171159,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +7285,0.3985596255,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +7286,0.4039021352,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +7287,0.3098711976,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7288,0.2158400038,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7289,0.1218090662,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +7290,0.0819077178,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7291,0.0420061132,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7292,0.0021047648,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7293,0.0014030911,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7294,0.0007016737,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7295,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7296,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7297,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7298,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7299,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7300,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7301,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7302,0.02785091,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7303,0.0557015638,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7304,0.0835524738,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7305,0.1514057035,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7306,0.2192591895,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7307,0.2871124192,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7308,0.3008170956,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7309,0.3145220282,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7310,0.3282267046,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7311,0.2544476894,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7312,0.1806684179,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7313,0.1068891464,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7314,0.0718728615,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7315,0.0368563203,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7316,0.0018397792,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7317,0.0012265195,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7318,0.0006132597,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7319,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7320,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7321,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7322,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7323,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7324,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7325,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7326,0.0217037052,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7327,0.0434076667,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7328,0.0651113719,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7329,0.1321904028,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +7330,0.1992694337,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +7331,0.2663484647,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7332,0.2686905377,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7333,0.2710323544,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7334,0.2733744274,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7335,0.2092391969,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +7336,0.1451039664,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7337,0.080968736,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7338,0.054396625,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7339,0.0278242577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7340,0.0012521467,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7341,0.000834679,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7342,0.0004174677,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7343,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7344,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7345,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7346,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7347,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7348,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7349,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7350,0.0226457623,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7351,0.0452912684,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7352,0.0679370308,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7353,0.1331573184,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7354,0.1983778622,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +7355,0.2635981498,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7356,0.2546550137,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7357,0.2457116213,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7358,0.2367684851,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7359,0.1787873788,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7360,0.1208065288,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +7361,0.0628254225,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7362,0.0421767906,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7363,0.0215281586,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7364,0.0008795267,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7365,0.0005863511,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7366,0.0002931756,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7367,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7368,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7369,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7370,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7371,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7372,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7373,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7374,0.0149109503,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7375,0.0298219006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7376,0.0447331072,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7377,0.0869319372,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7378,0.1291310235,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +7379,0.1713298535,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7380,0.1892453408,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7381,0.2071608282,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +7382,0.2250760592,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7383,0.1759829905,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7384,0.1268896655,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +7385,0.0777963406,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7386,0.0522188225,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7387,0.0266413045,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7388,0.0010640428,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7389,0.0007093619,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7390,0.0003546809,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7391,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7392,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7393,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7394,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7395,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7396,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7397,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7398,0.0214335941,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7399,0.042866932,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7400,0.0643005261,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7401,0.1203536956,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +7402,0.1764071213,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7403,0.232460547,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7404,0.242033088,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7405,0.251605629,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7406,0.2611784263,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7407,0.2017447684,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +7408,0.1423111104,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7409,0.0828774524,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7410,0.0555918792,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7411,0.0283060497,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7412,0.0010204765,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7413,0.0006804031,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7414,0.0003400734,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7415,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7416,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7417,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7418,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7419,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7420,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7421,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7422,0.0203454617,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7423,0.0406906672,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7424,0.061036129,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7425,0.1191340955,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +7426,0.177232062,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7427,0.2353302847,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7428,0.2376131588,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7429,0.2398960329,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7430,0.2421791632,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7431,0.1853661463,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7432,0.1285533856,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +7433,0.0717403687,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7434,0.0480995008,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7435,0.0244583767,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7436,0.0008175088,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7437,0.000544835,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7438,0.0002724175,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7439,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7440,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7441,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7442,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7443,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7444,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7445,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7446,0.0126793307,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7447,0.0253586614,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7448,0.0380379921,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7449,0.077225622,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7450,0.1164129957,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +7451,0.1556003693,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7452,0.1586746124,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7453,0.1617488555,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7454,0.1648230986,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7455,0.1263625133,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +7456,0.0879016718,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7457,0.0494410866,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7458,0.0331301204,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7459,0.0168191542,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7460,0.0005081881,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7461,0.000338792,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7462,0.000169396,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7463,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7464,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7465,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7466,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7467,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7468,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7469,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7470,0.0155262602,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7471,0.0310525205,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7472,0.0465785244,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7473,0.0979944457,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7474,0.149410367,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7475,0.2008262883,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +7476,0.2036765493,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +7477,0.2065270667,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +7478,0.2093773277,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +7479,0.160255044,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7480,0.1111327602,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7481,0.0620104764,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7482,0.0415947961,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7483,0.0211791157,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7484,0.0007634353,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7485,0.0005089569,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7486,0.0002544784,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7487,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7488,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7489,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7490,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7491,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7492,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7493,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7494,0.0256964284,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7495,0.051393113,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7496,0.0770895414,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7497,0.1661762166,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7498,0.2552628917,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7499,0.3443493106,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7500,0.3349269451,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7501,0.3255045797,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7502,0.316081958,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7503,0.238335078,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7504,0.160588198,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7505,0.082841318,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7506,0.0554165889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7507,0.0279916035,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7508,0.0005666182,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7509,0.0003777454,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7510,0.0001888727,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7511,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7512,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7513,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7514,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7515,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7516,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7517,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7518,0.0212675297,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7519,0.0425350593,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7520,0.063802589,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7521,0.1293455235,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +7522,0.1948884579,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7523,0.2604313924,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7524,0.2498458068,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7525,0.2392602212,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7526,0.2286746356,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7527,0.1716929914,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7528,0.1147116035,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7529,0.0577299594,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7530,0.0385633505,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7531,0.0193967415,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7532,0.0002301326,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7533,0.0001535071,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7534,7.6625432198194E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7535,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7536,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7537,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7538,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7539,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7540,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7541,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7542,0.0205466355,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7543,0.0410930148,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7544,0.0616396503,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7545,0.1452933517,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7546,0.2289470531,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7547,0.3126004981,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7548,0.3067518506,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7549,0.3009032031,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7550,0.2950545555,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7551,0.2229815453,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7552,0.1509087914,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7553,0.0788357812,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7554,0.0528310572,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7555,0.0268265894,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7556,0.0008218654,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7557,0.0005479103,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7558,0.0002739551,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7559,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7560,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7561,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7562,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7563,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7564,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7565,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7566,0.0136016549,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7567,0.0272033098,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7568,0.0408049647,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7569,0.0903334401,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7570,0.1398621718,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7571,0.1893909035,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7572,0.196119334,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7573,0.2028480208,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +7574,0.2095767076,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +7575,0.1608588216,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7576,0.1121409356,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7577,0.0634230496,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7578,0.0423923156,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7579,0.0213615816,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7580,0.0003311039,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7581,0.0002206505,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7582,0.0001104534,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7583,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7584,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7585,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7586,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7587,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7588,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7589,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7590,0.0166125987,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7591,0.0332251974,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7592,0.0498377962,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7593,0.0987381481,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7594,0.1476382437,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7595,0.1965385956,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +7596,0.2014556931,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +7597,0.206373047,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +7598,0.2112904008,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7599,0.1622073267,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7600,0.1131245089,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7601,0.0640414348,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7602,0.0428741076,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7603,0.0217067805,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7604,0.0005394533,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7605,0.0003598064,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7606,0.0001799032,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7607,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7608,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7609,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7610,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7611,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7612,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7613,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7614,0.0272517453,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7615,0.0545037468,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7616,0.0817554921,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7617,0.1633749035,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7618,0.2449945712,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7619,0.3266139827,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7620,0.3264871279,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7621,0.3263602731,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7622,0.3262334183,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7623,0.2485178035,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7624,0.170802445,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7625,0.0930870865,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7626,0.0622503474,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7627,0.0314136082,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7628,0.0005766128,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7629,0.0003851773,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7630,0.0001937419,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7631,2.15012500382223E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7632,1.43256242805319E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7633,7.17562575769041E-007,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7634,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7635,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7636,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7637,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7638,0.0137797642,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7639,0.0275595284,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7640,0.0413392925,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7641,0.0827395779,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7642,0.1241398632,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +7643,0.1655401486,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7644,0.163571977,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7645,0.1616038053,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7646,0.15963589,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7647,0.1211627474,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +7648,0.0826896048,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7649,0.0442167185,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7650,0.0295628093,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7651,0.0149089001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7652,0.000254991,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7653,0.0001752903,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7654,9.53333136378869E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7655,1.55813587881277E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7656,0.000012993,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7657,1.04302845835E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7658,7.86756109861056E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7659,0.000005228,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7660,0.000002614,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7661,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7662,0.0082094284,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7663,0.0164188568,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7664,0.0246282852,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7665,0.059505158,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7666,0.0943820307,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7667,0.1292591597,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +7668,0.1266008466,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +7669,0.1239425335,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +7670,0.1212844767,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +7671,0.0914566818,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7672,0.0616288869,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7673,0.0318013483,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7674,0.0212598415,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7675,0.0107180784,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7676,0.0001765716,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7677,0.0001217294,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7678,6.71433553041031E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7679,1.23010727274693E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7680,1.02765211744066E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7681,8.22634238649508E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7682,6.20179083343243E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7683,0.000004126,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7684,2.06811785230577E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7685,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7686,0.0136249757,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7687,0.0272499514,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7688,0.0408746708,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7689,0.0933928194,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7690,0.1459109681,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7691,0.1984291167,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +7692,0.1943751444,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7693,0.1903209159,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7694,0.1862669436,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7695,0.1406376519,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7696,0.0950086166,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7697,0.0493793249,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7698,0.0330311993,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7699,0.0166830736,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7700,0.0003346917,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7701,0.0002280824,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7702,0.0001214731,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7703,1.47612872729631E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7704,1.23266999623182E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7705,9.89211265167321E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7706,7.43189810617935E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7707,4.9716835606855E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7708,2.48071633337297E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7709,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7710,0.009222473,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7711,0.018444946,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7712,0.027667419,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7713,0.0607916451,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7714,0.0939158713,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7715,0.1270400974,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +7716,0.1232047254,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +7717,0.1193690972,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +7718,0.1155337252,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7719,0.0869739659,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7720,0.0584139503,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7721,0.029854191,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7722,0.0199615658,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7723,0.0100686843,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7724,0.0001760591,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7725,0.0001242921,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7726,7.2268802273882E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7727,2.05017878791155E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7728,0.000017119,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7729,1.37361978790074E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7730,1.03277756441044E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7731,6.89372617435257E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7732,0.000003434,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7733,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7734,0.0111880819,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7735,0.0223764201,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7736,0.033564502,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7737,0.0847889879,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7738,0.1360132174,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7739,0.187237447,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7740,0.1873197104,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7741,0.1874019738,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7742,0.187483981,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7743,0.1422813828,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7744,0.0970787846,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7745,0.0518759301,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7746,0.0346910753,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7747,0.0175059641,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7748,0.0003211093,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7749,0.000221163,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7750,0.0001212168,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7751,2.13218593942801E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7752,1.77853009851327E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7753,1.42743698108341E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7754,1.07634386365356E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7755,7.17562575769041E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7756,3.58781287884521E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7757,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7758,0.0189615911,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7759,0.0379231821,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7760,0.0568847732,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7761,0.1302845053,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +7762,0.2036842375,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +7763,0.2770837134,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7764,0.272168666,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7765,0.2672536186,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7766,0.2623385713,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7767,0.1981864268,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +7768,0.1340340261,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7769,0.0698818816,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7770,0.0467143488,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7771,0.0235465597,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7772,0.0003790268,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7773,0.0002575537,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7774,0.0001360806,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7775,1.47612872729631E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7776,1.23266999623182E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7777,9.89211265167321E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7778,7.43189810617935E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7779,4.9716835606855E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7780,2.48071633337297E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7781,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7782,0.0147502676,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7783,0.0295002789,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7784,0.0442505464,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7785,0.1106222657,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7786,0.1769939849,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7787,0.2433657042,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7788,0.2389022087,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7789,0.2344384569,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7790,0.2299749614,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7791,0.1733805448,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7792,0.1167858719,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +7793,0.0601914553,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7794,0.0401996494,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7795,0.0202080998,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7796,0.0002162939,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7797,0.000148638,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7798,8.07257897740171E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7799,1.31211442426339E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7800,1.09428292804779E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7801,8.79014155317076E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7802,6.61182659101474E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7803,4.40788439400982E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7804,2.2065049204898E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7805,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7806,0.0047005474,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7807,0.0094008386,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7808,0.014101386,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7809,0.0325775972,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7810,0.0510540647,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7811,0.069530276,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7812,0.0679557386,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7813,0.0663812013,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7814,0.0648069203,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7815,0.0488508913,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7816,0.0328951187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7817,0.016939346,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7818,0.0113146805,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7819,0.0056902712,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7820,0.000065862,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7821,4.84354738644103E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7822,3.12652265156511E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7823,1.39412157577985E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7824,1.1634764621398E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7825,9.32831348499754E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7826,7.02186234859705E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7827,4.68978397734766E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7828,2.34232926518894E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7829,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7830,0.0044829722,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7831,0.0089659444,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7832,0.0134489166,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7833,0.0452251502,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7834,0.0770013837,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7835,0.1087778736,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7836,0.1151283024,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7837,0.1214789874,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +7838,0.1278296725,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +7839,0.0981476966,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7840,0.0684659769,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7841,0.0387840009,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7842,0.025904009,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7843,0.0130242733,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7844,0.0001442813,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7845,9.89211265167321E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7846,5.35609208341891E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7847,8.27759685619287E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7848,5.50985549251228E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7849,2.76774136368059E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7850,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7851,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7852,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7853,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7854,0.0078908819,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7855,0.0157815075,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7856,0.0236723894,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7857,0.0710379262,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7858,0.1184032067,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +7859,0.1657687435,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7860,0.1690131515,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7861,0.1722575594,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7862,0.1755019673,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7863,0.1336160459,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7864,0.0917301244,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7865,0.049844203,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7866,0.0333061795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7867,0.0167678998,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7868,0.0002298763,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7869,0.00015812,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7870,8.63637814407739E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7871,1.47612872729631E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7872,1.23266999623182E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7873,9.89211265167321E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7874,7.43189810617935E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7875,4.9716835606855E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7876,2.48071633337297E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7877,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7878,0.0114725442,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7879,0.0229448322,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7880,0.0344173764,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7881,0.0898362718,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7882,0.1452549109,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7883,0.2006738062,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +7884,0.198165925,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +7885,0.1956580438,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7886,0.1931501626,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7887,0.1458353677,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7888,0.0985205728,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7889,0.0512055217,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7890,0.0342072331,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7891,0.0172089445,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7892,0.0002106559,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7893,0.0001447939,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7894,7.89318833345945E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7895,1.31211442426339E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7896,1.09428292804779E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7897,8.79014155317076E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7898,6.61182659101474E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7899,4.40788439400982E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7900,2.2065049204898E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7901,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7902,0.0083662671,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7903,0.0167325342,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7904,0.025098545,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7905,0.0722998112,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7906,0.1195010775,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +7907,0.1667023437,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7908,0.1637472672,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7909,0.1607921908,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7910,0.1578371143,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7911,0.1188181117,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +7912,0.0797988527,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7913,0.04077985,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7914,0.0272491825,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7915,0.0137185151,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7916,0.0001878476,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7917,0.0001319803,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7918,7.61128875012161E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7919,2.01942610609287E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7920,0.000016222,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7921,1.22498182577715E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7922,8.27759685619287E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7923,5.50985549251228E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7924,2.76774136368059E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7925,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7926,0.0161379823,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7927,0.0322759647,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7928,0.048413947,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7929,0.1285382656,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +7930,0.2086623279,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +7931,0.2887866464,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7932,0.2830927874,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7933,0.2773986721,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7934,0.271704813,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7935,0.204564533,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +7936,0.137424253,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7937,0.0702839729,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7938,0.0469390996,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7939,0.0235942263,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7940,0.000249353,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7941,0.0001696523,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7942,8.96953219711302E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7943,9.84085818197542E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7944,8.20071515164618E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7945,6.58619935616584E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7946,4.9716835606855E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7947,3.30591329550737E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7948,0.000001653,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7949,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7950,0.0192737308,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7951,0.0385472053,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7952,0.0578209361,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7953,0.1387307294,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7954,0.2196402665,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7955,0.3005500598,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7956,0.2923813787,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7957,0.2842126976,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7958,0.2760440164,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7959,0.2075542062,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +7960,0.1390646523,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7961,0.0705748421,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7962,0.047121053,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7963,0.0236672639,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7964,0.0002134749,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7965,0.000145819,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7966,7.79067939406388E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7967,1.03277756441044E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7968,6.89372617435257E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7969,0.000003434,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7970,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7971,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7972,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7973,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7974,0.0043384346,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7975,0.0086771254,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7976,0.01301556,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7977,0.0377517359,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7978,0.0624876555,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7979,0.0872238314,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7980,0.0912801102,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7981,0.0953361326,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7982,0.0993924114,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7983,0.0762361545,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7984,0.0530798976,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7985,0.0299236408,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7986,0.0200074385,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7987,0.0100912363,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7988,0.0001747777,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7989,0.0001196792,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7990,6.45806318192137E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7991,9.50770412893979E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7992,6.3299270076769E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7993,3.1777771212629E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7994,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7995,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7996,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7997,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7998,0.0144066063,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7999,0.0288132127,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8000,0.043219819,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8001,0.1180146978,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +8002,0.1928095767,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +8003,0.2676044555,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +8004,0.2643308325,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +8005,0.2610569532,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +8006,0.2577833303,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +8007,0.1945212197,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +8008,0.1312591091,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +8009,0.0679969985,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8010,0.0454181232,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8011,0.022839248,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8012,0.0002603727,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8013,0.0001745215,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8014,0.000088414,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8015,2.48071633337297E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8016,0.000001653,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8017,8.27759685619287E-007,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8018,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8019,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8020,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8021,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8022,0.01259963,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8023,0.02519926,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8024,0.03779889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8025,0.0923362085,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8026,0.1468737833,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +8027,0.2014111018,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +8028,0.1897025307,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +8029,0.1779939596,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +8030,0.1662853886,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +8031,0.1234184566,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +8032,0.0805512683,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8033,0.0376843363,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8034,0.0251569751,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8035,0.0126296139,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8036,0.0001025089,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8037,7.30376193193488E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8038,0.00004331,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8039,1.39412157577985E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8040,1.1634764621398E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8041,9.32831348499754E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8042,7.02186234859705E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8043,4.68978397734766E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8044,2.34232926518894E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8045,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8046,0.0087737401,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8047,0.0175474802,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8048,0.0263212204,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8049,0.0811888739,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8050,0.1360565274,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +8051,0.190924181,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +8052,0.1898322045,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +8053,0.1887399718,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +8054,0.1876479953,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +8055,0.1417193775,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +8056,0.0957907598,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8057,0.049862142,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8058,0.0333100236,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8059,0.0167579051,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8060,0.0002057867,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8061,0.0001422312,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8062,7.84193386376166E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8063,1.47612872729631E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8064,1.23266999623182E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8065,9.89211265167321E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8066,7.43189810617935E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8067,4.9716835606855E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8068,2.48071633337297E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8069,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8070,0.0147738446,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8071,0.0295476892,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8072,0.0443215339,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8073,0.110167126,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8074,0.1760127181,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +8075,0.2418585665,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +8076,0.2394424308,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +8077,0.2370265514,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +8078,0.234610672,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +8079,0.1773453343,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +8080,0.1200797404,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +8081,0.0628144028,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8082,0.0419341007,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8083,0.0210535422,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8084,0.0001729838,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8085,0.0001173727,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8086,6.15053636373464E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8087,5.79175507585012E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8088,3.86971246218304E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8089,1.92973078412174E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8090,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8091,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8092,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8093,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8094,0.0151298069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8095,0.0302593575,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8096,0.0453891645,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8097,0.1281743588,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +8098,0.2109592969,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +8099,0.2937444913,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +8100,0.2881490408,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +8101,0.2825535904,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +8102,0.2769581399,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +8103,0.2083732526,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +8104,0.1397883654,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +8105,0.0712034781,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8106,0.0475405708,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8107,0.0238774073,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8108,0.0002145,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8109,0.0001478691,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8110,8.1494606819484E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8111,1.51200685608477E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8112,1.21473093183759E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8113,9.17455007590417E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8114,6.20179083343243E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8115,0.000004126,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8116,2.06811785230577E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8117,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8118,0.0052253932,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8119,0.0104507864,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8120,0.0156761796,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8121,0.0401186673,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8122,0.0645608988,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8123,0.0890031304,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8124,0.0835381225,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8125,0.0780731147,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8126,0.0726081069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8127,0.0538043796,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8128,0.0350006523,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8129,0.016196925,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8130,0.0108372451,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8131,0.0054778214,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8132,0.0001181416,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8133,8.09820621225061E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8134,4.40788439400982E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8135,7.02186234859705E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8136,4.68978397734766E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8137,2.34232926518894E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8138,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8139,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8140,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8141,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8142,0.0046236657,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8143,0.0092470752,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8144,0.0138707409,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8145,0.0404551529,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8146,0.067039565,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8147,0.0936239771,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8148,0.0927700776,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8149,0.0919161781,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8150,0.0910622787,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8151,0.0686899589,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8152,0.0463176392,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8153,0.0239455757,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8154,0.0159724304,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8155,0.0079995414,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8156,2.66523242428501E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8157,2.26288483715737E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8158,1.8682254204844E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8159,1.47612872729631E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8160,1.23266999623182E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8161,9.89211265167321E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8162,7.43189810617935E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8163,4.9716835606855E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8164,2.48071633337297E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8165,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8166,0.0067924986,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8167,0.0135847409,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8168,0.0203772395,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8169,0.0607847258,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8170,0.1011919558,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8171,0.1415994421,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +8172,0.1411286698,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +8173,0.1406581537,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +8174,0.1401873814,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +8175,0.1059237684,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8176,0.0716601554,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8177,0.0373965425,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8178,0.024947088,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8179,0.0124976336,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8180,4.81792015159213E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8181,3.66469458339189E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8182,2.53453352655565E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8183,1.39412157577985E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8184,1.1634764621398E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8185,9.32831348499754E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8186,7.02186234859705E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8187,4.68978397734766E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8188,2.34232926518894E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8189,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8190,0.0043053755,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8191,0.0086110072,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8192,0.0129163826,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8193,0.0356157059,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8194,0.0583150292,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8195,0.0810146087,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8196,0.0764529609,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8197,0.0718913131,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8198,0.0673296653,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8199,0.0499241599,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8200,0.0325186546,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8201,0.0151131492,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8202,0.0100991807,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8203,0.0050852122,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8204,7.09874405314373E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8205,5.02293803038329E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8206,2.94713200762285E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8207,8.68763261377518E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8208,5.79175507585012E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8209,2.89587753792506E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8210,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8211,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8212,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8213,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8214,0.0076376848,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8215,0.0152751133,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8216,0.0229127981,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8217,0.0749899021,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8218,0.1270672623,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +8219,0.1791446225,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +8220,0.1780954435,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +8221,0.1770462645,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +8222,0.1759970855,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +8223,0.1327941805,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +8224,0.0895910191,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8225,0.0463878578,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8226,0.030967438,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8227,0.0155470183,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8228,0.0001265985,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8229,8.73888708347297E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8230,4.81792015159213E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8231,9.0207866668108E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8232,7.53440704557493E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8233,0.000006048,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8234,4.56164780310319E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8235,0.000003024,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8236,1.51713230305454E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8237,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8238,0.008826276,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8239,0.0176528082,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8240,0.0264790841,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8241,0.0738571783,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8242,0.1212352724,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +8243,0.1686133666,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +8244,0.161577153,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +8245,0.1545409394,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +8246,0.1475044695,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +8247,0.1100046493,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8248,0.0725045728,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8249,0.0350044964,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8250,0.0233538428,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8251,0.0117031893,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8252,5.25358314402334E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8253,3.97222140157862E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8254,2.66523242428501E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8255,1.39412157577985E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8256,1.1634764621398E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8257,9.32831348499754E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8258,7.02186234859705E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8259,4.68978397734766E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8260,2.34232926518894E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8261,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8262,0.0033079635,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8263,0.0066156707,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8264,0.0099236342,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8265,0.0288221822,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8266,0.0477209866,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8267,0.0666197909,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8268,0.0677051043,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8269,0.0687904177,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8270,0.0698757311,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8271,0.0531557543,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8272,0.0364357774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8273,0.0197158006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8274,0.0131723987,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8275,0.0066289968,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8276,0.000085595,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8277,5.91989125009459E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8278,3.25465882580958E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8279,6.20179083343243E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8280,0.000004126,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8281,2.06811785230577E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8282,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8283,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8284,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8285,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8286,0.0035683362,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8287,0.0071366724,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8288,0.0107050085,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8289,0.0389323826,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8290,0.0671597567,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8291,0.0953871308,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8292,0.097519573,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8293,0.0996520153,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8294,0.1017844575,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8295,0.0773722098,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8296,0.0529597059,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8297,0.0285474583,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8298,0.019052824,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8299,0.0095584461,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8300,6.38118147737469E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8301,4.48476609855651E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8302,2.56272348488943E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8303,6.61182659101474E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8304,4.40788439400982E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8305,2.2065049204898E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8306,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8307,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8308,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8309,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8310,0.0094233905,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8311,0.0188467811,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8312,0.0282701716,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8313,0.0855731812,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8314,0.1428761909,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +8315,0.2001794569,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +8316,0.1973784001,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +8317,0.1945775996,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +8318,0.1917767991,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +8319,0.1444473967,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +8320,0.0971182505,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8321,0.0497888481,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8322,0.0332526186,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8323,0.016716389,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8324,0.0001801595,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8325,0.0001240358,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8326,6.7655900001081E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8327,0.000011481,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8328,9.58458583348648E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8329,7.6881704546683E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8330,5.79175507585012E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8331,3.86971246218304E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8332,1.92973078412174E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8333,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8334,0.0082704212,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8335,0.0165410987,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8336,0.02481152,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8337,0.0740086352,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8338,0.1232054943,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +8339,0.1724023533,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +8340,0.1717616724,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +8341,0.1711212478,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +8342,0.1704805669,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +8343,0.1288334913,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +8344,0.0871864157,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8345,0.0455393401,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8346,0.0303974883,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8347,0.0152556366,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8348,0.0001140412,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8349,8.1494606819484E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8350,0.000048948,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8351,1.64014303032924E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8352,1.36849434093096E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8353,1.09684565153268E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8354,8.27759685619287E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8355,5.50985549251228E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8356,2.76774136368059E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8357,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8358,0.0050911065,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8359,0.0101819567,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8360,0.0152730632,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8361,0.0512583138,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8362,0.0872435644,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8363,0.1232285588,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +8364,0.1215243477,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +8365,0.1198203928,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +8366,0.1181161817,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +8367,0.0888621806,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8368,0.0596084357,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8369,0.0303546909,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8370,0.020264736,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8371,0.0101747811,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8372,8.48261473498402E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8373,6.3299270076769E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8374,4.20286651521867E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8375,2.05017878791155E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8376,0.000017119,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8377,1.37361978790074E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8378,1.03277756441044E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8379,6.89372617435257E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8380,0.000003434,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8381,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8382,0.0075223622,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8383,0.0150449808,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8384,0.022567343,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8385,0.0716055694,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8386,0.1206435396,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +8387,0.1696815097,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +8388,0.1670101268,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +8389,0.1643384876,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +8390,0.1616671046,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +8391,0.1216399265,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +8392,0.0816130046,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8393,0.0415860828,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8394,0.0277768473,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8395,0.0139678681,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8396,0.0001586326,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8397,0.0001107097,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8398,6.27867253797911E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8399,1.47612872729631E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8400,1.23266999623182E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8401,9.89211265167321E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8402,7.43189810617935E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8403,4.9716835606855E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8404,2.48071633337297E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8405,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8406,0.0055657229,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8407,0.0111311895,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8408,0.0166969123,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8409,0.0616252991,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8410,0.1065539421,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8411,0.1514825852,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +8412,0.1522993252,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +8413,0.1531158089,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +8414,0.1539325488,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +8415,0.1164329849,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +8416,0.0789331647,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8417,0.0414333445,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8418,0.0276535803,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8419,0.0138735599,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8420,9.37956795469532E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8421,6.48369041677027E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8422,3.56218564399631E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8423,6.56057212131695E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8424,5.48422825766339E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8425,4.38225715916093E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8426,3.30591329550737E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8427,2.2065049204898E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8428,0.000001102,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8429,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8430,0.0081576614,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8431,0.0163153228,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8432,0.0244729842,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8433,0.0882491771,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8434,0.1520251138,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +8435,0.2158013067,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +8436,0.2199349797,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +8437,0.2240686526,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +8438,0.2282023256,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +8439,0.173376957,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +8440,0.1185515884,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +8441,0.0637259635,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8442,0.0425529984,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8443,0.0213800332,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8444,0.0002068118,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8445,0.0001404372,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8446,7.38064363648157E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8447,7.27813469708599E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8448,4.84354738644103E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8449,2.42689914019029E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8450,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8451,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8452,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8453,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8454,0.0053314899,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8455,0.0106627236,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8456,0.0159942135,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8457,0.0574944451,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8458,0.098994933,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8459,0.1404951645,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +8460,0.1441526835,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +8461,0.1478104587,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +8462,0.1514679777,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +8463,0.1152782217,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8464,0.079088722,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8465,0.042898966,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8466,0.0286353597,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8467,0.0143717533,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8468,0.0001081469,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8469,0.000074319,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8470,0.000040491,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8471,6.61182659101474E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8472,4.40788439400982E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8473,2.2065049204898E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8474,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8475,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8476,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8477,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8478,0.0051626065,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8479,0.0103254692,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8480,0.0154880757,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8481,0.0592863014,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8482,0.1030845271,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8483,0.1468824965,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +8484,0.1449148374,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +8485,0.1429471784,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +8486,0.1409795193,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +8487,0.1059540086,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8488,0.0709284979,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8489,0.0359032435,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8490,0.0239663338,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8491,0.0120296803,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8492,9.27705901529975E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8493,6.71433553041031E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8494,4.12598481067199E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8495,1.54275953790344E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8496,1.25060906062604E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8497,0.000009559,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8498,6.61182659101474E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8499,4.40788439400982E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8500,2.2065049204898E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8501,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8502,0.0064890721,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8503,0.0129784005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8504,0.0194674727,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8505,0.0611655465,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8506,0.1028633641,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8507,0.1445614379,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +8508,0.1396850876,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +8509,0.1348084811,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +8510,0.1299321309,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +8511,0.0970939047,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8512,0.0642554222,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8513,0.031417196,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8514,0.0209717914,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8515,0.0105263867,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8516,8.09820621225061E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8517,5.99677295464127E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8518,3.89533969703194E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8519,1.80415733336216E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8520,1.5043186856301E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8521,1.20704276138292E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8522,9.09766837135748E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8523,6.07365465918796E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8524,0.000003024,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8525,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8526,0.002256478,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8527,0.0045129561,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8528,0.0067694341,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8529,0.0238251277,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8530,0.0408810776,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8531,0.0579370275,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8532,0.0686592062,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8533,0.079381385,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8534,0.0901035638,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8535,0.0706919585,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8536,0.0512803532,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8537,0.0318684916,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8538,0.0212987949,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8539,0.0107290981,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8540,0.0001591451,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8541,0.0001084032,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8542,5.76612784100122E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8543,6.86809893950368E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8544,4.58727503795208E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8545,2.28851207200626E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8546,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8547,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8548,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8549,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8550,0.004440431,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8551,0.008880862,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8552,0.0133212929,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8553,0.0427918442,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8554,0.0722621392,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8555,0.1017326905,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8556,0.1004559416,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8557,0.0991791928,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8558,0.0979027002,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8559,0.0737400618,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8560,0.0495776797,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8561,0.0254150413,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8562,0.0169793244,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8563,0.0085438638,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8564,0.0001081469,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8565,7.6881704546683E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8566,4.56164780310319E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8567,1.44537604547764E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8568,1.17116463259447E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8569,8.94390496226412E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8570,6.20179083343243E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8571,0.000004126,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8572,2.06811785230577E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8573,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8574,0.0010268833,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8575,0.0020537666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8576,0.0030806499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8577,0.0115888919,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8578,0.0200968776,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8579,0.0286051195,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8580,0.0288870191,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8581,0.0291689187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8582,0.0294508183,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8583,0.0223120957,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8584,0.0151731169,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8585,0.0080343944,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8586,0.0053689057,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8587,0.0027031607,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8588,0.000037672,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8589,3.33154053035626E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8590,2.89587753792506E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8591,2.46277726897874E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8592,1.99892431821376E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8593,1.53763409093366E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8594,1.07634386365356E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8595,7.17562575769041E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8596,3.58781287884521E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8597,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8598,0.0031485621,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8599,0.0062971241,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8600,0.0094456862,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8601,0.035900937,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8602,0.0623559316,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8603,0.0888111824,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8604,0.0934266474,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8605,0.0980418561,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8606,0.1026570648,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8607,0.0786820178,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8608,0.0547067145,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8609,0.0307316675,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8610,0.0205476606,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8611,0.0103636538,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8612,0.0001799032,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8613,0.0001219856,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8614,6.40680871222358E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8615,0.000006048,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8616,4.02347587127641E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8617,2.0117379356382E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8618,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8619,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8620,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8621,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8622,0.0076471669,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8623,0.0152943338,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8624,0.0229415006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8625,0.0696043387,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8626,0.1162669204,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +8627,0.1629297585,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +8628,0.1658925231,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +8629,0.1688550314,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +8630,0.1718175398,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +8631,0.1307201683,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +8632,0.0896227969,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8633,0.0485251692,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8634,0.0324140955,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8635,0.0163027654,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8636,0.0001914354,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8637,0.0001327491,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8638,0.000074319,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8639,0.000015607,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8640,1.24804633714115E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8641,9.32831348499754E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8642,6.20179083343243E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8643,0.000004126,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8644,2.06811785230577E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8645,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8646,0.0072758282,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8647,0.0145514002,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8648,0.0218272285,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8649,0.0667753482,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8650,0.111723468,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8651,0.1566715877,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +8652,0.1558845753,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +8653,0.1550975629,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +8654,0.1543102943,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +8655,0.1165680404,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +8656,0.0788255303,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8657,0.0410830202,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8658,0.0274418993,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8659,0.0138007785,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8660,0.0001596577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8661,0.0001073781,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8662,5.48422825766339E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8663,2.48071633337297E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8664,0.000001653,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8665,8.27759685619287E-007,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8666,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8667,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8668,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8669,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8670,0.0077801722,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8671,0.0155600882,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8672,0.0233402604,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8673,0.0789900572,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8674,0.1346395976,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +8675,0.1902893944,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +8676,0.187888635,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +8677,0.1854878757,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +8678,0.1830873726,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +8679,0.1378155808,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +8680,0.0925440454,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8681,0.0472722537,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8682,0.0315763411,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8683,0.0158806849,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8684,0.0001847724,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8685,0.0001253172,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8686,6.61182659101474E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8687,6.61182659101474E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8688,4.40788439400982E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8689,2.2065049204898E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8690,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8691,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8692,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8693,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8694,0.0087094158,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8695,0.0174185753,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8696,0.026127991,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8697,0.0876074711,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8698,0.1490869513,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +8699,0.2105664314,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +8700,0.2130243395,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +8701,0.2154822476,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +8702,0.2179401557,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +8703,0.165324111,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +8704,0.1127080663,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8705,0.0600920216,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8706,0.0401291745,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8707,0.0201665836,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8708,0.0002037365,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8709,0.0001378745,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8710,7.2012529925393E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8711,6.20179083343243E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8712,0.000004126,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8713,2.06811785230577E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8714,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8715,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8716,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8717,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8718,0.0099015947,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8719,0.0198031895,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8720,0.0297047842,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8721,0.0924066834,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8722,0.1551088389,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +8723,0.2178109944,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +8724,0.2167577151,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +8725,0.2157044357,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +8726,0.2146511564,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +8727,0.1621488966,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +8728,0.1096468931,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8729,0.0571446334,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8730,0.0381797108,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8731,0.0192150444,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8732,0.0002501218,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8733,0.0001683709,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8734,8.66200537892628E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8735,4.9716835606855E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8736,3.30591329550737E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8737,0.000001653,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8738,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8739,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8740,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8741,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8742,0.0070925935,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8743,0.0141849308,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8744,0.0212775243,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8745,0.0685221005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8746,0.1157669331,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +8747,0.1630117656,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +8748,0.1641916435,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +8749,0.1653717777,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +8750,0.1665519118,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +8751,0.1262769184,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +8752,0.0860019249,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8753,0.0457269314,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8754,0.0305661155,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8755,0.015405556,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8756,0.0002447401,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8757,0.0001652957,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8758,8.61075090922849E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8759,6.61182659101474E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8760,4.40788439400982E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, diff --git a/emlab-generation/src/main/resources/data/multiNodeProduction_DE_windOff.csv b/emlab-generation/src/main/resources/data/multiNodeProduction_DE_windOff.csv new file mode 100644 index 00000000..9a69c0d1 --- /dev/null +++ b/emlab-generation/src/main/resources/data/multiNodeProduction_DE_windOff.csv @@ -0,0 +1,8761 @@ +hour,de_node_0,de_node_1,de_node_2,de_node_3,de_node_4,de_node_5,de_node_6,de_node_7,de_node_8,de_node_9,de_node_10,de_node_11,de_node_12,de_node_13,de_node_14,de_node_15,de_node_16,de_node_17,de_node_18,de_node_19 +1,0,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2,0,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +3,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +4,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +5,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +6,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1, +7,0,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8,0,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +9,0,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +10,0,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +11,0,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +12,0,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +13,0,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +14,0,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +15,0,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +16,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +17,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +18,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +19,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +20,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +21,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +22,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +23,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +24,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +25,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +26,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +27,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +28,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +29,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +30,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +31,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0, +32,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0, +33,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0, +34,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0, +35,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0, +36,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0, +37,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0, +38,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0, +39,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +40,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1, +41,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1, +42,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1, +43,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +44,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +45,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +46,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +47,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +48,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +49,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +50,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +51,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +52,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +53,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +54,0,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +55,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +56,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +57,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +58,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0, +59,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0, +60,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +61,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +62,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +63,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +64,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +65,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +66,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +67,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +68,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +69,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +70,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0, +71,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0, +72,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +73,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +74,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +75,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1, +76,0,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +77,0,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +78,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +79,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2, +80,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2, +81,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +82,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +83,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +84,0,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +85,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +86,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +87,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1, +88,0,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +89,0,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +90,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +91,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +92,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +93,0,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +94,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +95,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +96,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1, +97,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +98,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +99,0,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +100,0,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +101,0,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +102,0,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +103,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +104,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +105,0,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +106,0,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +107,0,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +108,0,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +109,0,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +110,0,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +111,0,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +112,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +113,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +114,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +115,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1, +116,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1, +117,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +118,0,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +119,0,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +120,0,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +121,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +122,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +123,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +124,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +125,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +126,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +127,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +128,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +129,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +130,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +131,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +132,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0, +133,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +134,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +135,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +136,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +137,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +138,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +139,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +140,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +141,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +142,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +143,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +144,0,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +145,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +146,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +147,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1, +148,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +149,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +150,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +151,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +152,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +153,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +154,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +155,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +156,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1, +157,0,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +158,0,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +159,0,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +160,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +161,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +162,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +163,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +164,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +165,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +166,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +167,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +168,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +169,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +170,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +171,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +172,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +173,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +174,0,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +175,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +176,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +177,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1, +178,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +179,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +180,0,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +181,0,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +182,0,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +183,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2, +184,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +185,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +186,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +187,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +188,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +189,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3, +190,0,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3, +191,0,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3, +192,0,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3, +193,0,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +194,0,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +195,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +196,0,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4, +197,0,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4, +198,0,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +199,0,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +200,0,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +201,0,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +202,0,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +203,0,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +204,0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5, +205,0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5, +206,0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5, +207,0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5, +208,0,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +209,0,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +210,0,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +211,0,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +212,0,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +213,0,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +214,0,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4, +215,0,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4, +216,0,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4, +217,0,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4, +218,0,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4, +219,0,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4, +220,0,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4, +221,0,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4, +222,0,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +223,0,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +224,0,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +225,0,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +226,0,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +227,0,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +228,0,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +229,0,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +230,0,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +231,0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5, +232,0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5, +233,0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5, +234,0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5, +235,0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5, +236,0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5, +237,0,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +238,0,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +239,0,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +240,0,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +241,0,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +242,0,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +243,0,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4, +244,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4, +245,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4, +246,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4, +247,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4, +248,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4, +249,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4, +250,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4, +251,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4, +252,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +253,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +254,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +255,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +256,0,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3, +257,0,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3, +258,0,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3, +259,0,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3, +260,0,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3, +261,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3, +262,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +263,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +264,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +265,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +266,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +267,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +268,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +269,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +270,0,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +271,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +272,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +273,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1, +274,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +275,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +276,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1, +277,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1, +278,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1, +279,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +280,0,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +281,0,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +282,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +283,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2, +284,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2, +285,0,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2, +286,0,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +287,0,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +288,0,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +289,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +290,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +291,0,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3, +292,0,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3, +293,0,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3, +294,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +295,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +296,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +297,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +298,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +299,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +300,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +301,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +302,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +303,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +304,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4, +305,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4, +306,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4, +307,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4, +308,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4, +309,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4, +310,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4, +311,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4, +312,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +313,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +314,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +315,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +316,0,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +317,0,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +318,0,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +319,0,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3, +320,0,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3, +321,0,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3, +322,0,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3, +323,0,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3, +324,0,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3, +325,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +326,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +327,0,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +328,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2, +329,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2, +330,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2, +331,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +332,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +333,0,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +334,0,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +335,0,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +336,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +337,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +338,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +339,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +340,0,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +341,0,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +342,0,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +343,0,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +344,0,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +345,0,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +346,0,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +347,0,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +348,0,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +349,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +350,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +351,0,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +352,0,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +353,0,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +354,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1, +355,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +356,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +357,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +358,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +359,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +360,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +361,0,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +362,0,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +363,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +364,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2, +365,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2, +366,0,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +367,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +368,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +369,0,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3, +370,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +371,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +372,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +373,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +374,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +375,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4, +376,0,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +377,0,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +378,0,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +379,0,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +380,0,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +381,0,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +382,0,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +383,0,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +384,0,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4, +385,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4, +386,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4, +387,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +388,0,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3, +389,0,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3, +390,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +391,0,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +392,0,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +393,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2, +394,0,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +395,0,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +396,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1, +397,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +398,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +399,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +400,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +401,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +402,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +403,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +404,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +405,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +406,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +407,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +408,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +409,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +410,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +411,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +412,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +413,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +414,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +415,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +416,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +417,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +418,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +419,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +420,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +421,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +422,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +423,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +424,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +425,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +426,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +427,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +428,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +429,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +430,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +431,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +432,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +433,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +434,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +435,0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +436,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +437,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +438,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +439,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +440,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +441,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +442,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1, +443,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1, +444,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +445,0,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +446,0,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +447,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +448,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1, +449,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1, +450,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1, +451,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1, +452,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1, +453,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1, +454,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1, +455,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1, +456,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +457,0,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +458,0,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +459,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +460,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2, +461,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2, +462,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2, +463,0,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2, +464,0,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2, +465,0,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +466,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +467,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +468,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +469,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +470,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +471,0,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +472,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +473,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +474,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +475,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +476,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +477,0,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2, +478,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2, +479,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2, +480,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2, +481,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +482,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +483,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +484,0,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +485,0,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +486,0,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +487,0,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +488,0,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +489,0,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +490,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +491,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +492,0,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +493,0,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +494,0,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +495,0,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +496,0,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +497,0,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +498,0,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +499,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +500,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +501,0,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +502,0,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +503,0,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +504,0,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +505,0,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +506,0,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +507,0,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +508,0,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +509,0,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +510,0,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +511,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +512,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +513,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +514,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +515,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +516,0,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +517,0,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +518,0,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +519,0,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +520,0,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +521,0,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +522,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +523,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2, +524,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2, +525,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2, +526,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2, +527,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2, +528,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +529,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +530,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +531,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +532,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +533,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +534,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +535,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2, +536,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2, +537,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2, +538,0,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2, +539,0,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2, +540,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2, +541,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2, +542,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2, +543,0,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2, +544,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +545,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +546,0,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +547,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +548,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +549,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3, +550,0,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3, +551,0,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3, +552,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3, +553,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +554,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +555,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3, +556,0,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3, +557,0,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3, +558,0,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3, +559,0,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3, +560,0,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3, +561,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3, +562,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +563,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +564,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +565,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +566,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +567,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +568,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +569,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +570,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +571,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +572,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +573,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +574,0,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +575,0,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +576,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +577,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2, +578,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2, +579,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2, +580,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2, +581,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2, +582,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2, +583,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2, +584,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2, +585,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2, +586,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +587,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +588,0,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +589,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +590,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +591,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +592,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +593,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +594,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +595,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +596,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +597,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1, +598,0,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +599,0,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +600,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +601,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +602,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +603,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +604,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +605,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +606,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +607,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0, +608,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0, +609,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +610,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +611,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +612,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +613,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +614,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +615,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +616,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +617,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +618,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +619,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +620,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +621,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +622,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +623,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +624,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +625,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +626,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +627,0,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +628,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +629,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +630,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +631,0,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +632,0,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +633,0,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3, +634,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +635,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +636,0,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +637,0,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5, +638,0,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5, +639,0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5, +640,0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5, +641,0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5, +642,0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5, +643,0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5, +644,0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5, +645,0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5, +646,0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5, +647,0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5, +648,0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5, +649,0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5, +650,0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5, +651,0,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +652,0,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +653,0,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +654,0,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +655,0,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +656,0,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +657,0,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +658,0,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4, +659,0,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4, +660,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4, +661,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4, +662,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4, +663,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +664,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +665,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +666,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +667,0,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +668,0,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +669,0,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3, +670,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3, +671,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3, +672,0,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +673,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +674,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +675,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2, +676,0,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +677,0,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +678,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1, +679,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +680,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +681,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0, +682,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +683,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +684,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +685,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +686,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +687,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +688,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0, +689,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0, +690,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +691,0,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +692,0,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +693,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +694,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +695,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +696,0,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +697,0,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3, +698,0,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3, +699,0,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +700,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +701,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +702,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +703,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +704,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +705,0,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3, +706,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2, +707,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2, +708,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +709,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +710,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +711,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +712,0,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +713,0,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +714,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +715,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +716,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +717,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +718,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +719,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +720,0,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +721,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1, +722,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1, +723,0,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +724,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2, +725,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2, +726,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2, +727,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2, +728,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2, +729,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +730,0,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +731,0,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +732,0,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +733,0,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +734,0,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +735,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +736,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +737,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +738,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2, +739,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2, +740,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2, +741,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2, +742,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2, +743,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2, +744,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2, +745,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2, +746,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2, +747,0,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +748,0,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +749,0,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +750,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +751,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +752,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +753,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +754,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +755,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +756,0,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +757,0,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +758,0,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +759,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +760,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +761,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +762,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +763,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +764,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +765,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +766,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +767,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +768,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1, +769,0,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +770,0,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +771,0,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +772,0,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +773,0,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +774,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +775,0,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +776,0,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +777,0,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +778,0,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +779,0,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +780,0,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +781,0,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +782,0,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +783,0,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +784,0,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4, +785,0,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4, +786,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +787,0,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +788,0,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +789,0,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +790,0,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +791,0,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +792,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +793,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +794,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +795,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4, +796,0,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +797,0,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +798,0,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +799,0,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +800,0,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +801,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4, +802,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +803,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +804,0,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +805,0,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3, +806,0,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3, +807,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3, +808,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +809,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +810,0,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +811,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2, +812,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2, +813,0,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +814,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +815,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +816,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1, +817,0,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +818,0,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +819,0,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +820,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +821,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +822,0,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +823,0,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +824,0,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +825,0,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +826,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +827,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +828,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +829,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +830,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +831,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +832,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +833,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +834,0,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +835,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1, +836,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1, +837,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +838,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +839,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +840,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +841,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2, +842,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2, +843,0,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +844,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +845,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +846,0,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3, +847,0,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +848,0,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +849,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +850,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4, +851,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4, +852,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +853,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +854,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +855,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +856,0,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +857,0,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +858,0,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3, +859,0,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3, +860,0,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3, +861,0,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3, +862,0,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3, +863,0,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3, +864,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3, +865,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +866,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +867,0,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +868,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2, +869,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2, +870,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2, +871,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2, +872,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2, +873,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +874,0,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +875,0,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +876,0,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +877,0,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +878,0,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +879,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +880,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2, +881,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2, +882,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2, +883,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2, +884,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2, +885,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +886,0,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +887,0,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +888,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +889,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1, +890,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1, +891,0,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +892,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +893,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +894,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +895,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +896,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +897,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +898,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0, +899,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0, +900,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +901,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +902,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +903,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +904,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +905,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +906,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +907,0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +908,0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +909,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +910,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +911,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +912,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +913,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +914,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +915,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +916,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +917,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +918,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +919,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +920,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +921,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +922,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +923,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +924,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +925,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +926,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +927,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +928,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +929,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +930,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +931,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +932,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +933,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +934,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +935,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +936,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +937,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +938,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +939,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +940,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +941,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +942,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +943,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +944,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +945,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +946,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +947,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +948,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +949,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +950,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +951,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +952,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +953,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +954,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +955,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +956,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +957,0,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +958,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +959,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +960,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +961,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +962,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +963,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1, +964,0,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +965,0,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +966,0,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2, +967,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3, +968,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3, +969,0,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3, +970,0,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3, +971,0,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3, +972,0,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3, +973,0,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3, +974,0,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3, +975,0,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3, +976,0,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +977,0,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +978,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +979,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +980,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +981,0,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3, +982,0,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3, +983,0,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3, +984,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3, +985,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +986,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +987,0,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +988,0,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +989,0,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +990,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +991,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2, +992,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2, +993,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2, +994,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2, +995,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2, +996,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2, +997,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2, +998,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2, +999,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2, +1000,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1001,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1002,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1003,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1004,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1005,0,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1006,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1007,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1008,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1009,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1010,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1011,0,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1012,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2, +1013,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2, +1014,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2, +1015,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +1016,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +1017,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +1018,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +1019,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +1020,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +1021,0,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +1022,0,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +1023,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +1024,0,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3, +1025,0,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3, +1026,0,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3, +1027,0,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3, +1028,0,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3, +1029,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +1030,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +1031,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +1032,0,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +1033,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +1034,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +1035,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +1036,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +1037,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +1038,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +1039,0,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +1040,0,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +1041,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +1042,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +1043,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +1044,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2, +1045,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1046,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1047,0,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1048,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1049,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1050,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1051,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1052,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1053,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1054,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1, +1055,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1, +1056,0,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1057,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1058,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1059,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1060,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1061,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1062,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1063,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1064,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1065,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1066,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1067,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1068,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1069,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0, +1070,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0, +1071,0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +1072,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +1073,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +1074,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +1075,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +1076,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +1077,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +1078,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +1079,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +1080,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +1081,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +1082,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +1083,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +1084,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +1085,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +1086,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +1087,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +1088,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +1089,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +1090,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +1091,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +1092,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +1093,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +1094,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +1095,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +1096,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0, +1097,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0, +1098,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1099,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1100,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1101,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1102,0,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1103,0,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1104,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1105,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1, +1106,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1, +1107,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1108,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1109,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1110,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1111,0,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1112,0,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1113,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1114,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2, +1115,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2, +1116,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2, +1117,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2, +1118,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2, +1119,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2, +1120,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2, +1121,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2, +1122,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2, +1123,0,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2, +1124,0,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2, +1125,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +1126,0,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +1127,0,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +1128,0,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2, +1129,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2, +1130,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2, +1131,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2, +1132,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2, +1133,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2, +1134,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2, +1135,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2, +1136,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2, +1137,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2, +1138,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2, +1139,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2, +1140,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2, +1141,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1142,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1143,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1144,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1145,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1146,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2, +1147,0,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2, +1148,0,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2, +1149,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2, +1150,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1151,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1152,0,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1153,0,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1154,0,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1155,0,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1156,0,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1157,0,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1158,0,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1159,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1160,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1161,0,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1162,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1163,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1164,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1165,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1166,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1167,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1168,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1169,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1170,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1171,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1172,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1173,0,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1174,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1175,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1176,0,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1177,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1178,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1179,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1180,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1181,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1182,0,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1183,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1, +1184,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1, +1185,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1186,0,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1187,0,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1188,0,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1189,0,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1190,0,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1191,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1192,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1193,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1194,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1195,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1196,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1197,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1198,0,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1199,0,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1200,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2, +1201,0,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +1202,0,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +1203,0,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3, +1204,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +1205,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +1206,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +1207,0,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +1208,0,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +1209,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +1210,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +1211,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +1212,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +1213,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +1214,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +1215,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +1216,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4, +1217,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4, +1218,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +1219,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +1220,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +1221,0,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3, +1222,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3, +1223,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3, +1224,0,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +1225,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2, +1226,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2, +1227,0,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1228,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1, +1229,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1, +1230,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1231,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1232,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1233,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1234,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1235,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1236,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1237,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1238,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1239,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1240,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1241,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1242,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1243,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1244,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1245,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1246,0,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1247,0,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1248,0,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2, +1249,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +1250,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +1251,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2, +1252,0,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1253,0,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1254,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1255,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1, +1256,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1, +1257,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1258,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1259,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1260,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0, +1261,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +1262,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +1263,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +1264,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +1265,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +1266,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +1267,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1268,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1269,0,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1270,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1, +1271,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1, +1272,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1, +1273,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1274,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1275,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1276,0,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1277,0,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1278,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1279,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1280,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1281,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1282,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1283,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1284,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1285,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1286,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1287,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0, +1288,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +1289,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +1290,0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +1291,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +1292,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +1293,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1294,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1295,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1296,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1297,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1298,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1299,0,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1300,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2, +1301,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2, +1302,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +1303,0,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3, +1304,0,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3, +1305,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +1306,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +1307,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +1308,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +1309,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +1310,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +1311,0,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3, +1312,0,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +1313,0,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +1314,0,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +1315,0,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +1316,0,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +1317,0,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2, +1318,0,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2, +1319,0,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2, +1320,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2, +1321,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2, +1322,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2, +1323,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2, +1324,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2, +1325,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2, +1326,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2, +1327,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +1328,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +1329,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +1330,0,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +1331,0,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +1332,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2, +1333,0,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1334,0,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1335,0,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1336,0,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1337,0,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1338,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1339,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2, +1340,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2, +1341,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1342,0,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1343,0,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1344,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1345,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1, +1346,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1, +1347,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1348,0,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1349,0,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1350,0,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1351,0,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1352,0,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1353,0,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1354,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1355,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1356,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1357,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1358,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1359,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1360,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1361,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1362,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1363,0,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1364,0,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1365,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1366,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1367,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1368,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +1369,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +1370,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +1371,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +1372,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +1373,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +1374,0,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3, +1375,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +1376,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +1377,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4, +1378,0,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4, +1379,0,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4, +1380,0,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4, +1381,0,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4, +1382,0,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4, +1383,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +1384,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +1385,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +1386,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +1387,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1388,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1389,0,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1390,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1, +1391,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1, +1392,0,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1393,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1394,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1395,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1396,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1397,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1398,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1399,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1400,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1401,0,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1402,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1403,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1404,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2, +1405,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +1406,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +1407,0,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +1408,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +1409,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +1410,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +1411,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +1412,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +1413,0,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3, +1414,0,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3, +1415,0,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3, +1416,0,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3, +1417,0,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3, +1418,0,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3, +1419,0,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +1420,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +1421,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +1422,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4, +1423,0,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +1424,0,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +1425,0,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +1426,0,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4, +1427,0,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4, +1428,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4, +1429,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +1430,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +1431,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +1432,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +1433,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +1434,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +1435,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +1436,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +1437,0,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +1438,0,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3, +1439,0,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3, +1440,0,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3, +1441,0,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3, +1442,0,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3, +1443,0,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3, +1444,0,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3, +1445,0,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3, +1446,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3, +1447,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +1448,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +1449,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +1450,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +1451,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +1452,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3, +1453,0,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3, +1454,0,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3, +1455,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +1456,0,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +1457,0,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +1458,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2, +1459,0,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1460,0,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1461,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1462,0,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2, +1463,0,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2, +1464,0,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +1465,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +1466,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +1467,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3, +1468,0,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3, +1469,0,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3, +1470,0,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3, +1471,0,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3, +1472,0,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3, +1473,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +1474,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +1475,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +1476,0,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +1477,0,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2, +1478,0,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2, +1479,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1480,0,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1481,0,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1482,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1483,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1, +1484,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1, +1485,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1486,0,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1487,0,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1488,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1489,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1490,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1491,0,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1492,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1, +1493,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1, +1494,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1, +1495,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1, +1496,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1, +1497,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1, +1498,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1499,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1500,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1, +1501,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1, +1502,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1, +1503,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1504,0,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1505,0,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1506,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1507,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2, +1508,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2, +1509,0,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1510,0,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1511,0,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1512,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1, +1513,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1514,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1515,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1516,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1517,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1518,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1519,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1520,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1521,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1522,0,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +1523,0,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +1524,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1525,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1526,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1527,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1528,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1529,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1530,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1531,0,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2, +1532,0,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2, +1533,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +1534,0,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3, +1535,0,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3, +1536,0,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3, +1537,0,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3, +1538,0,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3, +1539,0,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3, +1540,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +1541,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +1542,0,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3, +1543,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3, +1544,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3, +1545,0,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +1546,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2, +1547,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2, +1548,0,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1549,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1550,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1551,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1, +1552,0,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1553,0,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1554,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1555,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1556,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1557,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1558,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1559,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1560,0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +1561,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +1562,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +1563,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +1564,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +1565,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +1566,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1567,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1568,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1569,0,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1570,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1, +1571,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1, +1572,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1573,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1574,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1575,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1, +1576,0,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1577,0,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1578,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1579,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1580,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1581,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1582,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1583,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1584,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +1585,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +1586,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +1587,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +1588,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +1589,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +1590,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +1591,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +1592,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +1593,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +1594,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +1595,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +1596,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +1597,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +1598,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +1599,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +1600,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +1601,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +1602,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +1603,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +1604,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +1605,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +1606,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +1607,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +1608,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +1609,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +1610,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +1611,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +1612,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +1613,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +1614,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +1615,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +1616,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +1617,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +1618,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +1619,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +1620,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +1621,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +1622,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +1623,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +1624,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +1625,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +1626,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +1627,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +1628,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +1629,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +1630,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +1631,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +1632,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +1633,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +1634,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +1635,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +1636,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +1637,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +1638,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +1639,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +1640,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +1641,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +1642,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +1643,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +1644,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +1645,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +1646,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +1647,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +1648,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +1649,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +1650,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +1651,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +1652,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +1653,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +1654,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +1655,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +1656,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +1657,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +1658,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +1659,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +1660,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0, +1661,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0, +1662,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1663,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1664,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1665,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1666,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0, +1667,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0, +1668,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1669,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1670,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1671,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1672,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1673,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1674,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1, +1675,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1676,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1677,0,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1678,0,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1679,0,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1680,0,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1681,0,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1682,0,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1683,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1684,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1685,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1686,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1687,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1688,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1689,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1690,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1691,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1692,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2, +1693,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2, +1694,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2, +1695,0,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +1696,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +1697,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +1698,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +1699,0,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +1700,0,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +1701,0,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +1702,0,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +1703,0,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +1704,0,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +1705,0,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +1706,0,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +1707,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +1708,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +1709,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +1710,0,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3, +1711,0,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +1712,0,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +1713,0,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +1714,0,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +1715,0,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +1716,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +1717,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +1718,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +1719,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4, +1720,0,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4, +1721,0,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4, +1722,0,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +1723,0,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +1724,0,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +1725,0,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +1726,0,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +1727,0,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +1728,0,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4, +1729,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4, +1730,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4, +1731,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +1732,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +1733,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +1734,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +1735,0,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3, +1736,0,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3, +1737,0,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3, +1738,0,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3, +1739,0,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3, +1740,0,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3, +1741,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +1742,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +1743,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4, +1744,0,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +1745,0,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +1746,0,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4, +1747,0,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4, +1748,0,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4, +1749,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +1750,0,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3, +1751,0,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3, +1752,0,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3, +1753,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +1754,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +1755,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +1756,0,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +1757,0,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +1758,0,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +1759,0,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +1760,0,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +1761,0,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2, +1762,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2, +1763,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2, +1764,0,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1765,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1766,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1767,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1768,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1769,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1770,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1771,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1772,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1773,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1774,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1775,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1776,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1777,0,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1778,0,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1779,0,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1780,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1, +1781,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1, +1782,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1, +1783,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1784,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1785,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1786,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1787,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1788,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1, +1789,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1, +1790,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1, +1791,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1792,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1793,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1794,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1, +1795,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1, +1796,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1, +1797,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1798,0,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1799,0,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1800,0,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1801,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1802,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1803,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2, +1804,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2, +1805,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2, +1806,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2, +1807,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2, +1808,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2, +1809,0,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2, +1810,0,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2, +1811,0,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2, +1812,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +1813,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +1814,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +1815,0,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +1816,0,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +1817,0,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +1818,0,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +1819,0,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +1820,0,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +1821,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +1822,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +1823,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +1824,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2, +1825,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2, +1826,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2, +1827,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1828,0,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1829,0,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1830,0,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1831,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1832,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1833,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2, +1834,0,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +1835,0,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +1836,0,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +1837,0,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +1838,0,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +1839,0,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +1840,0,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +1841,0,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +1842,0,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +1843,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +1844,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +1845,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3, +1846,0,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3, +1847,0,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3, +1848,0,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3, +1849,0,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +1850,0,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +1851,0,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +1852,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +1853,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +1854,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +1855,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +1856,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +1857,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +1858,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +1859,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +1860,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +1861,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +1862,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +1863,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +1864,0,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +1865,0,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +1866,0,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3, +1867,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +1868,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +1869,0,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +1870,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2, +1871,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2, +1872,0,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1873,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1874,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1875,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1876,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1877,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1878,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1879,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1880,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1881,0,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +1882,0,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3, +1883,0,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3, +1884,0,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +1885,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +1886,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +1887,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +1888,0,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3, +1889,0,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3, +1890,0,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3, +1891,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +1892,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +1893,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +1894,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +1895,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +1896,0,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +1897,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2, +1898,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2, +1899,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2, +1900,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2, +1901,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2, +1902,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2, +1903,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2, +1904,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2, +1905,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2, +1906,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2, +1907,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2, +1908,0,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2, +1909,0,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +1910,0,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +1911,0,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +1912,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +1913,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +1914,0,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +1915,0,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +1916,0,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +1917,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2, +1918,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1919,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1920,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1921,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1, +1922,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1, +1923,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1, +1924,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1, +1925,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1, +1926,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1927,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1928,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1929,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1, +1930,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1931,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1932,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1933,0,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1934,0,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1935,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1936,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1, +1937,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1, +1938,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1, +1939,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1, +1940,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1, +1941,0,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1942,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2, +1943,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2, +1944,0,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +1945,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +1946,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +1947,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3, +1948,0,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3, +1949,0,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3, +1950,0,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3, +1951,0,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3, +1952,0,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3, +1953,0,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3, +1954,0,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3, +1955,0,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3, +1956,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +1957,0,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +1958,0,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +1959,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2, +1960,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1961,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1962,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1, +1963,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1964,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1965,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1966,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1967,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1968,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1969,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1970,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1971,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1972,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1973,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1974,0,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +1975,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1976,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1977,0,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1978,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2, +1979,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2, +1980,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2, +1981,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2, +1982,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2, +1983,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2, +1984,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2, +1985,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2, +1986,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2, +1987,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +1988,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +1989,0,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +1990,0,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2, +1991,0,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2, +1992,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2, +1993,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1994,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1995,0,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1996,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1, +1997,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1, +1998,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +1999,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2000,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2001,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2002,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2003,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2004,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2005,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1, +2006,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1, +2007,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2008,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2009,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2010,0,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2011,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2012,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2013,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2014,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2, +2015,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2, +2016,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2, +2017,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2, +2018,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2, +2019,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2020,0,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2021,0,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2022,0,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2023,0,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2024,0,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2025,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1, +2026,0,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2027,0,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2028,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2029,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2030,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2031,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0, +2032,0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +2033,0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +2034,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2035,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2036,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2037,0,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2038,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2039,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2040,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2041,0,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +2042,0,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +2043,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +2044,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2, +2045,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2, +2046,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2047,0,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2048,0,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2049,0,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2050,0,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2051,0,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2052,0,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2053,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2054,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2055,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2056,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2, +2057,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2, +2058,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2, +2059,0,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +2060,0,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +2061,0,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2, +2062,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2, +2063,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2, +2064,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2, +2065,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2, +2066,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2, +2067,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +2068,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +2069,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +2070,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +2071,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +2072,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +2073,0,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3, +2074,0,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3, +2075,0,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3, +2076,0,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3, +2077,0,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3, +2078,0,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3, +2079,0,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3, +2080,0,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +2081,0,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +2082,0,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3, +2083,0,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3, +2084,0,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3, +2085,0,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3, +2086,0,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3, +2087,0,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3, +2088,0,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +2089,0,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +2090,0,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +2091,0,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3, +2092,0,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3, +2093,0,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3, +2094,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +2095,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2096,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2097,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1, +2098,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2099,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2100,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2101,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +2102,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +2103,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +2104,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +2105,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +2106,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +2107,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +2108,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +2109,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +2110,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +2111,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +2112,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +2113,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +2114,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1, +2115,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1, +2116,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2117,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +2118,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +2119,0,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3, +2120,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +2121,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +2122,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +2123,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +2124,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +2125,0,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3, +2126,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +2127,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +2128,0,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +2129,0,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2, +2130,0,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2, +2131,0,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +2132,0,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +2133,0,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +2134,0,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +2135,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +2136,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +2137,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2, +2138,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2139,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2140,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2141,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2142,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2143,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2, +2144,0,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +2145,0,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +2146,0,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +2147,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +2148,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +2149,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +2150,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2151,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2152,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2, +2153,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2, +2154,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2, +2155,0,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2, +2156,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +2157,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +2158,0,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +2159,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +2160,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +2161,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +2162,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +2163,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +2164,0,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +2165,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +2166,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +2167,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +2168,0,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +2169,0,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +2170,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +2171,0,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3, +2172,0,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3, +2173,0,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3, +2174,0,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3, +2175,0,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3, +2176,0,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3, +2177,0,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3, +2178,0,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3, +2179,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +2180,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +2181,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +2182,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +2183,0,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3, +2184,0,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3, +2185,0,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3, +2186,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3, +2187,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3, +2188,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +2189,0,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +2190,0,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +2191,0,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +2192,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +2193,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +2194,0,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +2195,0,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +2196,0,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +2197,0,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +2198,0,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2, +2199,0,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2, +2200,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2201,0,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2202,0,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2203,0,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2204,0,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2205,0,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2206,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2, +2207,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +2208,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +2209,0,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3, +2210,0,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3, +2211,0,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3, +2212,0,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3, +2213,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +2214,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +2215,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +2216,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +2217,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +2218,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +2219,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +2220,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +2221,0,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +2222,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +2223,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +2224,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +2225,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +2226,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +2227,0,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +2228,0,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +2229,0,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +2230,0,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +2231,0,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +2232,0,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +2233,0,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +2234,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2, +2235,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2, +2236,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2237,0,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2238,0,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2239,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2240,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1, +2241,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1, +2242,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2243,0,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2244,0,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2245,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2246,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2247,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2248,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +2249,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +2250,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +2251,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +2252,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +2253,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +2254,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2255,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2256,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2257,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2258,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2259,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2260,0,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2261,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1, +2262,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1, +2263,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2264,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2265,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2266,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2267,0,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2268,0,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2269,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2270,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2271,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2272,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2273,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1, +2274,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1, +2275,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1, +2276,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2277,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2278,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1, +2279,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1, +2280,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1, +2281,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1, +2282,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1, +2283,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1, +2284,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1, +2285,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1, +2286,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1, +2287,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1, +2288,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1, +2289,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1, +2290,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1, +2291,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1, +2292,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1, +2293,0,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2294,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2295,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2296,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2297,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2298,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2299,0,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2300,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2301,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2302,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2303,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +2304,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +2305,0,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +2306,0,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +2307,0,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +2308,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +2309,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2, +2310,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2, +2311,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +2312,0,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +2313,0,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +2314,0,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +2315,0,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +2316,0,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +2317,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2, +2318,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2, +2319,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2, +2320,0,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2321,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2322,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2323,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1, +2324,0,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2325,0,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2326,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2327,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2328,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2329,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2330,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2331,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2332,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2333,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2334,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2335,0,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2336,0,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2337,0,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2338,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2339,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2340,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2341,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2342,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2343,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2344,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2345,0,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2346,0,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2347,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1, +2348,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2349,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2350,0,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2351,0,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2352,0,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2353,0,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2354,0,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2355,0,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2356,0,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2357,0,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2358,0,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2359,0,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2360,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2361,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2362,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2363,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2364,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2365,0,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2366,0,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2367,0,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2368,0,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2369,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2370,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2371,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2372,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2373,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2374,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2375,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2376,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2377,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2378,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2379,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2380,0,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2381,0,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2382,0,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2383,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2384,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2385,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2386,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2387,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1, +2388,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1, +2389,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1, +2390,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2391,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2392,0,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2393,0,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2394,0,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2395,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2396,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2397,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2398,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2399,0,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2400,0,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2401,0,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2402,0,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2403,0,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2404,0,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2405,0,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2406,0,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2407,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2408,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2409,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2410,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2411,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2412,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2413,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2414,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2415,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2416,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2417,0,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2418,0,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2419,0,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2420,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2421,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2422,0,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2423,0,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2424,0,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2425,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2426,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2427,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2428,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2429,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2430,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2431,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2432,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2433,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2434,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2435,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1, +2436,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1, +2437,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2438,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2439,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2440,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2441,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2442,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2443,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2444,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2445,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2446,0,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2447,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2448,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2449,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2450,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +2451,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +2452,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +2453,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +2454,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +2455,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +2456,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +2457,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +2458,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +2459,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +2460,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +2461,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +2462,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +2463,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +2464,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +2465,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2466,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2467,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2468,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2469,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2470,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2471,0,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2472,0,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2473,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2474,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2475,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2476,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1, +2477,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1, +2478,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1, +2479,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1, +2480,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1, +2481,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1, +2482,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1, +2483,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1, +2484,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1, +2485,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2486,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2487,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2488,0,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2489,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2490,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2491,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2492,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2493,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2494,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2495,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2496,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2497,0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +2498,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +2499,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +2500,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +2501,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +2502,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +2503,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +2504,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +2505,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +2506,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +2507,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +2508,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +2509,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +2510,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +2511,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +2512,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2513,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2514,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2515,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2516,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2517,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2518,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2519,0,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +2520,0,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +2521,0,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +2522,0,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +2523,0,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +2524,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +2525,0,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3, +2526,0,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3, +2527,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3, +2528,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3, +2529,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3, +2530,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +2531,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +2532,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +2533,0,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +2534,0,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +2535,0,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +2536,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +2537,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2, +2538,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2, +2539,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2540,0,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2541,0,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2542,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2543,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1, +2544,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1, +2545,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2546,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2547,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2548,0,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2549,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2550,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2551,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +2552,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +2553,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +2554,0,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3, +2555,0,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3, +2556,0,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3, +2557,0,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +2558,0,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +2559,0,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +2560,0,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3, +2561,0,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3, +2562,0,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3, +2563,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3, +2564,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +2565,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +2566,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +2567,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2, +2568,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2, +2569,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2, +2570,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2, +2571,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2, +2572,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2573,0,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2574,0,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2575,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2576,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1, +2577,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1, +2578,0,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2579,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2580,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2581,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2582,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2583,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2584,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2585,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2586,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2587,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2588,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2589,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2590,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2591,0,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2592,0,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2593,0,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2594,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2595,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2596,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2597,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2598,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2599,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2600,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2601,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2602,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2603,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2604,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2605,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2606,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0, +2607,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0, +2608,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0, +2609,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2610,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2611,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0, +2612,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +2613,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +2614,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +2615,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +2616,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +2617,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +2618,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +2619,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +2620,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +2621,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +2622,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +2623,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +2624,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2625,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2626,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2627,0,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2628,0,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2629,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2630,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2, +2631,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2, +2632,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +2633,0,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3, +2634,0,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3, +2635,0,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3, +2636,0,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +2637,0,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +2638,0,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3, +2639,0,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3, +2640,0,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3, +2641,0,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3, +2642,0,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3, +2643,0,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3, +2644,0,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3, +2645,0,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3, +2646,0,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3, +2647,0,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3, +2648,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3, +2649,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3, +2650,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3, +2651,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +2652,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +2653,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +2654,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +2655,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +2656,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +2657,0,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +2658,0,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +2659,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +2660,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2, +2661,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2, +2662,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2663,0,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2664,0,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2665,0,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2666,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2667,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2668,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2669,0,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2670,0,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2671,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2672,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2673,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2674,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2675,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2676,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2677,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1, +2678,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1, +2679,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1, +2680,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1, +2681,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1, +2682,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1, +2683,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1, +2684,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1, +2685,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1, +2686,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1, +2687,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1, +2688,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1, +2689,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1, +2690,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2691,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2692,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2693,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2694,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2695,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1, +2696,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1, +2697,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1, +2698,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1, +2699,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1, +2700,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1, +2701,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1, +2702,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2703,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2704,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2705,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2706,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2707,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2708,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1, +2709,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1, +2710,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2711,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2712,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2713,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2714,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +2715,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +2716,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +2717,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +2718,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +2719,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +2720,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +2721,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +2722,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +2723,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +2724,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +2725,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +2726,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +2727,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +2728,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +2729,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +2730,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +2731,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +2732,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +2733,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +2734,0,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +2735,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2736,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2737,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2738,0,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2739,0,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2740,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1, +2741,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2742,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2743,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2744,0,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2745,0,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2746,0,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2747,0,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2748,0,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2749,0,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2750,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2751,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2752,0,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2753,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2754,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2755,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2756,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2757,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2758,0,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2759,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2760,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2761,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1, +2762,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2763,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2764,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2765,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2766,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2767,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2768,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2769,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2770,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2771,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2772,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2773,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2774,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2775,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2776,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2777,0,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2778,0,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2779,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2780,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2781,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2782,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2783,0,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2784,0,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2785,0,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2786,0,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2787,0,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2788,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2789,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2790,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2791,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2792,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2793,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2794,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2795,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1, +2796,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1, +2797,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1, +2798,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1, +2799,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1, +2800,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1, +2801,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2802,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2803,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1, +2804,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1, +2805,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1, +2806,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1, +2807,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2808,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2809,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2810,0,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2811,0,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2812,0,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2813,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2814,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2815,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2816,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2817,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2818,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2819,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2820,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2821,0,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2822,0,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2823,0,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2824,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2825,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2826,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2827,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2828,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2829,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2830,0,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2831,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1, +2832,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1, +2833,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2834,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2835,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2836,0,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2837,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2838,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2839,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2840,0,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2841,0,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2842,0,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2843,0,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2844,0,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2845,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2846,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2847,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2848,0,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2849,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2850,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2851,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0, +2852,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +2853,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +2854,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +2855,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +2856,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +2857,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +2858,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +2859,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +2860,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +2861,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +2862,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +2863,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2864,0,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2865,0,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2866,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2867,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2, +2868,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2, +2869,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +2870,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +2871,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +2872,0,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3, +2873,0,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3, +2874,0,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3, +2875,0,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3, +2876,0,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3, +2877,0,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3, +2878,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +2879,0,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2, +2880,0,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2, +2881,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2, +2882,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2883,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2884,0,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2885,0,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2886,0,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2887,0,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2888,0,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2889,0,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2890,0,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2891,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2892,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2893,0,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2894,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2895,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2896,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2897,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2898,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2899,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2900,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1, +2901,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1, +2902,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2903,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2904,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2905,0,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2906,0,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2907,0,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2908,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2909,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2910,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2911,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0, +2912,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +2913,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +2914,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +2915,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +2916,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +2917,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +2918,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +2919,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +2920,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +2921,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +2922,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +2923,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0, +2924,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2925,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2926,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2927,0,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2928,0,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2929,0,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2930,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1, +2931,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1, +2932,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2933,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2934,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2935,0,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2936,0,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2937,0,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2938,0,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2939,0,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2940,0,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2941,0,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2942,0,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2943,0,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2944,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2945,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2946,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2947,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2948,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2949,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2950,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2951,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2952,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2953,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2954,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2955,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2956,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1, +2957,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2958,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2959,0,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2960,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2961,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2962,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2, +2963,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +2964,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +2965,0,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +2966,0,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +2967,0,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +2968,0,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +2969,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +2970,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +2971,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +2972,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2, +2973,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2, +2974,0,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +2975,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1, +2976,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1, +2977,0,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2978,0,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2979,0,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2980,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2981,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2982,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2983,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2984,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0, +2985,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0, +2986,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +2987,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +2988,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +2989,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +2990,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +2991,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +2992,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +2993,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +2994,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +2995,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +2996,0,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +2997,0,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +2998,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +2999,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3000,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3001,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3002,0,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3003,0,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3004,0,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3005,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1, +3006,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1, +3007,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +3008,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +3009,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +3010,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2, +3011,0,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2, +3012,0,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2, +3013,0,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +3014,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +3015,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +3016,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +3017,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3, +3018,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3, +3019,0,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3, +3020,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +3021,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +3022,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +3023,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +3024,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +3025,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +3026,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +3027,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +3028,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4, +3029,0,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4, +3030,0,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4, +3031,0,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +3032,0,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +3033,0,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +3034,0,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +3035,0,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +3036,0,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +3037,0,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +3038,0,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4, +3039,0,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4, +3040,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +3041,0,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +3042,0,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +3043,0,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3, +3044,0,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3, +3045,0,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3, +3046,0,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3, +3047,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +3048,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +3049,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +3050,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +3051,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +3052,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +3053,0,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +3054,0,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +3055,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +3056,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1, +3057,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1, +3058,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3059,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3060,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3061,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3062,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3063,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3064,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3065,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3066,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3067,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3068,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3069,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3070,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3071,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3072,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3073,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3074,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3075,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3076,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3077,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3078,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3079,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3080,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3081,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3082,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3083,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3084,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3085,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3086,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3087,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3088,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3089,0,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3090,0,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3091,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3092,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0, +3093,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0, +3094,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3095,0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3096,0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3097,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3098,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3099,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3100,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0, +3101,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3102,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3103,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3104,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3105,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3106,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3107,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3108,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3109,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3110,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3111,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3112,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3113,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3114,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3115,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3116,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3117,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3118,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3119,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3120,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3121,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3122,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3123,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3124,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3125,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3126,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3127,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3128,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3129,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3130,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3131,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3132,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3133,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3134,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3135,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3136,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3137,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3138,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3139,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3140,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3141,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3142,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3143,0,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3144,0,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3145,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +3146,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +3147,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +3148,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +3149,0,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3, +3150,0,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3, +3151,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +3152,0,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4, +3153,0,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4, +3154,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4, +3155,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4, +3156,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4, +3157,0,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3, +3158,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +3159,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +3160,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +3161,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1, +3162,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1, +3163,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1, +3164,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1, +3165,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1, +3166,0,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3167,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3168,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3169,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3170,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3171,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3172,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3173,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3174,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3175,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3176,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3177,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3178,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3179,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3180,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3181,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3182,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3183,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3184,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3185,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3186,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3187,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3188,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3189,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3190,0,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3191,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3192,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3193,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3194,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3195,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3196,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3197,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0, +3198,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0, +3199,0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3200,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3201,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3202,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3203,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3204,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3205,0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3206,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0, +3207,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0, +3208,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3209,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3210,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3211,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3212,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3213,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3214,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3215,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3216,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3217,0,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3218,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3219,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3220,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +3221,0,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +3222,0,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +3223,0,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +3224,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +3225,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +3226,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +3227,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2, +3228,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2, +3229,0,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +3230,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +3231,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +3232,0,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3, +3233,0,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3, +3234,0,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3, +3235,0,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +3236,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +3237,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +3238,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +3239,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +3240,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +3241,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +3242,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +3243,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +3244,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +3245,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +3246,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +3247,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +3248,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +3249,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +3250,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +3251,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +3252,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +3253,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +3254,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +3255,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +3256,0,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3, +3257,0,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3, +3258,0,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3, +3259,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +3260,0,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +3261,0,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +3262,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2, +3263,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +3264,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +3265,0,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +3266,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +3267,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +3268,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3269,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3270,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3271,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3272,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3273,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3274,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3275,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3276,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3277,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3278,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3279,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3280,0,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3281,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1, +3282,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1, +3283,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +3284,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +3285,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +3286,0,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +3287,0,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +3288,0,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +3289,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +3290,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2, +3291,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2, +3292,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2, +3293,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2, +3294,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2, +3295,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2, +3296,0,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2, +3297,0,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2, +3298,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +3299,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +3300,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +3301,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +3302,0,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2, +3303,0,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2, +3304,0,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2, +3305,0,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2, +3306,0,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2, +3307,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +3308,0,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +3309,0,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +3310,0,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +3311,0,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +3312,0,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +3313,0,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +3314,0,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +3315,0,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +3316,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +3317,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +3318,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +3319,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +3320,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +3321,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +3322,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +3323,0,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +3324,0,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +3325,0,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +3326,0,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +3327,0,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +3328,0,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +3329,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +3330,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +3331,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2, +3332,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2, +3333,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2, +3334,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +3335,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +3336,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +3337,0,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +3338,0,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +3339,0,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +3340,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +3341,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1, +3342,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1, +3343,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3344,0,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3345,0,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3346,0,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3347,0,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3348,0,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3349,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3350,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3351,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3352,0,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3353,0,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3354,0,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3355,0,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3356,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3357,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3358,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1, +3359,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1, +3360,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1, +3361,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1, +3362,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1, +3363,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1, +3364,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3365,0,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3366,0,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3367,0,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3368,0,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3369,0,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3370,0,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3371,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3372,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3373,0,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3374,0,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3375,0,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3376,0,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3377,0,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3378,0,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3379,0,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3380,0,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3381,0,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3382,0,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3383,0,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3384,0,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3385,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3386,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3387,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3388,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3389,0,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3390,0,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3391,0,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3392,0,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3393,0,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3394,0,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3395,0,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3396,0,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3397,0,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3398,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3399,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3400,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3401,0,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3402,0,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3403,0,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3404,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3405,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3406,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3407,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3408,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3409,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3410,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3411,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3412,0,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3413,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3414,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3415,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1, +3416,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +3417,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +3418,0,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +3419,0,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +3420,0,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +3421,0,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +3422,0,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +3423,0,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +3424,0,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +3425,0,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +3426,0,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +3427,0,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +3428,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +3429,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +3430,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +3431,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1, +3432,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1, +3433,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1, +3434,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1, +3435,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1, +3436,0,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3437,0,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3438,0,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3439,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3440,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3441,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3442,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3443,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3444,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3445,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3446,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +3447,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +3448,0,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +3449,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2, +3450,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2, +3451,0,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2, +3452,0,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +3453,0,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +3454,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +3455,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +3456,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +3457,0,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3, +3458,0,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3, +3459,0,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3, +3460,0,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3, +3461,0,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +3462,0,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +3463,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +3464,0,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4, +3465,0,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4, +3466,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4, +3467,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +3468,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +3469,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +3470,0,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +3471,0,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +3472,0,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3, +3473,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3, +3474,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3, +3475,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +3476,0,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +3477,0,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +3478,0,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2, +3479,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2, +3480,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2, +3481,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +3482,0,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +3483,0,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +3484,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +3485,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +3486,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +3487,0,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3488,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3489,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3490,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3491,0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3492,0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3493,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3494,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3495,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3496,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3497,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3498,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3499,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3500,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3501,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3502,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3503,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3504,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3505,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3506,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3507,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3508,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3509,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3510,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3511,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3512,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3513,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3514,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3515,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3516,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3517,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3518,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3519,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3520,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3521,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3522,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3523,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3524,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3525,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3526,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3527,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3528,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3529,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3530,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3531,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3532,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3533,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3534,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3535,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3536,0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3537,0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3538,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0, +3539,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3540,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3541,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3542,0,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3543,0,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3544,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +3545,0,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +3546,0,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +3547,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2, +3548,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +3549,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +3550,0,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2, +3551,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2, +3552,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2, +3553,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +3554,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +3555,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +3556,0,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +3557,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +3558,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +3559,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +3560,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1, +3561,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1, +3562,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +3563,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +3564,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +3565,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3566,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3567,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3568,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3569,0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3570,0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3571,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3572,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0, +3573,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0, +3574,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3575,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +3576,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +3577,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +3578,0,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +3579,0,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +3580,0,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +3581,0,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2, +3582,0,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2, +3583,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2, +3584,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +3585,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +3586,0,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +3587,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +3588,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +3589,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1, +3590,0,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3591,0,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3592,0,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3593,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3594,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3595,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1, +3596,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +3597,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +3598,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1, +3599,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1, +3600,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1, +3601,0,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +3602,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2, +3603,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2, +3604,0,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +3605,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +3606,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +3607,0,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3, +3608,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +3609,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +3610,0,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3, +3611,0,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3, +3612,0,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3, +3613,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +3614,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +3615,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +3616,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +3617,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2, +3618,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2, +3619,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2, +3620,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +3621,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +3622,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +3623,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +3624,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +3625,0,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +3626,0,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +3627,0,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +3628,0,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +3629,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +3630,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +3631,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1, +3632,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3633,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3634,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3635,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3636,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3637,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3638,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3639,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3640,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3641,0,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3642,0,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3643,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3644,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3645,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3646,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3647,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3648,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3649,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3650,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3651,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3652,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3653,0,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3654,0,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3655,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3656,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3657,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3658,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3659,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0, +3660,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0, +3661,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3662,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3663,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3664,0,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3665,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1, +3666,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1, +3667,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1, +3668,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +3669,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +3670,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +3671,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +3672,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +3673,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +3674,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +3675,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +3676,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +3677,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +3678,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +3679,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1, +3680,0,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3681,0,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3682,0,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3683,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3684,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3685,0,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3686,0,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3687,0,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3688,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3689,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3690,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3691,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3692,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3693,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3694,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3695,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1, +3696,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1, +3697,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1, +3698,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1, +3699,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1, +3700,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3701,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3702,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3703,0,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3704,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3705,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3706,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3707,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0, +3708,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0, +3709,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3710,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3711,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3712,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0, +3713,0,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3714,0,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3715,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3716,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3717,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3718,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3719,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3720,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3721,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3722,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3723,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3724,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3725,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3726,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3727,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3728,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3729,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3730,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3731,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3732,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3733,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3734,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3735,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3736,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3737,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3738,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3739,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3740,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3741,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3742,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3743,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3744,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3745,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3746,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3747,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3748,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3749,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3750,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3751,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3752,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3753,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3754,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3755,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3756,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3757,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3758,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3759,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3760,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3761,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3762,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3763,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3764,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3765,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3766,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3767,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3768,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3769,0,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3770,0,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3771,0,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3772,0,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3773,0,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3774,0,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3775,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3776,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3777,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3778,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0, +3779,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3780,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3781,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1, +3782,0,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +3783,0,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +3784,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +3785,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1, +3786,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1, +3787,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1, +3788,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3789,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3790,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3791,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3792,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3793,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3794,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3795,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3796,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3797,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3798,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3799,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3800,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3801,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3802,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3803,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3804,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3805,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3806,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3807,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3808,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3809,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3810,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3811,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3812,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3813,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3814,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3815,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +3816,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +3817,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +3818,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +3819,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +3820,0,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3821,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3822,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3823,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0, +3824,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3825,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3826,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3827,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3828,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3829,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3830,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3831,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3832,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3833,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3834,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3835,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3836,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3837,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3838,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3839,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0, +3840,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0, +3841,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3842,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3843,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3844,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3845,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3846,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3847,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3848,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +3849,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +3850,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +3851,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +3852,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +3853,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +3854,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +3855,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +3856,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +3857,0,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +3858,0,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +3859,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1, +3860,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3861,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3862,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3863,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3864,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3865,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3866,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3867,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3868,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3869,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3870,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3871,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3872,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3873,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3874,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3875,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3876,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3877,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3878,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3879,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3880,0,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +3881,0,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3, +3882,0,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3, +3883,0,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3, +3884,0,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3, +3885,0,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3, +3886,0,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3, +3887,0,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3, +3888,0,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3, +3889,0,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3, +3890,0,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3, +3891,0,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3, +3892,0,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3, +3893,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +3894,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +3895,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +3896,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +3897,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +3898,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +3899,0,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +3900,0,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +3901,0,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +3902,0,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +3903,0,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +3904,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +3905,0,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4, +3906,0,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4, +3907,0,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +3908,0,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +3909,0,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +3910,0,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +3911,0,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4, +3912,0,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4, +3913,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4, +3914,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +3915,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +3916,0,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +3917,0,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3, +3918,0,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3, +3919,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3, +3920,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +3921,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +3922,0,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2, +3923,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +3924,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +3925,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +3926,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3927,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3928,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3929,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3930,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3931,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3932,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3933,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3934,0,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3935,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3936,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3937,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3938,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3939,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3940,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3941,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3942,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3943,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3944,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3945,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3946,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3947,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3948,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3949,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3950,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3951,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3952,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3953,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3954,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3955,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3956,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3957,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3958,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1, +3959,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1, +3960,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1, +3961,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +3962,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +3963,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +3964,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +3965,0,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +3966,0,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +3967,0,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +3968,0,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +3969,0,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +3970,0,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +3971,0,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +3972,0,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +3973,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +3974,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1, +3975,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1, +3976,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1, +3977,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +3978,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +3979,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1, +3980,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1, +3981,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1, +3982,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3983,0,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3984,0,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3985,0,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3986,0,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3987,0,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3988,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3989,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3990,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +3991,0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3992,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3993,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3994,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3995,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3996,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3997,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3998,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +3999,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4000,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4001,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4002,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4003,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4004,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4005,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4006,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4007,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4008,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4009,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4010,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4011,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4012,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4013,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4014,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4015,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4016,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4017,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4018,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4019,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4020,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4021,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4022,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4023,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4024,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4025,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4026,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4027,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4028,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4029,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4030,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4031,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4032,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4033,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4034,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4035,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4036,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4037,0,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +4038,0,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +4039,0,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2, +4040,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3, +4041,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3, +4042,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +4043,0,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +4044,0,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +4045,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +4046,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +4047,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +4048,0,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +4049,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4, +4050,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4, +4051,0,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4, +4052,0,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +4053,0,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +4054,0,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4, +4055,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4, +4056,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4, +4057,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +4058,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +4059,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +4060,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +4061,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +4062,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +4063,0,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +4064,0,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3, +4065,0,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3, +4066,0,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3, +4067,0,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3, +4068,0,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3, +4069,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +4070,0,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +4071,0,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +4072,0,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2, +4073,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +4074,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +4075,0,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +4076,0,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +4077,0,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +4078,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +4079,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +4080,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +4081,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1, +4082,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4083,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4084,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4085,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4086,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4087,0,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4088,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4089,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4090,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4091,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4092,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4093,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4094,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4095,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4096,0,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4097,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1, +4098,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1, +4099,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4100,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4101,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4102,0,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4103,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4104,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4105,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4106,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4107,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4108,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4109,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4110,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4111,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0, +4112,0,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4113,0,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4114,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4115,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4116,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4117,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4118,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4119,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4120,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4121,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4122,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4123,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4124,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4125,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4126,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0, +4127,0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4128,0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4129,0,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4130,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4131,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4132,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4133,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4134,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4135,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4136,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4137,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4138,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4139,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4140,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4141,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4142,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4143,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4144,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4145,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4146,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4147,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4148,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4149,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4150,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4151,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4152,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4153,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4154,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4155,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4156,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4157,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4158,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4159,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4160,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4161,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4162,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4163,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4164,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4165,0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4166,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4167,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4168,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4169,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4170,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4171,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4172,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4173,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4174,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4175,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4176,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4177,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4178,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4179,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4180,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4181,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4182,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4183,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4184,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4185,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4186,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4187,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4188,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4189,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4190,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4191,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4192,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4193,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4194,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4195,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4196,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4197,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4198,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4199,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4200,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4201,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4202,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4203,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4204,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4205,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4206,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4207,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4208,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4209,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4210,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4211,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4212,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4213,0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4214,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0, +4215,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0, +4216,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0, +4217,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4218,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4219,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4220,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0, +4221,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0, +4222,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4223,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4224,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4225,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4226,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4227,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4228,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4229,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0, +4230,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0, +4231,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0, +4232,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4233,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4234,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0, +4235,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0, +4236,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0, +4237,0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4238,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4239,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4240,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4241,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4242,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4243,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4244,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4245,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4246,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4247,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4248,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4249,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4250,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4251,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4252,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4253,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4254,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4255,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4256,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4257,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4258,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4259,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4260,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4261,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4262,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4263,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4264,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4265,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4266,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4267,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4268,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4269,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4270,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4271,0,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4272,0,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4273,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4274,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0, +4275,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0, +4276,0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4277,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4278,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4279,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4280,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4281,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4282,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4283,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4284,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4285,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4286,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4287,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4288,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4289,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4290,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4291,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4292,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4293,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4294,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4295,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4296,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4297,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4298,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4299,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4300,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4301,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4302,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4303,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4304,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4305,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4306,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4307,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4308,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4309,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4310,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4311,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4312,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4313,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4314,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4315,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4316,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4317,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4318,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4319,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4320,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4321,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4322,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4323,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4324,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4325,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4326,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4327,0,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4328,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4329,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4330,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4331,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4332,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4333,0,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4334,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4335,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4336,0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4337,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0, +4338,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0, +4339,0,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4340,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4341,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4342,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4343,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4344,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4345,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4346,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4347,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4348,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4349,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4350,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4351,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4352,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4353,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4354,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4355,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4356,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4357,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4358,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4359,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4360,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4361,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4362,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4363,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4364,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4365,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4366,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4367,0,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4368,0,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4369,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0, +4370,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4371,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4372,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4373,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4374,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4375,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4376,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4377,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4378,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4379,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4380,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4381,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4382,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4383,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4384,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4385,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4386,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4387,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4388,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4389,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4390,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4391,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4392,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4393,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4394,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4395,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4396,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4397,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4398,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4399,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4400,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4401,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4402,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4403,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4404,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4405,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4406,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0, +4407,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0, +4408,0,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4409,0,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +4410,0,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +4411,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +4412,0,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2, +4413,0,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2, +4414,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2, +4415,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +4416,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +4417,0,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +4418,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +4419,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +4420,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4421,0,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4422,0,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4423,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4424,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4425,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4426,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4427,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4428,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4429,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4430,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4431,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4432,0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4433,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4434,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4435,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4436,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0, +4437,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0, +4438,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4439,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4440,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4441,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4442,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4443,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4444,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4445,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0, +4446,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0, +4447,0,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4448,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4449,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4450,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4451,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4452,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4453,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4454,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4455,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4456,0,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4457,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4458,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4459,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4460,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4461,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4462,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4463,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4464,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4465,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4466,0,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4467,0,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4468,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4469,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1, +4470,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1, +4471,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1, +4472,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4473,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4474,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4475,0,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4476,0,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4477,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4478,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1, +4479,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1, +4480,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1, +4481,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1, +4482,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1, +4483,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1, +4484,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1, +4485,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1, +4486,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4487,0,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4488,0,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4489,0,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4490,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4491,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4492,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4493,0,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4494,0,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4495,0,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4496,0,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4497,0,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4498,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4499,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1, +4500,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1, +4501,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1, +4502,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1, +4503,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1, +4504,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4505,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4506,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4507,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4508,0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4509,0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4510,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0, +4511,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4512,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4513,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4514,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4515,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4516,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1, +4517,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1, +4518,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1, +4519,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1, +4520,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4521,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4522,0,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4523,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4524,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4525,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4526,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4527,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4528,0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4529,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4530,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4531,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4532,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4533,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4534,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4535,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4536,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4537,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4538,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4539,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4540,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4541,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4542,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4543,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4544,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4545,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4546,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4547,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4548,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4549,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4550,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4551,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4552,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4553,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0, +4554,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0, +4555,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4556,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4557,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4558,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4559,0,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4560,0,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4561,0,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4562,0,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4563,0,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4564,0,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4565,0,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4566,0,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4567,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4568,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4569,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4570,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4571,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4572,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4573,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4574,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4575,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4576,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4577,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4578,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4579,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4580,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4581,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4582,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4583,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4584,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4585,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4586,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4587,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4588,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4589,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4590,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4591,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4592,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4593,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4594,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4595,0,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4596,0,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4597,0,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4598,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4599,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4600,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4601,0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4602,0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4603,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4604,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4605,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4606,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4607,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4608,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4609,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4610,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4611,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4612,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4613,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4614,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4615,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0, +4616,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4617,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4618,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4619,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4620,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4621,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1, +4622,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +4623,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +4624,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +4625,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +4626,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +4627,0,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +4628,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +4629,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +4630,0,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +4631,0,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +4632,0,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +4633,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1, +4634,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4635,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4636,0,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4637,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4638,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4639,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4640,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4641,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4642,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0, +4643,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4644,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4645,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4646,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4647,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4648,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4649,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4650,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4651,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4652,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4653,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4654,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4655,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4656,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4657,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4658,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4659,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4660,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4661,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4662,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4663,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4664,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4665,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4666,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4667,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4668,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4669,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4670,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4671,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4672,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4673,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4674,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4675,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1, +4676,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +4677,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +4678,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +4679,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +4680,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +4681,0,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4, +4682,0,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +4683,0,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +4684,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +4685,0,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3, +4686,0,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3, +4687,0,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3, +4688,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +4689,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +4690,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +4691,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +4692,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +4693,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +4694,0,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +4695,0,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +4696,0,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +4697,0,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +4698,0,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +4699,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2, +4700,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +4701,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +4702,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +4703,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1, +4704,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1, +4705,0,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4706,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4707,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4708,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4709,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +4710,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +4711,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +4712,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +4713,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +4714,0,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +4715,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +4716,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +4717,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +4718,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2, +4719,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2, +4720,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +4721,0,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +4722,0,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +4723,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4724,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4725,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4726,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4727,0,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4728,0,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4729,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0, +4730,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4731,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4732,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4733,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4734,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4735,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4736,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4737,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4738,0,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4739,0,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4740,0,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4741,0,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4742,0,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4743,0,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4744,0,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4745,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4746,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4747,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1, +4748,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +4749,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +4750,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +4751,0,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +4752,0,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +4753,0,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +4754,0,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +4755,0,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +4756,0,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +4757,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +4758,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +4759,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +4760,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4761,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4762,0,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4763,0,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4764,0,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4765,0,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4766,0,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4767,0,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4768,0,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4769,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4770,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4771,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4772,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4773,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4774,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4775,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4776,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4777,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4778,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4779,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4780,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4781,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4782,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4783,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4784,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4785,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4786,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4787,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4788,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4789,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4790,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4791,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4792,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4793,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4794,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4795,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4796,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4797,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4798,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4799,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4800,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4801,0,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4802,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4803,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4804,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4805,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4806,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4807,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4808,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4809,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4810,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4811,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4812,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4813,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4814,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4815,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4816,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4817,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4818,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4819,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4820,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4821,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4822,0,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4823,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +4824,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +4825,0,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +4826,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2, +4827,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2, +4828,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +4829,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +4830,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +4831,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +4832,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +4833,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +4834,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +4835,0,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +4836,0,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +4837,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +4838,0,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4839,0,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4840,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4841,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4842,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4843,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4844,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4845,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4846,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4847,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0, +4848,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0, +4849,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4850,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4851,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4852,0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4853,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4854,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4855,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4856,0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4857,0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4858,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0, +4859,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4860,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4861,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4862,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4863,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4864,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4865,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4866,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4867,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4868,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4869,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4870,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4871,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4872,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4873,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4874,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4875,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4876,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4877,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4878,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4879,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4880,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4881,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4882,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4883,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4884,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4885,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4886,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4887,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4888,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4889,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4890,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4891,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0, +4892,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4893,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4894,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4895,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4896,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4897,0,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4898,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4899,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4900,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1, +4901,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1, +4902,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1, +4903,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +4904,0,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +4905,0,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +4906,0,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +4907,0,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +4908,0,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +4909,0,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +4910,0,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +4911,0,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +4912,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +4913,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2, +4914,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2, +4915,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +4916,0,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +4917,0,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +4918,0,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +4919,0,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +4920,0,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +4921,0,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +4922,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +4923,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +4924,0,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +4925,0,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +4926,0,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +4927,0,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +4928,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +4929,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +4930,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +4931,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1, +4932,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1, +4933,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1, +4934,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4935,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4936,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4937,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4938,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4939,0,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4940,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4941,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4942,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4943,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4944,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4945,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +4946,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0, +4947,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0, +4948,0,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4949,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4950,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4951,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4952,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4953,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4954,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4955,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4956,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4957,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4958,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4959,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4960,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4961,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4962,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4963,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4964,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4965,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4966,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4967,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4968,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4969,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4970,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4971,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4972,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4973,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4974,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4975,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4976,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4977,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4978,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4979,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4980,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4981,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4982,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4983,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4984,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4985,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4986,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4987,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4988,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4989,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4990,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4991,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4992,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4993,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4994,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4995,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4996,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4997,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4998,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +4999,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5000,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5001,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5002,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5003,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5004,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5005,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5006,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5007,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5008,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0, +5009,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5010,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5011,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5012,0,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5013,0,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5014,0,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5015,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5016,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5017,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1, +5018,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1, +5019,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1, +5020,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +5021,0,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +5022,0,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +5023,0,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +5024,0,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +5025,0,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +5026,0,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +5027,0,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +5028,0,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +5029,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +5030,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2, +5031,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2, +5032,0,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2, +5033,0,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +5034,0,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +5035,0,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +5036,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +5037,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +5038,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +5039,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +5040,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +5041,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +5042,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +5043,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +5044,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3, +5045,0,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3, +5046,0,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3, +5047,0,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3, +5048,0,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3, +5049,0,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3, +5050,0,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3, +5051,0,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3, +5052,0,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3, +5053,0,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3, +5054,0,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3, +5055,0,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3, +5056,0,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3, +5057,0,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3, +5058,0,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3, +5059,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +5060,0,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +5061,0,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +5062,0,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2, +5063,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2, +5064,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2, +5065,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +5066,0,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +5067,0,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +5068,0,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +5069,0,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +5070,0,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +5071,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +5072,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2, +5073,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2, +5074,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2, +5075,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +5076,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +5077,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2, +5078,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2, +5079,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2, +5080,0,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +5081,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5082,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5083,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5084,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5085,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5086,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5087,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5088,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5089,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5090,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5091,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5092,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5093,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5094,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5095,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0, +5096,0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5097,0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5098,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5099,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5100,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5101,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5102,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5103,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5104,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5105,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5106,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5107,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5108,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5109,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5110,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5111,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5112,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5113,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5114,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5115,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5116,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5117,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5118,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5119,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5120,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5121,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5122,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5123,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5124,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5125,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5126,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5127,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5128,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5129,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5130,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5131,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5132,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5133,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5134,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5135,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5136,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5137,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5138,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5139,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5140,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5141,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5142,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5143,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5144,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5145,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5146,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5147,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5148,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5149,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5150,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0, +5151,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0, +5152,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0, +5153,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5154,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5155,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0, +5156,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0, +5157,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0, +5158,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5159,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5160,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5161,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5162,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5163,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5164,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5165,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5166,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5167,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5168,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5169,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5170,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5171,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5172,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5173,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5174,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5175,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5176,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5177,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5178,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5179,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5180,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5181,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5182,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5183,0,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5184,0,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5185,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5186,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1, +5187,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1, +5188,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5189,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5190,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5191,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5192,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0, +5193,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0, +5194,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0, +5195,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5196,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5197,0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5198,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5199,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5200,0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5201,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5202,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5203,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5204,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5205,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5206,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5207,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5208,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5209,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5210,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5211,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5212,0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5213,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5214,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5215,0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5216,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5217,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5218,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5219,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5220,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5221,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5222,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5223,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5224,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5225,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5226,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5227,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5228,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5229,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5230,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5231,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5232,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5233,0,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5234,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5235,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5236,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5237,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5238,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5239,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5240,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5241,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5242,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5243,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5244,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5245,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5246,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5247,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5248,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5249,0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5250,0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5251,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5252,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5253,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5254,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5255,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5256,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5257,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5258,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5259,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5260,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5261,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5262,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5263,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5264,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5265,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5266,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5267,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5268,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5269,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5270,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5271,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5272,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5273,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5274,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5275,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5276,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5277,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5278,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5279,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5280,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5281,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5282,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5283,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5284,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5285,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5286,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5287,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5288,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5289,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5290,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5291,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5292,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5293,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5294,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5295,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5296,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5297,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5298,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5299,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0, +5300,0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5301,0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5302,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5303,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5304,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5305,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5306,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5307,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5308,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5309,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5310,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5311,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5312,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5313,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5314,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5315,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5316,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5317,0,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5318,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1, +5319,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1, +5320,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1, +5321,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1, +5322,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1, +5323,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1, +5324,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1, +5325,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1, +5326,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +5327,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +5328,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +5329,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +5330,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +5331,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +5332,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5333,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5334,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5335,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5336,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5337,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5338,0,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5339,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1, +5340,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1, +5341,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +5342,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +5343,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +5344,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +5345,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1, +5346,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1, +5347,0,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5348,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5349,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5350,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5351,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5352,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5353,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5354,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5355,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5356,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5357,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5358,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5359,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5360,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5361,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5362,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5363,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5364,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5365,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5366,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5367,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5368,0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5369,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5370,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5371,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5372,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5373,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5374,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5375,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5376,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5377,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5378,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5379,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5380,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5381,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5382,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5383,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5384,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0, +5385,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0, +5386,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0, +5387,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0, +5388,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0, +5389,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5390,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5391,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5392,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5393,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5394,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5395,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5396,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5397,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5398,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5399,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5400,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5401,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5402,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5403,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5404,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5405,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5406,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5407,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5408,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5409,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5410,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5411,0,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5412,0,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5413,0,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5414,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5415,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5416,0,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5417,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1, +5418,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1, +5419,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +5420,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +5421,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +5422,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +5423,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +5424,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +5425,0,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +5426,0,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +5427,0,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +5428,0,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +5429,0,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +5430,0,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +5431,0,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +5432,0,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +5433,0,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +5434,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +5435,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +5436,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +5437,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +5438,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +5439,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +5440,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +5441,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +5442,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +5443,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +5444,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2, +5445,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2, +5446,0,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +5447,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +5448,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +5449,0,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +5450,0,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +5451,0,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +5452,0,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +5453,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1, +5454,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1, +5455,0,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5456,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5457,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5458,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0, +5459,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5460,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5461,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5462,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5463,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5464,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5465,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5466,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5467,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5468,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5469,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5470,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5471,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5472,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5473,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5474,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5475,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5476,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5477,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5478,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5479,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5480,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5481,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5482,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5483,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5484,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5485,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5486,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5487,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5488,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0, +5489,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5490,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5491,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5492,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5493,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5494,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5495,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5496,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5497,0,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5498,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +5499,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +5500,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2, +5501,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3, +5502,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3, +5503,0,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3, +5504,0,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3, +5505,0,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3, +5506,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +5507,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +5508,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +5509,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +5510,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +5511,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +5512,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +5513,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +5514,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +5515,0,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3, +5516,0,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3, +5517,0,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3, +5518,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3, +5519,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +5520,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +5521,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +5522,0,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3, +5523,0,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3, +5524,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +5525,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +5526,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +5527,0,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +5528,0,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +5529,0,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +5530,0,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +5531,0,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +5532,0,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +5533,0,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +5534,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +5535,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +5536,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +5537,0,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2, +5538,0,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2, +5539,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +5540,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +5541,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +5542,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1, +5543,0,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5544,0,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5545,0,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5546,0,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5547,0,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5548,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5549,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5550,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5551,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5552,0,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5553,0,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5554,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1, +5555,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +5556,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +5557,0,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +5558,0,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +5559,0,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +5560,0,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +5561,0,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +5562,0,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +5563,0,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +5564,0,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +5565,0,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +5566,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +5567,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2, +5568,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2, +5569,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +5570,0,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +5571,0,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +5572,0,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +5573,0,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +5574,0,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +5575,0,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +5576,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +5577,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +5578,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +5579,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +5580,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +5581,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +5582,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +5583,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +5584,0,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2, +5585,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2, +5586,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2, +5587,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2, +5588,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +5589,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +5590,0,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +5591,0,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +5592,0,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +5593,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +5594,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2, +5595,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2, +5596,0,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +5597,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +5598,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +5599,0,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +5600,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2, +5601,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2, +5602,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +5603,0,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +5604,0,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +5605,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +5606,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1, +5607,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1, +5608,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +5609,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +5610,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +5611,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5612,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5613,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5614,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0, +5615,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5616,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5617,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5618,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5619,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5620,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5621,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5622,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5623,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5624,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5625,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5626,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5627,0,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +5628,0,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +5629,0,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +5630,0,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3, +5631,0,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3, +5632,0,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4, +5633,0,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5, +5634,0,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5, +5635,0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5, +5636,0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5, +5637,0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5, +5638,0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5, +5639,0,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +5640,0,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +5641,0,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +5642,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +5643,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +5644,0,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +5645,0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5, +5646,0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5, +5647,0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5, +5648,0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5, +5649,0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5, +5650,0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5, +5651,0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5, +5652,0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5, +5653,0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5, +5654,0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5, +5655,0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5, +5656,0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5, +5657,0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5, +5658,0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5, +5659,0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5, +5660,0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5, +5661,0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5, +5662,0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5, +5663,0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5, +5664,0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5, +5665,0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5, +5666,0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5, +5667,0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5, +5668,0,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +5669,0,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +5670,0,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +5671,0,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +5672,0,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4, +5673,0,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4, +5674,0,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4, +5675,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4, +5676,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4, +5677,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4, +5678,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +5679,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +5680,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +5681,0,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3, +5682,0,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3, +5683,0,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3, +5684,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +5685,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +5686,0,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2, +5687,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +5688,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +5689,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +5690,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5691,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5692,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5693,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5694,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5695,0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5696,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5697,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5698,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5699,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5700,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5701,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5702,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5703,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5704,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5705,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5706,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5707,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5708,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5709,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5710,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5711,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5712,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5713,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5714,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5715,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5716,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5717,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5718,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5719,0,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5720,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5721,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5722,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5723,0,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5724,0,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5725,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5726,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5727,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5728,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5729,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5730,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5731,0,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5732,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1, +5733,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1, +5734,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +5735,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +5736,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +5737,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +5738,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +5739,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +5740,0,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +5741,0,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +5742,0,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +5743,0,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +5744,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +5745,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +5746,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +5747,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1, +5748,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1, +5749,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1, +5750,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1, +5751,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1, +5752,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1, +5753,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +5754,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +5755,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +5756,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +5757,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +5758,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1, +5759,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5760,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5761,0,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5762,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5763,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5764,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5765,0,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5766,0,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5767,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5768,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5769,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5770,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5771,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5772,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5773,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0, +5774,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5775,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5776,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0, +5777,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5778,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5779,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0, +5780,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5781,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5782,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5783,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5784,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5785,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +5786,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +5787,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +5788,0,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2, +5789,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +5790,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +5791,0,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3, +5792,0,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +5793,0,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +5794,0,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3, +5795,0,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3, +5796,0,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3, +5797,0,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3, +5798,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +5799,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +5800,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +5801,0,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +5802,0,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +5803,0,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +5804,0,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2, +5805,0,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2, +5806,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2, +5807,0,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +5808,0,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +5809,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +5810,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1, +5811,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1, +5812,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1, +5813,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1, +5814,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1, +5815,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1, +5816,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1, +5817,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1, +5818,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5819,0,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5820,0,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5821,0,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5822,0,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5823,0,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5824,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5825,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1, +5826,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1, +5827,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1, +5828,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +5829,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +5830,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +5831,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +5832,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +5833,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1, +5834,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1, +5835,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1, +5836,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1, +5837,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1, +5838,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1, +5839,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5840,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5841,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5842,0,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5843,0,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5844,0,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5845,0,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5846,0,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5847,0,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5848,0,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5849,0,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5850,0,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5851,0,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5852,0,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5853,0,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5854,0,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5855,0,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5856,0,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5857,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5858,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1, +5859,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1, +5860,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5861,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5862,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5863,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5864,0,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5865,0,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5866,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5867,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5868,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5869,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5870,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5871,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5872,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5873,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5874,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5875,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5876,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5877,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5878,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5879,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5880,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5881,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0, +5882,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5883,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5884,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5885,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5886,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5887,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5888,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5889,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5890,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5891,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5892,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5893,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5894,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5895,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5896,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5897,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5898,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5899,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5900,0,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5901,0,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5902,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5903,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5904,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5905,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5906,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5907,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5908,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5909,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0, +5910,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0, +5911,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5912,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5913,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5914,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5915,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5916,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5917,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5918,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5919,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5920,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5921,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5922,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5923,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5924,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5925,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5926,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5927,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5928,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5929,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5930,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0, +5931,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0, +5932,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0, +5933,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5934,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5935,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0, +5936,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5937,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5938,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5939,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5940,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5941,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5942,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5943,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5944,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5945,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5946,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5947,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +5948,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5949,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5950,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5951,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5952,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5953,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5954,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5955,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5956,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5957,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5958,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5959,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5960,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5961,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5962,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5963,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5964,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5965,0,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5966,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5967,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +5968,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +5969,0,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +5970,0,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +5971,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2, +5972,0,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +5973,0,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +5974,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +5975,0,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3, +5976,0,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3, +5977,0,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3, +5978,0,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3, +5979,0,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3, +5980,0,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +5981,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +5982,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +5983,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4, +5984,0,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4, +5985,0,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4, +5986,0,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +5987,0,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +5988,0,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +5989,0,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +5990,0,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4, +5991,0,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4, +5992,0,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4, +5993,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4, +5994,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4, +5995,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4, +5996,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4, +5997,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4, +5998,0,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4, +5999,0,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4, +6000,0,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4, +6001,0,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4, +6002,0,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4, +6003,0,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4, +6004,0,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +6005,0,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +6006,0,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +6007,0,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +6008,0,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +6009,0,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +6010,0,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +6011,0,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +6012,0,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +6013,0,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +6014,0,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +6015,0,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +6016,0,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +6017,0,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +6018,0,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +6019,0,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +6020,0,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +6021,0,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +6022,0,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +6023,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4, +6024,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4, +6025,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +6026,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +6027,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +6028,0,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3, +6029,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +6030,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +6031,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3, +6032,0,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3, +6033,0,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3, +6034,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +6035,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +6036,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +6037,0,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +6038,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2, +6039,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2, +6040,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1, +6041,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6042,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6043,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6044,0,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6045,0,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6046,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6047,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6048,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6049,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6050,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6051,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6052,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6053,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6054,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6055,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6056,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6057,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6058,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6059,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6060,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6061,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6062,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6063,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6064,0,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6065,0,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6066,0,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6067,0,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6068,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6069,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6070,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1, +6071,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +6072,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +6073,0,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +6074,0,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +6075,0,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +6076,0,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +6077,0,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +6078,0,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +6079,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +6080,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2, +6081,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2, +6082,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +6083,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +6084,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +6085,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +6086,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +6087,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +6088,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +6089,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2, +6090,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2, +6091,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2, +6092,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2, +6093,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2, +6094,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2, +6095,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2, +6096,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2, +6097,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +6098,0,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +6099,0,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +6100,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1, +6101,0,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6102,0,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6103,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6104,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6105,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6106,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6107,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6108,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6109,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6110,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6111,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6112,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6113,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6114,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6115,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6116,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6117,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6118,0,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6119,0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6120,0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6121,0,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6122,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6123,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6124,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6125,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6126,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6127,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6128,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6129,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6130,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6131,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6132,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6133,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6134,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6135,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6136,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6137,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +6138,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +6139,0,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +6140,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2, +6141,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2, +6142,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +6143,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +6144,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +6145,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4, +6146,0,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +6147,0,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +6148,0,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +6149,0,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +6150,0,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +6151,0,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +6152,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4, +6153,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4, +6154,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +6155,0,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3, +6156,0,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3, +6157,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +6158,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4, +6159,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4, +6160,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +6161,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +6162,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +6163,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +6164,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4, +6165,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4, +6166,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +6167,0,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3, +6168,0,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3, +6169,0,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +6170,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +6171,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +6172,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +6173,0,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +6174,0,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +6175,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +6176,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +6177,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +6178,0,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +6179,0,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +6180,0,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +6181,0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5, +6182,0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5, +6183,0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5, +6184,0,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +6185,0,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +6186,0,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +6187,0,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +6188,0,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +6189,0,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +6190,0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5, +6191,0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5, +6192,0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5, +6193,0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5, +6194,0,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5, +6195,0,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5, +6196,0,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +6197,0,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +6198,0,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +6199,0,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +6200,0,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +6201,0,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +6202,0,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +6203,0,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +6204,0,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +6205,0,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +6206,0,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +6207,0,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +6208,0,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4, +6209,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +6210,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +6211,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +6212,0,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +6213,0,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +6214,0,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +6215,0,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3, +6216,0,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3, +6217,0,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3, +6218,0,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3, +6219,0,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3, +6220,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +6221,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +6222,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +6223,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +6224,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4, +6225,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4, +6226,0,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +6227,0,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +6228,0,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +6229,0,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +6230,0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5, +6231,0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5, +6232,0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5, +6233,0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5, +6234,0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5, +6235,0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5, +6236,0,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +6237,0,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +6238,0,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +6239,0,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +6240,0,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +6241,0,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +6242,0,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +6243,0,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +6244,0,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4, +6245,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4, +6246,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4, +6247,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4, +6248,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4, +6249,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4, +6250,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4, +6251,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4, +6252,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4, +6253,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4, +6254,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4, +6255,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4, +6256,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +6257,0,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +6258,0,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +6259,0,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3, +6260,0,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3, +6261,0,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3, +6262,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +6263,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +6264,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +6265,0,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +6266,0,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +6267,0,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +6268,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +6269,0,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2, +6270,0,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2, +6271,0,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +6272,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +6273,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +6274,0,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2, +6275,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2, +6276,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2, +6277,0,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2, +6278,0,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2, +6279,0,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2, +6280,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2, +6281,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +6282,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +6283,0,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +6284,0,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +6285,0,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +6286,0,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +6287,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +6288,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +6289,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2, +6290,0,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +6291,0,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +6292,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +6293,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +6294,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +6295,0,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3, +6296,0,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3, +6297,0,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3, +6298,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +6299,0,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4, +6300,0,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4, +6301,0,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4, +6302,0,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +6303,0,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +6304,0,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4, +6305,0,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4, +6306,0,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4, +6307,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4, +6308,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +6309,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +6310,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +6311,0,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +6312,0,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +6313,0,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3, +6314,0,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3, +6315,0,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3, +6316,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +6317,0,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +6318,0,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +6319,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2, +6320,0,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +6321,0,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +6322,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +6323,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6324,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6325,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6326,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6327,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6328,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6329,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6330,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6331,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6332,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6333,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6334,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6335,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6336,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6337,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6338,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6339,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6340,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6341,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6342,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6343,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6344,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6345,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6346,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0, +6347,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6348,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6349,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6350,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6351,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6352,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6353,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6354,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6355,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6356,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6357,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6358,0,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6359,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1, +6360,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1, +6361,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1, +6362,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1, +6363,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1, +6364,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1, +6365,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1, +6366,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1, +6367,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +6368,0,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +6369,0,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +6370,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +6371,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +6372,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +6373,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +6374,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1, +6375,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1, +6376,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6377,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6378,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6379,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6380,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6381,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6382,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6383,0,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6384,0,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6385,0,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6386,0,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6387,0,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6388,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6389,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6390,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6391,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6392,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6393,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6394,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6395,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6396,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6397,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6398,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6399,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6400,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6401,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6402,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6403,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6404,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6405,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6406,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6407,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6408,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6409,0,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6410,0,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6411,0,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6412,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1, +6413,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +6414,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +6415,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1, +6416,0,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6417,0,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6418,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6419,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6420,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6421,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0, +6422,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6423,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6424,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6425,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6426,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6427,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6428,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6429,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6430,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6431,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6432,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6433,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6434,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6435,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6436,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6437,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6438,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6439,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6440,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +6441,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +6442,0,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +6443,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2, +6444,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2, +6445,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2, +6446,0,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2, +6447,0,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2, +6448,0,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +6449,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3, +6450,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3, +6451,0,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3, +6452,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +6453,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +6454,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +6455,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +6456,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +6457,0,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3, +6458,0,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3, +6459,0,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3, +6460,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +6461,0,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +6462,0,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +6463,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +6464,0,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3, +6465,0,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3, +6466,0,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3, +6467,0,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +6468,0,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +6469,0,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3, +6470,0,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3, +6471,0,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3, +6472,0,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3, +6473,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +6474,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +6475,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +6476,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +6477,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +6478,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +6479,0,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +6480,0,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +6481,0,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +6482,0,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +6483,0,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +6484,0,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2, +6485,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2, +6486,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2, +6487,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2, +6488,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +6489,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +6490,0,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +6491,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +6492,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +6493,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1, +6494,0,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6495,0,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6496,0,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6497,0,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6498,0,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6499,0,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6500,0,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6501,0,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6502,0,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6503,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6504,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6505,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6506,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6507,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6508,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6509,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6510,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6511,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6512,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6513,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6514,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6515,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6516,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6517,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6518,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6519,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6520,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6521,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6522,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6523,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6524,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6525,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6526,0,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6527,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6528,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6529,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6530,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1, +6531,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1, +6532,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1, +6533,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1, +6534,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1, +6535,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +6536,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +6537,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +6538,0,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +6539,0,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +6540,0,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +6541,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +6542,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2, +6543,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2, +6544,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2, +6545,0,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2, +6546,0,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2, +6547,0,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +6548,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +6549,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +6550,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +6551,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3, +6552,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3, +6553,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +6554,0,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +6555,0,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +6556,0,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +6557,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2, +6558,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2, +6559,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2, +6560,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2, +6561,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2, +6562,0,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2, +6563,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +6564,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +6565,0,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +6566,0,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +6567,0,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +6568,0,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +6569,0,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +6570,0,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +6571,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +6572,0,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3, +6573,0,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3, +6574,0,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3, +6575,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +6576,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +6577,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +6578,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +6579,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +6580,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +6581,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +6582,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +6583,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4, +6584,0,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +6585,0,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +6586,0,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +6587,0,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +6588,0,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +6589,0,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +6590,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4, +6591,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4, +6592,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +6593,0,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3, +6594,0,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3, +6595,0,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3, +6596,0,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3, +6597,0,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3, +6598,0,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3, +6599,0,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3, +6600,0,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3, +6601,0,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +6602,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +6603,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +6604,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4, +6605,0,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4, +6606,0,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4, +6607,0,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +6608,0,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +6609,0,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +6610,0,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +6611,0,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +6612,0,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +6613,0,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4, +6614,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4, +6615,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4, +6616,0,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4, +6617,0,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +6618,0,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +6619,0,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +6620,0,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +6621,0,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +6622,0,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +6623,0,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +6624,0,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +6625,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4, +6626,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +6627,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +6628,0,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3, +6629,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3, +6630,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3, +6631,0,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3, +6632,0,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3, +6633,0,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3, +6634,0,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3, +6635,0,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3, +6636,0,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3, +6637,0,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3, +6638,0,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3, +6639,0,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3, +6640,0,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3, +6641,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3, +6642,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3, +6643,0,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3, +6644,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +6645,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +6646,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +6647,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +6648,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +6649,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +6650,0,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3, +6651,0,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3, +6652,0,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3, +6653,0,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3, +6654,0,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3, +6655,0,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3, +6656,0,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3, +6657,0,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3, +6658,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +6659,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +6660,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +6661,0,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +6662,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +6663,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +6664,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2, +6665,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2, +6666,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2, +6667,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +6668,0,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +6669,0,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +6670,0,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +6671,0,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +6672,0,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +6673,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +6674,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2, +6675,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2, +6676,0,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2, +6677,0,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +6678,0,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +6679,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +6680,0,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3, +6681,0,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3, +6682,0,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3, +6683,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +6684,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +6685,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +6686,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4, +6687,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4, +6688,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +6689,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +6690,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +6691,0,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3, +6692,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +6693,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +6694,0,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2, +6695,0,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +6696,0,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +6697,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1, +6698,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6699,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6700,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6701,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6702,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6703,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6704,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6705,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6706,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6707,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6708,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6709,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6710,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6711,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6712,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6713,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6714,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6715,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6716,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6717,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6718,0,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6719,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6720,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6721,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6722,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6723,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6724,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6725,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1, +6726,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1, +6727,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1, +6728,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1, +6729,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1, +6730,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +6731,0,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +6732,0,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +6733,0,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +6734,0,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +6735,0,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +6736,0,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +6737,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2, +6738,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2, +6739,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2, +6740,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +6741,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +6742,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2, +6743,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2, +6744,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2, +6745,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +6746,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +6747,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +6748,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2, +6749,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2, +6750,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2, +6751,0,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2, +6752,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +6753,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +6754,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +6755,0,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +6756,0,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +6757,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +6758,0,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2, +6759,0,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2, +6760,0,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2, +6761,0,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2, +6762,0,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2, +6763,0,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2, +6764,0,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2, +6765,0,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2, +6766,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2, +6767,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +6768,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +6769,0,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +6770,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +6771,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +6772,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +6773,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +6774,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +6775,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6776,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6777,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6778,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6779,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6780,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6781,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6782,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6783,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6784,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6785,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6786,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6787,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6788,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6789,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6790,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6791,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6792,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6793,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6794,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6795,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6796,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6797,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0, +6798,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0, +6799,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0, +6800,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0, +6801,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0, +6802,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6803,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6804,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6805,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6806,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6807,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6808,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6809,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6810,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6811,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6812,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6813,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6814,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6815,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6816,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6817,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6818,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6819,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6820,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6821,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6822,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6823,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6824,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6825,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6826,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6827,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6828,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6829,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6830,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6831,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6832,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6833,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6834,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6835,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6836,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6837,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6838,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6839,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6840,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6841,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6842,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6843,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6844,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6845,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6846,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6847,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6848,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6849,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6850,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6851,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6852,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6853,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6854,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6855,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6856,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6857,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6858,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6859,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6860,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6861,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6862,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6863,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6864,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6865,0,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6866,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +6867,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +6868,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +6869,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +6870,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +6871,0,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +6872,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +6873,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +6874,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +6875,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +6876,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +6877,0,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3, +6878,0,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3, +6879,0,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3, +6880,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3, +6881,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +6882,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +6883,0,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +6884,0,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +6885,0,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +6886,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2, +6887,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +6888,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +6889,0,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +6890,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +6891,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +6892,0,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6893,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6894,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6895,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6896,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0, +6897,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0, +6898,0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6899,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6900,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6901,0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6902,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0, +6903,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0, +6904,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6905,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6906,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6907,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0, +6908,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6909,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6910,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6911,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6912,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6913,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +6914,0,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3, +6915,0,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3, +6916,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +6917,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +6918,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +6919,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +6920,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +6921,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +6922,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +6923,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +6924,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +6925,0,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3, +6926,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +6927,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +6928,0,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +6929,0,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2, +6930,0,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2, +6931,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2, +6932,0,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +6933,0,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +6934,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +6935,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1, +6936,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1, +6937,0,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6938,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6939,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6940,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6941,0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6942,0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6943,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6944,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6945,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6946,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6947,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6948,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6949,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6950,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6951,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6952,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6953,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6954,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6955,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6956,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6957,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6958,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6959,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6960,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +6961,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0, +6962,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6963,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6964,0,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +6965,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1, +6966,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1, +6967,0,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +6968,0,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2, +6969,0,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2, +6970,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +6971,0,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3, +6972,0,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3, +6973,0,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +6974,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +6975,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +6976,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +6977,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +6978,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +6979,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +6980,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +6981,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +6982,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4, +6983,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4, +6984,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4, +6985,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +6986,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +6987,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +6988,0,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3, +6989,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +6990,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +6991,0,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +6992,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2, +6993,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2, +6994,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2, +6995,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2, +6996,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2, +6997,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2, +6998,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2, +6999,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2, +7000,0,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2, +7001,0,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +7002,0,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +7003,0,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +7004,0,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +7005,0,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +7006,0,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +7007,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +7008,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +7009,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +7010,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +7011,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +7012,0,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +7013,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +7014,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +7015,0,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3, +7016,0,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3, +7017,0,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3, +7018,0,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3, +7019,0,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +7020,0,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +7021,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +7022,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +7023,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +7024,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4, +7025,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4, +7026,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4, +7027,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +7028,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +7029,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +7030,0,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +7031,0,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3, +7032,0,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3, +7033,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +7034,0,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +7035,0,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +7036,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +7037,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2, +7038,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2, +7039,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2, +7040,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +7041,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +7042,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +7043,0,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +7044,0,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +7045,0,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2, +7046,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +7047,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +7048,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +7049,0,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +7050,0,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +7051,0,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +7052,0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5, +7053,0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5, +7054,0,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +7055,0,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +7056,0,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +7057,0,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +7058,0,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +7059,0,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +7060,0,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4, +7061,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4, +7062,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4, +7063,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +7064,0,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3, +7065,0,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3, +7066,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +7067,0,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2, +7068,0,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2, +7069,0,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +7070,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1, +7071,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1, +7072,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +7073,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +7074,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +7075,0,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +7076,0,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3, +7077,0,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3, +7078,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4, +7079,0,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +7080,0,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +7081,0,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +7082,0,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +7083,0,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +7084,0,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +7085,0,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +7086,0,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +7087,0,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +7088,0,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +7089,0,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +7090,0,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +7091,0,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +7092,0,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +7093,0,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +7094,0,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4, +7095,0,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4, +7096,0,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4, +7097,0,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4, +7098,0,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4, +7099,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4, +7100,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +7101,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +7102,0,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +7103,0,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3, +7104,0,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3, +7105,0,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +7106,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +7107,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +7108,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +7109,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +7110,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +7111,0,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4, +7112,0,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +7113,0,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +7114,0,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +7115,0,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4, +7116,0,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4, +7117,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4, +7118,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +7119,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +7120,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +7121,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4, +7122,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4, +7123,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +7124,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +7125,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +7126,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +7127,0,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3, +7128,0,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3, +7129,0,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3, +7130,0,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3, +7131,0,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3, +7132,0,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3, +7133,0,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3, +7134,0,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3, +7135,0,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3, +7136,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3, +7137,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3, +7138,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +7139,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +7140,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +7141,0,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3, +7142,0,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +7143,0,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +7144,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4, +7145,0,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +7146,0,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +7147,0,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +7148,0,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +7149,0,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +7150,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4, +7151,0,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +7152,0,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +7153,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +7154,0,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2, +7155,0,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2, +7156,0,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +7157,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7158,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7159,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7160,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0, +7161,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0, +7162,0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7163,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7164,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7165,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7166,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7167,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7168,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7169,0,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +7170,0,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +7171,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2, +7172,0,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +7173,0,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +7174,0,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3, +7175,0,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3, +7176,0,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3, +7177,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +7178,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +7179,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +7180,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +7181,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +7182,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +7183,0,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4, +7184,0,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +7185,0,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +7186,0,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +7187,0,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +7188,0,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +7189,0,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +7190,0,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +7191,0,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +7192,0,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +7193,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +7194,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +7195,0,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3, +7196,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3, +7197,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3, +7198,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +7199,0,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +7200,0,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +7201,0,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +7202,0,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +7203,0,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +7204,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +7205,0,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3, +7206,0,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3, +7207,0,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +7208,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +7209,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +7210,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4, +7211,0,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4, +7212,0,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4, +7213,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4, +7214,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +7215,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +7216,0,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3, +7217,0,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +7218,0,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +7219,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +7220,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2, +7221,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2, +7222,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2, +7223,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2, +7224,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2, +7225,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +7226,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +7227,0,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3, +7228,0,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3, +7229,0,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3, +7230,0,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3, +7231,0,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3, +7232,0,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3, +7233,0,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3, +7234,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +7235,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +7236,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +7237,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +7238,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +7239,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3, +7240,0,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3, +7241,0,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3, +7242,0,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3, +7243,0,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +7244,0,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +7245,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +7246,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +7247,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +7248,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4, +7249,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4, +7250,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4, +7251,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +7252,0,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +7253,0,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +7254,0,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3, +7255,0,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3, +7256,0,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3, +7257,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +7258,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +7259,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +7260,0,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +7261,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +7262,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +7263,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +7264,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +7265,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +7266,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +7267,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +7268,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +7269,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +7270,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1, +7271,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1, +7272,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7273,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7274,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7275,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7276,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7277,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7278,0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7279,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7280,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7281,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7282,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7283,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7284,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7285,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7286,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7287,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7288,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7289,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7290,0,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7291,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7292,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7293,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0, +7294,0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7295,0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7296,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7297,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7298,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7299,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7300,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7301,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7302,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7303,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7304,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7305,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7306,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7307,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7308,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7309,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7310,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7311,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7312,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7313,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7314,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7315,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7316,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7317,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7318,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7319,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7320,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7321,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0, +7322,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0, +7323,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7324,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1, +7325,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1, +7326,0,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +7327,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +7328,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +7329,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +7330,0,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +7331,0,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +7332,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +7333,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4, +7334,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4, +7335,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4, +7336,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4, +7337,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4, +7338,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4, +7339,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4, +7340,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4, +7341,0,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4, +7342,0,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +7343,0,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +7344,0,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5, +7345,0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5, +7346,0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5, +7347,0,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +7348,0,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +7349,0,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +7350,0,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +7351,0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5, +7352,0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5, +7353,0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5, +7354,0,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +7355,0,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +7356,0,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +7357,0,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +7358,0,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +7359,0,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +7360,0,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +7361,0,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +7362,0,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +7363,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4, +7364,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4, +7365,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +7366,0,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +7367,0,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +7368,0,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3, +7369,0,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3, +7370,0,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3, +7371,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +7372,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +7373,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +7374,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +7375,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +7376,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +7377,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7378,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7379,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7380,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7381,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7382,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7383,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7384,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1, +7385,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1, +7386,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2, +7387,0,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3, +7388,0,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3, +7389,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +7390,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4, +7391,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4, +7392,0,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4, +7393,0,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4, +7394,0,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4, +7395,0,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4, +7396,0,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4, +7397,0,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4, +7398,0,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +7399,0,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +7400,0,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +7401,0,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +7402,0,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4, +7403,0,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4, +7404,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4, +7405,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +7406,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +7407,0,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3, +7408,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +7409,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +7410,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +7411,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +7412,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +7413,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2, +7414,0,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2, +7415,0,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2, +7416,0,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +7417,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3, +7418,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3, +7419,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +7420,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +7421,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +7422,0,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +7423,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +7424,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +7425,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2, +7426,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2, +7427,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2, +7428,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2, +7429,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2, +7430,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2, +7431,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2, +7432,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2, +7433,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2, +7434,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +7435,0,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +7436,0,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +7437,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1, +7438,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7439,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7440,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7441,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7442,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7443,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0, +7444,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7445,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7446,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7447,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7448,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7449,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7450,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7451,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7452,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7453,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7454,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7455,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7456,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7457,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7458,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7459,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7460,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7461,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7462,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7463,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7464,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7465,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7466,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7467,0,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7468,0,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +7469,0,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +7470,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2, +7471,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +7472,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +7473,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +7474,0,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3, +7475,0,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3, +7476,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +7477,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +7478,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +7479,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4, +7480,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4, +7481,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4, +7482,0,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4, +7483,0,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4, +7484,0,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4, +7485,0,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4, +7486,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4, +7487,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4, +7488,0,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4, +7489,0,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4, +7490,0,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4, +7491,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4, +7492,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +7493,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +7494,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +7495,0,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +7496,0,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +7497,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +7498,0,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2, +7499,0,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2, +7500,0,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +7501,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7502,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7503,0,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7504,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7505,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7506,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7507,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7508,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7509,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7510,0,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7511,0,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7512,0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7513,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7514,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7515,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7516,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7517,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7518,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7519,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7520,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7521,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7522,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7523,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7524,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7525,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7526,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7527,0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7528,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7529,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7530,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7531,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7532,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7533,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7534,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7535,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7536,0,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7537,0,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7538,0,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7539,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7540,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1, +7541,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1, +7542,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +7543,0,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +7544,0,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +7545,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +7546,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +7547,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +7548,0,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +7549,0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5, +7550,0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5, +7551,0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5, +7552,0,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4, +7553,0,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4, +7554,0,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4, +7555,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4, +7556,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4, +7557,0,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +7558,0,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +7559,0,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +7560,0,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +7561,0,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +7562,0,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +7563,0,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +7564,0,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5, +7565,0,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5, +7566,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4, +7567,0,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3, +7568,0,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3, +7569,0,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +7570,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2, +7571,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2, +7572,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2, +7573,0,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2, +7574,0,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2, +7575,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +7576,0,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3, +7577,0,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3, +7578,0,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +7579,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +7580,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +7581,0,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4, +7582,0,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +7583,0,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +7584,0,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +7585,0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5, +7586,0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5, +7587,0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5, +7588,0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5, +7589,0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5, +7590,0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5, +7591,0,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5, +7592,0,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5, +7593,0,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +7594,0,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +7595,0,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +7596,0,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +7597,0,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +7598,0,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +7599,0,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +7600,0,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4, +7601,0,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4, +7602,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +7603,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +7604,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +7605,0,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3, +7606,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +7607,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +7608,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +7609,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1, +7610,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1, +7611,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7612,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7613,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7614,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7615,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0, +7616,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0, +7617,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7618,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7619,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7620,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7621,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0, +7622,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0, +7623,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7624,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7625,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7626,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7627,0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7628,0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7629,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7630,0,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7631,0,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7632,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2, +7633,0,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3, +7634,0,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3, +7635,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +7636,0,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4, +7637,0,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4, +7638,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +7639,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +7640,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +7641,0,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3, +7642,0,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +7643,0,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +7644,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2, +7645,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +7646,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +7647,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7648,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7649,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7650,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7651,0,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7652,0,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7653,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7654,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7655,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7656,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7657,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7658,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7659,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7660,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7661,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7662,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7663,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7664,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7665,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7666,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7667,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7668,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7669,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7670,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7671,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7672,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7673,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7674,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7675,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7676,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7677,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7678,0,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7679,0,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7680,0,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7681,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7682,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7683,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +7684,0,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +7685,0,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +7686,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2, +7687,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +7688,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +7689,0,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3, +7690,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +7691,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +7692,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4, +7693,0,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4, +7694,0,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4, +7695,0,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +7696,0,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +7697,0,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +7698,0,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +7699,0,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +7700,0,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +7701,0,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +7702,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4, +7703,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4, +7704,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +7705,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +7706,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +7707,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +7708,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +7709,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +7710,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +7711,0,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +7712,0,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +7713,0,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3, +7714,0,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3, +7715,0,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3, +7716,0,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3, +7717,0,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3, +7718,0,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3, +7719,0,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3, +7720,0,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3, +7721,0,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3, +7722,0,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3, +7723,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +7724,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +7725,0,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +7726,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2, +7727,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2, +7728,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +7729,0,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +7730,0,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +7731,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2, +7732,0,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +7733,0,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +7734,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +7735,0,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +7736,0,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +7737,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2, +7738,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2, +7739,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2, +7740,0,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +7741,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +7742,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +7743,0,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7744,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7745,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7746,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7747,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0, +7748,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0, +7749,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7750,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7751,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7752,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7753,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7754,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7755,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7756,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7757,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7758,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7759,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7760,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7761,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7762,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7763,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7764,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7765,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7766,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7767,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7768,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7769,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7770,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7771,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7772,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7773,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7774,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7775,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7776,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7777,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7778,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7779,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7780,0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7781,0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7782,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7783,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7784,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7785,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7786,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7787,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7788,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7789,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7790,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7791,0,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7792,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7793,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7794,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1, +7795,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1, +7796,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1, +7797,0,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7798,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7799,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7800,0,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7801,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7802,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7803,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1, +7804,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +7805,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +7806,0,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +7807,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2, +7808,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2, +7809,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +7810,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +7811,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +7812,0,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3, +7813,0,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3, +7814,0,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3, +7815,0,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3, +7816,0,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3, +7817,0,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3, +7818,0,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +7819,0,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +7820,0,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +7821,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +7822,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +7823,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +7824,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +7825,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +7826,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +7827,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +7828,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +7829,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +7830,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +7831,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4, +7832,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4, +7833,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +7834,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +7835,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +7836,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +7837,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +7838,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +7839,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4, +7840,0,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4, +7841,0,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4, +7842,0,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4, +7843,0,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4, +7844,0,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4, +7845,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +7846,0,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +7847,0,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +7848,0,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3, +7849,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3, +7850,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3, +7851,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +7852,0,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +7853,0,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +7854,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2, +7855,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +7856,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +7857,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +7858,0,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +7859,0,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +7860,0,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +7861,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +7862,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +7863,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1, +7864,0,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7865,0,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7866,0,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7867,0,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7868,0,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7869,0,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7870,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7871,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7872,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7873,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7874,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7875,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7876,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7877,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7878,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7879,0,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7880,0,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7881,0,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7882,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7883,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7884,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7885,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7886,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7887,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7888,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0, +7889,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0, +7890,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7891,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7892,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7893,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7894,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7895,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7896,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7897,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7898,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7899,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7900,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7901,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7902,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7903,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7904,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7905,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7906,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7907,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7908,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7909,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7910,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7911,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7912,0,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7913,0,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7914,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7915,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7916,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7917,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7918,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7919,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7920,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7921,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7922,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7923,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7924,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7925,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7926,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7927,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7928,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7929,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7930,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7931,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7932,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7933,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7934,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7935,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7936,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7937,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7938,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7939,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7940,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7941,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7942,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7943,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7944,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7945,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7946,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7947,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +7948,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0, +7949,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0, +7950,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7951,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7952,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7953,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7954,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7955,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7956,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7957,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7958,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7959,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7960,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7961,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +7962,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +7963,0,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +7964,0,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +7965,0,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +7966,0,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +7967,0,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +7968,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2, +7969,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +7970,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +7971,0,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3, +7972,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +7973,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +7974,0,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4, +7975,0,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +7976,0,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +7977,0,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5, +7978,0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5, +7979,0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5, +7980,0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5, +7981,0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5, +7982,0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5, +7983,0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5, +7984,0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5, +7985,0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5, +7986,0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5, +7987,0,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +7988,0,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +7989,0,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +7990,0,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +7991,0,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +7992,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4, +7993,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +7994,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +7995,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +7996,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +7997,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +7998,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +7999,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +8000,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +8001,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +8002,0,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +8003,0,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +8004,0,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3, +8005,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3, +8006,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3, +8007,0,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3, +8008,0,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3, +8009,0,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3, +8010,0,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3, +8011,0,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3, +8012,0,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3, +8013,0,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3, +8014,0,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3, +8015,0,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3, +8016,0,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3, +8017,0,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3, +8018,0,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3, +8019,0,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3, +8020,0,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3, +8021,0,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3, +8022,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +8023,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +8024,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +8025,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4, +8026,0,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4, +8027,0,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4, +8028,0,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +8029,0,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +8030,0,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +8031,0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5, +8032,0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5, +8033,0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5, +8034,0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5, +8035,0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5, +8036,0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5, +8037,0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5, +8038,0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5, +8039,0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5, +8040,0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5, +8041,0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5, +8042,0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5, +8043,0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5, +8044,0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5, +8045,0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5, +8046,0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5, +8047,0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5, +8048,0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5, +8049,0,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +8050,0,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +8051,0,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +8052,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4, +8053,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +8054,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +8055,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3, +8056,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +8057,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +8058,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +8059,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +8060,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +8061,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +8062,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +8063,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +8064,0,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8065,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8066,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8067,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8068,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0, +8069,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0, +8070,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0, +8071,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0, +8072,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0, +8073,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +8074,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +8075,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +8076,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +8077,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +8078,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +8079,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +8080,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +8081,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +8082,0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +8083,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8084,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8085,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8086,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8087,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8088,0,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8089,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1, +8090,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1, +8091,0,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +8092,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2, +8093,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2, +8094,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +8095,0,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3, +8096,0,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3, +8097,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +8098,0,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +8099,0,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +8100,0,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +8101,0,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +8102,0,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +8103,0,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +8104,0,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +8105,0,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +8106,0,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +8107,0,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +8108,0,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +8109,0,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +8110,0,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4, +8111,0,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4, +8112,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4, +8113,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +8114,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +8115,0,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3, +8116,0,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +8117,0,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +8118,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +8119,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +8120,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +8121,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +8122,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +8123,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +8124,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +8125,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2, +8126,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2, +8127,0,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2, +8128,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +8129,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +8130,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2, +8131,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +8132,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +8133,0,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +8134,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +8135,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +8136,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +8137,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1, +8138,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1, +8139,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +8140,0,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +8141,0,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +8142,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1, +8143,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8144,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8145,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8146,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8147,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8148,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8149,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8150,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8151,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8152,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8153,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8154,0,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8155,0,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8156,0,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8157,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1, +8158,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +8159,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +8160,0,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +8161,0,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +8162,0,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +8163,0,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +8164,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +8165,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +8166,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8167,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8168,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8169,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8170,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +8171,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +8172,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +8173,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +8174,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +8175,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +8176,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +8177,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +8178,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +8179,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +8180,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +8181,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +8182,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +8183,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +8184,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +8185,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +8186,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +8187,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +8188,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +8189,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +8190,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +8191,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +8192,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +8193,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +8194,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +8195,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +8196,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +8197,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +8198,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +8199,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +8200,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +8201,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +8202,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +8203,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +8204,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +8205,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8206,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8207,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8208,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +8209,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +8210,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +8211,0,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +8212,0,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3, +8213,0,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3, +8214,0,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +8215,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +8216,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +8217,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +8218,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +8219,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +8220,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4, +8221,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4, +8222,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4, +8223,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4, +8224,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4, +8225,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4, +8226,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +8227,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +8228,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +8229,0,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3, +8230,0,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3, +8231,0,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3, +8232,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +8233,0,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +8234,0,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +8235,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2, +8236,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +8237,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +8238,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +8239,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8240,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8241,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8242,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8243,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8244,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +8245,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +8246,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +8247,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2, +8248,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2, +8249,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2, +8250,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +8251,0,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3, +8252,0,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3, +8253,0,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +8254,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +8255,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +8256,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4, +8257,0,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +8258,0,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +8259,0,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +8260,0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5, +8261,0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5, +8262,0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5, +8263,0,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +8264,0,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +8265,0,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +8266,0,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4, +8267,0,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4, +8268,0,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +8269,0,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +8270,0,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +8271,0,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +8272,0,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +8273,0,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +8274,0,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5, +8275,0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5, +8276,0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5, +8277,0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5, +8278,0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5, +8279,0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5, +8280,0,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +8281,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4, +8282,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4, +8283,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +8284,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +8285,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +8286,0,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3, +8287,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3, +8288,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3, +8289,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +8290,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +8291,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +8292,0,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +8293,0,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +8294,0,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +8295,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +8296,0,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3, +8297,0,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3, +8298,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +8299,0,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +8300,0,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +8301,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +8302,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1, +8303,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1, +8304,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8305,0,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8306,0,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8307,0,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8308,0,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8309,0,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8310,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8311,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1, +8312,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1, +8313,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8314,0,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8315,0,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8316,0,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8317,0,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8318,0,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8319,0,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +8320,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +8321,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +8322,0,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +8323,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +8324,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +8325,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +8326,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +8327,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +8328,0,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +8329,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +8330,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +8331,0,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +8332,0,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +8333,0,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +8334,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +8335,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2, +8336,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2, +8337,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2, +8338,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2, +8339,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2, +8340,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2, +8341,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2, +8342,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2, +8343,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +8344,0,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +8345,0,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +8346,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +8347,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3, +8348,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3, +8349,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +8350,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +8351,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +8352,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +8353,0,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +8354,0,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +8355,0,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +8356,0,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +8357,0,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +8358,0,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +8359,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +8360,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +8361,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +8362,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +8363,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +8364,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +8365,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2, +8366,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2, +8367,0,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +8368,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +8369,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +8370,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8371,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +8372,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +8373,0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +8374,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +8375,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +8376,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8377,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +8378,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +8379,0,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2, +8380,0,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3, +8381,0,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3, +8382,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4, +8383,0,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +8384,0,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +8385,0,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +8386,0,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +8387,0,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +8388,0,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5, +8389,0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5, +8390,0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5, +8391,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4, +8392,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +8393,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +8394,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +8395,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8396,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8397,0,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8398,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8399,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8400,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8401,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8402,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8403,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +8404,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +8405,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +8406,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +8407,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +8408,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +8409,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +8410,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +8411,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +8412,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +8413,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +8414,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +8415,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +8416,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +8417,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +8418,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +8419,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +8420,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +8421,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +8422,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +8423,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +8424,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +8425,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +8426,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +8427,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +8428,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +8429,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +8430,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0, +8431,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8432,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8433,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8434,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8435,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8436,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8437,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8438,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8439,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8440,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8441,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8442,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8443,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8444,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8445,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8446,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8447,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8448,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8449,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8450,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8451,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8452,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8453,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8454,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8455,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8456,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8457,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0, +8458,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +8459,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +8460,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +8461,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +8462,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +8463,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +8464,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +8465,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +8466,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +8467,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0, +8468,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0, +8469,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8470,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8471,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8472,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8473,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8474,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8475,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0, +8476,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +8477,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +8478,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +8479,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +8480,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +8481,0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +8482,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8483,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8484,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8485,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8486,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8487,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8488,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +8489,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +8490,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +8491,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +8492,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +8493,0,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +8494,0,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +8495,0,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +8496,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +8497,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +8498,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +8499,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1, +8500,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8501,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8502,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8503,0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +8504,0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +8505,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +8506,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +8507,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +8508,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +8509,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +8510,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +8511,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +8512,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +8513,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +8514,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0, +8515,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8516,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8517,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8518,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8519,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8520,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8521,0,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8522,0,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8523,0,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8524,0,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8525,0,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8526,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1, +8527,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +8528,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +8529,0,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +8530,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2, +8531,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2, +8532,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +8533,0,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +8534,0,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +8535,0,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3, +8536,0,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +8537,0,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +8538,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +8539,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4, +8540,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4, +8541,0,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4, +8542,0,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +8543,0,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +8544,0,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +8545,0,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +8546,0,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +8547,0,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +8548,0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5, +8549,0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5, +8550,0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5, +8551,0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5, +8552,0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5, +8553,0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5, +8554,0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5, +8555,0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5, +8556,0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5, +8557,0,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5, +8558,0,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5, +8559,0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5, +8560,0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5, +8561,0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5, +8562,0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5, +8563,0,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5, +8564,0,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5, +8565,0,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +8566,0,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +8567,0,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +8568,0,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +8569,0,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +8570,0,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +8571,0,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +8572,0,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +8573,0,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +8574,0,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +8575,0,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +8576,0,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +8577,0,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4, +8578,0,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4, +8579,0,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4, +8580,0,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4, +8581,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4, +8582,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4, +8583,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4, +8584,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4, +8585,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4, +8586,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4, +8587,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +8588,0,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +8589,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +8590,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +8591,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +8592,0,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4, +8593,0,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3, +8594,0,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3, +8595,0,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3, +8596,0,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3, +8597,0,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3, +8598,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3, +8599,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +8600,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +8601,0,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +8602,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2, +8603,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2, +8604,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2, +8605,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +8606,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +8607,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +8608,0,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +8609,0,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +8610,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +8611,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8612,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8613,0,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8614,0,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8615,0,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8616,0,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8617,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8618,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8619,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8620,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8621,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8622,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8623,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8624,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8625,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8626,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8627,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8628,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8629,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0, +8630,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0, +8631,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8632,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8633,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8634,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8635,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8636,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8637,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8638,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0, +8639,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0, +8640,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0, +8641,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0, +8642,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0, +8643,0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +8644,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +8645,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +8646,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +8647,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +8648,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +8649,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +8650,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +8651,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +8652,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +8653,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +8654,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +8655,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +8656,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +8657,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +8658,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +8659,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +8660,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +8661,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +8662,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +8663,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +8664,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8665,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8666,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8667,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8668,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +8669,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +8670,0,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +8671,0,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +8672,0,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +8673,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +8674,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +8675,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +8676,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +8677,0,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +8678,0,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +8679,0,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +8680,0,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +8681,0,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +8682,0,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +8683,0,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +8684,0,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +8685,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +8686,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1, +8687,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1, +8688,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1, +8689,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8690,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8691,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8692,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8693,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8694,0,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8695,0,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8696,0,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8697,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8698,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8699,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8700,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8701,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0, +8702,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0, +8703,0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +8704,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +8705,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +8706,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +8707,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +8708,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +8709,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +8710,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +8711,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +8712,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +8713,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +8714,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +8715,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +8716,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +8717,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +8718,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +8719,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +8720,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +8721,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +8722,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +8723,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +8724,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +8725,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8726,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8727,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8728,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8729,0,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1, +8730,0,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +8731,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2, +8732,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2, +8733,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +8734,0,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +8735,0,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +8736,0,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +8737,0,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +8738,0,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +8739,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +8740,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +8741,0,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +8742,0,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +8743,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +8744,0,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +8745,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2, +8746,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +8747,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +8748,0,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +8749,0,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +8750,0,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +8751,0,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +8752,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +8753,0,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2, +8754,0,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3, +8755,0,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3, +8756,0,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3, +8757,0,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4, +8758,0,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +8759,0,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, +8760,0,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4, diff --git a/emlab-generation/src/main/resources/data/multiNodeProduction_DE_windOn.csv b/emlab-generation/src/main/resources/data/multiNodeProduction_DE_windOn.csv new file mode 100644 index 00000000..3a2e201a --- /dev/null +++ b/emlab-generation/src/main/resources/data/multiNodeProduction_DE_windOn.csv @@ -0,0 +1,8761 @@ +hour,de_node_0,de_node_1,de_node_2,de_node_3,de_node_4,de_node_5,de_node_6,de_node_7,de_node_8,de_node_9,de_node_10,de_node_11,de_node_12,de_node_13,de_node_14,de_node_15,de_node_16,de_node_17,de_node_18 +1,0.3,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +2,0.3,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +4,0.2,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +5,0.2,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +6,0.2,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +7,0.2,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +8,0.2,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +9,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +10,0.2,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +11,0.2,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +12,0.2,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +13,0.2,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +14,0.2,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +15,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +16,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +17,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +18,0.1,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +19,0.1,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +20,0.1,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +21,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +22,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +23,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +24,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +25,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +26,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +27,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +28,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +29,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +30,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +31,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +32,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +33,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +34,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +35,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +36,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,, +37,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,, +38,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,, +39,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,, +40,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,, +41,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,, +42,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,, +43,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +44,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +45,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,, +46,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,, +47,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,, +48,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,, +49,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +50,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +51,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,, +52,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +53,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +54,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +55,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,, +56,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,, +57,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,, +58,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,, +59,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,, +60,0.0,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +62,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +63,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +64,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,, +65,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,, +66,0.0,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +67,0.0,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +68,0.0,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +69,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +70,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +71,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +72,0.0,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +73,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,, +74,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,, +75,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,, +76,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,, +77,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,, +78,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +79,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +80,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +81,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +82,0.1,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +83,0.1,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +84,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +85,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +86,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +87,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +88,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +89,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +90,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +91,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +92,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +93,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +94,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +95,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +96,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +97,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +98,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +99,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +100,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,, +101,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,, +102,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +103,0.1,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +104,0.1,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +105,0.1,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +106,0.1,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +107,0.1,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +108,0.1,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +109,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +110,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +111,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +112,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +113,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +114,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +115,0.1,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +116,0.1,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +117,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +118,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +119,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +120,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +121,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +122,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +123,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,, +124,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +125,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +126,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +127,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +128,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +129,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +130,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +131,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +132,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +133,0.0,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +134,0.0,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +135,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +136,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +137,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +138,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +139,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +140,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +141,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +142,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +143,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +144,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +145,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +146,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +147,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +148,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +149,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +150,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +151,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +152,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +153,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +154,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +155,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +156,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +157,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +158,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +159,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +160,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +161,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +162,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +163,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +164,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +165,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +166,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +167,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +168,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +169,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +170,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +171,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +172,0.0,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +173,0.0,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +174,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +175,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +176,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +177,0.1,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +178,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,, +179,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,, +180,0.2,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +181,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +182,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +183,0.3,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +184,0.4,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,,,, +185,0.4,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,,,, +186,0.4,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,,,, +187,0.5,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,,,, +188,0.5,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,,,, +189,0.6,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,0.4,,,,, +190,0.6,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,,,,, +191,0.6,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,,,,, +192,0.7,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,,,,, +193,0.7,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.5,0.5,0.5,,,,, +194,0.7,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.5,0.5,0.5,,,,, +195,0.7,0.9,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.5,0.5,,,,, +196,0.8,1.0,1.0,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.5,,,,, +197,0.8,1.0,1.0,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.5,,,,, +198,0.8,1.0,1.0,0.9,0.9,0.9,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,,,,, +199,0.8,1.1,1.0,1.0,0.9,0.9,0.9,0.8,0.8,0.7,0.7,0.6,0.6,0.6,,,,, +200,0.8,1.1,1.0,1.0,0.9,0.9,0.9,0.8,0.8,0.7,0.7,0.6,0.6,0.6,,,,, +201,0.9,1.1,1.0,1.0,1.0,0.9,0.9,0.8,0.8,0.7,0.7,0.7,0.6,0.6,,,,, +202,0.9,1.1,1.1,1.0,1.0,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.6,0.6,,,,, +203,0.9,1.1,1.1,1.0,1.0,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.6,0.6,,,,, +204,0.9,1.1,1.1,1.0,1.0,1.0,0.9,0.9,0.8,0.8,0.7,0.7,0.7,0.6,,,,, +205,0.9,1.2,1.1,1.1,1.0,1.0,0.9,0.9,0.9,0.8,0.8,0.7,0.7,0.6,,,,, +206,0.9,1.2,1.1,1.1,1.0,1.0,0.9,0.9,0.9,0.8,0.8,0.7,0.7,0.6,,,,, +207,0.9,1.1,1.1,1.0,1.0,1.0,0.9,0.9,0.8,0.8,0.7,0.7,0.7,0.6,,,,, +208,0.9,1.1,1.1,1.0,1.0,0.9,0.9,0.9,0.8,0.8,0.7,0.7,0.6,0.6,,,,, +209,0.9,1.1,1.1,1.0,1.0,0.9,0.9,0.9,0.8,0.8,0.7,0.7,0.6,0.6,,,,, +210,0.9,1.1,1.0,1.0,1.0,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.6,0.6,,,,, +211,0.8,1.1,1.0,1.0,0.9,0.9,0.9,0.8,0.8,0.7,0.7,0.7,0.6,0.6,,,,, +212,0.8,1.1,1.0,1.0,0.9,0.9,0.9,0.8,0.8,0.7,0.7,0.7,0.6,0.6,,,,, +213,0.8,1.0,1.0,1.0,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.6,0.6,0.6,,,,, +214,0.8,1.0,1.0,1.0,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.6,0.6,0.6,,,,, +215,0.8,1.0,1.0,1.0,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.6,0.6,0.6,,,,, +216,0.8,1.0,0.9,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.6,0.6,0.6,0.5,,,,, +217,0.7,0.9,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.6,0.6,0.6,0.5,0.5,,,,, +218,0.7,0.9,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.6,0.6,0.6,0.5,0.5,,,,, +219,0.7,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,,,,, +220,0.6,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,,,, +221,0.6,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,,,, +222,0.6,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,,,,, +223,0.5,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,,,, +224,0.5,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,,,, +225,0.5,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,,,, +226,0.5,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,,,,, +227,0.5,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,,,,, +228,0.4,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,,,, +229,0.4,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +230,0.4,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +231,0.4,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +232,0.4,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +233,0.4,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +234,0.3,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +235,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +236,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +237,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +238,0.3,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +239,0.3,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +240,0.3,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,,,, +241,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +242,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +243,0.2,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +244,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +245,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +246,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +247,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +248,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +249,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +250,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +251,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +252,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,, +253,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,, +254,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,, +255,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +256,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +257,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +258,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +259,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +260,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +261,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +262,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +263,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +264,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,, +265,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,, +266,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,, +267,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +268,0.0,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +269,0.0,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +270,0.0,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +271,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +272,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +273,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,, +274,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +275,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +276,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +277,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +278,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +279,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +280,0.1,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +281,0.1,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +282,0.2,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +283,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +284,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +285,0.3,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +286,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +287,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +288,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +289,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +290,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +291,0.4,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +292,0.4,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +293,0.4,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +294,0.4,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,,,, +295,0.5,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,,,,, +296,0.5,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,,,,, +297,0.5,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,,,, +298,0.5,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,,,, +299,0.5,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,,,, +300,0.5,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,,,,, +301,0.4,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,,,, +302,0.4,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,,,, +303,0.4,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,,,, +304,0.5,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,,,,, +305,0.5,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,,,,, +306,0.5,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,,,,, +307,0.5,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,,,,, +308,0.5,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,,,,, +309,0.4,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +310,0.4,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +311,0.4,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +312,0.4,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +313,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +314,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +315,0.3,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,,,, +316,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +317,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +318,0.2,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +319,0.2,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +320,0.2,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +321,0.2,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +322,0.2,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +323,0.2,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +324,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +325,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,, +326,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,, +327,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +328,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +329,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +330,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +331,0.2,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +332,0.2,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +333,0.2,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +334,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +335,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +336,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,, +337,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +338,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +339,0.1,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +340,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +341,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +342,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +343,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +344,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +345,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +346,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +347,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +348,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,, +349,0.0,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +350,0.0,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +351,0.0,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +352,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +353,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +354,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +355,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +356,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +357,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +358,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +359,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +360,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +361,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +362,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +363,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +364,0.1,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +365,0.1,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +366,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,, +367,0.2,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +368,0.2,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +369,0.3,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,,,, +370,0.3,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +371,0.3,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +372,0.4,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +373,0.4,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,,,, +374,0.4,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,,,, +375,0.4,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +376,0.5,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,,,,, +377,0.5,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,,,,, +378,0.5,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,,,, +379,0.5,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,,,, +380,0.5,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,,,, +381,0.5,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,,,,, +382,0.5,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,,,,, +383,0.5,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,,,,, +384,0.4,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,,,, +385,0.4,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +386,0.4,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +387,0.3,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +388,0.3,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +389,0.3,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +390,0.2,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +391,0.2,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +392,0.2,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +393,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +394,0.1,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +395,0.1,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +396,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +397,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +398,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +399,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +400,0.1,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +401,0.1,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +402,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +403,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +404,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +405,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +406,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +407,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +408,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +409,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +410,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +411,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +412,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,, +413,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,, +414,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +415,0.1,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +416,0.1,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +417,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +418,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +419,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +420,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +421,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +422,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +423,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +424,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +425,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +426,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +427,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +428,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +429,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +430,0.1,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +431,0.1,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +432,0.1,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +433,0.1,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +434,0.1,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +435,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +436,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +437,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +438,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +439,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +440,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +441,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +442,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +443,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +444,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,, +445,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,, +446,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,, +447,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +448,0.0,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +449,0.0,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +450,0.0,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +451,0.0,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +452,0.0,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +453,0.0,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +454,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +455,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +456,0.0,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +457,0.0,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +458,0.0,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +459,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +460,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,, +461,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,, +462,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +463,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +464,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +465,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +466,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +467,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +468,0.1,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +469,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,, +470,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,, +471,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +472,0.2,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +473,0.2,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +474,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +475,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +476,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +477,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +478,0.2,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +479,0.2,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +480,0.2,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +481,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +482,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +483,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +484,0.1,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +485,0.1,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +486,0.1,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +487,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +488,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +489,0.1,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +490,0.1,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +491,0.1,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +492,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +493,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +494,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +495,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +496,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +497,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +498,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +499,0.1,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +500,0.1,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +501,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +502,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +503,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +504,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +505,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +506,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +507,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +508,0.1,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +509,0.1,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +510,0.1,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +511,0.1,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +512,0.1,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +513,0.1,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +514,0.1,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +515,0.1,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +516,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +517,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +518,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +519,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +520,0.1,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +521,0.1,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +522,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +523,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +524,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +525,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +526,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +527,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +528,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +529,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +530,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +531,0.1,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +532,0.1,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +533,0.1,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +534,0.1,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +535,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +536,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +537,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +538,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +539,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +540,0.1,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +541,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +542,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +543,0.1,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +544,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +545,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +546,0.2,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +547,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +548,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +549,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +550,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +551,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +552,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +553,0.2,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +554,0.2,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +555,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +556,0.2,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +557,0.2,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +558,0.2,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +559,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +560,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +561,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +562,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +563,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +564,0.2,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +565,0.2,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +566,0.2,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +567,0.2,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +568,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +569,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +570,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +571,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +572,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +573,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +574,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +575,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +576,0.2,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +577,0.2,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +578,0.2,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +579,0.2,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +580,0.2,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +581,0.2,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +582,0.2,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +583,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +584,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +585,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +586,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +587,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +588,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +589,0.1,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +590,0.1,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +591,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +592,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +593,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +594,0.1,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +595,0.1,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +596,0.1,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +597,0.1,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +598,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +599,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +600,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +601,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +602,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +603,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +604,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +605,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +606,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +607,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +608,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +609,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +610,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +611,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +612,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +613,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,, +614,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,, +615,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,, +616,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,, +617,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,, +618,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +619,0.0,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +620,0.0,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +621,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +622,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +623,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +624,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +625,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +626,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +627,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +628,0.0,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +629,0.0,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +630,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,, +631,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +632,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +633,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +634,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,, +635,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,, +636,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +637,0.4,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +638,0.4,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +639,0.5,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,,,, +640,0.7,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,,,,, +641,0.7,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,,,,, +642,0.8,1.0,1.0,0.9,0.9,0.9,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.5,,,,, +643,0.9,1.2,1.1,1.1,1.0,1.0,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.6,,,,, +644,0.9,1.2,1.1,1.1,1.0,1.0,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.6,,,,, +645,0.9,1.2,1.1,1.1,1.0,1.0,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.6,,,,, +646,0.9,1.2,1.1,1.1,1.0,1.0,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.6,,,,, +647,0.9,1.2,1.1,1.1,1.0,1.0,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.6,,,,, +648,0.9,1.1,1.1,1.0,1.0,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.6,0.6,,,,, +649,0.8,1.0,1.0,1.0,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.6,0.6,0.6,,,,, +650,0.8,1.0,1.0,1.0,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.6,0.6,0.6,,,,, +651,0.8,1.0,0.9,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.6,0.6,0.6,0.5,,,,, +652,0.7,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,,,,, +653,0.7,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,,,,, +654,0.7,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,,,,, +655,0.6,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,,,, +656,0.6,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,,,, +657,0.6,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,,,, +658,0.6,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,,,, +659,0.6,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,,,, +660,0.7,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,,,,, +661,0.7,0.9,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.6,0.6,0.6,0.5,0.5,,,,, +662,0.7,0.9,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.6,0.6,0.6,0.5,0.5,,,,, +663,0.7,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,,,,, +664,0.7,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,,,,, +665,0.7,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,,,,, +666,0.6,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,,,,, +667,0.6,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,0.4,,,,, +668,0.6,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,0.4,,,,, +669,0.5,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,,,, +670,0.5,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,,,, +671,0.5,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,,,, +672,0.5,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,,,,, +673,0.4,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,,,, +674,0.4,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,,,, +675,0.4,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +676,0.4,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,,,, +677,0.4,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,,,, +678,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +679,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,,,, +680,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,,,, +681,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +682,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +683,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +684,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +685,0.3,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +686,0.3,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +687,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +688,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +689,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +690,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +691,0.3,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,,,, +692,0.3,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,,,, +693,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +694,0.3,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +695,0.3,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +696,0.4,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +697,0.4,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,,,, +698,0.4,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,,,, +699,0.4,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,,,, +700,0.5,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,,,,, +701,0.5,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,,,,, +702,0.5,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,,,,, +703,0.5,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,,,, +704,0.5,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,,,, +705,0.5,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,,,,, +706,0.5,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,,,,, +707,0.5,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,,,,, +708,0.4,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +709,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +710,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +711,0.2,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +712,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,, +713,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,, +714,0.1,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +715,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +716,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +717,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +718,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +719,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +720,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +721,0.2,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +722,0.2,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +723,0.2,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +724,0.3,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +725,0.3,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +726,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +727,0.3,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +728,0.3,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +729,0.3,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +730,0.3,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +731,0.3,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +732,0.4,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +733,0.4,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +734,0.4,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +735,0.4,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +736,0.4,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,,,, +737,0.4,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,,,, +738,0.4,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +739,0.4,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +740,0.4,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +741,0.4,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +742,0.4,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,,,, +743,0.4,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,,,, +744,0.4,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +745,0.4,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +746,0.4,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +747,0.4,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +748,0.4,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +749,0.4,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +750,0.4,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +751,0.4,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,,,, +752,0.4,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,,,, +753,0.4,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,,,, +754,0.4,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,,,, +755,0.4,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,,,, +756,0.4,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +757,0.4,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +758,0.4,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +759,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +760,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +761,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +762,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +763,0.2,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +764,0.2,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +765,0.2,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +766,0.2,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +767,0.2,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +768,0.2,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +769,0.2,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +770,0.2,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +771,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +772,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +773,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +774,0.4,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +775,0.5,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,,,,, +776,0.5,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,,,,, +777,0.6,0.8,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,,,,, +778,0.7,0.9,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.6,0.6,0.6,0.5,0.5,,,,, +779,0.7,0.9,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.6,0.6,0.6,0.5,0.5,,,,, +780,0.9,1.1,1.0,1.0,1.0,0.9,0.9,0.8,0.8,0.7,0.7,0.7,0.6,0.6,,,,, +781,1.0,1.2,1.2,1.1,1.1,1.0,1.0,0.9,0.9,0.8,0.8,0.7,0.7,0.6,,,,, +782,1.0,1.2,1.2,1.1,1.1,1.0,1.0,0.9,0.9,0.8,0.8,0.7,0.7,0.6,,,,, +783,1.0,1.2,1.2,1.1,1.1,1.0,1.0,0.9,0.9,0.8,0.8,0.7,0.7,0.6,,,,, +784,1.0,1.2,1.2,1.1,1.1,1.0,1.0,0.9,0.9,0.8,0.8,0.7,0.7,0.6,,,,, +785,1.0,1.2,1.2,1.1,1.1,1.0,1.0,0.9,0.9,0.8,0.8,0.7,0.7,0.6,,,,, +786,0.9,1.1,1.1,1.0,1.0,1.0,0.9,0.9,0.8,0.8,0.7,0.7,0.7,0.6,,,,, +787,0.8,1.0,1.0,1.0,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.6,0.6,0.6,,,,, +788,0.8,1.0,1.0,1.0,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.6,0.6,0.6,,,,, +789,0.8,1.0,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,,,,, +790,0.7,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,,,,, +791,0.7,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,,,,, +792,0.6,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,,,, +793,0.6,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,,,,, +794,0.6,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,,,,, +795,0.5,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,,,,, +796,0.5,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,,,, +797,0.5,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,,,, +798,0.5,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,,,, +799,0.5,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,,,, +800,0.5,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,,,, +801,0.5,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,,,, +802,0.5,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,,,, +803,0.5,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,,,, +804,0.6,0.8,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,,,,, +805,0.7,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,,,,, +806,0.7,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,,,,, +807,0.7,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,,,, +808,0.6,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,,,,, +809,0.6,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,,,,, +810,0.5,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,,,, +811,0.4,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,,,, +812,0.4,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,,,, +813,0.4,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +814,0.3,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,,,, +815,0.3,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,,,, +816,0.2,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +817,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +818,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +819,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +820,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +821,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +822,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +823,0.2,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +824,0.2,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +825,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +826,0.2,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +827,0.2,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +828,0.2,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +829,0.2,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +830,0.2,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +831,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +832,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +833,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +834,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +835,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +836,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +837,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +838,0.1,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +839,0.1,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +840,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +841,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +842,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +843,0.3,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,,,, +844,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +845,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +846,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +847,0.4,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +848,0.4,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +849,0.4,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +850,0.4,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +851,0.4,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +852,0.4,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,,,, +853,0.3,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +854,0.3,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +855,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +856,0.3,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +857,0.3,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +858,0.3,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,,,, +859,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +860,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +861,0.2,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +862,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +863,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +864,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +865,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +866,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +867,0.1,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +868,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +869,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +870,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +871,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +872,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +873,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +874,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +875,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +876,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +877,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +878,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +879,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +880,0.1,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +881,0.1,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +882,0.1,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +883,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +884,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +885,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +886,0.1,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +887,0.1,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +888,0.1,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +889,0.1,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +890,0.1,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +891,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +892,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +893,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +894,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +895,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +896,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +897,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +898,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,, +899,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,, +900,0.0,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +901,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +902,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +903,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +904,0.0,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +905,0.0,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +906,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,, +907,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +908,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +909,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +910,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +911,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +912,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,, +913,0.0,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +914,0.0,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +915,0.0,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +916,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +917,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +918,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +919,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,, +920,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,, +921,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +922,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +923,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +924,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +925,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,, +926,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,, +927,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,, +928,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +929,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +930,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +931,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +932,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +933,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +934,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +935,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +936,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +937,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,, +938,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,, +939,0.0,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +940,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +941,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +942,0.0,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +943,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +944,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +945,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,, +946,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +947,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +948,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,, +949,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,, +950,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,, +951,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +952,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +953,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +954,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +955,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +956,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +957,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +958,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +959,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +960,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +961,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +962,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +963,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +964,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +965,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +966,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +967,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +968,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +969,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +970,0.2,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +971,0.2,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +972,0.2,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +973,0.2,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +974,0.2,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +975,0.2,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +976,0.2,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +977,0.2,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +978,0.2,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +979,0.2,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +980,0.2,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +981,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +982,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +983,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +984,0.3,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +985,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +986,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +987,0.4,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +988,0.4,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +989,0.4,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +990,0.4,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,,,, +991,0.5,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,,,,, +992,0.5,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,,,,, +993,0.6,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,,,,, +994,0.6,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,,,, +995,0.6,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,,,, +996,0.7,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,,,,, +997,0.7,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,,,,, +998,0.7,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,,,,, +999,0.6,0.8,0.8,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,,,, +1000,0.6,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,,,,, +1001,0.6,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,,,,, +1002,0.5,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,,,,, +1003,0.5,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,,,, +1004,0.5,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,,,, +1005,0.5,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,,,,, +1006,0.5,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,,,,, +1007,0.5,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,,,,, +1008,0.5,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,,,,, +1009,0.4,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,,,, +1010,0.4,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,,,, +1011,0.4,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,,,, +1012,0.4,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,,,, +1013,0.4,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,,,, +1014,0.4,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +1015,0.4,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +1016,0.4,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +1017,0.4,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +1018,0.4,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +1019,0.4,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +1020,0.4,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +1021,0.4,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +1022,0.4,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +1023,0.4,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +1024,0.4,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +1025,0.4,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +1026,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +1027,0.3,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +1028,0.3,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +1029,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,,,, +1030,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +1031,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +1032,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +1033,0.2,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +1034,0.2,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +1035,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +1036,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,, +1037,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,, +1038,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +1039,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +1040,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +1041,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +1042,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,, +1043,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,, +1044,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1045,0.1,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1046,0.1,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1047,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1048,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1049,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1050,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1051,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +1052,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +1053,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +1054,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +1055,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +1056,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +1057,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +1058,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +1059,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +1060,0.0,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +1061,0.0,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +1062,0.0,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +1063,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +1064,0.0,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +1065,0.0,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +1066,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +1067,0.0,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +1068,0.0,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +1069,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +1070,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +1071,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +1072,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +1073,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +1074,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +1075,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +1076,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +1077,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +1078,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +1079,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +1080,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +1081,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +1082,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +1083,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +1084,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +1085,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +1086,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +1087,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +1088,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +1089,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +1090,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +1091,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +1092,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +1093,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,, +1094,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,, +1095,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +1096,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1097,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1098,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1099,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1100,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1101,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1102,0.1,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1103,0.1,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1104,0.1,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1105,0.1,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1106,0.1,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1107,0.1,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1108,0.1,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1109,0.1,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1110,0.1,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1111,0.1,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1112,0.1,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1113,0.1,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1114,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1115,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1116,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1117,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1118,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1119,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1120,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1121,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1122,0.1,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1123,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,, +1124,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,, +1125,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +1126,0.2,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +1127,0.2,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +1128,0.2,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +1129,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +1130,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +1131,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +1132,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1133,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1134,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,, +1135,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +1136,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +1137,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +1138,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,, +1139,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,, +1140,0.1,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1141,0.1,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1142,0.1,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1143,0.1,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1144,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1145,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1146,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +1147,0.2,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +1148,0.2,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +1149,0.2,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +1150,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +1151,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +1152,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1153,0.1,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1154,0.1,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1155,0.1,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1156,0.1,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1157,0.1,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1158,0.1,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1159,0.1,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1160,0.1,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1161,0.1,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1162,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1163,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1164,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,, +1165,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +1166,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +1167,0.2,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +1168,0.2,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +1169,0.2,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +1170,0.2,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +1171,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +1172,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +1173,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +1174,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +1175,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +1176,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +1177,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +1178,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +1179,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +1180,0.3,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +1181,0.3,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +1182,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +1183,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +1184,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +1185,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,,,, +1186,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +1187,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +1188,0.2,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +1189,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +1190,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +1191,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1192,0.1,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1193,0.1,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1194,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +1195,0.2,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +1196,0.2,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +1197,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +1198,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +1199,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +1200,0.4,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,,,, +1201,0.4,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +1202,0.4,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +1203,0.4,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,,,, +1204,0.4,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,,,, +1205,0.4,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,,,, +1206,0.5,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,,,,, +1207,0.5,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,,,,, +1208,0.5,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,,,,, +1209,0.5,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,,,, +1210,0.6,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,,,,, +1211,0.6,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,,,,, +1212,0.6,0.8,0.8,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,,,, +1213,0.7,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,,,,, +1214,0.7,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,,,,, +1215,0.6,0.8,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,,,,, +1216,0.5,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,,,, +1217,0.5,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,,,, +1218,0.5,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,,,, +1219,0.4,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,,,, +1220,0.4,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,,,, +1221,0.4,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +1222,0.4,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +1223,0.4,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +1224,0.4,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +1225,0.3,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +1226,0.3,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +1227,0.3,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,,,, +1228,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +1229,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +1230,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +1231,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1232,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1233,0.1,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1234,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1235,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1236,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1237,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1238,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1239,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +1240,0.0,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +1241,0.0,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +1242,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,, +1243,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1244,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1245,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,, +1246,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,,,, +1247,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,,,, +1248,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +1249,0.3,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +1250,0.3,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +1251,0.3,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +1252,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +1253,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +1254,0.3,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +1255,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +1256,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +1257,0.3,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,,,, +1258,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +1259,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +1260,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +1261,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +1262,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +1263,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +1264,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +1265,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +1266,0.3,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +1267,0.4,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +1268,0.4,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +1269,0.5,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,,,, +1270,0.6,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,0.4,,,,, +1271,0.6,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,0.4,,,,, +1272,0.6,0.8,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,,,,, +1273,0.6,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,,,, +1274,0.6,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,,,, +1275,0.5,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,,,, +1276,0.4,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,,,, +1277,0.4,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,,,, +1278,0.3,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +1279,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +1280,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +1281,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +1282,0.1,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1283,0.1,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1284,0.1,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1285,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1286,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1287,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1288,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1289,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1290,0.1,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1291,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,, +1292,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,, +1293,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +1294,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +1295,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +1296,0.2,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +1297,0.2,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +1298,0.2,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +1299,0.2,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +1300,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +1301,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +1302,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +1303,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +1304,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +1305,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +1306,0.2,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +1307,0.2,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +1308,0.2,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +1309,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +1310,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +1311,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1312,0.1,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1313,0.1,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1314,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1315,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +1316,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +1317,0.2,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +1318,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +1319,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +1320,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +1321,0.3,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +1322,0.3,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +1323,0.4,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,,,, +1324,0.4,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +1325,0.4,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +1326,0.5,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,,,,, +1327,0.5,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,,,, +1328,0.5,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,,,, +1329,0.5,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,,,, +1330,0.6,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,0.4,,,,, +1331,0.6,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,0.4,,,,, +1332,0.6,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,,,,, +1333,0.6,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,,,, +1334,0.6,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,,,, +1335,0.5,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,,,, +1336,0.4,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +1337,0.4,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +1338,0.4,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +1339,0.4,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,,,, +1340,0.4,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,,,, +1341,0.4,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,,,, +1342,0.4,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,,,, +1343,0.4,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,,,, +1344,0.4,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,,,, +1345,0.4,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,,,, +1346,0.4,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,,,, +1347,0.3,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +1348,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +1349,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +1350,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +1351,0.3,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +1352,0.3,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +1353,0.3,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +1354,0.3,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +1355,0.3,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +1356,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +1357,0.4,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,,,, +1358,0.4,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,,,, +1359,0.3,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +1360,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +1361,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +1362,0.4,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +1363,0.5,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,,,,, +1364,0.5,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,,,,, +1365,0.6,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,,,,, +1366,0.7,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,,,,, +1367,0.7,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,,,,, +1368,0.7,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,,,,, +1369,0.7,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,,,,, +1370,0.7,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,,,,, +1371,0.7,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,,,,, +1372,0.7,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,,,,, +1373,0.7,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,,,,, +1374,0.7,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,,,,, +1375,0.7,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,,,,, +1376,0.7,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,,,,, +1377,0.7,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,,,,, +1378,0.7,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,,,,, +1379,0.7,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,,,,, +1380,0.7,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,,,,, +1381,0.7,0.9,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.6,0.6,0.6,0.5,0.5,,,,, +1382,0.7,0.9,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.6,0.6,0.6,0.5,0.5,,,,, +1383,0.6,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,,,,, +1384,0.4,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +1385,0.4,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +1386,0.4,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +1387,0.3,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +1388,0.3,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +1389,0.3,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +1390,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +1391,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +1392,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +1393,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +1394,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +1395,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +1396,0.3,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +1397,0.3,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +1398,0.3,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +1399,0.4,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +1400,0.4,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +1401,0.5,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,,,,, +1402,0.5,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,,,, +1403,0.5,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,,,, +1404,0.6,0.8,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,,,,, +1405,0.7,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,,,,, +1406,0.7,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,,,,, +1407,0.8,1.0,1.0,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.5,,,,, +1408,0.9,1.1,1.1,1.0,1.0,0.9,0.9,0.9,0.8,0.8,0.7,0.7,0.6,0.6,,,,, +1409,0.9,1.1,1.1,1.0,1.0,0.9,0.9,0.9,0.8,0.8,0.7,0.7,0.6,0.6,,,,, +1410,1.0,1.2,1.2,1.1,1.1,1.0,1.0,0.9,0.9,0.8,0.8,0.7,0.7,0.7,,,,, +1411,1.0,1.3,1.2,1.2,1.2,1.1,1.1,1.0,1.0,0.9,0.9,0.8,0.8,0.7,,,,, +1412,1.0,1.3,1.2,1.2,1.2,1.1,1.1,1.0,1.0,0.9,0.9,0.8,0.8,0.7,,,,, +1413,1.0,1.3,1.3,1.2,1.2,1.1,1.1,1.0,1.0,0.9,0.9,0.8,0.8,0.7,,,,, +1414,1.1,1.3,1.3,1.2,1.2,1.1,1.1,1.0,1.0,0.9,0.9,0.8,0.8,0.7,,,,, +1415,1.1,1.3,1.3,1.2,1.2,1.1,1.1,1.0,1.0,0.9,0.9,0.8,0.8,0.7,,,,, +1416,1.1,1.4,1.3,1.3,1.2,1.2,1.1,1.0,1.0,0.9,0.9,0.8,0.8,0.7,,,,, +1417,1.1,1.4,1.3,1.3,1.2,1.2,1.1,1.1,1.0,1.0,0.9,0.8,0.8,0.7,,,,, +1418,1.1,1.4,1.3,1.3,1.2,1.2,1.1,1.1,1.0,1.0,0.9,0.8,0.8,0.7,,,,, +1419,1.1,1.3,1.3,1.2,1.2,1.1,1.1,1.0,1.0,0.9,0.9,0.8,0.8,0.7,,,,, +1420,1.0,1.3,1.2,1.2,1.1,1.1,1.0,1.0,0.9,0.9,0.8,0.8,0.7,0.7,,,,, +1421,1.0,1.3,1.2,1.2,1.1,1.1,1.0,1.0,0.9,0.9,0.8,0.8,0.7,0.7,,,,, +1422,1.0,1.2,1.2,1.1,1.1,1.1,1.0,1.0,0.9,0.9,0.8,0.8,0.7,0.7,,,,, +1423,0.9,1.2,1.1,1.1,1.0,1.0,1.0,0.9,0.9,0.8,0.8,0.7,0.7,0.6,,,,, +1424,0.9,1.2,1.1,1.1,1.0,1.0,1.0,0.9,0.9,0.8,0.8,0.7,0.7,0.6,,,,, +1425,0.9,1.1,1.1,1.1,1.0,1.0,0.9,0.9,0.8,0.8,0.7,0.7,0.7,0.6,,,,, +1426,0.9,1.1,1.1,1.0,1.0,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.6,0.6,,,,, +1427,0.9,1.1,1.1,1.0,1.0,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.6,0.6,,,,, +1428,0.9,1.1,1.0,1.0,0.9,0.9,0.9,0.8,0.8,0.7,0.7,0.7,0.6,0.6,,,,, +1429,0.8,1.0,1.0,1.0,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.6,0.6,0.6,,,,, +1430,0.8,1.0,1.0,1.0,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.6,0.6,0.6,,,,, +1431,0.7,0.9,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.6,0.6,0.6,0.5,0.5,,,,, +1432,0.6,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,,,, +1433,0.6,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,,,, +1434,0.6,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,,,,, +1435,0.5,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,,,,, +1436,0.5,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,,,,, +1437,0.4,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,,,, +1438,0.4,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +1439,0.4,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +1440,0.4,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +1441,0.4,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +1442,0.4,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +1443,0.4,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +1444,0.3,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +1445,0.3,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +1446,0.3,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +1447,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +1448,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +1449,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +1450,0.3,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +1451,0.3,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +1452,0.4,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +1453,0.5,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,,,,, +1454,0.5,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,,,,, +1455,0.5,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,,,,, +1456,0.5,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,,,, +1457,0.5,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,,,, +1458,0.4,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +1459,0.3,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +1460,0.3,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +1461,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +1462,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +1463,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +1464,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +1465,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +1466,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +1467,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +1468,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +1469,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +1470,0.3,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +1471,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +1472,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +1473,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +1474,0.2,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +1475,0.2,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +1476,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +1477,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +1478,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +1479,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +1480,0.2,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +1481,0.2,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +1482,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +1483,0.1,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1484,0.1,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1485,0.1,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1486,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1487,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1488,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1489,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1490,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1491,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1492,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1493,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1494,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1495,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1496,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1497,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1498,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1499,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1500,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,, +1501,0.2,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +1502,0.2,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +1503,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +1504,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +1505,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +1506,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +1507,0.3,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +1508,0.3,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +1509,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +1510,0.2,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +1511,0.2,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +1512,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +1513,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,, +1514,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,, +1515,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +1516,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +1517,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +1518,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,, +1519,0.1,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1520,0.1,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1521,0.1,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1522,0.1,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1523,0.1,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1524,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1525,0.2,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +1526,0.2,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +1527,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +1528,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1529,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1530,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,, +1531,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,, +1532,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,, +1533,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +1534,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +1535,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +1536,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +1537,0.4,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +1538,0.4,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +1539,0.4,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,,,, +1540,0.5,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,,,,, +1541,0.5,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,,,,, +1542,0.5,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,,,, +1543,0.6,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,,,,, +1544,0.6,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,,,,, +1545,0.6,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,,,,, +1546,0.6,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,,,,, +1547,0.6,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,,,,, +1548,0.6,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,0.4,,,,, +1549,0.6,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,,,,, +1550,0.6,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,,,,, +1551,0.5,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,,,, +1552,0.5,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,,,,, +1553,0.5,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,,,,, +1554,0.4,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +1555,0.3,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,,,, +1556,0.3,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,,,, +1557,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +1558,0.2,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +1559,0.2,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +1560,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +1561,0.1,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1562,0.1,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1563,0.1,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1564,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1565,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1566,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1567,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1568,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1569,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1570,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +1571,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +1572,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1573,0.1,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1574,0.1,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1575,0.1,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1576,0.1,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1577,0.1,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1578,0.1,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1579,0.1,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1580,0.1,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1581,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1582,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1583,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1584,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,, +1585,0.0,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +1586,0.0,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +1587,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +1588,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +1589,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +1590,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +1591,0.0,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +1592,0.0,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +1593,0.0,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +1594,0.0,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +1595,0.0,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +1596,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +1597,0.0,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +1598,0.0,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +1599,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,, +1600,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,, +1601,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,, +1602,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +1603,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1604,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1605,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1606,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +1607,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +1608,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +1609,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +1610,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +1611,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +1612,0.0,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +1613,0.0,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +1614,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +1615,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +1616,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +1617,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +1618,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +1619,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +1620,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +1621,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +1622,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +1623,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +1624,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +1625,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +1626,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1627,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1628,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1629,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1630,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1631,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1632,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,, +1633,0.0,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +1634,0.0,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +1635,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,, +1636,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1637,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1638,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1639,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1640,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1641,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +1642,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,, +1643,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,, +1644,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +1645,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1646,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1647,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1648,0.1,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1649,0.1,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1650,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,, +1651,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +1652,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +1653,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,, +1654,0.1,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1655,0.1,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1656,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1657,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1658,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1659,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1660,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1661,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1662,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1663,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1664,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1665,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +1666,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,, +1667,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,, +1668,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +1669,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1670,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1671,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1672,0.1,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1673,0.1,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1674,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1675,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1676,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1677,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1678,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1679,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1680,0.1,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1681,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1682,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1683,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +1684,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +1685,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +1686,0.2,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +1687,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +1688,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +1689,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +1690,0.3,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +1691,0.3,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +1692,0.3,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +1693,0.4,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +1694,0.4,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +1695,0.4,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +1696,0.4,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +1697,0.4,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +1698,0.4,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +1699,0.4,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +1700,0.4,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +1701,0.4,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +1702,0.4,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +1703,0.4,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +1704,0.4,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +1705,0.4,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,,,, +1706,0.4,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,,,, +1707,0.4,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +1708,0.4,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +1709,0.4,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +1710,0.4,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +1711,0.4,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,,,, +1712,0.4,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,,,, +1713,0.5,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,,,, +1714,0.6,0.8,0.8,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,,,, +1715,0.6,0.8,0.8,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,,,, +1716,0.7,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,,,,, +1717,0.7,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,,,,, +1718,0.7,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,,,,, +1719,0.7,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,,,,, +1720,0.7,0.9,0.9,0.9,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,,,,, +1721,0.7,0.9,0.9,0.9,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,,,,, +1722,0.7,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,,,,, +1723,0.7,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,,,,, +1724,0.7,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,,,,, +1725,0.7,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,,,,, +1726,0.7,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,,,,, +1727,0.7,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,,,,, +1728,0.7,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,,,,, +1729,0.7,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,,,,, +1730,0.7,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,,,,, +1731,0.7,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,,,, +1732,0.6,0.8,0.8,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,,,, +1733,0.6,0.8,0.8,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,,,, +1734,0.6,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,,,,, +1735,0.6,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,,,,, +1736,0.6,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,,,,, +1737,0.6,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,,,,, +1738,0.6,0.8,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,,,,, +1739,0.6,0.8,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,,,,, +1740,0.7,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,,,, +1741,0.7,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,,,,, +1742,0.7,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,,,,, +1743,0.8,0.9,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.5,0.5,,,,, +1744,0.8,1.0,1.0,0.9,0.9,0.9,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,,,,, +1745,0.8,1.0,1.0,0.9,0.9,0.9,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,,,,, +1746,0.8,1.0,1.0,0.9,0.9,0.9,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,,,,, +1747,0.8,1.0,1.0,0.9,0.9,0.9,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,,,,, +1748,0.8,1.0,1.0,0.9,0.9,0.9,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,,,,, +1749,0.7,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,,,,, +1750,0.6,0.8,0.8,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,,,, +1751,0.6,0.8,0.8,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,,,, +1752,0.5,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,,,, +1753,0.4,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,,,, +1754,0.4,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,,,, +1755,0.4,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +1756,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +1757,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +1758,0.4,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +1759,0.4,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +1760,0.4,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +1761,0.4,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,,,, +1762,0.5,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,,,, +1763,0.5,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,,,, +1764,0.5,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,,,, +1765,0.5,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,,,, +1766,0.5,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,,,, +1767,0.5,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,,,,, +1768,0.4,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,,,, +1769,0.4,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,,,, +1770,0.4,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,,,, +1771,0.4,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,,,, +1772,0.4,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,,,, +1773,0.4,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,,,, +1774,0.3,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +1775,0.3,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +1776,0.3,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,,,, +1777,0.2,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +1778,0.2,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +1779,0.2,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +1780,0.2,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +1781,0.2,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +1782,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +1783,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +1784,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +1785,0.2,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +1786,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +1787,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +1788,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,,,, +1789,0.3,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +1790,0.3,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +1791,0.3,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,,,, +1792,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +1793,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +1794,0.2,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +1795,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1796,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1797,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,, +1798,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +1799,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +1800,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +1801,0.2,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +1802,0.2,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +1803,0.2,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +1804,0.2,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +1805,0.2,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +1806,0.2,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +1807,0.2,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +1808,0.2,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +1809,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +1810,0.2,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +1811,0.2,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +1812,0.3,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +1813,0.3,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +1814,0.3,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +1815,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +1816,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +1817,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +1818,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +1819,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +1820,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +1821,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +1822,0.3,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +1823,0.3,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +1824,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +1825,0.3,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +1826,0.3,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +1827,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +1828,0.2,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +1829,0.2,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +1830,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +1831,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +1832,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +1833,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1834,0.1,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1835,0.1,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1836,0.1,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1837,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1838,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1839,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +1840,0.2,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +1841,0.2,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +1842,0.2,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +1843,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +1844,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +1845,0.3,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,,,, +1846,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +1847,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +1848,0.3,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +1849,0.4,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,,,, +1850,0.4,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,,,, +1851,0.4,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,,,, +1852,0.4,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +1853,0.4,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +1854,0.4,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +1855,0.5,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,,,,, +1856,0.5,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,,,,, +1857,0.5,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,,,, +1858,0.5,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,,,, +1859,0.5,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,,,, +1860,0.6,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,,,,, +1861,0.6,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,,,,, +1862,0.6,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,,,,, +1863,0.5,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,,,, +1864,0.5,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,,,,, +1865,0.5,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,,,,, +1866,0.4,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +1867,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +1868,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +1869,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +1870,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +1871,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +1872,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +1873,0.3,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +1874,0.3,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +1875,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +1876,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +1877,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +1878,0.4,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +1879,0.5,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,,,,, +1880,0.5,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,,,,, +1881,0.5,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,,,, +1882,0.6,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,,,,, +1883,0.6,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,,,,, +1884,0.7,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,,,, +1885,0.7,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,,,,, +1886,0.7,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,,,,, +1887,0.6,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,,,, +1888,0.5,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,,,,, +1889,0.5,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,,,,, +1890,0.5,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,,,, +1891,0.4,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,,,, +1892,0.4,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,,,, +1893,0.5,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,,,,, +1894,0.5,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,,,,, +1895,0.5,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,,,,, +1896,0.5,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,,,, +1897,0.5,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,,,, +1898,0.5,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,,,, +1899,0.5,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,,,, +1900,0.5,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,,,, +1901,0.5,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,,,, +1902,0.5,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,,,,, +1903,0.4,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,,,, +1904,0.4,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,,,, +1905,0.4,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,,,, +1906,0.4,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +1907,0.4,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +1908,0.4,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +1909,0.4,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,,,, +1910,0.4,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,,,, +1911,0.3,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +1912,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +1913,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +1914,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +1915,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +1916,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +1917,0.2,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +1918,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +1919,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +1920,0.1,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1921,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1922,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1923,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1924,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,, +1925,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,, +1926,0.0,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +1927,0.0,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +1928,0.0,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +1929,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +1930,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +1931,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +1932,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +1933,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,, +1934,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,, +1935,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,, +1936,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,, +1937,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,, +1938,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,, +1939,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +1940,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +1941,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1942,0.1,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1943,0.1,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1944,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +1945,0.2,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +1946,0.2,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +1947,0.2,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +1948,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +1949,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +1950,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +1951,0.3,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,,,, +1952,0.3,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,,,, +1953,0.3,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +1954,0.3,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +1955,0.3,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +1956,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +1957,0.2,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +1958,0.2,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +1959,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1960,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1961,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1962,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1963,0.0,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +1964,0.0,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +1965,0.0,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +1966,0.0,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +1967,0.0,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +1968,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +1969,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1970,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1971,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1972,0.1,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1973,0.1,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1974,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1975,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +1976,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +1977,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +1978,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1979,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1980,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +1981,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +1982,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +1983,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +1984,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +1985,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +1986,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +1987,0.3,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,,,, +1988,0.3,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,,,, +1989,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,,,, +1990,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,,,, +1991,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,,,, +1992,0.2,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +1993,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +1994,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +1995,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,, +1996,0.1,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1997,0.1,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1998,0.1,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +1999,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2000,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2001,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2002,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2003,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2004,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2005,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2006,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2007,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2008,0.1,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2009,0.1,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2010,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +2011,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +2012,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +2013,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,,,, +2014,0.3,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +2015,0.3,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +2016,0.3,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +2017,0.3,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,,,, +2018,0.3,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,,,, +2019,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +2020,0.2,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +2021,0.2,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +2022,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,, +2023,0.1,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2024,0.1,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2025,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2026,0.0,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +2027,0.0,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +2028,0.0,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +2029,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +2030,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +2031,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +2032,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2033,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2034,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +2035,0.3,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,,,, +2036,0.3,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,,,, +2037,0.3,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +2038,0.4,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +2039,0.4,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +2040,0.4,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,,,, +2041,0.5,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,,,,, +2042,0.5,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,,,,, +2043,0.4,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +2044,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +2045,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +2046,0.3,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +2047,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +2048,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +2049,0.3,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +2050,0.4,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +2051,0.4,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +2052,0.3,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +2053,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +2054,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +2055,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +2056,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +2057,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +2058,0.3,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,,,, +2059,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +2060,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +2061,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +2062,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +2063,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +2064,0.3,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,,,, +2065,0.3,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +2066,0.3,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +2067,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +2068,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +2069,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +2070,0.3,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +2071,0.3,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +2072,0.3,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +2073,0.4,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +2074,0.5,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,,,,, +2075,0.5,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,,,,, +2076,0.5,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,,,, +2077,0.5,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,,,, +2078,0.5,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,,,, +2079,0.5,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,,,, +2080,0.5,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,,,, +2081,0.5,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,,,, +2082,0.4,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +2083,0.3,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +2084,0.3,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +2085,0.3,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +2086,0.3,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +2087,0.3,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +2088,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +2089,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +2090,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +2091,0.3,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,,,, +2092,0.2,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +2093,0.2,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +2094,0.2,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +2095,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2096,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2097,0.1,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2098,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2099,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2100,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2101,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2102,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2103,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2104,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +2105,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +2106,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +2107,0.0,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +2108,0.0,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +2109,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +2110,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2111,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2112,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2113,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2114,0.2,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +2115,0.2,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +2116,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +2117,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +2118,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +2119,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +2120,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +2121,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +2122,0.3,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +2123,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +2124,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +2125,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +2126,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +2127,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +2128,0.3,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +2129,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,,,, +2130,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,,,, +2131,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +2132,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +2133,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +2134,0.2,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +2135,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +2136,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +2137,0.3,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +2138,0.3,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +2139,0.3,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +2140,0.4,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +2141,0.4,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +2142,0.4,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +2143,0.4,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +2144,0.4,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,,,, +2145,0.4,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,,,, +2146,0.4,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,,,, +2147,0.5,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,,,, +2148,0.5,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,,,, +2149,0.5,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,,,, +2150,0.5,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,,,,, +2151,0.5,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,,,,, +2152,0.5,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,,,,, +2153,0.4,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,,,, +2154,0.4,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,,,, +2155,0.4,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +2156,0.3,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +2157,0.3,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +2158,0.4,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +2159,0.4,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,,,, +2160,0.4,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,,,, +2161,0.5,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,,,,, +2162,0.5,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,,,,, +2163,0.5,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,,,,, +2164,0.5,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,,,,, +2165,0.5,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,,,,, +2166,0.5,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,,,,, +2167,0.5,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,,,,, +2168,0.5,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,,,, +2169,0.5,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,,,, +2170,0.5,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,,,, +2171,0.6,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,,,,, +2172,0.6,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,,,,, +2173,0.6,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,,,,, +2174,0.6,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,,,,, +2175,0.6,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,,,,, +2176,0.6,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,,,,, +2177,0.6,0.8,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,,,,, +2178,0.6,0.8,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,,,,, +2179,0.5,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,,,,, +2180,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +2181,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +2182,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +2183,0.3,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +2184,0.3,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +2185,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,,,, +2186,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +2187,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +2188,0.2,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +2189,0.2,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +2190,0.2,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +2191,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +2192,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +2193,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +2194,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +2195,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,, +2196,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,, +2197,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +2198,0.2,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +2199,0.2,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +2200,0.2,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +2201,0.2,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +2202,0.2,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +2203,0.2,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +2204,0.2,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +2205,0.2,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +2206,0.3,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +2207,0.4,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,,,, +2208,0.4,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,,,, +2209,0.4,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +2210,0.4,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +2211,0.4,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +2212,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +2213,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +2214,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +2215,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +2216,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +2217,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +2218,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +2219,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +2220,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +2221,0.3,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +2222,0.3,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,,,, +2223,0.3,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,,,, +2224,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +2225,0.2,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +2226,0.2,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +2227,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +2228,0.2,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +2229,0.2,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +2230,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +2231,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +2232,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +2233,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +2234,0.2,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +2235,0.2,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +2236,0.2,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +2237,0.2,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +2238,0.2,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +2239,0.2,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +2240,0.2,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +2241,0.2,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +2242,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +2243,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +2244,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +2245,0.3,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +2246,0.4,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +2247,0.4,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +2248,0.3,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +2249,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +2250,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +2251,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +2252,0.2,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +2253,0.2,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +2254,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +2255,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +2256,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +2257,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +2258,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +2259,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +2260,0.3,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,,,, +2261,0.3,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +2262,0.3,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +2263,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +2264,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +2265,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +2266,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +2267,0.3,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +2268,0.3,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +2269,0.3,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +2270,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +2271,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +2272,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +2273,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +2274,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +2275,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2276,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +2277,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +2278,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,, +2279,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +2280,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +2281,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,, +2282,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +2283,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +2284,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,, +2285,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +2286,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +2287,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,, +2288,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,, +2289,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,, +2290,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,, +2291,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +2292,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +2293,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,, +2294,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,, +2295,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,, +2296,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +2297,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2298,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2299,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2300,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +2301,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +2302,0.2,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +2303,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +2304,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +2305,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +2306,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +2307,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +2308,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +2309,0.3,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,,,, +2310,0.3,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,,,, +2311,0.3,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,,,, +2312,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,,,, +2313,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,,,, +2314,0.2,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +2315,0.2,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +2316,0.2,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +2317,0.2,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +2318,0.2,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +2319,0.2,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +2320,0.2,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +2321,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,, +2322,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,, +2323,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,, +2324,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,, +2325,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,, +2326,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +2327,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +2328,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +2329,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2330,0.1,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2331,0.1,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2332,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2333,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2334,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2335,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2336,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +2337,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +2338,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +2339,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +2340,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +2341,0.0,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +2342,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +2343,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +2344,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2345,0.1,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2346,0.1,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2347,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +2348,0.2,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +2349,0.2,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +2350,0.2,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +2351,0.2,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +2352,0.2,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +2353,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +2354,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +2355,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +2356,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,, +2357,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2358,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2359,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2360,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2361,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2362,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +2363,0.2,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +2364,0.2,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +2365,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +2366,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +2367,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +2368,0.3,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +2369,0.3,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +2370,0.3,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +2371,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +2372,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +2373,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +2374,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +2375,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +2376,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +2377,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +2378,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +2379,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +2380,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,, +2381,0.1,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2382,0.1,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2383,0.1,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2384,0.1,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2385,0.1,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2386,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,, +2387,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +2388,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +2389,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +2390,0.2,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +2391,0.2,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +2392,0.2,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +2393,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +2394,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +2395,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +2396,0.2,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +2397,0.2,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +2398,0.2,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +2399,0.2,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +2400,0.2,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +2401,0.2,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +2402,0.2,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +2403,0.2,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +2404,0.2,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +2405,0.2,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +2406,0.2,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +2407,0.2,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +2408,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +2409,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +2410,0.3,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +2411,0.3,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +2412,0.3,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +2413,0.4,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +2414,0.4,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +2415,0.4,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +2416,0.4,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,,,, +2417,0.4,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +2418,0.4,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +2419,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +2420,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +2421,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +2422,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +2423,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +2424,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +2425,0.4,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +2426,0.4,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,,,, +2427,0.4,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,,,, +2428,0.3,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +2429,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +2430,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +2431,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +2432,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +2433,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +2434,0.3,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +2435,0.3,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +2436,0.3,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +2437,0.4,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,,,, +2438,0.4,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +2439,0.4,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +2440,0.4,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,,,, +2441,0.4,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +2442,0.4,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +2443,0.3,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +2444,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +2445,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +2446,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +2447,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +2448,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +2449,0.3,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,,,, +2450,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +2451,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +2452,0.2,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +2453,0.2,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +2454,0.2,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +2455,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,, +2456,0.1,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2457,0.1,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2458,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2459,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2460,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2461,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2462,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2463,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2464,0.1,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2465,0.1,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2466,0.1,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2467,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2468,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +2469,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +2470,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +2471,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +2472,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +2473,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2474,0.1,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2475,0.1,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2476,0.1,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2477,0.1,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2478,0.1,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2479,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2480,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2481,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2482,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +2483,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +2484,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +2485,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +2486,0.3,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +2487,0.3,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +2488,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +2489,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +2490,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +2491,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +2492,0.3,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,,,, +2493,0.3,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,,,, +2494,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +2495,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +2496,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +2497,0.2,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +2498,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +2499,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +2500,0.1,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2501,0.1,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2502,0.1,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2503,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2504,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2505,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2506,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2507,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +2508,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +2509,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2510,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2511,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2512,0.1,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2513,0.1,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2514,0.1,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2515,0.1,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2516,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2517,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2518,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2519,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,, +2520,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,, +2521,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,, +2522,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +2523,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +2524,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +2525,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +2526,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +2527,0.2,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +2528,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +2529,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +2530,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,,,, +2531,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +2532,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +2533,0.3,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +2534,0.3,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +2535,0.3,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +2536,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +2537,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +2538,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +2539,0.3,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,,,, +2540,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +2541,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +2542,0.2,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +2543,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +2544,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +2545,0.1,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2546,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2547,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2548,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2549,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2550,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2551,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2552,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2553,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2554,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2555,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2556,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2557,0.1,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2558,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2559,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2560,0.1,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2561,0.1,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2562,0.1,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2563,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2564,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2565,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2566,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2567,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +2568,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +2569,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2570,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2571,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2572,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,, +2573,0.0,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +2574,0.0,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +2575,0.0,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +2576,0.0,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +2577,0.0,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +2578,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +2579,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +2580,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +2581,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +2582,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +2583,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +2584,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +2585,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +2586,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +2587,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +2588,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2589,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2590,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2591,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2592,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2593,0.1,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2594,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2595,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2596,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2597,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2598,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2599,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2600,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2601,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2602,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2603,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,, +2604,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,, +2605,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,, +2606,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,, +2607,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,, +2608,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2609,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2610,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2611,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2612,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2613,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2614,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2615,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2616,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2617,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +2618,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +2619,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +2620,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +2621,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +2622,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +2623,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +2624,0.0,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +2625,0.0,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +2626,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,, +2627,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2628,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2629,0.2,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +2630,0.4,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,,,, +2631,0.4,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,,,, +2632,0.5,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,,,,, +2633,0.6,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,,,,, +2634,0.6,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,,,,, +2635,0.5,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,,,, +2636,0.5,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,,,,, +2637,0.5,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,,,,, +2638,0.5,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,,,,, +2639,0.4,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,,,, +2640,0.4,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,,,, +2641,0.4,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,,,, +2642,0.4,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,,,, +2643,0.4,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,,,, +2644,0.4,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,,,, +2645,0.4,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +2646,0.4,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +2647,0.4,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,,,, +2648,0.5,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,,,,, +2649,0.5,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,,,,, +2650,0.5,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,,,, +2651,0.6,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,0.4,,,,, +2652,0.6,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,0.4,,,,, +2653,0.6,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,,,,, +2654,0.6,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,,,, +2655,0.6,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,,,, +2656,0.6,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,,,, +2657,0.6,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,,,, +2658,0.6,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,,,, +2659,0.5,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,,,, +2660,0.4,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +2661,0.4,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +2662,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +2663,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +2664,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +2665,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +2666,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +2667,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +2668,0.2,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +2669,0.2,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +2670,0.2,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +2671,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +2672,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2673,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2674,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2675,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,, +2676,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,, +2677,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2678,0.1,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2679,0.1,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2680,0.1,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2681,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2682,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2683,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2684,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2685,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2686,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2687,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2688,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2689,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +2690,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,, +2691,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,, +2692,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +2693,0.0,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +2694,0.0,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +2695,0.0,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +2696,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +2697,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +2698,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +2699,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +2700,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +2701,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +2702,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +2703,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +2704,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +2705,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +2706,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +2707,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +2708,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,, +2709,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,, +2710,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,, +2711,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,, +2712,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,, +2713,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +2714,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +2715,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +2716,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +2717,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +2718,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +2719,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +2720,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +2721,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +2722,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +2723,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +2724,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +2725,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +2726,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +2727,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +2728,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +2729,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +2730,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +2731,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +2732,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2733,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2734,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2735,0.2,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +2736,0.2,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +2737,0.2,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +2738,0.2,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +2739,0.2,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +2740,0.2,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +2741,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +2742,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +2743,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +2744,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +2745,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +2746,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2747,0.1,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2748,0.1,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2749,0.1,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2750,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2751,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2752,0.1,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2753,0.1,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2754,0.1,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2755,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2756,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +2757,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +2758,0.2,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +2759,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +2760,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +2761,0.2,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +2762,0.2,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +2763,0.2,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +2764,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +2765,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2766,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2767,0.1,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2768,0.1,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2769,0.1,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2770,0.1,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2771,0.1,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2772,0.1,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2773,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +2774,0.2,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +2775,0.2,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +2776,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +2777,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +2778,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +2779,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +2780,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +2781,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +2782,0.2,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +2783,0.2,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +2784,0.2,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +2785,0.2,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +2786,0.2,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +2787,0.2,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +2788,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +2789,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +2790,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +2791,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +2792,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,, +2793,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,, +2794,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +2795,0.2,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +2796,0.2,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +2797,0.2,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +2798,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +2799,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +2800,0.2,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +2801,0.2,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +2802,0.2,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +2803,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2804,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2805,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2806,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2807,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +2808,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +2809,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,, +2810,0.0,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +2811,0.0,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +2812,0.0,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +2813,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +2814,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +2815,0.0,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +2816,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +2817,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +2818,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +2819,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +2820,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +2821,0.0,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +2822,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,, +2823,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,, +2824,0.0,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +2825,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +2826,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +2827,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +2828,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +2829,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +2830,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +2831,0.1,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2832,0.1,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2833,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,, +2834,0.2,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +2835,0.2,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +2836,0.2,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +2837,0.2,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +2838,0.2,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +2839,0.2,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +2840,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +2841,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +2842,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2843,0.1,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2844,0.1,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2845,0.1,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2846,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,, +2847,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,, +2848,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,, +2849,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,, +2850,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,, +2851,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2852,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,, +2853,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,, +2854,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,, +2855,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,, +2856,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,, +2857,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2858,0.1,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2859,0.1,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2860,0.2,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +2861,0.3,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +2862,0.3,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +2863,0.4,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +2864,0.5,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,,,,, +2865,0.5,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,,,,, +2866,0.5,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,,,, +2867,0.6,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,,,,, +2868,0.6,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,,,,, +2869,0.6,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,,,,, +2870,0.6,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,,,,, +2871,0.6,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,,,,, +2872,0.5,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,,,, +2873,0.5,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,,,,, +2874,0.5,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,,,,, +2875,0.4,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +2876,0.3,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +2877,0.3,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +2878,0.2,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +2879,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,, +2880,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,, +2881,0.1,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2882,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2883,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2884,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2885,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2886,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2887,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2888,0.1,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2889,0.1,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2890,0.2,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +2891,0.3,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +2892,0.3,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +2893,0.3,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +2894,0.3,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +2895,0.3,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +2896,0.3,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,,,, +2897,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +2898,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +2899,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +2900,0.1,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2901,0.1,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2902,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2903,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +2904,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +2905,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,, +2906,0.0,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +2907,0.0,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +2908,0.0,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +2909,0.0,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +2910,0.0,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +2911,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +2912,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +2913,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +2914,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +2915,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +2916,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +2917,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +2918,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +2919,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +2920,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +2921,0.0,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +2922,0.0,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +2923,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +2924,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2925,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2926,0.1,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2927,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,, +2928,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,, +2929,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2930,0.1,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2931,0.1,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2932,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2933,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2934,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2935,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2936,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2937,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2938,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2939,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2940,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2941,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2942,0.1,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2943,0.1,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2944,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2945,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2946,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2947,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2948,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2949,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2950,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2951,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +2952,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +2953,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,, +2954,0.0,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +2955,0.0,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +2956,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +2957,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +2958,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +2959,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,, +2960,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +2961,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +2962,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2963,0.1,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2964,0.1,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2965,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +2966,0.2,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +2967,0.2,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +2968,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,,,, +2969,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +2970,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +2971,0.3,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +2972,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +2973,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +2974,0.2,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +2975,0.2,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +2976,0.2,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +2977,0.2,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +2978,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +2979,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +2980,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2981,0.1,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2982,0.1,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2983,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2984,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,, +2985,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,, +2986,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +2987,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2988,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2989,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2990,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2991,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2992,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +2993,0.2,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +2994,0.2,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +2995,0.2,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +2996,0.2,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +2997,0.2,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +2998,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +2999,0.4,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +3000,0.4,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +3001,0.4,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,,,, +3002,0.4,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +3003,0.4,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +3004,0.4,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +3005,0.4,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,,,, +3006,0.4,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,,,, +3007,0.4,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +3008,0.4,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,,,, +3009,0.4,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,,,, +3010,0.5,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,,,,, +3011,0.5,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,,,, +3012,0.5,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,,,, +3013,0.5,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.3,,,,, +3014,0.5,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,,,, +3015,0.5,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,,,, +3016,0.5,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,,,, +3017,0.5,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,,,, +3018,0.5,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,,,, +3019,0.5,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,,,,, +3020,0.5,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,,,,, +3021,0.5,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,,,,, +3022,0.4,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,,,, +3023,0.4,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +3024,0.4,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +3025,0.4,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +3026,0.3,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +3027,0.3,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +3028,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +3029,0.2,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +3030,0.2,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +3031,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +3032,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3033,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3034,0.1,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3035,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3036,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3037,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3038,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3039,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3040,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +3041,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,, +3042,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,, +3043,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3044,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3045,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3046,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3047,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3048,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3049,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3050,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3051,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3052,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3053,0.0,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3054,0.0,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3055,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3056,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3057,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3058,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3059,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3060,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3061,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3062,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3063,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3064,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3065,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3066,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3067,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3068,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3069,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3070,0.0,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3071,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3072,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3073,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,, +3074,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3075,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +3076,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,, +3077,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3078,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3079,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3080,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3081,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3082,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3083,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3084,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3085,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3086,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3087,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3088,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3089,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3090,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3091,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3092,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3093,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3094,0.0,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3095,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3096,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3097,0.0,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3098,0.0,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3099,0.0,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3100,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3101,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,, +3102,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,, +3103,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,, +3104,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3105,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3106,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3107,0.0,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3108,0.0,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3109,0.0,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3110,0.0,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3111,0.0,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3112,0.0,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3113,0.0,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3114,0.0,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3115,0.0,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3116,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3117,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3118,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,, +3119,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +3120,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +3121,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,, +3122,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3123,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3124,0.0,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3125,0.0,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3126,0.0,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3127,0.0,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3128,0.0,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3129,0.0,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3130,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3131,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,, +3132,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,, +3133,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,, +3134,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +3135,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +3136,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3137,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3138,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3139,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +3140,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +3141,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +3142,0.3,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +3143,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +3144,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +3145,0.4,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +3146,0.4,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +3147,0.4,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +3148,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +3149,0.2,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +3150,0.2,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +3151,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +3152,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,,,, +3153,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,,,, +3154,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +3155,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +3156,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +3157,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,,,, +3158,0.3,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,,,, +3159,0.3,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,,,, +3160,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +3161,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +3162,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +3163,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3164,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3165,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3166,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3167,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3168,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3169,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +3170,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +3171,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +3172,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,, +3173,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,, +3174,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,, +3175,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3176,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3177,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3178,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,, +3179,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,, +3180,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,, +3181,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +3182,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +3183,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +3184,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +3185,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +3186,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +3187,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3188,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3189,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3190,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +3191,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,, +3192,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,, +3193,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,, +3194,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,, +3195,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,, +3196,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,, +3197,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,, +3198,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,, +3199,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,, +3200,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,, +3201,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,, +3202,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +3203,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +3204,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +3205,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3206,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3207,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3208,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3209,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3210,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3211,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3212,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3213,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3214,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3215,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3216,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3217,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3218,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3219,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3220,0.1,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3221,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +3222,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +3223,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +3224,0.2,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +3225,0.2,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +3226,0.2,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +3227,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,,,, +3228,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,,,, +3229,0.3,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +3230,0.4,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +3231,0.4,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +3232,0.4,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +3233,0.5,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,,,, +3234,0.5,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,,,, +3235,0.4,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,,,, +3236,0.4,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +3237,0.4,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +3238,0.4,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +3239,0.4,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +3240,0.4,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +3241,0.4,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,,,, +3242,0.5,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,,,,, +3243,0.5,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,,,,, +3244,0.5,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,,,,, +3245,0.5,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,,,, +3246,0.5,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,,,, +3247,0.5,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,,,, +3248,0.5,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,,,, +3249,0.5,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,,,, +3250,0.6,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,,,,, +3251,0.7,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,,,, +3252,0.7,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,,,, +3253,0.6,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,,,, +3254,0.6,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,,,, +3255,0.6,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,,,, +3256,0.6,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,0.4,,,,, +3257,0.5,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,,,, +3258,0.5,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,,,, +3259,0.4,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +3260,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +3261,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +3262,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +3263,0.2,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +3264,0.2,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +3265,0.2,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +3266,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +3267,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +3268,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,, +3269,0.1,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3270,0.1,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3271,0.1,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3272,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3273,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3274,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +3275,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +3276,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +3277,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +3278,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +3279,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +3280,0.2,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +3281,0.2,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +3282,0.2,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +3283,0.2,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +3284,0.2,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +3285,0.2,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +3286,0.2,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +3287,0.2,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +3288,0.2,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +3289,0.2,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +3290,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +3291,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +3292,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +3293,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +3294,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +3295,0.3,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +3296,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +3297,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +3298,0.4,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,,,, +3299,0.4,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +3300,0.4,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +3301,0.4,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +3302,0.4,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,,,, +3303,0.4,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,,,, +3304,0.4,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +3305,0.4,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +3306,0.4,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +3307,0.4,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,,,, +3308,0.3,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +3309,0.3,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +3310,0.3,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +3311,0.3,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +3312,0.3,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +3313,0.3,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +3314,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +3315,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +3316,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +3317,0.4,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,,,, +3318,0.4,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,,,, +3319,0.4,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +3320,0.4,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,,,, +3321,0.4,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,,,, +3322,0.4,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,,,, +3323,0.5,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,,,,, +3324,0.5,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,,,,, +3325,0.5,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,,,,, +3326,0.5,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,,,, +3327,0.5,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,,,, +3328,0.5,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,,,,, +3329,0.4,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,,,, +3330,0.4,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,,,, +3331,0.4,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +3332,0.4,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,,,, +3333,0.4,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,,,, +3334,0.3,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +3335,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +3336,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +3337,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,,,, +3338,0.2,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +3339,0.2,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +3340,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +3341,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3342,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3343,0.1,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3344,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3345,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3346,0.1,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3347,0.1,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3348,0.1,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3349,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3350,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +3351,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +3352,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +3353,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3354,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3355,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3356,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3357,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3358,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,, +3359,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +3360,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +3361,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3362,0.1,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3363,0.1,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3364,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3365,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3366,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3367,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3368,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +3369,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +3370,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +3371,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +3372,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +3373,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3374,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3375,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3376,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3377,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3378,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3379,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3380,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3381,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3382,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3383,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3384,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3385,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3386,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3387,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3388,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3389,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3390,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3391,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,, +3392,0.0,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3393,0.0,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3394,0.0,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3395,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3396,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3397,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3398,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3399,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3400,0.1,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3401,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3402,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3403,0.1,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3404,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3405,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3406,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3407,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3408,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3409,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3410,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3411,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3412,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3413,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3414,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3415,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3416,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3417,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3418,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3419,0.1,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3420,0.1,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3421,0.2,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +3422,0.3,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +3423,0.3,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +3424,0.3,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +3425,0.3,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +3426,0.3,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +3427,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,,,, +3428,0.2,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +3429,0.2,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +3430,0.2,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +3431,0.2,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +3432,0.2,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +3433,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +3434,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3435,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3436,0.1,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3437,0.1,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3438,0.1,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3439,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3440,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3441,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3442,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +3443,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +3444,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +3445,0.4,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,,,, +3446,0.5,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,,,, +3447,0.5,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,,,, +3448,0.5,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,,,, +3449,0.5,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,,,, +3450,0.5,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,,,, +3451,0.4,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +3452,0.3,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +3453,0.3,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +3454,0.3,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +3455,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +3456,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +3457,0.2,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +3458,0.2,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +3459,0.2,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +3460,0.2,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +3461,0.2,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +3462,0.2,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +3463,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +3464,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +3465,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +3466,0.3,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +3467,0.4,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +3468,0.4,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +3469,0.4,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,,,, +3470,0.5,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,,,, +3471,0.5,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,,,, +3472,0.5,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,,,,, +3473,0.4,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +3474,0.4,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +3475,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +3476,0.2,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +3477,0.2,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +3478,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +3479,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3480,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3481,0.1,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3482,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3483,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3484,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3485,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3486,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3487,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +3488,0.0,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3489,0.0,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3490,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3491,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3492,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3493,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3494,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3495,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3496,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3497,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3498,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3500,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3501,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3502,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3503,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3504,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3505,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3506,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3507,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3508,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3509,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +3510,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +3511,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,, +3512,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3513,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3514,0.0,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3515,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3516,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3517,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3518,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3519,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3520,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3521,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3522,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3523,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3524,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3525,0.0,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3526,0.0,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3527,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3528,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3529,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3530,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3531,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3532,0.0,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3533,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3534,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3535,0.0,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3536,0.0,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3537,0.0,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3538,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,, +3539,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +3540,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +3541,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3542,0.1,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3543,0.1,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3544,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +3545,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +3546,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +3547,0.2,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +3548,0.2,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +3549,0.2,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +3550,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +3551,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3552,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3553,0.1,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3554,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3555,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3556,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3557,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,, +3558,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,, +3559,0.0,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3560,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3561,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3562,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3563,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3564,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3565,0.0,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3566,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,, +3567,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,, +3568,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3569,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3570,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3571,0.0,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3572,0.0,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3573,0.0,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3574,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3575,0.2,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +3576,0.2,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +3577,0.2,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +3578,0.3,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,,,, +3579,0.3,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,,,, +3580,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +3581,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +3582,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +3583,0.2,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +3584,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +3585,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +3586,0.2,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +3587,0.2,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +3588,0.2,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +3589,0.2,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +3590,0.2,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +3591,0.2,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +3592,0.2,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +3593,0.2,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +3594,0.2,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +3595,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +3596,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +3597,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +3598,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +3599,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +3600,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +3601,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +3602,0.3,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +3603,0.3,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +3604,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +3605,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,,,, +3606,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,,,, +3607,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +3608,0.3,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +3609,0.3,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +3610,0.3,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +3611,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +3612,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +3613,0.3,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +3614,0.4,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,,,, +3615,0.4,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,,,, +3616,0.4,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,,,, +3617,0.4,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,,,, +3618,0.4,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,,,, +3619,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +3620,0.3,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +3621,0.3,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +3622,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +3623,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +3624,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +3625,0.3,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +3626,0.3,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,,,, +3627,0.3,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,,,, +3628,0.3,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +3629,0.3,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +3630,0.3,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +3631,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +3632,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +3633,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +3634,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +3635,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +3636,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +3637,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,,,, +3638,0.3,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,,,, +3639,0.3,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,,,, +3640,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +3641,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +3642,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +3643,0.2,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +3644,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3645,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3646,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3647,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3648,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3649,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3650,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3651,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3652,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,, +3653,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +3654,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +3655,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +3656,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +3657,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +3658,0.2,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +3659,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +3660,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +3661,0.3,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +3662,0.3,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +3663,0.3,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +3664,0.4,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,,,, +3665,0.4,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +3666,0.4,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +3667,0.4,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +3668,0.4,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +3669,0.4,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +3670,0.3,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +3671,0.3,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +3672,0.3,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +3673,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +3674,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +3675,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +3676,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +3677,0.3,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +3678,0.3,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +3679,0.3,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +3680,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +3681,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +3682,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +3683,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +3684,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +3685,0.3,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +3686,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +3687,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +3688,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +3689,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +3690,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +3691,0.3,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,,,, +3692,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +3693,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +3694,0.2,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +3695,0.2,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +3696,0.2,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +3697,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +3698,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3699,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3700,0.1,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3701,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3702,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3703,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3704,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,, +3705,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,, +3706,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3707,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3708,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3709,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,, +3710,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,, +3711,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,, +3712,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,, +3713,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3714,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3715,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3716,0.0,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3717,0.0,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3718,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3719,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3720,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3721,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3722,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3723,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3724,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3725,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3726,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3727,0.0,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3728,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3729,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,, +3730,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +3731,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3732,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +3733,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,, +3734,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3735,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,, +3736,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3737,0.0,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3738,0.0,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3739,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3740,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3741,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3742,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3743,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3744,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3745,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3746,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3747,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3748,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3749,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3750,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3751,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3752,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3753,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3754,0.0,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3755,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3756,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,, +3757,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,, +3758,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3759,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3760,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3761,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3762,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3763,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3764,0.0,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3765,0.0,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3766,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +3767,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3768,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3769,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3770,0.2,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +3771,0.2,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +3772,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +3773,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +3774,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +3775,0.4,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +3776,0.4,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +3777,0.4,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +3778,0.5,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,,,,, +3779,0.5,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,,,, +3780,0.5,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,,,, +3781,0.6,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,,,,, +3782,0.6,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,,,,, +3783,0.6,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,,,,, +3784,0.5,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,,,, +3785,0.4,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,,,, +3786,0.4,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,,,, +3787,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +3788,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +3789,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +3790,0.1,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3791,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3792,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3793,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,, +3794,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3795,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3796,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3797,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3798,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3799,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3800,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3801,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3802,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,, +3803,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +3804,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +3805,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +3806,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,, +3807,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,, +3808,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,, +3809,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,, +3810,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,, +3811,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,, +3812,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,, +3813,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,, +3814,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3815,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3816,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3817,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3818,0.1,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3819,0.1,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3820,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3821,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3822,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3823,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +3824,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3825,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3826,0.0,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3827,0.0,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3828,0.0,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3829,0.0,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3830,0.0,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3831,0.0,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3832,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3833,0.0,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3834,0.0,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3835,0.0,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3836,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3837,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3838,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3839,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +3840,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +3841,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3842,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3843,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3844,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3845,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,, +3846,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,, +3847,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,, +3848,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +3849,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +3850,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +3851,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,, +3852,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,, +3853,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,, +3854,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3855,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3856,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3857,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3858,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3859,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3860,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3861,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3862,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3863,0.0,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3864,0.0,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3865,0.0,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3866,0.0,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3867,0.0,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3868,0.0,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3869,0.0,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3870,0.0,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3871,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3872,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,, +3873,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,, +3874,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3875,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,, +3876,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,, +3877,0.3,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,,,, +3878,0.4,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +3879,0.4,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +3880,0.6,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,,,,, +3881,0.7,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,,,,, +3882,0.7,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,,,,, +3883,0.7,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,,,, +3884,0.6,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,,,,, +3885,0.6,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,,,,, +3886,0.5,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,,,, +3887,0.4,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +3888,0.4,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +3889,0.3,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +3890,0.2,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +3891,0.2,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +3892,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3893,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3894,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3895,0.1,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3896,0.1,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3897,0.1,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3898,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +3899,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +3900,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +3901,0.3,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +3902,0.4,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +3903,0.4,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +3904,0.4,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,,,, +3905,0.3,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +3906,0.3,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +3907,0.3,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +3908,0.3,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +3909,0.3,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +3910,0.3,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +3911,0.3,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +3912,0.3,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +3913,0.3,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +3914,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +3915,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +3916,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,,,, +3917,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +3918,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +3919,0.2,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +3920,0.2,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +3921,0.2,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +3922,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +3923,0.1,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3924,0.1,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3925,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3926,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,, +3927,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,, +3928,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3929,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3930,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3931,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3932,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3933,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3934,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3935,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,, +3936,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,, +3937,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,, +3938,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,, +3939,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,, +3940,0.0,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3941,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3942,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3943,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3944,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3945,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3946,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3947,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3948,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3949,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3950,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3951,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3952,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3953,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3954,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3955,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +3956,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +3957,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +3958,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3959,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3960,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3961,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3962,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3963,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3964,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3965,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3966,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3967,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3968,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3969,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3970,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3971,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3972,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3973,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3974,0.1,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3975,0.1,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3976,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3977,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +3978,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +3979,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +3980,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +3981,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +3982,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +3983,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,, +3984,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,, +3985,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3986,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3987,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3988,0.1,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3989,0.1,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3990,0.1,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3991,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3992,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3993,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3994,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3995,0.1,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3996,0.1,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +3997,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,, +3998,0.2,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +3999,0.2,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +4000,0.2,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +4001,0.2,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +4002,0.2,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +4003,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +4004,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +4005,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +4006,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +4007,0.2,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +4008,0.2,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +4009,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +4010,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4011,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4012,0.1,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4013,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4014,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4015,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4016,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4017,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4018,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4019,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4020,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4021,0.1,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4022,0.1,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4023,0.1,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4024,0.1,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4025,0.1,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4026,0.1,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4027,0.1,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4028,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4029,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4030,0.1,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4031,0.1,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4032,0.1,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4033,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4034,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4035,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4036,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4037,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4038,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4039,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4040,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4041,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4042,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4043,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +4044,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +4045,0.2,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +4046,0.3,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,,,, +4047,0.3,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,,,, +4048,0.4,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +4049,0.4,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,,,, +4050,0.4,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,,,, +4051,0.5,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,,,,, +4052,0.5,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,,,, +4053,0.5,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,,,, +4054,0.5,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,,,,, +4055,0.4,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +4056,0.4,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +4057,0.4,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,,,, +4058,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +4059,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +4060,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +4061,0.3,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,,,, +4062,0.3,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,,,, +4063,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +4064,0.4,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +4065,0.4,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +4066,0.4,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +4067,0.4,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +4068,0.4,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +4069,0.4,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +4070,0.4,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +4071,0.4,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +4072,0.4,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,,,, +4073,0.3,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +4074,0.3,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +4075,0.3,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +4076,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +4077,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +4078,0.2,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +4079,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +4080,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +4081,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4082,0.1,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4083,0.1,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4084,0.1,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4085,0.1,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4086,0.1,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4087,0.1,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4088,0.1,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4089,0.1,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4090,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4091,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4092,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4093,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4094,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4095,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4096,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4097,0.1,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4098,0.1,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4099,0.1,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4100,0.1,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4101,0.1,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4102,0.1,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4103,0.1,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4104,0.1,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4105,0.1,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4106,0.1,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4107,0.1,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4108,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4109,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4110,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4111,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4112,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,, +4113,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,, +4114,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4115,0.0,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4116,0.0,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4117,0.0,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4118,0.0,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4119,0.0,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4120,0.0,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4121,0.0,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4122,0.0,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4123,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,, +4124,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,, +4125,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,, +4126,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +4127,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4128,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4129,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +4130,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +4131,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +4132,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,, +4133,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,, +4134,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,, +4135,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4136,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4137,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4138,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4139,0.0,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4140,0.0,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4141,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4142,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,, +4143,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,, +4144,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4145,0.0,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4146,0.0,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4147,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4148,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4149,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4150,0.0,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4151,0.0,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4152,0.0,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4153,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4154,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4155,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4156,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4157,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4158,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4159,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,, +4160,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4161,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +4162,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4163,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4164,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4165,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4166,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4167,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4168,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4169,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4170,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4171,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4172,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4173,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4174,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4175,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4176,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4177,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4178,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4179,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4180,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,, +4181,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4182,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4183,0.0,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4184,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4185,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4186,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4188,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4189,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4190,0.0,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4191,0.0,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4192,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,, +4193,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +4194,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +4195,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +4196,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,, +4197,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,, +4198,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4199,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4200,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4201,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4202,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4203,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4204,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4205,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4206,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4207,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4208,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4209,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4210,0.0,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4211,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,, +4212,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,, +4213,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4214,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4215,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4216,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4217,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4218,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4219,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4220,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4221,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4222,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4223,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4224,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4225,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4226,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4227,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4228,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +4229,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,, +4230,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,, +4231,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4232,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4233,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4234,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4235,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4236,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4237,0.0,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4238,0.0,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4239,0.0,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4240,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4241,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4242,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4243,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,, +4244,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,, +4245,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,, +4246,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +4247,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4248,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4249,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4250,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +4251,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +4252,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,, +4253,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,, +4254,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,, +4255,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4256,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4257,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4258,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4259,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4260,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4261,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4262,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4263,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4264,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4265,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4266,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4267,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4268,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,, +4269,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,, +4270,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4271,0.1,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4272,0.1,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4273,0.1,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4274,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4275,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4276,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4277,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4278,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4279,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,, +4280,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4281,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4282,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4283,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4284,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4285,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4286,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4287,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4288,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4289,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4290,0.0,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4291,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4292,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4293,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4294,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4295,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4296,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4297,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +4298,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,, +4299,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,, +4300,0.0,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4301,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4302,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4303,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4304,0.0,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4305,0.0,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4306,0.0,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4307,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4308,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,, +4309,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4310,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4311,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4312,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4313,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,, +4314,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,, +4315,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,, +4316,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,, +4317,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,, +4318,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,, +4319,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +4320,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +4321,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +4322,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4323,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4324,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4325,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4326,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4327,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +4328,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4329,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4330,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,, +4331,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,, +4332,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,, +4333,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +4334,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +4335,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +4336,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,, +4337,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,, +4338,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,, +4339,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4340,0.0,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4341,0.0,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4342,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4343,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4344,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4345,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4346,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4347,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4348,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4349,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4350,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4351,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4352,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4353,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4354,0.0,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4355,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4356,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4357,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4358,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4359,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4360,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4361,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4362,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4363,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4364,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4365,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4366,0.0,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4367,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4368,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4369,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4370,0.1,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4371,0.1,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4372,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4373,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4374,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4375,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4376,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4377,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4378,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,, +4379,0.0,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4380,0.0,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4381,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4382,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4383,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4385,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4386,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4387,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4388,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4389,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4390,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4391,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4392,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4393,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +4394,0.2,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +4395,0.2,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +4396,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +4397,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4398,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4399,0.1,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4400,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4401,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4402,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4403,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,, +4404,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,, +4405,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4406,0.0,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4407,0.0,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4408,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4409,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4410,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4411,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4412,0.1,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4413,0.1,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4414,0.1,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4415,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4416,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4417,0.1,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4418,0.1,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4419,0.1,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4420,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4421,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4422,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4423,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4424,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +4425,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +4426,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,, +4427,0.0,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4428,0.0,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4429,0.0,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4430,0.0,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4431,0.0,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4432,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,, +4433,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,, +4434,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,, +4435,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,, +4436,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4437,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4438,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,, +4439,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,, +4440,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,, +4441,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,, +4442,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4443,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4444,0.0,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4445,0.0,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4446,0.0,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4447,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4448,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4449,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4450,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4451,0.0,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4452,0.0,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4453,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,, +4454,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4455,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4456,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4457,0.1,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4458,0.1,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4459,0.1,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4460,0.1,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4461,0.1,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4462,0.1,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4463,0.1,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4464,0.1,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4465,0.1,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4466,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4467,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4468,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,, +4469,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +4470,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +4471,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +4472,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +4473,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +4474,0.2,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +4475,0.2,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +4476,0.2,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +4477,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +4478,0.3,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +4479,0.3,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +4480,0.3,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,,,, +4481,0.3,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,,,, +4482,0.3,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,,,, +4483,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +4484,0.2,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +4485,0.2,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +4486,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +4487,0.1,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4488,0.1,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4489,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4490,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4491,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4492,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,, +4493,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4494,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4495,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4496,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4497,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4498,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4499,0.0,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4500,0.0,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4501,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4502,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4503,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4504,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4505,0.0,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4506,0.0,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4507,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4508,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4509,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,, +4510,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4511,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4512,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4513,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,, +4514,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4515,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4516,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4517,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4518,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4519,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +4520,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,, +4521,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,, +4522,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4523,0.0,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4524,0.0,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4525,0.0,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4526,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4527,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4528,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4529,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4530,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4531,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4532,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4533,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4534,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4535,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4536,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4537,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4538,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4539,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4540,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4541,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4542,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4543,0.0,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4544,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4545,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4546,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4547,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4548,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4549,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4550,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4551,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4552,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4553,0.0,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4554,0.0,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4555,0.0,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4556,0.0,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4557,0.0,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4558,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4559,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4560,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4561,0.1,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4562,0.1,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4563,0.1,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4564,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4565,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4566,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4567,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,, +4568,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4569,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4570,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4571,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4572,0.0,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4573,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4574,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4575,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,, +4576,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,, +4577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4578,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +4579,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4580,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4581,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4582,0.0,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4583,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4584,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4585,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4586,0.1,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4587,0.1,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4588,0.1,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4589,0.1,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4590,0.1,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4591,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4592,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4593,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4594,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +4595,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,, +4596,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,, +4597,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,, +4598,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,, +4599,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,, +4600,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4601,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4602,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4603,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4604,0.0,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4605,0.0,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4606,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4607,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4608,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4609,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4610,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4611,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4612,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4613,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4614,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4615,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4616,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4617,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4618,0.0,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4619,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,, +4620,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,, +4621,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4622,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4623,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4624,0.1,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4625,0.1,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4626,0.1,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4627,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4628,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4629,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4630,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4631,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4632,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4633,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4634,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4635,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4636,0.1,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4637,0.1,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4638,0.1,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4639,0.1,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4640,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4641,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4642,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4643,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4644,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4645,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4646,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4647,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4648,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,, +4649,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4650,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4651,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4652,0.0,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4653,0.0,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4654,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4655,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4656,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4657,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4658,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4659,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4660,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4661,0.1,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4662,0.1,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4663,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4664,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4665,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4666,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4667,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4668,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4669,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4670,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4671,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4672,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4673,0.1,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4674,0.1,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4675,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +4676,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +4677,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +4678,0.4,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +4679,0.5,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,,,, +4680,0.5,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,,,, +4681,0.5,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,,,,, +4682,0.4,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +4683,0.4,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +4684,0.4,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,,,, +4685,0.3,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +4686,0.3,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +4687,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +4688,0.4,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,,,, +4689,0.4,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,,,, +4690,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +4691,0.3,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +4692,0.3,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +4693,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +4694,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +4695,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +4696,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +4697,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +4698,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +4699,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +4700,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4701,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4702,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4703,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4704,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4705,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4706,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4707,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4708,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4709,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +4710,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +4711,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4712,0.1,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4713,0.1,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4714,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +4715,0.2,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +4716,0.2,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +4717,0.2,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +4718,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +4719,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +4720,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +4721,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4722,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4723,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4724,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4725,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4726,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4727,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4728,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4729,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4730,0.0,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4731,0.0,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4732,0.0,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4733,0.0,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4734,0.0,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4735,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4736,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4737,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4738,0.0,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4739,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4740,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4741,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4742,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4743,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4744,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4745,0.2,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +4746,0.2,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +4747,0.2,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +4748,0.2,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +4749,0.2,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +4750,0.2,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +4751,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +4752,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +4753,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +4754,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +4755,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +4756,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4757,0.1,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4758,0.1,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4759,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4760,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4761,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4762,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4763,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4764,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4765,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4766,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4767,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4768,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,, +4769,0.0,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4770,0.0,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4771,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4772,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4773,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4776,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4777,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4778,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4779,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4780,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4781,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,, +4782,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,, +4783,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4784,0.0,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4785,0.0,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4786,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4787,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4788,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4789,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4790,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4791,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4792,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4793,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4794,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4795,0.0,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4796,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4797,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4798,0.0,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4799,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4800,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4801,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4802,0.1,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4803,0.1,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4804,0.1,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4805,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4806,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4807,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4808,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4809,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4810,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4811,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +4812,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +4813,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +4814,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,, +4815,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,, +4816,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +4817,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4818,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4819,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4820,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4821,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4822,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4823,0.2,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +4824,0.2,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +4825,0.2,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +4826,0.2,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +4827,0.2,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +4828,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +4829,0.1,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4830,0.1,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4831,0.1,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4832,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4833,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4834,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4835,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4836,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4837,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4838,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4839,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4840,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4841,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4842,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4843,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +4844,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4845,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4846,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,, +4847,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,, +4848,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,, +4849,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,, +4850,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +4851,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +4852,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4853,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4854,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4855,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4856,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4857,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4858,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +4859,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +4860,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +4861,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4862,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4863,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4864,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4865,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +4866,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +4867,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4868,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4869,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4870,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4871,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4872,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4873,0.0,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4874,0.0,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4875,0.0,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4876,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4877,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4878,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4879,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4880,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4881,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4882,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4883,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4884,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4885,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4886,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4887,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4888,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4889,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4890,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4891,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,, +4892,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4893,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4894,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4895,0.1,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4896,0.1,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4897,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4898,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,, +4899,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,, +4900,0.2,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +4901,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +4902,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +4903,0.3,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,,,, +4904,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +4905,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +4906,0.4,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,,,, +4907,0.4,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +4908,0.4,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +4909,0.4,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,,,, +4910,0.5,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,,,,, +4911,0.5,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,,,,, +4912,0.5,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,,,, +4913,0.5,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,,,, +4914,0.5,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,,,, +4915,0.4,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,,,, +4916,0.4,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +4917,0.4,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +4918,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +4919,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +4920,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +4921,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +4922,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +4923,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +4924,0.3,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,,,, +4925,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +4926,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +4927,0.2,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +4928,0.2,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +4929,0.2,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +4930,0.2,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +4931,0.2,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +4932,0.2,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +4933,0.2,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +4934,0.2,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +4935,0.2,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +4936,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +4937,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,, +4938,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,, +4939,0.1,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4940,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4941,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4942,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4943,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +4944,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +4945,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4946,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4947,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4948,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4949,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4950,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4951,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4952,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4953,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4954,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4955,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4956,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4957,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4958,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4959,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4960,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4961,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4962,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4963,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4964,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4965,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4966,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4967,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4968,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4969,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4970,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4971,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4972,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4973,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4974,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4975,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4976,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4977,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4978,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4979,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4980,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4981,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4982,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4983,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4984,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4985,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4986,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4987,0.0,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4988,0.0,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4989,0.0,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4990,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4991,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4992,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4993,0.0,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +4994,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,, +4995,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,, +4996,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,, +4997,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4998,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +4999,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +5000,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +5001,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +5002,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5003,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5004,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5005,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5006,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5007,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5008,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,, +5009,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +5010,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +5011,0.2,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +5012,0.2,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +5013,0.2,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +5014,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +5015,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,, +5016,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,, +5017,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,, +5018,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5019,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5020,0.1,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5021,0.1,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5022,0.1,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5023,0.1,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5024,0.1,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5025,0.1,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5026,0.1,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5027,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5028,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5029,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,, +5030,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +5031,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +5032,0.2,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +5033,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,,,, +5034,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,,,, +5035,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +5036,0.2,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +5037,0.2,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +5038,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +5039,0.2,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +5040,0.2,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +5041,0.2,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +5042,0.2,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +5043,0.2,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +5044,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +5045,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +5046,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +5047,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +5048,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +5049,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +5050,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +5051,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +5052,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +5053,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +5054,0.2,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +5055,0.2,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +5056,0.2,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +5057,0.2,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +5058,0.2,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +5059,0.1,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5060,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5061,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5062,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +5063,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,, +5064,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,, +5065,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +5066,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5067,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5068,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5069,0.1,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5070,0.1,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5071,0.1,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5072,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5073,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5074,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +5075,0.2,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +5076,0.2,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +5077,0.2,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +5078,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +5079,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +5080,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +5081,0.2,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +5082,0.2,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +5083,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5084,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5085,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5086,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5087,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5088,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5089,0.1,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5090,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,, +5091,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,, +5092,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5093,0.1,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5094,0.1,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5095,0.1,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5096,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5097,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5098,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5099,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5100,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5101,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5102,0.1,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5103,0.1,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5104,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5105,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5106,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5107,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +5108,0.0,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5109,0.0,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5110,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5111,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5112,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5113,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5114,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5115,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5116,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5117,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5118,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5119,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5120,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5121,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5122,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5123,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5124,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5125,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5126,0.0,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5127,0.0,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5128,0.0,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5129,0.0,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5130,0.0,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5131,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5132,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5133,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5134,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5135,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5136,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5137,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5138,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5139,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5140,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5141,0.0,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5142,0.0,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5143,0.0,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5144,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5145,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5146,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,, +5147,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,, +5148,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,, +5149,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5150,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5151,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5152,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5153,0.1,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5154,0.1,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5155,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5156,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5157,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5158,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,, +5159,0.0,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5160,0.0,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5161,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5162,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,, +5163,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,, +5164,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5165,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5166,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5167,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5168,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5169,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5170,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5171,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5172,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5173,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5174,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +5175,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +5176,0.2,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +5177,0.2,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +5178,0.2,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +5179,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +5180,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5181,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5182,0.1,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5183,0.1,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5184,0.1,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5185,0.1,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5186,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5187,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5188,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5189,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,, +5190,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,, +5191,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5192,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5193,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5194,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5195,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5196,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5197,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5198,0.0,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5199,0.0,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5200,0.0,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5201,0.0,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5202,0.0,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5203,0.0,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5204,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5205,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5206,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +5207,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5208,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5209,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5210,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5211,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5212,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5213,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5214,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5215,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5216,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5217,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5218,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5219,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5220,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5221,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5222,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +5223,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +5224,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +5225,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,, +5226,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,, +5227,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +5228,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +5229,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +5230,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +5231,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +5232,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +5233,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +5234,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +5235,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +5236,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +5237,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +5238,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +5239,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +5240,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +5241,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +5242,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5243,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5244,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5245,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5246,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5247,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5248,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5249,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,, +5250,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,, +5251,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,, +5252,0.0,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5253,0.0,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5254,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5255,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5256,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5257,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5258,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5259,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5260,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5261,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5262,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5263,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5264,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5265,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5266,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5267,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5268,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5269,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5270,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5271,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5272,0.0,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5273,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,, +5274,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,, +5275,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,, +5276,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,, +5277,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,, +5278,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,, +5279,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,, +5280,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,, +5281,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +5282,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5283,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5284,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5285,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5286,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5287,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5288,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5289,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5290,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +5291,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +5292,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +5293,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5294,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5295,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5296,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +5297,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5298,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5299,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5300,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5301,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5302,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5303,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5304,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +5305,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,, +5306,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5307,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5308,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5309,0.0,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5310,0.0,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5311,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5312,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5313,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5314,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,, +5315,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,, +5316,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,, +5317,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5318,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5319,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5320,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5321,0.1,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5322,0.1,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5323,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5324,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5325,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5326,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5327,0.1,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5328,0.1,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5329,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5330,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +5331,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +5332,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,, +5333,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5334,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5335,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5336,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,, +5337,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,, +5338,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +5339,0.2,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +5340,0.2,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +5341,0.2,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +5342,0.2,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +5343,0.2,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +5344,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,, +5345,0.1,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5346,0.1,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5347,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5348,0.0,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5349,0.0,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5350,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5351,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5352,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5353,0.0,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5354,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5355,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5356,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5357,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5358,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5359,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5360,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5361,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5362,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5363,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5364,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5365,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5366,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5367,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5368,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5369,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5370,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5371,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5372,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5373,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5374,0.0,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5375,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5376,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5377,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,, +5378,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +5379,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +5380,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5381,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5382,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5383,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,, +5384,0.0,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5385,0.0,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5386,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5387,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5388,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5389,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5390,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5391,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5392,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5393,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5394,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5395,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5396,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5397,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5398,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5399,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,, +5400,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,, +5401,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,, +5402,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +5403,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +5404,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +5405,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +5406,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +5407,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5408,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5409,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5410,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5411,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5412,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5413,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5414,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5415,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5416,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5417,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5418,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5419,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5420,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5421,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5422,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5423,0.1,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5424,0.1,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5425,0.1,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5426,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5427,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5428,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5429,0.1,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5430,0.1,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5431,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +5432,0.2,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +5433,0.2,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +5434,0.2,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +5435,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,,,, +5436,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,,,, +5437,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,,,, +5438,0.3,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,,,, +5439,0.3,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,,,, +5440,0.2,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +5441,0.1,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5442,0.1,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5443,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5444,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5445,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5446,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5447,0.1,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5448,0.1,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5449,0.1,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5450,0.1,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5451,0.1,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5452,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5453,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5454,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5455,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5456,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5457,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5458,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5459,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5460,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5461,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +5462,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +5463,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +5464,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +5465,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +5466,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +5467,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +5468,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +5469,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +5470,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +5471,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5472,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5473,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +5474,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,, +5475,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,, +5476,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5477,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5478,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5479,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5480,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5481,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5482,0.0,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5483,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,, +5484,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,, +5485,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5486,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5487,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5488,0.2,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +5489,0.3,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +5490,0.3,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +5491,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +5492,0.4,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +5493,0.4,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +5494,0.4,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,,,, +5495,0.4,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +5496,0.4,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +5497,0.4,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +5498,0.4,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +5499,0.4,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +5500,0.4,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,,,, +5501,0.4,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,,,, +5502,0.4,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,,,, +5503,0.4,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,,,, +5504,0.5,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,,,,, +5505,0.5,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,,,,, +5506,0.5,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,,,, +5507,0.6,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,,,,, +5508,0.6,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,,,,, +5509,0.5,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,,,, +5510,0.5,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,,,,, +5511,0.5,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,,,,, +5512,0.5,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,,,,, +5513,0.4,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,,,, +5514,0.4,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,,,, +5515,0.4,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +5516,0.3,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +5517,0.3,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +5518,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,,,, +5519,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +5520,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +5521,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +5522,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,,,, +5523,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,,,, +5524,0.3,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,,,, +5525,0.3,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +5526,0.3,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +5527,0.3,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +5528,0.3,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +5529,0.3,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +5530,0.4,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +5531,0.4,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,,,, +5532,0.4,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,,,, +5533,0.4,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +5534,0.4,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,,,, +5535,0.4,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,,,, +5536,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +5537,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,,,, +5538,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,,,, +5539,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +5540,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5541,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5542,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +5543,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,, +5544,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,, +5545,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,, +5546,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,, +5547,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,, +5548,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,, +5549,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +5550,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +5551,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5552,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5553,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5554,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5555,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5556,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5557,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5558,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5559,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5560,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5561,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5562,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5563,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +5564,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,, +5565,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,, +5566,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5567,0.1,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5568,0.1,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5569,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5570,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +5571,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +5572,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +5573,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +5574,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +5575,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,, +5576,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5577,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5578,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5579,0.1,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5580,0.1,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5581,0.2,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +5582,0.3,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +5583,0.3,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +5584,0.3,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +5585,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +5586,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +5587,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +5588,0.1,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5589,0.1,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5590,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5591,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5592,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5593,0.1,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5594,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5595,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5596,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,, +5597,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +5598,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +5599,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +5600,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +5601,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +5602,0.2,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +5603,0.2,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +5604,0.2,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +5605,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +5606,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +5607,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +5608,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,,,, +5609,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +5610,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +5611,0.1,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5612,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5613,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5614,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5615,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5616,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5617,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5618,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5619,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5620,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5621,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5622,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5623,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5624,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5625,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5626,0.1,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5627,0.2,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +5628,0.2,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +5629,0.4,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +5630,0.6,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,,,,, +5631,0.6,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,,,,, +5632,0.7,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,,,, +5633,0.7,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,,,,, +5634,0.7,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,,,,, +5635,0.7,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,,,,, +5636,0.7,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,,,,, +5637,0.7,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,,,,, +5638,0.6,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,,,,, +5639,0.6,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,,,,, +5640,0.6,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,,,,, +5641,0.6,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,,,,, +5642,0.6,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,,,,, +5643,0.6,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,,,,, +5644,0.6,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,,,,, +5645,0.7,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,,,,, +5646,0.7,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,,,,, +5647,0.6,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,,,,, +5648,0.6,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,,,,, +5649,0.6,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,,,,, +5650,0.6,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,,,,, +5651,0.6,0.8,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,,,,, +5652,0.6,0.8,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,,,,, +5653,0.6,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,,,, +5654,0.7,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,,,, +5655,0.7,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,,,, +5656,0.7,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,,,,, +5657,0.7,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,,,,, +5658,0.7,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,,,,, +5659,0.6,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,,,, +5660,0.6,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,,,,, +5661,0.6,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,,,,, +5662,0.6,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,,,,, +5663,0.7,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,,,, +5664,0.7,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,,,, +5665,0.7,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.5,0.5,0.5,,,,, +5666,0.8,1.0,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,,,,, +5667,0.8,1.0,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,,,,, +5668,0.7,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,,,,, +5669,0.6,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,,,, +5670,0.6,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,,,, +5671,0.6,0.8,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,,,,, +5672,0.6,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,,,,, +5673,0.6,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,,,,, +5674,0.6,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,,,, +5675,0.7,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,,,,, +5676,0.7,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,,,,, +5677,0.7,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,,,, +5678,0.6,0.8,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,,,,, +5679,0.6,0.8,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,,,,, +5680,0.5,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,,,, +5681,0.5,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,,,,, +5682,0.5,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,,,,, +5683,0.3,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +5684,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +5685,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +5686,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +5687,0.1,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5688,0.1,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5689,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5690,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5691,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5692,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5693,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5694,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5695,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5696,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5697,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5698,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5699,0.1,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5700,0.1,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5701,0.2,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +5702,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,,,, +5703,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,,,, +5704,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +5705,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5706,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5707,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5708,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,, +5709,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,, +5710,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +5711,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5712,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5713,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5714,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5715,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5716,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5717,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +5718,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +5719,0.3,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +5720,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +5721,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +5722,0.4,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +5723,0.4,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +5724,0.4,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +5725,0.3,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +5726,0.3,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +5727,0.3,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +5728,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,,,, +5729,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +5730,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +5731,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +5732,0.2,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +5733,0.2,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +5734,0.2,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +5735,0.2,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +5736,0.2,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +5737,0.2,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +5738,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +5739,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +5740,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +5741,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +5742,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +5743,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +5744,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,,,, +5745,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,,,, +5746,0.3,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +5747,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +5748,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +5749,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +5750,0.3,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +5751,0.3,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +5752,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +5753,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +5754,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +5755,0.3,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,,,, +5756,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +5757,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +5758,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +5759,0.2,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +5760,0.2,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +5761,0.2,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +5762,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +5763,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +5764,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +5765,0.3,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,,,, +5766,0.3,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,,,, +5767,0.3,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +5768,0.3,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +5769,0.3,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +5770,0.3,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +5771,0.4,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,,,, +5772,0.4,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,,,, +5773,0.4,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +5774,0.4,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,,,, +5775,0.4,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,,,, +5776,0.4,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +5777,0.4,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +5778,0.4,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +5779,0.4,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +5780,0.4,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,,,, +5781,0.4,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,,,, +5782,0.3,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +5783,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +5784,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +5785,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +5786,0.2,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +5787,0.2,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +5788,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5789,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5790,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5791,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5792,0.1,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5793,0.1,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5794,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,, +5795,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +5796,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +5797,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +5798,0.3,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,,,, +5799,0.3,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,,,, +5800,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +5801,0.4,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,,,, +5802,0.4,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,,,, +5803,0.4,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,,,, +5804,0.4,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +5805,0.4,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +5806,0.4,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +5807,0.3,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +5808,0.3,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +5809,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +5810,0.3,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +5811,0.3,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +5812,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +5813,0.2,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +5814,0.2,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +5815,0.2,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +5816,0.2,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +5817,0.2,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +5818,0.2,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +5819,0.2,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +5820,0.2,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +5821,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +5822,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,,,, +5823,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,,,, +5824,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +5825,0.2,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +5826,0.2,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +5827,0.2,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +5828,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +5829,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +5830,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5831,0.1,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5832,0.1,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5833,0.1,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5834,0.1,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5835,0.1,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5836,0.1,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5837,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5838,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5839,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5840,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5841,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5842,0.1,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5843,0.1,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5844,0.1,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5845,0.1,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5846,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5847,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5848,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5849,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5850,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5851,0.1,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5852,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5853,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5854,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5855,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5856,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5857,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5858,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5859,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5860,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5861,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5862,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5863,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5864,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5865,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5866,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5867,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5868,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5869,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5870,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5871,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5872,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5873,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5874,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5875,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5876,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5877,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5878,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5879,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +5880,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +5881,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,, +5882,0.0,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5883,0.0,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5884,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5885,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5886,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5887,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5888,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5889,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5890,0.0,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5891,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5892,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,, +5893,0.0,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5894,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5895,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5896,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5897,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5899,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5900,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5901,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5902,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5903,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5904,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5905,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5906,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5907,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5908,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5909,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5910,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5911,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5912,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5913,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5914,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5915,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5916,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5917,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5918,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5919,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +5920,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,, +5921,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5922,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5923,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5924,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5925,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5926,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5927,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5928,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5929,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5930,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5931,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5932,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5933,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5934,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5935,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5936,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5937,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5938,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5939,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5940,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5941,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5942,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5943,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5944,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5945,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5946,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5947,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5948,0.1,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5949,0.1,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5950,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5951,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +5952,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +5953,0.1,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5954,0.1,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5955,0.1,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5956,0.1,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5957,0.1,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5958,0.1,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5959,0.1,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5960,0.1,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5961,0.1,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5962,0.1,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5963,0.1,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5964,0.1,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5965,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +5966,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +5967,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +5968,0.2,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +5969,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +5970,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +5971,0.3,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +5972,0.3,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +5973,0.3,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +5974,0.4,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +5975,0.4,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,,,, +5976,0.4,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,,,, +5977,0.4,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,,,, +5978,0.4,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +5979,0.4,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +5980,0.4,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +5981,0.4,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +5982,0.4,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +5983,0.4,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +5984,0.4,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,,,, +5985,0.4,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,,,, +5986,0.5,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,,,, +5987,0.5,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,,,, +5988,0.5,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,,,, +5989,0.5,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,,,, +5990,0.5,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,,,, +5991,0.5,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,,,, +5992,0.5,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,,,, +5993,0.5,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,,,, +5994,0.5,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,,,, +5995,0.5,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,,,, +5996,0.5,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,,,,, +5997,0.5,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,,,,, +5998,0.5,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,,,, +5999,0.6,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,,,,, +6000,0.6,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,,,,, +6001,0.6,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,,,,, +6002,0.5,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,,,,, +6003,0.5,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,,,,, +6004,0.6,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,,,,, +6005,0.6,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,,,,, +6006,0.6,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,,,,, +6007,0.6,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,0.4,,,,, +6008,0.6,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,,,,, +6009,0.6,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,,,,, +6010,0.6,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,,,,, +6011,0.6,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,,,,, +6012,0.6,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,,,,, +6013,0.6,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,,,,, +6014,0.5,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,,,, +6015,0.5,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,,,, +6016,0.5,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,,,, +6017,0.5,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,,,,, +6018,0.5,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,,,,, +6019,0.4,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +6020,0.4,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +6021,0.4,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +6022,0.3,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +6023,0.3,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +6024,0.3,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +6025,0.3,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +6026,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +6027,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +6028,0.2,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +6029,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,, +6030,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,, +6031,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6032,0.1,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6033,0.1,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6034,0.1,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6035,0.1,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6036,0.1,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6037,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6038,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6039,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6040,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6041,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6042,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6043,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6044,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +6045,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +6046,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6047,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6048,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6049,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6050,0.1,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6051,0.1,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6052,0.1,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6053,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6054,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6055,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6056,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6057,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6058,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,, +6059,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +6060,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +6061,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +6062,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +6063,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +6064,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,, +6065,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6066,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6067,0.1,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6068,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6069,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6070,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6071,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6072,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6073,0.1,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6074,0.1,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6075,0.1,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6076,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6077,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6078,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6079,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6080,0.1,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6081,0.1,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6082,0.1,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6083,0.1,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6084,0.1,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6085,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6086,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +6087,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +6088,0.1,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6089,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6090,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6091,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6092,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6093,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6094,0.1,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6095,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6096,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6097,0.1,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6098,0.1,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6099,0.1,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6100,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6101,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6102,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6103,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6104,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +6105,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +6106,0.0,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +6107,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +6108,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +6109,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +6110,0.0,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +6111,0.0,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +6112,0.0,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +6113,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +6114,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +6115,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,, +6116,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +6117,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +6118,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6119,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6120,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6121,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6122,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6123,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6124,0.1,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6125,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +6126,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +6127,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,, +6128,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6129,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6130,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,, +6131,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,, +6132,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,, +6133,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6134,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6135,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6136,0.1,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6137,0.1,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6138,0.1,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6139,0.1,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6140,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6141,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6142,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,, +6143,0.2,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +6144,0.2,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +6145,0.3,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +6146,0.4,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,,,, +6147,0.4,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,,,, +6148,0.4,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,,,, +6149,0.5,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,,,, +6150,0.5,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,,,, +6151,0.6,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,0.4,,,,, +6152,0.6,0.8,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,,,,, +6153,0.6,0.8,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,,,,, +6154,0.6,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,,,,, +6155,0.6,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,,,,, +6156,0.6,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,,,,, +6157,0.6,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,,,,, +6158,0.6,0.8,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,,,,, +6159,0.6,0.8,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,,,,, +6160,0.6,0.8,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,,,,, +6161,0.6,0.8,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,,,,, +6162,0.6,0.8,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,,,,, +6163,0.6,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,,,,, +6164,0.6,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,,,, +6165,0.6,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,,,, +6166,0.6,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,,,, +6167,0.7,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,,,, +6168,0.7,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,,,, +6169,0.7,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,,,, +6170,0.7,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,,,,, +6171,0.7,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,,,,, +6172,0.7,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,,,,, +6173,0.7,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,,,,, +6174,0.7,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,,,,, +6175,0.7,0.8,0.8,0.8,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,,,,, +6176,0.6,0.8,0.8,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,,,, +6177,0.6,0.8,0.8,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,,,, +6178,0.6,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,,,,, +6179,0.6,0.8,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,,,,, +6180,0.6,0.8,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,,,,, +6181,0.6,0.8,0.8,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,,,, +6182,0.7,0.8,0.8,0.8,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,,,,, +6183,0.7,0.8,0.8,0.8,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,,,,, +6184,0.7,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,,,,, +6185,0.8,1.0,0.9,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.6,0.6,0.6,0.5,,,,, +6186,0.8,1.0,0.9,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.6,0.6,0.6,0.5,,,,, +6187,0.8,1.0,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,,,,, +6188,0.7,0.9,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.5,0.5,,,,, +6189,0.7,0.9,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.5,0.5,,,,, +6190,0.8,1.0,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,,,,, +6191,0.8,1.0,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,,,,, +6192,0.8,1.0,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,,,,, +6193,0.7,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,,,,, +6194,0.7,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,,,,, +6195,0.7,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,,,,, +6196,0.6,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,,,, +6197,0.6,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,,,,, +6198,0.6,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,,,,, +6199,0.6,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,,,,, +6200,0.5,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,,,, +6201,0.5,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,,,, +6202,0.6,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,,,,, +6203,0.6,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,,,, +6204,0.6,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,,,, +6205,0.7,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,,,,, +6206,0.7,0.9,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.6,0.6,0.6,0.5,0.5,,,,, +6207,0.7,0.9,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.6,0.6,0.6,0.5,0.5,,,,, +6208,0.7,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,,,, +6209,0.6,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,,,,, +6210,0.6,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,,,,, +6211,0.5,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,,,,, +6212,0.4,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,,,, +6213,0.4,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,,,, +6214,0.4,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +6215,0.3,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +6216,0.3,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +6217,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +6218,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +6219,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +6220,0.3,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +6221,0.3,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +6222,0.3,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +6223,0.3,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +6224,0.4,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +6225,0.4,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +6226,0.4,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +6227,0.5,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,,,,, +6228,0.5,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,,,,, +6229,0.5,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,,,, +6230,0.6,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,,,,, +6231,0.6,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,,,,, +6232,0.6,0.8,0.8,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,,,, +6233,0.7,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,,,,, +6234,0.7,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,,,,, +6235,0.6,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,,,,, +6236,0.5,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,,,, +6237,0.5,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,,,, +6238,0.5,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,,,, +6239,0.5,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,,,,, +6240,0.5,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,,,,, +6241,0.5,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,,,,, +6242,0.4,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,,,, +6243,0.4,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,,,, +6244,0.4,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +6245,0.4,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +6246,0.4,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +6247,0.4,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,,,, +6248,0.4,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +6249,0.4,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +6250,0.4,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +6251,0.4,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,,,, +6252,0.4,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,,,, +6253,0.4,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +6254,0.4,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +6255,0.4,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +6256,0.4,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +6257,0.4,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +6258,0.4,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +6259,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +6260,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +6261,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +6262,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +6263,0.2,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +6264,0.2,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +6265,0.2,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +6266,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +6267,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +6268,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +6269,0.2,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +6270,0.2,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +6271,0.2,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +6272,0.2,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +6273,0.2,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +6274,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +6275,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,,,, +6276,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,,,, +6277,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +6278,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +6279,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +6280,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +6281,0.3,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +6282,0.3,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +6283,0.3,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +6284,0.3,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,,,, +6285,0.3,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,,,, +6286,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +6287,0.4,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,,,, +6288,0.4,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,,,, +6289,0.4,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +6290,0.4,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +6291,0.4,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +6292,0.4,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +6293,0.4,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +6294,0.4,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +6295,0.4,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,,,, +6296,0.4,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +6297,0.4,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +6298,0.4,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +6299,0.4,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +6300,0.4,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +6301,0.4,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,,,, +6302,0.5,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,,,,, +6303,0.5,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,,,,, +6304,0.5,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,,,,, +6305,0.4,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,,,, +6306,0.4,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,,,, +6307,0.4,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +6308,0.4,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +6309,0.4,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +6310,0.4,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +6311,0.4,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +6312,0.4,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +6313,0.4,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +6314,0.4,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +6315,0.4,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +6316,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +6317,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,,,, +6318,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,,,, +6319,0.2,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +6320,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6321,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6322,0.1,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6323,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6324,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6325,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6326,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6327,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6328,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6329,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +6330,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +6331,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,, +6332,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +6333,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +6334,0.0,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +6335,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +6336,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +6337,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +6338,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +6339,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +6340,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +6341,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +6342,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +6343,0.0,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +6344,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,, +6345,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,, +6346,0.0,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +6347,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +6348,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +6349,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +6350,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,, +6351,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,, +6352,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +6353,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6354,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6355,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6356,0.1,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6357,0.1,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6358,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6359,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,, +6360,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,, +6361,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6362,0.1,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6363,0.1,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6364,0.1,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6365,0.1,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6366,0.1,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6367,0.1,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6368,0.1,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6369,0.1,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6370,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6371,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +6372,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +6373,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +6374,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +6375,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +6376,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +6377,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6378,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6379,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6380,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6381,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6382,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +6383,0.2,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +6384,0.2,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +6385,0.2,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +6386,0.2,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +6387,0.2,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +6388,0.2,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +6389,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +6390,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +6391,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +6392,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +6393,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +6394,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6395,0.1,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6396,0.1,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6397,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6398,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6399,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6400,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +6401,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +6402,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +6403,0.0,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +6404,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +6405,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +6406,0.0,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +6407,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,, +6408,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,, +6409,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +6410,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6411,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6412,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6413,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6414,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6415,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6416,0.1,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6417,0.1,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6418,0.1,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6419,0.1,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6420,0.1,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6421,0.1,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6422,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6423,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6424,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6425,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6426,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6427,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6428,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,, +6429,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,, +6430,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,, +6431,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,, +6432,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,, +6433,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,, +6434,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +6435,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +6436,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +6437,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +6438,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +6439,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +6440,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +6441,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +6442,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +6443,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +6444,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +6445,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +6446,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6447,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6448,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6449,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6450,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6451,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6452,0.1,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6453,0.1,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6454,0.1,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6455,0.1,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6456,0.1,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6457,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,, +6458,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +6459,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +6460,0.2,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +6461,0.2,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +6462,0.2,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +6463,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +6464,0.3,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +6465,0.3,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +6466,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +6467,0.4,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +6468,0.4,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +6469,0.4,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,,,, +6470,0.4,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +6471,0.4,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +6472,0.3,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +6473,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +6474,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +6475,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +6476,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +6477,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +6478,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +6479,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +6480,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +6481,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +6482,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +6483,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +6484,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +6485,0.2,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +6486,0.2,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +6487,0.2,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +6488,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +6489,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +6490,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +6491,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,, +6492,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,, +6493,0.1,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6494,0.1,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6495,0.1,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6496,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6497,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6498,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6499,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6500,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6501,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6502,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6503,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6504,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6505,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +6506,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +6507,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +6508,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +6509,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +6510,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +6511,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,, +6512,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,, +6513,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,, +6514,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +6515,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6516,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6517,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +6518,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,, +6519,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,, +6520,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,, +6521,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +6522,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +6523,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +6524,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6525,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6526,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6527,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6528,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6529,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6530,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6531,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6532,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6533,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6534,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6535,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6536,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6537,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6538,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6539,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6540,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6541,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6542,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6543,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6544,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6545,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6546,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6547,0.1,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6548,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +6549,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +6550,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +6551,0.2,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +6552,0.2,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +6553,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +6554,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6555,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6556,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6557,0.1,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6558,0.1,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6559,0.1,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6560,0.1,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6561,0.1,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6562,0.1,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6563,0.1,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6564,0.1,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6565,0.1,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6566,0.1,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6567,0.1,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6568,0.1,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6569,0.1,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6570,0.1,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6571,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +6572,0.2,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +6573,0.2,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +6574,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +6575,0.3,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +6576,0.3,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +6577,0.3,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +6578,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +6579,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +6580,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +6581,0.3,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +6582,0.3,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +6583,0.4,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +6584,0.4,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,,,, +6585,0.4,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,,,, +6586,0.4,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +6587,0.4,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +6588,0.4,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +6589,0.4,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +6590,0.4,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,,,, +6591,0.4,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,,,, +6592,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +6593,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +6594,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +6595,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,,,, +6596,0.3,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +6597,0.3,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +6598,0.3,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +6599,0.3,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +6600,0.3,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +6601,0.3,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +6602,0.3,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +6603,0.3,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +6604,0.3,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +6605,0.4,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,,,, +6606,0.4,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,,,, +6607,0.4,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +6608,0.4,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +6609,0.4,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +6610,0.4,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +6611,0.4,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +6612,0.4,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +6613,0.4,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +6614,0.4,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +6615,0.4,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +6616,0.5,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,,,, +6617,0.5,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,,,, +6618,0.5,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,,,, +6619,0.5,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,,,, +6620,0.6,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,,,,, +6621,0.6,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,,,,, +6622,0.5,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,,,, +6623,0.5,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,,,, +6624,0.5,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,,,, +6625,0.4,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,,,, +6626,0.4,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +6627,0.4,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +6628,0.4,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +6629,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +6630,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +6631,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +6632,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +6633,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +6634,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +6635,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +6636,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +6637,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +6638,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +6639,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +6640,0.3,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +6641,0.4,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +6642,0.4,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +6643,0.4,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +6644,0.5,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,,,,, +6645,0.5,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,,,,, +6646,0.4,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,,,, +6647,0.4,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +6648,0.4,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +6649,0.4,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +6650,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +6651,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +6652,0.3,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +6653,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +6654,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +6655,0.2,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +6656,0.2,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +6657,0.2,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +6658,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +6659,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +6660,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +6661,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6662,0.1,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6663,0.1,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6664,0.1,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6665,0.1,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6666,0.1,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6667,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,, +6668,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +6669,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +6670,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +6671,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +6672,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +6673,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,, +6674,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,, +6675,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,, +6676,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +6677,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +6678,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +6679,0.2,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +6680,0.2,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +6681,0.2,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +6682,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +6683,0.3,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,,,, +6684,0.3,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,,,, +6685,0.3,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +6686,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +6687,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +6688,0.3,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +6689,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +6690,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +6691,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +6692,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +6693,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +6694,0.2,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +6695,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6696,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6697,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6698,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +6699,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +6700,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +6701,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +6702,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +6703,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +6704,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +6705,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +6706,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +6707,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +6708,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +6709,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +6710,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +6711,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +6712,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +6713,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +6714,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +6715,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6716,0.1,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6717,0.1,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6718,0.1,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6719,0.1,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6720,0.1,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6721,0.1,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6722,0.1,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6723,0.1,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6724,0.1,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6725,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6726,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6727,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +6728,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +6729,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +6730,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +6731,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +6732,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +6733,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +6734,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +6735,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +6736,0.2,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +6737,0.2,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +6738,0.2,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +6739,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +6740,0.3,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +6741,0.3,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +6742,0.3,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +6743,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,,,, +6744,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,,,, +6745,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +6746,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +6747,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +6748,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +6749,0.3,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,,,, +6750,0.3,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,,,, +6751,0.3,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,,,, +6752,0.3,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,,,, +6753,0.3,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,,,, +6754,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +6755,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +6756,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +6757,0.3,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,,,, +6758,0.3,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +6759,0.3,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +6760,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +6761,0.3,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +6762,0.3,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +6763,0.4,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +6764,0.4,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +6765,0.4,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +6766,0.4,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +6767,0.3,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +6768,0.3,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +6769,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +6770,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +6771,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +6772,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +6773,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +6774,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +6775,0.2,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +6776,0.2,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +6777,0.2,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +6778,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6779,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6780,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6781,0.1,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6782,0.1,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6783,0.1,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6784,0.1,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6785,0.1,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6786,0.1,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6787,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,, +6788,0.2,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +6789,0.2,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +6790,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +6791,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6792,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6793,0.1,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6794,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6795,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6796,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6797,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6798,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6799,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6800,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6801,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6802,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6803,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6804,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6805,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6806,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6807,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6808,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6809,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6810,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6811,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6812,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6813,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6814,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6815,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6816,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6817,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,, +6818,0.0,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +6819,0.0,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +6820,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +6821,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +6822,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +6823,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +6824,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +6825,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +6826,0.0,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +6827,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +6828,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,, +6829,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +6830,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +6831,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +6832,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +6833,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +6834,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +6835,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +6836,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +6837,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +6838,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +6839,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +6840,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +6841,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +6842,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +6843,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +6844,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +6845,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +6846,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +6847,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +6848,0.0,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +6849,0.0,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +6850,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +6851,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +6852,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +6853,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +6854,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +6855,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +6856,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +6857,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +6858,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +6859,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +6860,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +6861,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +6862,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +6863,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +6864,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +6865,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +6866,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +6867,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +6868,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +6869,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +6870,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +6871,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6872,0.1,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6873,0.1,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6874,0.1,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6875,0.1,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6876,0.1,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6877,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +6878,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +6879,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +6880,0.2,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +6881,0.2,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +6882,0.2,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +6883,0.2,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +6884,0.2,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +6885,0.2,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +6886,0.2,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +6887,0.2,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +6888,0.2,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +6889,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +6890,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +6891,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +6892,0.1,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6893,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6894,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6895,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6896,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6897,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6898,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6899,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6900,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6901,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6902,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6903,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6904,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +6905,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,, +6906,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,, +6907,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +6908,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +6909,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +6910,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6911,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6912,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6913,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6914,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6915,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6916,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6917,0.1,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6918,0.1,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6919,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +6920,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +6921,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +6922,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +6923,0.4,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,,,, +6924,0.4,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,,,, +6925,0.4,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +6926,0.4,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,,,, +6927,0.4,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,,,, +6928,0.4,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,,,, +6929,0.4,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,,,, +6930,0.4,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,,,, +6931,0.4,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,,,, +6932,0.4,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +6933,0.4,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +6934,0.4,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,,,, +6935,0.3,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +6936,0.3,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +6937,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +6938,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +6939,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +6940,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +6941,0.2,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +6942,0.2,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +6943,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +6944,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +6945,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +6946,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6947,0.1,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6948,0.1,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6949,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6950,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6951,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6952,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +6953,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,, +6954,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,, +6955,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,, +6956,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +6957,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +6958,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,, +6959,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,, +6960,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,, +6961,0.0,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +6962,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +6963,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +6964,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +6965,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +6966,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +6967,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +6968,0.0,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +6969,0.0,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +6970,0.0,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +6971,0.0,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +6972,0.0,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +6973,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +6974,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6975,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6976,0.1,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6977,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6978,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +6979,0.2,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +6980,0.3,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,,,, +6981,0.3,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,,,, +6982,0.3,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +6983,0.4,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +6984,0.4,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +6985,0.4,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,,,, +6986,0.5,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,,,,, +6987,0.5,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,,,,, +6988,0.5,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,,,, +6989,0.5,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,,,, +6990,0.5,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,,,, +6991,0.5,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,,,, +6992,0.5,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,,,,, +6993,0.5,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,,,,, +6994,0.5,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,,,,, +6995,0.4,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,,,, +6996,0.4,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,,,, +6997,0.4,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +6998,0.4,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +6999,0.4,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +7000,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +7001,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +7002,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +7003,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +7004,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +7005,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +7006,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +7007,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +7008,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +7009,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +7010,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +7011,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +7012,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +7013,0.3,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +7014,0.3,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +7015,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +7016,0.3,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +7017,0.3,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +7018,0.4,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +7019,0.4,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,,,, +7020,0.4,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,,,, +7021,0.5,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,,,,, +7022,0.5,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,,,, +7023,0.5,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,,,, +7024,0.6,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,0.4,,,,, +7025,0.6,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,,,, +7026,0.6,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,,,, +7027,0.6,0.8,0.8,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,,,, +7028,0.6,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,,,, +7029,0.6,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,,,, +7030,0.6,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,,,, +7031,0.6,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,,,,, +7032,0.6,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,,,,, +7033,0.6,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,0.4,,,,, +7034,0.5,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,,,, +7035,0.5,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,,,, +7036,0.5,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,,,,, +7037,0.5,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,,,,, +7038,0.5,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,,,,, +7039,0.5,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,,,,, +7040,0.5,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,,,, +7041,0.5,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,,,, +7042,0.5,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,,,,, +7043,0.6,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,,,,, +7044,0.6,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,,,,, +7045,0.7,0.8,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,,,,, +7046,0.7,0.9,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.5,0.5,,,,, +7047,0.7,0.9,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.5,0.5,,,,, +7048,0.7,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,,,,, +7049,0.7,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,,,,, +7050,0.7,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,,,,, +7051,0.8,1.0,0.9,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.6,0.6,0.6,0.5,,,,, +7052,0.8,1.1,1.0,1.0,0.9,0.9,0.9,0.8,0.8,0.7,0.7,0.7,0.6,0.6,,,,, +7053,0.8,1.1,1.0,1.0,0.9,0.9,0.9,0.8,0.8,0.7,0.7,0.7,0.6,0.6,,,,, +7054,0.8,1.1,1.0,1.0,0.9,0.9,0.9,0.8,0.8,0.7,0.7,0.7,0.6,0.6,,,,, +7055,0.8,1.0,1.0,1.0,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.6,0.6,0.6,,,,, +7056,0.8,1.0,1.0,1.0,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.6,0.6,0.6,,,,, +7057,0.8,1.1,1.0,1.0,0.9,0.9,0.9,0.8,0.8,0.7,0.7,0.7,0.6,0.6,,,,, +7058,0.9,1.1,1.1,1.0,1.0,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.6,0.6,,,,, +7059,0.9,1.1,1.1,1.0,1.0,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.6,0.6,,,,, +7060,0.8,1.0,1.0,0.9,0.9,0.9,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.5,,,,, +7061,0.7,0.9,0.9,0.9,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,,,,, +7062,0.7,0.9,0.9,0.9,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,,,,, +7063,0.7,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,,,,, +7064,0.7,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,,,,, +7065,0.7,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,,,,, +7066,0.6,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,,,,, +7067,0.6,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,,,,, +7068,0.6,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,,,,, +7069,0.5,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,,,, +7070,0.4,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,,,, +7071,0.4,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,,,, +7072,0.4,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,,,, +7073,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +7074,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +7075,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +7076,0.4,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +7077,0.4,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +7078,0.4,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +7079,0.4,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +7080,0.4,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +7081,0.4,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +7082,0.4,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +7083,0.4,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +7084,0.4,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +7085,0.4,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,,,, +7086,0.4,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,,,, +7087,0.4,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,,,, +7088,0.4,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +7089,0.4,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +7090,0.3,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +7091,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +7092,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +7093,0.4,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +7094,0.4,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,,,, +7095,0.4,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,,,, +7096,0.5,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,,,, +7097,0.6,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,,,,, +7098,0.6,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,,,,, +7099,0.6,0.8,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,,,,, +7100,0.7,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,,,,, +7101,0.7,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,,,,, +7102,0.7,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,,,,, +7103,0.7,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,,,,, +7104,0.7,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,,,,, +7105,0.8,1.0,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.5,0.5,,,,, +7106,0.8,1.0,1.0,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.5,,,,, +7107,0.8,1.0,1.0,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.5,,,,, +7108,0.8,1.0,1.0,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.5,,,,, +7109,0.8,1.0,0.9,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.6,0.6,0.6,0.5,,,,, +7110,0.8,1.0,0.9,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.6,0.6,0.6,0.5,,,,, +7111,0.8,1.0,1.0,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.5,,,,, +7112,0.8,1.0,1.0,0.9,0.9,0.9,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.5,,,,, +7113,0.8,1.0,1.0,0.9,0.9,0.9,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.5,,,,, +7114,0.8,1.0,1.0,1.0,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.6,0.6,0.6,,,,, +7115,0.9,1.1,1.0,1.0,1.0,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.6,0.6,,,,, +7116,0.9,1.1,1.0,1.0,1.0,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.6,0.6,,,,, +7117,0.8,1.1,1.0,1.0,0.9,0.9,0.9,0.8,0.8,0.7,0.7,0.7,0.6,0.6,,,,, +7118,0.8,1.0,1.0,1.0,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.6,0.6,0.6,,,,, +7119,0.8,1.0,1.0,1.0,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.6,0.6,0.6,,,,, +7120,0.7,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,,,,, +7121,0.6,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,0.4,,,,, +7122,0.6,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,0.4,,,,, +7123,0.5,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,,,,, +7124,0.4,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +7125,0.4,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +7126,0.3,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +7127,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +7128,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +7129,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,,,, +7130,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +7131,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +7132,0.2,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +7133,0.2,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +7134,0.2,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +7135,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +7136,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +7137,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +7138,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +7139,0.3,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +7140,0.3,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +7141,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +7142,0.3,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +7143,0.3,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +7144,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +7145,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,,,, +7146,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,,,, +7147,0.3,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +7148,0.4,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +7149,0.4,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +7150,0.4,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +7151,0.4,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +7152,0.4,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +7153,0.4,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +7154,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +7155,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +7156,0.3,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +7157,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +7158,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +7159,0.2,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +7160,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +7161,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +7162,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +7163,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +7164,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +7165,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +7166,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +7167,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +7168,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +7169,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +7170,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +7171,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +7172,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +7173,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +7174,0.1,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +7175,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,, +7176,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,, +7177,0.2,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +7178,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +7179,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +7180,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +7181,0.3,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +7182,0.3,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +7183,0.4,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +7184,0.4,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,,,, +7185,0.4,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,,,, +7186,0.5,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,,,,, +7187,0.5,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,,,,, +7188,0.5,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,,,,, +7189,0.5,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,,,,, +7190,0.5,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,,,, +7191,0.5,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,,,, +7192,0.5,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,,,,, +7193,0.4,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,,,, +7194,0.4,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,,,, +7195,0.4,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +7196,0.4,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +7197,0.4,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +7198,0.4,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +7199,0.4,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +7200,0.4,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +7201,0.4,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,,,, +7202,0.4,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,,,, +7203,0.4,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,,,, +7204,0.4,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,,,, +7205,0.4,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,,,, +7206,0.4,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,,,, +7207,0.4,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +7208,0.4,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +7209,0.4,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +7210,0.4,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +7211,0.4,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,,,, +7212,0.4,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,,,, +7213,0.5,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,,,, +7214,0.6,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,,,,, +7215,0.6,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,,,,, +7216,0.5,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,,,, +7217,0.4,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +7218,0.4,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +7219,0.4,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,,,, +7220,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +7221,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +7222,0.3,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +7223,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +7224,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +7225,0.3,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,,,, +7226,0.3,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,,,, +7227,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +7228,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +7229,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +7230,0.2,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +7231,0.2,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +7232,0.2,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +7233,0.2,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +7234,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +7235,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +7236,0.2,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +7237,0.2,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +7238,0.2,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +7239,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +7240,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +7241,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +7242,0.4,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,,,, +7243,0.4,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,,,, +7244,0.4,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,,,, +7245,0.5,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,,,,, +7246,0.5,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,,,, +7247,0.5,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,,,, +7248,0.5,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,,,, +7249,0.5,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,,,, +7250,0.5,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,,,, +7251,0.5,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,,,,, +7252,0.4,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,,,, +7253,0.4,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,,,, +7254,0.4,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +7255,0.4,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +7256,0.4,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +7257,0.4,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +7258,0.4,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +7259,0.4,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +7260,0.3,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +7261,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +7262,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +7263,0.3,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,,,, +7264,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +7265,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +7266,0.2,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +7267,0.2,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +7268,0.2,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +7269,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +7270,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +7271,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +7272,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +7273,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +7274,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +7275,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +7276,0.0,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +7277,0.0,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +7278,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,, +7279,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +7280,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +7281,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +7282,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +7283,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +7284,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +7285,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +7286,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +7287,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,, +7288,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +7289,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +7290,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +7291,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +7292,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +7293,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +7294,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,, +7295,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,, +7296,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,, +7297,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +7298,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +7299,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +7300,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +7301,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +7302,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +7303,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +7304,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +7305,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +7306,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +7307,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +7308,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +7309,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +7310,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +7311,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +7312,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +7313,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +7314,0.0,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +7315,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +7316,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +7317,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +7318,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +7319,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +7320,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +7321,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +7322,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +7323,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +7324,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +7325,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +7326,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +7327,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,, +7328,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,, +7329,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +7330,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +7331,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +7332,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +7333,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +7334,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +7335,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +7336,0.4,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +7337,0.4,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +7338,0.4,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,,,, +7339,0.5,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,,,,, +7340,0.5,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,,,,, +7341,0.5,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,,,, +7342,0.5,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,,,, +7343,0.5,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,,,, +7344,0.6,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,,,,, +7345,0.6,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,,,,, +7346,0.6,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,,,,, +7347,0.7,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,,,,, +7348,0.8,1.0,0.9,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.6,0.6,0.6,0.5,,,,, +7349,0.8,1.0,0.9,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.6,0.6,0.6,0.5,,,,, +7350,0.8,1.0,1.0,1.0,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.6,0.6,0.6,,,,, +7351,0.8,1.1,1.0,1.0,0.9,0.9,0.9,0.8,0.8,0.7,0.7,0.7,0.6,0.6,,,,, +7352,0.8,1.1,1.0,1.0,0.9,0.9,0.9,0.8,0.8,0.7,0.7,0.7,0.6,0.6,,,,, +7353,0.8,1.1,1.0,1.0,0.9,0.9,0.9,0.8,0.8,0.7,0.7,0.7,0.6,0.6,,,,, +7354,0.8,1.1,1.0,1.0,0.9,0.9,0.9,0.8,0.8,0.7,0.7,0.7,0.6,0.6,,,,, +7355,0.8,1.1,1.0,1.0,0.9,0.9,0.9,0.8,0.8,0.7,0.7,0.7,0.6,0.6,,,,, +7356,0.8,1.0,1.0,0.9,0.9,0.9,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,,,,, +7357,0.8,1.0,0.9,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.6,0.6,0.6,0.5,,,,, +7358,0.8,1.0,0.9,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.6,0.6,0.6,0.5,,,,, +7359,0.7,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.5,0.5,0.5,,,,, +7360,0.6,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,,,, +7361,0.6,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,,,, +7362,0.6,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,0.4,,,,, +7363,0.5,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,,,, +7364,0.5,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,,,, +7365,0.5,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,,,, +7366,0.5,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,,,, +7367,0.5,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,,,, +7368,0.5,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,,,, +7369,0.5,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,,,,, +7370,0.5,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,,,,, +7371,0.5,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,,,, +7372,0.5,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,,,, +7373,0.5,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,,,, +7374,0.6,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,,,,, +7375,0.6,0.8,0.8,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,,,, +7376,0.6,0.8,0.8,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,,,, +7377,0.7,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,,,,, +7378,0.8,1.0,1.0,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.5,,,,, +7379,0.8,1.0,1.0,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.5,,,,, +7380,0.8,1.1,1.0,1.0,0.9,0.9,0.9,0.8,0.8,0.7,0.7,0.7,0.6,0.6,,,,, +7381,0.9,1.1,1.1,1.0,1.0,1.0,0.9,0.9,0.8,0.8,0.7,0.7,0.7,0.6,,,,, +7382,0.9,1.1,1.1,1.0,1.0,1.0,0.9,0.9,0.8,0.8,0.7,0.7,0.7,0.6,,,,, +7383,0.8,1.0,1.0,1.0,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.6,0.6,0.6,,,,, +7384,0.7,0.9,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.6,0.6,0.6,0.5,0.5,,,,, +7385,0.7,0.9,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.6,0.6,0.6,0.5,0.5,,,,, +7386,0.8,1.0,0.9,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.6,0.6,0.6,0.5,,,,, +7387,0.8,1.0,1.0,1.0,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.6,0.6,0.6,,,,, +7388,0.8,1.0,1.0,1.0,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.6,0.6,0.6,,,,, +7389,0.9,1.1,1.1,1.1,1.0,1.0,0.9,0.9,0.8,0.8,0.7,0.7,0.7,0.6,,,,, +7390,1.0,1.2,1.2,1.1,1.1,1.0,1.0,0.9,0.9,0.9,0.8,0.8,0.7,0.7,,,,, +7391,1.0,1.2,1.2,1.1,1.1,1.0,1.0,0.9,0.9,0.9,0.8,0.8,0.7,0.7,,,,, +7392,1.0,1.2,1.2,1.1,1.1,1.1,1.0,1.0,0.9,0.9,0.8,0.8,0.7,0.7,,,,, +7393,1.0,1.3,1.2,1.2,1.1,1.1,1.0,1.0,0.9,0.9,0.8,0.8,0.7,0.7,,,,, +7394,1.0,1.3,1.2,1.2,1.1,1.1,1.0,1.0,0.9,0.9,0.8,0.8,0.7,0.7,,,,, +7395,1.0,1.3,1.2,1.2,1.1,1.1,1.0,1.0,0.9,0.9,0.8,0.8,0.7,0.7,,,,, +7396,1.0,1.3,1.2,1.2,1.1,1.1,1.0,1.0,0.9,0.9,0.8,0.8,0.7,0.7,,,,, +7397,1.0,1.3,1.2,1.2,1.1,1.1,1.0,1.0,0.9,0.9,0.8,0.8,0.7,0.7,,,,, +7398,1.0,1.3,1.2,1.2,1.1,1.1,1.0,1.0,0.9,0.9,0.8,0.8,0.7,0.7,,,,, +7399,1.0,1.2,1.2,1.1,1.1,1.0,1.0,0.9,0.9,0.8,0.8,0.7,0.7,0.7,,,,, +7400,1.0,1.2,1.2,1.1,1.1,1.0,1.0,0.9,0.9,0.8,0.8,0.7,0.7,0.7,,,,, +7401,0.9,1.1,1.1,1.1,1.0,1.0,0.9,0.9,0.8,0.8,0.7,0.7,0.7,0.6,,,,, +7402,0.8,1.1,1.0,1.0,0.9,0.9,0.9,0.8,0.8,0.7,0.7,0.7,0.6,0.6,,,,, +7403,0.8,1.1,1.0,1.0,0.9,0.9,0.9,0.8,0.8,0.7,0.7,0.7,0.6,0.6,,,,, +7404,0.8,1.0,1.0,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.5,,,,, +7405,0.7,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,,,,, +7406,0.7,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,,,,, +7407,0.6,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,,,,, +7408,0.5,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,,,,, +7409,0.5,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,,,,, +7410,0.4,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +7411,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +7412,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +7413,0.3,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +7414,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +7415,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +7416,0.4,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +7417,0.5,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,,,,, +7418,0.5,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,,,,, +7419,0.5,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,,,,, +7420,0.5,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,,,, +7421,0.5,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,,,, +7422,0.5,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,,,,, +7423,0.4,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +7424,0.4,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +7425,0.4,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +7426,0.4,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +7427,0.4,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +7428,0.4,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +7429,0.4,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +7430,0.4,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +7431,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +7432,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +7433,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +7434,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +7435,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +7436,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +7437,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +7438,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,, +7439,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,, +7440,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +7441,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +7442,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +7443,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +7444,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +7445,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +7446,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +7447,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +7448,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +7449,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +7450,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +7451,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +7452,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +7453,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +7454,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +7455,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +7456,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +7457,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +7458,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +7459,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +7460,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +7461,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +7462,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +7463,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +7464,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +7465,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +7466,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +7467,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +7468,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +7469,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +7470,0.1,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +7471,0.1,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +7472,0.1,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +7473,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,, +7474,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +7475,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +7476,0.2,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +7477,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +7478,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +7479,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +7480,0.2,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +7481,0.2,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +7482,0.2,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +7483,0.2,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +7484,0.2,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +7485,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +7486,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +7487,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +7488,0.1,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +7489,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +7490,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +7491,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +7492,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +7493,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +7494,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +7495,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +7496,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +7497,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +7498,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +7499,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +7500,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,, +7501,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,, +7502,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,, +7503,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,, +7504,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +7505,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +7506,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,, +7507,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +7508,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +7509,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +7510,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,, +7511,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,, +7512,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,, +7513,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +7514,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +7515,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,, +7516,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,, +7517,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,, +7518,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +7519,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +7520,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +7521,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +7522,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +7523,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +7524,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +7525,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +7526,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +7527,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +7528,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +7529,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +7530,0.1,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +7531,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +7532,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +7533,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +7534,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +7535,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +7536,0.2,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +7537,0.2,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +7538,0.2,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +7539,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +7540,0.3,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +7541,0.3,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +7542,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +7543,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +7544,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +7545,0.4,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +7546,0.5,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,,,, +7547,0.5,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,,,, +7548,0.6,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,,,,, +7549,0.7,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,,,, +7550,0.7,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,,,, +7551,0.8,1.0,0.9,0.9,0.9,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,,,,, +7552,0.9,1.1,1.0,1.0,1.0,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.6,0.6,,,,, +7553,0.9,1.1,1.0,1.0,1.0,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.6,0.6,,,,, +7554,1.0,1.3,1.2,1.2,1.1,1.1,1.0,1.0,0.9,0.9,0.8,0.8,0.7,0.7,,,,, +7555,1.1,1.4,1.3,1.3,1.2,1.2,1.1,1.1,1.0,1.0,0.9,0.8,0.8,0.7,,,,, +7556,1.1,1.4,1.3,1.3,1.2,1.2,1.1,1.1,1.0,1.0,0.9,0.8,0.8,0.7,,,,, +7557,1.1,1.4,1.3,1.3,1.2,1.2,1.1,1.1,1.0,1.0,0.9,0.8,0.8,0.7,,,,, +7558,1.1,1.4,1.3,1.3,1.2,1.2,1.1,1.1,1.0,1.0,0.9,0.9,0.8,0.7,,,,, +7559,1.1,1.4,1.3,1.3,1.2,1.2,1.1,1.1,1.0,1.0,0.9,0.9,0.8,0.7,,,,, +7560,1.1,1.3,1.3,1.2,1.2,1.1,1.1,1.0,1.0,0.9,0.9,0.8,0.8,0.7,,,,, +7561,1.0,1.3,1.2,1.2,1.1,1.1,1.0,1.0,0.9,0.9,0.8,0.8,0.7,0.7,,,,, +7562,1.0,1.3,1.2,1.2,1.1,1.1,1.0,1.0,0.9,0.9,0.8,0.8,0.7,0.7,,,,, +7563,1.0,1.2,1.2,1.1,1.1,1.0,1.0,0.9,0.9,0.9,0.8,0.8,0.7,0.7,,,,, +7564,0.9,1.2,1.1,1.1,1.0,1.0,1.0,0.9,0.9,0.8,0.8,0.7,0.7,0.6,,,,, +7565,0.9,1.2,1.1,1.1,1.0,1.0,1.0,0.9,0.9,0.8,0.8,0.7,0.7,0.6,,,,, +7566,1.0,1.3,1.2,1.2,1.1,1.1,1.0,1.0,0.9,0.9,0.8,0.8,0.7,0.7,,,,, +7567,1.1,1.3,1.3,1.2,1.2,1.1,1.1,1.0,1.0,0.9,0.9,0.8,0.8,0.7,,,,, +7568,1.1,1.3,1.3,1.2,1.2,1.1,1.1,1.0,1.0,0.9,0.9,0.8,0.8,0.7,,,,, +7569,1.1,1.4,1.3,1.3,1.2,1.2,1.1,1.1,1.0,1.0,0.9,0.9,0.8,0.8,,,,, +7570,1.1,1.4,1.4,1.3,1.3,1.2,1.2,1.1,1.1,1.0,0.9,0.9,0.8,0.8,,,,, +7571,1.1,1.4,1.4,1.3,1.3,1.2,1.2,1.1,1.1,1.0,0.9,0.9,0.8,0.8,,,,, +7572,1.2,1.5,1.4,1.3,1.3,1.2,1.2,1.1,1.1,1.0,1.0,0.9,0.8,0.8,,,,, +7573,1.2,1.5,1.4,1.3,1.3,1.2,1.2,1.1,1.1,1.0,1.0,0.9,0.8,0.8,,,,, +7574,1.2,1.5,1.4,1.3,1.3,1.2,1.2,1.1,1.1,1.0,1.0,0.9,0.8,0.8,,,,, +7575,1.1,1.4,1.4,1.3,1.3,1.2,1.2,1.1,1.0,1.0,0.9,0.9,0.8,0.8,,,,, +7576,1.1,1.4,1.3,1.3,1.2,1.1,1.1,1.0,1.0,0.9,0.9,0.8,0.8,0.7,,,,, +7577,1.1,1.4,1.3,1.3,1.2,1.1,1.1,1.0,1.0,0.9,0.9,0.8,0.8,0.7,,,,, +7578,1.0,1.3,1.2,1.2,1.1,1.1,1.0,1.0,0.9,0.9,0.8,0.8,0.7,0.7,,,,, +7579,1.0,1.2,1.1,1.1,1.1,1.0,1.0,0.9,0.9,0.8,0.8,0.7,0.7,0.6,,,,, +7580,1.0,1.2,1.1,1.1,1.1,1.0,1.0,0.9,0.9,0.8,0.8,0.7,0.7,0.6,,,,, +7581,0.9,1.1,1.1,1.0,1.0,0.9,0.9,0.9,0.8,0.8,0.7,0.7,0.6,0.6,,,,, +7582,0.8,1.0,1.0,0.9,0.9,0.9,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,,,,, +7583,0.8,1.0,1.0,0.9,0.9,0.9,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,,,,, +7584,0.8,1.0,0.9,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.6,0.6,0.6,0.5,,,,, +7585,0.7,0.9,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.6,0.6,0.6,0.5,0.5,,,,, +7586,0.7,0.9,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.6,0.6,0.6,0.5,0.5,,,,, +7587,0.7,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,,,,, +7588,0.7,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,,,,, +7589,0.7,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,,,,, +7590,0.7,0.9,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.6,0.6,0.6,0.5,0.5,,,,, +7591,0.8,1.0,0.9,0.9,0.9,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,,,,, +7592,0.8,1.0,0.9,0.9,0.9,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,,,,, +7593,0.7,0.9,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.5,0.5,,,,, +7594,0.7,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,,,,, +7595,0.7,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,,,,, +7596,0.7,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,,,,, +7597,0.7,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,,,,, +7598,0.7,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,,,,, +7599,0.6,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,,,,, +7600,0.5,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,,,, +7601,0.5,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,,,, +7602,0.5,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,,,,, +7603,0.4,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +7604,0.4,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +7605,0.4,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,,,, +7606,0.3,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +7607,0.3,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +7608,0.3,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +7609,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +7610,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +7611,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +7612,0.2,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +7613,0.2,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +7614,0.3,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +7615,0.4,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,,,, +7616,0.4,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,,,, +7617,0.4,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,,,, +7618,0.5,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,,,, +7619,0.5,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,,,, +7620,0.6,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,,,,, +7621,0.6,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,,,,, +7622,0.6,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,,,,, +7623,0.5,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,,,, +7624,0.5,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,,,,, +7625,0.5,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,,,,, +7626,0.5,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,,,,, +7627,0.5,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,,,, +7628,0.5,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,,,, +7629,0.6,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,,,,, +7630,0.6,0.8,0.8,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,,,, +7631,0.6,0.8,0.8,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,,,, +7632,0.6,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,,,, +7633,0.6,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,,,, +7634,0.6,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,,,, +7635,0.6,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,,,,, +7636,0.6,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,,,,, +7637,0.6,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,,,,, +7638,0.5,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,,,,, +7639,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +7640,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +7641,0.2,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +7642,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +7643,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +7644,0.1,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +7645,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +7646,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +7647,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +7648,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +7649,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +7650,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,, +7651,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +7652,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +7653,0.0,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +7654,0.0,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +7655,0.0,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +7656,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +7657,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,, +7658,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,, +7659,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,, +7660,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +7661,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +7662,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +7663,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +7664,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +7665,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +7666,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,, +7667,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,, +7668,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +7669,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +7670,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +7671,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +7672,0.1,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +7673,0.1,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +7674,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +7675,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +7676,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +7677,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +7678,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +7679,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +7680,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +7681,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +7682,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +7683,0.2,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +7684,0.2,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +7685,0.2,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +7686,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +7687,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +7688,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +7689,0.3,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,,,, +7690,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +7691,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +7692,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +7693,0.3,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +7694,0.3,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +7695,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +7696,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +7697,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +7698,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,, +7699,0.1,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +7700,0.1,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +7701,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +7702,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +7703,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +7704,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +7705,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +7706,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +7707,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +7708,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +7709,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +7710,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +7711,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +7712,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +7713,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +7714,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,, +7715,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,, +7716,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,, +7717,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +7718,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +7719,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +7720,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +7721,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +7722,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +7723,0.0,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +7724,0.0,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +7725,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +7726,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,, +7727,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,, +7728,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,, +7729,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +7730,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +7731,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +7732,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +7733,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +7734,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +7735,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +7736,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +7737,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +7738,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +7739,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +7740,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +7741,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +7742,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +7743,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +7744,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +7745,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +7746,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,, +7747,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,, +7748,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,, +7749,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +7750,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +7751,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +7752,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +7753,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +7754,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +7755,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,, +7756,0.0,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +7757,0.0,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +7758,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +7759,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +7760,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +7761,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +7762,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +7763,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +7764,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +7765,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +7766,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +7767,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +7768,0.0,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +7769,0.0,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +7770,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +7771,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +7772,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +7773,0.0,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +7774,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,, +7775,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,, +7776,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,, +7777,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +7778,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +7779,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +7780,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +7781,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +7782,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +7783,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +7784,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +7785,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +7786,0.1,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +7787,0.1,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +7788,0.1,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +7789,0.1,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +7790,0.1,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +7791,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +7792,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +7793,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +7794,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +7795,0.2,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +7796,0.2,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +7797,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +7798,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +7799,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +7800,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +7801,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +7802,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +7803,0.2,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +7804,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +7805,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +7806,0.3,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +7807,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +7808,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +7809,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +7810,0.4,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +7811,0.4,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +7812,0.4,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +7813,0.4,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,,,, +7814,0.4,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,,,, +7815,0.4,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +7816,0.4,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +7817,0.4,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +7818,0.4,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +7819,0.4,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +7820,0.4,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +7821,0.4,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +7822,0.4,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +7823,0.4,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +7824,0.4,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +7825,0.4,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +7826,0.4,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +7827,0.4,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +7828,0.4,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +7829,0.4,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +7830,0.4,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,,,, +7831,0.5,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,,,,, +7832,0.5,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,,,,, +7833,0.5,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,,,,, +7834,0.5,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,,,,, +7835,0.5,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,,,,, +7836,0.5,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,,,, +7837,0.6,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,0.4,,,,, +7838,0.6,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,0.4,,,,, +7839,0.5,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,,,,, +7840,0.5,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,,,, +7841,0.5,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,,,, +7842,0.5,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,,,, +7843,0.5,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,,,, +7844,0.5,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,,,, +7845,0.5,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,,,, +7846,0.5,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,,,, +7847,0.5,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,,,, +7848,0.5,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,,,, +7849,0.5,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,,,,, +7850,0.5,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,,,,, +7851,0.4,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +7852,0.4,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,,,, +7853,0.4,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,,,, +7854,0.3,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +7855,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +7856,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +7857,0.3,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,,,, +7858,0.2,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +7859,0.2,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +7860,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +7861,0.2,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +7862,0.2,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +7863,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +7864,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +7865,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +7866,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +7867,0.1,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +7868,0.1,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +7869,0.1,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +7870,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +7871,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +7872,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +7873,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +7874,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +7875,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +7876,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +7877,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +7878,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +7879,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +7880,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +7881,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +7882,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,, +7883,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,, +7884,0.0,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +7885,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +7886,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +7887,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +7888,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +7889,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +7890,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +7891,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +7892,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +7893,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +7894,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +7895,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +7896,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +7897,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +7898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +7899,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +7900,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +7901,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +7902,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +7903,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +7904,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +7905,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +7906,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +7907,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +7908,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +7909,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +7910,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +7911,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +7912,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +7913,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +7914,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +7915,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +7916,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +7917,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +7918,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +7919,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +7920,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +7921,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +7922,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +7923,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +7924,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +7925,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +7926,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +7927,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +7928,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +7929,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +7930,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +7931,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +7932,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +7933,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +7934,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +7935,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +7936,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +7937,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +7938,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +7939,0.0,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +7940,0.0,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +7941,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +7942,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,, +7943,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,, +7944,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,, +7945,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,, +7946,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,, +7947,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,, +7948,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,, +7949,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,, +7950,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,, +7951,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,, +7952,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,, +7953,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +7954,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +7955,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +7956,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +7957,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +7958,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +7959,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +7960,0.1,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +7961,0.1,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +7962,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,, +7963,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +7964,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +7965,0.2,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +7966,0.2,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +7967,0.2,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +7968,0.2,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +7969,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +7970,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +7971,0.3,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,,,, +7972,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +7973,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +7974,0.3,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +7975,0.4,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,,,, +7976,0.4,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,,,, +7977,0.4,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +7978,0.4,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +7979,0.4,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +7980,0.4,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,,,, +7981,0.5,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,,,,, +7982,0.5,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,,,,, +7983,0.4,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,,,, +7984,0.4,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +7985,0.4,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +7986,0.4,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,,,, +7987,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +7988,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +7989,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +7990,0.3,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,,,, +7991,0.3,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,,,, +7992,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +7993,0.2,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +7994,0.2,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +7995,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +7996,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +7997,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +7998,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +7999,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +8000,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +8001,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +8002,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +8003,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +8004,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +8005,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +8006,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +8007,0.3,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +8008,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +8009,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +8010,0.3,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +8011,0.4,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +8012,0.4,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +8013,0.4,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +8014,0.4,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +8015,0.4,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +8016,0.5,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,,,,, +8017,0.5,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,,,, +8018,0.5,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,,,, +8019,0.5,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,,,,, +8020,0.6,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,,,,, +8021,0.6,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,,,,, +8022,0.7,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,,,, +8023,0.7,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,,,,, +8024,0.7,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,,,,, +8025,0.7,0.9,0.9,0.9,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,,,,, +8026,0.7,0.9,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.5,0.5,,,,, +8027,0.7,0.9,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.5,0.5,,,,, +8028,0.8,1.0,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,,,,, +8029,0.8,1.0,0.9,0.9,0.9,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,,,,, +8030,0.8,1.0,0.9,0.9,0.9,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,,,,, +8031,0.8,1.0,0.9,0.9,0.9,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,,,,, +8032,0.8,1.0,0.9,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.6,0.6,0.6,0.5,,,,, +8033,0.8,1.0,0.9,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.6,0.6,0.6,0.5,,,,, +8034,0.8,1.0,1.0,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.6,0.6,0.6,0.5,,,,, +8035,0.8,1.0,1.0,0.9,0.9,0.9,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.5,,,,, +8036,0.8,1.0,1.0,0.9,0.9,0.9,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.5,,,,, +8037,0.8,1.0,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,,,,, +8038,0.7,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,,,,, +8039,0.7,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,,,,, +8040,0.7,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,,,,, +8041,0.6,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,,,, +8042,0.6,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,,,, +8043,0.5,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,,,, +8044,0.4,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,,,, +8045,0.4,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,,,, +8046,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +8047,0.3,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,,,, +8048,0.3,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,,,, +8049,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +8050,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8051,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8052,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8053,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +8054,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +8055,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +8056,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +8057,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +8058,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +8059,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +8060,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +8061,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,, +8062,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8063,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8064,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8065,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8066,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8067,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8068,0.1,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8069,0.1,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8070,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8071,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8072,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8073,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8074,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8075,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8076,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8077,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8078,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8079,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8080,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8081,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8082,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8083,0.1,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8084,0.1,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8085,0.1,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8086,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,, +8087,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,, +8088,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +8089,0.2,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +8090,0.2,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +8091,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,,,, +8092,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +8093,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +8094,0.3,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +8095,0.3,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +8096,0.3,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +8097,0.4,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +8098,0.4,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +8099,0.4,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +8100,0.4,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +8101,0.4,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,,,, +8102,0.4,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,,,, +8103,0.5,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,,,, +8104,0.6,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,,,,, +8105,0.6,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,,,,, +8106,0.6,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,,,,, +8107,0.6,0.8,0.8,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,,,, +8108,0.6,0.8,0.8,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,,,, +8109,0.6,0.8,0.8,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,,,, +8110,0.6,0.8,0.8,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,,,, +8111,0.6,0.8,0.8,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,,,, +8112,0.6,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,,,, +8113,0.6,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,,,,, +8114,0.6,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,,,,, +8115,0.7,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,,,, +8116,0.7,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,,,,, +8117,0.7,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,,,,, +8118,0.7,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,,,,, +8119,0.7,0.9,0.9,0.9,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,,,,, +8120,0.7,0.9,0.9,0.9,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,,,,, +8121,0.7,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,,,,, +8122,0.7,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,,,,, +8123,0.7,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,,,,, +8124,0.7,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,,,,, +8125,0.7,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,,,,, +8126,0.7,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,,,,, +8127,0.6,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,,,,, +8128,0.6,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,0.4,,,,, +8129,0.6,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,0.4,,,,, +8130,0.5,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,,,, +8131,0.4,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,,,, +8132,0.4,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,,,, +8133,0.4,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,,,, +8134,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +8135,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +8136,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +8137,0.2,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +8138,0.2,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +8139,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +8140,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8141,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8142,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8143,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8144,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8145,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,, +8146,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +8147,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +8148,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +8149,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +8150,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +8151,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +8152,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +8153,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +8154,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +8155,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +8156,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +8157,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +8158,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +8159,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +8160,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8161,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8162,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8163,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8164,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8165,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8166,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +8167,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +8168,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +8169,0.0,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +8170,0.0,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +8171,0.0,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +8172,0.0,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +8173,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +8174,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +8175,0.0,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +8176,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +8177,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +8178,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +8179,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,, +8180,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,, +8181,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +8182,0.0,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +8183,0.0,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +8184,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,, +8185,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,, +8186,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,, +8187,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +8188,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8189,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8190,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8191,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8192,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8193,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8194,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8195,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8196,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +8197,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,, +8198,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,, +8199,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +8200,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +8201,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +8202,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8203,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8204,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8205,0.1,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8206,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8207,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8208,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +8209,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +8210,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +8211,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +8212,0.4,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +8213,0.4,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +8214,0.5,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,,,,, +8215,0.5,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,,,, +8216,0.5,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,,,, +8217,0.6,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,,,,, +8218,0.6,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,,,,, +8219,0.6,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,,,,, +8220,0.7,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,,,,, +8221,0.8,1.0,1.0,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.5,,,,, +8222,0.8,1.0,1.0,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.5,,,,, +8223,0.7,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,,,,, +8224,0.6,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,,,, +8225,0.6,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,,,, +8226,0.6,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,,,,, +8227,0.5,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,,,, +8228,0.5,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,,,, +8229,0.5,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,,,, +8230,0.5,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,,,,, +8231,0.5,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,,,,, +8232,0.4,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,,,, +8233,0.4,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +8234,0.4,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +8235,0.4,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +8236,0.4,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +8237,0.4,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +8238,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +8239,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +8240,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +8241,0.2,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +8242,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8243,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8244,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +8245,0.2,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +8246,0.2,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +8247,0.2,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +8248,0.3,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +8249,0.3,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +8250,0.4,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +8251,0.4,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,,,, +8252,0.4,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,,,, +8253,0.5,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,,,, +8254,0.6,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,,,,, +8255,0.6,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,,,,, +8256,0.6,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,,,,, +8257,0.6,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,,,, +8258,0.6,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,,,, +8259,0.7,0.9,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.5,0.5,,,,, +8260,0.8,1.1,1.0,1.0,0.9,0.9,0.9,0.8,0.8,0.7,0.7,0.7,0.6,0.6,,,,, +8261,0.8,1.1,1.0,1.0,0.9,0.9,0.9,0.8,0.8,0.7,0.7,0.7,0.6,0.6,,,,, +8262,0.9,1.1,1.1,1.0,1.0,1.0,0.9,0.9,0.8,0.8,0.7,0.7,0.7,0.6,,,,, +8263,0.9,1.2,1.1,1.1,1.0,1.0,1.0,0.9,0.9,0.8,0.8,0.7,0.7,0.6,,,,, +8264,0.9,1.2,1.1,1.1,1.0,1.0,1.0,0.9,0.9,0.8,0.8,0.7,0.7,0.6,,,,, +8265,0.9,1.2,1.1,1.1,1.0,1.0,1.0,0.9,0.9,0.8,0.8,0.7,0.7,0.6,,,,, +8266,0.9,1.2,1.1,1.1,1.1,1.0,1.0,0.9,0.9,0.8,0.8,0.7,0.7,0.6,,,,, +8267,0.9,1.2,1.1,1.1,1.1,1.0,1.0,0.9,0.9,0.8,0.8,0.7,0.7,0.6,,,,, +8268,1.0,1.2,1.2,1.1,1.1,1.0,1.0,0.9,0.9,0.8,0.8,0.7,0.7,0.6,,,,, +8269,1.0,1.2,1.2,1.1,1.1,1.0,1.0,0.9,0.9,0.8,0.8,0.7,0.7,0.7,,,,, +8270,1.0,1.2,1.2,1.1,1.1,1.0,1.0,0.9,0.9,0.8,0.8,0.7,0.7,0.7,,,,, +8271,1.0,1.2,1.2,1.1,1.1,1.1,1.0,1.0,0.9,0.9,0.8,0.8,0.7,0.7,,,,, +8272,1.0,1.3,1.2,1.2,1.1,1.1,1.0,1.0,0.9,0.9,0.8,0.8,0.7,0.7,,,,, +8273,1.0,1.3,1.2,1.2,1.1,1.1,1.0,1.0,0.9,0.9,0.8,0.8,0.7,0.7,,,,, +8274,1.0,1.2,1.2,1.1,1.1,1.0,1.0,0.9,0.9,0.9,0.8,0.8,0.7,0.7,,,,, +8275,0.9,1.2,1.1,1.1,1.0,1.0,1.0,0.9,0.9,0.8,0.8,0.7,0.7,0.6,,,,, +8276,0.9,1.2,1.1,1.1,1.0,1.0,1.0,0.9,0.9,0.8,0.8,0.7,0.7,0.6,,,,, +8277,0.9,1.1,1.1,1.0,1.0,1.0,0.9,0.9,0.8,0.8,0.7,0.7,0.7,0.6,,,,, +8278,0.9,1.1,1.0,1.0,0.9,0.9,0.9,0.8,0.8,0.7,0.7,0.7,0.6,0.6,,,,, +8279,0.9,1.1,1.0,1.0,0.9,0.9,0.9,0.8,0.8,0.7,0.7,0.7,0.6,0.6,,,,, +8280,0.8,1.0,1.0,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.5,,,,, +8281,0.7,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,,,,, +8282,0.7,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,,,,, +8283,0.7,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,,,,, +8284,0.7,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,,,, +8285,0.7,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,,,, +8286,0.6,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,,,,, +8287,0.5,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,,,, +8288,0.5,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,,,, +8289,0.5,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,,,,, +8290,0.4,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +8291,0.4,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +8292,0.4,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +8293,0.4,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +8294,0.4,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +8295,0.4,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +8296,0.4,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +8297,0.4,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +8298,0.4,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +8299,0.4,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +8300,0.4,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +8301,0.3,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +8302,0.3,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,,,, +8303,0.3,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,,,, +8304,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +8305,0.2,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +8306,0.2,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +8307,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +8308,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,, +8309,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,, +8310,0.1,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8311,0.1,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8312,0.1,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8313,0.1,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8314,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8315,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8316,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +8317,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +8318,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +8319,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,, +8320,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8321,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8322,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8323,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,, +8324,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,, +8325,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8326,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8327,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8328,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8329,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,, +8330,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,, +8331,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +8332,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +8333,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +8334,0.2,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +8335,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +8336,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +8337,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +8338,0.2,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +8339,0.2,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +8340,0.3,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,,,, +8341,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +8342,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +8343,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +8344,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +8345,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +8346,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +8347,0.4,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +8348,0.4,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +8349,0.4,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +8350,0.4,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +8351,0.4,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +8352,0.4,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +8353,0.4,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +8354,0.4,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +8355,0.4,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +8356,0.4,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +8357,0.4,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +8358,0.4,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +8359,0.4,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +8360,0.4,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +8361,0.4,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,,,, +8362,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +8363,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +8364,0.3,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +8365,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +8366,0.3,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +8367,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +8368,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +8369,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +8370,0.1,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8371,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8372,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8373,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,, +8374,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +8375,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +8376,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +8377,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +8378,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +8379,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8380,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +8381,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +8382,0.3,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +8383,0.4,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +8384,0.4,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +8385,0.5,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,,,, +8386,0.6,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,,,, +8387,0.6,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,,,, +8388,0.7,0.9,0.9,0.9,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,,,,, +8389,0.8,1.0,1.0,1.0,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.6,0.6,0.6,,,,, +8390,0.8,1.0,1.0,1.0,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.6,0.6,0.6,,,,, +8391,0.8,1.0,0.9,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.6,0.6,0.6,0.5,,,,, +8392,0.7,0.9,0.9,0.9,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,,,,, +8393,0.7,0.9,0.9,0.9,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,,,,, +8394,0.7,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,,,, +8395,0.6,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,,,,, +8396,0.6,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,,,,, +8397,0.5,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,,,,, +8398,0.3,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +8399,0.3,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +8400,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +8401,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +8402,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +8403,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8404,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,, +8405,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,, +8406,0.0,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +8407,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +8408,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +8409,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +8410,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +8411,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +8412,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +8413,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +8414,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +8415,0.0,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +8416,0.0,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +8417,0.0,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +8418,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,, +8419,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +8420,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +8421,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +8422,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8423,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8424,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8425,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8426,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8427,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8428,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,, +8429,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,, +8430,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +8431,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8432,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8433,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8434,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8435,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8436,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8437,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8438,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8439,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +8440,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +8441,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +8442,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8443,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8444,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8445,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8446,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8447,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8448,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8449,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8450,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8451,0.1,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8452,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8453,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8454,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,, +8455,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,, +8456,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,, +8457,0.1,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8458,0.1,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8459,0.1,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8460,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8461,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +8462,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +8463,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,, +8464,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,, +8465,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,, +8466,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8467,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8468,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8469,0.2,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +8470,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +8471,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +8472,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +8473,0.4,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +8474,0.4,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +8475,0.3,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +8476,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +8477,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +8478,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +8479,0.2,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +8480,0.2,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +8481,0.2,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +8482,0.2,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +8483,0.2,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +8484,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +8485,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8486,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8487,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8488,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8489,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8490,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8491,0.1,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8492,0.1,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8493,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +8494,0.2,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +8495,0.2,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +8496,0.2,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,,,, +8497,0.2,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +8498,0.2,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +8499,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +8500,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +8501,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +8502,0.1,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8503,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8504,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8505,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +8506,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,, +8507,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,, +8508,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +8509,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +8510,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +8511,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +8512,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +8513,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +8514,0.0,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +8515,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +8516,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +8517,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8518,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8519,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8520,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8521,0.1,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8522,0.1,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8523,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8524,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +8525,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +8526,0.2,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +8527,0.2,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +8528,0.2,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +8529,0.2,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +8530,0.2,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +8531,0.2,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +8532,0.2,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +8533,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +8534,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +8535,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +8536,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +8537,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +8538,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +8539,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +8540,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +8541,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +8542,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +8543,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +8544,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +8545,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +8546,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +8547,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +8548,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8549,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8550,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,, +8551,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +8552,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +8553,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +8554,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +8555,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +8556,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +8557,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +8558,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,, +8559,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +8560,0.4,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +8561,0.4,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +8562,0.4,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +8563,0.4,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +8564,0.4,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +8565,0.4,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +8566,0.4,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,,,, +8567,0.4,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,,,, +8568,0.5,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,,,,, +8569,0.5,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,,,, +8570,0.5,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,,,, +8571,0.5,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,,,, +8572,0.6,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,,,,, +8573,0.6,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,,,,, +8574,0.6,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,,,,, +8575,0.6,0.8,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,,,,, +8576,0.6,0.8,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,,,,, +8577,0.6,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,,,, +8578,0.7,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,,,, +8579,0.7,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,,,, +8580,0.7,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,,,,, +8581,0.7,0.9,0.9,0.9,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,,,,, +8582,0.7,0.9,0.9,0.9,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,,,,, +8583,0.7,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,,,,, +8584,0.7,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,,,,, +8585,0.7,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,,,,, +8586,0.6,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,,,, +8587,0.6,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,,,, +8588,0.6,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,,,, +8589,0.6,0.8,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,,,,, +8590,0.6,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,,,,, +8591,0.6,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,,,,, +8592,0.6,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,,,,, +8593,0.6,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,,,,, +8594,0.6,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,,,,, +8595,0.5,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,,,, +8596,0.5,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,,,, +8597,0.5,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,,,, +8598,0.5,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,,,,, +8599,0.4,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +8600,0.4,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +8601,0.4,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +8602,0.4,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +8603,0.4,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,,,, +8604,0.4,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +8605,0.4,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,,,, +8606,0.4,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,,,, +8607,0.4,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.2,,,,, +8608,0.3,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +8609,0.3,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,,,, +8610,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,,,, +8611,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +8612,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +8613,0.2,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +8614,0.2,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +8615,0.2,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +8616,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,, +8617,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8618,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8619,0.1,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8620,0.1,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8621,0.1,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8622,0.1,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8623,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8624,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8625,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8626,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8627,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8628,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,, +8629,0.0,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +8630,0.0,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +8631,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,, +8632,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8633,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8634,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8635,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8636,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8637,0.1,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8638,0.1,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8639,0.1,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8640,0.1,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8641,0.1,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8642,0.1,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8643,0.1,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8644,0.1,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8645,0.1,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8646,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8647,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8648,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8649,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8650,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8651,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8652,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8653,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8654,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8655,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8656,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8657,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8658,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8659,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8660,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8661,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8662,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8663,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8664,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8665,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +8666,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,, +8667,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8668,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8669,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8670,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8671,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8672,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8673,0.1,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8674,0.1,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8675,0.1,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8676,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8677,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8678,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8679,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8680,0.1,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8681,0.1,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8682,0.1,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8683,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8684,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8685,0.1,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8686,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8687,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8688,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8689,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8690,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8691,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8692,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8693,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8694,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8695,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8696,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8697,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8698,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8699,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8700,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +8701,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +8702,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +8703,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +8704,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +8705,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +8706,0.0,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +8707,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +8708,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +8709,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +8710,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +8711,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +8712,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +8713,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +8714,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +8715,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +8716,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +8717,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +8718,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +8719,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +8720,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +8721,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +8722,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +8723,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +8724,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +8725,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +8726,0.0,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +8727,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,, +8728,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,, +8729,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,, +8730,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8731,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8732,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8733,0.1,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,, +8734,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,, +8735,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,, +8736,0.2,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,, +8737,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +8738,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +8739,0.3,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,,,, +8740,0.3,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +8741,0.3,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +8742,0.3,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +8743,0.3,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +8744,0.3,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +8745,0.3,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,, +8746,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,,,, +8747,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,,,, +8748,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +8749,0.2,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +8750,0.2,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +8751,0.2,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +8752,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +8753,0.2,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +8754,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +8755,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +8756,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,,,, +8757,0.3,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,, +8758,0.4,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +8759,0.4,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, +8760,0.4,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,,,, diff --git a/emlab-generation/src/main/resources/data/multiNodeProduction_NL_solarPV.csv b/emlab-generation/src/main/resources/data/multiNodeProduction_NL_solarPV.csv new file mode 100644 index 00000000..f02a9799 --- /dev/null +++ b/emlab-generation/src/main/resources/data/multiNodeProduction_NL_solarPV.csv @@ -0,0 +1,8761 @@ +hour,nl_node_0,nl_node_1,nl_node_2,nl_node_3,nl_node_4,nl_node_5,nl_node_6,nl_node_7,nl_node_8,nl_node_9,nl_node_10,nl_node_11,nl_node_12,nl_node_13,nl_node_14,nl_node_15,nl_node_16,nl_node_17,nl_node_18 +1,2.03170767293573E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6,0.0033276587,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7,0.0066553174,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8,0.0099827402,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +9,0.0573963317,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +10,0.1048096872,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +11,0.1522232787,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +12,0.1607231791,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +13,0.1692233154,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +14,0.1777232157,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +15,0.1361178069,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +16,0.0945123981,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +17,0.0529067533,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +18,0.0353901767,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +19,0.0178736002,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +20,0.0003570237,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +21,0.0002380944,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +22,0.0001189292,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +23,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +24,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +25,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +26,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +27,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +28,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +29,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +30,0.0025338533,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +31,0.0050674706,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +32,0.007601324,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +33,0.0389535702,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +34,0.0703060524,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +35,0.1016582986,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +36,0.1020627524,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +37,0.1024672061,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +38,0.1028716599,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +39,0.0776386057,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +40,0.0524053155,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +41,0.0271722614,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +42,0.0181475622,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +43,0.009123099,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +44,9.86357499752772E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +45,6.77235890978578E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +46,3.68114282204384E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +47,0.000006088,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +48,4.05869593199705E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +49,2.03170767293573E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +50,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +51,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +52,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +53,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +54,0.0032068417,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +55,0.0064136835,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +56,0.0096205252,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +57,0.0602275081,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +58,0.110834255,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +59,0.1614412379,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +60,0.1716634883,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +61,0.1818857388,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +62,0.1921082252,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +63,0.1473566191,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +64,0.102605013,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +65,0.0578534069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +66,0.0387017894,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +67,0.019550172,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +68,0.0003985545,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +69,0.0002777375,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +70,0.0001569205,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +71,3.63394868329969E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +72,3.02042487962571E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +73,0.000024305,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +74,1.82877287633588E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +75,1.21760877959912E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +76,0.000006088,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +77,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +78,0.004049729,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +79,0.0080996941,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +80,0.0121494231,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +81,0.0636792874,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +82,0.1152089157,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +83,0.1667387799,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +84,0.1653998822,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +85,0.1640612205,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +86,0.1627223228,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +87,0.1223817169,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +88,0.0820411109,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +89,0.041700505,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +90,0.0278820612,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +91,0.0140633814,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +92,0.0002449376,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +93,0.0001632917,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +94,8.16458600273826E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +95,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +96,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +97,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +98,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +99,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +100,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +101,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +102,0.0010498336,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +103,0.0020996672,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +104,0.0031497368,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +105,0.0227183145,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +106,0.0422868922,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +107,0.0618554699,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +108,0.0701571549,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +109,0.0784586039,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +110,0.0867600529,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +111,0.0674951695,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +112,0.0482300501,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +113,0.0289651667,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +114,0.0194015104,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +115,0.0098378542,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +116,0.0002741979,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +117,0.0001835852,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +118,9.2972453325979E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +119,2.43049814532382E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +120,1.62583807973603E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +121,8.1173918639941E-007,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +122,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +123,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +124,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +125,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +126,0.00220609,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +127,0.00441218,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +128,0.00661827,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +129,0.0423470647,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +130,0.0780758594,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +131,0.1138046541,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +132,0.1298534929,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +133,0.1459023317,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +134,0.1619511705,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +135,0.1259847534,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +136,0.0900183362,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +137,0.054052155,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +138,0.036112719,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +139,0.018173283,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +140,0.000233847,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +141,0.0001559766,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +142,7.78703289278504E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +143,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +144,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +145,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +146,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +147,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +148,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +149,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +150,0.0025418763,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +151,0.0050835167,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +152,0.007625393,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +153,0.0486451225,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +154,0.0896646161,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +155,0.1306843457,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +156,0.1454804161,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +157,0.1602764865,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +158,0.1750727929,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +159,0.1357046222,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +160,0.0963366875,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +161,0.0569687528,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +162,0.0381352238,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +163,0.0193014589,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +164,0.0004679299,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +165,0.0003199763,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +166,0.0001720226,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +167,0.000024069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +168,2.01754943131249E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +169,0.000016164,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +170,1.21760877959912E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +171,8.1173918639941E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +172,4.05869593199705E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +173,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +174,0.0039274962,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +175,0.0078547565,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +176,0.0117822527,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +177,0.0656102356,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +178,0.1194379825,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +179,0.1732657293,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +180,0.1861244803,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +181,0.1989832314,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +182,0.2118417464,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +183,0.1629677323,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +184,0.1140937182,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +185,0.0652194681,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +186,0.0436364086,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +187,0.0220533491,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +188,0.0004702896,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +189,0.0003176166,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +190,0.0001649435,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +191,1.20816995185029E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +192,1.00759486218764E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +193,8.09379479462203E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +194,0.000006088,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +195,4.05869593199705E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +196,2.03170767293573E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +197,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +198,0.00227051,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +199,0.00454102,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +200,0.00681153,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +201,0.03866545,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +202,0.0705193699,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +203,0.1023732898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +204,0.1010761589,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +205,0.099779028,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +206,0.0984818971,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +207,0.073988847,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +208,0.0494957969,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +209,0.0250027468,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +210,0.0167525034,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +211,0.0085022601,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +212,0.0002522527,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +213,0.0001722586,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +214,9.20285705510959E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +215,1.20816995185029E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +216,1.00759486218764E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +217,8.09379479462203E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +218,0.000006088,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +219,4.05869593199705E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +220,2.03170767293573E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +221,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +222,0.0008662484,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +223,0.0017327328,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +224,0.0025989812,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +225,0.0191209413,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +226,0.0356429013,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +227,0.0521648614,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +228,0.0633560075,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +229,0.0745471536,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +230,0.0857382998,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +231,0.0673962977,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +232,0.0490545317,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +233,0.0307125297,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +234,0.0205464402,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +235,0.0103803508,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +236,0.0002142614,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +237,0.000144886,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +238,7.55106219906428E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +239,0.000006088,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +240,4.05869593199705E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +241,2.03170767293573E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +242,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +243,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +244,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +245,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +246,0.0018766749,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +247,0.0037535858,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +248,0.0056302608,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +249,0.0359458877,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +250,0.0662615147,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +251,0.0965771416,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +252,0.1021401507,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +253,0.1077031599,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +254,0.113266169,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +255,0.086815742,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +256,0.0603655509,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +257,0.0339151239,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +258,0.0227161908,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +259,0.0115170216,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +260,0.0003180885,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +261,0.0002241722,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +262,0.0001302558,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +263,3.63394868329969E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +264,3.02042487962571E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +265,0.000024305,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +266,1.82877287633588E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +267,1.21760877959912E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +268,0.000006088,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +269,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +270,0.0034008096,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +271,0.0068018552,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +272,0.0102026649,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +273,0.0569574262,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +274,0.1037121875,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +275,0.1504669488,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +276,0.1647712563,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +277,0.1790755638,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +278,0.1933798713,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +279,0.1494796474,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +280,0.1055794236,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +281,0.0616791998,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +282,0.0413054901,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +283,0.0209317804,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +284,0.0005580707,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +285,0.0003721258,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +286,0.0001859449,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +287,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +288,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +289,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +290,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +291,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +292,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +293,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +294,0.0039355192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +295,0.0078710385,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +296,0.0118065577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +297,0.0618316368,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +298,0.111856952,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +299,0.1618822671,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +300,0.1742173991,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +301,0.1865525312,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +302,0.1988876632,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +303,0.15319477,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +304,0.1075021128,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +305,0.0618092196,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +306,0.0414005863,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +307,0.0209921889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +308,0.0005837915,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +309,0.0003891157,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +310,0.0001946758,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +311,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +312,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +313,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +314,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +315,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +316,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +317,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +318,0.0023663141,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +319,0.0047326282,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +320,0.0070989423,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +321,0.0415952621,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +322,0.0760918178,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +323,0.1105881376,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +324,0.1390900938,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +325,0.1675922859,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +326,0.1960942422,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +327,0.1551521469,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +328,0.1142102877,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +329,0.0732684285,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +330,0.0491121085,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +331,0.0249557886,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +332,0.0007992327,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +333,0.0005337657,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +334,0.0002680627,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +335,2.43049814532382E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +336,1.62583807973603E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +337,8.1173918639941E-007,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +338,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +339,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +340,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +341,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +342,0.0051793208,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +343,0.0103588775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +344,0.0155381982,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +345,0.0735386149,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +346,0.1315390316,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +347,0.1895394482,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +348,0.1944377279,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +349,0.1993357716,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +350,0.2042340512,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +351,0.1553732515,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +352,0.1065124517,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +353,0.057651652,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +354,0.0385795566,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +355,0.0195072253,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +356,0.00043513,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +357,0.000290008,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +358,0.000145122,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +359,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +360,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +361,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +362,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +363,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +364,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +365,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +366,0.0029581286,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +367,0.0059160213,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +368,0.0088741499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +369,0.0446579257,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +370,0.0804414656,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +371,0.1162252415,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +372,0.1224520361,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +373,0.1286788308,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +374,0.1349056255,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +375,0.1036968494,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +376,0.0724880734,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +377,0.0412792973,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +378,0.0277989995,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +379,0.0143187017,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +380,0.0008384039,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +381,0.0005630261,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +382,0.0002874123,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +383,1.20816995185029E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +384,1.00759486218764E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +385,8.09379479462203E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +386,0.000006088,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +387,4.05869593199705E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +388,2.03170767293573E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +389,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +390,0.0002786814,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +391,0.0005571268,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +392,0.0008358082,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +393,0.0058964357,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +394,0.0109570632,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +395,0.0160179267,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +396,0.029204205,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +397,0.0423907193,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +398,0.0555769976,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +399,0.0454536189,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +400,0.0353300042,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +401,0.0252063895,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +402,0.0169955532,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +403,0.008784717,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +404,0.0005738807,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +405,0.0003907675,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +406,0.0002074182,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +407,0.000024069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +408,2.01754943131249E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +409,0.000016164,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +410,1.21760877959912E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +411,8.1173918639941E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +412,4.05869593199705E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +413,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +414,0.004838815,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +415,0.0096776301,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +416,0.0145164451,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +417,0.0556435414,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +418,0.0967704016,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +419,0.1378974979,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +420,0.1311451965,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +421,0.1243928951,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +422,0.1176405937,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +423,0.0872780085,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +424,0.0569156594,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +425,0.0265533102,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +426,0.0177756724,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +427,0.0089980345,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +428,0.0002206326,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +429,0.0001470097,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +430,7.36228564408768E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +431,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +432,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +433,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +434,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +435,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +436,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +437,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +438,0.0020876327,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +439,0.0041755014,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +440,0.0062631342,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +441,0.029897015,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +442,0.0535311317,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +443,0.0771650125,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +444,0.0864603701,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +445,0.0957554917,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +446,0.1050508493,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +447,0.0818544581,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +448,0.058658067,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +449,0.0354616759,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +450,0.0238597048,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +451,0.0122574977,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +452,0.0006555266,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +453,0.0004410292,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +454,0.0002265319,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +455,1.20816995185029E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +456,1.00759486218764E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +457,8.09379479462203E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +458,0.000006088,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +459,4.05869593199705E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +460,2.03170767293573E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +461,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +462,0.0035763718,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +463,0.0071527437,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +464,0.0107291155,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +465,0.0483522829,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +466,0.0859752143,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +467,0.1235981458,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +468,0.1387932426,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +469,0.1539885755,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +470,0.1691836723,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +471,0.1319387659,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +472,0.0946936236,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +473,0.0574487172,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +474,0.038664978,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +475,0.0198814748,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +476,0.0010979716,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +477,0.0007359926,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +478,0.0003740135,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +479,1.20816995185029E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +480,1.00759486218764E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +481,8.09379479462203E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +482,0.000006088,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +483,4.05869593199705E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +484,2.03170767293573E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +485,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +486,0.0046111033,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +487,0.0092219707,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +488,0.013833074,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +489,0.063561302,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +490,0.113289766,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +491,0.1630179941,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +492,0.1711129687,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +493,0.1792077074,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +494,0.187302682,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +495,0.1439010643,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +496,0.1004992105,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +497,0.0570975928,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +498,0.0384549641,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +499,0.0198123354,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +500,0.0011697067,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +501,0.0007798831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +502,0.0003898236,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +503,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +504,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +505,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +506,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +507,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +508,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +509,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +510,0.0063395887,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +511,0.0126791773,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +512,0.019018766,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +513,0.0864834952,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +514,0.1539482245,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +515,0.2214129537,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +516,0.2353798231,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +517,0.2493466925,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +518,0.2633133259,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +519,0.2031990838,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +520,0.1430846057,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +521,0.0829703635,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +522,0.055993014,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +523,0.0290159004,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +524,0.0020385508,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +525,0.0013591912,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +526,0.0006795956,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +527,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +528,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +529,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +530,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +531,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +532,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +533,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +534,0.0027825664,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +535,0.0055651328,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +536,0.0083476993,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +537,0.0345543685,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +538,0.0607610378,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +539,0.0869677071,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +540,0.0931345652,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +541,0.0993014233,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +542,0.1054682814,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +543,0.0815635063,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +544,0.0576587311,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +545,0.0337539559,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +546,0.0227732957,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +547,0.0117923994,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +548,0.0008115032,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +549,0.0005450923,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +550,0.0002786814,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +551,1.20816995185029E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +552,1.00759486218764E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +553,8.09379479462203E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +554,0.000006088,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +555,4.05869593199705E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +556,2.03170767293573E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +557,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +558,0.001465378,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +559,0.002930756,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +560,0.004396134,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +561,0.0247047158,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +562,0.0450135336,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +563,0.0653223513,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +564,0.0844838796,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +565,0.1036454078,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +566,0.122806936,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +567,0.0980252938,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +568,0.0732436515,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +569,0.0484620093,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +570,0.0327397539,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +571,0.0170174985,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +572,0.0012952431,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +573,0.0008636527,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +574,0.0004318264,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +575,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +576,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +577,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +578,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +579,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +580,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +581,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +582,0.0059393824,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +583,0.0118790007,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +584,0.0178183831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +585,0.0730454362,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +586,0.1282722533,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +587,0.1834993064,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +588,0.1985242684,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +589,0.2135492303,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +590,0.2285741923,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +591,0.1774166898,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +592,0.1262591873,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +593,0.0751019207,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +594,0.0507747581,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +595,0.0264473594,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +596,0.0021201967,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +597,0.001417476,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +598,0.0007147552,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +599,1.20816995185029E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +600,1.00759486218764E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +601,8.09379479462203E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +602,0.000006088,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +603,4.05869593199705E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +604,2.03170767293573E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +605,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +606,0.0109964703,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +607,0.0219929406,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +608,0.0329894109,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +609,0.1238183064,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +610,0.214647202,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +611,0.3054760975,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +612,0.3347796462,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +613,0.3640831948,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +614,0.3933867435,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +615,0.3070129747,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +616,0.2206392058,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +617,0.134265437,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +618,0.0910769007,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +619,0.0478883645,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +620,0.0047000643,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +621,0.0031332189,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +622,0.0015666094,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +623,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +624,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +625,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +626,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +627,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +628,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +629,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +630,0.0023356379,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +631,0.0046712759,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +632,0.0070071498,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +633,0.0209339041,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +634,0.0348606585,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +635,0.0487874129,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +636,0.051000818,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +637,0.0532142231,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +638,0.0554278642,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +639,0.0427854983,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +640,0.0301433684,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +641,0.0175010025,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +642,0.0118450209,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +643,0.0061888034,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +644,0.0005325859,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +645,0.0003548999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +646,0.00017745,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +647,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +648,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +649,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +650,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +651,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +652,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +653,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +654,0.00470266,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +655,0.0094055559,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +656,0.0141082158,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +657,0.0486845296,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +658,0.0832606075,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +659,0.1178369213,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +660,0.1549515719,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +661,0.1920664584,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +662,0.2291813449,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +663,0.1844101533,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +664,0.1396391976,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +665,0.0948682419,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +666,0.0644945661,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +667,0.0341208904,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +668,0.0037469786,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +669,0.0024979858,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +670,0.0012489929,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +671,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +672,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +673,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +674,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +675,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +676,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +677,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +678,0.0005224391,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +679,0.0010451142,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +680,0.0015675533,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +681,0.0047625965,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +682,0.0079578757,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +683,0.0111529189,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +684,0.0272416367,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +685,0.0433305906,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +686,0.0594193084,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +687,0.0497164295,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +688,0.0400133146,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +689,0.0303104356,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +690,0.0207064284,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +691,0.0111026571,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +692,0.0014988858,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +693,0.0009990999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +694,0.00049955,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +695,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +696,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +697,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +698,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +699,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +700,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +701,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +702,0.0058282402,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +703,0.0116567163,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +704,0.0174849565,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +705,0.0809738155,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +706,0.1444624385,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +707,0.2079512976,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +708,0.23629067,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +709,0.2646300424,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +710,0.2929694148,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +711,0.2314645974,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +712,0.1699600159,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +713,0.1084554344,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +714,0.0742097156,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +715,0.0399642327,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +716,0.0057187498,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +717,0.0038123425,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +718,0.0019061713,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +719,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +720,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +721,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +722,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +723,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +724,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +725,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +726,0.007705859,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +727,0.0154119539,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +728,0.0231178129,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +729,0.0854393249,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +730,0.1477610729,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +731,0.2100828209,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +732,0.2208777722,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +733,0.2316724875,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +734,0.2424674389,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +735,0.1876285576,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +736,0.1327894403,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +737,0.077950559,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +738,0.052997602,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +739,0.028044409,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +740,0.0030914521,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +741,0.002060968,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +742,0.001030484,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +743,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +744,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +745,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +746,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +747,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +748,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +749,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +750,0.005362906,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +751,0.0107260479,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +752,0.0160889538,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +753,0.0685065399,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +754,0.1209243619,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +755,0.1733419479,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +756,0.1987562276,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +757,0.2241707432,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +758,0.2495850229,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +759,0.1971162312,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +760,0.1446472036,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +761,0.092178176,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +762,0.0628505583,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +763,0.0335231766,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +764,0.0041955589,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +765,0.0027969606,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +766,0.0013985983,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +767,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +768,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +769,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +770,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +771,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +772,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +773,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +774,0.0008768671,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +775,0.0017534982,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +776,0.0026303653,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +777,0.0070814805,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +778,0.0115325957,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +779,0.0159837109,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +780,0.0176952064,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +781,0.0194069378,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +782,0.0211184332,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +783,0.0166977582,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +784,0.0122768473,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +785,0.0078561723,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +786,0.0053942901,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +787,0.0029324078,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +788,0.0004702896,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +789,0.0003136051,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +790,0.0001566845,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +791,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +792,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +793,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +794,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +795,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +796,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +797,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +798,0.0133250291,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +799,0.0266498222,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +800,0.0399748513,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +801,0.1303261422,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +802,0.220677669,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +803,0.3110289599,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +804,0.3358946077,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +805,0.3607600196,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +806,0.3856256674,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +807,0.302863194,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +808,0.2201007207,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +809,0.1373380114,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +810,0.0943873336,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +811,0.0514366558,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +812,0.0084859781,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +813,0.0056573974,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +814,0.0028285807,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +815,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +816,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +817,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +818,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +819,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +820,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +821,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +822,0.0018405714,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +823,0.0036811428,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +824,0.0055214783,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +825,0.0282636258,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +826,0.0510055374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +827,0.073747449,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +828,0.1193093784,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +829,0.1648710719,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +830,0.2104330014,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +831,0.1726637681,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +832,0.1348945348,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +833,0.0971253016,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +834,0.0662676499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +835,0.0354099983,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +836,0.0045525826,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +837,0.0030430781,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +838,0.0015335735,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +839,0.000024069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +840,2.01754943131249E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +841,0.000016164,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +842,1.21760877959912E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +843,8.1173918639941E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +844,4.05869593199705E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +845,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +846,0.0068556566,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +847,0.0137113131,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +848,0.0205672057,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +849,0.0565265437,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +850,0.0924858818,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +851,0.1284454558,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +852,0.138403891,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +853,0.1483625622,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +854,0.1583212334,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +855,0.123000196,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +856,0.0876789228,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +857,0.0523578854,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +858,0.035331656,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +859,0.0183056625,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +860,0.0012794331,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +861,0.0008530341,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +862,0.000426399,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +863,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +864,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +865,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +866,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +867,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +868,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +869,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +870,0.0057937884,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +871,0.0115875769,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +872,0.0173811294,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +873,0.060759622,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +874,0.1041378786,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +875,0.1475163713,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +876,0.1610790229,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +877,0.1746416745,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +878,0.188204326,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +879,0.1482518919,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +880,0.1082994578,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +881,0.0683470237,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +882,0.0470299031,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +883,0.0257125466,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +884,0.0043954261,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +885,0.0029302841,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +886,0.001465142,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +887,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +888,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +889,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +890,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +891,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +892,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +893,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +894,0.0087790537,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +895,0.0175583433,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +896,0.026337397,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +897,0.0890435413,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +898,0.1517496855,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +899,0.2144558298,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +900,0.2397613269,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +901,0.2650668241,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +902,0.2903723213,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +903,0.2300464135,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +904,0.1697202697,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +905,0.1093943618,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +906,0.075301316,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +907,0.0412082702,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +908,0.0071152243,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +909,0.0047434829,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +910,0.0023717414,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +911,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +912,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +913,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +914,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +915,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +916,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +917,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +918,0.0150495029,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +919,0.0300990059,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +920,0.0451485088,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +921,0.1358886794,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +922,0.226628614,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +923,0.3173685485,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +924,0.3532790407,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +925,0.3891897687,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +926,0.4251002609,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +927,0.3379973426,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +928,0.2508944243,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +929,0.163791506,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +930,0.113282215,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +931,0.0627729239,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +932,0.012263397,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +933,0.0081756766,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +934,0.0040877203,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +935,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +936,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +937,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +938,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +939,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +940,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +941,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +942,0.0157137604,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +943,0.0314275209,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +944,0.0471412813,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +945,0.1366480331,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +946,0.2261545488,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +947,0.3156613006,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +948,0.3495698173,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +949,0.3834780981,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +950,0.4173866148,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +951,0.3314722809,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +952,0.2455577111,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +953,0.1596433772,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +954,0.1103575942,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +955,0.0610718112,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +956,0.0117857923,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +957,0.0078613637,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +958,0.0039366991,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +959,1.20816995185029E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +960,1.00759486218764E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +961,8.09379479462203E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +962,0.000006088,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +963,4.05869593199705E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +964,2.03170767293573E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +965,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +966,0.0117421377,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +967,0.0234840394,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +968,0.0352261771,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +969,0.1002184054,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +970,0.1652106337,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +971,0.230203098,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +972,0.2501921755,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +973,0.270181253,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +974,0.2901705664,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +975,0.2292346743,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +976,0.1682990182,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +977,0.1073631261,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +978,0.0741047086,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +979,0.0408462911,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +980,0.0075878736,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +981,0.0050627512,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +982,0.0025373929,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +983,1.20816995185029E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +984,1.00759486218764E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +985,8.09379479462203E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +986,0.000006088,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +987,4.05869593199705E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +988,2.03170767293573E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +989,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +990,0.0111986972,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +991,0.0223971584,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +992,0.0335958556,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +993,0.1088426623,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +994,0.1840894691,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +995,0.2593362758,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +996,0.2929427501,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +997,0.3265494603,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +998,0.3601559346,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +999,0.2888149148,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1000,0.2174738949,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +1001,0.1461328751,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +1002,0.101815691,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1003,0.057498271,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1004,0.013181087,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1005,0.0087873127,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1006,0.0043937743,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1007,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1008,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1009,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1010,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1011,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1012,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1013,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1014,0.0186331899,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1015,0.0372663797,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1016,0.0558995696,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1017,0.1518957514,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +1018,0.2478921691,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +1019,0.3438883509,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1020,0.376111329,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1021,0.4083340711,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1022,0.4405570492,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +1023,0.3482080305,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1024,0.2558590117,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1025,0.1635099929,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +1026,0.1126387229,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1027,0.0617674528,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1028,0.0108961828,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1029,0.0072641218,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1030,0.0036320609,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1031,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1032,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1033,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1034,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1035,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1036,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1037,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1038,0.0113516062,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1039,0.0227032124,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1040,0.0340545826,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1041,0.1039278647,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1042,0.1738011468,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +1043,0.243674429,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +1044,0.26849831,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1045,0.293322191,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1046,0.318146072,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1047,0.2527611884,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1048,0.1873763049,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +1049,0.1219916573,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1050,0.0845454679,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1051,0.0470995145,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1052,0.0096533251,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1053,0.0064356287,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1054,0.0032176964,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1055,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1056,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1057,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1058,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1059,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1060,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1061,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1062,0.0058162057,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1063,0.0116326473,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1064,0.0174488529,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1065,0.0646991527,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1066,0.1119494525,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1067,0.1591999882,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +1068,0.2190473475,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +1069,0.2788947068,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1070,0.3387420661,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1071,0.2769434651,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1072,0.2151448642,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +1073,0.1533464992,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +1074,0.1057172305,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1075,0.0580879618,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1076,0.0104589291,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1077,0.0069724621,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1078,0.003486231,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1079,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1080,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1081,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1082,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1083,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1084,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1085,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1086,0.0235541227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1087,0.0471082454,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1088,0.0706623681,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1089,0.1759720772,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +1090,0.2812817863,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1091,0.3865912595,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1092,0.419463157,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +1093,0.4523350544,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +1094,0.4852069519,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1095,0.3842980963,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1096,0.2833892406,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1097,0.1824803849,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +1098,0.1261966551,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1099,0.0699131612,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1100,0.0136294313,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1101,0.0090943105,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1102,0.0045591898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1103,0.000024069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1104,2.01754943131249E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1105,0.000016164,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1106,1.21760877959912E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1107,8.1173918639941E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1108,4.05869593199705E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1109,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1110,0.0180430272,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1111,0.0360860543,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1112,0.0541290815,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1113,0.1376232999,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1114,0.2211177544,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +1115,0.3046122088,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1116,0.3346054998,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1117,0.3645987908,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1118,0.3945923178,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1119,0.3180205356,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1120,0.2414487534,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +1121,0.1648769712,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +1122,0.1160367009,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1123,0.0671964306,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1124,0.0183561603,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1125,0.0122374402,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1126,0.0061187201,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1127,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1128,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1129,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1130,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1131,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1132,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1133,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1134,0.0277640759,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1135,0.0555283877,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1136,0.0832924635,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1137,0.1924586417,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +1138,0.3016250558,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1139,0.410791234,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1140,0.4473100585,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +1141,0.4838288831,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1142,0.5203479436,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1143,0.4129952002,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +1144,0.3056422209,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1145,0.1982894775,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +1146,0.1371763714,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1147,0.0760635013,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1148,0.0149503952,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1149,0.0099669302,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1150,0.0049834651,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1151,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1152,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1153,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1154,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1155,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1156,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1157,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1158,0.0061954106,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1159,0.0123910571,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1160,0.0185864677,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1161,0.0620565169,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1162,0.1055263302,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1163,0.1489963795,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +1164,0.193068154,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +1165,0.2371401645,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +1166,0.281211939,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1167,0.2307937327,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +1168,0.1803752904,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +1169,0.129957084,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1170,0.0906106227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1171,0.0512639253,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1172,0.0119174639,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1173,0.0079448973,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1174,0.0039725666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1175,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1176,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1177,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1178,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1179,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1180,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1181,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1182,0.0130463477,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1183,0.0260926954,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1184,0.0391390431,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1185,0.090253599,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1186,0.1413679189,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +1187,0.1924824747,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +1188,0.2232941121,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +1189,0.2541057494,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1190,0.2849173868,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1191,0.2294954219,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +1192,0.174073457,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +1193,0.1186514921,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1194,0.0822751939,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1195,0.0458991316,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1196,0.0095230693,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1197,0.0063485555,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1198,0.0031742778,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1199,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1200,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1201,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1202,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1203,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1204,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1205,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1206,0.0264204587,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1207,0.0528409174,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1208,0.0792611402,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1209,0.183333419,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +1210,0.2874054618,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1211,0.3914777406,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1212,0.4203492269,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +1213,0.4492209492,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +1214,0.4780924355,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1215,0.3801551588,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1216,0.2822178821,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1217,0.1842803694,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +1218,0.1283265265,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1219,0.0723726837,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1220,0.0164188409,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1221,0.0109457366,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1222,0.0054728683,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1223,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1224,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1225,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1226,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1227,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1228,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1229,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1230,0.0279325589,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1231,0.0558648819,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1232,0.0837974408,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1233,0.1813345112,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +1234,0.2788718176,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1235,0.376409124,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1236,0.3838884511,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1237,0.3913680142,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1238,0.3988475773,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1239,0.314296918,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1240,0.2297460228,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +1241,0.1451953635,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +1242,0.1016771762,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1243,0.058158989,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1244,0.0146408017,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1245,0.0097606918,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1246,0.0048803459,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1247,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1248,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1249,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1250,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1251,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1252,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1253,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1254,0.0153168577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1255,0.0306337155,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1256,0.0459505732,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1257,0.08583316,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1258,0.1257157468,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1259,0.1655983336,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +1260,0.1552729639,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +1261,0.1449473583,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +1262,0.1346219887,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1263,0.1017890264,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1264,0.068956064,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1265,0.0361228657,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1266,0.0248309601,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1267,0.0135390545,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1268,0.0022469129,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1269,0.001497942,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1270,0.000748971,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1271,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1272,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1273,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1274,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1275,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1276,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1277,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1278,0.0230460778,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1279,0.0460921556,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1280,0.0691382334,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1281,0.1712658777,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +1282,0.273393286,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1283,0.3755206944,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1284,0.414430138,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +1285,0.4533393457,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +1286,0.4922487894,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1287,0.3959902082,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1288,0.299731627,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1289,0.2034732817,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +1290,0.1426839274,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +1291,0.0818945731,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1292,0.0211052188,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1293,0.0140702246,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1294,0.0070349943,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1295,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1296,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1297,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1298,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1299,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1300,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1301,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1302,0.0101382449,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1303,0.0202764898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1304,0.0304147347,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1305,0.0941291817,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1306,0.1578438646,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +1307,0.2215585476,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +1308,0.2725744677,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1309,0.3235906238,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1310,0.3746065439,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1311,0.3049444556,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1312,0.2352821312,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +1313,0.1656198069,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +1314,0.1153096752,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1315,0.0649997794,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1316,0.0146896476,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1317,0.0097930198,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1318,0.0048966279,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1319,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1320,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1321,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1322,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1323,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1324,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1325,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1326,0.0034692411,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1327,0.0069387182,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1328,0.0104079594,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1329,0.0360874701,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1330,0.0617669809,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1331,0.0874467276,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1332,0.1273151561,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1333,0.1671838207,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +1334,0.2070524852,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +1335,0.1767529042,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +1336,0.1464535593,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +1337,0.1161542143,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1338,0.0829212816,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1339,0.049688349,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1340,0.0164554163,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1341,0.0109702776,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1342,0.0054851388,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1343,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1344,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1345,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1346,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1347,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1348,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1349,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1350,0.0251724097,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1351,0.0503448194,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1352,0.0755174651,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1353,0.1528672427,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +1354,0.2302170203,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +1355,0.3075667979,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1356,0.3122888074,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1357,0.317010817,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1358,0.3217328265,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1359,0.2524841588,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1360,0.1832352552,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +1361,0.1139865875,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1362,0.0793977672,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1363,0.044808947,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1364,0.0102198907,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1365,0.0068134178,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1366,0.0034067089,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1367,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1368,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1369,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1370,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1371,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1372,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1373,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1374,0.0316955836,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1375,0.0633911672,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1376,0.0950869867,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1377,0.1708493894,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +1378,0.2466117922,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +1379,0.3223741949,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1380,0.3182616976,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1381,0.3141492004,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1382,0.3100367031,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1383,0.2470296963,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +1384,0.1840226894,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +1385,0.1210156825,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1386,0.086469337,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1387,0.0519229914,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1388,0.0173766459,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1389,0.0115842733,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1390,0.0057921366,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1391,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1392,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1393,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1394,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1395,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1396,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1397,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1398,0.0035416841,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1399,0.0070836043,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1400,0.0106252884,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1401,0.0233249952,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1402,0.036024466,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1403,0.0487239368,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1404,0.0587600063,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1405,0.0687958399,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1406,0.0788316735,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1407,0.0636056645,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1408,0.0483796555,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1409,0.0331536465,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1410,0.0228457387,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1411,0.0125378309,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1412,0.0022299231,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1413,0.0014866154,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1414,0.0007433077,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1415,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1416,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1417,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1418,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1419,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1420,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1421,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1422,0.0222676105,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1423,0.044534985,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1424,0.0668025955,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1425,0.1826545313,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +1426,0.2985064671,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1427,0.4143584029,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +1428,0.4628397618,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +1429,0.5113211207,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1430,0.5598024796,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1431,0.4559354953,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +1432,0.352068747,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1433,0.2482017627,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +1434,0.176006293,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +1435,0.1038108233,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1436,0.0316153535,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1437,0.0210769024,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1438,0.0105384512,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1439,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1440,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1441,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1442,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1443,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1444,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1445,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1446,0.0458941762,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1447,0.0917883524,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1448,0.1376822926,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +1449,0.2711338666,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1450,0.4045854407,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1451,0.5380370147,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1452,0.573350737,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1453,0.6086642232,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1454,0.6439779454,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1455,0.5214695123,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1456,0.3989610792,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1457,0.2764524101,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1458,0.1962126994,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +1459,0.1159727528,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1460,0.0357328062,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1461,0.0238219494,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1462,0.0119108567,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1463,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1464,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1465,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1466,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1467,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1468,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1469,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1470,0.0463635219,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1471,0.0927270438,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1472,0.1390905657,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +1473,0.2713087209,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1474,0.4035268762,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1475,0.5357452673,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1476,0.5642859228,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1477,0.5928265782,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1478,0.6213672336,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1479,0.5007852652,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1480,0.3802032968,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1481,0.2596213284,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1482,0.1839511903,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +1483,0.1082810521,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1484,0.0326109139,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1485,0.0217406879,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1486,0.010870226,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1487,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1488,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1489,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1490,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1491,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1492,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1493,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1494,0.0448797382,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1495,0.0897592404,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1496,0.1346389786,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1497,0.2776244765,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1498,0.4206097386,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +1499,0.5635952365,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1500,0.5937048611,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1501,0.6238147216,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1502,0.6539243461,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1503,0.528815752,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1504,0.4037073937,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1505,0.2785987995,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1506,0.1983201537,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +1507,0.1180415079,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1508,0.0377628621,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1509,0.0251752414,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1510,0.0125876207,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1511,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1512,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1513,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1514,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1515,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1516,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1517,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1518,0.0472226912,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1519,0.0944451464,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1520,0.1416678376,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +1521,0.260728031,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1522,0.3797882244,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1523,0.4988484177,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1524,0.4716558629,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +1525,0.4444633081,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +1526,0.4172709892,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +1527,0.3157337436,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1528,0.214196498,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +1529,0.1126594883,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1530,0.0769429641,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1531,0.0412266759,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1532,0.0055103876,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1533,0.0036735918,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1534,0.0018367959,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1535,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1536,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1537,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1538,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1539,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1540,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1541,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1542,0.0438296686,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1543,0.0876595732,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1544,0.1314892417,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1545,0.2859986045,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1546,0.4405082033,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +1547,0.595017566,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1548,0.6398512899,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1549,0.6846850138,0.3,0.3,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1550,0.7295187377,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +1551,0.5963168207,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1552,0.4631149036,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +1553,0.3299129866,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1554,0.2361585264,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +1555,0.1424040662,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +1556,0.048649606,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1557,0.032432992,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1558,0.016216614,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1559,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1560,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1561,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1562,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1563,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1564,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1565,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1566,0.0597119121,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1567,0.1194235882,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1568,0.1791355003,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +1569,0.3416716422,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1570,0.5042080201,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1571,0.666744162,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1572,0.7099935787,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +1573,0.7532429953,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +1574,0.796492176,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +1575,0.6483160307,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1576,0.5001401213,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1577,0.351963976,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1578,0.2509265163,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1579,0.1498892926,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +1580,0.0488518329,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1581,0.0325679672,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1582,0.0162838656,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1583,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1584,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1585,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1586,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1587,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1588,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1589,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1590,0.0163409705,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1591,0.0326819411,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1592,0.0490229116,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1593,0.1279057908,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1594,0.2067889059,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +1595,0.2856717851,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1596,0.3665910914,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1597,0.4475101617,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +1598,0.5284294679,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1599,0.4508347528,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +1600,0.3732398016,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1601,0.2956450865,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1602,0.2131511478,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +1603,0.1306572091,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1604,0.0481632704,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1605,0.0321087683,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1606,0.0160545021,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1607,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1608,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1609,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1610,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1611,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1612,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1613,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1614,0.050009977,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1615,0.1000199541,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1616,0.1500299311,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +1617,0.3009728328,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1618,0.4519159705,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +1619,0.6028591082,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1620,0.6522279528,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1621,0.7015967975,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +1622,0.7509656421,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +1623,0.6154219519,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1624,0.4798784977,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1625,0.3443350435,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1626,0.2463142331,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +1627,0.1482934228,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +1628,0.0502726124,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1629,0.0335151536,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1630,0.0167574588,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1631,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1632,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1633,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1634,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1635,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1636,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1637,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1638,0.0539896228,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1639,0.1079794815,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1640,0.1619691043,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +1641,0.3005428942,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1642,0.4391164481,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +1643,0.577690002,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1644,0.6137821916,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1645,0.6498746171,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1646,0.6859670426,0.3,0.3,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1647,0.5582092054,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1648,0.4304511323,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +1649,0.3026930592,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1650,0.2157295996,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +1651,0.128765904,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1652,0.0418024444,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1653,0.0278683749,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1654,0.0139340695,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1655,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1656,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1657,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1658,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1659,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1660,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1661,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1662,0.0348977059,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1663,0.0697951758,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1664,0.1046928817,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1665,0.2051104464,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +1666,0.3055280111,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1667,0.4059453398,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1668,0.4580299712,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +1669,0.5101146025,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1670,0.5621992339,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1671,0.4614215779,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +1672,0.360644158,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1673,0.259866502,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1674,0.1843627232,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +1675,0.1088591803,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1676,0.0333554014,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1677,0.0222369343,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1678,0.0111184671,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1679,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1680,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1681,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1682,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1683,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1684,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1685,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1686,0.0444745765,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1687,0.088949389,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1688,0.1334239655,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1689,0.2685750004,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1690,0.4037257994,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1691,0.5388765985,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1692,0.5893101429,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1693,0.6397436873,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1694,0.6901772317,0.3,0.3,0.3,0.2,0.2,0.1,0.1,,,,,,,,,,, +1695,0.5648529603,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1696,0.4395286889,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +1697,0.3142044175,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1698,0.2239373682,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +1699,0.1336705548,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1700,0.0434037415,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1701,0.0289356703,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1702,0.0144678352,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1703,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1704,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1705,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1706,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1707,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1708,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1709,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1710,0.030420398,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1711,0.0608405599,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1712,0.0912609579,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1713,0.1957721422,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +1714,0.3002833264,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1715,0.4047945107,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1716,0.4399345585,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +1717,0.4750748423,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1718,0.5102148901,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1719,0.4126745161,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1720,0.3151339061,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1721,0.2175935321,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +1722,0.1537228725,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +1723,0.0898524488,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1724,0.0259820252,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1725,0.0173214288,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1726,0.0086605964,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1727,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1728,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1729,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1730,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1731,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1732,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1733,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1734,0.0312762637,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1735,0.0625522913,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1736,0.093828555,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1737,0.1907853735,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +1738,0.287742192,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1739,0.3846990105,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1740,0.4078571744,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1741,0.4310153382,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +1742,0.4541735021,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +1743,0.3761561634,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1744,0.2981390607,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1745,0.220121958,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +1746,0.1596726375,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +1747,0.099223553,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1748,0.0387742325,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1749,0.0258496456,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1750,0.0129248228,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1751,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1752,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1753,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1754,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1755,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1756,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1757,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1758,0.0357873154,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1759,0.0715746308,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1760,0.1073619462,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1761,0.1530888192,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +1762,0.1988156922,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +1763,0.2445425651,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +1764,0.2493448047,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1765,0.2541468083,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1766,0.2589490479,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1767,0.2071360188,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +1768,0.1553227538,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +1769,0.1035094887,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1770,0.0725926084,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1771,0.0416754921,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1772,0.0107586118,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1773,0.0071723292,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1774,0.0035862826,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1775,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1776,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1777,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1778,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1779,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1780,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1781,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1782,0.051959095,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1783,0.1039184259,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1784,0.1558775209,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +1785,0.290190152,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1786,0.4245027831,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +1787,0.5588151782,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1788,0.5803781802,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1789,0.6019411822,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1790,0.6235039482,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1791,0.5004770875,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1792,0.3774499908,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1793,0.2544228941,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1794,0.1800550781,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +1795,0.1056872622,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1796,0.0313192103,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1797,0.0208793949,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1798,0.0104398154,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1799,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1800,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1801,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1802,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1803,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1804,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1805,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1806,0.0499599512,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1807,0.0999201385,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1808,0.1498800897,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +1809,0.3054435336,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1810,0.4610069774,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +1811,0.6165704213,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1812,0.6714213371,0.3,0.3,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1813,0.7262722529,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +1814,0.7811231687,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +1815,0.6410868325,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1816,0.5010502603,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1817,0.3610136881,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1818,0.2582696883,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1819,0.1555256886,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +1820,0.0527816888,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1821,0.0351877139,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1822,0.0175939749,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1823,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1824,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1825,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1826,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1827,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1828,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1829,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1830,0.0734416309,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1831,0.1468834979,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +1832,0.2203251288,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +1833,0.3491337435,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1834,0.4779423582,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1835,0.6067509728,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1836,0.6530871221,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1837,0.6994235074,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +1838,0.7457596567,0.3,0.3,0.3,0.3,0.2,0.2,0.1,,,,,,,,,,, +1839,0.6106322188,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1840,0.4755047809,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1841,0.340377107,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1842,0.2421005044,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +1843,0.1438236659,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +1844,0.0455470633,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1845,0.0303647089,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1846,0.0151823544,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1847,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1848,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1849,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1850,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1851,7.2443002972273E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1852,1.44886005944546E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1853,2.17329008916819E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1854,0.0192776258,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1855,0.0385337783,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1856,0.0577896948,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1857,0.1406043177,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +1858,0.2234189406,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +1859,0.3062335635,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1860,0.3801015934,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1861,0.4539696234,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +1862,0.5278376534,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1863,0.4360285356,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +1864,0.3442191818,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1865,0.252410064,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1866,0.1777984904,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +1867,0.1031866808,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1868,0.0285751071,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1869,0.0190501501,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1870,0.0095249571,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1871,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1872,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1873,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1874,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1875,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1876,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1877,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1878,0.0212715782,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1879,0.0425431564,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1880,0.0638147346,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1881,0.1618933577,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +1882,0.2599719809,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1883,0.3580503681,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1884,0.4313789691,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +1885,0.504707806,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1886,0.578036407,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1887,0.4867310866,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1888,0.3954257663,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1889,0.3041204459,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1890,0.2187965107,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +1891,0.1334725754,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1892,0.0481486402,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1893,0.0320990935,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1894,0.0160495467,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1895,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1896,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1897,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1898,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1899,8.04660065587788E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1900,1.60932013117558E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1901,0.000024069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1902,0.0378428561,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1903,0.0756616432,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1904,0.1134801944,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1905,0.2436142564,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +1906,0.3737480825,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1907,0.5038821446,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1908,0.5757519747,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1909,0.6476220409,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1910,0.719492107,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +1911,0.6043492631,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1912,0.4892064192,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1913,0.3740638113,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1914,0.2703561072,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1915,0.1666484032,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +1916,0.0629406991,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1917,0.0419605447,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1918,0.0209801544,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1919,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1920,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1921,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1922,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1923,0.0002520167,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1924,0.0005040334,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1925,0.0007560501,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1926,0.0780421156,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1927,0.1553284171,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +1928,0.2326144825,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +1929,0.368341758,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1930,0.5040690334,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1931,0.6397963088,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1932,0.6682137875,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1933,0.6966310302,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +1934,0.7250485089,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +1935,0.6032208512,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1936,0.4813929576,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1937,0.3595652999,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1938,0.261033613,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1939,0.1625019261,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +1940,0.0639702392,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1941,0.0426469835,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1942,0.0213234917,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1943,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1944,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1945,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1946,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1947,0.0002213405,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1948,0.000442917,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1949,0.0006642575,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1950,0.0784687506,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1951,0.1562732437,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +1952,0.2340777368,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +1953,0.404084003,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1954,0.5740900331,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1955,0.7440962993,0.3,0.3,0.3,0.3,0.2,0.2,0.1,,,,,,,,,,, +1956,0.7967911509,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +1957,0.8494857665,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +1958,0.9021806181,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +1959,0.7508224079,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +1960,0.5994644338,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1961,0.4481062236,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +1962,0.324354225,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1963,0.2006024623,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +1964,0.0768504636,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1965,0.051233721,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1966,0.0256167425,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1967,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1968,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1969,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1970,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1971,0.0004620306,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1972,0.0009242972,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1973,0.0013863278,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1974,0.0663618022,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1975,0.1313372766,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1976,0.196312751,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +1977,0.3565632808,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1978,0.5168138105,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1979,0.6770643403,0.3,0.3,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1980,0.72893707,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +1981,0.7808097997,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +1982,0.8326827653,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +1983,0.6898747173,0.3,0.3,0.3,0.2,0.2,0.1,0.1,,,,,,,,,,, +1984,0.5470664333,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +1985,0.4042583853,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1986,0.291599133,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +1987,0.1789398806,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +1988,0.0662806283,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1989,0.0441871642,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1990,0.0220934641,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1991,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1992,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1993,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1994,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1995,0.0005764764,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1996,0.0011529528,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1997,0.0017294292,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1998,0.0749643498,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +1999,0.1481995064,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +2000,0.221434427,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +2001,0.3749720625,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2002,0.528509462,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2003,0.6820470975,0.3,0.3,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2004,0.7186577146,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +2005,0.7552683318,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +2006,0.7918789489,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +2007,0.6531062358,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2008,0.5143332866,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2009,0.3755603374,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2010,0.2707775509,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2011,0.1659945284,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +2012,0.0612115059,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2013,0.0408075919,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2014,0.0204039139,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2015,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2016,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2017,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2018,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2019,0.0005000219,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2020,0.0010000438,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2021,0.0015000657,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2022,0.0380540499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2023,0.0746080341,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2024,0.1111620183,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2025,0.1679549729,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +2026,0.2247479275,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +2027,0.2815406462,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2028,0.2847491397,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2029,0.2879573973,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2030,0.2911656548,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2031,0.237860583,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +2032,0.1845557472,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +2033,0.1312509113,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2034,0.0945364671,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2035,0.0578220228,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2036,0.0211078145,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2037,0.0140718763,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2038,0.0070359382,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2039,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2040,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2041,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2042,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2043,0.0007794112,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2044,0.0015588224,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2045,0.0023379976,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2046,0.0830496497,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2047,0.1637613017,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +2048,0.2444727178,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +2049,0.3873791656,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2050,0.5302853774,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2051,0.6731918252,0.3,0.3,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2052,0.67796858,0.3,0.3,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2053,0.6827455707,0.3,0.3,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2054,0.6875223255,0.3,0.3,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2055,0.5597401833,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2056,0.4319578052,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +2057,0.304175663,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2058,0.2191667487,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +2059,0.1341578343,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2060,0.0491491559,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2061,0.0327661826,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2062,0.0163829733,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2063,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2064,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2065,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2066,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2067,0.0008438312,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2068,0.0016876624,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2069,0.0025312576,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2070,0.0892292502,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2071,0.1759272428,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +2072,0.2626252354,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2073,0.3929360395,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2074,0.5232466076,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2075,0.6535571757,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2076,0.6918471963,0.3,0.3,0.3,0.2,0.2,0.1,0.1,,,,,,,,,,, +2077,0.7301372169,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +2078,0.7684272375,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +2079,0.6471444362,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2080,0.5258616348,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2081,0.4045788335,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2082,0.2948925759,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2083,0.1852060824,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +2084,0.0755198248,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2085,0.0503464712,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2086,0.0251733536,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2087,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2088,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2089,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2090,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2091,0.0003511244,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2092,0.0007020128,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2093,0.0010531372,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2094,0.048560645,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2095,0.0960683888,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2096,0.1435758967,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +2097,0.2734761118,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2098,0.4033760909,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2099,0.533276306,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2100,0.5971330433,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2101,0.6609900166,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2102,0.724846754,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +2103,0.6132720229,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2104,0.5016970559,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2105,0.390122089,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2106,0.2839272538,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2107,0.1777324186,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +2108,0.0715375834,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2109,0.0476918009,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2110,0.0238457825,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2111,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2112,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2113,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2114,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2115,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2116,0.0004806723,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2117,0.0009613446,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2118,0.0014420169,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2119,0.0603931595,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2120,0.1193443021,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2121,0.1782952087,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +2122,0.3133447763,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2123,0.4483941079,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +2124,0.5834434395,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2125,0.6008882809,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2126,0.6183331224,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2127,0.6357777279,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2128,0.5036310718,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2129,0.3714841797,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2130,0.2393375236,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +2131,0.1670056628,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +2132,0.094674038,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2133,0.0223421772,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2134,0.0148947062,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2135,0.0074474711,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2136,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2137,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2138,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2139,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2140,0.0018245254,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2141,0.0036488148,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2142,0.0054733402,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2143,0.1034386975,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2144,0.2014040547,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +2145,0.2993694119,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2146,0.451896149,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +2147,0.604422886,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2148,0.7569498589,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +2149,0.7600934605,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +2150,0.7632370621,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +2151,0.7663808997,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +2152,0.6276140857,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2153,0.4888477438,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2154,0.3500811658,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2155,0.2532336018,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2156,0.1563860377,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +2157,0.0595384736,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2158,0.0396923944,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2159,0.0198460792,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2160,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2161,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2162,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2163,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2164,0.0005571268,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2165,0.0011142536,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2166,0.0016713804,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2167,0.0685586894,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2168,0.1354459983,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2169,0.2023330713,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +2170,0.3516862385,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2171,0.5010391697,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2172,0.6503921008,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2173,0.6838527452,0.3,0.3,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2174,0.7173131536,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +2175,0.750773798,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +2176,0.6254613251,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2177,0.5001488522,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2178,0.3748363794,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2179,0.27271723,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2180,0.1705980806,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +2181,0.0684789313,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2182,0.0456527782,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2183,0.0228263891,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2184,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2185,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2186,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2187,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2188,0.0016215906,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2189,0.0032431812,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2190,0.0048645359,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2191,0.1028322528,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2192,0.2007999697,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +2193,0.2987676867,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2194,0.4838022184,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2195,0.6688365141,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2196,0.8538710459,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +2197,0.8747955111,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +2198,0.8957197405,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +2199,0.9166442058,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +2200,0.7589504185,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +2201,0.6012566312,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2202,0.4435628439,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +2203,0.3226816647,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2204,0.2018004855,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +2205,0.0809193063,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2206,0.0539462042,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2207,0.0269731021,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2208,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2209,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2210,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2211,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2212,0.0016876624,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2213,0.0033750888,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2214,0.0050627512,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2215,0.0901452884,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2216,0.1752280616,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +2217,0.2603105988,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2218,0.4031814151,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2219,0.5460522313,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2220,0.6889230475,0.3,0.3,0.3,0.2,0.2,0.1,0.1,,,,,,,,,,, +2221,0.701310565,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +2222,0.7136980826,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +2223,0.7260856001,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +2224,0.5991128374,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2225,0.4721398388,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +2226,0.3451668402,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2227,0.2504769921,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2228,0.1557869081,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +2229,0.0610970601,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2230,0.0407313734,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2231,0.0203656867,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2232,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2233,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2234,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2235,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2236,0.0024420607,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2237,0.0048838854,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2238,0.0073259462,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2239,0.0955910201,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2240,0.1838560941,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +2241,0.272121168,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2242,0.4218426854,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +2243,0.5715639669,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2244,0.7212852483,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +2245,0.7193753015,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +2246,0.7174651187,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +2247,0.7155551719,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +2248,0.5905551243,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2249,0.4655550766,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +2250,0.3405550289,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2251,0.2486748839,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +2252,0.1567947389,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +2253,0.0649148299,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2254,0.0432765533,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2255,0.0216382766,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2256,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2257,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2258,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2259,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2260,0.0035086482,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2261,0.0070175325,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2262,0.0105261807,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2263,0.1117639795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2264,0.2130017783,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +2265,0.3142395772,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2266,0.4424804463,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +2267,0.5707210795,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2268,0.6989619487,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +2269,0.6950700841,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +2270,0.6911782194,0.3,0.3,0.3,0.2,0.2,0.1,0.1,,,,,,,,,,, +2271,0.6872863548,0.3,0.3,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2272,0.5454330442,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2273,0.4035794976,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2274,0.261726187,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2275,0.1834384259,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +2276,0.1051506649,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2277,0.0268629038,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2278,0.0179106476,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2279,0.0089583914,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2280,0.000006088,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2281,4.05869593199705E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2282,2.03170767293573E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2283,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2284,0.0039088545,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2285,0.0078179451,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2286,0.0117267996,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2287,0.1312827674,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2288,0.2508384992,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2289,0.370394467,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2290,0.5646960398,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2291,0.7589976126,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +2292,0.9532989494,0.4,0.4,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +2293,1.0008944743,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +2294,1.0484897633,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +2295,1.0960850522,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +2296,0.9254232595,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +2297,0.7547614667,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +2298,0.584099674,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2299,0.4275970668,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +2300,0.2710944595,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2301,0.1145918523,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2302,0.0764099063,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2303,0.0382281963,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2304,4.62502559692687E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2305,3.09121608774194E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2306,1.54324833693376E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2307,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2308,0.0047519778,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2309,0.0095037197,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2310,0.0142556975,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2311,0.1394549045,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +2312,0.2646541114,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2313,0.3898533183,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2314,0.5753022146,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2315,0.7607511108,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +2316,0.9462000071,0.4,0.4,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +2317,0.9825357184,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +2318,1.0188716657,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +2319,1.0552076129,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +2320,0.8749031138,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +2321,0.6945986146,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +2322,0.5142941155,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2323,0.3721047826,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2324,0.2299154497,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +2325,0.0877261169,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2326,0.0585056299,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2327,0.0292851429,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2328,0.000064656,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2329,4.29466662571781E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2330,2.15205272673332E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2331,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2332,0.0010264725,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2333,0.002053181,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2334,0.0030796535,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2335,0.0512483512,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2336,0.0994172849,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2337,0.1475859826,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +2338,0.3159045864,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2339,0.4842229541,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2340,0.6525415579,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2341,0.7280892273,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +2342,0.8036371326,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +2343,0.879184802,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +2344,0.757440442,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +2345,0.635695846,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2346,0.513951486,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2347,0.3793717361,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2348,0.2447919862,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +2349,0.1102124722,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2350,0.0735362552,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2351,0.0368600382,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2352,0.0001840571,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2353,0.0001227048,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2354,6.13523803673973E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2355,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2356,0.0051793208,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2357,0.0103588775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2358,0.0155381982,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2359,0.1219843422,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2360,0.2284302502,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +2361,0.3348763942,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2362,0.4821313099,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2363,0.6293864616,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2364,0.7766416133,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +2365,0.7991624204,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +2366,0.8216829914,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +2367,0.8442037985,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +2368,0.7145438015,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +2369,0.5848838046,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2370,0.4552238077,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +2371,0.3347503858,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2372,0.214276964,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +2373,0.0938035421,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2374,0.0626150595,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2375,0.031426341,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2376,0.0002376225,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2377,0.0001583363,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2378,7.9286153090175E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2379,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2380,0.0048628841,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2381,0.0097260041,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2382,0.0145888881,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2383,0.1211933684,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2384,0.2277978487,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +2385,0.334402329,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2386,0.5058414092,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2387,0.6772802535,0.3,0.3,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2388,0.8487193337,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +2389,0.8975898082,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +2390,0.9464602828,0.4,0.4,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +2391,0.9953305214,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +2392,0.8388262623,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +2393,0.6823217673,0.3,0.3,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2394,0.5258175083,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2395,0.3839734006,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2396,0.2421295288,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +2397,0.1002856571,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2398,0.0669493693,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2399,0.0336128455,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2400,0.0002765577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2401,0.0001842931,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2402,9.22645412448167E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2403,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2404,0.0057711353,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2405,0.0115422705,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2406,0.0173136417,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2407,0.1288978116,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2408,0.2404819814,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +2409,0.3520661513,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2410,0.4743232756,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2411,0.596580164,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2412,0.7188370523,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +2413,0.7251226037,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +2414,0.7314081551,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +2415,0.7376937064,0.3,0.3,0.3,0.3,0.2,0.2,0.1,,,,,,,,,,, +2416,0.6366529432,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2417,0.5356124158,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2418,0.4345716526,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +2419,0.3237647702,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2420,0.2129576518,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +2421,0.1021507694,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2422,0.0682023736,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2423,0.0342542138,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2424,0.000305818,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2425,0.0002038787,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2426,0.0001019393,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2427,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2428,0.0072325018,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2429,0.0144650035,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2430,0.0216975053,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2431,0.1577211599,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +2432,0.2937450505,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2433,0.4297687051,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +2434,0.6306128013,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2435,0.8314568976,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +2436,1.0323009938,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +2437,1.0516682885,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +2438,1.0710355832,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +2439,1.0904028779,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +2440,0.9183377674,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +2441,0.746272657,0.3,0.3,0.3,0.3,0.2,0.2,0.1,,,,,,,,,,, +2442,0.5742075465,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2443,0.4222041925,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +2444,0.2702010745,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2445,0.1181977205,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2446,0.0789024647,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2447,0.039607209,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2448,0.0003119533,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2449,0.0002078902,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2450,0.0001040631,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2451,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2452,0.0082526031,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2453,0.0165052061,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2454,0.0247578092,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2455,0.1662831205,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +2456,0.3078084319,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2457,0.4493337432,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +2458,0.6324882964,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2459,0.8156426136,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +2460,0.9987971668,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +2461,1.0352357613,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +2462,1.0716743559,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +2463,1.1081131864,0.4,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +2464,0.9385505451,0.4,0.4,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +2465,0.7689879039,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +2466,0.5994252626,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2467,0.439930547,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +2468,0.2804355954,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2469,0.1209406438,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2470,0.0807307657,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2471,0.0405206516,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2472,0.0003107734,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2473,0.0002071823,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2474,0.0001035911,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2475,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2476,0.0086945762,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2477,0.0173891524,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2478,0.0260839645,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2479,0.1685092681,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +2480,0.3109348076,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2481,0.4533603471,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +2482,0.6437981358,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2483,0.8342359244,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +2484,1.0246737131,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +2485,1.0394004081,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +2486,1.0541266312,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +2487,1.0688533262,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +2488,0.9068257012,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +2489,0.7447980761,0.3,0.3,0.3,0.3,0.2,0.2,0.1,,,,,,,,,,, +2490,0.582770687,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2491,0.4304501884,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +2492,0.2781299258,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2493,0.1258096631,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2494,0.0840060389,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2495,0.0422021787,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2496,0.0003985545,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2497,0.000265703,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2498,0.0001328515,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2499,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2500,0.0095351038,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2501,0.0190704436,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2502,0.0286055473,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2503,0.1751577424,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +2504,0.3217101733,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2505,0.4682626043,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +2506,0.6701478033,0.3,0.3,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2507,0.8720332382,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +2508,1.0739186731,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +2509,1.1124821838,0.4,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +2510,1.1510456944,0.5,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +2511,1.189609441,0.5,0.4,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +2512,1.0088190781,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +2513,0.8280287153,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +2514,0.6472383525,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2515,0.4758887052,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2516,0.3045388219,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2517,0.1331891746,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2518,0.0889508048,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2519,0.044712435,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2520,0.0004740651,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2521,0.0003159648,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2522,0.0001581004,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2523,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2524,0.0066520139,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2525,0.0133040277,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2526,0.0199560416,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2527,0.1287019559,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2528,0.2374481062,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +2529,0.3461942566,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2530,0.5454210097,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2531,0.7446479988,0.3,0.3,0.3,0.3,0.2,0.2,0.1,,,,,,,,,,, +2532,0.9438749879,0.4,0.4,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +2533,0.9968242158,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +2534,1.0497734438,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +2535,1.1027226718,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +2536,0.9454208319,0.4,0.4,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +2537,0.78811852,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +2538,0.63081668,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2539,0.4665485132,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +2540,0.3022805824,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2541,0.1380126516,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +2542,0.09217794,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2543,0.0463429925,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2544,0.0005080449,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2545,0.0003388539,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2546,0.000169427,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2547,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2548,0.0108669224,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2549,0.0217338448,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2550,0.0326005312,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2551,0.181988858,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +2552,0.3313771848,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2553,0.4807657475,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2554,0.6839417062,0.3,0.3,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2555,0.8871176648,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +2556,1.0902938594,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +2557,1.1304286989,0.5,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +2558,1.1705635384,0.5,0.4,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +2559,1.2106983778,0.5,0.5,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +2560,1.0336856699,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +2561,0.8566727259,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +2562,0.6796600179,0.3,0.3,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2563,0.5016628402,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2564,0.3236658985,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2565,0.1456689567,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +2566,0.0972819861,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2567,0.0488950155,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2568,0.0005080449,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2569,0.0003388539,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2570,0.000169427,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2571,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2572,0.0116760659,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2573,0.0233521318,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2574,0.0350279617,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2575,0.1871136695,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +2576,0.3391991413,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2577,0.4912846131,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2578,0.6952581527,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +2579,0.8992314563,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +2580,1.10320476,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +2581,1.1429467082,0.5,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +2582,1.1826886565,0.5,0.4,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +2583,1.2224308407,0.5,0.5,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +2584,1.0438437363,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +2585,0.8652566318,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +2586,0.6866697633,0.3,0.3,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2587,0.5068610386,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2588,0.3270523139,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2589,0.1472435891,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +2590,0.0983263924,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2591,0.0494094316,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2592,0.0004922349,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2593,0.0003282352,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2594,0.0001639996,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2595,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2596,0.0109480963,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2597,0.0218964286,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2598,0.0328445249,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2599,0.1805775173,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +2600,0.3283105096,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2601,0.476043502,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2602,0.682268438,0.3,0.3,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2603,0.8884936099,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +2604,1.0947187819,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +2605,1.1294968506,0.5,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +2606,1.1642751553,0.5,0.4,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +2607,1.1990532241,0.5,0.4,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +2608,1.0210130997,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +2609,0.8429732113,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +2610,0.6649330869,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2611,0.4906963382,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2612,0.3164595894,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2613,0.1422228407,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +2614,0.0950077006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2615,0.0477925604,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2616,0.0005776563,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2617,0.0003851042,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2618,0.0001925521,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2619,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2620,0.0064700805,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2621,0.0129401609,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2622,0.0194100054,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2623,0.1304901418,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2624,0.2415702783,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +2625,0.3526504147,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2626,0.5308571344,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2627,0.7090636181,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +2628,0.8872701019,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +2629,0.9506666964,0.4,0.4,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +2630,1.0140632908,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +2631,1.0774598853,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +2632,0.9261004953,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +2633,0.7747408694,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +2634,0.6233814794,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2635,0.4599167928,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +2636,0.2964521063,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2637,0.1329874197,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2638,0.0888276281,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2639,0.0446678365,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2640,0.0005080449,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2641,0.0003388539,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2642,0.000169427,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2643,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2644,0.0116340631,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2645,0.0232683622,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2646,0.0349024253,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2647,0.1615077816,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +2648,0.2881131379,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2649,0.4147184942,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +2650,0.5865183736,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2651,0.758318017,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +2652,0.9301178964,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +2653,0.9730015585,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +2654,1.0158852206,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +2655,1.0587691186,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +2656,0.9069736548,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +2657,0.755178191,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +2658,0.6033824912,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2659,0.445454621,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +2660,0.2875269867,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2661,0.1295991165,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2662,0.0865613655,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2663,0.0435238506,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2664,0.0004860996,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2665,0.0003242237,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2666,0.0001621119,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2667,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2668,0.0107678147,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2669,0.0215356294,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2670,0.0323034441,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2671,0.1561087721,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +2672,0.2799138642,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2673,0.4037191923,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2674,0.5874207255,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2675,0.7711222588,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +2676,0.9548237921,0.4,0.4,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +2677,0.9811293331,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +2678,1.00743511,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +2679,1.033740887,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +2680,0.8918413261,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +2681,0.7499417653,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +2682,0.6080422045,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2683,0.4528305929,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +2684,0.2976187454,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2685,0.1424071338,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +2686,0.0951485751,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2687,0.0478897803,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2688,0.0006312216,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2689,0.0004207357,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2690,0.0002104859,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2691,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2692,0.0138635142,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2693,0.0277270285,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2694,0.0415907787,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2695,0.1951236947,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +2696,0.3486566107,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2697,0.5021895268,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2698,0.7003695139,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +2699,0.898549501,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +2700,1.0967294882,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +2701,1.1445928398,0.5,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +2702,1.1924564274,0.5,0.4,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +2703,1.240320015,0.5,0.5,0.5,0.4,0.4,0.3,0.2,,,,,,,,,,, +2704,1.0677426122,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +2705,0.8951652093,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +2706,0.7225875705,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +2707,0.5350479739,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2708,0.3475081414,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2709,0.1599683088,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +2710,0.1068904768,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2711,0.0538126448,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2712,0.0007348127,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2713,0.0004898752,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2714,0.0002449376,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2715,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2716,0.014501343,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2717,0.0290024501,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2718,0.0435037931,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2719,0.2005378063,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +2720,0.3575718195,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2721,0.5146060687,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2722,0.7200121864,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +2723,0.92541854,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +2724,1.1308246577,0.5,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +2725,1.1669130717,0.5,0.4,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +2726,1.2030012498,0.5,0.4,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +2727,1.2390896638,0.5,0.5,0.5,0.4,0.4,0.3,0.2,,,,,,,,,,, +2728,1.0619540151,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +2729,0.8848183664,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +2730,0.7076827176,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +2731,0.5241642976,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2732,0.3406458776,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2733,0.1571272217,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +2734,0.1051190448,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2735,0.0531108679,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2736,0.0011026911,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2737,0.0007352847,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2738,0.0003676423,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2739,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2740,0.0163095864,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2741,0.0326191729,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2742,0.0489287593,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2743,0.2104877466,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +2744,0.3720467338,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2745,0.5336057211,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2746,0.7387725645,0.3,0.3,0.3,0.3,0.2,0.2,0.1,,,,,,,,,,, +2747,0.9439394078,0.4,0.4,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +2748,1.1491062512,0.5,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +2749,1.1588579761,0.5,0.4,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +2750,1.168609701,0.5,0.4,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +2751,1.1783614259,0.5,0.4,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +2752,0.9846014059,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +2753,0.7908416218,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +2754,0.5970818377,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2755,0.437120608,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +2756,0.2771596143,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2757,0.1171983846,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2758,0.0783517091,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2759,0.0395047977,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2760,0.0006581223,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2761,0.0004386695,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2762,0.0002194527,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2763,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2764,0.0097179811,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2765,0.0194359622,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2766,0.0291539432,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2767,0.1381245017,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +2768,0.2470952961,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +2769,0.3560660905,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2770,0.5283169099,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2771,0.7005674933,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +2772,0.8728180767,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +2773,0.9122770961,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +2774,0.9517361155,0.4,0.4,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +2775,0.9911951349,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +2776,0.8564832414,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +2777,0.7217715839,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +2778,0.5870596904,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2779,0.4366743874,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +2780,0.2862890844,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2781,0.1359037815,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2782,0.0909473528,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2783,0.0459909242,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2784,0.0010344955,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2785,0.0006897423,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2786,0.0003447532,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2787,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2788,0.0156155966,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2789,0.0312309573,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2790,0.0468465539,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2791,0.1989591624,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +2792,0.3510715348,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2793,0.5031841433,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2794,0.6833026975,0.3,0.3,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2795,0.8634212518,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +2796,1.043539806,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +2797,1.0609381612,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +2798,1.0783362805,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +2799,1.0957346357,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +2800,0.9413222569,0.4,0.4,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +2801,0.7869098781,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +2802,0.6324974992,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2803,0.4702667034,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +2804,0.3080359076,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2805,0.1458051118,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +2806,0.0976517522,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2807,0.0494986285,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2808,0.0013452689,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2809,0.0008969246,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2810,0.0004483443,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2811,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2812,0.0182830093,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2813,0.0365657827,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2814,0.0548487921,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2815,0.2175932961,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +2816,0.3803380361,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2817,0.5430825401,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2818,0.7419598206,0.3,0.3,0.3,0.3,0.2,0.2,0.1,,,,,,,,,,, +2819,0.9408368652,0.4,0.4,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +2820,1.1397141457,0.5,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +2821,1.1596933124,0.5,0.4,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +2822,1.1796724791,0.5,0.4,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +2823,1.1996516458,0.5,0.4,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +2824,1.0110431019,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +2825,0.8224345581,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +2826,0.6338260142,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2827,0.4659935101,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +2828,0.2981607701,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2829,0.1303282659,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2830,0.0873801839,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2831,0.0444321018,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2832,0.0014842557,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2833,0.0009894251,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2834,0.0004948305,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2835,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2836,0.0136542082,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2837,0.0273084164,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2838,0.0409626247,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2839,0.1769308262,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +2840,0.3128987917,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2841,0.4488667572,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +2842,0.6376702128,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2843,0.8264736685,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +2844,1.0152771241,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +2845,1.0512888476,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +2846,1.0873008071,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +2847,1.1233125307,0.4,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +2848,0.9477397159,0.4,0.4,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +2849,0.7721666651,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +2850,0.5965938503,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2851,0.4382768644,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +2852,0.2799601145,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2853,0.1216431286,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2854,0.0817579461,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2855,0.0418727636,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2856,0.0019873452,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2857,0.0013249754,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2858,0.0006623697,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2859,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2860,0.0171331242,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2861,0.0342664843,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2862,0.0513996084,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2863,0.1531204393,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +2864,0.2548415061,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2865,0.3565623369,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2866,0.4359997472,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +2867,0.5154373935,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2868,0.5948750397,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2869,0.6540331286,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2870,0.7131912175,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +2871,0.7723493064,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +2872,0.6932899212,0.3,0.3,0.3,0.2,0.2,0.1,0.1,,,,,,,,,,, +2873,0.6142305359,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2874,0.5351713866,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2875,0.4010248789,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2876,0.2668783712,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2877,0.1327318634,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2878,0.0892195754,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2879,0.0457070514,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2880,0.0021945275,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2881,0.0014630183,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2882,0.0007315092,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2883,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2884,0.0115189094,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2885,0.0230380548,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2886,0.0345569642,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2887,0.1518195328,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +2888,0.2690821015,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2889,0.3863444341,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2890,0.5418406263,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2891,0.6973365826,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +2892,0.8528325388,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +2893,0.8865756401,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +2894,0.9203189774,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +2895,0.9540620787,0.4,0.4,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +2896,0.8294145712,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +2897,0.7047670638,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +2898,0.5801195563,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2899,0.4330347754,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +2900,0.2859497586,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2901,0.1388647418,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +2902,0.0931503752,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2903,0.0474362447,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2904,0.0017218782,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2905,0.0011477615,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2906,0.0005738807,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2907,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2908,0.0058549049,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2909,0.0117098097,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2910,0.0175647146,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2911,0.1047884498,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2912,0.1920121851,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +2913,0.2792359204,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2914,0.4336081842,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +2915,0.587980448,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2916,0.7423527118,0.3,0.3,0.3,0.3,0.2,0.2,0.1,,,,,,,,,,, +2917,0.7653579667,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +2918,0.7883632216,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +2919,0.8113687124,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +2920,0.6633492516,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2921,0.5153295549,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2922,0.3673100941,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2923,0.263868329,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2924,0.1604265639,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +2925,0.0569845628,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2926,0.038053578,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2927,0.0191223571,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2928,0.0001913722,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2929,0.0001274242,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2930,6.37120873046049E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2931,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2932,0.0024467801,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2933,0.0048935602,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2934,0.0073403404,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2935,0.0377052852,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2936,0.06807023,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2937,0.0984349389,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2938,0.1487396433,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +2939,0.1990443478,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +2940,0.2493492882,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2941,0.2908836698,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2942,0.3324182875,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2943,0.3739529051,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2944,0.3268043087,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2945,0.2796559482,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2946,0.2325073518,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +2947,0.171730268,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +2948,0.1109534202,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2949,0.0501763364,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2950,0.0338164882,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2951,0.01745664,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2952,0.0010967918,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2953,0.0007310372,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2954,0.0003655186,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2955,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2956,0.0214011261,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2957,0.0428024882,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2958,0.0642036143,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2959,0.2192085155,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +2960,0.3742131808,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2961,0.529218082,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2962,0.7103777389,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +2963,0.8915376319,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +2964,1.0726975248,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +2965,1.0874138371,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +2966,1.1021301494,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +2967,1.1168464617,0.4,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +2968,0.9714540627,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +2969,0.8260614277,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +2970,0.6806690286,0.3,0.3,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2971,0.5107460601,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2972,0.3408228557,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2973,0.1708998872,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +2974,0.1149771925,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2975,0.0590544978,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2976,0.0031315671,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2977,0.0020878687,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2978,0.0010439343,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2979,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2980,0.0189158828,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2981,0.0378315295,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2982,0.0567474123,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2983,0.1893981018,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +2984,0.3220487913,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2985,0.4546997168,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +2986,0.6483308968,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2987,0.8419620769,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +2988,1.0355932569,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +2989,1.0937538977,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +2990,1.1519147744,0.5,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +2991,1.2100754152,0.5,0.5,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +2992,1.0567057909,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +2993,0.9033359306,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +2994,0.7499663063,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +2995,0.5610441574,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +2996,0.3721217725,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +2997,0.1831996236,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +2998,0.123386952,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +2999,0.0635742804,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3000,0.0037616088,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3001,0.0025078965,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3002,0.0012539483,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3003,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3004,0.0208900136,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3005,0.0417800271,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3006,0.0626698048,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3007,0.2140037099,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +3008,0.3653376151,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3009,0.5166715202,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3010,0.6832163322,0.3,0.3,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3011,0.8497609083,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3012,1.0163057203,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +3013,1.006332419,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +3014,0.9963593536,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +3015,0.9863862882,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +3016,0.8138749571,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3017,0.6413636261,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3018,0.4688525311,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +3019,0.3422316007,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3020,0.2156109063,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +3021,0.0889899759,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3022,0.0600720034,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3023,0.0311540308,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3024,0.0022360583,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3025,0.0014906269,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3026,0.0007454314,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3027,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3028,0.0020418544,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3029,0.0040837088,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3030,0.0061253273,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3031,0.0219924687,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3032,0.03785961,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3033,0.0537265155,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3034,0.0874292658,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3035,0.1211320161,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3036,0.1548345304,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +3037,0.1918262402,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +3038,0.2288179501,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +3039,0.2658096599,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3040,0.232458034,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +3041,0.1991061721,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +3042,0.1657545462,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +3043,0.1219590933,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3044,0.0781634045,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3045,0.0343677157,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3046,0.0232140889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3047,0.0120602262,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3048,0.0009065994,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3049,0.0006043209,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3050,0.0003022785,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3051,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3052,0.0057284246,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3053,0.0114570851,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3054,0.0171855097,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3055,0.0735242207,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3056,0.1298629317,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3057,0.1862016428,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +3058,0.3005244885,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3059,0.4148475702,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +3060,0.5291704159,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3061,0.5822654738,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3062,0.6353602957,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3063,0.6884553536,0.3,0.3,0.3,0.2,0.2,0.1,0.1,,,,,,,,,,, +3064,0.5995838349,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3065,0.5107125523,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3066,0.4218410336,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +3067,0.3144212746,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3068,0.2070012796,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +3069,0.0995815205,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3070,0.0673193713,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3071,0.0350574581,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3072,0.0027953088,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3073,0.0018634606,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3074,0.0009318483,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3075,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3076,0.010588241,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3077,0.021176482,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3078,0.031764959,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3079,0.1462133411,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +3080,0.2606617232,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3081,0.3751101054,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3082,0.5493173578,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3083,0.7235243742,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +3084,0.8977316266,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3085,0.9491656868,0.4,0.4,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3086,1.000599511,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +3087,1.0520335711,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +3088,0.923687459,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3089,0.7953413469,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3090,0.6669952348,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3091,0.5010243035,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3092,0.3350531362,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3093,0.1690822049,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +3094,0.1141232145,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3095,0.0591642241,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3096,0.0042052337,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3097,0.0028035678,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3098,0.0014016659,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3099,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3100,0.0137863518,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3101,0.0275724676,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3102,0.0413588195,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3103,0.173349263,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +3104,0.3053397065,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3105,0.4373303859,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +3106,0.6174817401,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3107,0.7976330943,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3108,0.9777846844,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +3109,1.0066670254,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +3110,1.0355493664,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +3111,1.0644319433,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +3112,0.9255832476,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3113,0.7867347878,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +3114,0.6478860921,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3115,0.4868139124,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3116,0.3257414967,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3117,0.164669317,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +3118,0.1114874219,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3119,0.0583057627,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3120,0.0051241036,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3121,0.0034159118,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3122,0.0017079559,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3123,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3124,0.0251426774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3125,0.0502853548,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3126,0.0754280322,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3127,0.2406672184,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +3128,0.4059061687,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3129,0.5711453548,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3130,0.7461025221,0.3,0.3,0.3,0.3,0.2,0.2,0.1,,,,,,,,,,, +3131,0.9210596894,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3132,1.0960168567,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +3133,1.0839818793,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +3134,1.071946666,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +3135,1.0599114528,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +3136,0.8808672731,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3137,0.7018233294,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +3138,0.5227791497,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3139,0.3831963491,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3140,0.2436135485,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +3141,0.1040309839,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3142,0.0700025941,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3143,0.0359744402,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3144,0.0019460503,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3145,0.0012973669,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3146,0.0006486834,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3147,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3148,0.0007520386,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3149,0.0015040772,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3150,0.0022558798,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3151,0.0123186141,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3152,0.0223813484,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3153,0.0324440826,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3154,0.0624597908,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3155,0.092475499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3156,0.1224914432,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3157,0.1792827461,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +3158,0.2360742849,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +3159,0.2928655877,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3160,0.2701224963,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3161,0.2473791689,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +3162,0.2246360774,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +3163,0.1686392879,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +3164,0.1126427344,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3165,0.0566459449,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3166,0.0384629871,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3167,0.0202800293,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3168,0.0020970716,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3169,0.0013981264,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3170,0.0006989452,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3171,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3172,0.0136535003,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3173,0.0273067646,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3174,0.040960265,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3175,0.1380754198,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +3176,0.2351905746,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +3177,0.3323057294,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3178,0.5006927647,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3179,0.6690797999,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3180,0.8374668352,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3181,0.8636746843,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3182,0.8898822974,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3183,0.9160899106,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3184,0.7790447389,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +3185,0.6419993312,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3186,0.5049541594,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3187,0.3758968317,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3188,0.2468397398,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +3189,0.1177824121,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3190,0.0800098752,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3191,0.0422373384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3192,0.0044648015,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3193,0.0029765343,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3194,0.0014882672,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3195,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3196,0.0172676275,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3197,0.0345352549,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3198,0.0518031183,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3199,0.1834202562,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +3200,0.3150373941,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3201,0.4466547679,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +3202,0.6348612177,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3203,0.8230676675,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3204,1.0112741172,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +3205,1.0262386707,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +3206,1.0412032242,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +3207,1.0561677777,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +3208,0.9110245637,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3209,0.7658815857,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +3210,0.6207386076,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3211,0.4670603336,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +3212,0.3133818237,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3213,0.1597035497,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +3214,0.1086123549,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3215,0.0575213962,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3216,0.0064302014,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3217,0.0042868796,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3218,0.0021433218,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3219,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3220,0.0170156108,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3221,0.0340312215,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3222,0.0510470682,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3223,0.1816353739,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +3224,0.3122236795,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3225,0.4428122211,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +3226,0.6018968197,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3227,0.7609816542,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +3228,0.9200664887,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3229,0.9495939736,0.4,0.4,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3230,0.9791212225,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +3231,1.0086484713,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +3232,0.845471433,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3233,0.6822941588,0.3,0.3,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3234,0.5191168845,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3235,0.3801351013,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3236,0.2411533181,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +3237,0.1021715348,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3238,0.0691021299,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3239,0.0360329609,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3240,0.0029635559,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3241,0.0019757826,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3242,0.0009877733,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3243,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3244,0.0293752837,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3245,0.0587505675,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3246,0.0881256153,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3247,0.2426566874,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +3248,0.3971877594,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3249,0.5517185955,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3250,0.7245296094,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +3251,0.8973406232,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3252,1.070151637,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +3253,1.1175442271,0.4,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +3254,1.1649368172,0.5,0.4,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +3255,1.2123294073,0.5,0.5,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +3256,1.0543607141,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +3257,0.8963922569,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3258,0.7384235638,0.3,0.3,0.3,0.3,0.2,0.2,0.1,,,,,,,,,,, +3259,0.5534569916,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3260,0.3684906555,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3261,0.1835243193,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +3262,0.1248719156,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3263,0.0662195119,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3264,0.0075671082,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3265,0.0050448175,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3266,0.0025222907,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3267,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3268,0.0291345936,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3269,0.0582689513,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3270,0.087403545,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3271,0.2416011904,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +3272,0.3957990719,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3273,0.5499967174,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3274,0.7194965904,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +3275,0.8889962275,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3276,1.0584958646,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +3277,1.085426256,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +3278,1.1123564114,0.4,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +3279,1.1392868028,0.5,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +3280,0.994995207,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +3281,0.8507036112,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3282,0.7064120155,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +3283,0.5329407557,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3284,0.3594694958,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3285,0.185998236,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +3286,0.1267636926,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3287,0.0675291492,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3288,0.0082946059,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3289,0.0055297372,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3290,0.0027648686,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3291,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3292,0.0301690892,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3293,0.0603381783,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3294,0.0905072675,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3295,0.2505569862,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3296,0.4106067049,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3297,0.5706564236,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3298,0.7385552354,0.3,0.3,0.3,0.3,0.2,0.2,0.1,,,,,,,,,,, +3299,0.9064542833,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3300,1.0743530952,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +3301,1.1092076184,0.4,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +3302,1.1440619057,0.5,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +3303,1.178916429,0.5,0.4,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +3304,1.0430475712,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +3305,0.9071787133,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3306,0.7713098555,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +3307,0.584558401,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3308,0.3978069465,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3309,0.211055728,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +3310,0.1437384805,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +3311,0.0764209969,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3312,0.0091037494,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3313,0.0060691662,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3314,0.0030345831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3315,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3316,0.0301924503,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3317,0.0603849005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3318,0.0905773508,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3319,0.2629968892,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3320,0.4354161917,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +3321,0.6078357301,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3322,0.8124843819,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3323,1.0171332696,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +3324,1.2217819213,0.5,0.5,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +3325,1.2683660758,0.5,0.5,0.5,0.4,0.4,0.3,0.3,,,,,,,,,,, +3326,1.3149504663,0.5,0.5,0.5,0.4,0.4,0.3,0.3,,,,,,,,,,, +3327,1.3615346208,0.5,0.5,0.5,0.5,0.4,0.3,0.3,,,,,,,,,,, +3328,1.1952000586,0.5,0.4,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +3329,1.0288654965,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +3330,0.8625309343,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3331,0.6509416766,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3332,0.4393526548,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +3333,0.227763633,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +3334,0.1549850797,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +3335,0.0822065264,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3336,0.0094279731,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3337,0.0062853154,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3338,0.0031426577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3339,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3340,0.0331906939,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3341,0.0663816238,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3342,0.0995723177,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3343,0.2753811032,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3344,0.4511898887,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +3345,0.6269986742,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3346,0.8321346054,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3347,1.0372705366,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +3348,1.2424062319,0.5,0.5,0.5,0.4,0.4,0.3,0.2,,,,,,,,,,, +3349,1.2668655382,0.5,0.5,0.5,0.4,0.4,0.3,0.3,,,,,,,,,,, +3350,1.2913246085,0.5,0.5,0.5,0.4,0.4,0.3,0.3,,,,,,,,,,, +3351,1.3157839148,0.5,0.5,0.5,0.4,0.4,0.3,0.3,,,,,,,,,,, +3352,1.129687043,0.5,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +3353,0.9435904072,0.4,0.4,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3354,0.7574935354,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +3355,0.5662201745,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3356,0.3749468136,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3357,0.1836736887,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +3358,0.124844307,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3359,0.0660151613,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3360,0.0071857796,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3361,0.0047904411,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3362,0.0023953385,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3363,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3364,0.0330885186,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3365,0.0661770372,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3366,0.0992655558,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3367,0.2784614646,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3368,0.4576573734,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +3369,0.6368535183,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3370,0.844247453,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3371,1.0516413878,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +3372,1.2590353226,0.5,0.5,0.5,0.4,0.4,0.3,0.3,,,,,,,,,,, +3373,1.2899234145,0.5,0.5,0.5,0.4,0.4,0.3,0.3,,,,,,,,,,, +3374,1.3208115064,0.5,0.5,0.5,0.5,0.4,0.3,0.3,,,,,,,,,,, +3375,1.3516995982,0.5,0.5,0.5,0.5,0.4,0.3,0.3,,,,,,,,,,, +3376,1.1853084031,0.5,0.4,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +3377,1.018917208,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +3378,0.8525260129,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3379,0.6452762562,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3380,0.4380262635,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +3381,0.2307765068,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +3382,0.1573919808,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +3383,0.0840076907,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3384,0.0106234006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3385,0.0070821884,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3386,0.0035412122,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3387,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3388,0.0357413011,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3389,0.0714828382,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3390,0.1072241393,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3391,0.2925515107,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3392,0.477878882,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3393,0.6632062534,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3394,0.8733740237,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3395,1.083541794,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +3396,1.2937095643,0.5,0.5,0.5,0.4,0.4,0.3,0.3,,,,,,,,,,, +3397,1.3216477865,0.5,0.5,0.5,0.5,0.4,0.3,0.3,,,,,,,,,,, +3398,1.3495860087,0.5,0.5,0.5,0.5,0.4,0.3,0.3,,,,,,,,,,, +3399,1.377523995,0.6,0.5,0.5,0.5,0.4,0.3,0.3,,,,,,,,,,, +3400,1.2036763619,0.5,0.4,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +3401,1.0298289648,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +3402,0.8559815677,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3403,0.646887936,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3404,0.4377945403,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +3405,0.2287011446,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +3406,0.1559662458,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +3407,0.0832313471,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3408,0.0104966844,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3409,0.0069977109,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3410,0.0034989734,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3411,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3412,0.0358404088,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3413,0.0716808176,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3414,0.1075214624,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3415,0.2902425375,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3416,0.4729636125,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +3417,0.6556846875,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3418,0.8581076637,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3419,1.0605308758,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +3420,1.262953852,0.5,0.5,0.5,0.4,0.4,0.3,0.3,,,,,,,,,,, +3421,1.2877711258,0.5,0.5,0.5,0.4,0.4,0.3,0.3,,,,,,,,,,, +3422,1.3125881637,0.5,0.5,0.5,0.4,0.4,0.3,0.3,,,,,,,,,,, +3423,1.3374054375,0.5,0.5,0.5,0.5,0.4,0.3,0.3,,,,,,,,,,, +3424,1.1660749038,0.5,0.4,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +3425,0.9947443701,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +3426,0.8234138365,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3427,0.6220208724,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3428,0.4206276723,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +3429,0.2192347082,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +3430,0.1496898973,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +3431,0.0801450864,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3432,0.0106002755,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3433,0.0070668503,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3434,0.0035334252,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3435,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3436,0.0266047518,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3437,0.0532095037,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3438,0.0798142555,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3439,0.2518826695,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3440,0.4239510836,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +3441,0.5960194976,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3442,0.7990517501,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3443,1.0020837666,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +3444,1.2051160191,0.5,0.4,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +3445,1.2392987338,0.5,0.5,0.5,0.4,0.4,0.3,0.2,,,,,,,,,,, +3446,1.2734812125,0.5,0.5,0.5,0.4,0.4,0.3,0.3,,,,,,,,,,, +3447,1.3076641632,0.5,0.5,0.5,0.4,0.4,0.3,0.3,,,,,,,,,,, +3448,1.1423438031,0.5,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +3449,0.977023679,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +3450,0.8117033189,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3451,0.6126950746,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3452,0.4136868303,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +3453,0.2146783501,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +3454,0.1463577552,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +3455,0.0780373962,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3456,0.0097168012,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3457,0.0064778675,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3458,0.0032389337,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3459,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3460,0.020242746,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3461,0.040485256,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3462,0.0607280019,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3463,0.2115477269,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +3464,0.3623674519,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3465,0.5131871769,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3466,0.7298700981,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +3467,0.9465530193,0.4,0.4,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3468,1.1632361764,0.5,0.4,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +3469,1.2245607122,0.5,0.5,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +3470,1.285885248,0.5,0.5,0.5,0.4,0.4,0.3,0.3,,,,,,,,,,, +3471,1.3472095479,0.5,0.5,0.5,0.5,0.4,0.3,0.3,,,,,,,,,,, +3472,1.1924366058,0.5,0.4,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +3473,1.0376634278,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +3474,0.8828904858,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3475,0.6704045394,0.3,0.3,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3476,0.457918357,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +3477,0.2454324106,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +3478,0.1677923891,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +3479,0.0901521316,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3480,0.0125121101,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3481,0.0083413281,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3482,0.004170782,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3483,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3484,0.0348783563,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3485,0.0697567126,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3486,0.1046350689,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3487,0.2702480327,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3488,0.4358609964,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +3489,0.6014739602,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3490,0.7594634188,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +3491,0.9174531133,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3492,1.0754425719,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +3493,1.044932741,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +3494,1.0144226742,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +3495,0.9839126074,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +3496,0.8335832295,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3497,0.6832538516,0.3,0.3,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3498,0.5329244737,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3499,0.3998117536,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3500,0.2666990334,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3501,0.1335863133,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3502,0.0911769523,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3503,0.0487678273,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3504,0.0063584663,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3505,0.0042389775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3506,0.0021194888,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3507,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3508,0.0214325102,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3509,0.0428652564,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3510,0.0642977666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3511,0.2008575466,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +3512,0.3374173266,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3513,0.4739771066,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3514,0.6471189513,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3515,0.820261032,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3516,0.9934028768,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +3517,1.0053137335,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +3518,1.0172248262,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +3519,1.0291356829,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +3520,0.8815225637,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3521,0.7339092085,0.3,0.3,0.3,0.3,0.2,0.2,0.1,,,,,,,,,,, +3522,0.5862960892,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3523,0.4416394468,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +3524,0.2969830403,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3525,0.1523263979,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +3526,0.1048337562,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3527,0.0573411145,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3528,0.0098482369,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3529,0.0065656486,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3530,0.0032828243,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3531,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3532,0.0365424216,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3533,0.0730850792,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3534,0.1096275009,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3535,0.2793893014,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3536,0.4491508659,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +3537,0.6189126664,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3538,0.7853692254,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +3539,0.9518260204,0.4,0.4,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3540,1.1182828153,0.4,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +3541,1.1491779863,0.5,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +3542,1.1800733933,0.5,0.4,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +3543,1.2109685643,0.5,0.5,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +3544,1.0840585698,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +3545,0.9571488113,0.4,0.4,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3546,0.8302388168,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3547,0.6353567561,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3548,0.4404744595,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +3549,0.2455923988,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +3550,0.1684153517,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +3551,0.0912380687,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3552,0.0140607857,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3553,0.0093739358,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3554,0.0046868499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3555,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3556,0.0310957461,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3557,0.0621917281,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3558,0.0932874742,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3559,0.2623092706,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3560,0.431331067,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +3561,0.6003528634,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3562,0.7470508883,0.3,0.3,0.3,0.3,0.2,0.2,0.1,,,,,,,,,,, +3563,0.8937491492,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3564,1.0404474101,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +3565,1.043073292,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +3566,1.0456991738,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +3567,1.0483252917,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +3568,0.8660421783,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3569,0.6837588289,0.3,0.3,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3570,0.5014757154,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3571,0.3633370555,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3572,0.2251981596,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +3573,0.0870594997,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3574,0.0585655665,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3575,0.0300718692,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3576,0.001577936,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3577,0.0010519574,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3578,0.0005259787,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3579,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3580,0.0072027695,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3581,0.0144055389,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3582,0.0216080724,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3583,0.1037067602,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3584,0.185805448,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +3585,0.2679041358,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3586,0.3853035674,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3587,0.502702999,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3588,0.6201026666,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3589,0.6095200889,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3590,0.5989377472,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3591,0.5883554055,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3592,0.5373607227,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3593,0.486365804,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3594,0.4353711213,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +3595,0.3410994133,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3596,0.2468279413,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +3597,0.1525564693,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +3598,0.1050147457,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3599,0.0574730222,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3600,0.0099312986,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3601,0.0066208657,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3602,0.0033104329,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3603,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3604,0.0176685417,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3605,0.0353373193,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3606,0.053005861,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3607,0.1407267865,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +3608,0.2284474761,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +3609,0.3161684016,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3610,0.460865395,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +3611,0.6055623884,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3612,0.7502593819,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +3613,0.8096513177,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3614,0.8690432535,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3615,0.9284351894,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3616,0.8480300633,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3617,0.7676247012,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +3618,0.6872193391,0.3,0.3,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3619,0.5296817644,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3620,0.3721439537,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3621,0.2146061431,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +3622,0.1475477554,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +3623,0.0804893677,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3624,0.0134309799,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3625,0.008953908,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3626,0.004477072,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3627,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3628,0.037867869,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3629,0.0757355021,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3630,0.1136033711,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3631,0.2845367661,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3632,0.4554701611,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +3633,0.6264035561,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3634,0.8237342847,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3635,1.0210647773,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +3636,1.2183952699,0.5,0.5,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +3637,1.1958994758,0.5,0.4,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +3638,1.1734036816,0.5,0.4,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +3639,1.1509076515,0.5,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +3640,0.9621063196,0.4,0.4,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3641,0.7733047517,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +3642,0.5845031839,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3643,0.4351384542,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +3644,0.2857737245,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3645,0.1364087588,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3646,0.0934403832,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3647,0.0504722436,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3648,0.0075038681,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3649,0.0050025787,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3650,0.0025012894,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3651,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3652,0.0398750357,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3653,0.0797498355,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3654,0.1196248712,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3655,0.3091744662,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3656,0.4987238252,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3657,0.6882731842,0.3,0.3,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3658,0.8935990718,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3659,1.0989247235,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +3660,1.3042503752,0.5,0.5,0.5,0.4,0.4,0.3,0.3,,,,,,,,,,, +3661,1.3313572727,0.5,0.5,0.5,0.5,0.4,0.3,0.3,,,,,,,,,,, +3662,1.3584639342,0.5,0.5,0.5,0.5,0.4,0.3,0.3,,,,,,,,,,, +3663,1.3855708316,0.6,0.5,0.5,0.5,0.4,0.3,0.3,,,,,,,,,,, +3664,1.2129821022,0.5,0.5,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +3665,1.0403933728,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +3666,0.8678048793,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3667,0.6589677478,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3668,0.4501306162,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +3669,0.2412934847,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +3670,0.1657974929,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +3671,0.090301501,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3672,0.0148055092,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3673,0.0098701822,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3674,0.0049350911,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3675,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3676,0.041306434,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3677,0.0826128679,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3678,0.1239195379,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3679,0.314402161,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3680,0.5048845481,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3681,0.6953671712,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +3682,0.9022068108,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3683,1.1090462145,0.4,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +3684,1.3158858541,0.5,0.5,0.5,0.4,0.4,0.3,0.3,,,,,,,,,,, +3685,1.3508595426,0.5,0.5,0.5,0.5,0.4,0.3,0.3,,,,,,,,,,, +3686,1.3858329951,0.6,0.5,0.5,0.5,0.4,0.3,0.3,,,,,,,,,,, +3687,1.4208066835,0.6,0.5,0.5,0.5,0.5,0.3,0.3,,,,,,,,,,, +3688,1.2516989938,0.5,0.5,0.5,0.4,0.4,0.3,0.3,,,,,,,,,,, +3689,1.0825910681,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +3690,0.9134836143,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3691,0.6950804668,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +3692,0.4766775552,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3693,0.2582744077,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3694,0.1774089028,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +3695,0.0965433978,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3696,0.0156778929,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3697,0.0104518499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3698,0.005226043,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3699,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3700,0.0414553315,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3701,0.0829108989,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3702,0.1243662304,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3703,0.3142138563,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3704,0.5040614823,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3705,0.6939091083,0.3,0.3,0.3,0.2,0.2,0.1,0.1,,,,,,,,,,, +3706,0.9011576851,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3707,1.108406262,0.4,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +3708,1.3156548388,0.5,0.5,0.5,0.4,0.4,0.3,0.3,,,,,,,,,,, +3709,1.3509897984,0.5,0.5,0.5,0.5,0.4,0.3,0.3,,,,,,,,,,, +3710,1.386324758,0.6,0.5,0.5,0.5,0.4,0.3,0.3,,,,,,,,,,, +3711,1.4216597176,0.6,0.5,0.5,0.5,0.5,0.3,0.3,,,,,,,,,,, +3712,1.2531733387,0.5,0.5,0.5,0.4,0.4,0.3,0.3,,,,,,,,,,, +3713,1.0846871957,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +3714,0.9162008168,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3715,0.6976355575,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +3716,0.4790702981,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3717,0.2605050387,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3718,0.1790637653,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +3719,0.0976224918,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3720,0.0161812184,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3721,0.0107874003,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3722,0.0053938181,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3723,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3724,0.042433666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3725,0.0848673319,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3726,0.1273009979,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3727,0.318033514,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3728,0.5087657941,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3729,0.6994983101,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +3730,0.9063032621,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3731,1.11310845,0.4,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +3732,1.3199134019,0.5,0.5,0.5,0.5,0.4,0.3,0.3,,,,,,,,,,, +3733,1.3549210702,0.5,0.5,0.5,0.5,0.4,0.3,0.3,,,,,,,,,,, +3734,1.3899287384,0.6,0.5,0.5,0.5,0.4,0.3,0.3,,,,,,,,,,, +3735,1.4249361707,0.6,0.5,0.5,0.5,0.5,0.3,0.3,,,,,,,,,,, +3736,1.2534503683,0.5,0.5,0.5,0.4,0.4,0.3,0.3,,,,,,,,,,, +3737,1.0819645659,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +3738,0.9104789995,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3739,0.6925971112,0.3,0.3,0.3,0.2,0.2,0.1,0.1,,,,,,,,,,, +3740,0.4747152229,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3741,0.2568333347,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3742,0.1765768701,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +3743,0.0963206415,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3744,0.0160641769,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3745,0.0107095299,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3746,0.005354647,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3747,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3748,0.0279202885,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3749,0.0558408129,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3750,0.0837611013,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3751,0.2378905513,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +3752,0.3920202372,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3753,0.5461496872,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3754,0.7224341896,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +3755,0.898718928,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3756,1.0750034304,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +3757,1.0409219471,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +3758,1.0068402279,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +3759,0.9727587446,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +3760,0.7953418189,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3761,0.6179246571,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3762,0.4405077313,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +3763,0.3234983593,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3764,0.2064892232,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +3765,0.0894800871,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3766,0.0612402943,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3767,0.0330005015,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3768,0.0047609447,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3769,0.0031738058,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3770,0.0015869029,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3771,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3772,0.0121791554,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3773,0.0243585468,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3774,0.0365377022,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3775,0.1020854055,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3776,0.1676333448,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +3777,0.2331810482,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +3778,0.3888218904,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3779,0.5444629687,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3780,0.7001038109,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +3781,0.7469423418,0.3,0.3,0.3,0.3,0.2,0.2,0.1,,,,,,,,,,, +3782,0.7937808727,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3783,0.8406194036,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3784,0.7539792239,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +3785,0.6673390441,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3786,0.5806988644,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3787,0.4465766616,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +3788,0.3124546948,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3789,0.1783324921,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +3790,0.1228133073,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3791,0.0672941224,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3792,0.0117749376,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3793,0.0078498011,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3794,0.0039249005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3795,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3796,0.0255773354,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3797,0.0511549068,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3798,0.0767322423,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3799,0.2250117428,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +3800,0.3732910073,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3801,0.5215702718,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3802,0.6879187562,0.3,0.3,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3803,0.8542672406,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3804,1.0206154891,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +3805,0.9941520837,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +3806,0.9676882064,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +3807,0.941224565,0.4,0.4,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3808,0.8075905856,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3809,0.6739566062,0.3,0.3,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3810,0.5403226269,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3811,0.4105038217,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3812,0.2806850164,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3813,0.1508662112,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +3814,0.1036149676,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3815,0.0563637239,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3816,0.0091122443,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3817,0.0060748295,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3818,0.0030374148,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3819,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3820,0.0173827812,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3821,0.0347655623,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3822,0.0521483435,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3823,0.1475123598,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +3824,0.2428761401,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +3825,0.3382401564,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3826,0.35310749,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3827,0.3679748235,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3828,0.3828423931,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3829,0.3594751591,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3830,0.3361079252,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3831,0.3127406913,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3832,0.2769470047,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3833,0.241153554,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +3834,0.2053598674,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +3835,0.1571354806,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +3836,0.1089108579,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3837,0.0606862351,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3838,0.041757374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3839,0.0228282769,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3840,0.0038994157,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3841,0.0025996891,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3842,0.0012997266,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3843,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3844,0.0031214203,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3845,0.0062430766,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3846,0.009364497,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3847,0.0637276614,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3848,0.1180910617,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3849,0.1724542261,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +3850,0.2788590752,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3851,0.3852636883,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3852,0.4916685374,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3853,0.579574228,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3854,0.6674799186,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3855,0.7553858452,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +3856,0.6904695994,0.3,0.3,0.3,0.2,0.2,0.1,0.1,,,,,,,,,,, +3857,0.6255533537,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3858,0.5606371079,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3859,0.4282207373,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +3860,0.2958043667,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3861,0.1633877601,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +3862,0.1123793911,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3863,0.0613710221,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3864,0.010362653,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3865,0.006908278,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3866,0.003454139,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3867,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3868,0.0161911291,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3869,0.0323824943,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3870,0.0485736234,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3871,0.1474585584,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +3872,0.2463437294,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +3873,0.3452286645,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3874,0.4588681391,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +3875,0.5725073777,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3876,0.6861468523,0.3,0.3,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3877,0.6752440624,0.3,0.3,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3878,0.6643412724,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3879,0.6534384825,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3880,0.5459375495,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3881,0.4384368525,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +3882,0.3309359196,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3883,0.2489221812,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +3884,0.1669082069,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +3885,0.0848942326,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3886,0.0594419616,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3887,0.0339894547,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3888,0.0085371837,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3889,0.0056913772,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3890,0.0028458066,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3891,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3892,0.034566639,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3893,0.069133514,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3894,0.103700153,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3895,0.2519551125,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3896,0.4002100721,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3897,0.5484650316,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3898,0.7103352642,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +3899,0.8722057328,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3900,1.0340759654,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +3901,1.0775962764,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +3902,1.1211165874,0.4,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +3903,1.1646368984,0.5,0.4,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +3904,1.0419769721,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +3905,0.9193170458,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3906,0.7966571195,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3907,0.6085703069,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3908,0.4204834942,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +3909,0.2323966816,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +3910,0.1593484138,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +3911,0.086300146,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3912,0.0132516422,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3913,0.0088345068,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3914,0.0044171354,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3915,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3916,0.0244630818,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3917,0.0489261636,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3918,0.0733894814,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3919,0.2086544902,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +3920,0.3439194991,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3921,0.4791845079,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3922,0.64801564,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3923,0.8168465361,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3924,0.9856776682,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +3925,0.9839758475,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +3926,0.9822737909,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +3927,0.9805719703,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +3928,0.8343786867,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3929,0.6881854031,0.3,0.3,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3930,0.5419921195,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3931,0.4076780726,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3932,0.2733640257,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3933,0.1390497428,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +3934,0.0956037625,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3935,0.0521575463,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3936,0.0087113301,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3937,0.0058077107,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3938,0.0029038554,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3939,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3940,0.036176903,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3941,0.072354042,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3942,0.108530945,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3943,0.2722566152,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3944,0.4359820494,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +3945,0.5997077196,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3946,0.7386387691,0.3,0.3,0.3,0.3,0.2,0.2,0.1,,,,,,,,,,, +3947,0.8775698186,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3948,1.0165011041,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +3949,1.033740887,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +3950,1.0509806699,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +3951,1.0682202168,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +3952,0.9627819037,0.4,0.4,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3953,0.8573435906,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3954,0.7519052774,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +3955,0.5800346069,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3956,0.4081639363,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3957,0.2362932657,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +3958,0.1631824656,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +3959,0.0900716656,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3960,0.0169611015,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3961,0.0113072437,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3962,0.0056536219,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3963,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3964,0.0391616963,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3965,0.0783231567,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3966,0.117484853,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3967,0.2895678972,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3968,0.4616507055,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +3969,0.6337337497,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3970,0.8214826523,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3971,1.0092315549,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +3972,1.1969804575,0.5,0.4,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +3973,1.2512282322,0.5,0.5,0.5,0.4,0.4,0.3,0.3,,,,,,,,,,, +3974,1.305476007,0.5,0.5,0.5,0.4,0.4,0.3,0.3,,,,,,,,,,, +3975,1.3597237817,0.5,0.5,0.5,0.5,0.4,0.3,0.3,,,,,,,,,,, +3976,1.2129023441,0.5,0.5,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +3977,1.0660809065,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +3978,0.919259469,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3979,0.7033510036,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +3980,0.4874427743,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3981,0.2715343089,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3982,0.1873057496,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +3983,0.1030771904,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3984,0.0188486311,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3985,0.0125656754,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3986,0.0062829557,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3987,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3988,0.0430889566,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3989,0.0861781491,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3990,0.1292671057,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +3991,0.3181991654,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +3992,0.5071309891,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +3993,0.6960628128,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +3994,0.9007268026,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +3995,1.1053905565,0.4,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +3996,1.3100545463,0.5,0.5,0.5,0.4,0.4,0.3,0.3,,,,,,,,,,, +3997,1.3490548387,0.5,0.5,0.5,0.5,0.4,0.3,0.3,,,,,,,,,,, +3998,1.3880548951,0.6,0.5,0.5,0.5,0.4,0.3,0.3,,,,,,,,,,, +3999,1.4270551875,0.6,0.5,0.5,0.5,0.5,0.3,0.3,,,,,,,,,,, +4000,1.2637823451,0.5,0.5,0.5,0.4,0.4,0.3,0.3,,,,,,,,,,, +4001,1.1005097387,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +4002,0.9372368963,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4003,0.716698214,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +4004,0.4961592957,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4005,0.2756206134,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +4006,0.1902464164,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +4007,0.1048722194,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4008,0.0194980225,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4009,0.0129986816,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4010,0.0064993408,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4011,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4012,0.0441704103,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4013,0.0883405846,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4014,0.1325109949,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4015,0.3280825619,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +4016,0.523653893,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4017,0.7192252241,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +4018,0.9306091874,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4019,1.1419933866,0.5,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +4020,1.3533773499,0.5,0.5,0.5,0.5,0.4,0.3,0.3,,,,,,,,,,, +4021,1.3886644074,0.6,0.5,0.5,0.5,0.4,0.3,0.3,,,,,,,,,,, +4022,1.4239517009,0.6,0.5,0.5,0.5,0.5,0.3,0.3,,,,,,,,,,, +4023,1.4592389944,0.6,0.5,0.5,0.5,0.5,0.3,0.3,,,,,,,,,,, +4024,1.2919098158,0.5,0.5,0.5,0.4,0.4,0.3,0.3,,,,,,,,,,, +4025,1.1245808732,0.4,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +4026,0.9572516945,0.4,0.4,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4027,0.7324317959,0.3,0.3,0.3,0.3,0.2,0.2,0.1,,,,,,,,,,, +4028,0.5076118974,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4029,0.2827917628,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +4030,0.1952117118,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +4031,0.1076314248,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4032,0.0200513737,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4033,0.0133675038,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4034,0.0066838699,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4035,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4036,0.0319025299,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4037,0.0638050598,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4038,0.0957075896,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4039,0.2242833012,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +4040,0.3528587769,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +4041,0.4814344884,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4042,0.6316265314,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4043,0.7818185744,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +4044,0.9320103814,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4045,0.9484577747,0.4,0.4,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4046,0.964905168,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +4047,0.9813523254,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +4048,0.8432136654,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4049,0.7050747695,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +4050,0.5669361096,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4051,0.428287517,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +4052,0.2896386884,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +4053,0.1509900958,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +4054,0.1045496475,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4055,0.0581091992,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4056,0.0116687508,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4057,0.0077792459,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4058,0.0038895049,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4059,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4060,0.0223327384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4061,0.0446654768,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4062,0.0669982152,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4063,0.1804321593,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +4064,0.2938661034,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +4065,0.4073000475,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +4066,0.5136579385,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4067,0.6200155934,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4068,0.7263732484,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +4069,0.7655259778,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +4070,0.8046787073,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4071,0.8438316727,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4072,0.746143345,0.3,0.3,0.3,0.3,0.2,0.2,0.1,,,,,,,,,,, +4073,0.6484552534,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4074,0.5507671617,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4075,0.4167594047,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +4076,0.2827514118,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +4077,0.1487434189,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +4078,0.1019504303,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4079,0.0551572058,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4080,0.0083642172,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4081,0.0055759875,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4082,0.0027879937,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4083,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4084,0.0268784778,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4085,0.0537569557,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4086,0.0806356695,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4087,0.2050776465,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +4088,0.3295196235,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +4089,0.4539616004,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +4090,0.5710594615,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4091,0.6881575586,0.3,0.3,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4092,0.8052554196,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4093,0.8287732029,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4094,0.8522909861,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4095,0.8758087693,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4096,0.776603622,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +4097,0.6773987108,0.3,0.3,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4098,0.5781935635,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4099,0.443207944,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +4100,0.3082220885,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +4101,0.173236469,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +4102,0.1201697276,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4103,0.0671032221,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4104,0.0140364807,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4105,0.0093576538,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4106,0.0046788269,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4107,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4108,0.0284396599,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4109,0.0568793199,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4110,0.0853189798,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4111,0.2329844846,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +4112,0.3806499893,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +4113,0.5283152581,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4114,0.7405517835,0.3,0.3,0.3,0.3,0.2,0.2,0.1,,,,,,,,,,, +4115,0.9527883089,0.4,0.4,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4116,1.1650248342,0.5,0.4,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +4117,1.177756633,0.5,0.4,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +4118,1.1904881958,0.5,0.4,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +4119,1.2032199946,0.5,0.4,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +4120,1.0631567577,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +4121,0.9230932848,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4122,0.7830300479,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +4123,0.6031892312,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4124,0.4233484144,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +4125,0.2435075977,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +4126,0.168485435,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +4127,0.0934635083,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4128,0.0184415817,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4129,0.0122943091,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4130,0.0061472725,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4131,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4132,0.041314457,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4133,0.0826291499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4134,0.1239436069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4135,0.3031086036,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +4136,0.4822733643,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4137,0.6614383609,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4138,0.8608456316,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4139,1.0602526664,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +4140,1.2596599371,0.5,0.5,0.5,0.4,0.4,0.3,0.3,,,,,,,,,,, +4141,1.311723803,0.5,0.5,0.5,0.4,0.4,0.3,0.3,,,,,,,,,,, +4142,1.3637879049,0.5,0.5,0.5,0.5,0.4,0.3,0.3,,,,,,,,,,, +4143,1.4158520069,0.6,0.5,0.5,0.5,0.4,0.3,0.3,,,,,,,,,,, +4144,1.2591622749,0.5,0.5,0.5,0.4,0.4,0.3,0.3,,,,,,,,,,, +4145,1.1024727789,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +4146,0.9457832829,0.4,0.4,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4147,0.7236890817,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +4148,0.5015946447,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4149,0.2795002076,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +4150,0.1930209598,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +4151,0.1065414761,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4152,0.0200622284,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4153,0.0133748189,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4154,0.0066874095,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4155,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4156,0.0417920617,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4157,0.0835838873,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4158,0.125375949,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4159,0.3122364219,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +4160,0.4990968949,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4161,0.6859573678,0.3,0.3,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4162,0.8925407433,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4163,1.0991243547,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +4164,1.3057077302,0.5,0.5,0.5,0.4,0.4,0.3,0.3,,,,,,,,,,, +4165,1.3447252484,0.5,0.5,0.5,0.5,0.4,0.3,0.3,,,,,,,,,,, +4166,1.3837430026,0.6,0.5,0.5,0.5,0.4,0.3,0.3,,,,,,,,,,, +4167,1.4227607568,0.6,0.5,0.5,0.5,0.5,0.3,0.3,,,,,,,,,,, +4168,1.2592120647,0.5,0.5,0.5,0.4,0.4,0.3,0.3,,,,,,,,,,, +4169,1.0956631366,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +4170,0.9321144444,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4171,0.7130199028,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +4172,0.4939251252,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4173,0.2748305835,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +4174,0.1898429065,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +4175,0.1048549936,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4176,0.0198673166,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4177,0.0132447991,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4178,0.0066225175,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4179,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4180,0.0408217502,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4181,0.0816435003,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4182,0.1224654865,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4183,0.3056995618,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +4184,0.4889338731,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4185,0.6721681844,0.3,0.3,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4186,0.8745838454,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4187,1.0769995065,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +4188,1.2794151676,0.5,0.5,0.5,0.4,0.4,0.3,0.3,,,,,,,,,,, +4189,1.271504958,0.5,0.5,0.5,0.4,0.4,0.3,0.3,,,,,,,,,,, +4190,1.2635947484,0.5,0.5,0.5,0.4,0.4,0.3,0.3,,,,,,,,,,, +4191,1.2556845388,0.5,0.5,0.5,0.4,0.4,0.3,0.3,,,,,,,,,,, +4192,1.089177954,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +4193,0.9226713692,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4194,0.7561647844,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +4195,0.5775224628,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4196,0.3988801413,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +4197,0.2202375837,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +4198,0.1524767112,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +4199,0.0847158388,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4200,0.0169549663,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4201,0.0113032322,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4202,0.0056517341,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4203,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4204,0.0390585771,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4205,0.0781171543,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4206,0.1171757314,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4207,0.2916984766,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +4208,0.4662214578,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +4209,0.640744203,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4210,0.8148672139,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4211,0.9889904608,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +4212,1.1631137076,0.5,0.4,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +4213,1.2077978261,0.5,0.5,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +4214,1.2524817086,0.5,0.5,0.5,0.4,0.4,0.3,0.3,,,,,,,,,,, +4215,1.2971655911,0.5,0.5,0.5,0.4,0.4,0.3,0.3,,,,,,,,,,, +4216,1.1555888381,0.5,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +4217,1.0140120852,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +4218,0.8724353323,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4219,0.6671748085,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4220,0.4619142848,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +4221,0.256653761,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +4222,0.1769874591,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +4223,0.0973209213,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4224,0.0176543834,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4225,0.0117695103,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4226,0.0058848731,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4227,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4228,0.0247747991,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4229,0.0495493622,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4230,0.0743241613,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4231,0.2295881584,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +4232,0.3848519195,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +4233,0.5401159165,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4234,0.7542175543,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +4235,0.968319428,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +4236,1.1824210657,0.5,0.4,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +4237,1.2546701008,0.5,0.5,0.5,0.4,0.4,0.3,0.3,,,,,,,,,,, +4238,1.3269191358,0.5,0.5,0.5,0.5,0.4,0.3,0.3,,,,,,,,,,, +4239,1.3991681709,0.6,0.5,0.5,0.5,0.4,0.3,0.3,,,,,,,,,,, +4240,1.2484709147,0.5,0.5,0.5,0.4,0.4,0.3,0.3,,,,,,,,,,, +4241,1.0977736585,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +4242,0.9470764023,0.4,0.4,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4243,0.725305717,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +4244,0.5035352677,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4245,0.2817645824,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +4246,0.1947064985,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +4247,0.1076481787,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4248,0.0205898589,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4249,0.0137266512,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4250,0.0068632076,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4251,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4252,0.0410504058,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4253,0.0821008115,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4254,0.1231514533,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4255,0.3089897012,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +4256,0.4948279491,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4257,0.680666197,0.3,0.3,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4258,0.8854000341,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4259,1.0901341073,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +4260,1.2948679444,0.5,0.5,0.5,0.4,0.4,0.3,0.3,,,,,,,,,,, +4261,1.3351972238,0.5,0.5,0.5,0.5,0.4,0.3,0.3,,,,,,,,,,, +4262,1.3755265031,0.5,0.5,0.5,0.5,0.4,0.3,0.3,,,,,,,,,,, +4263,1.4158557824,0.6,0.5,0.5,0.5,0.4,0.3,0.3,,,,,,,,,,, +4264,1.2551314235,0.5,0.5,0.5,0.4,0.4,0.3,0.3,,,,,,,,,,, +4265,1.0944070646,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +4266,0.9336827057,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4267,0.7148043132,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +4268,0.4959259207,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4269,0.2770472922,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +4270,0.1914534065,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +4271,0.1058595208,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4272,0.0202656351,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4273,0.0135105021,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4274,0.006755133,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4275,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4276,0.0402075184,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4277,0.0804150369,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4278,0.1206225553,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4279,0.3047592186,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +4280,0.4888961178,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4281,0.673033017,0.3,0.3,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4282,0.8760999571,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4283,1.0791666614,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +4284,1.2822336015,0.5,0.5,0.5,0.4,0.4,0.3,0.3,,,,,,,,,,, +4285,1.3244272853,0.5,0.5,0.5,0.5,0.4,0.3,0.3,,,,,,,,,,, +4286,1.3666212051,0.5,0.5,0.5,0.5,0.4,0.3,0.3,,,,,,,,,,, +4287,1.4088148888,0.6,0.5,0.5,0.5,0.4,0.3,0.3,,,,,,,,,,, +4288,1.2472150787,0.5,0.5,0.5,0.4,0.4,0.3,0.3,,,,,,,,,,, +4289,1.0856155044,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +4290,0.9240156943,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4291,0.7066984839,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +4292,0.4893810375,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4293,0.2720635912,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +4294,0.1880153135,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +4295,0.1039667999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4296,0.0199185222,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4297,0.0132790148,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4298,0.0066395074,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4299,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4300,0.0375585114,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4301,0.0751172588,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4302,0.1126757703,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4303,0.2836440889,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +4304,0.4546124076,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +4305,0.6255807263,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4306,0.8126212449,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4307,0.9996619994,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +4308,1.186702518,0.5,0.4,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +4309,1.222122899,0.5,0.5,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +4310,1.2575435159,0.5,0.5,0.5,0.4,0.4,0.3,0.3,,,,,,,,,,, +4311,1.2929641329,0.5,0.5,0.5,0.4,0.4,0.3,0.3,,,,,,,,,,, +4312,1.1477295982,0.5,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +4313,1.0024950636,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +4314,0.8572605289,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4315,0.6572916479,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4316,0.457323003,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +4317,0.257354122,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +4318,0.1780297417,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +4319,0.0987053613,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4320,0.019380981,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4321,0.0129208113,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4322,0.0064604057,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4323,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4324,0.0288511928,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4325,0.0577021497,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4326,0.0865533425,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4327,0.2265030775,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +4328,0.3664525766,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +4329,0.5064023116,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4330,0.664360386,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4331,0.8223182245,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4332,0.980276299,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +4333,0.9997386899,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +4334,1.0192013167,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +4335,1.0386637076,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +4336,0.9060826295,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4337,0.7735015513,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +4338,0.6409204732,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4339,0.4878646899,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4340,0.3348089066,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +4341,0.1817528873,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +4342,0.1256879022,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4343,0.0696226812,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4344,0.0135576962,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4345,0.0090383855,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4346,0.0045193107,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4347,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4348,0.0298863963,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4349,0.0597730285,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4350,0.0896594248,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4351,0.2360129325,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +4352,0.3823664402,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +4353,0.5287201838,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4354,0.6860921071,0.3,0.3,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4355,0.8434642663,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4356,1.0008364255,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +4357,1.0226391738,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +4358,1.044441922,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +4359,1.0662446702,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +4360,0.9375809415,0.4,0.4,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4361,0.8089172129,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4362,0.6802534842,0.3,0.3,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4363,0.519571836,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4364,0.3588899518,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +4365,0.1982080676,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +4366,0.1370505991,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4367,0.0758933665,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4368,0.0147358979,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4369,0.0098239319,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4370,0.004911966,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4371,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4372,0.0352526058,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4373,0.0705054476,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4374,0.1057580534,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4375,0.2753964413,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +4376,0.4450348291,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +4377,0.614672981,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4378,0.802056365,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4379,0.989439513,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +4380,1.176822897,0.5,0.4,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +4381,1.1914278311,0.5,0.4,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +4382,1.2060327653,0.5,0.5,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +4383,1.2206376994,0.5,0.5,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +4384,1.0742428969,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +4385,0.9278483303,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4386,0.7814537637,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +4387,0.5989209933,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4388,0.4163884588,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +4389,0.2338559244,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +4390,0.1618808513,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +4391,0.0899060142,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4392,0.0179309411,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4393,0.0119540394,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4394,0.0059769017,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4395,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4396,0.0334025956,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4397,0.0668049552,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4398,0.1002075508,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4399,0.2636927668,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +4400,0.4271779828,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +4401,0.5906631988,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4402,0.7700139045,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +4403,0.949364846,0.4,0.4,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4404,1.1287155517,0.5,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +4405,1.1097720603,0.4,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +4406,1.090828569,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +4407,1.0718853137,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +4408,0.9260771342,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4409,0.7802689548,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +4410,0.6344607754,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4411,0.4825164141,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4412,0.3305720527,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +4413,0.1786276914,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +4414,0.122686355,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4415,0.0667450186,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4416,0.0108036822,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4417,0.0072025335,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4418,0.0036011488,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4419,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4420,0.0321731883,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4421,0.0643461406,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4422,0.0965193288,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4423,0.2666634019,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +4424,0.4368077109,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +4425,0.6069517839,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4426,0.7996983098,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4427,0.9924450717,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +4428,1.1851915976,0.5,0.4,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +4429,1.2366214103,0.5,0.5,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +4430,1.288051223,0.5,0.5,0.5,0.4,0.4,0.3,0.3,,,,,,,,,,, +4431,1.3394810357,0.5,0.5,0.5,0.5,0.4,0.3,0.3,,,,,,,,,,, +4432,1.1901252729,0.5,0.4,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +4433,1.040769746,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +4434,0.8914142192,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4435,0.6814743966,0.3,0.3,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4436,0.471534574,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +4437,0.2615949873,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +4438,0.1805820007,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +4439,0.0995690141,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4440,0.0185560274,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4441,0.0123707636,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4442,0.0061852638,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4443,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4444,0.0271658901,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4445,0.0543320163,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4446,0.0814979064,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4447,0.1814760937,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +4448,0.2814542809,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +4449,0.3814324682,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +4450,0.5007340595,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4451,0.6200358869,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4452,0.7393374783,0.3,0.3,0.3,0.3,0.2,0.2,0.1,,,,,,,,,,, +4453,0.7934849655,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4454,0.8476324527,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4455,0.9017799398,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4456,0.8286589931,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4457,0.7555378103,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +4458,0.6824168635,0.3,0.3,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4459,0.529241915,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4460,0.3760667306,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +4461,0.2228915461,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +4462,0.1545213973,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +4463,0.0861512485,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4464,0.0177810997,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4465,0.0118539878,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4466,0.0059271119,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4467,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4468,0.0329169679,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4469,0.0658339358,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4470,0.0987511396,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4471,0.2575759345,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +4472,0.4164009653,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +4473,0.5752259961,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4474,0.7518410934,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +4475,0.9284564268,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4476,1.1050715241,0.4,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +4477,1.1310823377,0.5,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +4478,1.1570933873,0.5,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +4479,1.1831042009,0.5,0.4,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +4480,1.0430315251,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +4481,0.9029590854,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4482,0.7628866456,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +4483,0.5851145839,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4484,0.4073425223,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +4485,0.2295704606,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +4486,0.1594300597,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +4487,0.0892898947,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4488,0.0191494937,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4489,0.0127664865,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4490,0.0063832432,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4491,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4492,0.0372607164,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4493,0.0745214328,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4494,0.1117821493,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4495,0.2944831668,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +4496,0.4771839483,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4497,0.6598849659,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4498,0.8636489635,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4499,1.0674127251,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +4500,1.2711767228,0.5,0.5,0.5,0.4,0.4,0.3,0.3,,,,,,,,,,, +4501,1.30860781,0.5,0.5,0.5,0.4,0.4,0.3,0.3,,,,,,,,,,, +4502,1.3460391332,0.5,0.5,0.5,0.5,0.4,0.3,0.3,,,,,,,,,,, +4503,1.3834702205,0.6,0.5,0.5,0.5,0.4,0.3,0.3,,,,,,,,,,, +4504,1.2191045978,0.5,0.5,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +4505,1.0547389751,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +4506,0.8903733525,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4507,0.6790382351,0.3,0.3,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4508,0.4677033538,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +4509,0.2563684724,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +4510,0.1768258192,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +4511,0.0972834019,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4512,0.0177409847,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4513,0.0118273231,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4514,0.0059136616,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4515,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4516,0.030871102,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4517,0.0617424399,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4518,0.0926135419,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4519,0.2683874037,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +4520,0.4441612656,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +4521,0.6199351274,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4522,0.7998889741,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4523,0.9798430568,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +4524,1.1597971395,0.5,0.4,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +4525,1.1993493673,0.5,0.4,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +4526,1.2389018311,0.5,0.5,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +4527,1.2784540589,0.5,0.5,0.5,0.4,0.4,0.3,0.3,,,,,,,,,,, +4528,1.1320212651,0.5,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +4529,0.9855884713,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +4530,0.8391554414,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4531,0.6406679845,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4532,0.4421805276,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +4533,0.2436930706,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +4534,0.1681697062,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +4535,0.0926463418,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4536,0.0171232134,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4537,0.0114153183,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4538,0.0057076591,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4539,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4540,0.0358330937,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4541,0.0716664234,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4542,0.1074995171,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4543,0.2839973371,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +4544,0.460495157,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +4545,0.6369929769,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4546,0.8392137262,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4547,1.0414347115,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +4548,1.2436554607,0.5,0.5,0.5,0.4,0.4,0.3,0.2,,,,,,,,,,, +4549,1.2743245718,0.5,0.5,0.5,0.4,0.4,0.3,0.3,,,,,,,,,,, +4550,1.3049939188,0.5,0.5,0.5,0.4,0.4,0.3,0.3,,,,,,,,,,, +4551,1.3356630299,0.5,0.5,0.5,0.5,0.4,0.3,0.3,,,,,,,,,,, +4552,1.1696760526,0.5,0.4,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +4553,1.0036890753,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +4554,0.8377020979,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4555,0.6376241985,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4556,0.4375465351,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +4557,0.2374686357,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +4558,0.1638384642,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +4559,0.0902085286,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4560,0.0165783571,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4561,0.0110521594,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4562,0.0055261977,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4563,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4564,0.035001533,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4565,0.070003066,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4566,0.105004599,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4567,0.2830223062,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +4568,0.4610400133,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +4569,0.6390579565,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4570,0.8402685152,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4571,1.041479074,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +4572,1.2426898687,0.5,0.5,0.5,0.4,0.4,0.3,0.2,,,,,,,,,,, +4573,1.27839719,0.5,0.5,0.5,0.4,0.4,0.3,0.3,,,,,,,,,,, +4574,1.3141049833,0.5,0.5,0.5,0.4,0.4,0.3,0.3,,,,,,,,,,, +4575,1.3498125406,0.5,0.5,0.5,0.5,0.4,0.3,0.3,,,,,,,,,,, +4576,1.1858582148,0.5,0.4,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +4577,1.0219041251,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +4578,0.8579497993,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4579,0.6520313892,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4580,0.4461132152,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +4581,0.2401948051,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +4582,0.1650593765,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +4583,0.089923712,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4584,0.0147882834,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4585,0.0098588556,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4586,0.0049294278,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4587,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4588,0.0318204121,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4589,0.0636408242,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4590,0.0954612362,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4591,0.2693525239,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +4592,0.4432438115,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +4593,0.6171350992,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4594,0.8156268036,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4595,1.014118272,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +4596,1.2126099764,0.5,0.5,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +4597,1.2128542061,0.5,0.5,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +4598,1.2130986717,0.5,0.5,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +4599,1.2133429014,0.5,0.5,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +4600,1.0616059583,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +4601,0.9098687792,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4602,0.7581316002,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +4603,0.5792457568,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4604,0.4003596775,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +4605,0.2214735982,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +4606,0.1525208377,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +4607,0.0835680773,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4608,0.0146153169,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4609,0.0097434659,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4610,0.0048718509,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4611,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4612,0.0197063846,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4613,0.0394127691,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4614,0.0591191537,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4615,0.1705180866,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +4616,0.2819170194,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +4617,0.3933157163,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +4618,0.5447296155,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4619,0.6961432788,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +4620,0.847557178,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4621,0.8698233727,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4622,0.8920895673,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4623,0.9143559979,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4624,0.8163368394,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4625,0.7183176808,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +4626,0.6202985223,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4627,0.4766879379,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4628,0.3330773536,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +4629,0.1894670052,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +4630,0.1303414803,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4631,0.0712159554,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4632,0.0120904304,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4633,0.008060287,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4634,0.0040301435,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4635,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4636,0.0207675448,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4637,0.0415350896,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4638,0.0623026344,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4639,0.196119727,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +4640,0.3299365837,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +4641,0.4637534403,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +4642,0.6604862192,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4643,0.8572189981,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4644,1.0539515409,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +4645,1.0858620938,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +4646,1.1177724107,0.4,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +4647,1.1496829636,0.5,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +4648,1.0075512076,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +4649,0.8654194516,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4650,0.7232879316,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +4651,0.5502097989,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4652,0.3771316663,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +4653,0.2040535337,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +4654,0.1401467705,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +4655,0.0762397714,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4656,0.0123330083,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4657,0.0082219269,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4658,0.0041110814,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4659,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4660,0.0305362596,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4661,0.0610725191,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4662,0.0916087787,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4663,0.2617627625,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +4664,0.4319169823,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +4665,0.602071202,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4666,0.7690773368,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +4667,0.9360837075,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4668,1.1030900782,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +4669,1.1328771308,0.5,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +4670,1.1626639474,0.5,0.4,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +4671,1.1924510001,0.5,0.4,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +4672,1.0312775889,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +4673,0.8701041778,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4674,0.7089305307,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +4675,0.5281201103,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4676,0.3473094541,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +4677,0.1664987978,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +4678,0.1121278463,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4679,0.0577571309,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4680,0.0033864154,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4681,0.0022575316,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4682,0.0011288838,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4683,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4684,0.0298672826,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4685,0.0597343293,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4686,0.089601612,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4687,0.2467396883,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +4688,0.4038780005,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +4689,0.5610160768,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4690,0.7400668637,0.3,0.3,0.3,0.3,0.2,0.2,0.1,,,,,,,,,,, +4691,0.9191178865,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4692,1.0981686734,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +4693,1.1110262446,0.4,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +4694,1.1238835798,0.4,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +4695,1.1367409149,0.5,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +4696,1.0195998712,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +4697,0.9024585915,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4698,0.7853175478,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +4699,0.6061254145,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4700,0.4269332812,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +4701,0.2477409119,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +4702,0.170756653,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +4703,0.093772394,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4704,0.016787899,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4705,0.01119209,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4706,0.005596045,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4707,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4708,0.0322109436,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4709,0.0644218872,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4710,0.0966328307,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4711,0.2479108108,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +4712,0.3991890269,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +4713,0.550467007,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4714,0.6980477983,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +4715,0.8456288255,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4716,0.9932096168,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +4717,1.0213960802,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +4718,1.0495825435,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +4719,1.0777690069,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +4720,0.9559059537,0.4,0.4,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4721,0.8340426644,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4722,0.7121796112,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +4723,0.5438666707,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4724,0.3755537303,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +4725,0.2072405538,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +4726,0.1427393805,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +4727,0.0782379713,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4728,0.013736798,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4729,0.0091577867,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4730,0.0045790113,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4731,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4732,0.0317262598,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4733,0.0634525195,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4734,0.0951787793,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4735,0.2525591975,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +4736,0.4099396157,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +4737,0.5673200339,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4738,0.7095346157,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +4739,0.8517489614,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4740,0.9939635431,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +4741,1.0553796356,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +4742,1.116795728,0.4,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +4743,1.1782118205,0.5,0.4,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +4744,1.0605337075,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +4745,0.9428558304,0.4,0.4,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4746,0.8251779534,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4747,0.630680053,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4748,0.4361823885,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +4749,0.2416844881,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +4750,0.1663817563,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +4751,0.0910792605,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4752,0.0157765286,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4753,0.0105176858,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4754,0.0052588429,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4755,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4756,0.0308567078,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4757,0.0617134155,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4758,0.0925701233,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4759,0.258159726,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +4760,0.4237493286,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +4761,0.5893391673,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4762,0.7780295929,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +4763,0.9667202546,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +4764,1.1554109162,0.5,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +4765,1.1943630706,0.5,0.4,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +4766,1.2333152249,0.5,0.5,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +4767,1.2722671433,0.5,0.5,0.5,0.4,0.4,0.3,0.3,,,,,,,,,,, +4768,1.1344807876,0.5,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +4769,0.996694196,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +4770,0.8589076043,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4771,0.6571229289,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4772,0.4553382535,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +4773,0.2535533421,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +4774,0.1742225905,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +4775,0.0948918389,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4776,0.0155608514,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4777,0.0103739796,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4778,0.0051868718,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4779,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4780,0.0308904516,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4781,0.0617809031,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4782,0.0926715907,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4783,0.2681887164,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +4784,0.4437058421,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +4785,0.6192227319,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4786,0.8237824227,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4787,1.0283421135,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +4788,1.2329015683,0.5,0.5,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +4789,1.2746280301,0.5,0.5,0.5,0.4,0.4,0.3,0.3,,,,,,,,,,, +4790,1.3163542559,0.5,0.5,0.5,0.4,0.4,0.3,0.3,,,,,,,,,,, +4791,1.3580804818,0.5,0.5,0.5,0.5,0.4,0.3,0.3,,,,,,,,,,, +4792,1.1982773525,0.5,0.4,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +4793,1.0384739872,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +4794,0.8786706219,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4795,0.6683768432,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4796,0.4580833005,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +4797,0.2477897579,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +4798,0.1700588876,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +4799,0.0923280174,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4800,0.0145971471,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4801,0.0097314314,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4802,0.0048657157,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4803,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4804,0.0230387627,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4805,0.0460777614,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4806,0.0691165241,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4807,0.2094261144,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +4808,0.3497359407,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +4809,0.490045531,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4810,0.6637655039,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4811,0.8374852409,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4812,1.0112052138,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +4813,1.0624717348,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +4814,1.1137384917,0.4,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +4815,1.1650050127,0.5,0.4,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +4816,1.0038094203,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +4817,0.842613592,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4818,0.6814179996,0.3,0.3,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4819,0.5089765159,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4820,0.3365347962,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +4821,0.1640933125,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +4822,0.1121665455,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4823,0.0602397785,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4824,0.0083130116,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4825,0.0055420077,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4826,0.0027710039,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4827,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4828,0.0264815751,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4829,0.0529631503,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4830,0.0794447254,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4831,0.2378105572,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +4832,0.3961761531,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +4833,0.5545417489,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4834,0.73640861,0.3,0.3,0.3,0.3,0.2,0.2,0.1,,,,,,,,,,, +4835,0.9182752352,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4836,1.1001420963,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +4837,1.102262529,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +4838,1.1043831976,0.4,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +4839,1.1065038662,0.4,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +4840,0.9223308635,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4841,0.7381578608,0.3,0.3,0.3,0.3,0.2,0.2,0.1,,,,,,,,,,, +4842,0.5539848581,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4843,0.4072377513,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +4844,0.2604908804,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +4845,0.1137437736,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4846,0.0771659564,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4847,0.0405881392,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4848,0.0040103219,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4849,0.002673548,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4850,0.001336774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4851,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4852,0.0217071801,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4853,0.0434143602,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4854,0.0651215403,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4855,0.22601627,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +4856,0.3869112357,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +4857,0.5478062014,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4858,0.7202184248,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +4859,0.8926304121,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4860,1.0650423995,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +4861,1.0575231934,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +4862,1.0500035153,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +4863,1.0424843091,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +4864,0.9082729094,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4865,0.7740612738,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +4866,0.6398498741,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4867,0.4877044658,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4868,0.3355590574,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +4869,0.183413649,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +4870,0.1260671071,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4871,0.0687205653,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4872,0.0113740234,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4873,0.0075826823,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4874,0.0037913411,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4875,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4876,0.0274476392,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4877,0.0548955143,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4878,0.0823431534,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4879,0.2504972856,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +4880,0.4186511818,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +4881,0.586805314,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4882,0.7659063626,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +4883,0.9450074112,0.4,0.4,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4884,1.1241084598,0.4,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +4885,1.1440906941,0.5,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +4886,1.1640729285,0.5,0.4,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +4887,1.1840551628,0.5,0.4,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +4888,1.0364455831,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +4889,0.8888357674,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4890,0.7412259518,0.3,0.3,0.3,0.3,0.2,0.2,0.1,,,,,,,,,,, +4891,0.5621914469,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4892,0.383156706,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +4893,0.2041219652,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +4894,0.1398685611,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +4895,0.075615157,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4896,0.0113617529,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4897,0.0075744233,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4898,0.0037873296,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4899,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4900,0.0188288096,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4901,0.0376576191,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4902,0.0564864287,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4903,0.170836883,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +4904,0.2851875733,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +4905,0.3995380275,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +4906,0.5651609021,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4907,0.7307835407,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +4908,0.8964061792,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4909,0.9913711691,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +4910,1.0863363949,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +4911,1.1813013848,0.5,0.4,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +4912,1.066004688,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +4913,0.9507077553,0.4,0.4,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4914,0.8354110585,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4915,0.6359981245,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4916,0.4365851905,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +4917,0.2371722565,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +4918,0.1623704905,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +4919,0.0875684885,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4920,0.0127667224,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4921,0.008511227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4922,0.0042554955,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4923,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4924,0.0211307037,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4925,0.0422614074,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4926,0.063392111,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4927,0.1932625938,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +4928,0.3231330766,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +4929,0.4530037954,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +4930,0.5929936454,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4931,0.7329832595,0.3,0.3,0.3,0.3,0.2,0.2,0.1,,,,,,,,,,, +4932,0.8729731095,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4933,0.9110439133,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4934,0.9491149531,0.4,0.4,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4935,0.9871857569,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +4936,0.8679348992,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4937,0.7486840415,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +4938,0.6294331838,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4939,0.4766296532,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4940,0.3238263585,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +4941,0.1710228279,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +4942,0.1173638001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4943,0.0637047722,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4944,0.0100457444,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4945,0.0066970843,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4946,0.0033486601,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4947,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4948,0.0082669973,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4949,0.0165342305,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4950,0.0248012278,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4951,0.0899010588,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4952,0.1550011257,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +4953,0.2201009567,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +4954,0.3585869654,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +4955,0.4970729742,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4956,0.635558983,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4957,0.6908716935,0.3,0.3,0.3,0.2,0.2,0.1,0.1,,,,,,,,,,, +4958,0.7461846399,0.3,0.3,0.3,0.3,0.2,0.2,0.1,,,,,,,,,,, +4959,0.8014975864,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4960,0.7191570286,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +4961,0.6368164709,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4962,0.5544756771,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4963,0.4233146706,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +4964,0.2921536641,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +4965,0.1609926576,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +4966,0.1102032694,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4967,0.0594141171,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4968,0.0086249648,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4969,0.0057498979,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4970,0.0028750669,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4971,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4972,0.0143094988,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4973,0.0286192336,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4974,0.0429287325,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4975,0.1706407913,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +4976,0.2983528502,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +4977,0.4260646731,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +4978,0.6294994916,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4979,0.8329340741,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4980,1.0363688926,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +4981,1.0446571273,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +4982,1.0529453619,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +4983,1.0612335965,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +4984,0.8839311166,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +4985,0.7066286366,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +4986,0.5293261566,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +4987,0.390894657,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +4988,0.2524631574,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +4989,0.1140316579,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4990,0.0777388933,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4991,0.0414461286,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4992,0.005153364,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4993,0.0034354973,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4994,0.0017178667,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4995,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4996,0.0102630734,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4997,0.0205261468,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4998,0.0307889842,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +4999,0.1331646337,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5000,0.2355402832,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +5001,0.3379156967,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5002,0.5102993676,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5003,0.6826830385,0.3,0.3,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5004,0.8550667094,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5005,0.9394439302,0.4,0.4,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5006,1.0238213869,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +5007,1.1081988437,0.4,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +5008,0.9946178899,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +5009,0.8810367,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5010,0.7674557462,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +5011,0.5829368104,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5012,0.3984181106,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5013,0.2138991749,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +5014,0.145940323,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +5015,0.0779814711,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5016,0.0100226192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5017,0.0066817462,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5018,0.0033408731,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5019,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5020,0.0165689182,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5021,0.0331376005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5022,0.0497065187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5023,0.1638202944,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +5024,0.2779338341,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5025,0.3920476098,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5026,0.5545464683,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5027,0.7170453269,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +5028,0.8795441854,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5029,0.9265337375,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5030,0.9735235257,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +5031,1.0205133138,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +5032,0.8998648017,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5033,0.7792167615,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +5034,0.6585684854,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5035,0.4985543983,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5036,0.3385403111,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5037,0.178525988,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +5038,0.1218517267,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5039,0.0651774653,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5040,0.008502968,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5041,0.005668724,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5042,0.002834244,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5043,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5044,0.0187216789,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5045,0.0374433577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5046,0.0561652726,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5047,0.1858092235,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +5048,0.3154531744,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5049,0.4450971254,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +5050,0.6165350257,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5051,0.787972926,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +5052,0.9594108264,0.4,0.4,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5053,0.9798867114,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +5054,1.0003628324,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +5055,1.0208389533,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +5056,0.89870241,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5057,0.7765656308,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +5058,0.6544288515,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5059,0.4982811442,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5060,0.3421334369,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5061,0.1859859656,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +5062,0.1272622987,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5063,0.0685388678,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5064,0.009815437,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5065,0.0065437033,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5066,0.0032717337,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5067,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5068,0.0191258967,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5069,0.0382517933,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5070,0.05737769,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5071,0.1651714626,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +5072,0.2729649992,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5073,0.3807587718,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5074,0.5302027877,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5075,0.6796468036,0.3,0.3,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5076,0.8290908194,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5077,0.7737665464,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +5078,0.7184420374,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +5079,0.6631175284,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5080,0.5352773375,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5081,0.4074371465,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5082,0.2795969556,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5083,0.2078911251,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +5084,0.1361855305,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5085,0.0644797,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5086,0.0444212471,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5087,0.0243625583,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5088,0.0043038695,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5089,0.0028691677,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5090,0.0014347018,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5091,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5092,0.018213634,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5093,0.0364275039,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5094,0.0546411379,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5095,0.1779339376,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +5096,0.3012267373,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5097,0.424519537,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +5098,0.5651587783,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5099,0.7057977837,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +5100,0.8464370251,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5101,0.8889794736,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5102,0.931521922,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5103,0.9740646065,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +5104,0.8534743791,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5105,0.7328841518,0.3,0.3,0.3,0.3,0.2,0.2,0.1,,,,,,,,,,, +5106,0.6122939244,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5107,0.4606959681,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +5108,0.3090982477,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5109,0.1575005273,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +5110,0.1072781766,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5111,0.057055826,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5112,0.0068337113,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5113,0.0045556502,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5114,0.0022778251,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5115,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5116,0.0114280607,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5117,0.0228561214,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5118,0.0342841821,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5119,0.1160138117,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5120,0.1977432054,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +5121,0.279472835,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5122,0.3801119762,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5123,0.4807511173,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5124,0.5813902585,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5125,0.6573114695,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5126,0.7332329165,0.3,0.3,0.3,0.3,0.2,0.2,0.1,,,,,,,,,,, +5127,0.8091543634,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5128,0.7422762573,0.3,0.3,0.3,0.3,0.2,0.2,0.1,,,,,,,,,,, +5129,0.6753981512,0.3,0.3,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5130,0.6085202811,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5131,0.4633173665,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +5132,0.3181146879,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5133,0.1729117733,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +5134,0.1176608872,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5135,0.062410001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5136,0.0071591149,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5137,0.0047727433,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5138,0.0023863716,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5139,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5140,0.0172725828,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5141,0.0345449297,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5142,0.0518175125,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5143,0.1785653951,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +5144,0.3053130418,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5145,0.4320609244,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +5146,0.5995080883,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5147,0.7669552523,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +5148,0.9344024163,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5149,0.9837818796,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +5150,1.033161107,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +5151,1.0825405703,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +5152,0.9518484376,0.4,0.4,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5153,0.8211565408,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5154,0.690464644,0.3,0.3,0.3,0.2,0.2,0.1,0.1,,,,,,,,,,, +5155,0.5205758913,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5156,0.3506871386,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5157,0.1807983858,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +5158,0.1229374278,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5159,0.0650762339,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5160,0.0072150399,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5161,0.0048100266,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5162,0.0024050133,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5163,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5164,0.0081721371,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5165,0.0163442741,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5166,0.0245161752,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5167,0.1040357033,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5168,0.1835549955,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +5169,0.2630742876,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5170,0.3390316021,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5171,0.4149886807,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +5172,0.4909459952,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5173,0.5542017152,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5174,0.6174574351,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5175,0.6807131551,0.3,0.3,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5176,0.6201203644,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5177,0.5595275737,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5178,0.498934783,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5179,0.3781319461,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5180,0.2573293451,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5181,0.1365265081,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5182,0.0929129887,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5183,0.0492992333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5184,0.0056857139,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5185,0.0037903973,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5186,0.0018953166,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5187,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5188,0.0144843531,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5189,0.0289687062,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5190,0.0434530594,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5191,0.1645890869,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +5192,0.2857251145,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5193,0.4068609061,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5194,0.5599051268,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5195,0.7129493476,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +5196,0.8659935683,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5197,0.9276298214,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5198,0.9892660745,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +5199,1.0509023276,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +5200,0.9322329017,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5201,0.8135634758,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5202,0.6948940499,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +5203,0.5240208275,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5204,0.353147605,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5205,0.1822743825,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +5206,0.1236880506,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5207,0.0651019547,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5208,0.0065156228,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5209,0.0043437485,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5210,0.0021718743,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5211,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5212,0.0199890775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5213,0.039977919,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5214,0.0599669964,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5215,0.2125557937,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +5216,0.3651443551,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5217,0.5177331524,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5218,0.706874518,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +5219,0.8960161197,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5220,1.0851577213,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +5221,1.1150311392,0.4,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +5222,1.144904793,0.5,0.4,0.4,0.4,0.4,0.2,0.2,,,,,,,,,,, +5223,1.1747784469,0.5,0.4,0.4,0.4,0.4,0.3,0.2,,,,,,,,,,, +5224,1.0084490761,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +5225,0.8421197053,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5226,0.6757903345,0.3,0.3,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5227,0.5046157775,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5228,0.3334409844,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5229,0.1622664274,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +5230,0.1102922303,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5231,0.0583180332,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5232,0.0063438361,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5233,0.0042293027,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5234,0.0021145334,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5235,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5236,0.0160832905,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5237,0.0321665811,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5238,0.0482498716,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5239,0.1701957506,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +5240,0.2921418656,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5241,0.4140877445,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +5242,0.5314572079,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5243,0.6488269072,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5244,0.7661966065,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +5245,0.8050310115,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5246,0.8438654165,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5247,0.8826998215,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5248,0.7475912612,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +5249,0.6124829369,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5250,0.4773743767,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5251,0.3499315604,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5252,0.2224885081,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +5253,0.0950454559,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5254,0.0643286787,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5255,0.0336119016,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5256,0.0028953604,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5257,0.0019302403,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5258,0.0009651201,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5259,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5260,0.0055191186,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5261,0.0110384731,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5262,0.0165575916,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5263,0.0871043341,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5264,0.1576510766,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +5265,0.2281975831,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +5266,0.3589975545,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5267,0.4897975258,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5268,0.6205974972,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5269,0.6906956593,0.3,0.3,0.3,0.2,0.2,0.1,0.1,,,,,,,,,,, +5270,0.7607938215,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +5271,0.8308919837,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5272,0.7398504786,0.3,0.3,0.3,0.3,0.2,0.2,0.1,,,,,,,,,,, +5273,0.6488085015,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5274,0.5577667604,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5275,0.4193350249,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +5276,0.2809032893,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5277,0.1424713178,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +5278,0.0961766994,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5279,0.0498820809,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5280,0.0035874625,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5281,0.002391563,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5282,0.0011958995,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5283,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5284,0.0109287467,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5285,0.0218577294,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5286,0.0327864761,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5287,0.1519436534,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +5288,0.2711008307,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5289,0.3902580081,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5290,0.5763126411,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5291,0.7623672741,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +5292,0.9484216712,0.4,0.4,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5293,0.9859674402,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +5294,1.0235132092,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +5295,1.0610587423,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +5296,0.9242967354,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5297,0.7875347285,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +5298,0.6507727216,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5299,0.4884392785,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5300,0.3261060714,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5301,0.1637726283,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +5302,0.1105180543,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5303,0.0572637162,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5304,0.0040091421,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5305,0.0026726041,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5306,0.001336302,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5307,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5308,0.0176107288,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5309,0.0352212217,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5310,0.0528319506,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5311,0.1985452698,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +5312,0.3442588249,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5313,0.4899721441,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5314,0.617160348,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5315,0.744348552,0.3,0.3,0.3,0.3,0.2,0.2,0.1,,,,,,,,,,, +5316,0.8715365199,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5317,0.8144818738,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5318,0.7574269917,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +5319,0.7003723456,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +5320,0.5495837687,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5321,0.3987951918,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5322,0.2480066149,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +5323,0.1751478316,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +5324,0.1022892842,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5325,0.0294305009,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5326,0.0197337572,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5327,0.0100367775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5328,0.0003400338,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5329,0.0002267678,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5330,0.0001132659,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5331,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5332,0.0029765343,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5333,0.0059530687,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5334,0.008929603,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5335,0.097789795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5336,0.1866499871,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +5337,0.2755099432,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5338,0.4640451001,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +5339,0.6525800211,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5340,0.8411151781,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5341,0.9264199997,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5342,1.0117248213,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +5343,1.0970294069,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +5344,0.9622920286,0.4,0.4,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5345,0.8275548862,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5346,0.6928175078,0.3,0.3,0.3,0.2,0.2,0.1,0.1,,,,,,,,,,, +5347,0.518001923,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5348,0.3431863381,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5349,0.1683709892,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +5350,0.1135276245,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5351,0.0586842597,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5352,0.003840895,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5353,0.002560518,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5354,0.001280377,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5355,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5356,0.0157708653,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5357,0.0315419667,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5358,0.047312832,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5359,0.1975907683,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +5360,0.3478687046,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5361,0.4981464049,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5362,0.6591789416,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5363,0.8202112422,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5364,0.9812435429,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +5365,0.9810764756,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +5366,0.9809096443,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +5367,0.9807425771,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +5368,0.8501457765,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5369,0.7195492119,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +5370,0.5889526473,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5371,0.4421866628,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +5372,0.2954204424,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5373,0.1486544579,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +5374,0.1000907453,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5375,0.0515272686,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5376,0.0029635559,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5377,0.0019757826,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5378,0.0009877733,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5379,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5380,0.0143628282,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5381,0.0287254205,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5382,0.0430882487,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5383,0.1819466192,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +5384,0.3208052257,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5385,0.4596635963,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +5386,0.6225298612,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5387,0.7853958901,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +5388,0.948262155,0.4,0.4,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5389,0.9526936846,0.4,0.4,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5390,0.9571249783,0.4,0.4,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5391,0.9615565079,0.4,0.4,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5392,0.8263349177,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5393,0.6911135634,0.3,0.3,0.3,0.2,0.2,0.1,0.1,,,,,,,,,,, +5394,0.5558919732,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5395,0.4153475921,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +5396,0.2748032109,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5397,0.1342588298,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5398,0.0903727642,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5399,0.0464864626,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5400,0.002600397,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5401,0.0017336767,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5402,0.0008667204,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5403,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5404,0.0137290109,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5405,0.0274582578,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5406,0.0411872688,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5407,0.1747327591,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +5408,0.3082780135,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5409,0.4418232679,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +5410,0.5970561169,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5411,0.7522889658,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +5412,0.9075220507,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5413,0.9484051532,0.4,0.4,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5414,0.9892884917,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +5415,1.0301718303,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +5416,0.8961867265,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5417,0.7622013867,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +5418,0.628216047,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5419,0.4684643593,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +5420,0.3087129075,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5421,0.1489612198,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +5422,0.1001433667,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5423,0.0513255136,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5424,0.0025078965,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5425,0.0016718524,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5426,0.0008360442,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5427,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5428,0.0077598963,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5429,0.0155197925,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5430,0.0232796888,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5431,0.0896155342,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5432,0.1559513797,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +5433,0.2222872251,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +5434,0.315238913,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5435,0.408190365,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5436,0.5011420529,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5437,0.6069260631,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5438,0.7127098373,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +5439,0.8184938475,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5440,0.701327319,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +5441,0.5841607904,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5442,0.4669942618,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +5443,0.3379770491,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5444,0.2089598363,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +5445,0.0799426236,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5446,0.0536241042,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5447,0.0273055848,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5448,0.0009870654,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5449,0.0006581223,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5450,0.0003289431,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5451,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5452,0.0031070261,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5453,0.0062140522,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5454,0.0093210784,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5455,0.0737844964,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5456,0.1382481503,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +5457,0.2027118043,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +5458,0.3767286283,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5459,0.5507454524,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5460,0.7247622765,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +5461,0.7363328635,0.3,0.3,0.3,0.3,0.2,0.2,0.1,,,,,,,,,,, +5462,0.7479036864,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +5463,0.7594742734,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +5464,0.6530113755,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5465,0.5465482417,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5466,0.4400851078,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +5467,0.3307379401,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5468,0.2213910084,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +5469,0.1120438408,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5470,0.0752149507,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5471,0.0383860607,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5472,0.0015574066,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5473,0.0010382711,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5474,0.0005191355,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5475,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5476,0.0046448471,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5477,0.0092896943,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5478,0.0139343054,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5479,0.0557098491,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5480,0.0974851569,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5481,0.1392607006,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +5482,0.2095995529,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +5483,0.2799384052,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5484,0.3502772575,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5485,0.3458804155,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5486,0.3414835736,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5487,0.3370867317,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5488,0.2769019343,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5489,0.2167171369,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +5490,0.1565321036,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +5491,0.1143417234,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5492,0.0721513432,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5493,0.029960963,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5494,0.0200367435,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5495,0.0101127601,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5496,0.0001887766,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5497,0.0001260084,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5498,6.30041752234426E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5499,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5500,0.0066222815,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5501,0.0132443271,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5502,0.0198666087,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5503,0.1023931113,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5504,0.184919378,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +5505,0.2674458807,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5506,0.4104023543,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5507,0.5533585919,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5508,0.6963150654,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +5509,0.7605141963,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +5510,0.8247133271,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5511,0.8889124579,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5512,0.7823723976,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +5513,0.6758323373,0.3,0.3,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5514,0.569292277,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5515,0.4249478238,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +5516,0.2806031346,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5517,0.1362586814,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5518,0.0912701607,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5519,0.0462814041,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5520,0.0012928834,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5521,0.0008620009,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5522,0.0004308825,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5523,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5524,0.0102373526,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5525,0.0204744692,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5526,0.0307118218,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5527,0.157849056,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +5528,0.2849862902,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5529,0.4121237605,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5530,0.5663707238,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5531,0.7206176872,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +5532,0.8748646506,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5533,0.9033555161,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5534,0.9318463817,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5535,0.9603370114,0.4,0.4,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5536,0.8231205249,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5537,0.6859038025,0.3,0.3,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5538,0.54868708,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5539,0.4065496607,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5540,0.2644120055,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5541,0.1222745862,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5542,0.0820618764,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5543,0.0418491666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5544,0.0016364568,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5545,0.0010911285,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5546,0.0005455642,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5547,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5548,0.0056713197,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5549,0.0113426393,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5550,0.017013959,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5551,0.1301847958,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5552,0.2433553966,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +5553,0.3565259974,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5554,0.534749943,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5555,0.7129736525,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +5556,0.8911973621,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5557,0.9615185166,0.4,0.4,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5558,1.0318396711,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +5559,1.1021608256,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +5560,0.953817613,0.4,0.4,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5561,0.8054744005,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5562,0.6571311879,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5563,0.4864179535,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5564,0.3157044832,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5565,0.1449912489,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +5566,0.0970134515,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5567,0.049035654,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5568,0.0010576206,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5569,0.0007050804,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5570,0.0003525402,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5571,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5572,0.0094015444,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5573,0.0188030888,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5574,0.0282046331,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5575,0.1311076771,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5576,0.2340107211,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +5577,0.3369137651,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5578,0.4484245481,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +5579,0.5599353311,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5580,0.6714458781,0.3,0.3,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5581,0.7202222003,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +5582,0.7689980506,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +5583,0.8177743729,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5584,0.7216505309,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +5585,0.625526925,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5586,0.529403083,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5587,0.3947246973,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5588,0.2600463117,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5589,0.125368162,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5590,0.0837655848,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5591,0.0421630076,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5592,0.0005604304,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5593,0.0003737776,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5594,0.0001868888,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5595,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5596,0.0043017457,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5597,0.0086037275,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5598,0.0129054732,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5599,0.0731306216,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5600,0.133355534,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5601,0.1935806823,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +5602,0.2907947089,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5603,0.3880089714,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5604,0.4852229979,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5605,0.5326229031,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5606,0.5800225723,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5607,0.6274224775,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5608,0.5545703014,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5609,0.4817183612,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5610,0.408866185,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5611,0.3050773071,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5612,0.2012884291,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +5613,0.0974995511,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5614,0.0651227201,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5615,0.0327458891,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5616,0.0003692941,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5617,0.0002461174,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5618,0.0001231767,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5619,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5620,0.0008905534,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5621,0.0017808708,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5622,0.0026714242,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5623,0.011031158,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5624,0.0193906558,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5625,0.0277503896,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5626,0.0981645165,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5627,0.1685786434,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +5628,0.2389927704,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +5629,0.370853194,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5630,0.5027133817,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5631,0.6345738054,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5632,0.5947638976,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5633,0.5549542257,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5634,0.5151443179,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5635,0.3862179538,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5636,0.2572918258,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5637,0.1283654617,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5638,0.0857467947,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5639,0.0431281277,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5640,0.0005094607,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5641,0.0003395618,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5642,0.0001698989,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5643,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5644,0.0074538423,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5645,0.0149079205,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5646,0.0223617628,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5647,0.1306147344,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5648,0.23886747,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +5649,0.3471204415,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5650,0.5244054597,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5651,0.7016904779,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +5652,0.878975496,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5653,0.9007461522,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5654,0.9225168084,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5655,0.9442874646,0.4,0.4,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5656,0.7929122646,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5657,0.6415370646,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5658,0.4901621005,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5659,0.3596653515,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5660,0.2291683665,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +5661,0.0986716175,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5662,0.0658846695,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5663,0.0330977214,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5664,0.0003107734,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5665,0.0002071823,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5666,0.0001035911,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5667,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5668,0.0072598744,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5669,0.0145197487,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5670,0.0217796231,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5671,0.11818545,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5672,0.214591041,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +5673,0.3109968679,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5674,0.4607889405,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +5675,0.6105810132,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5676,0.7603730858,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +5677,0.7939809759,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5678,0.82758863,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5679,0.8611965201,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5680,0.7222126131,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +5681,0.5832287062,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5682,0.4442447992,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +5683,0.3243315718,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5684,0.2044183444,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +5685,0.0845053529,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5686,0.0565678386,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5687,0.0286305602,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5688,0.0006932819,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5689,0.0004622666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5690,0.0002310153,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5691,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5692,0.00019326,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5693,0.00038652,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5694,0.00057978,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5695,0.0022247317,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5696,0.0038696834,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5697,0.0055146351,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5698,0.0236539383,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5699,0.0417932415,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5700,0.0599325447,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5701,0.0778844872,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5702,0.0958364296,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5703,0.1137883721,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5704,0.0949687654,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5705,0.0761489227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5706,0.057329316,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5707,0.0407316094,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5708,0.0241336667,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5709,0.0075359601,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5710,0.0050606275,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5711,0.0025850589,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5712,0.0001097264,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5713,7.31509150534352E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5714,3.65754575267176E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5715,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5716,0.000306054,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5717,0.000611872,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5718,0.000917926,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5719,0.0053506355,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5720,0.0097835809,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5721,0.0142162904,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5722,0.0363975356,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5723,0.0585787808,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5724,0.080760262,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5725,0.1816547235,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +5726,0.2825491849,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5727,0.3834436464,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5728,0.3756474106,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5729,0.3678511749,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5730,0.3600549391,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5731,0.2714998572,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5732,0.1829450112,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +5733,0.0943899293,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5734,0.063070719,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5735,0.0317517446,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5736,0.0004325343,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5737,0.0002883562,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5738,0.0001441781,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5739,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5740,0.0065578615,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5741,0.0131154871,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5742,0.0196733487,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5743,0.1220886413,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5744,0.2245039338,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +5745,0.3269192264,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5746,0.4694044665,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +5747,0.6118894706,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5748,0.7543747108,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +5749,0.7921578663,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5750,0.8299407859,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5751,0.8677237054,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5752,0.7386533993,0.3,0.3,0.3,0.3,0.2,0.2,0.1,,,,,,,,,,, +5753,0.6095830931,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5754,0.4805127869,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5755,0.3531421777,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5756,0.2257715684,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +5757,0.0984009591,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5758,0.0656855102,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5759,0.0329700613,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5760,0.0002546124,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5761,0.0001698989,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5762,8.49494497394732E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5763,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5764,0.0044161915,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5765,0.0088323831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5766,0.0132483386,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5767,0.0874979332,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5768,0.1617472919,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +5769,0.2359966505,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +5770,0.3180151082,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5771,0.40003333,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5772,0.4820517878,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5773,0.4723302671,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +5774,0.4626087465,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +5775,0.4528869899,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +5776,0.3830741163,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5777,0.3132612427,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5778,0.243448369,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +5779,0.1806303747,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +5780,0.1178123803,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5781,0.054994622,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5782,0.0367304903,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5783,0.0184663586,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5784,0.0002022269,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5785,0.0001347393,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5786,6.7487618404137E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5787,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5788,0.0035957214,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5789,0.0071914429,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5790,0.0107871643,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5791,0.0946570481,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5792,0.1785269319,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +5793,0.2623968157,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5794,0.4066907712,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5795,0.5509849627,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5796,0.6952791541,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +5797,0.7584211362,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +5798,0.8215631183,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5799,0.8847051004,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5800,0.7627066,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +5801,0.6407083355,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5802,0.518710071,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5803,0.3823834301,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5804,0.2460567891,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +5805,0.1097303841,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5806,0.0732519105,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5807,0.0367734369,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5808,0.0002949634,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5809,0.0001965636,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5810,9.83997792815564E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5811,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5812,0.0049466537,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5813,0.0098935433,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5814,0.0148401969,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5815,0.1071715179,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5816,0.1995030748,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +5817,0.2918343958,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5818,0.4347550018,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +5819,0.5776756078,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5820,0.7205959779,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +5821,0.7572941402,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +5822,0.7939923025,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5823,0.8306904648,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5824,0.7097078181,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +5825,0.5887249356,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5826,0.4677422889,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +5827,0.3448747084,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5828,0.2220071279,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +5829,0.0991395474,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5830,0.0661742055,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5831,0.0332090996,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5832,0.0002437577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5833,0.0001625838,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5834,8.1173918639941E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5835,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5836,0.0037866217,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5837,0.0075730075,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5838,0.0113596292,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5839,0.0898942156,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5840,0.168429038,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +5841,0.2469636245,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +5842,0.3682719106,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5843,0.4895799608,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5844,0.610888247,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5845,0.6532449865,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5846,0.6956014901,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +5847,0.7379582296,0.3,0.3,0.3,0.3,0.2,0.2,0.1,,,,,,,,,,, +5848,0.6334475173,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5849,0.5289365689,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5850,0.4244258566,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +5851,0.3127838739,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5852,0.2011421272,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +5853,0.0895003805,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5854,0.0597324416,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5855,0.0299642666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5856,0.0001960916,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5857,0.0001307278,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5858,6.53638821606502E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5859,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5860,0.0034274743,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5861,0.0068549487,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5862,0.010282423,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5863,0.0732698443,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5864,0.1362575016,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5865,0.1992451588,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +5866,0.2945095955,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5867,0.3897737962,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5868,0.4850382329,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5869,0.5430204798,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5870,0.6010024908,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5871,0.6589847377,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5872,0.5681541903,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5873,0.477323407,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5874,0.3864928597,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5875,0.2834130736,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5876,0.1803332876,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +5877,0.0772537375,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5878,0.0515499218,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5879,0.025846342,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5880,0.0001425263,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5881,9.50961895694658E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5882,4.74301094378725E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5883,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5884,0.0045150633,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5885,0.0090303625,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5886,0.0135454257,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5887,0.1108498291,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5888,0.2081542324,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +5889,0.3054586357,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5890,0.4494215243,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +5891,0.5933841769,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5892,0.7373470655,0.3,0.3,0.3,0.3,0.2,0.2,0.1,,,,,,,,,,, +5893,0.7619007601,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +5894,0.7864544546,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +5895,0.8110081492,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5896,0.6806308013,0.3,0.3,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5897,0.5502534535,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5898,0.4198761057,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +5899,0.3068513347,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5900,0.1938265638,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +5901,0.0808017929,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5902,0.0538775367,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5903,0.0269535165,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5904,2.92603660213741E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5905,1.94911793013347E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5906,9.74558965066734E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5907,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5908,0.005289755,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5909,0.0105795101,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5910,0.0158692651,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5911,0.1323014529,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5912,0.2487336406,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +5913,0.3651658284,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5914,0.5402851075,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5915,0.7154046226,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +5916,0.8905239018,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5917,0.9247969932,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5918,0.9590698487,0.4,0.4,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5919,0.9933427042,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +5920,0.8356845485,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5921,0.6780261568,0.3,0.3,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5922,0.5203677651,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5923,0.3805834456,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5924,0.2407991261,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +5925,0.1010145705,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5926,0.0673606662,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5927,0.0337065258,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5928,5.23854940060085E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5929,3.49236626706723E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5930,1.74618313353362E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5931,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5932,0.0053404887,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5933,0.0106809775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5934,0.0160212303,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5935,0.1425513119,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +5936,0.2690811576,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5937,0.3956112392,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5938,0.5709176431,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5939,0.746224047,0.3,0.3,0.3,0.3,0.2,0.2,0.1,,,,,,,,,,, +5940,0.9215304509,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5941,0.9405898039,0.4,0.4,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5942,0.9596489208,0.4,0.4,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5943,0.9787082737,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +5944,0.8198273179,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5945,0.660946362,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5946,0.5020654062,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5947,0.367182198,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5948,0.2322989897,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +5949,0.0974160175,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5950,0.0649440903,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5951,0.0324719272,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5952,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5953,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5954,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5955,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5956,0.0050304232,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5957,0.0100608465,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5958,0.0150915057,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5959,0.1396366019,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +5960,0.2641816981,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5961,0.3887267942,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5962,0.5767336128,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5963,0.7647404314,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +5964,0.95274725,0.4,0.4,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5965,0.9890636117,0.4,0.4,0.4,0.3,0.3,0.2,0.2,,,,,,,,,,, +5966,1.0253802093,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +5967,1.061696807,0.4,0.4,0.4,0.4,0.3,0.2,0.2,,,,,,,,,,, +5968,0.8886486427,0.4,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +5969,0.7156004783,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +5970,0.5425523139,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5971,0.3954160915,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5972,0.248279869,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +5973,0.1011434105,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5974,0.0674290977,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5975,0.0337145488,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5976,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5977,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5978,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5979,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5980,0.0013775969,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5981,0.0027551938,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5982,0.0041327907,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5983,0.0342376959,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5984,0.064342365,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5985,0.0944472702,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5986,0.15060216,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +5987,0.2067570499,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +5988,0.2629119398,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5989,0.3478705924,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5990,0.4328294809,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +5991,0.5177883695,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +5992,0.4434021479,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +5993,0.3690159262,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5994,0.2946297046,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +5995,0.2112961822,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +5996,0.1279628957,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5997,0.0446293733,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5998,0.0297530728,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +5999,0.0148765364,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6000,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6001,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6002,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6003,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6004,0.0005724649,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6005,0.0011449298,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6006,0.0017173947,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6007,0.0217543742,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6008,0.0417915897,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6009,0.0618285692,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6010,0.0978317978,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6011,0.1338350264,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6012,0.169838491,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6013,0.1925317926,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6014,0.2152250942,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6015,0.2379183958,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +6016,0.2103046333,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6017,0.1826908708,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6018,0.1550771083,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +6019,0.1152315689,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6020,0.0753860295,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6021,0.0355402541,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6022,0.0236935814,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6023,0.0118466727,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6024,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6025,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6026,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6027,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6028,0.0013542358,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6029,0.0027084716,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6030,0.0040627074,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6031,0.0641035627,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6032,0.124144182,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6033,0.1841850372,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6034,0.3015726703,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6035,0.4189603034,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +6036,0.5363479365,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6037,0.5765200593,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6038,0.6166921822,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6039,0.656864305,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6040,0.5530329523,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6041,0.4492015996,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +6042,0.3453700109,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6043,0.251621686,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6044,0.157873361,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6045,0.064125036,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6046,0.0427501027,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6047,0.0213749333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6048,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6049,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6050,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6051,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6052,0.003115757,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6053,0.0062317501,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6054,0.0093475071,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6055,0.1079065666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6056,0.2064653901,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6057,0.3050244496,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6058,0.4325942181,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +6059,0.5601639867,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6060,0.6877339912,0.3,0.3,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6061,0.6318367813,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6062,0.5759395714,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6063,0.5200423616,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6064,0.4055958672,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6065,0.2911491369,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6066,0.1767024065,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6067,0.1263481482,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6068,0.07599389,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6069,0.0256396317,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6070,0.0170930091,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6071,0.0085466226,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6072,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6073,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6074,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6075,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6076,0.0020538889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6077,0.0041077778,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6078,0.0061616668,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6079,0.0942882259,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6080,0.1824147851,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6081,0.2705411083,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6082,0.4334592867,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +6083,0.5963774652,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6084,0.7592956436,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +6085,0.7861519402,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +6086,0.8130084728,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +6087,0.8398650053,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +6088,0.6927563914,0.3,0.3,0.3,0.2,0.2,0.1,0.1,,,,,,,,,,, +6089,0.5456477775,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6090,0.3985391636,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6091,0.2881841651,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6092,0.1778289306,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6093,0.0674736961,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6094,0.0449823854,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6095,0.0224913107,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6096,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6097,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6098,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6099,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6100,0.0018325484,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6101,0.0036648608,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6102,0.0054974093,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6103,0.0626563544,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6104,0.1198152996,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6105,0.1769742448,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6106,0.2688609969,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6107,0.3607477491,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6108,0.4526345013,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +6109,0.4846285878,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6110,0.5166224383,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6111,0.5486165248,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6112,0.4635700911,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +6113,0.3785238934,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6114,0.2934774597,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6115,0.2140721414,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6116,0.1346668231,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6117,0.0552612689,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6118,0.0368409246,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6119,0.0184203443,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6120,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6121,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6122,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6123,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6124,0.0023132207,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6125,0.0046262055,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6126,0.0069394262,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6127,0.0946702625,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6128,0.1824008628,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6129,0.2701316991,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6130,0.3835222246,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6131,0.4969127501,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6132,0.6103032756,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6133,0.597344709,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6134,0.5843861424,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6135,0.5714278118,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6136,0.4661284854,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +6137,0.360829159,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6138,0.2555298326,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6139,0.185209386,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6140,0.1148889394,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6141,0.0445684928,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6142,0.0297124859,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6143,0.0148562429,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6144,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6145,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6146,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6147,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6148,9.91076913627187E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6149,0.0001979794,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6150,0.0002970871,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6151,0.0068936478,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6152,0.0134899726,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6153,0.0200865334,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6154,0.0416375008,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6155,0.0631884683,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6156,0.0847396718,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6157,0.0926437461,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6158,0.1005480565,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6159,0.1084523668,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6160,0.0864660334,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6161,0.0644797,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6162,0.0424933666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6163,0.029470144,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6164,0.0164471574,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6165,0.0034241707,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6166,0.0022827805,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6167,0.0011413902,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6168,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6169,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6170,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6171,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6172,0.0018662922,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6173,0.0037325844,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6174,0.0055988766,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6175,0.09612337,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6176,0.1866478633,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6177,0.2771725927,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6178,0.409575277,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6179,0.5419779613,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6180,0.6743808816,0.3,0.3,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6181,0.6836767111,0.3,0.3,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6182,0.6929725406,0.3,0.3,0.3,0.2,0.2,0.1,0.1,,,,,,,,,,, +6183,0.7022683701,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +6184,0.5614136875,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6185,0.4205587689,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +6186,0.2797040863,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6187,0.1968665742,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6188,0.1140288262,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6189,0.0311913142,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6190,0.0207942095,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6191,0.0103971047,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6192,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6193,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6194,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6195,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6196,0.0013702818,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6197,0.0027405636,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6198,0.0041110814,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6199,0.0752055119,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6200,0.1462999423,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +6201,0.2173943728,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6202,0.3399945985,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6203,0.4625948242,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +6204,0.5851952859,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6205,0.6022087729,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6206,0.6192227319,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6207,0.6362362189,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6208,0.5215997681,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6209,0.4069633174,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6210,0.2923266306,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6211,0.2104636776,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6212,0.1286007245,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6213,0.0467375355,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6214,0.0311582783,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6215,0.0155792571,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6216,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6217,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6218,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6219,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6220,0.0009726712,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6221,0.0019451064,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6222,0.0029177776,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6223,0.0659375269,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6224,0.1289570402,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6225,0.1919767895,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6226,0.3081366671,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6227,0.4242967806,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +6228,0.5404568942,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6229,0.5746622621,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6230,0.6088676299,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6231,0.6430732338,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6232,0.5257365704,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6233,0.4083999069,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6234,0.2910634795,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6235,0.2074500958,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6236,0.1238367122,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6237,0.0402230925,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6238,0.0268154737,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6239,0.0134076188,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6240,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6241,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6242,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6243,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6244,0.0007777594,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6245,0.0015555188,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6246,0.0023332782,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6247,0.0713471551,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6248,0.140360796,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +6249,0.2093746728,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6250,0.3194240893,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6251,0.4294735057,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +6252,0.5395229222,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6253,0.5572903356,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6254,0.575057513,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6255,0.5928249264,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6256,0.4845983835,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6257,0.3763720766,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6258,0.2681455338,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6259,0.192158487,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6260,0.1161712042,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6261,0.0401841573,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6262,0.0267895169,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6263,0.0133946405,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6264,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6265,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6266,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6267,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6268,0.000885598,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6269,0.001771196,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6270,0.00265703,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6271,0.0515090988,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6272,0.1003611677,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6273,0.1492134725,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +6274,0.2133378006,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6275,0.2774623647,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6276,0.3415866928,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6277,0.313411792,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6278,0.2852366552,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6279,0.2570615184,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6280,0.1979846034,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6281,0.1389074524,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +6282,0.0798305375,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6283,0.0562634364,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6284,0.0326963353,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6285,0.0091294702,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6286,0.0060861561,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6287,0.0030430781,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6288,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6289,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6290,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6291,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6292,0.0003100655,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6293,0.000619895,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6294,0.0009299605,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6295,0.0247467186,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6296,0.0485634767,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6297,0.0723802348,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6298,0.1524672724,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +6299,0.232554074,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +6300,0.3126411117,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6301,0.3727440272,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6302,0.4328471787,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +6303,0.4929500943,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6304,0.4140110541,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +6305,0.3350720139,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6306,0.2561327377,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6307,0.1838350927,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6308,0.1115374477,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6309,0.0392398026,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6310,0.0261599471,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6311,0.0130798556,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6312,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6313,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6314,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6315,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6316,0.0009693676,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6317,0.0019387352,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6318,0.0029081028,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6319,0.0966531242,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6320,0.1903983816,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6321,0.2841434029,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6322,0.4275326468,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +6323,0.5709216546,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6324,0.7143108985,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +6325,0.7285196378,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +6326,0.7427283772,0.3,0.3,0.3,0.3,0.2,0.2,0.1,,,,,,,,,,, +6327,0.7569373525,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,,,,,,,,,, +6328,0.6158684085,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6329,0.4747997005,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6330,0.3337309924,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6331,0.2388608628,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +6332,0.1439909691,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +6333,0.0491210754,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6334,0.032747305,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6335,0.0163737705,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6336,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6337,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6338,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6339,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6340,0.0008591693,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6341,0.0017181026,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6342,0.0025772719,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6343,0.0978608222,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6344,0.1931443725,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6345,0.2884279228,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6346,0.4566424635,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +6347,0.6248572401,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6348,0.7930717808,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +6349,0.8177380334,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +6350,0.842404286,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +6351,0.8670705385,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,,,,,,,,,, +6352,0.7047609285,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +6353,0.5424513185,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6354,0.3801417085,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6355,0.2715376125,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6356,0.1629332806,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6357,0.0543291846,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6358,0.0362193777,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6359,0.0181098069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6360,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6361,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6362,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6363,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6364,0.0007440156,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6365,0.0014877952,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6366,0.0022318108,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6367,0.0784295795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6368,0.1546273481,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +6369,0.2308253527,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6370,0.3661656362,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6371,0.5015061557,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6372,0.6368466751,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6373,0.6282738598,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6374,0.6197012805,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6375,0.6111284652,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6376,0.4825322241,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6377,0.3539359831,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6378,0.2253395061,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6379,0.1585711263,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6380,0.0918025106,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6381,0.0250338949,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6382,0.0166892633,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6383,0.0083446316,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6384,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6385,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6386,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6387,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6388,0.0002246441,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6389,0.0004492882,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6390,0.0006739323,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6391,0.0316705707,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6392,0.0626669731,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6393,0.0936636115,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6394,0.1963030762,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6395,0.298942305,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6396,0.4015817697,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6397,0.4230142799,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +6398,0.4444467901,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +6399,0.4658793003,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +6400,0.3763373889,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6401,0.2867954776,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6402,0.1972533302,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6403,0.1403218608,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +6404,0.0833901554,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6405,0.02645845,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6406,0.0176390453,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6407,0.0088194047,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6408,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6409,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6410,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6411,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6412,0.0004813802,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6413,0.0009629964,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6414,0.0014443766,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6415,0.0672693455,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6416,0.1330943144,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6417,0.1989192833,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6418,0.3220799394,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6419,0.4452405955,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +6420,0.5684012516,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6421,0.5864997319,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6422,0.6045979762,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6423,0.6226964565,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6424,0.5022530029,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6425,0.3818095493,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6426,0.2613660957,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6427,0.1854165683,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6428,0.1094670408,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6429,0.0335175133,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6430,0.0223450089,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6431,0.0111725044,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6432,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6433,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6434,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6435,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6436,0.0004419731,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6437,0.0008839462,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6438,0.0013261553,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6439,0.0588711485,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6440,0.1164163777,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6441,0.1739616069,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6442,0.2413180256,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +6443,0.3086746803,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6444,0.376031099,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6445,0.3933324702,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6446,0.4106340775,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6447,0.4279356847,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +6448,0.34716504,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6449,0.2663943953,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6450,0.1856239865,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6451,0.131011873,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6452,0.0763997596,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6453,0.0217876461,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6454,0.0145251761,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6455,0.00726247,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6456,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6457,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6458,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6459,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6460,9.01408050013299E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6461,0.0001802816,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6462,0.0002704224,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6463,0.0122416876,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6464,0.0242127169,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6465,0.0361837462,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6466,0.0635353453,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6467,0.0908869443,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6468,0.1182385434,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6469,0.1080219563,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6470,0.0978053691,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6471,0.087588546,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6472,0.0667171741,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6473,0.0458455662,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6474,0.0249741943,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6475,0.0177006337,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6476,0.010427073,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6477,0.0031535124,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6478,0.0021024989,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6479,0.0010512494,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6480,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6481,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6482,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6483,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6484,0.0001569205,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6485,0.000314077,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6486,0.0004709975,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6487,0.0401079388,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6488,0.0797448801,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6489,0.1193818214,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6490,0.224719611,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6491,0.3300571647,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6492,0.4353949543,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +6493,0.4606716631,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +6494,0.4859483719,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6495,0.5112250806,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6496,0.4115265186,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6497,0.3118279567,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6498,0.2121293947,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6499,0.1497833417,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +6500,0.0874372888,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6501,0.0250912358,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6502,0.0167274905,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6503,0.0083637453,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6504,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6505,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6506,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6507,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6508,0.0001522011,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6509,0.0003044022,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6510,0.0004566033,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6511,0.0550165672,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6512,0.1095765312,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6513,0.1641367311,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6514,0.3112649306,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6515,0.4583931301,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +6516,0.6055215655,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6517,0.6396294775,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6518,0.6737376254,0.3,0.3,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6519,0.7078457734,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +6520,0.5713230408,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6521,0.4348005441,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +6522,0.2982778115,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6523,0.2113367691,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6524,0.1243957267,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6525,0.0374546843,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6526,0.0249697109,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6527,0.0124849734,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6528,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6529,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6530,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6531,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6532,0.0002713663,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6533,0.0005427326,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6534,0.0008140989,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6535,0.0387197232,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6536,0.0766253475,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6537,0.1145309719,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6538,0.2049108152,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6539,0.2952906585,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6540,0.3856707378,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6541,0.3665476728,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6542,0.3474246077,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6543,0.3283017787,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6544,0.2528506213,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6545,0.1773996999,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6546,0.1019487785,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6547,0.0713001969,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6548,0.0406516153,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6549,0.0100030337,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6550,0.0066687678,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6551,0.0033342659,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6552,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6553,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6554,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6555,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6556,4.1058900707412E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6557,8.21178014148241E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6558,0.0001231767,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6559,0.0526771538,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6560,0.1052311309,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6561,0.1577851079,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6562,0.2852031473,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6563,0.4126209507,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6564,0.5400389901,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6565,0.5758392839,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6566,0.6116398137,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6567,0.6474401075,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6568,0.5214584217,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6569,0.3954767359,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6570,0.2694950502,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6571,0.1897636204,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6572,0.1100319546,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6573,0.0303005248,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6574,0.0202002712,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6575,0.0101002536,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6576,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6577,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6578,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6579,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6580,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6581,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6582,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6583,0.0047132786,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6584,0.0094265573,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6585,0.0141398359,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6586,0.0662723693,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6587,0.1184049028,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6588,0.1705374362,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6589,0.2291785133,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6590,0.2878195904,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6591,0.3464609034,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6592,0.2858570221,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6593,0.2252533768,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6594,0.1646497314,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6595,0.1150552988,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6596,0.0654611021,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6597,0.0158666694,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6598,0.0105778583,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6599,0.0052888112,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6600,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6601,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6602,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6603,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6604,0.0001038271,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6605,0.0002076542,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6606,0.0003114813,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6607,0.065663329,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6608,0.1310151766,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6609,0.1963670243,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6610,0.3383210944,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6611,0.4802751644,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6612,0.6222289985,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6613,0.6525278716,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6614,0.6828265087,0.3,0.3,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6615,0.7131251457,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +6616,0.5706347143,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6617,0.4281440468,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +6618,0.2856536154,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6619,0.2003674355,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6620,0.1150810196,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6621,0.0297948396,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6622,0.0198633051,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6623,0.0099315346,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6624,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6625,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6626,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6627,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6628,7.64545047655259E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6629,0.000152909,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6630,0.0002293635,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6631,0.0402122379,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6632,0.0801951122,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6633,0.1201777506,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6634,0.2352111041,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +6635,0.3502442216,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6636,0.4652773391,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +6637,0.4938368721,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6638,0.5223961692,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6639,0.5509554663,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6640,0.4415948483,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +6641,0.3322344663,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6642,0.2228738483,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6643,0.156641594,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +6644,0.0904095756,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6645,0.0241773213,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6646,0.0161182142,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6647,0.0080591071,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6648,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6649,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6650,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6651,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6652,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6653,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6654,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6655,0.0559833392,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6656,0.1119664424,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6657,0.1679497815,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6658,0.2917185341,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6659,0.4154875227,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +6660,0.5392565113,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6661,0.5570878727,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6662,0.5749192342,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6663,0.5927505956,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6664,0.472564586,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +6665,0.3523785765,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6666,0.2321925669,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +6667,0.1630076113,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6668,0.0938228917,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6669,0.0246379361,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6670,0.0164252121,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6671,0.008212724,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6672,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6673,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6674,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6675,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6676,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6677,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6678,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6679,0.0268777699,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6680,0.0537555399,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6681,0.0806330738,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6682,0.1161985768,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6683,0.1517640797,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +6684,0.1873298187,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6685,0.1997567433,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6686,0.2121839039,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6687,0.2246108286,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6688,0.1763854979,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6689,0.1281599312,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6690,0.0799346006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6691,0.0539530473,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6692,0.0279714941,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6693,0.0019899409,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6694,0.0013266272,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6695,0.0006633136,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6696,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6697,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6698,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6699,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6700,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6701,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6702,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6703,0.0582385111,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6704,0.1164767862,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6705,0.1747152973,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6706,0.2939586039,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6707,0.4132019106,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +6708,0.5324452172,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6709,0.5424317329,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6710,0.5524182487,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6711,0.5624047644,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6712,0.443522021,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +6713,0.3246390416,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6714,0.2057562982,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6715,0.1430746949,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +6716,0.0803933276,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6717,0.0177117243,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6718,0.0118077375,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6719,0.0059039868,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6720,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6721,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6722,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6723,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6724,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6725,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6726,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6727,0.0669144456,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6728,0.1338291271,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6729,0.2007435727,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6730,0.3421188067,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6731,0.4834938047,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6732,0.6248690387,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6733,0.6423650857,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6734,0.6598611328,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6735,0.6773571799,0.3,0.3,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6736,0.5376979248,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6737,0.3980386698,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6738,0.2583791787,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6739,0.1806473646,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6740,0.1029155504,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6741,0.0251837363,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6742,0.0167893149,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6743,0.0083946574,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6744,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6745,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6746,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6747,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6748,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6749,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6750,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6751,0.0694610413,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6752,0.1389223186,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +6753,0.2083833599,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6754,0.3545738119,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6755,0.5007642638,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6756,0.6469547157,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6757,0.6659902356,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6758,0.6850259915,0.3,0.3,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6759,0.7040615114,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +6760,0.5580478015,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6761,0.4120340916,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6762,0.2660203817,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6763,0.1855413968,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6764,0.1050621758,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6765,0.0245831909,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6766,0.0163886366,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6767,0.0081943183,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6768,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6769,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6770,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6771,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6772,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6773,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6774,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6775,0.0700818802,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6776,0.1401637604,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +6777,0.2102456406,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6778,0.3592363568,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6779,0.508227073,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6780,0.6572175531,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6781,0.6757117563,0.3,0.3,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6782,0.6942057234,0.3,0.3,0.3,0.2,0.2,0.1,0.1,,,,,,,,,,, +6783,0.7126999265,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +6784,0.5642606739,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6785,0.4158216572,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +6786,0.2673824046,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6787,0.186344405,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6788,0.1053066415,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6789,0.024268642,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6790,0.0161790946,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6791,0.0080895473,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6792,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6793,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6794,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6795,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6796,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6797,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6798,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6799,0.0684819989,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6800,0.1369642338,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6801,0.2054462327,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6802,0.3522627149,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6803,0.4990791971,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6804,0.6458956793,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6805,0.6643327775,0.3,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6806,0.6827701117,0.3,0.3,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6807,0.7012072099,0.3,0.3,0.3,0.2,0.2,0.2,0.1,,,,,,,,,,, +6808,0.5544464168,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6809,0.4076856237,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6810,0.2609248306,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6811,0.1815475928,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6812,0.102170355,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6813,0.0227931172,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6814,0.0151953328,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6815,0.0075977844,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6816,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6817,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6818,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6819,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6820,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6821,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6822,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6823,0.0538874475,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6824,0.1077748949,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6825,0.1616623424,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6826,0.2689124385,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6827,0.3761622987,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6828,0.4834119229,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6829,0.4839159563,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6830,0.4844197537,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6831,0.4849237871,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6832,0.380258514,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6833,0.2755932408,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6834,0.1709279677,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6835,0.1187555552,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6836,0.0665831427,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6837,0.0144104943,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6838,0.0096070749,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6839,0.0048034194,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6840,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6841,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6842,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6843,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6844,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6845,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6846,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6847,0.0458177217,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6848,0.0916352074,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6849,0.1374529291,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6850,0.2635448132,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6851,0.3896366972,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6852,0.5157285813,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6853,0.5337140316,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6854,0.5516992459,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6855,0.5696844603,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6856,0.4488953096,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +6857,0.328106159,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6858,0.2073170084,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6859,0.1438491507,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +6860,0.0803812931,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6861,0.0169134354,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6862,0.0112756236,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6863,0.0056378118,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6864,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6865,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6866,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6867,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6868,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6869,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6870,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6871,0.0402719384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6872,0.0805438769,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6873,0.1208158153,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6874,0.1957688386,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6875,0.2707220978,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6876,0.345675357,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6877,0.3366036996,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6878,0.3275322783,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6879,0.3184608569,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6880,0.2466523791,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +6881,0.1748439013,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6882,0.1030354236,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6883,0.0711857511,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6884,0.0393363146,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6885,0.0074868782,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6886,0.0049912521,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6887,0.0024956261,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6888,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6889,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6890,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6891,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6892,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6893,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6894,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6895,0.0187103523,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6896,0.0374209405,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6897,0.0561312928,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6898,0.0974910561,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6899,0.1388505835,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +6900,0.1802101109,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6901,0.1717161098,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6902,0.1632221087,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6903,0.1547281076,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +6904,0.117509394,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6905,0.0802906803,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6906,0.0430719667,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6907,0.0293321011,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6908,0.0155922355,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6909,0.001852134,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6910,0.0012348346,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6911,0.0006172993,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6912,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6913,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6914,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6915,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6916,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6917,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6918,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6919,0.0288028188,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6920,0.0576056377,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6921,0.0864084565,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6922,0.180507198,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6923,0.2746059394,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6924,0.3687049169,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6925,0.3946527263,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6926,0.4206005357,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +6927,0.4465485811,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +6928,0.3544046209,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6929,0.2622606606,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6930,0.1701167004,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6931,0.1180492949,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6932,0.0659821254,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6933,0.0139147199,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6934,0.0092764799,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6935,0.00463824,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6936,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6937,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6938,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6939,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6940,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6941,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6942,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6943,0.048745882,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6944,0.0974917641,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6945,0.1462376461,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +6946,0.2621839702,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6947,0.3781302943,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6948,0.4940766184,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6949,0.4944603067,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6950,0.4948437591,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6951,0.4952274474,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,,,,,,,,,, +6952,0.3855569999,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6953,0.2758867884,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6954,0.1662163408,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6955,0.1147374462,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6956,0.0632585516,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6957,0.011779657,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6958,0.0078531047,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6959,0.0039265523,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6960,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6961,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6962,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6963,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6964,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6965,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6966,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6967,0.0402726464,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6968,0.0805452927,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6969,0.120818175,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6970,0.1930608389,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6971,0.2653035027,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6972,0.3375461666,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6973,0.355256947,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6974,0.3729677274,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6975,0.3906785079,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6976,0.3068135794,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6977,0.222948887,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6978,0.1390839585,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +6979,0.0948054737,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6980,0.0505272248,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6981,0.0062487399,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6982,0.0041658266,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6983,0.0020829133,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6984,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6985,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6986,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6987,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6988,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6989,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6990,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6991,0.0337067618,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6992,0.0674137596,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6993,0.1011205214,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +6994,0.195338428,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +6995,0.2895563347,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6996,0.3837742413,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6997,0.3959328673,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6998,0.4080914933,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +6999,0.4202501192,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +7000,0.3281297561,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7001,0.2360093929,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +7002,0.1438887938,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +7003,0.0987119685,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7004,0.0535349073,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7005,0.008358082,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7006,0.005571976,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7007,0.002786106,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7008,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7009,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7010,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7011,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7012,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7013,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7014,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7015,0.0265887058,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7016,0.0531774117,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7017,0.0797661175,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7018,0.1600025246,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7019,0.2402391676,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +7020,0.3204758106,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7021,0.3280230973,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7022,0.335570384,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7023,0.3431176706,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7024,0.2658318411,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7025,0.1885457756,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7026,0.1112599461,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7027,0.075768066,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7028,0.0402759499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7029,0.0047840698,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7030,0.0031893799,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7031,0.0015946899,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7032,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7033,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7034,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7035,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7036,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7037,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7038,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7039,0.0192868287,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7040,0.0385738933,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7041,0.057860722,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7042,0.1146491932,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7043,0.1714379003,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7044,0.2282263715,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7045,0.2623361713,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7046,0.296446207,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7047,0.3305562427,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7048,0.264085658,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7049,0.1976150733,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7050,0.1311444886,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7051,0.0899583997,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7052,0.0487725467,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7053,0.0075866938,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7054,0.0050577958,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7055,0.0025288979,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7056,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7057,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7058,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7059,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7060,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7061,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7062,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7063,0.0139465759,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7064,0.0278929159,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7065,0.0418394918,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7066,0.1018699643,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7067,0.1619004368,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7068,0.2219311454,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7069,0.2405169051,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +7070,0.2591029008,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7071,0.2776886606,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7072,0.2190643374,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7073,0.1604397783,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7074,0.1018154551,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7075,0.070035394,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7076,0.0382553329,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7077,0.0064752718,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7078,0.0043168479,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7079,0.0021584239,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7080,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7081,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7082,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7083,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7084,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7085,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7086,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7087,0.0245928657,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7088,0.0491854954,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7089,0.0737783611,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7090,0.1224572275,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7091,0.1711360938,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7092,0.2198149602,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7093,0.2026037297,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7094,0.1853922633,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7095,0.1681810328,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7096,0.1256999368,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7097,0.0832190766,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7098,0.0407382165,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7099,0.0275564216,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7100,0.0143746267,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7101,0.0011930678,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7102,0.0007952212,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7103,0.0003976106,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7104,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7105,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7106,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7107,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7108,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7109,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7110,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7111,0.0230880806,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7112,0.0461759252,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7113,0.0692640058,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7114,0.1653578794,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7115,0.2614519891,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7116,0.3575458627,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7117,0.3792811233,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7118,0.4010163839,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7119,0.4227516445,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +7120,0.3296642735,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7121,0.2365769024,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +7122,0.1434895314,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +7123,0.0977317462,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7124,0.0519737251,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7125,0.00621594,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7126,0.0041438814,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7127,0.0020720587,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7128,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7129,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7130,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7131,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7132,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7133,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7134,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7135,0.0325894406,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7136,0.0651786452,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7137,0.0977680857,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7138,0.1980789917,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7139,0.2983898976,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7140,0.3987008035,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7141,0.4140735863,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +7142,0.4294466051,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,,,,,,,,,, +7143,0.4448193878,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,,,,,,,,,, +7144,0.3463825612,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7145,0.2479454985,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +7146,0.1495086718,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +7147,0.1020301884,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7148,0.0545519409,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7149,0.0070736935,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7150,0.0047158743,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7151,0.0023578192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7152,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7153,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7154,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7155,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7156,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7157,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7158,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7159,0.0345465815,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7160,0.069093163,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7161,0.1036397445,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7162,0.1667378361,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7163,0.2298359276,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7164,0.2929340192,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7165,0.2587104816,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7166,0.2244871799,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7167,0.1902636423,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7168,0.1392906689,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +7169,0.0883176954,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7170,0.037344722,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7171,0.0253347576,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7172,0.0133247931,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7173,0.0013148287,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7174,0.0008766311,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7175,0.0004381976,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7176,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7177,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7178,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7179,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7180,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7181,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7182,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7183,0.0047600008,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7184,0.0095197657,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7185,0.0142797665,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7186,0.0352160304,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7187,0.0561525302,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7188,0.077088794,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7189,0.0824403734,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7190,0.0877921887,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7191,0.093143768,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7192,0.0726185652,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7193,0.0520935983,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7194,0.0315683954,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7195,0.0214433649,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7196,0.0113180984,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7197,0.0011930678,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7198,0.0007952212,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7199,0.0003976106,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7200,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7201,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7202,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7203,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7204,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7205,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7206,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7207,0.0191806419,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7208,0.0383612837,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7209,0.0575419256,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7210,0.1149911147,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7211,0.1724400679,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7212,0.229889021,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7213,0.227079318,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7214,0.2242696149,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7215,0.2214596759,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7216,0.169838491,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7217,0.1182173061,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7218,0.0665961211,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7219,0.0454052449,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7220,0.0242141327,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7221,0.0030232565,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7222,0.0020154257,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7223,0.0010078308,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7224,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7225,0.0003360223,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7226,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7227,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7228,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7229,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7230,0.0344774421,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7231,0.0689546482,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7232,0.1034320903,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7233,0.2025015544,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7234,0.3015710185,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7235,0.4006402467,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7236,0.3870561217,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7237,0.3734717608,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7238,0.3598876359,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7239,0.2723528912,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7240,0.1848183826,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7241,0.0972836379,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7242,0.0655974931,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7243,0.0339113484,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7244,0.0022249677,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7245,0.0014833118,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7246,0.0007416559,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7247,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7248,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7249,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7250,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7251,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7252,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7253,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7254,0.0072098486,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7255,0.0144199331,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7256,0.0216297817,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7257,0.0551126073,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7258,0.0885954329,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7259,0.1220782585,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7260,0.1269036233,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7261,0.131728752,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7262,0.1365541167,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7263,0.10620451,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7264,0.0758549032,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7265,0.0455052965,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7266,0.0311622898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7267,0.0168192831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7268,0.0024760405,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7269,0.001650615,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7270,0.0008254255,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7271,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7272,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7273,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7274,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7275,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7276,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7277,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7278,0.011111624,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7279,0.022223248,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7280,0.033334872,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7281,0.0521891664,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7282,0.0710432248,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7283,0.0898975192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7284,0.0937761695,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7285,0.0976548198,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7286,0.1015334701,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7287,0.0798154354,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7288,0.0580971646,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7289,0.0363791299,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7290,0.0248842895,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7291,0.0133896851,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7292,0.0018948447,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7293,0.0012631511,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7294,0.0006316935,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7295,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7296,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7297,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7298,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7299,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7300,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7301,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7302,0.0183287877,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7303,0.0366575753,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7304,0.054986599,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7305,0.1200595293,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7306,0.1851324596,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7307,0.2502056258,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7308,0.2486319373,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +7309,0.2470584847,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +7310,0.2454850321,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +7311,0.18735082,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7312,0.129216608,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7313,0.071082396,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7314,0.0480370261,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7315,0.0249914202,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7316,0.0019460503,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7317,0.0012973669,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7318,0.0006486834,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7319,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7320,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7321,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7322,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7323,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7324,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7325,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7326,0.0071076733,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7327,0.0142153465,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7328,0.0213230198,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7329,0.0422418218,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7330,0.0631603878,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7331,0.0840791898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7332,0.0912961175,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7333,0.0985130452,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7334,0.1057302089,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7335,0.0829288327,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7336,0.0601274565,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7337,0.0373260803,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7338,0.0253293302,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7339,0.0133323442,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7340,0.0013355941,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7341,0.0008903174,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7342,0.0004452767,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7343,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7344,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7345,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7346,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7347,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7348,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7349,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7350,0.0121694806,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7351,0.0243391972,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7352,0.0365086778,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7353,0.1082834118,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7354,0.1800579098,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7355,0.2518326438,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7356,0.263634954,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7357,0.2754372642,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7358,0.2872395744,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7359,0.2210594696,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7360,0.1548791289,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +7361,0.0886990241,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7362,0.0596701453,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7363,0.0306410306,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7364,0.0016121518,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7365,0.0010748465,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7366,0.0005373053,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7367,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7368,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7369,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7370,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7371,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7372,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7373,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7374,0.0020458659,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7375,0.0040917318,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7376,0.0061375977,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7377,0.0183835329,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7378,0.030629468,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7379,0.0428754031,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7380,0.0478461258,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7381,0.0528166125,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7382,0.0577870992,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7383,0.0452912711,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7384,0.032795443,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7385,0.0202993789,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7386,0.0137467087,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7387,0.0071938026,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7388,0.0006408964,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7389,0.0004273429,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7390,0.0002135535,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7391,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7392,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7393,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7394,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7395,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7396,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7397,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7398,0.0043220392,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7399,0.0086438425,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7400,0.0129658817,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7401,0.0512910619,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7402,0.0896162421,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7403,0.1279414224,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7404,0.136084771,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7405,0.1442281197,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +7406,0.1523712323,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +7407,0.1172182061,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7408,0.082064944,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7409,0.0469119178,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7410,0.0314327122,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7411,0.0159532707,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7412,0.0004740651,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7413,0.0003159648,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7414,0.0001581004,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7415,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7416,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7417,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7418,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7419,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7420,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7421,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7422,0.0138708293,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7423,0.0277416586,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7424,0.041612488,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7425,0.101646736,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7426,0.1616807481,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7427,0.2217149962,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7428,0.24186241,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +7429,0.2620095878,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7430,0.2821567657,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7431,0.2196306671,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7432,0.1571045685,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +7433,0.0945787058,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7434,0.0636103839,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7435,0.032642298,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7436,0.0016742121,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7437,0.0011161414,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7438,0.0005580707,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7439,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7440,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7441,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7442,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7443,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7444,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7445,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7446,0.0150761676,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7447,0.0301520993,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7448,0.0452282669,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7449,0.1133010926,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7450,0.1813739183,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7451,0.2494467441,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7452,0.2695271422,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7453,0.2896075403,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7454,0.3096879384,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7455,0.2402901373,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +7456,0.1708925721,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7457,0.1014947709,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7458,0.0681575392,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7459,0.0348203075,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7460,0.0014830758,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7461,0.0009887172,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7462,0.0004943586,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7463,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7464,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7465,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7466,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7467,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7468,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7469,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7470,0.0185961425,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7471,0.0371922849,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7472,0.0557884274,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7473,0.1237482231,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7474,0.1917080189,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7475,0.2596678147,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7476,0.2609609341,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7477,0.2622538175,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7478,0.2635469369,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7479,0.2013318477,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7480,0.1391165225,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +7481,0.0769014333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7482,0.0517502609,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7483,0.0265988526,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7484,0.0014476802,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7485,0.0009651201,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7486,0.0004825601,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7487,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7488,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7489,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7490,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7491,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7492,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7493,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7494,0.0074394481,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7495,0.0148788961,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7496,0.0223183442,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7497,0.0624199118,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7498,0.1025214794,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7499,0.142623047,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +7500,0.1421834336,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +7501,0.1417438202,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +7502,0.1413039708,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +7503,0.1070443297,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7504,0.0727844526,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7505,0.0385245755,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7506,0.0257960803,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7507,0.0130673491,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7508,0.0003388539,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7509,0.000225824,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7510,0.00011303,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7511,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7512,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7513,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7514,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7515,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7516,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7517,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7518,0.0063662533,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7519,0.0127322707,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7520,0.0190985241,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7521,0.0544993195,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7522,0.0899003509,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7523,0.1253011463,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7524,0.137236072,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7525,0.1491712337,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +7526,0.1611061595,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7527,0.1251392704,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7528,0.0891723813,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7529,0.0532054922,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7530,0.0357002422,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7531,0.0181949923,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7532,0.0006897423,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7533,0.0004599069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7534,0.0002298355,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7535,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7536,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7537,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7538,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7539,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7540,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7541,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7542,0.0139352493,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7543,0.0278704986,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7544,0.041805748,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7545,0.0830661676,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7546,0.1243265873,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7547,0.165587007,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7548,0.1407475519,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +7549,0.1159080968,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7550,0.0910684058,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7551,0.0637769792,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7552,0.0364853167,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7553,0.0091936542,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7554,0.0061335862,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7555,0.0030735183,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7556,1.34031354033391E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7557,8.94328929201676E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7558,4.45984611132234E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7559,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7560,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7561,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7562,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7563,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7564,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7565,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7566,0.0149883865,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7567,0.029976773,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7568,0.0449649236,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7569,0.1113463114,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7570,0.1777274632,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7571,0.244108851,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +7572,0.2511844323,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7573,0.2582602495,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7574,0.2653360667,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7575,0.2032505254,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7576,0.14116522,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +7577,0.0790796787,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7578,0.0529846236,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7579,0.0268895685,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7580,0.0007945133,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7581,0.0005297542,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7582,0.0002647591,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7583,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7584,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7585,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7586,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7587,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7588,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7589,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7590,0.0114216895,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7591,0.022843143,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7592,0.0342648325,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7593,0.0773054151,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7594,0.1203459977,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7595,0.1633863443,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7596,0.1650438025,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7597,0.1667012606,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7598,0.1683587188,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7599,0.1286561776,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7600,0.0889538724,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7601,0.0492513313,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7602,0.0330863948,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7603,0.0169216944,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7604,0.000756758,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7605,0.0005045053,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7606,0.0002522527,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7607,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7608,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7609,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7610,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7611,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7612,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7613,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7614,0.0003438093,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7615,0.0006876186,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7616,0.0010314279,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7617,0.0085057996,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7618,0.0159801713,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7619,0.0234545431,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7620,0.0344838133,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7621,0.0455130835,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7622,0.0565423537,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7623,0.045331858,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7624,0.0341211263,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7625,0.0229103947,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7626,0.0153109585,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7627,0.0077115223,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7628,0.0001120861,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7629,7.48027099094806E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7630,3.72833696078799E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7631,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7632,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7633,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7634,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7635,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7636,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7637,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7638,0.0168907823,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7639,0.0337818005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7640,0.0506725827,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7641,0.1240198254,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7642,0.1973673041,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7643,0.2707145467,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7644,0.2626308987,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7645,0.2545472506,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7646,0.2464636026,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +7647,0.1853962748,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7648,0.124328947,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7649,0.0632616193,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7650,0.0423956747,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7651,0.0215299661,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7652,0.0006640215,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7653,0.0004547155,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7654,0.0002454095,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7655,3.63394868329969E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7656,3.02042487962571E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7657,0.000024305,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7658,1.82877287633588E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7659,1.21760877959912E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7660,0.000006088,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7661,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7662,0.0111260182,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7663,0.0222522724,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7664,0.0333782906,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7665,0.0882992897,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7666,0.1432202888,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +7667,0.1981412879,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7668,0.2092651824,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7669,0.2203890769,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7670,0.2315127354,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7671,0.178107848,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7672,0.1247027246,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7673,0.0712978372,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7674,0.0476403593,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7675,0.0239828815,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7676,0.0003254036,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7677,0.0002248801,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7678,0.0001245925,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7679,0.000024069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7680,2.01754943131249E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7681,0.000016164,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7682,1.21760877959912E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7683,8.1173918639941E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7684,4.05869593199705E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7685,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7686,0.0169705404,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7687,0.0339410807,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7688,0.0509116211,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7689,0.1266197505,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7690,0.202327644,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7691,0.2780355375,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7692,0.2615624234,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7693,0.2450893092,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +7694,0.2286159591,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7695,0.1697327761,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7696,0.1108493571,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7697,0.0519659381,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7698,0.0347882155,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7699,0.0176104929,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7700,0.0004325343,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7701,0.0002923677,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7702,0.0001522011,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7703,1.20816995185029E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7704,1.00759486218764E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7705,8.09379479462203E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7706,0.000006088,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7707,4.05869593199705E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7708,2.03170767293573E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7709,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7710,0.0057640561,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7711,0.0115278763,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7712,0.0172919324,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7713,0.0542801027,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7714,0.0912685089,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7715,0.1282566792,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7716,0.1299240481,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7717,0.1315911811,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7718,0.133258314,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7719,0.1013279396,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7720,0.0693973292,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7721,0.0374669548,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7722,0.025089348,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7723,0.0127115053,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7724,0.0003338985,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7725,0.0002225204,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7726,0.0001113782,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7727,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7728,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7729,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7730,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7731,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7732,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7733,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7734,0.0062678536,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7735,0.0125359431,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7736,0.0188037967,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7737,0.0559901823,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7738,0.093176332,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7739,0.1303624817,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7740,0.1400806987,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +7741,0.1497991518,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +7742,0.1595173688,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7743,0.1232010071,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7744,0.0868846454,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7745,0.0505682837,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7746,0.0338563672,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7747,0.0171444508,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7748,0.0004325343,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7749,0.0002963792,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7750,0.0001602241,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7751,0.000024069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7752,2.01754943131249E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7753,0.000016164,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7754,1.21760877959912E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7755,8.1173918639941E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7756,4.05869593199705E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7757,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7758,0.0078476774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7759,0.0156953547,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7760,0.0235427961,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7761,0.0682632541,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7762,0.112983948,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7763,0.157704406,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7764,0.1688787982,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7765,0.1800531904,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7766,0.1912275826,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7767,0.1475416201,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +7768,0.1038556577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7769,0.0601696953,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7770,0.0402495212,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7771,0.0203295832,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7772,0.0004094092,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7773,0.0002730181,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7774,0.0001363911,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7775,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7776,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7777,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7778,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7779,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7780,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7781,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7782,0.0073089563,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7783,0.0146179125,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7784,0.0219268688,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7785,0.0764101423,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7786,0.1308931798,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7787,0.1853762173,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7788,0.2006975585,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7789,0.2160188996,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7790,0.2313402408,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7791,0.1786425576,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7792,0.1259451103,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7793,0.073247663,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7794,0.0489837405,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7795,0.024719582,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7796,0.0004556594,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7797,0.0003079418,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7798,0.0001599881,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7799,1.20816995185029E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7800,1.00759486218764E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7801,8.09379479462203E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7802,0.000006088,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7803,4.05869593199705E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7804,2.03170767293573E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7805,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7806,0.0072678974,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7807,0.0145357947,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7808,0.0218036921,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7809,0.0731133957,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7810,0.1244228634,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7811,0.175732331,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7812,0.1753578455,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7813,0.17498336,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7814,0.1746088745,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7815,0.1320197039,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7816,0.0894305332,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7817,0.0468411266,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7818,0.0313416275,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7819,0.0158418925,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7820,0.0003423935,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7821,0.0002321952,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7822,0.0001222328,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7823,1.20816995185029E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7824,1.00759486218764E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7825,8.09379479462203E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7826,0.000006088,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7827,4.05869593199705E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7828,2.03170767293573E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7829,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7830,0.0048508496,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7831,0.0097019351,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7832,0.0145527846,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7833,0.0483985332,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7834,0.0822442817,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7835,0.1160902662,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7836,0.1182722872,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7837,0.1204543082,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7838,0.1226365652,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7839,0.0932667088,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7840,0.0638968524,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7841,0.0345269959,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7842,0.0230826533,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7843,0.0116380746,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7844,0.000193496,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7845,0.0001330875,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7846,0.000072679,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7847,1.21760877959912E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7848,8.1173918639941E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7849,4.05869593199705E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7850,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7851,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7852,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7853,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7854,0.007279224,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7855,0.0145584479,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7856,0.0218376719,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7857,0.0694579737,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7858,0.1170785115,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7859,0.1646988133,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7860,0.1705527743,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7861,0.1764067352,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7862,0.1822606962,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7863,0.1392687236,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +7864,0.096276515,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7865,0.0532845423,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7866,0.0355985389,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7867,0.0179125354,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7868,0.0002267678,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7869,0.0001550327,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7870,8.35336255771486E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7871,1.20816995185029E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7872,1.00759486218764E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7873,8.09379479462203E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7874,0.000006088,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7875,4.05869593199705E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7876,2.03170767293573E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7877,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7878,0.0029814897,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7879,0.0059627435,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7880,0.0089442332,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7881,0.0467323441,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7882,0.084520455,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7883,0.1223088019,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7884,0.1280537444,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7885,0.1337989229,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7886,0.1395438654,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +7887,0.106606604,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7888,0.0736693427,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7889,0.0407320813,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7890,0.027207657,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7891,0.0136829966,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7892,0.0001583363,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7893,0.0001097264,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7894,6.08804389799558E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7895,1.20816995185029E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7896,1.00759486218764E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7897,8.09379479462203E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7898,0.000006088,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7899,4.05869593199705E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7900,2.03170767293573E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7901,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7902,0.0067211533,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7903,0.0134425425,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7904,0.0201636958,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7905,0.0708962151,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7906,0.1216289703,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7907,0.1723614896,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7908,0.1774532653,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7909,0.1825452769,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7910,0.1876370525,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7911,0.1430746949,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +7912,0.0985123373,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7913,0.0539499797,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7914,0.0360636371,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7915,0.0181775304,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7916,0.0002911878,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7917,0.0001989233,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7918,0.0001066588,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7919,1.45121976638267E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7920,1.17041464085496E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7921,8.89609515327261E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7922,0.000006088,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7923,4.05869593199705E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7924,2.03170767293573E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7925,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7926,0.0058202172,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7927,0.0116406703,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7928,0.0174608875,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7929,0.0634678576,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7930,0.1094745918,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7931,0.1554813261,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +7932,0.1567494326,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +7933,0.1580175391,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7934,0.1592854096,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7935,0.1206723451,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7936,0.0820592807,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7937,0.0434462162,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7938,0.0290343061,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7939,0.0146226319,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7940,0.0002107218,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7941,0.0001406385,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7942,7.03192667287861E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7943,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7944,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7945,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7946,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7947,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7948,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7949,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7950,0.0107180249,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7951,0.0214358138,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7952,0.0321538387,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7953,0.102452104,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7954,0.1727503693,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7955,0.2430488706,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +7956,0.2488768748,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,,,,,,,,,, +7957,0.254705115,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7958,0.2605331192,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,,,,,,,,,, +7959,0.1984943001,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +7960,0.136455481,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7961,0.0744166619,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7962,0.0497345992,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7963,0.0250525366,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7964,0.000370238,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7965,0.0002489491,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7966,0.0001274242,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7967,0.000006088,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7968,4.05869593199705E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7969,2.03170767293573E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7970,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7971,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7972,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7973,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7974,0.0055110956,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7975,0.0110221911,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7976,0.0165332867,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7977,0.0508651348,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7978,0.085196983,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7979,0.1195288312,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7980,0.1164437503,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7981,0.1133586695,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7982,0.1102733526,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7983,0.0828231178,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7984,0.055372883,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7985,0.0279226482,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7986,0.0187183753,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7987,0.0095138664,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7988,0.0003093576,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7989,0.0002083621,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7990,0.0001071307,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7991,0.000006088,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7992,4.05869593199705E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7993,2.03170767293573E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7994,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7995,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7996,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7997,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7998,0.0049966794,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +7999,0.0099933589,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8000,0.0149900383,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8001,0.0675046083,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8002,0.1200191783,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8003,0.1725339842,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +8004,0.1723801313,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +8005,0.1722265144,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +8006,0.1720726615,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +8007,0.1298933719,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8008,0.0877138464,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8009,0.0455345569,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8010,0.0304803345,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8011,0.0154258762,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8012,0.0003716538,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8013,0.000249657,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8014,0.0001278961,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8015,0.000006088,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8016,4.05869593199705E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8017,2.03170767293573E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8018,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8019,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8020,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8021,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8022,0.0081801601,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8023,0.0163603201,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8024,0.0245404802,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8025,0.0848453867,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8026,0.1451502931,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +8027,0.2054551996,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +8028,0.2047468156,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +8029,0.2040381956,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +8030,0.2033298115,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +8031,0.1535550973,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +8032,0.103780619,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8033,0.0540061407,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8034,0.0360995046,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8035,0.0181928685,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8036,0.0002864684,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8037,0.0001949118,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8038,0.0001035911,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8039,1.20816995185029E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8040,1.00759486218764E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8041,8.09379479462203E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8042,0.000006088,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8043,4.05869593199705E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8044,2.03170767293573E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8045,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8046,0.0022471489,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8047,0.0044942978,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8048,0.0067414467,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8049,0.0265863461,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8050,0.0464312455,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8051,0.0662761449,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8052,0.068690361,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8053,0.0711043412,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8054,0.0735185574,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8055,0.0561959488,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8056,0.0388733401,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8057,0.0215507315,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8058,0.014445182,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8059,0.0073396325,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8060,0.000233847,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8061,0.0001599881,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8062,8.6129303208077E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8063,1.20816995185029E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8064,1.00759486218764E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8065,8.09379479462203E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8066,0.000006088,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8067,4.05869593199705E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8068,2.03170767293573E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8069,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8070,0.0036681644,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8071,0.0073363289,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8072,0.0110044933,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8073,0.0498299314,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8074,0.0886553695,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8075,0.1274808076,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8076,0.1306350278,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8077,0.1337890121,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8078,0.1369429964,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8079,0.1041201808,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8080,0.0712973653,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8081,0.0384745497,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8082,0.0257323682,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8083,0.0129904227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8084,0.0002482412,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8085,0.0001715507,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8086,9.4860218875745E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8087,1.82877287633588E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8088,1.21760877959912E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8089,0.000006088,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8090,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8091,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8092,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8093,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8094,0.0057824618,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8095,0.0115649237,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8096,0.0173473855,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8097,0.0483886224,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8098,0.0794298592,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8099,0.1104713321,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8100,0.1000862618,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8101,0.0897011916,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8102,0.0793161214,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8103,0.0576084693,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8104,0.0359008173,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8105,0.0141931653,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8106,0.0094749313,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8107,0.0047569332,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8108,3.89351644639252E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8109,2.66646883904457E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8110,1.4606585941315E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8111,2.43049814532382E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8112,1.62583807973603E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8113,8.1173918639941E-007,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8114,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8115,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8116,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8117,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8118,0.0021456815,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8119,0.004291363,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8120,0.0064370446,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8121,0.0309053177,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8122,0.0553738269,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8123,0.0798421,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8124,0.0839260448,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8125,0.0880102256,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8126,0.0920941704,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8127,0.0704252176,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8128,0.0487562647,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8129,0.0270873119,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8130,0.0180784228,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8131,0.0090697696,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8132,6.08804389799558E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8133,0.000040587,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8134,2.03170767293573E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8135,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8136,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8137,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8138,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8139,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8140,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8141,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8142,0.0043517715,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8143,0.0087035431,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8144,0.0130553146,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8145,0.0557358059,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8146,0.0984165332,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8147,0.1410972605,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +8148,0.1547394342,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +8149,0.1683816079,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +8150,0.1820237816,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +8151,0.1406368817,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +8152,0.0992499817,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8153,0.0578630817,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8154,0.0386203796,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8155,0.0193779134,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8156,0.0001352112,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8157,9.41523067945828E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8158,5.30934060871707E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8159,1.20816995185029E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8160,1.00759486218764E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8161,8.09379479462203E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8162,0.000006088,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8163,4.05869593199705E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8164,2.03170767293573E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8165,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8166,0.0045384244,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8167,0.0090770847,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8168,0.013615509,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8169,0.0576844519,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8170,0.1017531588,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8171,0.1458218657,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +8172,0.1487096751,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +8173,0.1515974844,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +8174,0.1544850578,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +8175,0.1172788506,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8176,0.0800724074,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8177,0.0428659643,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8178,0.0286270207,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8179,0.0143878411,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8180,0.0001486615,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8181,9.91076913627187E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8182,4.95538456813594E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8183,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8184,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8185,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8186,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8187,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8188,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8189,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8190,0.0018179182,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8191,0.0036360724,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8192,0.0054539906,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8193,0.0275991323,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8194,0.04974451,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8195,0.0718898877,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8196,0.0743933008,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8197,0.0768969498,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8198,0.0794003629,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8199,0.0604799967,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8200,0.0415596305,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8201,0.0226390284,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8202,0.0151228898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8203,0.0076065153,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8204,9.01408050013299E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8205,6.01725268987935E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8206,2.99682781025364E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8207,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8208,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8209,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8210,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8211,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8212,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8213,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8214,0.0036374882,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8215,0.0072752125,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8216,0.0109127007,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8217,0.0557306146,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8218,0.1005485284,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8219,0.1453664423,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +8220,0.1512954419,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +8221,0.1572244416,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +8222,0.1631532053,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +8223,0.1244068173,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8224,0.0856601935,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8225,0.0469138056,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8226,0.0313095355,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8227,0.0157052655,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8228,0.0001012314,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8229,6.7487618404137E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8230,3.37438092020685E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8231,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8232,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8233,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8234,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8235,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8236,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8237,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8238,0.0036304091,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8239,0.0072605823,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8240,0.0108909914,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8241,0.0381196497,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8242,0.0653480721,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8243,0.0925767305,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8244,0.0864632017,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8245,0.080349673,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8246,0.0742361443,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8247,0.0546092818,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8248,0.0349824194,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8249,0.0153555569,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8250,0.0102484432,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8251,0.0051413295,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8252,3.421575058951E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8253,2.66646883904457E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8254,1.94203880932185E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8255,1.20816995185029E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8256,1.00759486218764E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8257,8.09379479462203E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8258,0.000006088,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8259,4.05869593199705E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8260,2.03170767293573E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8261,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8262,0.0015191793,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8263,0.0030385946,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8264,0.0045577739,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8265,0.0231298474,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8266,0.0417016849,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8267,0.0602737583,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8268,0.0756847684,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8269,0.0910955424,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8270,0.1065065525,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8271,0.0840633798,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8272,0.0616202071,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8273,0.0391770344,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8274,0.0261556996,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8275,0.0131346008,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8276,0.0001132659,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8277,7.73983875404089E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8278,4.17668127885743E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8279,0.000006088,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8280,4.05869593199705E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8281,2.03170767293573E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8282,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8283,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8284,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8285,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8286,0.0040763937,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8287,0.0081527875,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8288,0.0122291812,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8289,0.0456180905,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8290,0.0790072357,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8291,0.112396145,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8292,0.1282033498,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8293,0.1440103187,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +8294,0.1598175235,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +8295,0.1244849236,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8296,0.0891525597,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8297,0.0538201958,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8298,0.0359307856,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8299,0.0180413754,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8300,0.0001519651,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8301,0.0001073667,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8302,6.27682045297218E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8303,1.82877287633588E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8304,1.21760877959912E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8305,0.000006088,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8306,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8307,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8308,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8309,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8310,0.0047253131,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8311,0.0094506263,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8312,0.0141759394,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8313,0.0516910323,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8314,0.0892058891,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8315,0.1267209819,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8316,0.1230424348,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8317,0.1193638877,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8318,0.1156853405,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8319,0.0864948218,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8320,0.0573045391,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8321,0.0281140204,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8322,0.0187735924,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8323,0.0094331645,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8324,9.25005119385375E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8325,6.98473253413446E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8326,4.6958168050431E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8327,0.000024069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8328,2.01754943131249E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8329,0.000016164,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8330,1.21760877959912E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8331,8.1173918639941E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8332,4.05869593199705E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8333,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8334,0.0040046586,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8335,0.0080095533,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8336,0.0120142119,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8337,0.0610961162,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8338,0.1101780205,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8339,0.1592599248,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +8340,0.1638972209,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +8341,0.1685345169,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +8342,0.173171813,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +8343,0.1316504097,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8344,0.0901287705,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8345,0.0486071313,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8346,0.0324440826,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8347,0.01628127,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8348,0.0001182213,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8349,7.88142117027334E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8350,3.94071058513667E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8351,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8352,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8353,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8354,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8355,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8356,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8357,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8358,0.0054282698,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8359,0.0108563037,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8360,0.0162845735,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8361,0.0686891812,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8362,0.1210940248,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8363,0.1734986324,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +8364,0.1732841351,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +8365,0.1730698737,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +8366,0.1728553763,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +8367,0.1303511551,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8368,0.0878471699,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8369,0.0453429487,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8370,0.0302632415,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8371,0.0151832983,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8372,0.0001035911,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8373,7.71624168466881E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8374,5.07336991499632E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8375,0.000024069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8376,2.01754943131249E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8377,0.000016164,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8378,1.21760877959912E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8379,8.1173918639941E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8380,4.05869593199705E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8381,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8382,0.0002834008,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8383,0.0005668016,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8384,0.0008502024,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8385,0.0027563737,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8386,0.0046625449,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8387,0.0065689522,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8388,0.0072957419,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8389,0.0080227676,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8390,0.0087495574,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8391,0.0068044509,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8392,0.0048593445,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8393,0.0029142381,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8394,0.0019533654,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8395,0.0009924927,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8396,3.16200729585817E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8397,2.52488642281212E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8398,1.86180877345679E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8399,1.20816995185029E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8400,1.00759486218764E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8401,8.09379479462203E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8402,0.000006088,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8403,4.05869593199705E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8404,2.03170767293573E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8405,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8406,0.0034765562,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8407,0.0069531125,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8408,0.0104296687,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8409,0.0493992849,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8410,0.0883686651,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8411,0.1273382813,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8412,0.1277151265,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8413,0.1280922076,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8414,0.1284692888,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8415,0.0969393567,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8416,0.0654094245,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8417,0.0338794924,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8418,0.022609532,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8419,0.0113393357,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8420,6.93753839539031E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8421,5.42732595557745E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8422,3.9171135157646E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8423,0.000024069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8424,2.01754943131249E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8425,0.000016164,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8426,1.21760877959912E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8427,8.1173918639941E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8428,4.05869593199705E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8429,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8430,0.0038734589,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8431,0.0077469179,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8432,0.0116203768,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8433,0.0568399128,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8434,0.1020594488,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8435,0.1472789847,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +8436,0.147397442,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +8437,0.1475156634,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +8438,0.1476341206,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +8439,0.111317287,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8440,0.0750004534,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8441,0.0386836197,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8442,0.0258236888,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8443,0.012963522,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8444,0.0001035911,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8445,6.98473253413446E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8446,3.61035161392761E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8447,2.43049814532382E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8448,1.62583807973603E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8449,8.1173918639941E-007,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8450,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8451,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8452,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8453,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8454,0.0029194294,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8455,0.0058388588,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8456,0.0087582883,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8457,0.0559585623,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8458,0.1031588362,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8459,0.1503591102,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +8460,0.149579463,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +8461,0.1488000518,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +8462,0.1480204047,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +8463,0.1112623058,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8464,0.074504443,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8465,0.0377463441,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8466,0.0252004902,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8467,0.0126544004,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8468,0.0001085465,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8469,0.000072207,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8470,3.61035161392761E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8471,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8472,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8473,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8474,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8475,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8476,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8477,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8478,0.0047776986,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8479,0.0095553973,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8480,0.0143328599,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8481,0.0710927787,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8482,0.1278529334,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8483,0.1846128521,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +8484,0.1888690555,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +8485,0.1931252589,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +8486,0.1973814623,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +8487,0.1498232208,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +8488,0.1022649792,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8489,0.0547069737,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8490,0.0365207123,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8491,0.0183346869,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8492,0.0001486615,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8493,0.0001007595,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8494,5.285743539345E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8495,4.88459336001971E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8496,3.25639557334647E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8497,1.62583807973603E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8498,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8499,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8500,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8501,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8502,0.0030312795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8503,0.0060625591,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8504,0.0090940746,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8505,0.0489136572,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8506,0.0887334758,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8507,0.1285532944,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8508,0.1369005217,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8509,0.145247985,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +8510,0.1535954483,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +8511,0.1177890192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8512,0.0819825902,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8513,0.0461761612,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8514,0.0308243798,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8515,0.0154723624,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8516,0.000120581,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8517,0.000080466,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8518,0.000040115,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8519,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8520,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8521,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8522,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8523,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8524,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8525,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8526,0.0019854574,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8527,0.0039709148,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8528,0.0059563723,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8529,0.0279051863,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8530,0.0498540004,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8531,0.0718025785,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8532,0.0703754278,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8533,0.068948277,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8534,0.0675211262,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8535,0.0505489341,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8536,0.0335769779,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8537,0.0166047858,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8538,0.0110783521,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8539,0.0055519185,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8540,2.5484834921842E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8541,1.70606811560109E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8542,8.51854204331939E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8543,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8544,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8545,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8546,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8547,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8548,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8549,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8550,0.0004726493,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8551,0.0009452986,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8552,0.0014179479,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8553,0.0084668645,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8554,0.015516017,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8555,0.0225649336,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8556,0.0253205993,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8557,0.0280760291,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8558,0.0308316949,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8559,0.0239130341,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8560,0.0169941374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8561,0.0100754767,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8562,0.0067308281,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8563,0.0033861795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8564,4.15308420948536E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8565,3.16200729585817E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8566,2.18508862385423E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8567,1.20816995185029E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8568,1.00759486218764E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8569,8.09379479462203E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8570,0.000006088,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8571,4.05869593199705E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8572,2.03170767293573E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8573,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8574,0.0015765202,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8575,0.0031528044,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8576,0.0047293246,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8577,0.0310940943,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8578,0.057458628,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8579,0.0838233976,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8580,0.089625681,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8581,0.0954282003,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8582,0.1012304837,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8583,0.0777311062,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8584,0.0542314927,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8585,0.0307321152,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8586,0.0205582388,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8587,0.0103843623,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8588,0.0002107218,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8589,0.0001550327,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8590,9.93436620564395E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8591,4.36545783383404E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8592,3.51596333643931E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8593,2.66646883904457E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8594,1.82877287633588E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8595,1.21760877959912E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8596,0.000006088,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8597,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8598,0.0034789159,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8599,0.0069580678,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8600,0.0104369838,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8601,0.0593945315,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8602,0.1083520793,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8603,0.157309627,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +8604,0.1686555699,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +8605,0.1800015128,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +8606,0.1913474557,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,,,,,,,,,, +8607,0.1470078544,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +8608,0.1026684891,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8609,0.0583288879,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8610,0.0389799989,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8611,0.0196313459,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8612,0.0002824569,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8613,0.0001939679,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8614,0.0001054789,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8615,1.70606811560109E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8616,1.13737874373406E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8617,5.68689371867029E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8618,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8619,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8620,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8621,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8622,0.0034661735,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8623,0.0069321111,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8624,0.0103982846,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8625,0.0548004181,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8626,0.0992025516,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8627,0.1436046851,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +8628,0.1461467974,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +8629,0.1486891456,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +8630,0.1512314939,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +8631,0.1146064825,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8632,0.0779814711,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8633,0.0413564598,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8634,0.0276189539,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8635,0.013881212,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8636,0.0001437062,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8637,0.0001007595,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8638,5.75768492678651E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8639,1.45121976638267E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8640,1.17041464085496E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8641,8.89609515327261E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8642,0.000006088,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8643,4.05869593199705E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8644,2.03170767293573E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8645,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8646,0.001698753,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8647,0.003397742,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8648,0.005096495,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8649,0.0252099291,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8650,0.0453233631,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8651,0.0654365611,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8652,0.0652369299,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8653,0.0650372987,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8654,0.0648376675,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8655,0.0488770817,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8656,0.0329167319,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8657,0.0169563821,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8658,0.0113457069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8659,0.0057350317,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8660,0.0001243566,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8661,8.28257134959864E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8662,4.15308420948536E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8663,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8664,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8665,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8666,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8667,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8668,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8669,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8670,0.0021683347,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8671,0.0043364334,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8672,0.0065047681,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8673,0.037320653,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8674,0.0681367738,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8675,0.0989528946,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8676,0.0999182507,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8677,0.1008836068,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8678,0.1018487269,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8679,0.077064489,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8680,0.0522802511,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8681,0.0274960131,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8682,0.0184087817,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8683,0.0093213143,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8684,0.000233847,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8685,0.0001559766,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8686,7.78703289278504E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8687,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8688,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8689,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8690,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8691,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8692,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8693,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8694,0.0025803395,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8695,0.005160915,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8696,0.0077412546,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8697,0.0399488946,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8698,0.0721565346,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8699,0.1043641745,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8700,0.1213318832,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8701,0.1382998279,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,,,,,,,,,, +8702,0.1552675366,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,,,,,,,,,, +8703,0.1213297595,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8704,0.0873919824,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8705,0.0534542053,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8706,0.0357561673,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8707,0.0180583652,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8708,0.0003605632,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8709,0.0002423419,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8710,0.0001243566,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8711,0.000006088,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8712,4.05869593199705E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8713,2.03170767293573E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8714,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8715,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8716,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8717,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8718,0.0023051977,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8719,0.0046101594,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8720,0.0069153572,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8721,0.0349607101,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8722,0.063006299,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8723,0.0910516519,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8724,0.0914763991,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8725,0.0919011464,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8726,0.0923258936,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8727,0.069721081,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8728,0.0471165044,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8729,0.0245116918,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8730,0.0163820294,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8731,0.0082526031,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8732,0.0001229407,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8733,8.40055669645902E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8734,4.50704025006649E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8735,0.000006088,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8736,4.05869593199705E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8737,2.03170767293573E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8738,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8739,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8740,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8741,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8742,0.0011866966,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8743,0.0023736292,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8744,0.0035603258,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8745,0.0242662823,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8746,0.0449724747,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8747,0.0656784311,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8748,0.070445983,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8749,0.0752132989,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8750,0.0799806148,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8751,0.061452196,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8752,0.0429235411,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8753,0.0243951223,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8754,0.0163225648,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8755,0.0082502434,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8756,0.0001776859,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8757,0.0001224688,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8758,6.72516477104163E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8759,1.21760877959912E-005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, +8760,8.1173918639941E-006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,, diff --git a/emlab-generation/src/main/resources/data/multiNodeProduction_NL_windOff.csv b/emlab-generation/src/main/resources/data/multiNodeProduction_NL_windOff.csv new file mode 100644 index 00000000..6dc58195 --- /dev/null +++ b/emlab-generation/src/main/resources/data/multiNodeProduction_NL_windOff.csv @@ -0,0 +1,8761 @@ +hour,nl_node_0,nl_node_1,nl_node_2,nl_node_3,nl_node_4,nl_node_5,nl_node_6,nl_node_7,nl_node_8,nl_node_9,nl_node_10,nl_node_11,nl_node_12,nl_node_13,nl_node_14,nl_node_15,nl_node_16,nl_node_17,nl_node_18 +1,0.8,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +2,0.8,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +3,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +4,0.7,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3 +5,0.7,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3 +6,0.7,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3 +7,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +8,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +9,0.5,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +10,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +11,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +12,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +13,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +14,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +15,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +16,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +17,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +18,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +19,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +20,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +28,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +29,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +30,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +31,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0 +32,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0 +33,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +34,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +35,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +36,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0 +37,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +38,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +39,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +40,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +41,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +42,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1 +43,0.4,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +44,0.4,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +45,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +46,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1 +47,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1 +48,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +49,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +50,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +51,0.4,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +52,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2 +53,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2 +54,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2 +55,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2 +56,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2 +57,0.4,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +58,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1 +59,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1 +60,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +61,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0 +62,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0 +63,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +64,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +66,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +67,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +68,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +69,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +70,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +71,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +72,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +73,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +74,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +76,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +77,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +78,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +79,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +80,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +81,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +82,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +83,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +84,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +85,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +86,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +87,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +88,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +89,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +90,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +91,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +92,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +93,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +94,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +95,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +96,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +97,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +98,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +99,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1 +100,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1 +101,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1 +102,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +103,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +104,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +105,0.4,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +106,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +107,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +108,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +109,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2 +110,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2 +111,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +112,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +113,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +114,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1 +115,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +116,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +117,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +118,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +119,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +120,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +121,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +122,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +123,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +124,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +125,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +126,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +127,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +128,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +129,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0 +130,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +131,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +132,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +133,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +134,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +135,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +136,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +137,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +138,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +139,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +140,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +141,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +142,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +143,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +144,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +145,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +146,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +147,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +148,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +149,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +150,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +151,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +152,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +153,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +154,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +155,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +156,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +157,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +158,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +159,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +160,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +161,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +162,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +163,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +164,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +165,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +166,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +167,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +168,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +169,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +170,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +171,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +172,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +173,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +174,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +175,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0 +176,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0 +177,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +178,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1 +179,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1 +180,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +181,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +182,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +183,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +184,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +185,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +186,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +187,0.7,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3 +188,0.7,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3 +189,0.7,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +190,0.8,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +191,0.8,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +192,0.9,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4 +193,0.9,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4 +194,0.9,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4 +195,1.0,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +196,1.1,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5 +197,1.1,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5 +198,1.1,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5 +199,1.1,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5 +200,1.1,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5 +201,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5 +202,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5 +203,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5 +204,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5 +205,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5 +206,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5 +207,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5 +208,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5 +209,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5 +210,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5 +211,1.1,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5 +212,1.1,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5 +213,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5 +214,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5 +215,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5 +216,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5 +217,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5 +218,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5 +219,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5 +220,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5 +221,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5 +222,1.1,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5 +223,1.1,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5 +224,1.1,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5 +225,1.0,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5 +226,1.0,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +227,1.0,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +228,0.9,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +229,0.9,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4 +230,0.9,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4 +231,0.9,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4 +232,0.9,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4 +233,0.9,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4 +234,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +235,0.7,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3 +236,0.7,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3 +237,0.7,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3 +238,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +239,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +240,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +241,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +242,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +243,0.6,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +244,0.6,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +245,0.6,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +246,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2 +247,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2 +248,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2 +249,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2 +250,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2 +251,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2 +252,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +253,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +254,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +255,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +256,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +257,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +258,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +259,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +260,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +261,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +262,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +263,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +264,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +265,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +266,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +267,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +268,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +269,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +270,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +271,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +272,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +273,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +274,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +275,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +276,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +277,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +278,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +279,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2 +280,0.5,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +281,0.5,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +282,0.7,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3 +283,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +284,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +285,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +286,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +287,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +288,0.8,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4 +289,0.9,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4 +290,0.9,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4 +291,0.8,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4 +292,0.8,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4 +293,0.8,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4 +294,0.8,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4 +295,0.8,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4 +296,0.8,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4 +297,0.8,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4 +298,0.8,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +299,0.8,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +300,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +301,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +302,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +303,0.7,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3 +304,0.6,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +305,0.6,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +306,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +307,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2 +308,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2 +309,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2 +310,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +311,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +312,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +313,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +314,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +315,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1 +316,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +317,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +318,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +319,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +320,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +321,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +322,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +323,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +324,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +325,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +326,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +327,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +328,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +329,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +330,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +331,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +332,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +333,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +334,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +335,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +336,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +337,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +338,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +339,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +340,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0 +341,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0 +342,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0 +343,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +344,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +345,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0 +346,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0 +347,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0 +348,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0 +349,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +350,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +351,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +352,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +353,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +354,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +355,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +356,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +357,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +358,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +359,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +360,0.4,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +361,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +362,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +363,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2 +364,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +365,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +366,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +367,0.9,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4 +368,0.9,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4 +369,0.9,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4 +370,0.9,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4 +371,0.9,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4 +372,0.9,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4 +373,0.9,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4 +374,0.9,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4 +375,0.9,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4 +376,0.9,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4 +377,0.9,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4 +378,0.9,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4 +379,0.9,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4 +380,0.9,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4 +381,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +382,0.7,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3 +383,0.7,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3 +384,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2 +385,0.4,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +386,0.4,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +387,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +388,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +389,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +390,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +391,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +392,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +393,0.4,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +394,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +395,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +396,0.6,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +397,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +398,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +399,0.6,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +400,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +401,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +402,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +403,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2 +404,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2 +405,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2 +406,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2 +407,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2 +408,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +409,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +410,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +411,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +412,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1 +413,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1 +414,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +415,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +416,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +417,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +418,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1 +419,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1 +420,0.4,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +421,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +422,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +423,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2 +424,0.6,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +425,0.6,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +426,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2 +427,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +428,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +429,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +430,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1 +431,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1 +432,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +433,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +434,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +435,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +436,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +437,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +438,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +439,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +440,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +441,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +442,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +443,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +444,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +445,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +446,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +447,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +448,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +449,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +450,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +451,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +452,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +453,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +454,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +455,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +456,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +457,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +458,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +459,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +460,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1 +461,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1 +462,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +463,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +464,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +465,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +466,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +467,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +468,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +469,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +470,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +471,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +472,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +473,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +474,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +475,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +476,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +477,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +478,0.4,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +479,0.4,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +480,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1 +481,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +482,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +483,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +484,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +485,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +486,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +487,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +488,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +489,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +490,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +491,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +492,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +493,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +494,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +495,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +496,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0 +497,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0 +498,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +499,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +500,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +501,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +502,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +503,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +504,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +505,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +506,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +507,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +508,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +509,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +510,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1 +511,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +512,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +513,0.4,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +514,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +515,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +516,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +517,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +518,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +519,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +520,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +521,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +522,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2 +523,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +524,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +525,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +526,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +527,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +528,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2 +529,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2 +530,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2 +531,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +532,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +533,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +534,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +535,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +536,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +537,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +538,0.4,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +539,0.4,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +540,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +541,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1 +542,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1 +543,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +544,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +545,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +546,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +547,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +548,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +549,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +550,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +551,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +552,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +553,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +554,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +555,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +556,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0 +557,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0 +558,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +559,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +560,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +561,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +562,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +563,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +564,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +565,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +566,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +567,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +568,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +569,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +570,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +571,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +572,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +573,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +574,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +575,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +576,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +578,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +579,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +580,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +581,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +582,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +583,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +584,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +585,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +586,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +587,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +588,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +589,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +590,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +591,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +592,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +593,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +594,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +595,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +596,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +597,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +598,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +599,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +600,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +601,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +602,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +603,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +604,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +605,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +606,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1 +607,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1 +608,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1 +609,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +610,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +611,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +612,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +613,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +614,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +615,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +616,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +617,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +618,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +619,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +620,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +621,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +622,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +623,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +624,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +625,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +626,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +627,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +628,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +629,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +630,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0 +631,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +632,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +633,0.4,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +634,0.6,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +635,0.6,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +636,0.7,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3 +637,0.9,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4 +638,0.9,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4 +639,0.9,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4 +640,1.0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +641,1.0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +642,1.0,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +643,1.0,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5 +644,1.0,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5 +645,1.0,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5 +646,1.0,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +647,1.0,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +648,1.0,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5 +649,1.0,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5 +650,1.0,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5 +651,1.0,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +652,1.0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +653,1.0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +654,0.9,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4 +655,0.9,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4 +656,0.9,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4 +657,0.9,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4 +658,0.9,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4 +659,0.9,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4 +660,0.9,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4 +661,0.9,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4 +662,0.9,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4 +663,0.9,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4 +664,0.9,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4 +665,0.9,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4 +666,0.8,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +667,0.7,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3 +668,0.7,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3 +669,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +670,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +671,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +672,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2 +673,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +674,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +675,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2 +676,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +677,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +678,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +679,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +680,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +681,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +682,0.4,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +683,0.4,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +684,0.6,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +685,0.7,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3 +686,0.7,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3 +687,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +688,0.9,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4 +689,0.9,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4 +690,0.8,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +691,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +692,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +693,0.7,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3 +694,0.7,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3 +695,0.7,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3 +696,0.7,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3 +697,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3 +698,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3 +699,0.7,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3 +700,0.7,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3 +701,0.7,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3 +702,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +703,0.6,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +704,0.6,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +705,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2 +706,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +707,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +708,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1 +709,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +710,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +711,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +712,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +713,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +714,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1 +715,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +716,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +717,0.6,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +718,0.7,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3 +719,0.7,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3 +720,0.7,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3 +721,0.7,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3 +722,0.7,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3 +723,0.7,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3 +724,0.7,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3 +725,0.7,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3 +726,0.7,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3 +727,0.7,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3 +728,0.7,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3 +729,0.7,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3 +730,0.7,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3 +731,0.7,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3 +732,0.7,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3 +733,0.7,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3 +734,0.7,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3 +735,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +736,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2 +737,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2 +738,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2 +739,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2 +740,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2 +741,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2 +742,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2 +743,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2 +744,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2 +745,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2 +746,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2 +747,0.6,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +748,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +749,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +750,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +751,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +752,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +753,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +754,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +755,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +756,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +757,0.7,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3 +758,0.7,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3 +759,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +760,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2 +761,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2 +762,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +763,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +764,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +765,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +766,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1 +767,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1 +768,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +769,0.6,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +770,0.6,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +771,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +772,1.0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +773,1.0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +774,1.0,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5 +775,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5 +776,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5 +777,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5 +778,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5 +779,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5 +780,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5 +781,1.0,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5 +782,1.0,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5 +783,1.0,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +784,0.9,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4 +785,0.9,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4 +786,0.9,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4 +787,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +788,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +789,0.7,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3 +790,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3 +791,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3 +792,0.6,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +793,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2 +794,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2 +795,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2 +796,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +797,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +798,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2 +799,0.6,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +800,0.6,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +801,0.6,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +802,0.6,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +803,0.6,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +804,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +805,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2 +806,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2 +807,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +808,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +809,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +810,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +811,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +812,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +813,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +814,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +815,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +816,0.4,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +817,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +818,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +819,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +820,0.7,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3 +821,0.7,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3 +822,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +823,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2 +824,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2 +825,0.4,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +826,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1 +827,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1 +828,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +829,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +830,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +831,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +832,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +833,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +834,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1 +835,0.4,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +836,0.4,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +837,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2 +838,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +839,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +840,0.7,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3 +841,0.7,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +842,0.7,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +843,0.7,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3 +844,0.7,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3 +845,0.7,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3 +846,0.7,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3 +847,0.7,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3 +848,0.7,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3 +849,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +850,0.6,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +851,0.6,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +852,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2 +853,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +854,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +855,0.4,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +856,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1 +857,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1 +858,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1 +859,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +860,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +861,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +862,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +863,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +864,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +865,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +866,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +867,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +868,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +869,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +870,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +871,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +872,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +873,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +874,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +875,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +876,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +877,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +878,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +879,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0 +880,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +881,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +882,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +883,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +884,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +885,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +886,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +887,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +888,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +889,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +890,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +891,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +892,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +893,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +894,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +895,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +896,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +897,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +898,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0 +899,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0 +900,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0 +901,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +902,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +903,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +904,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +905,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +906,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +907,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +908,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +909,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +910,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +911,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +912,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +913,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +914,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +915,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +916,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +917,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +918,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1 +919,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +920,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +921,0.4,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +922,0.4,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +923,0.4,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +924,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +925,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1 +926,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1 +927,0.4,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +928,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +929,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +930,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +931,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +932,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +933,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +934,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +935,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +936,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +937,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +938,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +939,0.4,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +940,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +941,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +942,0.4,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +943,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +944,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +945,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +946,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2 +947,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2 +948,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +949,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +950,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +951,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +952,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +953,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +954,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +955,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +956,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +957,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +958,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +959,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +960,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +961,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +962,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +963,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +964,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +965,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +966,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +967,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1 +968,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1 +969,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +970,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +971,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +972,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +973,0.7,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3 +974,0.7,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3 +975,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +976,0.9,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4 +977,0.9,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4 +978,0.9,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4 +979,1.0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +980,1.0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +981,1.0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +982,1.0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +983,1.0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +984,0.9,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4 +985,0.9,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4 +986,0.9,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4 +987,0.9,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4 +988,0.9,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4 +989,0.9,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4 +990,0.9,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4 +991,0.9,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4 +992,0.9,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4 +993,0.9,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4 +994,0.9,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4 +995,0.9,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4 +996,0.9,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4 +997,0.9,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4 +998,0.9,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4 +999,0.9,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4 +1000,0.8,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4 +1001,0.8,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4 +1002,0.8,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +1003,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +1004,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +1005,0.7,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3 +1006,0.7,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3 +1007,0.7,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3 +1008,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +1009,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2 +1010,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2 +1011,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2 +1012,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1013,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1014,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2 +1015,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2 +1016,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2 +1017,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2 +1018,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +1019,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +1020,0.5,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +1021,0.6,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +1022,0.6,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +1023,0.6,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +1024,0.6,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +1025,0.6,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +1026,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +1027,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +1028,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +1029,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +1030,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +1031,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +1032,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +1033,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2 +1034,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2 +1035,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1036,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1037,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1038,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1039,0.4,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1040,0.4,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1041,0.4,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1042,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1043,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1044,0.4,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1045,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1046,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1047,0.4,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1048,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1049,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1050,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1051,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1052,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1053,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1 +1054,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1 +1055,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1 +1056,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1057,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1058,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1059,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1060,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1061,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1062,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1063,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1064,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1065,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1066,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0 +1067,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0 +1068,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1069,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1070,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1071,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1072,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1073,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1074,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1075,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1076,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1077,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1078,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1079,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1080,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1081,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1082,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1083,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1084,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1085,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1086,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1087,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1088,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1089,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1090,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1091,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1092,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1093,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1094,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1095,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1096,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1097,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1098,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1099,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1100,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1101,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1102,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1103,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1104,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1105,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1 +1106,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1 +1107,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1108,0.6,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +1109,0.6,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +1110,0.7,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3 +1111,0.7,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +1112,0.7,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +1113,0.8,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +1114,0.9,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4 +1115,0.9,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4 +1116,0.9,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4 +1117,0.9,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4 +1118,0.9,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4 +1119,0.9,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4 +1120,0.8,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +1121,0.8,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +1122,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +1123,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +1124,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +1125,0.7,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3 +1126,0.7,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3 +1127,0.7,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3 +1128,0.6,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +1129,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1130,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1131,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1132,0.4,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1133,0.4,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1134,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1135,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1 +1136,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1 +1137,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1138,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1139,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1140,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1141,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1142,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1143,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1144,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0 +1145,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0 +1146,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1147,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1148,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1149,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1150,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1151,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1152,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1153,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1154,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1155,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1156,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1157,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1158,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1159,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1160,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1161,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1162,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1163,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1164,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1165,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1 +1166,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1 +1167,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1 +1168,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1169,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1170,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1171,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1172,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1173,0.4,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1174,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2 +1175,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2 +1176,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +1177,0.7,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3 +1178,0.7,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3 +1179,0.7,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3 +1180,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +1181,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +1182,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +1183,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +1184,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +1185,0.7,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3 +1186,0.7,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3 +1187,0.7,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3 +1188,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +1189,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +1190,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +1191,0.7,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3 +1192,0.7,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3 +1193,0.7,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3 +1194,0.7,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3 +1195,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +1196,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +1197,0.7,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3 +1198,0.7,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3 +1199,0.7,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3 +1200,0.7,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +1201,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +1202,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +1203,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +1204,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +1205,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +1206,0.7,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3 +1207,0.7,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3 +1208,0.7,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3 +1209,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +1210,0.6,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +1211,0.6,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +1212,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2 +1213,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2 +1214,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2 +1215,0.4,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1216,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1217,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1218,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1219,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0 +1220,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0 +1221,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1222,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1223,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1224,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1225,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1226,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1228,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1229,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1230,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1231,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1232,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1233,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1234,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1235,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1236,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1237,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2 +1238,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2 +1239,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +1240,0.7,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3 +1241,0.7,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3 +1242,0.7,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3 +1243,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +1244,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +1245,0.7,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3 +1246,0.7,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3 +1247,0.7,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3 +1248,0.6,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +1249,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2 +1250,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2 +1251,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1252,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1253,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1254,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1255,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1256,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1257,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1258,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0 +1259,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0 +1260,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1261,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1262,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1263,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1264,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0 +1265,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0 +1266,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1267,0.4,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1268,0.4,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1269,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1270,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +1271,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +1272,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2 +1273,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2 +1274,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2 +1275,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +1276,0.6,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +1277,0.6,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +1278,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2 +1279,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2 +1280,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2 +1281,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2 +1282,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +1283,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +1284,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +1285,0.6,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +1286,0.6,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +1287,0.6,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +1288,0.6,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +1289,0.6,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +1290,0.6,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +1291,0.6,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +1292,0.6,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +1293,0.6,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +1294,0.5,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +1295,0.5,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +1296,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2 +1297,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2 +1298,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2 +1299,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1300,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1301,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1302,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1303,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1304,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1305,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1 +1306,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1 +1307,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1 +1308,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1 +1309,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1310,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1311,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1 +1312,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1 +1313,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1 +1314,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1315,0.4,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1316,0.4,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1317,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2 +1318,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +1319,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +1320,0.7,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3 +1321,0.7,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3 +1322,0.7,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3 +1323,0.7,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3 +1324,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +1325,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +1326,0.6,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +1327,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2 +1328,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2 +1329,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2 +1330,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1331,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1332,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2 +1333,0.6,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +1334,0.6,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +1335,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1336,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1 +1337,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1 +1338,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1 +1339,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1340,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1341,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1342,0.6,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +1343,0.6,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +1344,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +1345,0.7,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3 +1346,0.7,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3 +1347,0.7,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3 +1348,0.7,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3 +1349,0.7,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3 +1350,0.7,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3 +1351,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +1352,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +1353,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +1354,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +1355,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +1356,0.7,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3 +1357,0.8,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +1358,0.8,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +1359,0.9,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +1360,1.1,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5 +1361,1.1,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5 +1362,1.1,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5 +1363,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5 +1364,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5 +1365,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5 +1366,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5 +1367,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5 +1368,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5 +1369,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5 +1370,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5 +1371,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5 +1372,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5 +1373,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5 +1374,1.0,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5 +1375,0.9,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4 +1376,0.9,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4 +1377,0.9,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4 +1378,0.8,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4 +1379,0.8,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4 +1380,0.8,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4 +1381,0.8,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +1382,0.8,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +1383,0.7,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3 +1384,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +1385,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +1386,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2 +1387,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1388,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1389,0.4,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1390,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1 +1391,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1 +1392,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1393,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1394,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1395,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1396,0.4,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1397,0.4,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1398,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2 +1399,0.6,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +1400,0.6,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +1401,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +1402,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +1403,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +1404,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +1405,0.6,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +1406,0.6,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +1407,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +1408,0.9,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4 +1409,0.9,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4 +1410,1.0,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5 +1411,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5 +1412,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5 +1413,1.1,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5 +1414,1.1,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5 +1415,1.1,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5 +1416,1.0,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5 +1417,1.0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +1418,1.0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +1419,0.8,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +1420,0.7,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3 +1421,0.7,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3 +1422,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +1423,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +1424,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +1425,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +1426,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2 +1427,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2 +1428,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1429,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1430,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1431,0.4,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1432,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1433,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1434,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1435,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1436,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1437,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1438,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1439,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1440,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1441,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1442,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1443,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1444,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1445,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1446,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1447,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1448,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1449,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1450,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1451,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1452,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1453,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1 +1454,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1 +1455,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1456,0.4,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1457,0.4,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1458,0.4,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1459,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1460,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1461,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1 +1462,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1463,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1464,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1465,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1466,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1467,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1468,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0 +1469,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0 +1470,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1471,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1472,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1473,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1474,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1475,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1476,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1477,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1478,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1479,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1480,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1481,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1482,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1483,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1484,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1485,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1 +1486,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1 +1487,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1 +1488,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1 +1489,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1490,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1491,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1 +1492,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1493,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1494,0.4,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1495,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1496,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1497,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1498,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2 +1499,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2 +1500,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1501,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1502,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1503,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1504,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1505,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1506,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1507,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1508,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1509,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1510,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1511,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1512,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1513,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1514,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1515,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1516,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1517,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1518,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1519,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0 +1520,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0 +1521,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0 +1522,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0 +1523,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0 +1524,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1525,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1526,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1527,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +1528,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +1529,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +1530,0.9,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4 +1531,0.9,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4 +1532,0.9,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4 +1533,0.9,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4 +1534,0.9,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4 +1535,0.9,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4 +1536,0.9,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4 +1537,0.9,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4 +1538,0.9,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4 +1539,1.0,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +1540,1.0,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5 +1541,1.0,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5 +1542,0.9,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4 +1543,0.8,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +1544,0.8,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +1545,0.7,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3 +1546,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +1547,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +1548,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +1549,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2 +1550,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2 +1551,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2 +1552,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2 +1553,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2 +1554,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1555,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1556,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1557,0.4,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1558,0.4,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1559,0.4,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1560,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1561,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1562,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1563,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1564,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1565,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1566,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1567,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1568,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1569,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1570,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1571,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1572,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1573,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1574,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1575,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1576,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1577,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1578,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1579,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1580,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1581,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1582,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1583,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1584,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1585,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1586,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1587,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1588,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1589,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1590,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1591,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1592,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1593,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1 +1594,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1595,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1596,0.4,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1597,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1598,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1599,0.4,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1600,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1601,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1602,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1603,0.4,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1604,0.4,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1605,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1606,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1 +1607,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1 +1608,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1609,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1610,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1611,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1612,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1613,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1614,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1615,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1616,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1617,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1618,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1619,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1620,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1621,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1622,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1623,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1624,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1625,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1626,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1627,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1628,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1629,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1630,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1631,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1632,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0 +1633,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1634,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1635,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1636,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1637,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1638,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1639,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1640,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1641,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1642,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1643,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1644,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1645,0.4,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1646,0.4,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1647,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2 +1648,0.6,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +1649,0.6,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +1650,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +1651,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +1652,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +1653,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +1654,0.6,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +1655,0.6,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +1656,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +1657,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +1658,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +1659,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2 +1660,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1661,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1662,0.4,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1663,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1664,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1665,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1666,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1667,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1668,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1669,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1670,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1671,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1672,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1673,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1674,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1675,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1676,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1677,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1678,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1679,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1680,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1681,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1682,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1683,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1684,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1685,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1686,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1687,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1 +1688,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1 +1689,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1690,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1691,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1692,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1 +1693,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1 +1694,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1 +1695,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1696,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0 +1697,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0 +1698,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1699,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1700,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1701,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1702,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1 +1703,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1 +1704,0.4,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1705,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1706,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1707,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1708,0.4,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1709,0.4,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1710,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1711,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2 +1712,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2 +1713,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +1714,0.6,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +1715,0.6,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +1716,0.6,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +1717,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +1718,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +1719,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +1720,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +1721,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +1722,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +1723,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3 +1724,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3 +1725,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +1726,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +1727,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +1728,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +1729,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +1730,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +1731,0.7,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3 +1732,0.7,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3 +1733,0.7,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3 +1734,0.7,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3 +1735,0.7,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3 +1736,0.7,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3 +1737,0.7,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3 +1738,0.7,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3 +1739,0.7,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3 +1740,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +1741,0.8,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +1742,0.8,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +1743,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +1744,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +1745,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +1746,0.7,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3 +1747,0.6,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +1748,0.6,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +1749,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2 +1750,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1751,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1752,0.4,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1753,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1754,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1755,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1 +1756,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1 +1757,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1 +1758,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1 +1759,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1760,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1761,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2 +1762,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +1763,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +1764,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +1765,0.9,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4 +1766,0.9,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4 +1767,0.9,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4 +1768,0.9,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4 +1769,0.9,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4 +1770,0.9,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4 +1771,0.8,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +1772,0.8,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +1773,0.7,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3 +1774,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +1775,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +1776,0.6,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +1777,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +1778,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +1779,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1780,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1781,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1782,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0 +1783,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1784,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1785,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1786,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1787,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1788,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1789,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1790,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1791,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0 +1792,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1793,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1794,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1795,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1796,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1797,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1798,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1799,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1800,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1801,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1 +1802,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1 +1803,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1804,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1805,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1806,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1807,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1808,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1809,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2 +1810,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2 +1811,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2 +1812,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +1813,0.6,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +1814,0.6,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +1815,0.6,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +1816,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +1817,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +1818,0.6,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +1819,0.5,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +1820,0.5,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +1821,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2 +1822,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1823,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1824,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1825,0.4,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1826,0.4,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1827,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1828,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1 +1829,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1 +1830,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1831,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1832,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1833,0.4,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1834,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1835,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1836,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2 +1837,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +1838,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +1839,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +1840,0.7,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3 +1841,0.7,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3 +1842,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +1843,0.8,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4 +1844,0.8,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4 +1845,0.9,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4 +1846,0.9,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4 +1847,0.9,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4 +1848,0.9,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4 +1849,0.9,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4 +1850,0.9,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4 +1851,1.0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +1852,1.0,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5 +1853,1.0,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5 +1854,1.0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +1855,0.9,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4 +1856,0.9,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4 +1857,0.8,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +1858,0.7,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3 +1859,0.7,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3 +1860,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3 +1861,0.6,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +1862,0.6,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +1863,0.6,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +1864,0.6,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +1865,0.6,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +1866,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2 +1867,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1868,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1869,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1870,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2 +1871,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2 +1872,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +1873,0.7,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3 +1874,0.7,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3 +1875,0.9,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4 +1876,1.0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +1877,1.0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +1878,1.0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +1879,0.9,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +1880,0.9,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +1881,0.9,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4 +1882,0.9,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4 +1883,0.9,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4 +1884,0.9,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4 +1885,1.0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +1886,1.0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +1887,1.0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +1888,1.0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +1889,1.0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +1890,0.9,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4 +1891,0.9,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4 +1892,0.9,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4 +1893,0.9,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4 +1894,0.9,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4 +1895,0.9,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4 +1896,0.7,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +1897,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +1898,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +1899,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1900,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1901,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1902,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1 +1903,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1904,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1905,0.4,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1906,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1 +1907,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1 +1908,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1909,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1910,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1911,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1912,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1913,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1914,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1915,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1916,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1917,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1918,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1919,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1920,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1921,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1922,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1923,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1924,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1 +1925,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1 +1926,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1927,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1928,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1929,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1930,0.4,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1931,0.4,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1932,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1933,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1934,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1935,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2 +1936,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2 +1937,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2 +1938,0.5,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +1939,0.6,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +1940,0.6,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +1941,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3 +1942,0.7,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3 +1943,0.7,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3 +1944,0.7,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3 +1945,0.7,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3 +1946,0.7,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3 +1947,0.6,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +1948,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1949,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1950,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1951,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1952,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1953,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1954,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1955,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1956,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1957,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1958,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1959,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1960,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1961,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1962,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1963,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0 +1964,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0 +1965,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1966,0.4,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1967,0.4,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1968,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1969,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1970,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1971,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1972,0.4,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1973,0.4,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1974,0.4,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1975,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1976,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1977,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1978,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2 +1979,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2 +1980,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2 +1981,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1982,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1983,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1984,0.4,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1985,0.4,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1986,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1 +1987,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1988,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1989,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1 +1990,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1 +1991,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1 +1992,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1 +1993,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1994,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +1995,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1 +1996,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1997,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1998,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +1999,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2 +2000,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2 +2001,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2 +2002,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +2003,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +2004,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +2005,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2 +2006,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2 +2007,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2 +2008,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2009,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2010,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2 +2011,0.5,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +2012,0.5,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +2013,0.7,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3 +2014,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +2015,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +2016,0.8,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +2017,0.9,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4 +2018,0.9,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4 +2019,0.8,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +2020,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +2021,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +2022,0.7,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3 +2023,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +2024,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +2025,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2026,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2027,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2028,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2029,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2030,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2031,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2032,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2033,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2034,0.4,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2035,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2036,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2037,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2038,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2 +2039,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2 +2040,0.6,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +2041,0.6,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +2042,0.6,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +2043,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +2044,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +2045,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +2046,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +2047,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +2048,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +2049,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +2050,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2 +2051,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2 +2052,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2053,0.4,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2054,0.4,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2055,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2056,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2057,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2058,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2059,0.4,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2060,0.4,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2061,0.4,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2062,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2063,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2064,0.4,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2065,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2066,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2067,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2 +2068,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +2069,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +2070,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +2071,0.7,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3 +2072,0.7,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3 +2073,0.7,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3 +2074,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +2075,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +2076,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +2077,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +2078,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +2079,0.7,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3 +2080,0.7,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3 +2081,0.7,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3 +2082,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +2083,0.6,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +2084,0.6,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +2085,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2 +2086,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2 +2087,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2 +2088,0.4,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2089,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1 +2090,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1 +2091,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2092,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2093,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2094,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2095,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2096,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2097,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2098,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2099,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2100,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2101,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2102,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2103,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2104,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2105,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2106,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2107,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2108,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2109,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +2110,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +2111,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +2112,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +2113,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +2114,0.8,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4 +2115,0.8,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4 +2116,0.7,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3 +2117,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +2118,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +2119,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2 +2120,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2121,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2122,0.4,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2123,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2124,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2125,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2126,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2127,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2128,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2129,0.6,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +2130,0.6,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +2131,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +2132,0.7,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3 +2133,0.7,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3 +2134,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +2135,0.9,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4 +2136,0.9,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4 +2137,1.0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +2138,1.0,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5 +2139,1.0,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5 +2140,1.1,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5 +2141,1.1,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5 +2142,1.1,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5 +2143,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5 +2144,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5 +2145,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5 +2146,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5 +2147,1.1,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5 +2148,1.1,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5 +2149,1.1,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5 +2150,1.1,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5 +2151,1.1,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5 +2152,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5 +2153,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5 +2154,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5 +2155,1.1,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5 +2156,1.0,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5 +2157,1.0,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5 +2158,1.0,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +2159,0.9,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4 +2160,0.9,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4 +2161,0.9,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4 +2162,0.9,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4 +2163,0.9,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4 +2164,0.8,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4 +2165,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +2166,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +2167,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +2168,0.8,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +2169,0.8,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +2170,0.9,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4 +2171,1.0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +2172,1.0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +2173,0.9,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4 +2174,0.9,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4 +2175,0.9,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4 +2176,0.9,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4 +2177,0.9,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4 +2178,0.9,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4 +2179,0.8,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +2180,0.7,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3 +2181,0.7,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3 +2182,0.7,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3 +2183,0.7,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3 +2184,0.7,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3 +2185,0.7,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3 +2186,0.7,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3 +2187,0.7,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3 +2188,0.7,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3 +2189,0.7,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3 +2190,0.7,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3 +2191,0.7,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +2192,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +2193,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +2194,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +2195,0.8,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +2196,0.8,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +2197,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +2198,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +2199,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +2200,0.7,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3 +2201,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +2202,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +2203,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3 +2204,0.7,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3 +2205,0.7,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3 +2206,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +2207,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +2208,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +2209,0.6,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +2210,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2 +2211,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2 +2212,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2 +2213,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2 +2214,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2 +2215,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2 +2216,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2 +2217,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2 +2218,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2 +2219,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +2220,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +2221,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2222,0.4,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2223,0.4,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2224,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1 +2225,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2226,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2227,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2228,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2229,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2230,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2231,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1 +2232,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1 +2233,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1 +2234,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1 +2235,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1 +2236,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2237,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2238,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2239,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2240,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2241,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2242,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2243,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2244,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2245,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2246,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2247,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2248,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2249,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2250,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2251,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2252,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2253,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2254,0.4,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2255,0.4,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2256,0.4,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2257,0.4,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2258,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2259,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2260,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2261,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1 +2262,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1 +2263,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1 +2264,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1 +2265,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1 +2266,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2267,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2268,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2269,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2 +2270,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2 +2271,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2 +2272,0.6,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +2273,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +2274,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +2275,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +2276,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +2277,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +2278,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +2279,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +2280,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +2281,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +2282,0.6,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +2283,0.6,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +2284,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +2285,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2 +2286,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2 +2287,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2 +2288,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2 +2289,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2 +2290,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2 +2291,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2 +2292,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2 +2293,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2294,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2295,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2296,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2297,0.4,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2298,0.4,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2299,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2300,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2 +2301,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2 +2302,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2 +2303,0.5,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +2304,0.5,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +2305,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2 +2306,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2307,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2308,0.4,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2309,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1 +2310,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1 +2311,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2312,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2313,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2314,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2315,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2316,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2317,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2318,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2319,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2320,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2321,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2322,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2323,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2324,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2325,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2326,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2327,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2328,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2329,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2330,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2331,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2332,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2333,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1 +2334,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1 +2335,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1 +2336,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2337,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2338,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2339,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2340,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2341,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1 +2342,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1 +2343,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1 +2344,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2345,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2346,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2347,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2348,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2349,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2350,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2351,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2352,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2353,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2354,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2355,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2356,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2357,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2358,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2359,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2360,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0 +2361,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0 +2362,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2363,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2364,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2365,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2366,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2367,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2368,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2369,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2370,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2371,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0 +2372,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2373,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2374,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2375,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2376,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2377,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2378,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2379,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2380,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2381,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2382,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2383,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2384,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2385,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2386,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2387,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2388,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2389,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2390,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2391,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2392,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2393,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1 +2394,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1 +2395,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2396,0.4,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2397,0.4,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2398,0.4,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2399,0.4,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2400,0.4,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2401,0.4,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2402,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2403,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2404,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2405,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2406,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2407,0.4,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2408,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2409,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2410,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2 +2411,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2 +2412,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2 +2413,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +2414,0.6,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +2415,0.6,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +2416,0.7,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3 +2417,0.7,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3 +2418,0.7,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3 +2419,0.7,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3 +2420,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +2421,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +2422,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +2423,0.6,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +2424,0.6,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +2425,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2 +2426,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2427,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2428,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2429,0.4,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2430,0.4,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2431,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2432,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2 +2433,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2 +2434,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2 +2435,0.5,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +2436,0.5,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +2437,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +2438,0.7,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3 +2439,0.7,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3 +2440,0.7,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3 +2441,0.7,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3 +2442,0.7,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3 +2443,0.7,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3 +2444,0.7,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3 +2445,0.7,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3 +2446,0.7,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3 +2447,0.7,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3 +2448,0.7,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3 +2449,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +2450,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2 +2451,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2 +2452,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2 +2453,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2454,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2455,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2456,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2457,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2458,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2459,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2460,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2461,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2462,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2463,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2464,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2 +2465,0.6,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +2466,0.6,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +2467,0.6,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +2468,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +2469,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +2470,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2471,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2472,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2473,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1 +2474,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2475,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2476,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2477,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2478,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2479,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2480,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2481,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2482,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2483,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2484,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2485,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2486,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2487,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2488,0.4,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2489,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2490,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2491,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2 +2492,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2 +2493,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2 +2494,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2 +2495,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2 +2496,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2 +2497,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2498,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2499,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2500,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2501,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2502,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2503,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2504,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2505,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2506,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2507,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2508,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2509,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2510,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2511,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2512,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2513,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2 +2514,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2 +2515,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2 +2516,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2 +2517,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2 +2518,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2519,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2520,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2521,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2522,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2523,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2524,0.4,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2525,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2526,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2527,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2528,0.4,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2529,0.4,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2530,0.4,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2531,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2532,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2533,0.4,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2534,0.4,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2535,0.4,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2536,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2537,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1 +2538,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1 +2539,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2540,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2541,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2542,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2543,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0 +2544,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0 +2545,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2546,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2547,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2548,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2549,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2550,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2551,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2552,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2553,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2554,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2555,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0 +2556,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0 +2557,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0 +2558,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2559,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2560,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2561,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2562,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2563,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2564,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2565,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2566,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2567,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2568,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2569,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2570,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2571,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2572,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2573,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2574,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2575,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2576,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2578,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2579,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2580,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2581,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2582,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2583,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2584,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2585,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2586,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2587,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2588,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2589,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2590,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2591,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2592,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2593,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2594,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2595,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2596,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2597,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2598,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2599,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2600,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2601,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2602,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2603,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2604,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2605,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2606,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2607,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2608,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2609,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2610,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2611,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2612,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2613,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2614,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2615,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2616,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2617,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2618,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2619,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2620,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2621,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0 +2622,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0 +2623,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2624,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1 +2625,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1 +2626,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2627,0.5,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +2628,0.5,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +2629,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +2630,0.7,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3 +2631,0.7,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3 +2632,0.7,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3 +2633,0.7,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3 +2634,0.7,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3 +2635,0.6,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +2636,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2 +2637,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2 +2638,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2 +2639,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2640,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2641,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2642,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2643,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2644,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2645,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2646,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2647,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2648,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2649,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2650,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2651,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1 +2652,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1 +2653,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2654,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2 +2655,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2 +2656,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2 +2657,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2 +2658,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2 +2659,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2660,0.4,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2661,0.4,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2662,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1 +2663,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2664,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2665,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2666,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2667,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2668,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2669,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2670,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2671,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2672,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2673,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2674,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2675,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2676,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2677,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2678,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2679,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2680,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2681,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2682,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2683,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2684,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2685,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2686,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2687,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2688,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2689,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2690,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2691,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2692,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2693,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2694,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2695,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2696,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2697,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2698,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2699,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2700,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2701,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2702,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2703,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2704,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2705,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2706,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2707,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2708,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2709,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2710,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2711,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2712,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2713,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2714,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2715,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2716,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2717,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2718,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2719,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2720,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2721,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2722,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2723,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2724,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2725,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2726,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2727,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2728,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2729,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2730,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2731,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2732,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2733,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2734,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2735,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2736,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2737,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1 +2738,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1 +2739,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1 +2740,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2741,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2742,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2743,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2744,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2745,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2746,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2747,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2748,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2749,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2750,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2751,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2752,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0 +2753,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2754,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2755,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2756,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2757,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2758,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2759,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2760,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2761,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2762,0.4,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2763,0.4,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2764,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2765,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1 +2766,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1 +2767,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1 +2768,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1 +2769,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1 +2770,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2771,0.4,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2772,0.4,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2773,0.4,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2774,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2775,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2776,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1 +2777,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2778,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2779,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2780,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2781,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2782,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0 +2783,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2784,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2785,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2786,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2787,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2788,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2789,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2790,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2792,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2793,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2794,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2796,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2797,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2798,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2799,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2800,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2801,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2802,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2803,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2804,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2805,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2806,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2807,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2808,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2809,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2810,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2811,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2812,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0 +2813,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2814,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2815,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2816,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2817,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2818,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2819,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2820,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2821,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2822,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2823,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2824,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2825,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2826,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2827,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2828,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2829,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2830,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2831,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2832,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2833,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2834,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2835,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2836,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1 +2837,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2838,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2839,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1 +2840,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2841,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2842,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2843,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2844,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2845,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2846,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2847,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2848,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2849,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2850,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2851,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2852,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2853,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2854,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2855,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2856,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2857,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2858,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0 +2859,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0 +2860,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1 +2861,0.6,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +2862,0.6,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +2863,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +2864,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +2865,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +2866,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +2867,0.6,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +2868,0.6,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +2869,0.6,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +2870,0.5,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +2871,0.5,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +2872,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2 +2873,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2874,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2875,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2876,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2 +2877,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2 +2878,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2 +2879,0.6,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +2880,0.6,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +2881,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +2882,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +2883,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +2884,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +2885,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +2886,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +2887,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +2888,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2 +2889,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2 +2890,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2891,0.4,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2892,0.4,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2893,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1 +2894,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2895,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2896,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2897,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2898,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2899,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2900,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2901,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2902,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2903,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2904,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2905,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2906,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2907,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2908,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2909,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2910,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2911,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2912,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1 +2913,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1 +2914,0.4,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2915,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2916,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2917,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2 +2918,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +2919,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +2920,0.7,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3 +2921,0.7,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3 +2922,0.7,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3 +2923,0.8,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4 +2924,0.9,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4 +2925,0.9,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4 +2926,0.9,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4 +2927,0.9,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4 +2928,0.9,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4 +2929,0.9,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4 +2930,0.9,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4 +2931,0.9,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4 +2932,0.9,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4 +2933,0.9,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4 +2934,0.9,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4 +2935,1.0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +2936,1.0,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +2937,1.0,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +2938,1.0,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5 +2939,1.0,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5 +2940,1.0,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5 +2941,1.0,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5 +2942,1.0,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +2943,1.0,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +2944,1.0,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +2945,1.0,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +2946,1.0,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +2947,1.0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +2948,0.9,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4 +2949,0.9,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4 +2950,0.8,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4 +2951,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +2952,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +2953,0.7,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3 +2954,0.7,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3 +2955,0.7,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3 +2956,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +2957,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +2958,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +2959,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +2960,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2 +2961,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2 +2962,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2 +2963,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +2964,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +2965,0.5,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +2966,0.6,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +2967,0.6,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +2968,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2 +2969,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2 +2970,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2 +2971,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2972,0.4,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2973,0.4,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2974,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1 +2975,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2976,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2977,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2978,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2979,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2980,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2981,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2982,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2983,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2984,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2985,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2986,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2987,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2988,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2989,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2990,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0 +2991,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0 +2992,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +2993,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1 +2994,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1 +2995,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2996,0.4,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2997,0.4,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2998,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +2999,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +3000,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +3001,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +3002,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +3003,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +3004,0.4,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +3005,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +3006,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +3007,0.4,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +3008,0.4,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +3009,0.4,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +3010,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +3011,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +3012,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +3013,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2 +3014,0.6,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +3015,0.6,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +3016,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +3017,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +3018,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +3019,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +3020,0.7,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3 +3021,0.7,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3 +3022,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +3023,0.6,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +3024,0.6,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +3025,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +3026,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2 +3027,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2 +3028,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2 +3029,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2 +3030,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2 +3031,0.6,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +3032,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +3033,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +3034,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +3035,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +3036,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +3037,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +3038,0.6,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +3039,0.6,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +3040,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +3041,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +3042,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +3043,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2 +3044,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +3045,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +3046,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +3047,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3048,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3049,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3050,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0 +3051,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0 +3052,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3053,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3054,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3055,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3056,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3057,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3058,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3059,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3060,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3061,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3062,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3063,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3064,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3065,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3066,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3067,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3068,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3069,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3070,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3071,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3072,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3073,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3074,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3075,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3076,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3077,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3078,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3079,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3080,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3081,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3082,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3083,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3084,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3085,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3086,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3087,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3088,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3089,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3090,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3091,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1 +3092,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +3093,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +3094,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1 +3095,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3096,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3097,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3098,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3099,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3100,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3101,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3102,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3103,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3104,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3105,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3106,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3107,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0 +3108,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0 +3109,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3110,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3111,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3112,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3113,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3114,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3115,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3116,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3117,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3118,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3119,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3120,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3121,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3122,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3123,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3124,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3125,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3126,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3127,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3128,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3129,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3130,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3131,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3132,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3133,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3134,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1 +3135,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1 +3136,0.4,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +3137,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +3138,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +3139,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2 +3140,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2 +3141,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2 +3142,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +3143,0.6,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +3144,0.6,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +3145,0.6,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +3146,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +3147,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +3148,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +3149,0.7,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3 +3150,0.7,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3 +3151,0.7,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3 +3152,0.7,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3 +3153,0.7,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3 +3154,0.7,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +3155,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +3156,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +3157,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +3158,0.7,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3 +3159,0.7,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3 +3160,0.7,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3 +3161,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +3162,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +3163,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2 +3164,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +3165,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +3166,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +3167,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3168,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3169,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3170,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3171,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3172,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3173,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3174,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3175,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3176,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3177,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3178,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3179,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3180,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3181,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3182,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0 +3183,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0 +3184,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3185,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3186,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3188,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3189,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3190,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3191,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3193,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3194,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3195,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3196,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3197,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3198,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3199,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3200,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3201,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3202,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3203,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3204,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3205,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3206,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3207,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3208,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3209,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3210,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3211,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3212,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3213,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3214,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3215,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3216,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3217,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3218,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3219,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3220,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3221,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3222,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3223,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3224,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3225,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3226,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3228,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3229,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0 +3230,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3231,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3232,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3233,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1 +3234,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1 +3235,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3236,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3237,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3238,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3239,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3240,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3241,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1 +3242,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1 +3243,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1 +3244,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1 +3245,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1 +3246,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1 +3247,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1 +3248,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1 +3249,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1 +3250,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +3251,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +3252,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +3253,0.4,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +3254,0.4,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +3255,0.4,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +3256,0.4,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +3257,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +3258,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +3259,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1 +3260,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3261,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3262,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3263,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3264,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3265,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3266,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3267,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3268,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3269,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3270,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3271,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3272,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3273,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3274,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3275,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3276,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3277,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3278,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3279,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3280,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3281,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3282,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3283,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3284,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3285,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3286,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3287,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3288,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3289,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3290,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3291,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3292,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3293,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0 +3294,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0 +3295,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3296,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3297,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3298,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3299,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3300,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3301,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3302,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3303,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3304,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3305,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3306,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3307,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3308,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3309,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3310,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3311,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3312,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3313,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3314,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3315,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3316,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3317,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3318,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3319,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3320,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3321,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3322,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3323,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3324,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3325,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0 +3326,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3327,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3328,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3329,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3330,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3331,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3332,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0 +3333,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0 +3334,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3335,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3336,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3337,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3338,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3339,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3340,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3341,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3342,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3343,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3344,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3345,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3346,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3347,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3348,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3349,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3350,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3351,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3352,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3353,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3354,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3355,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3356,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0 +3357,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0 +3358,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3359,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3360,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3361,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3362,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3363,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3364,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3365,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3366,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3367,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3368,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3369,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3370,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3371,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3372,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3373,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3374,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3375,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3376,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3377,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1 +3378,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1 +3379,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +3380,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +3381,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +3382,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +3383,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +3384,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +3385,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1 +3386,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3387,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3388,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3389,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3390,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3391,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3392,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3393,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3394,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3395,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3396,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3397,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3398,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1 +3399,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1 +3400,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1 +3401,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +3402,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +3403,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1 +3404,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1 +3405,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1 +3406,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3407,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3408,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3409,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3410,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0 +3411,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0 +3412,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3413,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3414,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3415,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3416,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3417,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3418,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3419,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3420,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3421,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3422,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3423,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3424,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3425,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3426,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3427,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3428,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3429,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3430,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3431,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3432,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3433,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3434,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +3435,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +3436,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2 +3437,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +3438,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +3439,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +3440,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +3441,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +3442,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2 +3443,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +3444,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +3445,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +3446,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3447,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3448,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3449,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3450,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3451,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0 +3452,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3453,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3454,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3455,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3456,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3457,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0 +3458,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3459,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3460,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3461,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0 +3462,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0 +3463,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3464,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3465,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3466,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0 +3467,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0 +3468,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0 +3469,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3470,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3471,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3472,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3473,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +3474,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +3475,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +3476,0.4,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +3477,0.4,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +3478,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1 +3479,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3480,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3481,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3482,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3483,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3484,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3485,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3486,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3487,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3488,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3489,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3490,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3491,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3492,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3493,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3494,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3495,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3496,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3497,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3498,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3499,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3500,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3501,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3502,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3503,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3504,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3505,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3506,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3507,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3508,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3509,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3510,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3511,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3512,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3513,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3514,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3515,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3516,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3517,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3518,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3519,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3520,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3521,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3522,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3523,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3524,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3525,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3526,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3527,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3528,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3529,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3530,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3531,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3532,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3533,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3534,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3535,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3536,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3537,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3538,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1 +3539,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +3540,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +3541,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2 +3542,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2 +3543,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2 +3544,0.4,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +3545,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3546,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3547,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3548,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3549,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3550,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3551,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3552,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3553,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3554,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3555,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3556,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1 +3557,0.4,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +3558,0.4,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +3559,0.4,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +3560,0.4,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +3561,0.4,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +3562,0.4,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +3563,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +3564,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +3565,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1 +3566,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3567,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3568,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1 +3569,0.4,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +3570,0.4,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +3571,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +3572,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2 +3573,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2 +3574,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +3575,0.7,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +3576,0.7,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +3577,0.7,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +3578,0.7,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3 +3579,0.7,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3 +3580,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +3581,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2 +3582,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2 +3583,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +3584,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +3585,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +3586,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2 +3587,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +3588,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +3589,0.7,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3 +3590,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +3591,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +3592,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +3593,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +3594,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +3595,0.7,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +3596,0.7,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3 +3597,0.7,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3 +3598,0.7,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3 +3599,0.7,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3 +3600,0.7,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3 +3601,0.7,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3 +3602,0.7,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3 +3603,0.7,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3 +3604,0.7,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3 +3605,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3 +3606,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3 +3607,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +3608,0.6,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +3609,0.6,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +3610,0.6,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +3611,0.5,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +3612,0.5,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +3613,0.6,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +3614,0.6,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +3615,0.6,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +3616,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2 +3617,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +3618,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +3619,0.4,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +3620,0.4,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +3621,0.4,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +3622,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1 +3623,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3624,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3625,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3626,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3627,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3628,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3629,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3630,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3631,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3632,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3633,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3634,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3635,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3636,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3637,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3638,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3639,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3640,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3641,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3642,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3643,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3644,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3645,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3646,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3647,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3648,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3649,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3650,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3651,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3652,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3653,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3654,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3655,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3656,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3657,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3658,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0 +3659,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3660,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3661,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3662,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3663,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3664,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3665,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +3666,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +3667,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1 +3668,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3669,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3670,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3671,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3672,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3673,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3674,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3675,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3676,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3677,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3678,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3679,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3680,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3681,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3682,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3683,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3684,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3685,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3686,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3687,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3688,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3689,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1 +3690,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1 +3691,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +3692,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +3693,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +3694,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +3695,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1 +3696,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1 +3697,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3698,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3699,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3700,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3701,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3702,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3703,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3704,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3705,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3706,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3707,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3708,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3709,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3710,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3711,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3712,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3713,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0 +3714,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0 +3715,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0 +3716,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3717,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3718,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3719,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3720,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3721,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3722,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3723,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3724,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3725,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3726,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3727,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3728,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3729,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3730,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3731,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3732,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3733,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3734,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3735,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3736,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3737,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3738,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3739,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3740,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3741,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3742,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3743,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3744,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3745,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3746,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0 +3747,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0 +3748,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0 +3749,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3750,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3751,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3752,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3753,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3754,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3755,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3756,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3757,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3758,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3759,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3760,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3761,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3762,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3763,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3764,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3765,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3766,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3767,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3768,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3769,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3770,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1 +3771,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1 +3772,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +3773,0.4,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +3774,0.4,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +3775,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +3776,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1 +3777,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1 +3778,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1 +3779,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1 +3780,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1 +3781,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1 +3782,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3783,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3784,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3785,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3786,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3787,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3788,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3789,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3790,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3792,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3793,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3794,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3796,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3797,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3798,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3799,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3800,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3801,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3802,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3803,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3804,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3805,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3806,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3807,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3808,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3809,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3810,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3811,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3812,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0 +3813,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0 +3814,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0 +3815,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3816,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3817,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3818,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3819,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3820,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0 +3821,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3822,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3823,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3824,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3825,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3826,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3827,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3828,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3829,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3830,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3832,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3833,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3834,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3835,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3836,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3837,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3838,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3839,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3840,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3841,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3842,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3843,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3844,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3845,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3846,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3847,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3848,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3849,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3850,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3851,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3852,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3853,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3854,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3855,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3856,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3857,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3858,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3859,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3860,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3861,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3862,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3863,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3864,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3865,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3866,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3867,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3868,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3869,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3870,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3871,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3872,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3873,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3874,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3875,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3876,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3877,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3878,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +3879,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +3880,0.4,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +3881,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +3882,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +3883,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1 +3884,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3885,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3886,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0 +3887,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3888,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3889,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3890,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3891,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3892,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3893,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3894,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3895,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3896,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1 +3897,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1 +3898,0.4,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +3899,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2 +3900,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2 +3901,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2 +3902,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2 +3903,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2 +3904,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +3905,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +3906,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +3907,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2 +3908,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +3909,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +3910,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +3911,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3912,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3913,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3914,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3915,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3916,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3917,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3918,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3919,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3920,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3921,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3922,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3923,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3924,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3925,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3926,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3927,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3928,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3929,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3930,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3931,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3932,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3933,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3934,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3935,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3936,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3937,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3938,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3939,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3940,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3941,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3942,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3943,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3944,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3945,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3946,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3947,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3948,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3949,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3950,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3951,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +3952,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +3953,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2 +3954,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2 +3955,0.6,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +3956,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +3957,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +3958,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +3959,0.6,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +3960,0.6,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +3961,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +3962,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2 +3963,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2 +3964,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2 +3965,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2 +3966,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2 +3967,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2 +3968,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2 +3969,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2 +3970,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2 +3971,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2 +3972,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2 +3973,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2 +3974,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2 +3975,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2 +3976,0.5,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +3977,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +3978,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +3979,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +3980,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +3981,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +3982,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +3983,0.5,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +3984,0.5,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +3985,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2 +3986,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2 +3987,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2 +3988,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +3989,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +3990,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +3991,0.4,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +3992,0.4,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +3993,0.4,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +3994,0.4,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +3995,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +3996,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +3997,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +3998,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2 +3999,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2 +4000,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +4001,0.6,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +4002,0.6,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +4003,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +4004,0.7,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3 +4005,0.7,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3 +4006,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +4007,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +4008,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +4009,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +4010,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2 +4011,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2 +4012,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2 +4013,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +4014,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +4015,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +4016,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +4017,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +4018,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +4019,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +4020,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +4021,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2 +4022,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +4023,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +4024,0.6,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +4025,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +4026,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +4027,0.6,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +4028,0.6,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +4029,0.6,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +4030,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2 +4031,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +4032,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +4033,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +4034,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +4035,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +4036,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +4037,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +4038,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +4039,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +4040,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +4041,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +4042,0.4,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +4043,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +4044,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +4045,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +4046,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +4047,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +4048,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2 +4049,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +4050,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +4051,0.6,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +4052,0.6,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +4053,0.6,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +4054,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +4055,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +4056,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +4057,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +4058,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +4059,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +4060,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +4061,0.7,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3 +4062,0.7,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3 +4063,0.7,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3 +4064,0.7,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3 +4065,0.7,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3 +4066,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +4067,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +4068,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +4069,0.8,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +4070,0.9,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4 +4071,0.9,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4 +4072,0.9,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4 +4073,0.9,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4 +4074,0.9,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4 +4075,0.9,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4 +4076,0.9,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4 +4077,0.9,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4 +4078,0.9,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4 +4079,0.9,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4 +4080,0.9,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4 +4081,0.9,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4 +4082,0.9,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4 +4083,0.9,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4 +4084,0.8,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4 +4085,0.8,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4 +4086,0.8,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4 +4087,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +4088,0.7,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3 +4089,0.7,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3 +4090,0.7,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3 +4091,0.7,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3 +4092,0.7,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3 +4093,0.7,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3 +4094,0.7,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +4095,0.7,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +4096,0.7,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3 +4097,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +4098,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +4099,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +4100,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +4101,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +4102,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +4103,0.4,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +4104,0.4,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +4105,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1 +4106,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4107,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4108,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4109,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1 +4110,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1 +4111,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1 +4112,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1 +4113,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1 +4114,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1 +4115,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1 +4116,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1 +4117,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4118,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4119,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4120,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4121,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4122,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4123,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4124,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0 +4125,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0 +4126,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4127,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4128,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4129,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4130,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4131,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4132,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4133,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4134,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4135,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4136,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4137,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4138,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4139,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4140,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4141,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4142,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4143,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4144,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4145,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4146,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4147,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4148,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4149,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4150,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4151,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4152,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4153,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4154,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4155,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4156,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4157,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4158,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4159,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4160,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4161,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4162,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0 +4163,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4164,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4165,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4166,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4167,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4168,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4169,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4170,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4171,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4172,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4173,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4174,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4175,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4176,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4177,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4178,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4179,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4180,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4181,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4182,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4183,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4184,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4185,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4186,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4187,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4188,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4189,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4190,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4191,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4192,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0 +4193,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4194,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4195,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4196,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4197,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4198,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4199,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4200,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4201,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4202,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4203,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4204,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4205,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4206,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4207,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4208,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4209,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4210,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4211,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4212,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4213,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4214,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4215,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4216,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4217,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4218,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4219,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4220,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4221,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4222,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4223,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4224,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4225,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4226,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4227,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4228,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4229,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4230,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4231,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4232,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4233,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4234,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4235,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4236,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4237,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4238,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4239,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4240,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4241,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4242,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4243,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4244,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4245,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4246,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4247,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4248,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4249,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4250,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4251,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4252,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4253,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4254,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4255,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4256,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0 +4257,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0 +4258,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4259,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4260,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4261,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4262,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4263,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4264,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4265,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4266,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4267,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4268,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4269,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4270,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4271,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4272,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4273,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4274,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4275,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4276,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4277,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4278,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4279,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4280,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4281,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4282,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4283,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4284,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4285,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4286,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4287,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4288,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4289,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4290,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4291,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0 +4292,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4293,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4294,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4295,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4296,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4297,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4298,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4299,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4300,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4301,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4302,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4303,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4304,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4305,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4306,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0 +4307,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4308,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4309,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4310,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4311,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4312,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4313,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1 +4314,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1 +4315,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4316,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4317,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4318,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4319,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4320,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4321,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0 +4322,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4323,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4324,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4325,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4326,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4327,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4328,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4329,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4330,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4331,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4332,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4334,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4335,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4336,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4337,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4338,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4339,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4340,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4341,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4342,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4343,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4344,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4345,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4346,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4347,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4348,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4349,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4350,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4351,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4352,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4353,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4354,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4355,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0 +4356,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0 +4357,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0 +4358,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0 +4359,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0 +4360,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4361,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4362,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4363,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4364,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4365,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4366,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4367,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4368,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4369,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4370,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4371,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4372,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4373,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4374,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4375,0.4,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +4376,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +4377,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +4378,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +4379,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +4380,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +4381,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1 +4382,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4383,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4384,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4385,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4386,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4387,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4388,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4389,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4390,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4391,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4392,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4393,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4394,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4395,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4396,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4397,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4398,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4399,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4400,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4401,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4402,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4403,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4404,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4405,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4406,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4407,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4408,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4409,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4410,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4411,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4412,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4413,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4414,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4415,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4416,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4417,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4418,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4419,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4420,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4421,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4422,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4423,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4424,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4425,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4426,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4427,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4428,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4429,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4430,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4431,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4432,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +4433,0.4,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +4434,0.4,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +4435,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +4436,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2 +4437,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2 +4438,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2 +4439,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2 +4440,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2 +4441,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2 +4442,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2 +4443,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2 +4444,0.4,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +4445,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4446,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4447,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4448,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4449,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4450,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0 +4451,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4452,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4453,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4454,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4455,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4456,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4457,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4458,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4459,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4460,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0 +4461,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0 +4462,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4463,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4464,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4465,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4466,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4467,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4468,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4469,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4470,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4471,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4472,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4473,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4474,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4475,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4476,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4477,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4478,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4479,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4480,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4481,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0 +4482,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0 +4483,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4484,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4485,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4486,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4487,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4488,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4489,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4490,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4491,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4492,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4493,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1 +4494,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1 +4495,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1 +4496,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1 +4497,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1 +4498,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1 +4499,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1 +4500,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1 +4501,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1 +4502,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1 +4503,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1 +4504,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1 +4505,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4506,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4507,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4508,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4509,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4510,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4511,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4512,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4513,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4514,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4515,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4516,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4517,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4518,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4519,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4520,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4521,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4522,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4523,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0 +4524,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0 +4525,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4526,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4527,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4528,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4529,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4530,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4531,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4532,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4533,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4534,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4535,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4536,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4537,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4538,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4539,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4540,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4541,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4542,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4543,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4544,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4545,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4546,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4547,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4548,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4549,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4550,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4551,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4552,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4553,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4554,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4555,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4556,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4557,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4558,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4559,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4560,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4561,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4562,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4563,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4564,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4565,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4566,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4567,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4568,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4569,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4570,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4571,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4572,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4573,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4574,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4575,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4576,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4578,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4579,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4580,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4581,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4582,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4583,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4584,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4585,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4586,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4587,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4588,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4589,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4590,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4591,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0 +4592,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4593,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4594,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4595,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4596,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4597,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4598,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4599,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4600,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4601,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4602,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4603,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4604,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4605,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4606,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4607,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4608,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4609,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4610,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4611,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4612,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4613,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4614,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4615,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0 +4616,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4617,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4618,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4619,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1 +4620,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1 +4621,0.4,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +4622,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +4623,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +4624,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +4625,0.4,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +4626,0.4,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +4627,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +4628,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +4629,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +4630,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2 +4631,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +4632,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +4633,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +4634,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4635,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4636,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4637,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4638,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4639,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4640,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4641,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4642,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4643,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4644,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4645,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4646,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4647,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4648,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4649,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4650,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4651,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4652,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4653,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4654,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4655,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4656,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4657,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4658,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4659,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4660,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4661,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4662,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4663,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4664,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4665,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4666,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4667,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4668,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4669,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4670,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4671,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4672,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4673,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4674,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4675,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4676,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0 +4677,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0 +4678,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4679,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +4680,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +4681,0.6,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +4682,0.7,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3 +4683,0.7,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3 +4684,0.8,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4 +4685,1.0,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +4686,1.0,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +4687,1.0,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5 +4688,1.1,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5 +4689,1.1,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5 +4690,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5 +4691,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5 +4692,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5 +4693,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5 +4694,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5 +4695,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5 +4696,1.1,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5 +4697,1.0,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5 +4698,1.0,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5 +4699,1.0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +4700,0.8,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4 +4701,0.8,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4 +4702,0.7,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3 +4703,0.6,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +4704,0.6,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +4705,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +4706,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +4707,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +4708,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +4709,0.9,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4 +4710,0.9,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4 +4711,0.9,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4 +4712,0.9,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4 +4713,0.9,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4 +4714,0.9,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4 +4715,0.9,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4 +4716,0.9,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4 +4717,0.9,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4 +4718,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +4719,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +4720,0.7,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +4721,0.7,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3 +4722,0.7,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3 +4723,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +4724,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +4725,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +4726,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2 +4727,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +4728,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +4729,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +4730,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +4731,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +4732,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +4733,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2 +4734,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2 +4735,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +4736,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +4737,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +4738,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2 +4739,0.6,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +4740,0.6,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +4741,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +4742,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2 +4743,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2 +4744,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2 +4745,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2 +4746,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2 +4747,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +4748,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +4749,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +4750,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4751,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4752,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4753,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4754,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4755,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4756,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4757,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4758,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4759,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4760,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4761,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4762,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4763,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4764,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4765,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4766,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4767,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4768,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4769,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4770,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4771,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4772,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4773,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4774,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4775,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4776,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4777,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4778,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4779,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4780,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4781,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4782,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4783,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4784,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0 +4785,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0 +4786,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4787,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4788,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4789,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4790,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4792,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4793,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4794,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4796,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4797,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4798,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4799,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4800,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4801,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4802,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4803,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4804,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4805,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4806,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4807,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4808,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4809,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4810,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4811,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4812,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4813,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4814,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4815,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4816,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4817,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4818,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4819,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4820,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4821,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4822,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4823,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1 +4824,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1 +4825,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +4826,0.4,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +4827,0.4,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +4828,0.4,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +4829,0.4,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +4830,0.4,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +4831,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1 +4832,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4833,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4834,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4835,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4836,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4837,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4838,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4839,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4840,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4841,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4842,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4843,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0 +4844,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4845,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4846,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4847,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4848,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4849,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0 +4850,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4851,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4852,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4853,0.4,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +4854,0.4,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +4855,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1 +4856,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4857,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4858,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4859,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4860,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4861,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4862,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0 +4863,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0 +4864,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4865,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4866,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4867,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4868,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4869,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4870,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4871,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4872,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4873,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4874,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4875,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4876,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4877,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4878,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4879,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4880,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4881,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4882,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4883,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4884,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4885,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4886,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4887,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4888,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4889,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4890,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4891,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4892,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4893,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4894,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4895,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4896,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4897,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4898,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4899,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4900,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4901,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4902,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4903,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4904,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4905,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4906,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0 +4907,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4908,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4909,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4910,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4911,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4912,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4913,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4914,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4915,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4916,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4917,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4918,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4919,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4920,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4921,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4922,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4923,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4924,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4925,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4926,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4927,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4928,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4929,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4930,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4931,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4932,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4933,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4934,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4935,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4936,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0 +4937,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4938,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4939,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4940,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4941,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4942,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4943,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4944,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4945,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4946,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4947,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4948,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0 +4949,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4950,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4951,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4952,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4953,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4954,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4955,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4956,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4957,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4958,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4959,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4960,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1 +4961,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +4962,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +4963,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +4964,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1 +4965,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1 +4966,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4967,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4968,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4969,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4970,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4971,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4972,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4973,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4974,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4975,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4976,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4977,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4978,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4979,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4980,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4981,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4982,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4983,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4984,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4985,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4986,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4987,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4988,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4989,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4990,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4991,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4992,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4993,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4994,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4995,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4996,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4997,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4998,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +4999,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5000,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5001,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5002,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5003,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5004,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5005,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5006,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5007,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5008,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5009,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5010,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5011,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0 +5012,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5013,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5014,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5015,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5016,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5017,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5018,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0 +5019,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0 +5020,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5021,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5022,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5023,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5024,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5025,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5026,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5027,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5028,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5029,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1 +5030,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +5031,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +5032,0.4,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +5033,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +5034,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +5035,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1 +5036,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5037,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5038,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5039,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5040,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5041,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5042,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5043,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5044,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5045,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5046,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5047,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0 +5048,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5049,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5050,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5051,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5052,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5053,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5054,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5055,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5056,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5057,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5058,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5059,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5060,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5061,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5062,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0 +5063,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5064,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5065,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5066,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +5067,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +5068,0.4,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +5069,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +5070,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +5071,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +5072,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2 +5073,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2 +5074,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +5075,0.6,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +5076,0.6,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +5077,0.6,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +5078,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +5079,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +5080,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2 +5081,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +5082,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +5083,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +5084,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1 +5085,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1 +5086,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5087,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5088,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5089,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5090,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5091,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5092,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5093,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5094,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5095,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5096,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5097,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5098,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5099,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5100,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5101,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5102,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5103,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5104,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5105,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5106,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5107,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5108,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5109,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5110,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5111,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5112,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5113,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5114,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5115,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5116,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5117,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5118,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5119,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5120,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5121,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5122,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5123,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5124,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5125,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5126,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5127,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5128,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5129,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5130,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5131,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0 +5132,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5133,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5134,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5135,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5136,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5137,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5138,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5139,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5140,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5141,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5142,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5143,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5144,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5145,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5146,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5147,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5148,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5149,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5150,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5151,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5152,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5153,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5154,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5155,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5156,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5157,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5158,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5159,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5160,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5161,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5162,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1 +5163,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1 +5164,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +5165,0.4,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +5166,0.4,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +5167,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +5168,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +5169,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +5170,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +5171,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2 +5172,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2 +5173,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +5174,0.4,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +5175,0.4,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +5176,0.4,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +5177,0.4,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +5178,0.4,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +5179,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5180,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5181,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5182,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0 +5183,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5184,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5185,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5186,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5187,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5188,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5189,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5190,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5191,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5192,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5193,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5194,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1 +5195,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +5196,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +5197,0.4,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +5198,0.4,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +5199,0.4,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +5200,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1 +5201,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5202,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5203,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5204,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5205,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5206,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5207,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5208,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5209,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5210,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5211,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5212,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5213,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5214,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5215,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5216,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5217,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5218,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5219,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5220,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5221,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5222,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0 +5223,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0 +5224,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0 +5225,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0 +5226,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0 +5227,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0 +5228,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0 +5229,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0 +5230,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5231,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5232,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5233,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +5234,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +5235,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +5236,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2 +5237,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +5238,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +5239,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +5240,0.5,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +5241,0.5,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +5242,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2 +5243,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2 +5244,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2 +5245,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +5246,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +5247,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +5248,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +5249,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5250,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5251,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5252,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0 +5253,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0 +5254,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5255,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5256,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5257,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5258,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5259,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5260,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5261,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5262,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5263,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5264,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5265,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5266,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5267,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5268,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5269,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5270,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1 +5271,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1 +5272,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +5273,0.4,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +5274,0.4,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +5275,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +5276,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5277,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5278,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5279,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5280,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5281,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5282,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5283,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5284,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5285,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5286,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5287,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5288,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5289,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5290,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5291,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5292,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5293,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5294,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5295,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5296,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5297,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0 +5298,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0 +5299,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5300,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5301,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5302,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5303,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5304,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5305,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5306,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +5307,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +5308,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +5309,0.4,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +5310,0.4,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +5311,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +5312,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +5313,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +5314,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2 +5315,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +5316,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +5317,0.7,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3 +5318,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +5319,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +5320,0.7,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3 +5321,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +5322,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +5323,0.5,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +5324,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2 +5325,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2 +5326,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2 +5327,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +5328,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +5329,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +5330,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +5331,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +5332,0.4,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +5333,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +5334,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +5335,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1 +5336,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5337,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5338,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5339,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5340,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5341,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5342,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5343,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5344,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5345,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5346,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5347,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5348,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5349,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5350,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5351,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5352,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5353,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5354,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5355,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5356,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5357,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5358,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5359,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0 +5360,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5361,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5362,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5363,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5364,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5365,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5366,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5367,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5368,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5369,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5370,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5371,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5372,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0 +5373,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0 +5374,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5375,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5376,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5377,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5378,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5379,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5380,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5381,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5382,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5383,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5384,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5385,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5386,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5387,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5388,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5389,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5390,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5391,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5392,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5393,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5394,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5395,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5396,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5397,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5398,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5399,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5400,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5401,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5402,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5403,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5404,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5405,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5406,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5407,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5408,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5409,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5410,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5411,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5412,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5413,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5414,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5415,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5416,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5417,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5418,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5419,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5420,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5421,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5422,0.4,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +5423,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2 +5424,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2 +5425,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2 +5426,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2 +5427,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2 +5428,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +5429,0.6,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +5430,0.6,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +5431,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +5432,0.7,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3 +5433,0.7,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3 +5434,0.7,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +5435,0.8,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +5436,0.8,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +5437,0.9,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4 +5438,0.9,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4 +5439,0.9,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4 +5440,0.9,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4 +5441,1.0,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +5442,1.0,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +5443,1.0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +5444,1.0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +5445,1.0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +5446,1.0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +5447,1.0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +5448,1.0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +5449,1.0,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +5450,1.0,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +5451,1.0,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +5452,1.0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +5453,0.9,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4 +5454,0.9,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4 +5455,0.8,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4 +5456,0.7,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +5457,0.7,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +5458,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +5459,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2 +5460,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2 +5461,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +5462,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +5463,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +5464,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1 +5465,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1 +5466,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1 +5467,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1 +5468,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1 +5469,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1 +5470,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5471,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5472,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5473,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5474,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1 +5475,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1 +5476,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1 +5477,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1 +5478,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1 +5479,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +5480,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +5481,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +5482,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2 +5483,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +5484,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +5485,0.7,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3 +5486,0.7,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3 +5487,0.7,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3 +5488,0.7,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3 +5489,0.7,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3 +5490,0.7,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3 +5491,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +5492,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +5493,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +5494,0.5,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +5495,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2 +5496,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2 +5497,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2 +5498,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +5499,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +5500,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +5501,0.4,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +5502,0.4,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +5503,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +5504,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1 +5505,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1 +5506,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +5507,0.4,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +5508,0.4,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +5509,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +5510,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +5511,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +5512,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +5513,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2 +5514,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2 +5515,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +5516,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +5517,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +5518,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +5519,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +5520,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +5521,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +5522,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2 +5523,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2 +5524,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2 +5525,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2 +5526,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2 +5527,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2 +5528,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +5529,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +5530,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +5531,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +5532,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +5533,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +5534,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +5535,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +5536,0.4,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +5537,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1 +5538,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1 +5539,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5540,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5541,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5542,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5543,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5544,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5545,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5546,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5547,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5548,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +5549,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +5550,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +5551,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +5552,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2 +5553,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2 +5554,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2 +5555,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2 +5556,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2 +5557,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2 +5558,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2 +5559,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2 +5560,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2 +5561,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2 +5562,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2 +5563,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +5564,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +5565,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +5566,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +5567,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3 +5568,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3 +5569,0.7,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3 +5570,0.7,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3 +5571,0.7,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3 +5572,0.7,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3 +5573,0.7,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3 +5574,0.7,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3 +5575,0.7,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3 +5576,0.7,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3 +5577,0.7,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3 +5578,0.7,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3 +5579,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +5580,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +5581,0.7,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +5582,0.7,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3 +5583,0.7,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3 +5584,0.7,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3 +5585,0.7,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3 +5586,0.7,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3 +5587,0.7,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3 +5588,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +5589,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +5590,0.7,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3 +5591,0.7,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3 +5592,0.7,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3 +5593,0.7,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3 +5594,0.7,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3 +5595,0.7,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3 +5596,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +5597,0.6,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +5598,0.6,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +5599,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +5600,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2 +5601,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2 +5602,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2 +5603,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2 +5604,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2 +5605,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2 +5606,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +5607,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +5608,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5609,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5610,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5611,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5612,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5613,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5614,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5615,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5616,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5617,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5618,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5619,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5620,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5621,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1 +5622,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1 +5623,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3 +5624,1.0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +5625,1.0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +5626,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5 +5627,1.1,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5 +5628,1.1,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5 +5629,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5 +5630,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5 +5631,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5 +5632,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5 +5633,1.1,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5 +5634,1.1,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5 +5635,1.0,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5 +5636,1.0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +5637,1.0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +5638,1.0,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +5639,1.0,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5 +5640,1.0,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5 +5641,1.0,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5 +5642,1.0,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5 +5643,1.0,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5 +5644,1.0,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +5645,1.0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +5646,1.0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +5647,0.9,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4 +5648,0.9,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4 +5649,0.9,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4 +5650,0.9,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4 +5651,0.9,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +5652,0.9,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +5653,1.0,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +5654,1.0,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5 +5655,1.0,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5 +5656,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5 +5657,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5 +5658,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5 +5659,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5 +5660,1.1,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5 +5661,1.1,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5 +5662,1.1,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5 +5663,1.0,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5 +5664,1.0,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5 +5665,0.9,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4 +5666,0.8,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +5667,0.8,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +5668,0.7,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +5669,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +5670,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +5671,0.6,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +5672,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2 +5673,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2 +5674,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2 +5675,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +5676,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +5677,0.4,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +5678,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1 +5679,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1 +5680,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5681,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5682,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5683,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0 +5684,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5685,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5686,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5687,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5688,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5689,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5690,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5691,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5692,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5693,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5694,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5695,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +5696,0.6,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +5697,0.6,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +5698,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +5699,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +5700,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +5701,0.6,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +5702,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +5703,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +5704,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2 +5705,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +5706,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +5707,0.4,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +5708,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +5709,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +5710,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1 +5711,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5712,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5713,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1 +5714,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1 +5715,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1 +5716,0.4,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +5717,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +5718,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +5719,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2 +5720,0.6,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +5721,0.6,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +5722,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3 +5723,0.7,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3 +5724,0.7,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3 +5725,0.7,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3 +5726,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +5727,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +5728,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +5729,0.6,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +5730,0.6,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +5731,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +5732,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +5733,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +5734,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2 +5735,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +5736,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +5737,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +5738,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1 +5739,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1 +5740,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5741,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5742,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5743,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1 +5744,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +5745,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +5746,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2 +5747,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +5748,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +5749,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +5750,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3 +5751,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3 +5752,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +5753,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +5754,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +5755,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +5756,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +5757,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +5758,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2 +5759,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2 +5760,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2 +5761,0.6,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +5762,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +5763,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +5764,0.6,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +5765,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +5766,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +5767,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +5768,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +5769,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +5770,0.7,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3 +5771,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +5772,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +5773,0.9,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4 +5774,0.9,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4 +5775,0.9,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4 +5776,1.0,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +5777,1.0,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5 +5778,1.0,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5 +5779,1.0,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5 +5780,1.0,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +5781,1.0,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +5782,1.1,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5 +5783,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5 +5784,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5 +5785,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5 +5786,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5 +5787,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5 +5788,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5 +5789,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5 +5790,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5 +5791,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5 +5792,1.1,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5 +5793,1.1,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5 +5794,1.1,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5 +5795,1.0,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5 +5796,1.0,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5 +5797,1.0,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +5798,1.0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +5799,1.0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +5800,0.9,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4 +5801,0.9,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4 +5802,0.9,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4 +5803,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +5804,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +5805,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +5806,0.6,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +5807,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2 +5808,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2 +5809,0.4,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +5810,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1 +5811,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1 +5812,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5813,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5814,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5815,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5816,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5817,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5818,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5819,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5820,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5821,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5822,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5823,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5824,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5825,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5826,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5827,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5828,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5829,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5830,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0 +5831,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5832,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5833,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5834,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5835,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5836,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5837,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5838,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5839,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5840,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5841,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5842,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5843,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5844,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5845,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5846,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5847,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5848,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5849,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5850,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5851,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5852,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5853,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5854,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5855,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5856,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5857,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5858,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5859,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5860,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5861,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5862,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5863,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5864,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5865,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5866,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5867,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5868,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5869,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5870,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5871,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5872,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0 +5873,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5874,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5875,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5876,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5877,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5878,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5879,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5880,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5881,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5882,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0 +5883,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0 +5884,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5885,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5886,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5887,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5888,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5890,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5891,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5892,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5893,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5894,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5895,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5896,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5897,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5898,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5899,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5900,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5901,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5902,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5903,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5904,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5905,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5906,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5907,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5908,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5909,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5910,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5911,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5912,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5913,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5914,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5915,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5916,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5917,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5918,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5919,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5920,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5921,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5922,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5923,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5924,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5925,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5926,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5927,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5928,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5929,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5930,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5931,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5932,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5933,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5934,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5935,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5936,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5937,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5938,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5939,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5940,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5941,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5942,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5943,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5944,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5945,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5946,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5947,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +5948,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +5949,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +5950,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2 +5951,0.5,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +5952,0.5,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +5953,0.6,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +5954,0.6,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +5955,0.6,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +5956,0.6,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +5957,0.6,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +5958,0.6,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +5959,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +5960,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +5961,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +5962,0.7,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3 +5963,0.7,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3 +5964,0.7,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3 +5965,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +5966,0.8,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +5967,0.8,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +5968,0.9,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4 +5969,0.9,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4 +5970,0.9,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4 +5971,0.9,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4 +5972,1.0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +5973,1.0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +5974,1.0,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5 +5975,1.1,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5 +5976,1.1,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5 +5977,1.1,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5 +5978,1.1,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5 +5979,1.1,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5 +5980,1.0,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5 +5981,0.9,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4 +5982,0.9,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4 +5983,0.9,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4 +5984,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +5985,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +5986,0.7,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3 +5987,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +5988,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +5989,0.6,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +5990,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2 +5991,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2 +5992,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +5993,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5994,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5995,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +5996,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1 +5997,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1 +5998,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1 +5999,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1 +6000,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1 +6001,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1 +6002,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6003,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6004,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6005,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6006,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6007,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2 +6008,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2 +6009,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2 +6010,0.5,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +6011,0.6,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +6012,0.6,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +6013,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +6014,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2 +6015,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2 +6016,0.4,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6017,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6018,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6019,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6020,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6021,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6022,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6023,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6024,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6025,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6026,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6027,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6028,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6029,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6030,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6031,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6032,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6033,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6034,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6035,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6036,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6037,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6038,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6039,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6040,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6041,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6042,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6043,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6044,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6045,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6046,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6047,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6048,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6049,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6050,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6051,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6052,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6053,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6054,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6055,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6056,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6057,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6058,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6059,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1 +6060,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1 +6061,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6062,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +6063,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +6064,0.6,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +6065,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +6066,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +6067,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +6068,0.7,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3 +6069,0.7,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3 +6070,0.7,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3 +6071,0.7,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3 +6072,0.7,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3 +6073,0.7,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3 +6074,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +6075,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +6076,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +6077,0.6,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +6078,0.6,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +6079,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +6080,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +6081,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +6082,0.7,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3 +6083,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +6084,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +6085,0.8,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +6086,0.8,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4 +6087,0.8,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4 +6088,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +6089,0.7,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3 +6090,0.7,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3 +6091,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +6092,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +6093,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +6094,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2 +6095,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6096,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6097,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6098,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6099,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6100,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6101,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6102,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6103,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6104,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6105,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6106,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6107,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6108,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6109,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6110,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6111,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6112,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6113,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6114,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6115,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6116,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1 +6117,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1 +6118,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6119,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6120,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6121,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6122,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6123,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6124,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6125,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6126,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6127,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6128,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6129,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6130,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6131,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6132,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6133,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1 +6134,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6135,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6136,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2 +6137,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +6138,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +6139,0.7,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +6140,0.9,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4 +6141,0.9,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4 +6142,0.9,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4 +6143,1.0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +6144,1.0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +6145,1.0,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5 +6146,1.0,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5 +6147,1.0,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5 +6148,1.0,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5 +6149,1.1,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5 +6150,1.1,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5 +6151,1.0,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5 +6152,1.0,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +6153,1.0,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +6154,1.0,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5 +6155,1.0,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5 +6156,1.0,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5 +6157,1.1,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5 +6158,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5 +6159,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5 +6160,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5 +6161,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5 +6162,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5 +6163,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5 +6164,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5 +6165,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5 +6166,1.1,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5 +6167,1.0,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5 +6168,1.0,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5 +6169,1.0,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5 +6170,1.0,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5 +6171,1.0,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5 +6172,1.0,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +6173,1.0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +6174,1.0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +6175,0.9,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4 +6176,0.9,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4 +6177,0.9,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4 +6178,1.0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +6179,1.0,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5 +6180,1.0,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5 +6181,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5 +6182,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5 +6183,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5 +6184,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5 +6185,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5 +6186,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5 +6187,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5 +6188,1.1,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5 +6189,1.1,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5 +6190,1.0,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5 +6191,0.9,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4 +6192,0.9,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4 +6193,0.8,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +6194,0.7,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3 +6195,0.7,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3 +6196,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +6197,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2 +6198,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2 +6199,0.6,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +6200,0.7,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3 +6201,0.7,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3 +6202,0.7,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3 +6203,0.7,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3 +6204,0.7,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3 +6205,0.7,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3 +6206,0.7,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3 +6207,0.7,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3 +6208,0.6,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +6209,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2 +6210,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2 +6211,0.4,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6212,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1 +6213,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1 +6214,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6215,0.4,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6216,0.4,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6217,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6218,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6219,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6220,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6221,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6222,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6223,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2 +6224,0.6,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +6225,0.6,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +6226,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +6227,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +6228,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +6229,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3 +6230,0.7,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3 +6231,0.7,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3 +6232,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3 +6233,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +6234,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +6235,0.6,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +6236,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2 +6237,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2 +6238,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2 +6239,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6240,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6241,0.4,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6242,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6243,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6244,0.4,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6245,0.4,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6246,0.4,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6247,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6248,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6249,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6250,0.4,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6251,0.4,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6252,0.4,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6253,0.4,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6254,0.4,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6255,0.4,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6256,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6257,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6258,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6259,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6260,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6261,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6262,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1 +6263,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1 +6264,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1 +6265,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1 +6266,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1 +6267,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1 +6268,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1 +6269,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6270,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6271,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6272,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +6273,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +6274,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +6275,0.7,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3 +6276,0.7,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3 +6277,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +6278,0.9,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4 +6279,0.9,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4 +6280,0.9,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4 +6281,0.8,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4 +6282,0.8,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4 +6283,0.8,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4 +6284,0.8,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4 +6285,0.8,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4 +6286,0.8,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +6287,0.8,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +6288,0.8,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +6289,0.8,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +6290,0.8,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +6291,0.8,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +6292,0.9,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4 +6293,0.9,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4 +6294,0.9,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4 +6295,0.9,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4 +6296,0.9,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4 +6297,0.9,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4 +6298,0.9,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4 +6299,0.9,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4 +6300,0.9,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4 +6301,0.9,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4 +6302,0.9,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4 +6303,0.9,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4 +6304,0.8,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4 +6305,0.8,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +6306,0.8,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +6307,0.7,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3 +6308,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +6309,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +6310,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2 +6311,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6312,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6313,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6314,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6315,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6316,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6317,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6318,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6319,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6320,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6321,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6322,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6323,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6324,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6325,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6326,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6327,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6328,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6329,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6330,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6331,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6332,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6334,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6335,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6336,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6337,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6338,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6339,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6340,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6341,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6342,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6343,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6344,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6345,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6346,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6347,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6348,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6349,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0 +6350,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6351,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6352,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0 +6353,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6354,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6355,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6356,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6357,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6358,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6359,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6360,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6361,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6362,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6363,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6364,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6365,0.4,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6366,0.4,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6367,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6368,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6369,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6370,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1 +6371,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6372,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6373,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6374,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6375,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6376,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6377,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6378,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6379,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1 +6380,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6381,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6382,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6383,0.4,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6384,0.4,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6385,0.4,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6386,0.4,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6387,0.4,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6388,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6389,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6390,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6391,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6392,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6393,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6394,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6395,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6396,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6397,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6398,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6399,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6400,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6401,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6402,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6403,0.6,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +6404,0.9,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4 +6405,0.9,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4 +6406,0.9,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4 +6407,1.0,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +6408,1.0,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +6409,0.9,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4 +6410,0.9,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4 +6411,0.9,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4 +6412,0.8,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4 +6413,0.8,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +6414,0.8,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +6415,0.8,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +6416,0.8,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +6417,0.8,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +6418,0.8,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +6419,0.8,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4 +6420,0.8,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4 +6421,0.9,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4 +6422,0.9,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4 +6423,0.9,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4 +6424,0.9,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4 +6425,1.0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +6426,1.0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +6427,0.9,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4 +6428,0.9,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4 +6429,0.9,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4 +6430,0.8,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +6431,0.7,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3 +6432,0.7,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3 +6433,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +6434,0.5,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +6435,0.5,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +6436,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6437,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6438,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6439,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6440,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6441,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6442,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6443,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6444,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6445,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6446,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6447,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6448,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6449,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6450,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6451,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6452,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6453,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6454,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6455,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6456,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6457,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6458,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6459,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6460,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6461,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6462,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6463,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6464,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6465,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6466,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6467,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6468,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6469,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6470,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6471,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6472,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6473,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6474,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6475,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6476,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6477,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6478,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6479,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6480,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6481,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6482,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6483,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6484,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0 +6485,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6486,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6487,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6488,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6489,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6490,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6491,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6492,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6493,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6494,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6495,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6496,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6497,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6498,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6500,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6501,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6502,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6503,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6504,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6505,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6506,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6507,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6508,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6509,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6510,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6511,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0 +6512,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6513,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6514,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6515,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6516,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6517,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6518,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6519,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6520,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6521,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6522,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6523,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6524,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6525,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6526,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1 +6527,0.4,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6528,0.4,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6529,0.4,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6530,0.4,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6531,0.4,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6532,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6533,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6534,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6535,0.4,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6536,0.4,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6537,0.4,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6538,0.4,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6539,0.4,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6540,0.4,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6541,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6542,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1 +6543,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1 +6544,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6545,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6546,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6547,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6548,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6549,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6550,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6551,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6552,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6553,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6554,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0 +6555,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0 +6556,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0 +6557,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6558,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6559,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6560,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6561,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6562,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1 +6563,0.4,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6564,0.4,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6565,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6566,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +6567,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +6568,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +6569,0.7,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3 +6570,0.7,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3 +6571,0.8,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4 +6572,0.9,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4 +6573,0.9,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4 +6574,1.0,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +6575,1.0,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5 +6576,1.0,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5 +6577,1.0,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5 +6578,1.0,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5 +6579,1.0,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5 +6580,0.9,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4 +6581,0.8,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +6582,0.8,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +6583,0.7,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3 +6584,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +6585,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +6586,0.4,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6587,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6588,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6589,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6590,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6591,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6592,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6593,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6594,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6595,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1 +6596,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2 +6597,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2 +6598,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3 +6599,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +6600,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +6601,0.8,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +6602,0.9,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4 +6603,0.9,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4 +6604,0.9,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +6605,1.0,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5 +6606,1.0,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5 +6607,0.9,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4 +6608,0.8,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4 +6609,0.8,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4 +6610,0.9,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4 +6611,0.9,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4 +6612,0.9,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4 +6613,0.9,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4 +6614,1.0,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +6615,1.0,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +6616,1.0,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +6617,1.0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +6618,1.0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +6619,0.9,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4 +6620,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +6621,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +6622,0.6,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +6623,0.4,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6624,0.4,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6625,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6626,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6627,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6628,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6629,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0 +6630,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0 +6631,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6632,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6633,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6634,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6635,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6636,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6637,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6638,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6639,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6640,0.4,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6641,0.4,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6642,0.4,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6643,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6644,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1 +6645,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1 +6646,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1 +6647,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6648,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6649,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6650,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6651,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6652,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6653,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6654,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6655,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6656,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6657,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6658,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1 +6659,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1 +6660,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1 +6661,0.4,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6662,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2 +6663,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2 +6664,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2 +6665,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2 +6666,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2 +6667,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2 +6668,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +6669,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +6670,0.6,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +6671,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +6672,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +6673,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +6674,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +6675,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +6676,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +6677,0.7,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3 +6678,0.7,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3 +6679,0.8,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +6680,0.9,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4 +6681,0.9,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4 +6682,1.0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +6683,1.0,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +6684,1.0,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +6685,0.9,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4 +6686,0.9,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4 +6687,0.9,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4 +6688,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +6689,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +6690,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +6691,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6692,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6693,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6694,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6695,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6696,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6697,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6698,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6699,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6700,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6701,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6702,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6703,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6704,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6705,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6706,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6707,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6708,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6709,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6710,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6711,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6712,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6713,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6714,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6715,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6716,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6717,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6718,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2 +6719,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +6720,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +6721,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2 +6722,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2 +6723,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2 +6724,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6725,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6726,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6727,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6728,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6729,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6730,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6731,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2 +6732,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2 +6733,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2 +6734,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6735,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6736,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6737,0.4,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6738,0.4,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6739,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6740,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2 +6741,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2 +6742,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2 +6743,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6744,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6745,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6746,0.4,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6747,0.4,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6748,0.4,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6749,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6750,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6751,0.4,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6752,0.4,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6753,0.4,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6754,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6755,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6756,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6757,0.4,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6758,0.4,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6759,0.4,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6760,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6761,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6762,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6763,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6764,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2 +6765,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2 +6766,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +6767,0.6,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +6768,0.6,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +6769,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +6770,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2 +6771,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2 +6772,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2 +6773,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2 +6774,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2 +6775,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2 +6776,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2 +6777,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2 +6778,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2 +6779,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2 +6780,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2 +6781,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2 +6782,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6783,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6784,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2 +6785,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2 +6786,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2 +6787,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2 +6788,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2 +6789,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2 +6790,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2 +6791,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2 +6792,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2 +6793,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6794,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6795,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6796,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6797,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6798,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6799,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6800,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6801,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6802,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6803,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6804,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6805,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6806,0.4,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6807,0.4,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6808,0.4,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6809,0.4,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6810,0.4,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6811,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6812,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2 +6813,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2 +6814,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6815,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6816,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6817,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6818,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6819,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6820,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6821,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6822,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6823,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6824,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6825,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6826,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6827,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6828,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6829,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6830,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6831,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6832,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6833,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6834,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6835,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6836,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6837,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6838,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1 +6839,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1 +6840,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1 +6841,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6842,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6843,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6844,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6845,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6846,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6847,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6848,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6849,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6850,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6851,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6852,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6853,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6854,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6855,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6856,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6857,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6858,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6859,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0 +6860,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6861,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6862,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6863,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6864,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6865,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6866,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0 +6867,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0 +6868,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6869,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6870,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6871,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6872,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1 +6873,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1 +6874,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1 +6875,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6876,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6877,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6878,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6879,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6880,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6881,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6882,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6883,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6884,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6885,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6886,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6887,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6888,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6889,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6890,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6891,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6892,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6893,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6894,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6895,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6896,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6897,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6898,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6899,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6900,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6901,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6902,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6903,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6904,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6905,0.4,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6906,0.4,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6907,0.4,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6908,0.4,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6909,0.4,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6910,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6911,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6912,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6913,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2 +6914,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2 +6915,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2 +6916,0.6,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +6917,0.7,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3 +6918,0.7,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3 +6919,0.7,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3 +6920,0.7,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3 +6921,0.7,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3 +6922,0.7,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3 +6923,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +6924,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +6925,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +6926,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +6927,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +6928,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +6929,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +6930,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +6931,0.7,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +6932,0.7,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3 +6933,0.7,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3 +6934,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +6935,0.6,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +6936,0.6,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +6937,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2 +6938,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6939,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6940,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6941,0.4,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6942,0.4,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6943,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6944,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1 +6945,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1 +6946,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6947,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6948,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6949,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6950,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6951,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6952,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6953,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6954,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6955,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6956,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6957,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6958,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6959,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6960,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6961,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6962,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6963,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6964,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6965,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6966,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6967,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +6968,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6969,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +6970,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2 +6971,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +6972,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +6973,0.7,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3 +6974,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +6975,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +6976,0.7,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3 +6977,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3 +6978,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3 +6979,0.7,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3 +6980,0.7,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3 +6981,0.7,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3 +6982,0.7,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3 +6983,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +6984,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +6985,0.8,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4 +6986,0.9,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4 +6987,0.9,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4 +6988,0.8,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4 +6989,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +6990,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +6991,0.7,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3 +6992,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +6993,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +6994,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +6995,0.6,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +6996,0.6,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +6997,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3 +6998,0.7,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3 +6999,0.7,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3 +7000,0.7,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3 +7001,0.7,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3 +7002,0.7,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3 +7003,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +7004,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +7005,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +7006,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2 +7007,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2 +7008,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2 +7009,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +7010,0.7,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3 +7011,0.7,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3 +7012,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +7013,0.8,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4 +7014,0.8,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4 +7015,0.9,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4 +7016,0.9,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4 +7017,0.9,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4 +7018,0.9,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4 +7019,0.9,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4 +7020,0.9,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4 +7021,0.9,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4 +7022,0.9,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4 +7023,0.9,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4 +7024,0.9,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4 +7025,0.8,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4 +7026,0.8,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4 +7027,0.8,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +7028,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +7029,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +7030,0.7,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3 +7031,0.7,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3 +7032,0.7,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3 +7033,0.7,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3 +7034,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +7035,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +7036,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +7037,0.8,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +7038,0.8,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +7039,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +7040,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +7041,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +7042,0.8,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +7043,0.9,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4 +7044,0.9,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4 +7045,1.0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +7046,1.1,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5 +7047,1.1,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5 +7048,1.0,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5 +7049,1.0,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5 +7050,1.0,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5 +7051,1.0,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5 +7052,1.0,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +7053,1.0,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +7054,1.0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +7055,0.9,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +7056,0.9,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +7057,0.9,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4 +7058,0.9,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4 +7059,0.9,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4 +7060,0.9,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4 +7061,0.8,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4 +7062,0.8,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4 +7063,0.8,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +7064,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +7065,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +7066,0.7,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3 +7067,0.6,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +7068,0.6,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +7069,0.6,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +7070,0.6,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +7071,0.6,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +7072,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +7073,0.7,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3 +7074,0.7,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3 +7075,0.7,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3 +7076,0.7,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3 +7077,0.7,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3 +7078,0.7,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3 +7079,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +7080,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +7081,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +7082,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +7083,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +7084,0.9,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4 +7085,1.0,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +7086,1.0,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +7087,1.0,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +7088,1.0,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5 +7089,1.0,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5 +7090,1.1,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5 +7091,1.1,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5 +7092,1.1,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5 +7093,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5 +7094,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5 +7095,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5 +7096,1.0,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5 +7097,0.9,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4 +7098,0.9,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4 +7099,0.9,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4 +7100,0.9,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4 +7101,0.9,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4 +7102,0.8,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4 +7103,0.8,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +7104,0.8,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +7105,0.8,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4 +7106,0.8,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4 +7107,0.8,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4 +7108,0.9,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +7109,1.0,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5 +7110,1.0,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5 +7111,1.0,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +7112,0.9,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4 +7113,0.9,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4 +7114,0.8,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4 +7115,0.7,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +7116,0.7,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +7117,0.7,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3 +7118,0.7,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3 +7119,0.7,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3 +7120,0.7,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3 +7121,0.7,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3 +7122,0.7,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3 +7123,0.7,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3 +7124,0.7,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +7125,0.7,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +7126,0.7,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3 +7127,0.7,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3 +7128,0.7,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3 +7129,0.7,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3 +7130,0.7,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3 +7131,0.7,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3 +7132,0.7,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3 +7133,0.7,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3 +7134,0.7,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3 +7135,0.7,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3 +7136,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +7137,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +7138,0.6,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +7139,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2 +7140,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2 +7141,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +7142,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +7143,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +7144,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +7145,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1 +7146,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1 +7147,0.4,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +7148,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +7149,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +7150,0.4,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +7151,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1 +7152,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1 +7153,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +7154,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +7155,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +7156,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +7157,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1 +7158,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1 +7159,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +7160,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +7161,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +7162,0.4,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +7163,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +7164,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +7165,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2 +7166,0.6,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +7167,0.6,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +7168,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +7169,0.9,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4 +7170,0.9,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4 +7171,1.0,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +7172,1.0,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5 +7173,1.0,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5 +7174,1.1,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5 +7175,1.1,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5 +7176,1.1,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5 +7177,1.1,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5 +7178,1.1,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5 +7179,1.1,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5 +7180,1.0,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5 +7181,0.9,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4 +7182,0.9,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4 +7183,1.0,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +7184,1.0,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5 +7185,1.0,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5 +7186,1.0,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5 +7187,1.0,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5 +7188,1.0,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5 +7189,1.1,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5 +7190,1.1,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5 +7191,1.1,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5 +7192,1.0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +7193,0.9,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4 +7194,0.9,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4 +7195,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +7196,0.7,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3 +7197,0.7,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3 +7198,0.7,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +7199,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +7200,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +7201,0.7,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3 +7202,0.7,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3 +7203,0.7,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3 +7204,0.7,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +7205,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +7206,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +7207,0.9,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4 +7208,0.9,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4 +7209,0.9,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4 +7210,0.9,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4 +7211,0.9,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4 +7212,0.9,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4 +7213,0.9,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4 +7214,0.9,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4 +7215,0.9,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4 +7216,0.8,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4 +7217,0.7,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +7218,0.7,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +7219,0.7,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +7220,0.7,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +7221,0.7,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +7222,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +7223,0.8,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4 +7224,0.8,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4 +7225,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +7226,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +7227,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +7228,0.8,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +7229,0.8,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +7230,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +7231,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +7232,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +7233,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +7234,0.7,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +7235,0.7,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +7236,0.7,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +7237,0.7,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3 +7238,0.7,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3 +7239,0.8,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +7240,0.9,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4 +7241,0.9,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4 +7242,0.9,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4 +7243,1.0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +7244,1.0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +7245,1.0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +7246,1.0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +7247,1.0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +7248,0.9,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +7249,0.9,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4 +7250,0.9,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4 +7251,0.9,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4 +7252,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +7253,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +7254,0.7,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3 +7255,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +7256,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +7257,0.6,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +7258,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2 +7259,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2 +7260,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +7261,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +7262,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +7263,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +7264,0.4,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +7265,0.4,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +7266,0.4,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +7267,0.4,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +7268,0.4,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +7269,0.4,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +7270,0.4,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +7271,0.4,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +7272,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1 +7273,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +7274,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +7275,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +7276,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +7277,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +7278,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +7279,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +7280,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +7281,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +7282,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +7283,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +7284,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +7285,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +7286,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +7287,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +7288,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +7289,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +7290,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +7291,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +7292,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +7293,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7294,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7295,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7296,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7297,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7298,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7299,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7300,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7301,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7302,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7303,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7304,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7305,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7306,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7307,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7308,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7309,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7310,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7311,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7312,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7313,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7314,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7315,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7316,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7317,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7318,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7319,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7320,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0 +7321,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +7322,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +7323,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2 +7324,0.7,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3 +7325,0.7,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3 +7326,0.8,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +7327,0.9,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +7328,0.9,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +7329,1.0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +7330,1.0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +7331,1.0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +7332,0.9,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4 +7333,0.9,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4 +7334,0.9,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4 +7335,0.8,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4 +7336,0.8,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +7337,0.8,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +7338,0.9,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4 +7339,0.9,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4 +7340,0.9,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4 +7341,1.0,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +7342,1.1,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5 +7343,1.1,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5 +7344,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5 +7345,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5 +7346,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5 +7347,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5 +7348,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5 +7349,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5 +7350,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5 +7351,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5 +7352,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5 +7353,1.0,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5 +7354,0.9,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4 +7355,0.9,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4 +7356,0.8,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +7357,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +7358,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +7359,0.7,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3 +7360,0.7,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3 +7361,0.7,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3 +7362,0.7,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3 +7363,0.7,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3 +7364,0.7,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3 +7365,0.7,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3 +7366,0.7,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3 +7367,0.7,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3 +7368,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +7369,0.8,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4 +7370,0.8,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4 +7371,0.9,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4 +7372,1.0,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +7373,1.0,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +7374,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5 +7375,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5 +7376,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5 +7377,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5 +7378,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5 +7379,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5 +7380,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5 +7381,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5 +7382,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5 +7383,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5 +7384,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5 +7385,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5 +7386,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5 +7387,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5 +7388,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5 +7389,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5 +7390,1.1,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5 +7391,1.1,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5 +7392,1.1,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5 +7393,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5 +7394,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5 +7395,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5 +7396,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5 +7397,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5 +7398,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5 +7399,1.1,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5 +7400,1.1,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5 +7401,1.0,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +7402,0.9,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4 +7403,0.9,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4 +7404,0.8,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +7405,0.7,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3 +7406,0.7,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3 +7407,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +7408,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2 +7409,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2 +7410,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2 +7411,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2 +7412,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2 +7413,0.5,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +7414,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +7415,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +7416,0.6,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +7417,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2 +7418,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2 +7419,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2 +7420,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2 +7421,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2 +7422,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2 +7423,0.5,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +7424,0.5,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +7425,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +7426,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2 +7427,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2 +7428,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +7429,0.4,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +7430,0.4,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +7431,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +7432,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0 +7433,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0 +7434,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7435,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7436,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7437,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7438,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7439,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7440,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7441,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7442,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7443,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7444,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7445,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7446,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +7447,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +7448,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +7449,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +7450,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1 +7451,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1 +7452,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1 +7453,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1 +7454,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1 +7455,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +7456,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +7457,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +7458,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +7459,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +7460,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +7461,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +7462,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +7463,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +7464,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1 +7465,0.4,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +7466,0.4,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +7467,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +7468,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +7469,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +7470,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +7471,0.7,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3 +7472,0.7,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3 +7473,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +7474,0.8,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +7475,0.8,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +7476,0.9,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4 +7477,0.9,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4 +7478,0.9,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4 +7479,1.0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +7480,1.0,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +7481,1.0,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +7482,1.0,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5 +7483,1.1,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5 +7484,1.1,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5 +7485,1.0,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5 +7486,1.0,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5 +7487,1.0,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5 +7488,1.0,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +7489,1.0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +7490,1.0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +7491,0.9,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4 +7492,0.8,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +7493,0.8,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +7494,0.8,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +7495,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +7496,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +7497,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +7498,0.7,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3 +7499,0.7,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3 +7500,0.7,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3 +7501,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +7502,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +7503,0.6,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +7504,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +7505,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +7506,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +7507,0.5,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +7508,0.5,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +7509,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2 +7510,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2 +7511,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2 +7512,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2 +7513,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2 +7514,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2 +7515,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2 +7516,0.6,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +7517,0.6,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +7518,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +7519,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +7520,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +7521,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2 +7522,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2 +7523,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2 +7524,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2 +7525,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2 +7526,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2 +7527,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +7528,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +7529,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +7530,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +7531,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +7532,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +7533,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1 +7534,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1 +7535,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1 +7536,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +7537,0.4,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +7538,0.4,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +7539,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2 +7540,0.6,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +7541,0.6,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +7542,0.7,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +7543,0.9,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4 +7544,0.9,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4 +7545,1.1,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5 +7546,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5 +7547,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5 +7548,1.0,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5 +7549,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +7550,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +7551,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +7552,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +7553,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +7554,0.9,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4 +7555,1.0,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +7556,1.0,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +7557,1.0,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5 +7558,1.1,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5 +7559,1.1,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5 +7560,0.9,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4 +7561,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +7562,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +7563,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +7564,0.6,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +7565,0.6,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +7566,0.6,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +7567,0.6,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +7568,0.6,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +7569,0.7,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3 +7570,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +7571,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +7572,0.9,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4 +7573,1.0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +7574,1.0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +7575,1.1,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5 +7576,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5 +7577,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5 +7578,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5 +7579,1.1,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5 +7580,1.1,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5 +7581,1.0,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5 +7582,1.0,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +7583,1.0,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +7584,1.0,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +7585,1.0,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +7586,1.0,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +7587,1.0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +7588,0.9,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4 +7589,0.9,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4 +7590,0.9,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4 +7591,0.9,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4 +7592,0.9,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4 +7593,0.9,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4 +7594,0.9,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4 +7595,0.9,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4 +7596,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +7597,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +7598,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +7599,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +7600,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2 +7601,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2 +7602,0.4,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +7603,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +7604,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +7605,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +7606,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7607,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7608,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7609,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7610,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7611,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7612,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1 +7613,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1 +7614,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1 +7615,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +7616,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +7617,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +7618,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +7619,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +7620,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +7621,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +7622,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +7623,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +7624,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7625,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7626,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7627,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0 +7628,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0 +7629,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +7630,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1 +7631,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1 +7632,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +7633,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2 +7634,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2 +7635,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2 +7636,0.6,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +7637,0.6,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +7638,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2 +7639,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +7640,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +7641,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +7642,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +7643,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +7644,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +7645,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +7646,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +7647,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7648,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7649,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7650,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7651,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7652,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7653,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7654,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7655,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7656,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7657,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7658,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7659,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7660,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7661,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7662,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7663,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7664,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7665,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7667,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7668,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7669,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7670,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7671,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7672,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7673,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7674,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7675,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7676,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7677,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0 +7678,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +7679,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +7680,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +7681,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +7682,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +7683,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +7684,0.4,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +7685,0.4,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +7686,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +7687,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2 +7688,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2 +7689,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +7690,0.6,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +7691,0.6,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +7692,0.6,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +7693,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +7694,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +7695,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2 +7696,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2 +7697,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2 +7698,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2 +7699,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2 +7700,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2 +7701,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +7702,0.4,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +7703,0.4,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +7704,0.4,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +7705,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +7706,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +7707,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1 +7708,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +7709,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +7710,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +7711,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +7712,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +7713,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +7714,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +7715,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +7716,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +7717,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +7718,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +7719,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +7720,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7721,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7722,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7723,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7724,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7725,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0 +7726,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +7727,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +7728,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +7729,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +7730,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +7731,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +7732,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7733,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7734,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7735,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0 +7736,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0 +7737,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0 +7738,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0 +7739,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0 +7740,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7741,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7742,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7743,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7744,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7745,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7746,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7747,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7748,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7749,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7750,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7751,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7752,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7753,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7754,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7755,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7756,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7757,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7758,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7759,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7760,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7761,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7762,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7763,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7764,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7765,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7766,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7767,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7768,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7769,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7770,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7771,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7772,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7773,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7776,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7777,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7778,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7779,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7780,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7781,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7782,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0 +7783,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +7784,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +7785,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +7786,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +7787,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +7788,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1 +7789,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +7790,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +7791,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +7792,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2 +7793,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2 +7794,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2 +7795,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +7796,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +7797,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2 +7798,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +7799,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +7800,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +7801,0.4,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +7802,0.4,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +7803,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +7804,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +7805,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +7806,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +7807,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +7808,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +7809,0.4,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +7810,0.4,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +7811,0.4,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +7812,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +7813,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +7814,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +7815,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +7816,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +7817,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +7818,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +7819,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +7820,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +7821,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +7822,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2 +7823,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2 +7824,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +7825,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +7826,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +7827,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2 +7828,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +7829,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +7830,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2 +7831,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2 +7832,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2 +7833,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2 +7834,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2 +7835,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2 +7836,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +7837,0.4,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +7838,0.4,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +7839,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +7840,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +7841,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +7842,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +7843,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +7844,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +7845,0.4,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +7846,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +7847,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +7848,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +7849,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +7850,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +7851,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +7852,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +7853,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +7854,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +7855,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +7856,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +7857,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0 +7858,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7859,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7860,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7861,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7862,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7863,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7864,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0 +7865,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0 +7866,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0 +7867,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0 +7868,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0 +7869,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0 +7870,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7871,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7872,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7873,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7874,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7875,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7876,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7877,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7878,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7879,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7880,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7881,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7882,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7883,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7884,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7885,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7886,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7887,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +7888,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +7889,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +7890,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +7891,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1 +7892,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1 +7893,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +7894,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +7895,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +7896,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +7897,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +7898,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +7899,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7900,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7901,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7902,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7903,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7904,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7905,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7906,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7907,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7908,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7909,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7910,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7911,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7912,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7913,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7914,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +7915,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0 +7916,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0 +7917,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +7918,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +7919,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +7920,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +7921,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +7922,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +7923,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +7924,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +7925,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +7926,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +7927,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +7928,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +7929,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1 +7930,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +7931,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +7932,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +7933,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +7934,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +7935,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +7936,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +7937,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +7938,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +7939,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +7940,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +7941,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +7942,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1 +7943,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1 +7944,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +7945,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +7946,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +7947,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +7948,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +7949,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +7950,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +7951,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +7952,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +7953,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1 +7954,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1 +7955,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1 +7956,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1 +7957,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +7958,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +7959,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +7960,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +7961,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +7962,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +7963,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2 +7964,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2 +7965,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2 +7966,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +7967,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +7968,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +7969,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +7970,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +7971,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +7972,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2 +7973,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2 +7974,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2 +7975,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2 +7976,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2 +7977,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +7978,0.4,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +7979,0.4,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +7980,0.4,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +7981,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +7982,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +7983,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +7984,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2 +7985,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2 +7986,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +7987,0.7,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3 +7988,0.7,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3 +7989,0.7,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3 +7990,0.7,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3 +7991,0.7,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3 +7992,0.7,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3 +7993,0.7,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +7994,0.7,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +7995,0.7,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +7996,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +7997,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +7998,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +7999,0.8,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +8000,0.8,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +8001,0.8,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4 +8002,0.9,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4 +8003,0.9,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4 +8004,0.8,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4 +8005,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +8006,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +8007,0.8,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +8008,0.8,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4 +8009,0.8,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4 +8010,0.9,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4 +8011,0.9,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4 +8012,0.9,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4 +8013,0.9,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +8014,1.0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +8015,1.0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +8016,1.0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +8017,1.0,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +8018,1.0,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +8019,1.0,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +8020,1.0,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5 +8021,1.0,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5 +8022,1.1,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5 +8023,1.1,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5 +8024,1.1,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5 +8025,1.1,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5 +8026,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5 +8027,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5 +8028,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5 +8029,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5 +8030,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5 +8031,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5 +8032,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5 +8033,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5 +8034,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5 +8035,1.1,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5 +8036,1.1,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5 +8037,1.0,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5 +8038,1.0,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +8039,1.0,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +8040,1.0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +8041,0.9,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4 +8042,0.9,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4 +8043,0.9,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4 +8044,0.8,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4 +8045,0.8,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4 +8046,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +8047,0.7,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3 +8048,0.7,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3 +8049,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +8050,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2 +8051,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2 +8052,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2 +8053,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +8054,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +8055,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +8056,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +8057,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +8058,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +8059,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +8060,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +8061,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +8062,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8063,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8064,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8065,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8066,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8067,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8068,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8070,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8071,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8072,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8073,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8074,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8075,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8076,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8077,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8078,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8079,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8080,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +8081,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +8082,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +8083,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1 +8084,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1 +8085,0.4,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +8086,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +8087,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +8088,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +8089,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +8090,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +8091,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +8092,0.9,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4 +8093,0.9,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4 +8094,1.0,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +8095,1.1,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5 +8096,1.1,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5 +8097,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5 +8098,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5 +8099,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5 +8100,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5 +8101,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5 +8102,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5 +8103,1.1,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5 +8104,1.1,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5 +8105,1.1,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5 +8106,1.0,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +8107,0.9,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4 +8108,0.9,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4 +8109,0.9,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4 +8110,0.9,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4 +8111,0.9,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4 +8112,0.8,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4 +8113,0.8,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +8114,0.8,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +8115,0.7,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3 +8116,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +8117,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +8118,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2 +8119,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +8120,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +8121,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +8122,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +8123,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +8124,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +8125,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +8126,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +8127,0.4,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +8128,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +8129,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +8130,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1 +8131,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +8132,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +8133,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +8134,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +8135,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +8136,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8137,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8138,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8139,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8140,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8141,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8142,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8143,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8144,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8145,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8146,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8147,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8148,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8149,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8150,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8151,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8152,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8153,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8154,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8155,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8156,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8157,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8158,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8159,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8160,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8161,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8162,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8163,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8164,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8165,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8166,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8167,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8168,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8169,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8170,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8171,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8172,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8173,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8174,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8175,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8176,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8177,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8178,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8179,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +8180,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +8181,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +8182,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +8183,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +8184,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +8185,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +8186,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +8187,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +8188,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +8189,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +8190,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +8191,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +8192,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +8193,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +8194,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +8195,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +8196,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +8197,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +8198,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +8199,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +8200,0.4,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +8201,0.4,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +8202,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +8203,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +8204,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +8205,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +8206,0.7,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3 +8207,0.7,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3 +8208,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +8209,0.9,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4 +8210,0.9,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4 +8211,0.9,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4 +8212,1.0,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +8213,1.0,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +8214,1.0,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5 +8215,1.1,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5 +8216,1.1,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5 +8217,1.1,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5 +8218,1.1,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5 +8219,1.1,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5 +8220,1.1,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5 +8221,1.0,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5 +8222,1.0,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5 +8223,1.0,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5 +8224,1.0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +8225,1.0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +8226,1.0,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +8227,1.0,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +8228,1.0,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +8229,1.0,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +8230,1.0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +8231,1.0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +8232,0.9,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4 +8233,0.7,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3 +8234,0.7,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3 +8235,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +8236,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +8237,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +8238,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +8239,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +8240,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +8241,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +8242,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +8243,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +8244,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +8245,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +8246,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +8247,0.7,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3 +8248,0.7,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3 +8249,0.7,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3 +8250,0.8,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4 +8251,0.9,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4 +8252,0.9,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4 +8253,1.0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +8254,1.0,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5 +8255,1.0,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5 +8256,1.0,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5 +8257,1.0,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5 +8258,1.0,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5 +8259,1.0,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +8260,1.0,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +8261,1.0,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +8262,1.0,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +8263,1.0,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +8264,1.0,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +8265,1.0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +8266,0.9,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +8267,0.9,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +8268,0.9,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4 +8269,0.9,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4 +8270,0.9,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4 +8271,0.9,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4 +8272,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +8273,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +8274,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +8275,0.7,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +8276,0.7,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +8277,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +8278,0.8,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +8279,0.8,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +8280,0.8,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4 +8281,0.9,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4 +8282,0.9,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4 +8283,0.9,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4 +8284,1.0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +8285,1.0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +8286,0.9,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4 +8287,0.9,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4 +8288,0.9,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4 +8289,0.8,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +8290,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +8291,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +8292,0.7,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3 +8293,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +8294,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +8295,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +8296,0.6,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +8297,0.6,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +8298,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +8299,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2 +8300,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2 +8301,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +8302,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +8303,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +8304,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +8305,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +8306,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +8307,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8308,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8309,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8310,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8311,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8312,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8313,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8314,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8315,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8316,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8317,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8318,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8319,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0 +8320,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +8321,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +8322,0.4,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +8323,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2 +8324,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2 +8325,0.6,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +8326,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +8327,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +8328,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +8329,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +8330,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +8331,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +8332,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +8333,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +8334,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +8335,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +8336,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +8337,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +8338,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +8339,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +8340,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1 +8341,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +8342,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +8343,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +8344,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +8345,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +8346,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1 +8347,0.4,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +8348,0.4,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +8349,0.4,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +8350,0.4,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +8351,0.4,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +8352,0.4,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +8353,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +8354,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +8355,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2 +8356,0.6,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +8357,0.6,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +8358,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +8359,0.7,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3 +8360,0.7,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3 +8361,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +8362,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +8363,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +8364,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +8365,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +8366,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +8367,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +8368,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +8369,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +8370,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1 +8371,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +8372,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +8373,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +8374,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8375,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8376,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8377,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +8378,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +8379,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +8380,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +8381,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +8382,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +8383,0.9,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4 +8384,0.9,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4 +8385,1.0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +8386,1.0,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5 +8387,1.0,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5 +8388,1.0,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5 +8389,1.0,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +8390,1.0,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +8391,0.9,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4 +8392,0.9,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4 +8393,0.9,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4 +8394,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +8395,0.7,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3 +8396,0.7,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3 +8397,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +8398,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2 +8399,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2 +8400,0.6,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +8401,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +8402,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +8403,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2 +8404,0.4,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +8405,0.4,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +8406,0.4,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +8407,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +8408,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +8409,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +8410,0.4,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +8411,0.4,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +8412,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +8413,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1 +8414,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1 +8415,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +8416,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0 +8417,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0 +8418,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8419,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8420,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8421,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8422,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8423,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8424,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8425,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8426,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8427,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8428,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8429,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8430,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8431,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8432,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8433,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8434,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0 +8435,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0 +8436,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +8437,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +8438,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +8439,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +8440,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1 +8441,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1 +8442,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +8443,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2 +8444,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2 +8445,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2 +8446,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2 +8447,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2 +8448,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +8449,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +8450,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +8451,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +8452,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +8453,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +8454,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +8455,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +8456,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +8457,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +8458,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +8459,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +8460,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +8461,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +8462,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +8463,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +8464,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2 +8465,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2 +8466,0.6,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +8467,0.7,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3 +8468,0.7,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3 +8469,0.6,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +8470,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +8471,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +8472,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1 +8473,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +8474,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +8475,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0 +8476,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8477,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8478,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8479,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8480,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8481,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8482,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0 +8483,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0 +8484,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +8485,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +8486,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +8487,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +8488,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +8489,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +8490,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +8491,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +8492,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +8493,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +8494,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +8495,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +8496,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +8497,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +8498,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +8499,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +8500,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0 +8501,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0 +8502,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8503,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8504,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8505,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +8506,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +8507,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +8508,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +8509,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +8510,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +8511,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +8512,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +8513,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +8514,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +8515,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1 +8516,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1 +8517,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1 +8518,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1 +8519,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1 +8520,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +8521,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +8522,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +8523,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +8524,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1 +8525,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1 +8526,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +8527,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +8528,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +8529,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +8530,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1 +8531,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1 +8532,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1 +8533,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +8534,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +8535,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +8536,0.4,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +8537,0.4,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +8538,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +8539,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +8540,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +8541,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +8542,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3 +8543,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3 +8544,0.7,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3 +8545,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +8546,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +8547,0.8,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +8548,0.8,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4 +8549,0.8,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4 +8550,0.9,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4 +8551,1.0,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5 +8552,1.0,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5 +8553,1.0,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5 +8554,1.0,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5 +8555,1.0,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5 +8556,1.0,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5 +8557,1.0,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5 +8558,1.0,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5 +8559,1.1,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5 +8560,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5 +8561,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5 +8562,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5 +8563,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5 +8564,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5 +8565,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5 +8566,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5 +8567,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5 +8568,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5 +8569,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5 +8570,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5 +8571,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5 +8572,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5 +8573,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5 +8574,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5 +8575,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5 +8576,1.1,0.8,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5 +8577,1.1,0.7,0.7,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5 +8578,1.1,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5 +8579,1.1,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5 +8580,1.0,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5 +8581,1.0,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +8582,1.0,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +8583,1.0,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +8584,1.0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +8585,1.0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +8586,1.0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +8587,1.0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +8588,1.0,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5 +8589,0.9,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4 +8590,0.8,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4 +8591,0.8,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4 +8592,0.8,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4 +8593,0.7,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3 +8594,0.7,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3 +8595,0.7,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3 +8596,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +8597,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 +8598,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2 +8599,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +8600,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +8601,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +8602,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +8603,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +8604,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +8605,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +8606,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +8607,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8608,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8609,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8610,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8611,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +8612,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +8613,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +8614,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +8615,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +8616,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +8617,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +8618,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +8619,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1 +8620,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +8621,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +8622,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +8623,0.4,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +8624,0.4,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +8625,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1 +8626,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +8627,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +8628,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +8629,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +8630,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +8631,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +8632,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +8633,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +8634,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1 +8635,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1 +8636,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1 +8637,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +8638,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +8639,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +8640,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +8641,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +8642,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +8643,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1 +8644,0.4,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +8645,0.4,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +8646,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +8647,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2 +8648,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2 +8649,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2 +8650,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2 +8651,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2 +8652,0.5,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2 +8653,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +8654,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +8655,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +8656,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +8657,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +8658,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +8659,0.4,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +8660,0.4,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +8661,0.4,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +8662,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +8663,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +8664,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1 +8665,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +8666,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +8667,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1 +8668,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1 +8669,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1 +8670,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +8671,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +8672,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +8673,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +8674,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +8675,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +8676,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +8677,0.4,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +8678,0.4,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +8679,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +8680,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +8681,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +8682,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +8683,0.4,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +8684,0.4,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +8685,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +8686,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +8687,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +8688,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1 +8689,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +8690,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +8691,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +8692,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +8693,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +8694,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +8695,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +8696,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +8697,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +8698,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +8699,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +8700,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +8701,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +8702,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +8703,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8704,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8705,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8706,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8707,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8708,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8709,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8710,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8711,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8712,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8713,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8714,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8715,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8716,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8717,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8718,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8719,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8720,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8721,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8722,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8723,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8724,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8725,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8726,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8727,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8728,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8729,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8730,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8731,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8732,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8733,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8734,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8735,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8736,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8737,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8738,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8739,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8740,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8741,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8742,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8743,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8744,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8745,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8746,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8747,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8748,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8749,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8750,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8751,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8752,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8753,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8754,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +8755,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +8756,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +8757,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1 +8758,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +8759,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 +8760,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2 diff --git a/emlab-generation/src/main/resources/data/multiNodeProduction_NL_windOn.csv b/emlab-generation/src/main/resources/data/multiNodeProduction_NL_windOn.csv new file mode 100644 index 00000000..d58d9553 --- /dev/null +++ b/emlab-generation/src/main/resources/data/multiNodeProduction_NL_windOn.csv @@ -0,0 +1,8761 @@ +hour,nl_node_0,nl_node_1,nl_node_2,nl_node_3,nl_node_4,nl_node_5,nl_node_6,nl_node_7,nl_node_8,nl_node_9,nl_node_10,nl_node_11,nl_node_12,nl_node_13,nl_node_14,nl_node_15,nl_node_16,nl_node_17,nl_node_18 +1,0.7,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,, +2,0.7,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,, +3,0.6,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,, +4,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,, +5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,, +6,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,, +7,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +8,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +9,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +10,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +11,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +12,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +13,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +14,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +15,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +16,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +17,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +18,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,, +19,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,, +20,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,, +21,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +26,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +27,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +32,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +33,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +34,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +35,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +36,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +37,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +38,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +39,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +40,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +41,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +42,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +43,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +44,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +45,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,, +46,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +47,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +48,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +49,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +50,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +51,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +52,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +53,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +54,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +55,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +56,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +57,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +58,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +59,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +60,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,, +61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +62,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +63,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +64,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +66,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +67,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +68,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +69,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +70,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +71,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +72,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +73,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,, +74,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,, +75,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +76,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +77,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +78,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +79,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +80,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +81,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +82,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +83,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +84,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +85,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +86,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +87,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +88,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +89,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +90,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +91,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +92,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +93,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +94,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +95,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +96,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +97,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +98,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +99,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +100,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +101,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +102,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +103,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +104,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +105,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +106,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +107,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +108,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,, +109,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +110,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +111,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +112,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +113,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +114,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +115,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +116,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +117,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +118,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +119,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +120,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +121,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +122,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +123,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +124,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +125,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +126,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +127,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +128,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +129,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +130,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +131,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +132,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +133,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +134,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +135,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +136,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +137,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +138,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +139,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +140,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +141,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +142,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +143,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +144,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +145,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +146,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +147,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +148,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +149,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +150,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +151,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +152,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +153,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +154,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +155,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +156,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,, +157,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +158,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +159,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +160,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +161,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +162,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +163,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +164,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +165,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +166,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +167,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +168,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +169,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +170,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +171,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +172,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +173,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +174,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +175,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,, +176,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,, +177,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +178,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +179,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +180,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +181,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +182,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +183,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +184,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +185,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +186,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,, +187,0.6,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,, +188,0.6,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,, +189,0.7,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,, +190,0.8,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,, +191,0.8,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,, +192,0.8,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,,, +193,0.9,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,, +194,0.9,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,, +195,1.0,0.8,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,,, +196,1.0,0.8,0.8,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,,, +197,1.0,0.8,0.8,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,,, +198,1.0,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,,, +199,1.1,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,,, +200,1.1,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,,, +201,1.1,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,, +202,1.1,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,, +203,1.1,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,, +204,1.1,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,, +205,1.1,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,,, +206,1.1,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,,, +207,1.1,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,,, +208,1.1,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,,, +209,1.1,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,,, +210,1.2,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,,, +211,1.2,0.9,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,,, +212,1.2,0.9,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,,, +213,1.2,0.9,0.9,0.8,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,,, +214,1.2,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,,, +215,1.2,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,,, +216,1.2,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,,, +217,1.1,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,, +218,1.1,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,, +219,1.1,0.8,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,,, +220,1.0,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,0.4,,, +221,1.0,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,0.4,,, +222,1.0,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,,, +223,0.9,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,, +224,0.9,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,, +225,0.9,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,, +226,0.9,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,, +227,0.9,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,, +228,0.8,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,,, +229,0.8,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,,, +230,0.8,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,,, +231,0.8,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,, +232,0.7,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,, +233,0.7,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,, +234,0.7,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,, +235,0.6,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,, +236,0.6,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,, +237,0.6,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,, +238,0.6,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +239,0.6,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +240,0.6,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +241,0.6,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +242,0.6,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +243,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +244,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,, +245,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,, +246,0.5,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +247,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +248,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +249,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +250,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +251,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +252,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +253,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +254,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +255,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +256,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +257,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +258,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +259,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +260,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +261,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +262,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +263,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +264,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +265,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +266,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +267,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,, +268,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +269,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +270,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,, +271,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,, +272,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,, +273,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +274,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +275,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +276,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +277,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +278,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +279,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +280,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +281,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +282,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +283,0.7,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,, +284,0.7,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,, +285,0.7,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,, +286,0.7,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,, +287,0.7,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,, +288,0.7,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,, +289,0.8,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,,, +290,0.8,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,,, +291,0.8,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,,, +292,0.8,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,,, +293,0.8,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,,, +294,0.8,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,,, +295,0.9,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,, +296,0.9,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,, +297,0.9,0.7,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,, +298,0.8,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,,, +299,0.8,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,,, +300,0.8,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,,, +301,0.7,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,, +302,0.7,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,, +303,0.7,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,, +304,0.7,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,, +305,0.7,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,, +306,0.7,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,, +307,0.7,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,, +308,0.7,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,, +309,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.2,,, +310,0.6,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +311,0.6,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +312,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,, +313,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +314,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +315,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +316,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +317,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +318,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +319,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +320,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +321,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +322,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +323,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +324,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +325,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +326,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +327,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +328,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +329,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +330,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +331,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +332,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +333,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +334,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +335,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +336,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +337,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +338,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +339,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +340,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,, +341,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,, +342,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +343,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +344,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +345,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +346,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +347,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +348,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,, +349,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +350,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +351,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +352,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +353,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +354,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,, +355,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +356,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +357,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +358,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +359,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +360,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +361,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +362,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +363,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +364,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +365,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +366,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,, +367,0.6,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,, +368,0.6,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,, +369,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.2,,, +370,0.7,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,, +371,0.7,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,, +372,0.7,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,, +373,0.7,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,, +374,0.7,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,, +375,0.7,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,, +376,0.8,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,,, +377,0.8,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,,, +378,0.7,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,, +379,0.7,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,, +380,0.7,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,, +381,0.7,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,, +382,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,, +383,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,, +384,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,, +385,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +386,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +387,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +388,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +389,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +390,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,, +391,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +392,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +393,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +394,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +395,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +396,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +397,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +398,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +399,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +400,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +401,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +402,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +403,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +404,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +405,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +406,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +407,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +408,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +409,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +410,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +411,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +412,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +413,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +414,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +415,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +416,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +417,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +418,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +419,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +420,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +421,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +422,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +423,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +424,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +425,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +426,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +427,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +428,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +429,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +430,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +431,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +432,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +433,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +434,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +435,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +436,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +437,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +438,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +439,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +440,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +441,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,, +442,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,, +443,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,, +444,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +445,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +446,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +447,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,, +448,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,, +449,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,, +450,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +451,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +452,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +453,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +454,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +455,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +456,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +457,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +458,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +459,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +460,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +461,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +462,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +463,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +464,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +465,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +466,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +467,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +468,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +469,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +470,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +471,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +472,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +473,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +474,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +475,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +476,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +477,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +478,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +479,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +480,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +481,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +482,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +483,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +484,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +485,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +486,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +487,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +488,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +489,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +490,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +491,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +492,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +493,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +494,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +495,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +496,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +497,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +498,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +499,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +500,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +501,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +502,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +503,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +504,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +505,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +506,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +507,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +508,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +509,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +510,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +511,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +512,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +513,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +514,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +515,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +516,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +517,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +518,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +519,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +520,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +521,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +522,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +523,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +524,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +525,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +526,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +527,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +528,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +529,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +530,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +531,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +532,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +533,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +534,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +535,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +536,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +537,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +538,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +539,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +540,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +541,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +542,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +543,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +544,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +545,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +546,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +547,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +548,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +549,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +550,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +551,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +552,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +553,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +554,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +555,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +556,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +557,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +558,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +559,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +560,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +561,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +562,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +563,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +564,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,, +565,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,, +566,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,, +567,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +568,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +569,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +570,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +571,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +572,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +573,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +574,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +575,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +576,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +577,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +578,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +579,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +580,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,, +581,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,, +582,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,, +583,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,, +584,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,, +585,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +586,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +587,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +588,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +589,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,, +590,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,, +591,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,, +592,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,, +593,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,, +594,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +595,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +596,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +597,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +598,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +599,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +600,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +601,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +602,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +603,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +604,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +605,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +606,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +607,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +608,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +609,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +610,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +611,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +612,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +613,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,, +614,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,, +615,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,, +616,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,, +617,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,, +618,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,, +619,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,, +620,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,, +621,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +622,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +623,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +624,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +625,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +626,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +627,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +628,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +629,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +630,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,, +631,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +632,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +633,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +634,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,, +635,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,, +636,0.6,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,, +637,0.8,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,,, +638,0.8,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,,, +639,0.9,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,, +640,0.9,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,,, +641,0.9,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,,, +642,1.0,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,,, +643,1.0,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,,, +644,1.0,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,,, +645,0.9,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,, +646,0.9,0.7,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,, +647,0.9,0.7,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,, +648,0.9,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,, +649,0.9,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,, +650,0.9,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,, +651,0.9,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,, +652,0.9,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,, +653,0.9,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,, +654,0.8,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,,, +655,0.8,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,, +656,0.8,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,, +657,0.8,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,,, +658,0.8,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,,, +659,0.8,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,,, +660,0.8,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,,, +661,0.8,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,,, +662,0.8,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,,, +663,0.8,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,,, +664,0.8,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,,, +665,0.8,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,,, +666,0.7,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,, +667,0.7,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,, +668,0.7,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,, +669,0.6,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +670,0.5,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +671,0.5,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +672,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +673,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +674,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +675,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +676,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +677,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +678,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +679,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +680,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +681,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +682,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +683,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +684,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +685,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +686,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +687,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +688,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,, +689,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,, +690,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,, +691,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,, +692,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,, +693,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +694,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +695,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +696,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +697,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +698,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +699,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +700,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +701,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +702,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +703,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +704,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +705,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +706,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +707,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +708,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +709,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +710,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +711,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,, +712,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,, +713,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,, +714,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +715,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +716,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +717,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +718,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +719,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +720,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +721,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +722,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +723,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +724,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,, +725,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,, +726,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,, +727,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,, +728,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,, +729,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,, +730,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,, +731,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,, +732,0.6,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +733,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,, +734,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,, +735,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +736,0.5,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +737,0.5,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +738,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +739,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,, +740,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,, +741,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,, +742,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,, +743,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,, +744,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,, +745,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,, +746,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,, +747,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +748,0.5,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +749,0.5,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +750,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +751,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +752,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +753,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +754,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +755,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +756,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +757,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +758,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +759,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +760,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +761,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +762,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +763,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +764,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +765,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,, +766,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,, +767,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,, +768,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +769,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +770,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +771,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +772,0.7,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,, +773,0.7,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,, +774,0.9,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,, +775,1.0,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,,, +776,1.0,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,,, +777,1.1,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,,, +778,1.1,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,,, +779,1.1,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,,, +780,1.1,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,, +781,1.0,0.8,0.8,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,,, +782,1.0,0.8,0.8,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,,, +783,0.9,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,, +784,0.8,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,,, +785,0.8,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,,, +786,0.7,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,, +787,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,, +788,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,, +789,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,, +790,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,, +791,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,, +792,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +793,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,, +794,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,, +795,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,, +796,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,, +797,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,, +798,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,, +799,0.6,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +800,0.6,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +801,0.6,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,, +802,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.2,,, +803,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.2,,, +804,0.7,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,, +805,0.8,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,, +806,0.8,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,, +807,0.6,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,, +808,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,, +809,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,, +810,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +811,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +812,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +813,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +814,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +815,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +816,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +817,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +818,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +819,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +820,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +821,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +822,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +823,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,, +824,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,, +825,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +826,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +827,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +828,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +829,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +830,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +831,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +832,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,, +833,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,, +834,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +835,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +836,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +837,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +838,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +839,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +840,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,, +841,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,, +842,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,, +843,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +844,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +845,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +846,0.6,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +847,0.6,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +848,0.6,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +849,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +850,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,, +851,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,, +852,0.5,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +853,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +854,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +855,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +856,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +857,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +858,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +859,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +860,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +861,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +862,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +863,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +864,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,, +865,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +866,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +867,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +868,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +869,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +870,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +871,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +872,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +873,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +874,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,, +875,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,, +876,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,, +877,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,, +878,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,, +879,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,, +880,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +881,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +882,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +883,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +884,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +885,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +886,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +887,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +888,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +889,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +890,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +891,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +892,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +893,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +894,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +895,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +896,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +897,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +898,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +899,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +900,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,, +901,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,, +902,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,, +903,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,, +904,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,, +905,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,, +906,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +907,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +908,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +909,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +910,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +911,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +912,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +913,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +914,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +915,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +916,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +917,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +918,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +919,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +920,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +921,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +922,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +923,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +924,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +925,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +926,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +927,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +928,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +929,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +930,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +931,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +932,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +933,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +934,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +935,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +936,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +937,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +938,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +939,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +940,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,, +941,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,, +942,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,, +943,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +944,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +945,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +946,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +947,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +948,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +949,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +950,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +951,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +952,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +953,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +954,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +955,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +956,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +957,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,, +958,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,, +959,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,, +960,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,, +961,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +962,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +963,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +964,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +965,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +966,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +967,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +968,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +969,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +970,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +971,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +972,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,, +973,0.7,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,, +974,0.7,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,, +975,0.7,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,, +976,0.7,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,, +977,0.7,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,, +978,0.7,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,, +979,0.7,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,, +980,0.7,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,, +981,0.7,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,, +982,0.7,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,, +983,0.7,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,, +984,0.7,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,, +985,0.7,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,, +986,0.7,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,, +987,0.7,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,, +988,0.7,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,, +989,0.7,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,, +990,0.7,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,, +991,0.7,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,, +992,0.7,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,, +993,0.7,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,, +994,0.7,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,, +995,0.7,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,, +996,0.8,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,, +997,0.8,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,,, +998,0.8,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,,, +999,0.8,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,, +1000,0.7,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,, +1001,0.7,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,, +1002,0.7,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,, +1003,0.6,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,, +1004,0.6,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,, +1005,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,, +1006,0.5,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,, +1007,0.5,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,, +1008,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +1009,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +1010,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +1011,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +1012,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +1013,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +1014,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +1015,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +1016,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +1017,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +1018,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +1019,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +1020,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +1021,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +1022,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +1023,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +1024,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +1025,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +1026,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +1027,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,, +1028,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,, +1029,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +1030,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +1031,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +1032,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +1033,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +1034,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +1035,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +1036,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1037,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1038,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1039,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1040,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1041,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1042,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1043,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1044,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1045,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1046,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1047,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1048,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1049,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1050,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1051,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1052,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1053,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1054,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,, +1055,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,, +1056,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +1057,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +1058,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +1059,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +1060,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +1061,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +1062,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +1063,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +1064,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +1065,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +1066,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +1067,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +1068,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +1069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +1070,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +1071,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +1072,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +1073,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +1074,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +1075,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +1076,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +1077,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +1078,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +1079,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +1080,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +1081,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +1082,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +1083,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +1084,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +1085,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +1086,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +1087,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,, +1088,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,, +1089,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +1090,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +1091,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +1092,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +1093,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +1094,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +1095,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +1096,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +1097,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +1098,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +1099,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +1100,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +1101,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +1102,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1103,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1104,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1105,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1106,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1107,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1108,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +1109,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +1110,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +1111,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +1112,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +1113,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +1114,0.5,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +1115,0.5,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +1116,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,, +1117,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,, +1118,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,, +1119,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,, +1120,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,, +1121,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,, +1122,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,, +1123,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,, +1124,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,, +1125,0.5,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,, +1126,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +1127,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +1128,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +1129,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +1130,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +1131,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +1132,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +1133,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +1134,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +1135,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +1136,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +1137,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +1138,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1139,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1140,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1141,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1142,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1143,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1144,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1145,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1146,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1147,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1148,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1149,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1150,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1151,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1152,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1153,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,, +1154,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,, +1155,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +1156,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +1157,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +1158,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +1159,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +1160,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +1161,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,, +1162,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1163,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1164,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1165,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +1166,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +1167,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +1168,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1169,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1170,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1171,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1172,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1173,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1174,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +1175,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +1176,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +1177,0.5,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +1178,0.5,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +1179,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,, +1180,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.2,,, +1181,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.2,,, +1182,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.2,,, +1183,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,, +1184,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,, +1185,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,, +1186,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,, +1187,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,, +1188,0.7,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,, +1189,0.7,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,, +1190,0.7,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,, +1191,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,, +1192,0.6,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +1193,0.6,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +1194,0.6,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,, +1195,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,, +1196,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,, +1197,0.7,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,, +1198,0.8,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,, +1199,0.8,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,, +1200,0.8,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,,, +1201,0.8,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,,, +1202,0.8,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,,, +1203,0.8,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,,, +1204,0.8,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,, +1205,0.8,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,, +1206,0.8,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,, +1207,0.7,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,, +1208,0.7,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,, +1209,0.7,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,, +1210,0.7,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,, +1211,0.7,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,, +1212,0.7,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,, +1213,0.7,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,, +1214,0.7,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,, +1215,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,, +1216,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +1217,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +1218,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +1219,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1220,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1221,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1222,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,, +1223,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,, +1224,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,, +1225,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1226,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1227,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,, +1228,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +1229,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +1230,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +1231,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +1232,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +1233,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,, +1234,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,, +1235,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,, +1236,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1237,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1238,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1239,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1240,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +1241,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +1242,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +1243,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +1244,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +1245,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.2,,, +1246,0.7,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,, +1247,0.7,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,, +1248,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,, +1249,0.6,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +1250,0.6,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +1251,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +1252,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1253,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1254,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1255,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1256,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1257,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1258,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,, +1259,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,, +1260,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,, +1261,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,, +1262,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,, +1263,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +1264,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +1265,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +1266,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,, +1267,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,, +1268,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,, +1269,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1270,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1271,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1272,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +1273,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +1274,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +1275,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +1276,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +1277,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +1278,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +1279,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +1280,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +1281,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +1282,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +1283,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +1284,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +1285,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +1286,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +1287,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +1288,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +1289,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +1290,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +1291,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +1292,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +1293,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,, +1294,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,, +1295,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,, +1296,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,, +1297,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,, +1298,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,, +1299,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +1300,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +1301,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +1302,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1303,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1304,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1305,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1306,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1307,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1308,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1309,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1310,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1311,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1312,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,, +1313,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,, +1314,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1315,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +1316,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +1317,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +1318,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +1319,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +1320,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +1321,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,, +1322,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,, +1323,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,, +1324,0.6,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +1325,0.6,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +1326,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.2,,, +1327,0.7,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,, +1328,0.7,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,, +1329,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,, +1330,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,, +1331,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,, +1332,0.7,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,, +1333,0.7,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,, +1334,0.7,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,, +1335,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +1336,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +1337,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +1338,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +1339,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1340,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1341,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +1342,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +1343,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +1344,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +1345,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +1346,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +1347,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +1348,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +1349,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +1350,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +1351,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +1352,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +1353,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +1354,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +1355,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +1356,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +1357,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,, +1358,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,, +1359,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.2,,, +1360,0.8,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,,, +1361,0.8,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,,, +1362,0.9,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,, +1363,0.9,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,, +1364,0.9,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,, +1365,1.0,0.8,0.8,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,,, +1366,1.1,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,,, +1367,1.1,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,,, +1368,1.1,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,, +1369,1.1,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,, +1370,1.1,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,, +1371,1.1,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,, +1372,1.1,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,, +1373,1.1,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,, +1374,1.1,0.8,0.8,0.8,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,,, +1375,1.0,0.8,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,,, +1376,1.0,0.8,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,,, +1377,0.9,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,, +1378,0.8,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,,, +1379,0.8,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,,, +1380,0.7,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,, +1381,0.7,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,, +1382,0.7,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,, +1383,0.6,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +1384,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,, +1385,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,, +1386,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +1387,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +1388,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +1389,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +1390,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +1391,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +1392,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +1393,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +1394,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +1395,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +1396,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +1397,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +1398,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +1399,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +1400,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +1401,0.5,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +1402,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,, +1403,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,, +1404,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,, +1405,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +1406,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +1407,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +1408,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1409,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1410,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,, +1411,0.8,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,,, +1412,0.8,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,,, +1413,1.0,0.8,0.8,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,,, +1414,1.1,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,, +1415,1.1,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,, +1416,1.1,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,,, +1417,1.0,0.8,0.8,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,,, +1418,1.0,0.8,0.8,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,,, +1419,0.8,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,,, +1420,0.6,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,, +1421,0.6,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,, +1422,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +1423,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,, +1424,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,, +1425,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,, +1426,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,, +1427,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,, +1428,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,, +1429,0.6,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +1430,0.6,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +1431,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,, +1432,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +1433,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +1434,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +1435,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +1436,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +1437,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +1438,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +1439,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +1440,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +1441,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +1442,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +1443,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +1444,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +1445,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +1446,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +1447,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +1448,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +1449,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +1450,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1451,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1452,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +1453,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +1454,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +1455,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,, +1456,0.5,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +1457,0.5,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +1458,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,, +1459,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +1460,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +1461,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +1462,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +1463,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +1464,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +1465,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1466,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1467,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1468,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1469,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1470,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1471,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,, +1472,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,, +1473,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +1474,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +1475,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +1476,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +1477,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,, +1478,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,, +1479,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,, +1480,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,, +1481,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,, +1482,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,, +1483,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,, +1484,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,, +1485,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,, +1486,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,, +1487,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,, +1488,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,, +1489,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,, +1490,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,, +1491,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1492,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1493,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1494,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1495,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1496,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1497,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +1498,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +1499,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +1500,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +1501,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +1502,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +1503,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +1504,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +1505,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +1506,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +1507,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +1508,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +1509,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +1510,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1511,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1512,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1513,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1514,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1515,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,, +1516,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,, +1517,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,, +1518,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +1519,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +1520,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +1521,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +1522,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +1523,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +1524,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,, +1525,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1526,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1527,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +1528,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,, +1529,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,, +1530,0.7,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,, +1531,0.8,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,, +1532,0.8,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,, +1533,0.8,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,,, +1534,0.8,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,,, +1535,0.8,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,,, +1536,0.8,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,,, +1537,0.8,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,, +1538,0.8,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,, +1539,0.8,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,,, +1540,0.8,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,,, +1541,0.8,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,,, +1542,0.8,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,, +1543,0.7,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,, +1544,0.7,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,, +1545,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,, +1546,0.6,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +1547,0.6,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +1548,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,, +1549,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,, +1550,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,, +1551,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +1552,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +1553,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +1554,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +1555,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +1556,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +1557,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +1558,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +1559,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +1560,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1561,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1562,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1563,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1564,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1565,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1566,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,, +1567,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +1568,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +1569,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +1570,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +1571,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +1572,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +1573,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +1574,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +1575,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +1576,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +1577,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +1578,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +1579,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,, +1580,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,, +1581,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,, +1582,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,, +1583,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,, +1584,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +1585,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +1586,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +1587,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,, +1588,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,, +1589,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,, +1590,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1591,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1592,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1593,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1594,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,, +1595,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,, +1596,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1597,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1598,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1599,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1600,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1601,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1602,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1603,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1604,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1605,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1606,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,, +1607,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,, +1608,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,, +1609,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +1610,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +1611,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +1612,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +1613,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +1614,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +1615,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +1616,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +1617,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +1618,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +1619,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +1620,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +1621,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +1622,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +1623,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +1624,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +1625,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +1626,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +1627,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +1628,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +1629,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +1630,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +1631,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +1632,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +1633,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +1634,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +1635,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +1636,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,, +1637,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,, +1638,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,, +1639,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,, +1640,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,, +1641,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,, +1642,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,, +1643,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,, +1644,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,, +1645,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1646,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1647,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1648,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +1649,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +1650,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +1651,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +1652,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +1653,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +1654,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +1655,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +1656,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +1657,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +1658,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +1659,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1660,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1661,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1662,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1663,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1664,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1665,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,, +1666,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,, +1667,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,, +1668,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1669,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1670,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1671,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1672,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1673,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1674,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1675,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1676,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1677,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1678,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1679,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1680,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1681,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1682,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1683,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1684,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1685,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1686,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1687,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +1688,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +1689,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +1690,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +1691,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +1692,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +1693,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +1694,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +1695,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +1696,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +1697,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +1698,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +1699,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +1700,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +1701,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +1702,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +1703,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +1704,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +1705,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +1706,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +1707,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +1708,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +1709,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +1710,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,, +1711,0.5,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,, +1712,0.5,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,, +1713,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.2,,, +1714,0.8,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,, +1715,0.8,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,, +1716,0.7,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,, +1717,0.7,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,, +1718,0.7,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,, +1719,0.7,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,, +1720,0.8,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,,, +1721,0.8,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,,, +1722,0.8,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,, +1723,0.7,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,, +1724,0.7,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,, +1725,0.7,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,, +1726,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,, +1727,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,, +1728,0.7,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,, +1729,0.7,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,, +1730,0.7,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,, +1731,0.7,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,, +1732,0.7,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,, +1733,0.7,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,, +1734,0.7,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,, +1735,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,, +1736,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,, +1737,0.7,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,, +1738,0.7,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,, +1739,0.7,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,, +1740,0.8,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,, +1741,0.8,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,,, +1742,0.8,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,,, +1743,0.9,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,, +1744,0.9,0.7,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,, +1745,0.9,0.7,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,, +1746,0.8,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,, +1747,0.7,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,, +1748,0.7,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,, +1749,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +1750,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,, +1751,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,, +1752,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +1753,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +1754,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +1755,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +1756,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +1757,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +1758,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +1759,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +1760,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +1761,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +1762,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +1763,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +1764,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,, +1765,0.9,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,, +1766,0.9,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,, +1767,0.9,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,, +1768,0.9,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,, +1769,0.9,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,, +1770,0.8,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,,, +1771,0.7,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,, +1772,0.7,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,, +1773,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,, +1774,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +1775,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +1776,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +1777,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1778,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1779,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1780,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,, +1781,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,, +1782,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +1783,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +1784,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +1785,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +1786,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +1787,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +1788,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +1789,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +1790,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +1791,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,, +1792,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1793,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1794,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1795,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1796,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1797,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1798,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1799,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1800,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1801,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1802,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1803,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1804,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +1805,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +1806,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +1807,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +1808,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +1809,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +1810,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +1811,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +1812,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +1813,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +1814,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +1815,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,, +1816,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,, +1817,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,, +1818,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +1819,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +1820,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +1821,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +1822,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +1823,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +1824,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +1825,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1826,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1827,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1828,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1829,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1830,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1831,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +1832,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +1833,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1834,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1835,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1836,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +1837,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +1838,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +1839,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +1840,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +1841,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +1842,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,, +1843,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,, +1844,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,, +1845,0.6,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +1846,0.7,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,, +1847,0.7,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,, +1848,0.7,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,, +1849,0.7,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,, +1850,0.7,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,, +1851,0.7,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,, +1852,0.7,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,, +1853,0.7,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,, +1854,0.8,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,, +1855,0.8,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,, +1856,0.8,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,, +1857,0.8,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,, +1858,0.8,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,, +1859,0.8,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,, +1860,0.7,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,, +1861,0.7,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,, +1862,0.7,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,, +1863,0.7,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,, +1864,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,, +1865,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,, +1866,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +1867,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +1868,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +1869,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +1870,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +1871,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +1872,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +1873,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +1874,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +1875,0.5,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,, +1876,0.6,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +1877,0.6,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +1878,0.7,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,, +1879,0.8,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,, +1880,0.8,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,, +1881,0.8,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,,, +1882,0.8,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,,, +1883,0.8,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,,, +1884,0.8,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,,, +1885,0.8,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,,, +1886,0.8,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,,, +1887,0.8,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,,, +1888,0.7,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,, +1889,0.7,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,, +1890,0.7,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,, +1891,0.6,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,, +1892,0.6,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,, +1893,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,, +1894,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.2,,, +1895,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.2,,, +1896,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,, +1897,0.7,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,, +1898,0.7,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,, +1899,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,, +1900,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1901,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1902,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +1903,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +1904,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +1905,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +1906,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +1907,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +1908,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1909,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1910,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1911,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1912,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1913,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1914,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,, +1915,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +1916,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +1917,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,, +1918,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,, +1919,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,, +1920,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +1921,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +1922,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +1923,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,, +1924,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1925,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1926,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1927,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1928,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1929,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1930,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1931,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1932,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1933,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +1934,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +1935,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +1936,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +1937,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +1938,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +1939,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1940,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1941,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +1942,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +1943,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +1944,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,, +1945,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,, +1946,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,, +1947,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +1948,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +1949,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +1950,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +1951,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1952,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1953,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1954,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +1955,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +1956,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +1957,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +1958,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +1959,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +1960,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +1961,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +1962,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +1963,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +1964,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +1965,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,, +1966,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1967,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1968,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +1969,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +1970,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +1971,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +1972,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +1973,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +1974,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +1975,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +1976,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +1977,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +1978,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +1979,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +1980,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +1981,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +1982,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +1983,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +1984,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +1985,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +1986,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +1987,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +1988,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +1989,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +1990,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +1991,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +1992,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +1993,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +1994,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +1995,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1996,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1997,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +1998,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +1999,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +2000,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +2001,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +2002,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +2003,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +2004,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +2005,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +2006,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +2007,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +2008,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +2009,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +2010,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +2011,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +2012,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +2013,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,, +2014,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +2015,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +2016,0.6,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +2017,0.6,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +2018,0.6,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +2019,0.5,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,, +2020,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +2021,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +2022,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +2023,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2024,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2025,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2026,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,, +2027,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,, +2028,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,, +2029,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,, +2030,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,, +2031,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2032,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2033,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2034,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2035,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2036,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2037,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2038,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +2039,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +2040,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +2041,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +2042,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +2043,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +2044,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +2045,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +2046,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,, +2047,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,, +2048,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,, +2049,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +2050,0.5,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +2051,0.5,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +2052,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +2053,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +2054,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +2055,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +2056,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +2057,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +2058,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +2059,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +2060,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +2061,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +2062,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +2063,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +2064,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +2065,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +2066,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +2067,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +2068,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +2069,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +2070,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +2071,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,, +2072,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,, +2073,0.6,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,, +2074,0.8,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,, +2075,0.8,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,, +2076,0.8,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,,, +2077,0.8,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,,, +2078,0.8,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,,, +2079,0.8,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,, +2080,0.7,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,, +2081,0.7,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,, +2082,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,, +2083,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +2084,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +2085,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +2086,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +2087,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +2088,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +2089,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +2090,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +2091,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2092,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,, +2093,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,, +2094,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2095,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2096,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2097,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2098,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2099,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2100,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2101,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2102,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2103,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2104,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2105,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2106,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2107,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2108,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2109,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2110,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +2111,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +2112,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +2113,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +2114,0.6,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,, +2115,0.6,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,, +2116,0.6,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +2117,0.6,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +2118,0.6,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +2119,0.5,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,, +2120,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +2121,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +2122,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +2123,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +2124,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +2125,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +2126,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +2127,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +2128,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +2129,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +2130,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +2131,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +2132,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +2133,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +2134,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +2135,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +2136,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +2137,0.6,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,, +2138,0.7,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,, +2139,0.7,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,, +2140,0.7,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,, +2141,0.7,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,, +2142,0.7,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,, +2143,0.8,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,, +2144,0.8,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,,, +2145,0.8,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,,, +2146,1.0,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,,, +2147,1.1,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,, +2148,1.1,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,, +2149,1.1,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,, +2150,1.1,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,, +2151,1.1,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,, +2152,1.1,0.9,0.8,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,, +2153,1.1,0.9,0.8,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,, +2154,1.1,0.9,0.8,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,, +2155,1.0,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,,, +2156,0.9,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,, +2157,0.9,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,, +2158,0.8,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,,, +2159,0.8,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,,, +2160,0.8,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,,, +2161,0.8,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,,, +2162,0.8,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,, +2163,0.8,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,, +2164,0.7,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,, +2165,0.7,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,, +2166,0.7,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,, +2167,0.7,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,, +2168,0.7,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,, +2169,0.7,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,, +2170,0.8,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,, +2171,0.8,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,,, +2172,0.8,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,,, +2173,0.9,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,, +2174,0.9,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,, +2175,0.9,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,, +2176,0.9,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,, +2177,0.9,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,, +2178,0.9,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,, +2179,0.7,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,, +2180,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,, +2181,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,, +2182,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,, +2183,0.5,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +2184,0.5,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +2185,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,, +2186,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +2187,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +2188,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,, +2189,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,, +2190,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,, +2191,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,, +2192,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +2193,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +2194,0.6,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +2195,0.6,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,, +2196,0.6,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,, +2197,0.7,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,, +2198,0.7,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,, +2199,0.7,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,, +2200,0.7,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,, +2201,0.6,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +2202,0.6,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +2203,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +2204,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +2205,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +2206,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.2,,, +2207,0.7,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,, +2208,0.7,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,, +2209,0.6,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,, +2210,0.5,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +2211,0.5,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +2212,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +2213,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +2214,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +2215,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +2216,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +2217,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +2218,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +2219,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +2220,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +2221,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +2222,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +2223,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +2224,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +2225,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +2226,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +2227,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +2228,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2229,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2230,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2231,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +2232,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +2233,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2234,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2235,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2236,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2237,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2238,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2239,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2240,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2241,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2242,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2243,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2244,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2245,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,, +2246,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2247,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2248,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,, +2249,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2250,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2251,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +2252,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +2253,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +2254,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +2255,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +2256,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +2257,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +2258,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +2259,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +2260,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +2261,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2262,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2263,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2264,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2265,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2266,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2267,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +2268,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +2269,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +2270,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +2271,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +2272,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +2273,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +2274,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +2275,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +2276,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2277,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2278,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +2279,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +2280,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +2281,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +2282,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +2283,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +2284,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +2285,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +2286,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +2287,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +2288,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +2289,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +2290,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2291,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2292,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2293,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2294,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +2295,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +2296,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2297,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2298,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2299,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +2300,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +2301,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +2302,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +2303,0.5,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,, +2304,0.5,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,, +2305,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +2306,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,, +2307,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,, +2308,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +2309,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +2310,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +2311,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +2312,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +2313,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +2314,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2315,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2316,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2317,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,, +2318,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2319,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2320,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2321,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2322,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2323,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2324,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2325,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2326,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2327,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2328,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2329,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2330,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2331,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2332,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,, +2333,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2334,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2335,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2336,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2337,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2338,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2339,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2340,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2341,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2342,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2343,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2344,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2345,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2346,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2347,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2348,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2349,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2350,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2351,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2352,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2353,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2354,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2355,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2356,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2357,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2358,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2359,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2360,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,, +2361,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,, +2362,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2363,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2364,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2365,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,, +2366,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2367,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2368,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2369,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2370,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2371,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2372,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,, +2373,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,, +2374,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,, +2375,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,, +2376,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,, +2377,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,, +2378,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,, +2379,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,, +2380,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,, +2381,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,, +2382,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,, +2383,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2384,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2385,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2386,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2387,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2388,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2389,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2390,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2391,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2392,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2393,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2394,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2395,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2396,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2397,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2398,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2399,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +2400,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +2401,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +2402,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +2403,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +2404,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +2405,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +2406,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +2407,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +2408,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +2409,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +2410,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +2411,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,, +2412,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,, +2413,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,, +2414,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,, +2415,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,, +2416,0.6,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +2417,0.6,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,, +2418,0.6,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,, +2419,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,, +2420,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +2421,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +2422,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +2423,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +2424,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +2425,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +2426,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +2427,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +2428,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +2429,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +2430,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +2431,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +2432,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +2433,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +2434,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +2435,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +2436,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +2437,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +2438,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,, +2439,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,, +2440,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,, +2441,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +2442,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +2443,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,, +2444,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,, +2445,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,, +2446,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,, +2447,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +2448,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +2449,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +2450,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +2451,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +2452,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +2453,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +2454,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +2455,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +2456,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2457,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2458,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2459,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2460,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2461,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2462,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2463,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2464,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2465,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +2466,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +2467,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +2468,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +2469,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +2470,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2471,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2472,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2473,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2474,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2475,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2476,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2477,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2478,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2479,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2480,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2481,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2482,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2483,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2484,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2485,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2486,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +2487,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +2488,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +2489,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +2490,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +2491,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +2492,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +2493,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +2494,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +2495,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +2496,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +2497,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +2498,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2499,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2500,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2501,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2502,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2503,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2504,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2505,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2506,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,, +2507,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2508,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2509,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,, +2510,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,, +2511,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,, +2512,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2513,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +2514,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +2515,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +2516,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +2517,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +2518,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +2519,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +2520,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +2521,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +2522,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +2523,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +2524,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2525,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2526,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2527,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2528,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2529,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2530,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +2531,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +2532,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +2533,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +2534,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +2535,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +2536,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +2537,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +2538,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +2539,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +2540,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2541,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2542,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2543,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,, +2544,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,, +2545,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2546,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2547,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2548,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2549,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2550,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2551,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2552,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,, +2553,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,, +2554,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2555,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2556,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2557,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2558,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2559,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2560,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,, +2561,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2562,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2563,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2564,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2565,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2566,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2567,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2568,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2569,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2570,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2571,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2572,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2573,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2574,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2575,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2576,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2578,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2579,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2580,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2581,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2582,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2583,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2584,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2585,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,, +2586,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,, +2587,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2588,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2589,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2590,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2591,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2592,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2593,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2594,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2595,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2596,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2597,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2598,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2599,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2600,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2601,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2602,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,, +2603,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,, +2604,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,, +2605,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2606,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2607,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2608,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2609,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2610,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2611,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2612,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,, +2613,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,, +2614,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,, +2615,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,, +2616,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,, +2617,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,, +2618,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,, +2619,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,, +2620,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,, +2621,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,, +2622,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,, +2623,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2624,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2625,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2626,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +2627,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +2628,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +2629,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,, +2630,0.7,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,, +2631,0.7,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,, +2632,0.8,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,, +2633,0.8,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,, +2634,0.8,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,, +2635,0.8,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,, +2636,0.7,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,, +2637,0.7,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,, +2638,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,, +2639,0.6,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,, +2640,0.6,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,, +2641,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +2642,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,, +2643,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,, +2644,0.5,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +2645,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +2646,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +2647,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +2648,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +2649,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +2650,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +2651,0.5,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +2652,0.5,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +2653,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,, +2654,0.6,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,, +2655,0.6,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,, +2656,0.7,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,, +2657,0.7,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,, +2658,0.7,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,, +2659,0.6,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,, +2660,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +2661,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +2662,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +2663,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +2664,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +2665,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2666,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2667,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2668,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2669,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2670,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2671,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,, +2672,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2673,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2674,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2675,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2676,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2677,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2678,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2679,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2680,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2681,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2682,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2683,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2684,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2685,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2686,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2687,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2688,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2689,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2690,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2691,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2692,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2693,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2694,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2695,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2696,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2697,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2698,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2699,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2700,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2701,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2702,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2703,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2704,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2705,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2706,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2707,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2708,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2709,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2710,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2711,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2712,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2713,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2714,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2715,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2716,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2717,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2718,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2719,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2720,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2721,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2722,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2723,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2724,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2725,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2726,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2727,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2728,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2729,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2730,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2731,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,, +2732,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2733,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2734,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2735,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +2736,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +2737,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +2738,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +2739,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +2740,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +2741,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +2742,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +2743,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2744,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2745,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2746,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2747,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,, +2748,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,, +2749,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,, +2750,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2751,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2752,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2753,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2754,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2755,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,, +2756,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2757,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2758,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2759,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2760,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2761,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2762,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2763,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2764,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2765,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,, +2766,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,, +2767,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2768,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2769,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2770,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2771,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +2772,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +2773,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +2774,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +2775,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +2776,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +2777,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +2778,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +2779,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2780,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2781,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2782,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2783,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2784,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2785,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,, +2786,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2787,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2788,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2789,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2790,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2791,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2792,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2793,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2794,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2795,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2796,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2797,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2798,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,, +2799,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,, +2800,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,, +2801,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2802,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2803,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2804,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2805,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2806,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2807,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2808,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2809,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2810,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2811,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2812,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2813,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2814,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2815,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2816,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,, +2817,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,, +2818,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,, +2819,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,, +2820,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,, +2821,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,, +2822,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2823,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2824,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,, +2825,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,, +2826,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,, +2827,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2828,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2829,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2830,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,, +2831,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2832,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2833,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2834,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2835,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2836,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2837,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +2838,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +2839,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2840,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2841,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2842,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2843,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2844,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2845,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2846,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2847,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2848,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,, +2849,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2850,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2851,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2852,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2853,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2854,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2855,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2856,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2857,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2858,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2859,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2860,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2861,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +2862,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +2863,0.5,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +2864,0.6,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,, +2865,0.6,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,, +2866,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,, +2867,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,, +2868,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,, +2869,0.6,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +2870,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,, +2871,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,, +2872,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,, +2873,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +2874,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +2875,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +2876,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2877,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2878,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2879,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +2880,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +2881,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +2882,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +2883,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +2884,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +2885,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +2886,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +2887,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +2888,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +2889,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +2890,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,, +2891,0.5,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +2892,0.5,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +2893,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +2894,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +2895,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +2896,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2897,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2898,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2899,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2900,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2901,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2902,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2903,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2904,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2905,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2906,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2907,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2908,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,, +2909,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2910,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2911,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2912,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2913,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2914,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2915,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2916,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2917,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +2918,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +2919,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +2920,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +2921,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +2922,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +2923,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,, +2924,0.7,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,, +2925,0.7,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,, +2926,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,, +2927,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.2,,, +2928,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.2,,, +2929,0.6,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,, +2930,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +2931,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +2932,0.5,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +2933,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +2934,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +2935,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +2936,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +2937,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +2938,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,, +2939,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,, +2940,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,, +2941,0.6,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +2942,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,, +2943,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,, +2944,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,, +2945,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,, +2946,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,, +2947,0.6,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,, +2948,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +2949,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +2950,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,, +2951,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +2952,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +2953,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +2954,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +2955,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +2956,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +2957,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +2958,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +2959,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +2960,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +2961,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +2962,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +2963,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +2964,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +2965,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +2966,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,, +2967,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,, +2968,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +2969,0.5,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +2970,0.5,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +2971,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +2972,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +2973,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +2974,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2975,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2976,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2977,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2978,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,, +2979,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,, +2980,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,, +2981,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,, +2982,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,, +2983,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2984,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2985,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2986,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2987,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2988,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2989,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +2990,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,, +2991,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,, +2992,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2993,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2994,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2995,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +2996,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +2997,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +2998,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +2999,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +3000,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +3001,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +3002,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +3003,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +3004,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +3005,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +3006,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +3007,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +3008,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +3009,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +3010,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +3011,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +3012,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +3013,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,, +3014,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +3015,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +3016,0.5,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +3017,0.5,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +3018,0.5,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +3019,0.5,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +3020,0.5,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +3021,0.5,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +3022,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +3023,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +3024,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +3025,0.5,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +3026,0.5,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +3027,0.5,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +3028,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,, +3029,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +3030,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +3031,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +3032,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,, +3033,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,, +3034,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +3035,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +3036,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +3037,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +3038,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3039,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3040,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3041,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3042,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3043,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,, +3044,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3045,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3046,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3047,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3048,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3049,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3050,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3051,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3052,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3053,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3054,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3055,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3056,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3057,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3058,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3059,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3060,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3061,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3062,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3063,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3064,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3065,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3066,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3067,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3068,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3070,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3071,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3072,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3073,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3074,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3075,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3076,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3077,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3078,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3079,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3080,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3081,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3082,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3083,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3084,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3085,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3086,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3087,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3088,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,, +3089,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3090,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3091,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3092,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3093,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3094,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3095,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3096,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3097,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3098,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,, +3099,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,, +3100,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3101,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3102,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3103,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3104,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3105,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3106,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3107,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3108,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3109,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3110,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3111,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3112,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3113,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3114,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3115,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,, +3116,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3117,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3118,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3119,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3120,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3121,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,, +3122,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,, +3123,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,, +3124,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,, +3125,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,, +3126,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,, +3127,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,, +3128,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,, +3129,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,, +3130,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,, +3131,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,, +3132,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,, +3133,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3134,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3135,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3136,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3137,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3138,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3139,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +3140,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +3141,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +3142,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,, +3143,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,, +3144,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,, +3145,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +3146,0.6,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,, +3147,0.6,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,, +3148,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,, +3149,0.7,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,, +3150,0.7,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,, +3151,0.7,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,, +3152,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,, +3153,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,, +3154,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.2,,, +3155,0.6,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,, +3156,0.6,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,, +3157,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,, +3158,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.2,,, +3159,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.2,,, +3160,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,, +3161,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,, +3162,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,, +3163,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +3164,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +3165,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +3166,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3167,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3168,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3169,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3170,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,, +3171,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,, +3172,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,, +3173,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3174,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3175,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3176,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,, +3177,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,, +3178,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,, +3179,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,, +3180,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,, +3181,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,, +3182,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,, +3183,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,, +3184,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,, +3185,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,, +3186,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,, +3187,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,, +3188,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3189,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3190,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3191,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3193,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3194,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3195,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3196,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3197,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3198,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3199,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3200,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3201,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3202,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3203,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3204,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3205,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3206,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3207,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3208,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3209,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3210,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3211,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3212,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3213,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3214,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3215,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3216,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3217,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3218,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3219,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3220,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3221,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3222,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3223,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3224,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3225,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3226,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3227,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,, +3228,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,, +3229,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3230,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3231,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3232,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +3233,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +3234,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +3235,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +3236,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +3237,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +3238,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +3239,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +3240,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +3241,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +3242,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +3243,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +3244,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +3245,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +3246,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +3247,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +3248,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +3249,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +3250,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,, +3251,0.5,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +3252,0.5,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +3253,0.5,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +3254,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +3255,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +3256,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,, +3257,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,, +3258,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,, +3259,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +3260,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3261,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3262,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3263,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,, +3264,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,, +3265,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,, +3266,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,, +3267,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,, +3268,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,, +3269,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,, +3270,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,, +3271,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,, +3272,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3273,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3274,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3275,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3276,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3277,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,, +3278,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3279,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3280,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3281,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3282,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3283,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3284,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3285,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3286,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3287,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3288,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3289,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3290,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3291,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3292,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3293,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3294,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3295,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3296,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3297,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3298,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +3299,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +3300,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +3301,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +3302,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +3303,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +3304,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +3305,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +3306,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +3307,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +3308,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +3309,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +3310,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +3311,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +3312,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +3313,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +3314,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3315,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3316,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +3317,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +3318,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +3319,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +3320,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +3321,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +3322,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +3323,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +3324,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +3325,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,, +3326,0.5,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +3327,0.5,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +3328,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,, +3329,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,, +3330,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,, +3331,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +3332,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +3333,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +3334,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +3335,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +3336,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +3337,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +3338,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +3339,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +3340,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +3341,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +3342,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +3343,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3344,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3345,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3346,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3347,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3348,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3349,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3350,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3351,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3352,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3353,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3354,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3355,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3356,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3357,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3358,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3359,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,, +3360,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,, +3361,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,, +3362,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,, +3363,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,, +3364,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,, +3365,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,, +3366,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,, +3367,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,, +3368,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3369,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3370,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,, +3371,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,, +3372,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,, +3373,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3374,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3375,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3376,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3377,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +3378,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +3379,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +3380,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +3381,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +3382,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3383,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3384,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3385,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3386,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3387,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3388,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3389,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3390,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3391,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3392,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,, +3393,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,, +3394,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3395,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3396,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3397,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3398,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3399,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3400,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3401,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3402,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3403,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3404,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3405,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3406,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3407,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3408,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3409,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3410,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3411,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3412,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,, +3413,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,, +3414,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,, +3415,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3416,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3417,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3418,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3419,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3420,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3421,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,, +3422,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3423,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3424,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3425,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3426,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3427,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3428,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,, +3429,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,, +3430,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,, +3431,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3432,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3433,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,, +3434,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3435,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3436,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3437,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3438,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3439,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +3440,0.5,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,, +3441,0.5,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,, +3442,0.5,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +3443,0.5,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +3444,0.5,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +3445,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,, +3446,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +3447,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +3448,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +3449,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +3450,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +3451,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3452,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3453,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3454,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3455,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,, +3456,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,, +3457,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3458,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3459,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3460,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,, +3461,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,, +3462,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,, +3463,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,, +3464,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3465,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3466,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,, +3467,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,, +3468,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,, +3469,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3470,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3471,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3472,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3473,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3474,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3475,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3476,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3477,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3478,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3479,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3480,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3481,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,, +3482,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,, +3483,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,, +3484,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,, +3485,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,, +3486,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,, +3487,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3488,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3489,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3490,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3491,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3492,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3493,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3494,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3495,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3496,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3497,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3498,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3499,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,, +3500,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3501,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3502,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3503,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +3504,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +3505,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3506,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3507,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3508,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3509,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,, +3510,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,, +3511,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3512,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3513,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3514,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3515,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3516,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3517,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3518,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3519,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3520,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3521,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3522,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3523,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3524,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3525,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3526,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3527,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3528,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3529,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3530,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3531,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3532,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3533,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3534,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3535,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3536,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3537,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3538,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3539,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3540,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3541,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +3542,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,, +3543,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,, +3544,0.5,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,, +3545,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +3546,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +3547,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +3548,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3549,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3550,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3551,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3552,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3553,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3554,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3555,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3556,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,, +3557,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3558,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3559,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3560,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3561,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3562,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3563,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3564,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3565,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3566,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3567,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3568,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3569,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3570,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3571,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3572,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3573,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3574,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +3575,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +3576,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +3577,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +3578,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,, +3579,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,, +3580,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +3581,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +3582,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +3583,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3584,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3585,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3586,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3587,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +3588,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +3589,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +3590,0.5,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +3591,0.5,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +3592,0.6,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,, +3593,0.7,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,, +3594,0.7,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,, +3595,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,, +3596,0.6,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +3597,0.6,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +3598,0.5,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,, +3599,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +3600,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +3601,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +3602,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3603,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3604,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3605,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3606,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3607,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +3608,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +3609,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +3610,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +3611,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +3612,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +3613,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +3614,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +3615,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +3616,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +3617,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +3618,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +3619,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +3620,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3621,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3622,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3623,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3624,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3625,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3626,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,, +3627,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,, +3628,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,, +3629,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,, +3630,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,, +3631,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3632,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3633,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3634,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3635,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3636,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3637,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3638,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3639,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3640,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3641,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3642,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3643,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,, +3644,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3645,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3646,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3647,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3648,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3649,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3650,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3651,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3652,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3653,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3654,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3655,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3656,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,, +3657,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,, +3658,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,, +3659,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,, +3660,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,, +3661,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3662,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3663,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3664,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +3665,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +3666,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +3667,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +3668,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +3669,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +3670,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +3671,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3672,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3673,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3674,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3675,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3676,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3677,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3678,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3679,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3680,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3681,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3682,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3683,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3684,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3685,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3686,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3687,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3688,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3689,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +3690,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +3691,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +3692,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +3693,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +3694,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3695,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3696,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3697,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3698,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3699,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3700,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3701,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,, +3702,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,, +3703,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3704,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3705,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3706,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3707,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3708,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3709,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3710,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3711,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3712,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3713,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3714,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3715,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3716,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3717,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3718,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3719,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3720,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3721,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3722,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3723,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3724,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3725,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3726,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3727,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3728,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3729,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3730,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3731,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3732,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3733,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3734,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3735,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3736,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3737,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3738,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3739,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3740,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3741,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3742,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3743,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,, +3744,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,, +3745,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,, +3746,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,, +3747,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,, +3748,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3749,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3750,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3751,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3752,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3753,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3754,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3755,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3756,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3757,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3758,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3759,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3760,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3761,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3762,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3763,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3764,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3765,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3766,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3767,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3768,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3769,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3770,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +3771,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +3772,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +3773,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +3774,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +3775,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +3776,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +3777,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +3778,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +3779,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,, +3780,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,, +3781,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,, +3782,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,, +3783,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,, +3784,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +3785,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3786,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3787,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3788,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3789,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3790,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3792,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3793,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3794,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3796,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3797,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3798,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3799,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3800,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3801,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3802,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3803,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,, +3804,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,, +3805,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,, +3806,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,, +3807,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,, +3808,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3809,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3810,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3811,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3812,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3813,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3814,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,, +3815,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,, +3816,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,, +3817,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,, +3818,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3819,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3820,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,, +3821,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3822,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3823,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3824,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3825,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3826,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3827,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3828,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3829,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3830,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3832,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3833,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3834,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3835,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3836,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3837,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3838,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3839,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3840,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3841,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3842,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3843,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3844,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3845,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3846,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3847,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3848,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3849,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3850,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3851,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3852,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3853,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3854,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3855,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3856,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3857,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3858,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3859,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3860,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3861,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3862,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3863,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3864,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3865,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3866,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3867,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3868,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3869,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3870,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3871,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,, +3872,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3873,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3874,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +3875,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +3876,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +3877,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +3878,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +3879,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +3880,0.5,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +3881,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,, +3882,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,, +3883,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +3884,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +3885,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +3886,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3887,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3888,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3889,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3890,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3891,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3892,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3893,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3894,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3895,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3896,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +3897,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +3898,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +3899,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +3900,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +3901,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +3902,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +3903,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +3904,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +3905,0.5,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +3906,0.5,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +3907,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,, +3908,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +3909,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +3910,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +3911,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +3912,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +3913,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3914,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3915,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3916,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3917,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3918,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3919,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3920,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,, +3921,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,, +3922,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3923,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3924,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3925,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3926,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3927,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3928,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3929,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3930,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3931,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3932,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3933,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3934,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3935,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3936,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3937,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3938,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3939,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3940,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3941,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3942,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3943,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3944,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3945,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3946,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3947,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3948,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3949,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3950,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3951,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +3952,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,, +3953,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3954,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3955,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3956,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +3957,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +3958,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +3959,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +3960,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +3961,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +3962,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3963,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3964,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3965,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3966,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3967,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3968,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3969,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3970,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3971,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3972,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3973,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +3974,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +3975,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +3976,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +3977,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +3978,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +3979,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +3980,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +3981,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +3982,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +3983,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +3984,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +3985,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +3986,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +3987,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +3988,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3989,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3990,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3991,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3992,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3993,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3994,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3995,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3996,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3997,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +3998,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +3999,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +4000,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +4001,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +4002,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +4003,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +4004,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +4005,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +4006,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +4007,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +4008,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +4009,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +4010,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +4011,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +4012,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +4013,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +4014,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +4015,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +4016,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4017,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4018,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4019,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4020,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4021,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +4022,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +4023,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +4024,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +4025,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +4026,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +4027,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +4028,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +4029,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +4030,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +4031,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +4032,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +4033,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +4034,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4035,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4036,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4037,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4038,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4039,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +4040,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +4041,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +4042,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +4043,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +4044,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +4045,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +4046,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +4047,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +4048,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,, +4049,0.5,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +4050,0.5,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +4051,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,, +4052,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,, +4053,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,, +4054,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +4055,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +4056,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +4057,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +4058,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +4059,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +4060,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,, +4061,0.5,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +4062,0.5,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +4063,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,, +4064,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,, +4065,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,, +4066,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,, +4067,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +4068,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +4069,0.6,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,, +4070,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,, +4071,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,, +4072,0.7,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,, +4073,0.7,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,, +4074,0.7,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,, +4075,0.6,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +4076,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,, +4077,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,, +4078,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +4079,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +4080,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +4081,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +4082,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +4083,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +4084,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +4085,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +4086,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +4087,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4088,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4089,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4090,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +4091,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +4092,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +4093,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +4094,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +4095,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +4096,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,, +4097,0.5,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +4098,0.5,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +4099,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +4100,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +4101,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +4102,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +4103,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4104,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4105,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4106,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,, +4107,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,, +4108,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,, +4109,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,, +4110,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,, +4111,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4112,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4113,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4114,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4115,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4116,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4117,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4118,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4119,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4120,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4121,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4122,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4123,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,, +4124,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,, +4125,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,, +4126,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,, +4127,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,, +4128,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,, +4129,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4130,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4131,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4132,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4133,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4134,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4135,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4136,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4137,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4138,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4139,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4140,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4141,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4142,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4143,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4144,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4145,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4146,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4147,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4148,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4149,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4150,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4151,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4152,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4153,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4154,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4155,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4156,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4157,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4158,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4159,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4160,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4161,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4162,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4163,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4164,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4165,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4166,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4167,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4168,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4169,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4170,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4171,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4172,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4173,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4174,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4175,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4176,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4177,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4178,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4179,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4180,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4181,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4182,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4183,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4184,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4185,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4186,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4188,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4189,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4190,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4191,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4192,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4193,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4194,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4195,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4196,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4197,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4198,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4199,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4200,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4201,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4202,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4203,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4204,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4205,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,, +4206,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,, +4207,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4208,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4209,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4210,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4211,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4212,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4213,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4214,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,, +4215,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,, +4216,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4217,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4218,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4219,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4220,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4221,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4222,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4223,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4224,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4225,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4226,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4228,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4229,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4230,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4231,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4232,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4233,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4234,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4235,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4236,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4237,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4238,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4239,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4240,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4241,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4242,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4243,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4244,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,, +4245,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,, +4246,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4247,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4248,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4249,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4250,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4251,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4252,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4253,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4254,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4255,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,, +4256,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4257,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4258,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4259,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4260,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4261,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4262,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4263,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4264,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4265,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4266,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4267,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4268,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4269,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4270,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4271,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,, +4272,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,, +4273,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,, +4274,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,, +4275,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,, +4276,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4277,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4278,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4279,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4280,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4281,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,, +4282,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,, +4283,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4284,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,, +4285,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4286,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4287,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4288,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4289,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4290,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4291,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,, +4292,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4293,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4294,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4295,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,, +4296,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,, +4297,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4298,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4299,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4300,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4301,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4302,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4303,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4304,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4305,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4306,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4307,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4308,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4309,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4310,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,, +4311,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,, +4312,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4313,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4314,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4315,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4316,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4317,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4318,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4319,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,, +4320,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,, +4321,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,, +4322,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,, +4323,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,, +4324,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4325,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4326,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4327,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4328,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4329,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4330,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4331,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4332,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4333,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4334,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4335,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4336,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4337,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4338,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4339,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4340,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4341,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4342,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4343,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4344,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4345,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4346,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4347,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4348,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4349,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4350,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4351,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4352,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4353,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4354,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4355,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4356,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4357,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4358,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,, +4359,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,, +4360,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,, +4361,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,, +4362,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,, +4363,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4364,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4365,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4366,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4367,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4368,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4369,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4370,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4371,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4372,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,, +4373,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4374,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4375,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4376,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +4377,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +4378,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4379,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4380,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4381,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4382,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4383,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4384,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4385,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4386,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4387,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4388,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4389,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4390,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4391,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4392,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4393,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4394,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4395,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4396,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4397,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4398,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4399,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4400,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4401,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4402,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4403,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4404,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4405,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4406,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,, +4407,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,, +4408,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4409,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +4410,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +4411,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +4412,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4413,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4414,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4415,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4416,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4417,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4418,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4419,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4420,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4421,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4422,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4423,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4424,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4425,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4426,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4427,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4428,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4429,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4430,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,, +4431,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,, +4432,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,, +4433,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4434,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4435,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4436,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4437,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4438,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4439,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4440,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4441,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4442,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4443,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4444,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4445,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4446,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4447,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4448,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,, +4449,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,, +4450,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,, +4451,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4452,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4453,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,, +4454,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,, +4455,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,, +4456,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4457,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4458,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4459,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4460,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4461,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4462,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4463,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4464,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4465,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4466,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,, +4467,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,, +4468,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4469,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4470,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4471,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4472,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4473,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4474,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +4475,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +4476,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +4477,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +4478,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +4479,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +4480,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +4481,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4482,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4483,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4484,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,, +4485,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,, +4486,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4487,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4488,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4489,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4490,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4491,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4492,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4493,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4494,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4495,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,, +4496,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,, +4497,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,, +4498,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,, +4499,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,, +4500,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,, +4501,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,, +4502,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,, +4503,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,, +4504,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,, +4505,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,, +4506,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,, +4507,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4508,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4509,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4510,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4511,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4512,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4513,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4514,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,, +4515,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,, +4516,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,, +4517,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4518,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4519,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,, +4520,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,, +4521,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,, +4522,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,, +4523,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4524,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4525,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4526,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4527,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4528,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4529,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,, +4530,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,, +4531,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,, +4532,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,, +4533,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,, +4534,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4535,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4536,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4537,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4538,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4539,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4540,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4541,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4542,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4543,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4544,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4545,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4546,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4547,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4548,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4549,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4550,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,, +4551,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,, +4552,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,, +4553,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,, +4554,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,, +4555,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,, +4556,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,, +4557,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,, +4558,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,, +4559,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4560,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4561,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,, +4562,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4563,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4564,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4565,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4566,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4567,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4568,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4569,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4570,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4571,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4572,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4573,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4574,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4575,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4576,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4578,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4579,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4580,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4581,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4582,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4583,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4584,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4585,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4586,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4587,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4588,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4589,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4590,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4591,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4592,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4593,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4594,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4595,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4596,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4597,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4598,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4599,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4600,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4601,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4602,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4603,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4604,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4605,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4606,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4607,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4608,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4609,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4610,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4611,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4612,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,, +4613,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,, +4614,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,, +4615,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,, +4616,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4617,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4618,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4619,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,, +4620,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,, +4621,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4622,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4623,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4624,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +4625,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +4626,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +4627,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +4628,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +4629,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +4630,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +4631,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +4632,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +4633,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +4634,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +4635,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +4636,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +4637,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +4638,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +4639,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4640,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4641,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4642,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4643,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,, +4644,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,, +4645,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4646,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4647,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4648,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4649,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4650,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4651,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4652,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4653,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4654,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4655,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4656,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4657,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4658,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4659,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4660,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4661,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4662,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4663,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4664,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4665,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4666,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4667,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,, +4668,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,, +4669,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,, +4670,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,, +4671,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,, +4672,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,, +4673,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,, +4674,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,, +4675,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4676,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4677,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4678,0.5,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +4679,0.8,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,, +4680,0.8,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,, +4681,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,, +4682,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,, +4683,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,, +4684,0.6,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +4685,0.7,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,, +4686,0.7,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,, +4687,0.7,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,, +4688,0.8,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,,, +4689,0.8,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,,, +4690,0.9,0.7,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,, +4691,0.9,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,, +4692,0.9,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,, +4693,0.9,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,, +4694,0.9,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,, +4695,0.9,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,, +4696,0.9,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,, +4697,0.8,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,,, +4698,0.8,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,,, +4699,0.7,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,, +4700,0.5,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +4701,0.5,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +4702,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +4703,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4704,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4705,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4706,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4707,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4708,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +4709,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,, +4710,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,, +4711,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,, +4712,0.6,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,, +4713,0.6,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,, +4714,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,, +4715,0.7,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,, +4716,0.7,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,, +4717,0.7,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,, +4718,0.7,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,, +4719,0.7,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,, +4720,0.7,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,, +4721,0.6,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +4722,0.6,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +4723,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +4724,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4725,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4726,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4727,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,, +4728,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,, +4729,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,, +4730,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,, +4731,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,, +4732,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4733,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4734,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4735,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4736,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4737,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4738,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4739,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +4740,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +4741,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +4742,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +4743,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +4744,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,, +4745,0.5,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +4746,0.5,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +4747,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +4748,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +4749,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +4750,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4751,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4752,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4753,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4754,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4755,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4756,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4757,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4758,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4759,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,, +4760,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,, +4761,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,, +4762,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,, +4763,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,, +4764,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,, +4765,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4766,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4767,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4768,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,, +4769,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4770,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4771,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4772,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4773,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4776,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4777,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4778,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4779,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4780,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4781,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4782,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4783,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4784,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4785,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4786,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4787,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4788,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4789,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4790,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4792,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4793,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4794,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4795,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,, +4796,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4797,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,, +4798,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4799,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4800,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4801,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4802,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4803,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4804,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4805,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,, +4806,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,, +4807,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,, +4808,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,, +4809,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,, +4810,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4811,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4812,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4813,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4814,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4815,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4816,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4817,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4818,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4819,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4820,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,, +4821,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,, +4822,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4823,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +4824,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +4825,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +4826,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +4827,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +4828,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +4829,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +4830,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +4831,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +4832,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +4833,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +4834,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4835,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4836,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4837,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4838,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4839,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4840,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4841,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4842,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4843,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,, +4844,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4845,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4846,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4847,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4848,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4849,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4850,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4851,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4852,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,, +4853,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +4854,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +4855,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4856,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4857,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4858,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4859,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4860,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4861,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4862,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4863,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4864,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,, +4865,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4866,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4867,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4868,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4869,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4870,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4871,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4872,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4873,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4874,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4875,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4876,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4877,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4878,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4879,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4880,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4881,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4882,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4883,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4884,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4885,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4886,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4887,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4888,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4889,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,, +4890,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,, +4891,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,, +4892,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4893,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4894,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4895,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4896,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4897,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4898,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4899,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4900,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4901,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4902,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4903,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4904,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4905,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4906,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4907,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4908,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4909,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4910,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +4911,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +4912,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +4913,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +4914,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +4915,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4916,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4917,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4918,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4919,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,, +4920,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,, +4921,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4922,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4923,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4924,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4925,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4926,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4927,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4928,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4929,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4930,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4931,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4932,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4933,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4934,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,, +4935,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,, +4936,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4937,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4938,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4939,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4940,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4941,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4942,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4943,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4944,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4945,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4946,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4947,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4948,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4949,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,, +4950,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,, +4951,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,, +4952,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,, +4953,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,, +4954,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4955,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4956,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4957,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4958,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,, +4959,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,, +4960,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4961,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4962,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4963,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4964,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4965,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4966,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4967,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4968,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4969,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,, +4970,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4971,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4972,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4973,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4974,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4975,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4976,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4977,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4978,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4979,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4980,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4981,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4982,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4983,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4984,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4985,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4986,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4987,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4988,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4989,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4990,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4991,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4992,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4993,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4994,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4995,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +4996,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,, +4997,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4998,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +4999,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5000,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5001,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5002,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5003,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5004,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5005,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5006,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +5007,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +5008,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5009,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5010,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5011,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5012,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5013,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5014,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5015,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,, +5016,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,, +5017,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,, +5018,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,, +5019,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,, +5020,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,, +5021,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5022,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5023,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5024,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,, +5025,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,, +5026,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,, +5027,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,, +5028,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,, +5029,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5030,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +5031,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +5032,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +5033,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +5034,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +5035,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +5036,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +5037,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +5038,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +5039,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5040,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5041,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5042,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5043,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5044,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5045,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5046,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5047,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5048,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5049,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5050,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5051,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5052,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5053,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5054,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5055,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5056,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5057,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5058,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5059,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,, +5060,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5061,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5062,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5063,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5064,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5065,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,, +5066,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5067,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5068,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5069,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +5070,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +5071,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +5072,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +5073,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +5074,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +5075,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +5076,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +5077,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,, +5078,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,, +5079,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,, +5080,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +5081,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +5082,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +5083,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5084,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5085,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5086,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5087,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5088,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5089,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5090,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5091,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5092,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5093,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,, +5094,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,, +5095,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5096,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5097,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5098,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5099,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5100,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5101,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5102,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5103,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5104,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5105,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5106,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5107,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5108,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5109,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5110,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5111,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5112,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5113,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5114,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5115,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5116,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5117,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5118,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5119,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5120,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5121,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5122,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5123,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5124,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5125,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5126,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5127,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5128,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5129,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5130,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5131,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5132,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5133,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5134,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5135,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5136,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5137,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5138,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5139,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5140,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5141,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5142,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5143,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5144,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5145,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5146,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5147,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5148,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5149,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5150,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,, +5151,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,, +5152,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,, +5153,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5154,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5155,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5156,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5157,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5158,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5159,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5160,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5161,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5162,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5163,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5164,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5165,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5166,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5167,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5168,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +5169,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +5170,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +5171,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +5172,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +5173,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +5174,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +5175,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +5176,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +5177,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +5178,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +5179,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5180,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5181,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5182,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,, +5183,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5184,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5185,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5186,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5187,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5188,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5189,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5190,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5191,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5192,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5193,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5194,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5195,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5196,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5197,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,, +5198,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5199,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5200,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5201,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5202,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5203,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5204,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5205,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5206,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5207,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,, +5208,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,, +5209,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,, +5210,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5211,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5212,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5213,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5214,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5215,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5216,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5217,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5218,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5219,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5220,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5221,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5222,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5223,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5224,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5225,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5226,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5228,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5229,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5230,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5231,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5232,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5233,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,, +5234,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5235,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5236,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5237,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5238,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5239,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5240,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5241,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5242,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5243,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5244,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5245,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5246,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5247,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5248,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5249,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5250,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5251,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,, +5252,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5253,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5254,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5255,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5256,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5257,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5258,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5259,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5260,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5261,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5262,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5263,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5264,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5265,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5266,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5267,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5268,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5269,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5270,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,, +5271,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,, +5272,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5273,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5274,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5275,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5276,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5277,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5278,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5279,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5280,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5281,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5282,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,, +5283,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,, +5284,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,, +5285,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5286,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5287,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5288,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5289,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5290,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5291,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5292,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5293,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5294,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5295,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5296,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5297,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5298,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5299,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5300,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5301,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5302,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5303,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5304,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5305,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,, +5306,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5307,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5308,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5309,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5310,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5311,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5312,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5313,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5314,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5315,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5316,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5317,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +5318,0.6,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +5319,0.6,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +5320,0.5,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +5321,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +5322,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +5323,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +5324,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +5325,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +5326,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5327,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5328,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5329,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +5330,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +5331,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +5332,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +5333,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +5334,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +5335,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +5336,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +5337,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +5338,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +5339,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5340,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5341,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5342,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5343,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5344,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5345,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5346,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5347,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,, +5348,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5349,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5350,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5351,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5352,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5353,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5354,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5355,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5356,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5357,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5358,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5359,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5360,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5361,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5362,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5363,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5364,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5365,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5366,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5367,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5368,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5369,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5370,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5371,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5372,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5373,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5374,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5375,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5376,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5377,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5378,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5379,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5380,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,, +5381,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,, +5382,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,, +5383,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,, +5384,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5385,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5386,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5387,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5388,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5389,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,, +5390,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,, +5391,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,, +5392,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5393,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5394,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5395,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5396,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5397,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5398,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5399,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5400,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5401,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5402,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5403,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5404,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5405,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5406,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5407,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5408,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5409,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5410,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5411,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5412,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5413,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5414,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5415,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5416,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5417,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,, +5418,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,, +5419,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5420,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5421,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5422,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +5423,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +5424,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +5425,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +5426,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +5427,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +5428,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +5429,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +5430,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +5431,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +5432,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,, +5433,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,, +5434,0.6,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +5435,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,, +5436,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,, +5437,0.7,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,, +5438,0.7,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,, +5439,0.7,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,, +5440,0.7,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,, +5441,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,, +5442,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,, +5443,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,, +5444,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.2,,, +5445,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.2,,, +5446,0.6,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +5447,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,, +5448,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,, +5449,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +5450,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +5451,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +5452,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5453,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5454,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5455,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5456,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,, +5457,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,, +5458,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5459,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5460,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5461,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5462,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5463,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5464,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5465,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5466,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5467,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5468,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5469,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5470,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5471,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5472,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5473,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5474,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5475,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5476,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5477,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5478,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5479,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5480,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5481,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5482,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,, +5483,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5484,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5485,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +5486,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +5487,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +5488,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,, +5489,0.7,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,, +5490,0.7,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,, +5491,0.6,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +5492,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,, +5493,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,, +5494,0.5,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +5495,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,, +5496,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,, +5497,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,, +5498,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +5499,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +5500,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,, +5501,0.5,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,, +5502,0.5,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,, +5503,0.5,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +5504,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +5505,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +5506,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,, +5507,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,, +5508,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,, +5509,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +5510,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +5511,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +5512,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,, +5513,0.5,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +5514,0.5,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +5515,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +5516,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +5517,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +5518,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +5519,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +5520,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +5521,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +5522,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +5523,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +5524,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +5525,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +5526,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +5527,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +5528,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +5529,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +5530,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +5531,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +5532,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +5533,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +5534,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +5535,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +5536,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +5537,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +5538,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +5539,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5540,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,, +5541,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,, +5542,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,, +5543,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,, +5544,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,, +5545,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5546,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5547,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5548,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5549,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5550,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5551,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +5552,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +5553,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +5554,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +5555,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +5556,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +5557,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +5558,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +5559,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +5560,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +5561,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +5562,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +5563,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +5564,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5565,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5566,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +5567,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +5568,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +5569,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +5570,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +5571,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +5572,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +5573,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +5574,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +5575,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +5576,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +5577,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +5578,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,, +5579,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,, +5580,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,, +5581,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,, +5582,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,, +5583,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,, +5584,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,, +5585,0.6,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +5586,0.6,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +5587,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,, +5588,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +5589,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +5590,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +5591,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +5592,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +5593,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,, +5594,0.5,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +5595,0.5,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +5596,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,, +5597,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +5598,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +5599,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +5600,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +5601,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +5602,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +5603,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,, +5604,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,, +5605,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +5606,0.5,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,, +5607,0.5,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,, +5608,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +5609,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +5610,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +5611,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5612,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5613,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5614,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5615,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5616,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5617,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5618,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5619,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5620,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5621,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,, +5622,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,, +5623,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5624,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +5625,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +5626,0.7,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,, +5627,1.0,0.8,0.8,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,,, +5628,1.0,0.8,0.8,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,,, +5629,1.1,0.9,0.8,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,, +5630,1.2,0.9,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,,, +5631,1.2,0.9,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,,, +5632,1.2,0.9,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,,, +5633,1.2,0.9,0.9,0.8,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,,, +5634,1.2,0.9,0.9,0.8,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,,, +5635,1.1,0.8,0.8,0.8,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,,, +5636,0.9,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,, +5637,0.9,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,, +5638,0.9,0.7,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,, +5639,0.8,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,,, +5640,0.8,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,,, +5641,0.9,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,, +5642,1.0,0.8,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,,, +5643,1.0,0.8,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,,, +5644,0.9,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,, +5645,0.9,0.7,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,, +5646,0.9,0.7,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,, +5647,0.8,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,,, +5648,0.8,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,,, +5649,0.8,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,,, +5650,0.8,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,,, +5651,0.8,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,, +5652,0.8,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,, +5653,0.9,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,, +5654,1.0,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,,, +5655,1.0,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,,, +5656,1.0,0.8,0.8,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,,, +5657,1.1,0.8,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,,, +5658,1.1,0.8,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,,, +5659,1.0,0.8,0.8,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,,, +5660,1.0,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,,, +5661,1.0,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,,, +5662,0.9,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,, +5663,0.9,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,, +5664,0.9,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,, +5665,0.8,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,,, +5666,0.7,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,, +5667,0.7,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,, +5668,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,, +5669,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,, +5670,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,, +5671,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,, +5672,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,, +5673,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,, +5674,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,, +5675,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,, +5676,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,, +5677,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,, +5678,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +5679,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +5680,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +5681,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +5682,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +5683,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5684,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5685,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5686,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5687,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5688,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5689,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5690,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5691,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5692,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5693,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5694,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5695,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,, +5696,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5697,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5698,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,, +5699,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5700,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5701,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5702,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,, +5703,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,, +5704,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5705,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5706,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5707,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5708,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5709,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5710,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5711,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5712,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5713,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,, +5714,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,, +5715,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,, +5716,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5717,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +5718,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +5719,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +5720,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +5721,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +5722,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +5723,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,, +5724,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,, +5725,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +5726,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +5727,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +5728,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +5729,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +5730,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +5731,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +5732,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +5733,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +5734,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +5735,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +5736,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +5737,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +5738,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +5739,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +5740,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +5741,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +5742,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +5743,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5744,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5745,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5746,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5747,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +5748,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +5749,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +5750,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,, +5751,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,, +5752,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +5753,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +5754,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +5755,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +5756,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5757,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5758,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +5759,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +5760,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +5761,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +5762,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +5763,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +5764,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +5765,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +5766,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +5767,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +5768,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +5769,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +5770,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +5771,0.5,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,, +5772,0.5,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,, +5773,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +5774,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,, +5775,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,, +5776,0.7,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,, +5777,0.8,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,,, +5778,0.8,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,,, +5779,0.8,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,, +5780,0.7,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,, +5781,0.7,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,, +5782,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,, +5783,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +5784,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +5785,0.6,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +5786,0.7,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,, +5787,0.7,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,, +5788,0.7,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,, +5789,0.6,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +5790,0.6,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +5791,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,, +5792,0.7,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,, +5793,0.7,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,, +5794,0.7,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,, +5795,0.8,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,, +5796,0.8,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,, +5797,0.7,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,, +5798,0.7,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,, +5799,0.7,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,, +5800,0.8,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,, +5801,0.8,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,, +5802,0.8,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,, +5803,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,, +5804,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,, +5805,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,, +5806,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,, +5807,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +5808,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +5809,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +5810,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +5811,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +5812,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5813,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5814,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5815,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5816,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5817,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5818,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5819,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5820,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5821,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5822,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5823,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5824,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5825,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5826,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5827,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5828,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5829,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5830,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5831,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,, +5832,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,, +5833,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,, +5834,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5835,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5836,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5837,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5838,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5839,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5840,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5841,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5842,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5843,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5844,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5845,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5846,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5847,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5848,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,, +5849,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,, +5850,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,, +5851,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,, +5852,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,, +5853,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,, +5854,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,, +5855,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,, +5856,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,, +5857,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5858,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5859,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5860,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5861,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5862,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5863,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5864,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5865,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5866,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5867,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5868,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5869,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,, +5870,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,, +5871,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,, +5872,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5873,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5874,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5875,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5876,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5877,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5878,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5879,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,, +5880,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,, +5881,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5882,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5883,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5884,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5885,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5886,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5887,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5888,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5889,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5890,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5891,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5892,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5893,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5894,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5895,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5896,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5897,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5898,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5899,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5900,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,, +5901,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,, +5902,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,, +5903,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,, +5904,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,, +5905,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5906,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5907,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5908,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,, +5909,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,, +5910,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,, +5911,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5912,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5913,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5914,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,, +5915,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,, +5916,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,, +5917,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,, +5918,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,, +5919,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,, +5920,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5921,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5922,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5923,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +5924,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,, +5925,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,, +5926,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,, +5927,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5928,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5929,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5930,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5931,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5932,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5933,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5934,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5935,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5936,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5937,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5938,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5939,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5940,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5941,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5942,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5943,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5944,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5945,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5946,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5947,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +5948,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +5949,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +5950,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +5951,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +5952,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +5953,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +5954,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +5955,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +5956,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +5957,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +5958,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +5959,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +5960,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +5961,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +5962,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +5963,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,, +5964,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,, +5965,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,, +5966,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +5967,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +5968,0.6,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,, +5969,0.7,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,, +5970,0.7,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,, +5971,0.7,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,, +5972,0.7,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,, +5973,0.7,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,, +5974,0.8,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,,, +5975,0.9,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,, +5976,0.9,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,, +5977,0.9,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,, +5978,1.0,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,,, +5979,1.0,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,,, +5980,1.0,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,,, +5981,1.0,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,,, +5982,1.0,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,,, +5983,0.9,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,,, +5984,0.9,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,,, +5985,0.9,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,,, +5986,0.9,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,, +5987,0.8,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,,, +5988,0.8,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,,, +5989,0.8,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,, +5990,0.7,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,, +5991,0.7,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,, +5992,0.6,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +5993,0.5,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +5994,0.5,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +5995,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +5996,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +5997,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +5998,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +5999,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +6000,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +6001,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +6002,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +6003,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +6004,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +6005,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,, +6006,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,, +6007,0.6,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +6008,0.6,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,, +6009,0.6,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,, +6010,0.6,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,, +6011,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.2,,, +6012,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.2,,, +6013,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,, +6014,0.7,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,, +6015,0.7,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,, +6016,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,, +6017,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,, +6018,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,, +6019,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,, +6020,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +6021,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +6022,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +6023,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +6024,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +6025,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +6026,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6027,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6028,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,, +6029,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6030,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6031,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6032,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6033,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6034,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6035,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6036,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6037,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6038,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,, +6039,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,, +6040,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,, +6041,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6042,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6043,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6044,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,, +6045,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,, +6046,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6047,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6048,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6049,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6050,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6051,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6052,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6053,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6054,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6055,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6056,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6057,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6058,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6059,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6060,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6061,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +6062,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +6063,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +6064,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +6065,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +6066,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +6067,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +6068,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +6069,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +6070,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +6071,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +6072,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +6073,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,, +6074,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,, +6075,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,, +6076,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +6077,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +6078,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +6079,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +6080,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +6081,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +6082,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +6083,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +6084,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +6085,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,, +6086,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,, +6087,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,, +6088,0.6,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +6089,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,, +6090,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,, +6091,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +6092,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +6093,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +6094,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6095,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6096,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6097,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6098,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6099,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6100,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6101,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6102,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6103,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,, +6104,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,, +6105,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,, +6106,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6107,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6108,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6109,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6110,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6111,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6112,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,, +6113,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,, +6114,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,, +6115,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6116,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6117,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6118,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6119,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6120,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6121,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6122,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6123,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6124,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6125,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6126,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6127,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6128,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6129,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6130,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6131,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6132,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6133,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6134,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6135,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6136,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +6137,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +6138,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +6139,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +6140,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +6141,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +6142,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +6143,0.7,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,, +6144,0.7,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,, +6145,0.8,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,,, +6146,0.9,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,, +6147,0.9,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,, +6148,0.9,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,, +6149,0.9,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,, +6150,0.9,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,, +6151,0.9,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,, +6152,0.8,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,,, +6153,0.8,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,,, +6154,0.8,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,,, +6155,0.8,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,,, +6156,0.8,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,,, +6157,0.9,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,, +6158,0.9,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,, +6159,0.9,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,, +6160,0.9,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,, +6161,1.0,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,,, +6162,1.0,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,,, +6163,1.0,0.8,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,,, +6164,1.0,0.8,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,0.4,,, +6165,1.0,0.8,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,0.4,,, +6166,0.9,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,, +6167,0.8,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,,, +6168,0.8,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,,, +6169,0.8,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,,, +6170,0.9,0.7,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,, +6171,0.9,0.7,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,, +6172,0.8,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,,, +6173,0.8,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,, +6174,0.8,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,, +6175,0.7,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,, +6176,0.7,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,, +6177,0.7,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,, +6178,0.8,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,,, +6179,1.0,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,,, +6180,1.0,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,,, +6181,1.1,0.8,0.8,0.8,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,,, +6182,1.2,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,,, +6183,1.2,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,,, +6184,1.1,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,, +6185,1.1,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,, +6186,1.1,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,, +6187,1.1,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,, +6188,1.1,0.8,0.8,0.8,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,,, +6189,1.1,0.8,0.8,0.8,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,,, +6190,0.9,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,, +6191,0.8,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,, +6192,0.8,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,, +6193,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.2,,, +6194,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,, +6195,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,, +6196,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +6197,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +6198,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +6199,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +6200,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,, +6201,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,, +6202,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,, +6203,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.2,,, +6204,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.2,,, +6205,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,, +6206,0.7,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,, +6207,0.7,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,, +6208,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +6209,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +6210,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +6211,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +6212,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +6213,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +6214,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +6215,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +6216,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +6217,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +6218,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +6219,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +6220,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +6221,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +6222,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +6223,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +6224,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +6225,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +6226,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +6227,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,, +6228,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,, +6229,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,, +6230,0.6,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,, +6231,0.6,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,, +6232,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,, +6233,0.7,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,, +6234,0.7,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,, +6235,0.6,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,, +6236,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,, +6237,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,, +6238,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,, +6239,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +6240,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +6241,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +6242,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +6243,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +6244,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +6245,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +6246,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +6247,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +6248,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +6249,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +6250,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +6251,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +6252,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +6253,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +6254,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +6255,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +6256,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +6257,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +6258,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +6259,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +6260,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6261,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6262,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6263,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6264,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6265,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6266,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6267,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6268,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +6269,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +6270,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +6271,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +6272,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +6273,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +6274,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +6275,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +6276,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +6277,0.6,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,, +6278,0.8,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,, +6279,0.8,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,, +6280,0.7,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,, +6281,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,, +6282,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,, +6283,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,, +6284,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,, +6285,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,, +6286,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.2,,, +6287,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,, +6288,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,, +6289,0.7,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,, +6290,0.7,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,, +6291,0.7,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,, +6292,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.2,,, +6293,0.6,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +6294,0.6,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +6295,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.2,,, +6296,0.7,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,, +6297,0.7,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,, +6298,0.7,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,, +6299,0.8,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,,, +6300,0.8,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,,, +6301,0.8,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,,, +6302,0.8,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,, +6303,0.8,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,, +6304,0.8,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,,, +6305,0.8,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,,, +6306,0.8,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,,, +6307,0.7,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,, +6308,0.6,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +6309,0.6,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +6310,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,, +6311,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +6312,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +6313,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +6314,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +6315,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +6316,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6317,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6318,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6319,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6320,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6321,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6322,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6323,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6324,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6325,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6326,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6327,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6328,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6329,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6330,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6331,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6332,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6333,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6334,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6335,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,, +6336,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,, +6337,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,, +6338,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,, +6339,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,, +6340,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6341,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6342,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6343,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6344,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6345,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6346,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,, +6347,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,, +6348,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,, +6349,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,, +6350,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,, +6351,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,, +6352,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6353,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6354,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6355,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6356,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,, +6357,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,, +6358,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6359,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6360,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6361,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6362,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6363,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6364,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6365,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +6366,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +6367,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6368,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6369,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6370,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6371,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6372,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6373,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,, +6374,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6375,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6376,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6377,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6378,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6379,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,, +6380,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6381,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6382,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6383,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6384,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6385,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6386,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +6387,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +6388,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6389,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6390,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6391,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6392,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6393,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6394,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6395,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6396,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6397,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,, +6398,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6399,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6400,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6401,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6402,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6403,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,, +6404,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6405,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6406,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +6407,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,, +6408,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,, +6409,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,, +6410,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,, +6411,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,, +6412,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,, +6413,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,, +6414,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,, +6415,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +6416,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +6417,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +6418,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +6419,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +6420,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +6421,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +6422,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +6423,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +6424,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +6425,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +6426,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +6427,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6428,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,, +6429,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,, +6430,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6431,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6432,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6433,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6434,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6435,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6436,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6437,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6438,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6439,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6440,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6441,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6442,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6443,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6444,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6445,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6446,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6447,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6448,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6449,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6450,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6451,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6452,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6453,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6454,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6455,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6456,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6457,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6458,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6459,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6460,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6461,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6462,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6463,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6464,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6465,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6466,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6467,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6468,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6469,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,, +6470,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,, +6471,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,, +6472,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,, +6473,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,, +6474,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,, +6475,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6476,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6477,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6478,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6479,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6480,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6481,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6482,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6483,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6484,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6485,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,, +6486,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,, +6487,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,, +6488,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,, +6489,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,, +6490,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6491,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6492,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6493,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6494,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6495,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6496,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6497,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6498,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6499,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6500,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6501,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6502,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6503,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6504,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6505,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6506,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6507,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6508,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6509,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6510,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6511,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6512,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,, +6513,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,, +6514,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,, +6515,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6516,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6517,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,, +6518,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,, +6519,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,, +6520,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,, +6521,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,, +6522,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,, +6523,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6524,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6525,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6526,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6527,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +6528,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +6529,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +6530,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +6531,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +6532,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +6533,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +6534,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +6535,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +6536,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +6537,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +6538,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +6539,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +6540,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +6541,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +6542,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +6543,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +6544,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6545,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6546,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6547,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6548,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6549,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6550,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6551,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6552,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6553,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,, +6554,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,, +6555,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,, +6556,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6557,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6558,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6559,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6560,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6561,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6562,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6563,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6564,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6565,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,, +6566,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6567,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6568,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6569,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6570,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6571,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +6572,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,, +6573,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,, +6574,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,, +6575,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.2,,, +6576,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.2,,, +6577,0.7,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,, +6578,0.7,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,, +6579,0.7,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,, +6580,0.7,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,, +6581,0.7,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,, +6582,0.7,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,, +6583,0.7,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,, +6584,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.2,,, +6585,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.2,,, +6586,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,, +6587,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +6588,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +6589,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +6590,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +6591,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +6592,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6593,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6594,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6595,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6596,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +6597,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +6598,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +6599,0.6,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +6600,0.6,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +6601,0.6,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +6602,0.6,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +6603,0.6,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +6604,0.7,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,, +6605,0.8,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,,, +6606,0.8,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,,, +6607,0.8,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,, +6608,0.8,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,, +6609,0.8,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,, +6610,0.7,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,, +6611,0.7,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,, +6612,0.7,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,, +6613,0.7,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,, +6614,0.8,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,, +6615,0.8,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,, +6616,0.8,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,,, +6617,0.8,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,,, +6618,0.8,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,,, +6619,0.8,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,, +6620,0.7,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,, +6621,0.7,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,, +6622,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.2,,, +6623,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,, +6624,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,, +6625,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,, +6626,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +6627,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +6628,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +6629,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +6630,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +6631,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +6632,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +6633,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +6634,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +6635,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +6636,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +6637,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +6638,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6639,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6640,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6641,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6642,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6643,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6644,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +6645,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +6646,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +6647,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +6648,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +6649,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6650,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6651,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6652,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6653,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6654,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6655,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6656,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6657,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6658,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6659,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6660,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6661,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6662,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +6663,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +6664,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6665,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6666,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6667,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6668,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6669,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6670,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +6671,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +6672,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +6673,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +6674,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +6675,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +6676,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +6677,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +6678,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +6679,0.5,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,, +6680,0.6,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +6681,0.6,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +6682,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,, +6683,0.7,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,, +6684,0.7,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,, +6685,0.7,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,, +6686,0.6,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,, +6687,0.6,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,, +6688,0.6,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +6689,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,, +6690,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,, +6691,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +6692,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6693,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6694,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6695,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6696,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6697,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6698,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6699,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6700,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6701,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6702,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6703,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6704,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6705,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6706,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6707,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6708,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6709,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6710,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6711,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6712,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,, +6713,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6714,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6715,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6716,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +6717,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +6718,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +6719,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +6720,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +6721,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +6722,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +6723,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +6724,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +6725,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +6726,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +6727,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +6728,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +6729,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +6730,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +6731,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +6732,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +6733,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +6734,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +6735,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +6736,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +6737,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +6738,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +6739,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +6740,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +6741,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +6742,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +6743,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +6744,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +6745,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +6746,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +6747,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +6748,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +6749,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +6750,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +6751,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +6752,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +6753,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +6754,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +6755,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +6756,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +6757,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +6758,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +6759,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +6760,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +6761,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +6762,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +6763,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,, +6764,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,, +6765,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,, +6766,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,, +6767,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,, +6768,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,, +6769,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,, +6770,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +6771,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +6772,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +6773,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +6774,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +6775,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +6776,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +6777,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +6778,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +6779,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +6780,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +6781,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +6782,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +6783,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +6784,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +6785,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +6786,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +6787,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +6788,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +6789,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +6790,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +6791,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +6792,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +6793,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +6794,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +6795,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +6796,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +6797,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +6798,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +6799,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +6800,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +6801,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +6802,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6803,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6804,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6805,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6806,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6807,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6808,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6809,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6810,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6811,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6812,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +6813,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +6814,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +6815,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6816,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6817,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6818,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6819,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6820,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,, +6821,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,, +6822,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,, +6823,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,, +6824,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,, +6825,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,, +6826,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6827,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6828,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6829,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6830,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6831,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6832,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6833,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6834,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6835,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,, +6836,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,, +6837,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,, +6838,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,, +6839,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6840,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6841,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6842,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6843,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6844,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6845,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6846,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6847,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6848,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6849,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6850,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6851,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6852,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6853,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6854,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6855,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6856,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6857,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6858,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6859,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6860,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6861,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6862,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6863,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6864,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6865,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6866,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6867,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6868,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6869,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,, +6870,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,, +6871,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6872,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6873,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6874,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6875,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6876,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6877,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6878,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6879,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6880,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6881,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6882,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6883,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6884,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6885,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6886,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6887,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6888,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6889,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6890,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6891,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6892,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6893,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,, +6894,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,, +6895,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,, +6896,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,, +6897,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,, +6898,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,, +6899,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,, +6900,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,, +6901,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6902,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6903,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6904,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6905,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6906,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6907,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6908,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6909,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6910,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6911,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6912,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6913,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6914,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6915,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6916,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6917,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +6918,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +6919,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,, +6920,0.6,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +6921,0.6,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +6922,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,, +6923,0.7,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,, +6924,0.7,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,, +6925,0.7,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,, +6926,0.7,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,, +6927,0.7,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,, +6928,0.7,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,, +6929,0.7,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,, +6930,0.7,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,, +6931,0.6,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,, +6932,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,, +6933,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,, +6934,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,, +6935,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +6936,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +6937,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +6938,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +6939,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +6940,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +6941,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +6942,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +6943,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +6944,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6945,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6946,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6947,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6948,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6949,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,, +6950,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6951,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6952,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6953,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6954,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6955,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6956,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6957,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6958,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6959,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6960,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6961,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6962,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6963,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6964,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +6965,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,, +6966,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,, +6967,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6968,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6969,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +6970,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +6971,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +6972,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +6973,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +6974,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,, +6975,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,, +6976,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +6977,0.6,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +6978,0.6,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +6979,0.6,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,, +6980,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.2,,, +6981,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.2,,, +6982,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.2,,, +6983,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,, +6984,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,, +6985,0.7,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,, +6986,0.7,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,, +6987,0.7,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,, +6988,0.7,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,, +6989,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.2,,, +6990,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.2,,, +6991,0.5,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +6992,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +6993,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +6994,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +6995,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +6996,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +6997,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +6998,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,, +6999,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,, +7000,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,, +7001,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,, +7002,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,, +7003,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +7004,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +7005,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +7006,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +7007,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +7008,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +7009,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +7010,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +7011,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +7012,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +7013,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +7014,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +7015,0.5,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +7016,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +7017,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +7018,0.6,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,, +7019,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.2,,, +7020,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.2,,, +7021,0.7,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,, +7022,0.7,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,, +7023,0.7,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,, +7024,0.7,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,, +7025,0.7,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,, +7026,0.7,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,, +7027,0.7,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,, +7028,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,, +7029,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,, +7030,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,, +7031,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +7032,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +7033,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +7034,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,, +7035,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,, +7036,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,, +7037,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.2,,, +7038,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.2,,, +7039,0.7,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,, +7040,0.7,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,, +7041,0.7,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,, +7042,0.7,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,, +7043,0.7,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,, +7044,0.7,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,, +7045,0.8,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,, +7046,1.0,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,0.4,,, +7047,1.0,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,0.4,,, +7048,1.0,0.8,0.8,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,,, +7049,1.0,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,,, +7050,1.0,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,,, +7051,1.0,0.8,0.8,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,,, +7052,1.0,0.8,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,0.4,,, +7053,1.0,0.8,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,0.4,,, +7054,1.0,0.8,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,,, +7055,1.0,0.8,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,,, +7056,1.0,0.8,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,,, +7057,0.9,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,, +7058,0.9,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,, +7059,0.9,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,, +7060,0.9,0.7,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,, +7061,0.8,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,,, +7062,0.8,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,,, +7063,0.8,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,, +7064,0.7,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,, +7065,0.7,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,, +7066,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.2,,, +7067,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,, +7068,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,, +7069,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,, +7070,0.6,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +7071,0.6,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +7072,0.6,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,, +7073,0.6,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,, +7074,0.6,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,, +7075,0.6,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,, +7076,0.6,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,, +7077,0.6,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,, +7078,0.6,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,, +7079,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,, +7080,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,, +7081,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.2,,, +7082,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.2,,, +7083,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.2,,, +7084,0.7,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,, +7085,0.7,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,, +7086,0.7,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,, +7087,0.7,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,, +7088,0.8,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,, +7089,0.8,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,, +7090,0.8,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,, +7091,0.8,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,,, +7092,0.8,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,,, +7093,0.9,0.7,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,, +7094,0.9,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,, +7095,0.9,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,, +7096,0.9,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,,, +7097,1.0,0.8,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,,, +7098,1.0,0.8,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,,, +7099,0.9,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,,, +7100,0.9,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,, +7101,0.9,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,, +7102,0.9,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,, +7103,0.9,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,, +7104,0.9,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,, +7105,0.9,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,, +7106,0.8,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,,, +7107,0.8,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,,, +7108,0.9,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,, +7109,1.0,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,,, +7110,1.0,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,,, +7111,1.0,0.8,0.8,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,,, +7112,1.0,0.8,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,0.4,,, +7113,1.0,0.8,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,0.4,,, +7114,0.9,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,, +7115,0.7,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,, +7116,0.7,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,, +7117,0.7,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,, +7118,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.2,,, +7119,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.2,,, +7120,0.6,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +7121,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,, +7122,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,, +7123,0.5,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +7124,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +7125,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +7126,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +7127,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +7128,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +7129,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +7130,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +7131,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +7132,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,, +7133,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,, +7134,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,, +7135,0.5,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +7136,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,, +7137,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,, +7138,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,, +7139,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +7140,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +7141,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +7142,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +7143,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +7144,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +7145,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +7146,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +7147,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +7148,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,, +7149,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,, +7150,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +7151,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +7152,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +7153,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +7154,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +7155,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +7156,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +7157,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +7158,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +7159,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +7160,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7161,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7162,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7163,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7164,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7165,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7166,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +7167,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +7168,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +7169,0.5,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +7170,0.5,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +7171,0.6,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +7172,0.7,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,, +7173,0.7,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,, +7174,0.7,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,, +7175,0.8,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,,, +7176,0.8,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,,, +7177,0.8,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,, +7178,0.9,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,, +7179,0.9,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,, +7180,0.8,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,,, +7181,0.8,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,, +7182,0.8,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,, +7183,0.8,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,,, +7184,0.8,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,,, +7185,0.8,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,,, +7186,0.8,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,,, +7187,0.8,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,,, +7188,0.8,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,,, +7189,0.8,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,, +7190,0.9,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,, +7191,0.9,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,, +7192,0.8,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,,, +7193,0.7,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,, +7194,0.7,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,, +7195,0.7,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,, +7196,0.6,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,, +7197,0.6,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,, +7198,0.6,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,, +7199,0.6,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +7200,0.6,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +7201,0.6,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +7202,0.6,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +7203,0.6,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +7204,0.6,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +7205,0.6,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +7206,0.6,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +7207,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.2,,, +7208,0.7,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,, +7209,0.7,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,, +7210,0.7,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,, +7211,0.7,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,, +7212,0.7,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,, +7213,0.8,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,,, +7214,0.9,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,, +7215,0.9,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,, +7216,0.8,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,, +7217,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.2,,, +7218,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.2,,, +7219,0.6,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +7220,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,, +7221,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,, +7222,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +7223,0.6,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,, +7224,0.6,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,, +7225,0.6,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +7226,0.6,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +7227,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +7228,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,, +7229,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,, +7230,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,, +7231,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,, +7232,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,, +7233,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,, +7234,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,, +7235,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,, +7236,0.5,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,, +7237,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +7238,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +7239,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,, +7240,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +7241,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +7242,0.7,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,, +7243,0.8,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,, +7244,0.8,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,, +7245,0.8,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,,, +7246,0.8,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,,, +7247,0.8,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,,, +7248,0.8,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,,, +7249,0.8,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,, +7250,0.8,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,, +7251,0.7,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,, +7252,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.2,,, +7253,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.2,,, +7254,0.6,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,, +7255,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +7256,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +7257,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,, +7258,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +7259,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +7260,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +7261,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +7262,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +7263,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +7264,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7265,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7266,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7267,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7268,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7269,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7270,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7271,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7272,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7273,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7274,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7275,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7276,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7277,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7278,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7279,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7280,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7281,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7282,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7283,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7284,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7285,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7286,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7287,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7288,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7289,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7290,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7291,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7292,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7293,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7294,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,, +7295,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,, +7296,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7297,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7298,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7299,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7300,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7301,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7302,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7303,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7304,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7305,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7306,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7307,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7308,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7309,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7310,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7311,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7312,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7313,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7314,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7315,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7316,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,, +7317,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7318,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7319,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7320,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7321,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7322,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7323,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7324,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7325,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7326,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +7327,0.5,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +7328,0.5,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +7329,0.6,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,, +7330,0.7,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,, +7331,0.7,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,, +7332,0.7,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,, +7333,0.8,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,, +7334,0.8,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,, +7335,0.7,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,, +7336,0.7,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,, +7337,0.7,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,, +7338,0.7,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,, +7339,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,, +7340,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,, +7341,0.7,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,, +7342,0.8,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,,, +7343,0.8,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,,, +7344,1.0,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,,, +7345,1.1,0.8,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,,, +7346,1.1,0.8,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,,, +7347,1.1,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,, +7348,1.1,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,, +7349,1.1,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,, +7350,1.1,0.9,0.8,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,, +7351,1.1,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,, +7352,1.1,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,, +7353,1.0,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,0.4,,, +7354,0.9,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,, +7355,0.9,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,, +7356,0.8,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,,, +7357,0.7,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,, +7358,0.7,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,, +7359,0.7,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,, +7360,0.6,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,, +7361,0.6,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,, +7362,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +7363,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,, +7364,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,, +7365,0.5,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +7366,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,, +7367,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,, +7368,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,, +7369,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +7370,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +7371,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.2,,, +7372,0.8,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,,, +7373,0.8,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,,, +7374,0.9,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,, +7375,1.0,0.8,0.8,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,,, +7376,1.0,0.8,0.8,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,,, +7377,1.1,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,, +7378,1.2,0.9,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,,, +7379,1.2,0.9,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,,, +7380,1.2,0.9,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,,, +7381,1.1,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,, +7382,1.1,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,, +7383,1.1,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,, +7384,1.1,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,, +7385,1.1,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,, +7386,1.1,0.9,0.8,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,, +7387,1.1,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,, +7388,1.1,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,, +7389,1.2,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,,, +7390,1.2,0.9,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,,, +7391,1.2,0.9,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,,, +7392,1.2,0.9,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,,, +7393,1.2,0.9,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,,, +7394,1.2,0.9,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,,, +7395,1.2,0.9,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,,, +7396,1.2,0.9,0.9,0.8,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,,, +7397,1.2,0.9,0.9,0.8,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,,, +7398,1.1,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,, +7399,1.0,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,,, +7400,1.0,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,,, +7401,0.9,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,, +7402,0.8,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,,, +7403,0.8,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,,, +7404,0.7,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,, +7405,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.2,,, +7406,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.2,,, +7407,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,, +7408,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +7409,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +7410,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7411,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7412,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7413,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7414,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7415,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7416,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +7417,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +7418,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +7419,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +7420,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +7421,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +7422,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +7423,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +7424,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +7425,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +7426,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +7427,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +7428,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +7429,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +7430,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +7431,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7432,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7433,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7434,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7435,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7436,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7437,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7438,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7439,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7440,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7441,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7442,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7443,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7444,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,, +7445,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,, +7446,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7447,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7448,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7449,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7450,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7451,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7452,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7453,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7454,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7455,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7456,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,, +7457,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,, +7458,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,, +7459,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,, +7460,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,, +7461,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7462,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7463,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7464,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7465,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7466,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7467,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +7468,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +7469,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +7470,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +7471,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +7472,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +7473,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,, +7474,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +7475,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +7476,0.6,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,, +7477,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,, +7478,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,, +7479,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,, +7480,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,, +7481,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,, +7482,0.7,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,, +7483,0.8,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,, +7484,0.8,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,, +7485,0.8,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,, +7486,0.8,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,, +7487,0.8,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,, +7488,0.7,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,, +7489,0.7,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,, +7490,0.7,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,, +7491,0.7,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,, +7492,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,, +7493,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,, +7494,0.6,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +7495,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,, +7496,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,, +7497,0.5,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +7498,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +7499,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +7500,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +7501,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +7502,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +7503,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7504,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7505,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7506,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7507,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7508,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7509,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7510,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7511,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7512,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7513,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7514,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7515,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7516,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7517,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7518,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7519,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +7520,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +7521,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7522,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7523,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7524,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7525,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7526,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7527,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7528,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7529,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7530,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7531,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7532,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7533,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7534,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7535,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7536,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7537,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7538,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7539,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +7540,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +7541,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +7542,0.5,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,, +7543,0.6,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,, +7544,0.6,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,, +7545,0.7,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,, +7546,0.9,0.7,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,, +7547,0.9,0.7,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,, +7548,1.0,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,,, +7549,1.2,0.9,0.9,0.8,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,,, +7550,1.2,0.9,0.9,0.8,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,,, +7551,1.2,0.9,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,,, +7552,1.2,0.9,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,,, +7553,1.2,0.9,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,,, +7554,1.2,0.9,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,,, +7555,1.2,0.9,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,,, +7556,1.2,0.9,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,,, +7557,1.2,0.9,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,,, +7558,1.1,0.9,0.8,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,, +7559,1.1,0.9,0.8,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,, +7560,1.2,0.9,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,,, +7561,1.2,0.9,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,,, +7562,1.2,0.9,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,,, +7563,1.2,0.9,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,,, +7564,1.2,0.9,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,,, +7565,1.2,0.9,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,,, +7566,1.2,0.9,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,,, +7567,1.2,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,,, +7568,1.2,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,,, +7569,1.2,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,,, +7570,1.2,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,,, +7571,1.2,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,,, +7572,1.2,0.9,0.9,0.8,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,,, +7573,1.2,0.9,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,,, +7574,1.2,0.9,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,,, +7575,1.2,0.9,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,,, +7576,1.2,0.9,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,,, +7577,1.2,0.9,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,,, +7578,1.1,0.9,0.9,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.4,,, +7579,1.1,0.8,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,,, +7580,1.1,0.8,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,,, +7581,0.9,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,, +7582,0.8,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,, +7583,0.8,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,, +7584,0.7,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,, +7585,0.7,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,, +7586,0.7,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,, +7587,0.7,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,, +7588,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.2,,, +7589,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.2,,, +7590,0.7,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,, +7591,0.7,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,, +7592,0.7,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,, +7593,0.7,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,, +7594,0.7,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,, +7595,0.7,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,, +7596,0.7,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,, +7597,0.7,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,, +7598,0.7,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,, +7599,0.6,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +7600,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +7601,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +7602,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +7603,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +7604,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +7605,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7606,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,, +7607,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,, +7608,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7609,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7610,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7611,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7612,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7613,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7614,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7615,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +7616,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +7617,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +7618,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +7619,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +7620,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +7621,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +7622,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +7623,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7624,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7625,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7626,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7627,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7628,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7629,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +7630,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +7631,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +7632,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,, +7633,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,, +7634,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,, +7635,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,, +7636,0.6,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +7637,0.6,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +7638,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,, +7639,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +7640,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +7641,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +7642,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +7643,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +7644,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7645,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7646,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7647,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7648,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7649,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7650,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7651,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7652,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7653,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7654,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7655,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7656,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7657,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7658,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7659,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7660,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7661,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,, +7662,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,, +7663,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7664,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,, +7665,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,, +7666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7667,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,, +7668,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,, +7669,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7670,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7671,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,, +7672,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7673,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7674,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7675,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7676,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7677,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7678,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7679,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7680,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,, +7681,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,, +7682,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,, +7683,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7684,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +7685,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +7686,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +7687,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +7688,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +7689,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +7690,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +7691,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +7692,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +7693,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +7694,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +7695,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +7696,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7697,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7698,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7699,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +7700,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +7701,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7702,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7703,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7704,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7705,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7706,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7707,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7708,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7709,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7710,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7711,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7712,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7713,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7714,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,, +7715,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,, +7716,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,, +7717,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7718,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7719,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7720,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7721,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7722,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7723,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7724,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7725,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7726,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7727,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7728,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7729,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7730,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7731,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7732,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7733,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7734,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7735,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7736,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7737,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7738,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7739,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7740,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7741,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7742,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7743,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7744,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7745,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7746,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7747,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7748,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7749,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7750,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7751,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7752,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7753,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7754,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7755,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7756,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7757,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7758,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7759,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7760,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7761,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7762,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7763,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7764,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7765,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7766,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7767,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7768,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7769,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7770,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7771,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7772,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7773,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7774,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7775,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7776,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7777,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7778,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7779,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7780,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,, +7781,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,, +7782,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7783,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7784,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7785,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7786,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +7787,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +7788,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +7789,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +7790,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +7791,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +7792,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +7793,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +7794,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +7795,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +7796,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +7797,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +7798,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +7799,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +7800,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +7801,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +7802,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +7803,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +7804,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +7805,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +7806,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +7807,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +7808,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +7809,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +7810,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +7811,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +7812,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +7813,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +7814,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +7815,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +7816,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +7817,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +7818,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +7819,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +7820,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +7821,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +7822,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +7823,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +7824,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +7825,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +7826,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +7827,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +7828,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +7829,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +7830,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +7831,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +7832,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +7833,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +7834,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +7835,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +7836,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +7837,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +7838,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +7839,0.5,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +7840,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +7841,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +7842,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,, +7843,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,, +7844,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,, +7845,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +7846,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +7847,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +7848,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7849,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7850,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7851,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,, +7852,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7853,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7854,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7855,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7856,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7857,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7858,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7859,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7860,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7861,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7862,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7863,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7864,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7865,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7866,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7867,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7868,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7869,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7870,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7871,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7872,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7873,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7874,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7875,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7876,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7877,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7878,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7879,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7880,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7881,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7882,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7883,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7884,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7885,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7886,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7887,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7888,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7889,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7890,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,, +7891,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7892,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7893,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7894,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,, +7895,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,, +7896,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7897,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7898,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7899,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7900,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7901,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7902,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7903,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7904,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7905,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7906,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7907,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7908,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7909,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7910,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7911,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7912,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7913,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7914,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7915,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7916,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7917,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7918,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7919,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7920,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7921,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7922,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +7923,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,, +7924,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7925,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7926,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7927,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7928,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7929,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7930,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7931,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7932,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7933,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,, +7934,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,, +7935,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7936,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7937,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7938,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7939,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7940,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7941,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7942,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7943,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7944,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7945,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7946,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7947,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7948,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7949,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7950,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7951,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7952,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7953,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7954,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7955,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7956,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7957,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7958,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +7959,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +7960,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +7961,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +7962,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +7963,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +7964,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +7965,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +7966,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +7967,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +7968,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +7969,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +7970,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +7971,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +7972,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +7973,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +7974,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +7975,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +7976,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +7977,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +7978,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +7979,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +7980,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +7981,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +7982,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +7983,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +7984,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,, +7985,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,, +7986,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,, +7987,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,, +7988,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,, +7989,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,, +7990,0.6,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,, +7991,0.6,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,, +7992,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +7993,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,, +7994,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,, +7995,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +7996,0.6,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +7997,0.6,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +7998,0.6,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,, +7999,0.6,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,, +8000,0.6,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,, +8001,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.2,,, +8002,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,, +8003,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,, +8004,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.2,,, +8005,0.6,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,, +8006,0.6,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,, +8007,0.6,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,, +8008,0.6,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,, +8009,0.6,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,, +8010,0.7,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,, +8011,0.7,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,, +8012,0.7,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,, +8013,0.7,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,, +8014,0.7,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,, +8015,0.7,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,, +8016,0.8,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,, +8017,0.8,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,,, +8018,0.8,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,,, +8019,0.9,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,, +8020,0.9,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,, +8021,0.9,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,, +8022,0.9,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,,, +8023,1.0,0.8,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,0.4,,, +8024,1.0,0.8,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,0.4,,, +8025,1.0,0.8,0.8,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,,, +8026,1.0,0.8,0.8,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,,, +8027,1.0,0.8,0.8,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,,, +8028,1.0,0.8,0.8,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,,, +8029,1.0,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,,, +8030,1.0,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,,, +8031,1.0,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,0.4,,, +8032,1.0,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,0.4,,, +8033,1.0,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,0.4,,, +8034,1.0,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,0.4,,, +8035,1.0,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,0.4,,, +8036,1.0,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,0.4,,, +8037,0.9,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,, +8038,0.9,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,, +8039,0.9,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,, +8040,0.8,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,,, +8041,0.8,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,, +8042,0.8,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,, +8043,0.7,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,, +8044,0.7,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,, +8045,0.7,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,, +8046,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +8047,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,, +8048,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,, +8049,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +8050,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +8051,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +8052,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8053,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8054,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8055,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +8056,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +8057,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +8058,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +8059,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +8060,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +8061,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +8062,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +8063,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +8064,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +8065,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +8066,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +8067,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +8068,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +8069,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +8070,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +8071,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +8072,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +8073,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +8074,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +8075,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +8076,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +8077,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,, +8078,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,, +8079,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8080,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8081,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8082,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8083,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +8084,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +8085,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +8086,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +8087,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +8088,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,, +8089,0.5,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,, +8090,0.5,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,, +8091,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +8092,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,, +8093,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,, +8094,0.7,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,, +8095,0.8,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,,, +8096,0.8,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,,, +8097,0.9,0.7,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,, +8098,0.9,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,, +8099,0.9,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,, +8100,1.0,0.8,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,,, +8101,1.0,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,,, +8102,1.0,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,,, +8103,1.0,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,,, +8104,1.0,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,,, +8105,1.0,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,,, +8106,1.0,0.8,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,0.4,,, +8107,0.9,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,, +8108,0.9,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,, +8109,0.9,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,, +8110,0.8,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,,, +8111,0.8,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,,, +8112,0.8,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,,, +8113,0.7,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,, +8114,0.7,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,, +8115,0.7,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,, +8116,0.7,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,, +8117,0.7,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,, +8118,0.7,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,, +8119,0.6,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,, +8120,0.6,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,, +8121,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,, +8122,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,, +8123,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,, +8124,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,, +8125,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +8126,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +8127,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +8128,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +8129,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +8130,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +8131,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +8132,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +8133,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8134,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8135,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8136,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8137,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,, +8138,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,, +8139,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +8140,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +8141,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +8142,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +8143,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +8144,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +8145,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +8146,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +8147,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +8148,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +8149,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +8150,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +8151,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +8152,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +8153,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +8154,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +8155,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +8156,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +8157,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +8158,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +8159,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +8160,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +8161,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +8162,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +8163,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +8164,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +8165,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +8166,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +8167,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +8168,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +8169,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +8170,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +8171,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +8172,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +8173,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +8174,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +8175,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +8176,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +8177,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +8178,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +8179,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,, +8180,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,, +8181,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,, +8182,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,, +8183,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,, +8184,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,, +8185,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8186,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8187,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8188,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8189,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8190,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8191,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8192,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8193,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8194,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8195,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8196,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8197,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8198,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8199,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8200,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8201,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8202,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8203,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8204,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8205,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8206,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8207,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8208,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +8209,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,, +8210,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,, +8211,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,, +8212,0.7,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,, +8213,0.7,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,, +8214,0.9,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,, +8215,1.0,0.8,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,,, +8216,1.0,0.8,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,,, +8217,1.0,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,,, +8218,1.1,0.8,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,,, +8219,1.1,0.8,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,,, +8220,1.0,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,,, +8221,1.0,0.8,0.8,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,,, +8222,1.0,0.8,0.8,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,,, +8223,0.9,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,, +8224,0.9,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,, +8225,0.9,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,, +8226,0.8,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,, +8227,0.8,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,,, +8228,0.8,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,,, +8229,0.7,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,, +8230,0.6,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +8231,0.6,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +8232,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +8233,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +8234,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +8235,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8236,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8237,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8238,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,, +8239,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +8240,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +8241,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +8242,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,, +8243,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,, +8244,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8245,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +8246,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +8247,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +8248,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,, +8249,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,, +8250,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,, +8251,0.8,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,, +8252,0.8,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,, +8253,0.9,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,, +8254,0.9,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,, +8255,0.9,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,, +8256,1.0,0.8,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,,, +8257,1.0,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,0.4,,, +8258,1.0,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,0.4,,, +8259,1.0,0.8,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,0.4,,, +8260,1.0,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,,, +8261,1.0,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,,, +8262,1.0,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,,, +8263,0.9,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,,, +8264,0.9,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,,, +8265,0.9,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,, +8266,0.9,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,, +8267,0.9,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,, +8268,0.9,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,, +8269,0.9,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,, +8270,0.9,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,, +8271,0.9,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,, +8272,0.9,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,, +8273,0.9,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,, +8274,0.8,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,,, +8275,0.8,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,,, +8276,0.8,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,,, +8277,0.8,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,,, +8278,0.8,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,,, +8279,0.8,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,,, +8280,0.8,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,,, +8281,0.9,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,, +8282,0.9,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,, +8283,0.9,0.7,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,, +8284,0.9,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,, +8285,0.9,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,, +8286,0.7,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,, +8287,0.6,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,, +8288,0.6,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,, +8289,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,, +8290,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,, +8291,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,, +8292,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +8293,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +8294,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +8295,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +8296,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,, +8297,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,, +8298,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,, +8299,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +8300,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +8301,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +8302,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8303,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8304,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8305,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,, +8306,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,, +8307,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +8308,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +8309,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +8310,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +8311,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +8312,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +8313,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +8314,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +8315,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +8316,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +8317,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +8318,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +8319,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8320,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8321,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8322,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8323,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8324,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8325,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +8326,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +8327,0.5,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +8328,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,, +8329,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +8330,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +8331,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +8332,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +8333,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +8334,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8335,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8336,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8337,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8338,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8339,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8340,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8341,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,, +8342,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,, +8343,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8344,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8345,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8346,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8347,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8348,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8349,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +8350,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +8351,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +8352,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +8353,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +8354,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +8355,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +8356,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +8357,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +8358,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +8359,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +8360,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +8361,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +8362,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +8363,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +8364,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +8365,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +8366,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +8367,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +8368,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +8369,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +8370,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8371,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8372,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8373,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +8374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +8375,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +8376,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +8377,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,, +8378,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,, +8379,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8380,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +8381,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +8382,0.6,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,, +8383,0.7,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,, +8384,0.7,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,, +8385,0.9,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,, +8386,1.0,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,,, +8387,1.0,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,,, +8388,0.8,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,,, +8389,0.7,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,, +8390,0.7,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,, +8391,0.6,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,, +8392,0.5,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +8393,0.5,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,,, +8394,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,, +8395,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,, +8396,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,, +8397,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +8398,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8399,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8400,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8401,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8402,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8403,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8404,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +8405,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +8406,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,, +8407,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,, +8408,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,, +8409,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,, +8410,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,, +8411,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,, +8412,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,, +8413,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,, +8414,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,, +8415,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,, +8416,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +8417,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +8418,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,, +8419,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8420,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8421,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8422,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8423,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8424,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8425,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8426,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8427,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8428,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8429,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8430,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8431,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8432,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8433,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8434,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8435,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8436,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8437,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8438,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8439,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8440,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8441,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8442,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8443,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8444,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8445,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +8446,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +8447,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +8448,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +8449,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +8450,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +8451,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +8452,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +8453,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +8454,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +8455,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +8456,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +8457,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8458,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8459,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8460,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8461,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +8462,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +8463,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8464,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8465,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8466,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +8467,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +8468,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +8469,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +8470,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +8471,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +8472,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +8473,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +8474,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +8475,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8476,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +8477,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +8478,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +8479,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +8480,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +8481,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,, +8482,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8483,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8484,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8485,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8486,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8487,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8488,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8489,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8490,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +8491,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +8492,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +8493,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +8494,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +8495,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +8496,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8497,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8498,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8499,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8500,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,, +8501,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,, +8502,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,, +8503,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +8504,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +8505,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +8506,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,, +8507,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,, +8508,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,, +8509,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,, +8510,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,, +8511,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,, +8512,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8513,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8514,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8515,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +8516,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +8517,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +8518,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +8519,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +8520,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +8521,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +8522,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +8523,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +8524,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +8525,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +8526,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +8527,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,, +8528,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,, +8529,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +8530,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +8531,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +8532,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +8533,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +8534,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +8535,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +8536,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +8537,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +8538,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +8539,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +8540,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +8541,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +8542,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +8543,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +8544,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +8545,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +8546,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +8547,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +8548,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,, +8549,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,, +8550,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,, +8551,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.2,,, +8552,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.2,,, +8553,0.7,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,, +8554,0.7,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,, +8555,0.7,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,,, +8556,0.7,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,, +8557,0.8,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,, +8558,0.8,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,, +8559,0.9,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,, +8560,1.0,0.8,0.8,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,,, +8561,1.0,0.8,0.8,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,,, +8562,1.0,0.8,0.8,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,,, +8563,1.0,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,,, +8564,1.0,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,,, +8565,1.0,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,,, +8566,1.1,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,,, +8567,1.1,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,,, +8568,1.1,0.8,0.8,0.8,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,,, +8569,1.1,0.8,0.8,0.8,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,,, +8570,1.1,0.8,0.8,0.8,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,,, +8571,1.1,0.8,0.8,0.8,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,,, +8572,1.1,0.8,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,,, +8573,1.1,0.8,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,,, +8574,1.1,0.8,0.8,0.8,0.7,0.7,0.7,0.7,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,,, +8575,1.0,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,,, +8576,1.0,0.8,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.4,0.4,,, +8577,1.0,0.8,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,,, +8578,1.0,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,,, +8579,1.0,0.8,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,,, +8580,0.9,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,,, +8581,0.9,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,, +8582,0.9,0.7,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,, +8583,0.8,0.7,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,,, +8584,0.8,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,,, +8585,0.8,0.6,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,,, +8586,0.8,0.6,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,, +8587,0.7,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,, +8588,0.7,0.6,0.6,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,,, +8589,0.7,0.5,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,,, +8590,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,, +8591,0.6,0.5,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,,, +8592,0.6,0.5,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.2,,, +8593,0.6,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,, +8594,0.6,0.5,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,,, +8595,0.6,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,,, +8596,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,, +8597,0.5,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,,, +8598,0.5,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,,, +8599,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +8600,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +8601,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +8602,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8603,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8604,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8605,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8606,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8607,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +8608,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +8609,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +8610,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +8611,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +8612,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +8613,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +8614,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +8615,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +8616,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +8617,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +8618,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +8619,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,, +8620,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,, +8621,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,, +8622,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8623,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8624,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8625,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8626,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,, +8627,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,, +8628,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +8629,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +8630,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +8631,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +8632,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8633,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8634,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8635,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +8636,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +8637,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8638,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8639,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8640,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8641,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8642,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8643,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8644,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8645,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8646,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +8647,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +8648,0.4,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +8649,0.4,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +8650,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +8651,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,,, +8652,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +8653,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +8654,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +8655,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +8656,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +8657,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +8658,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8659,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8660,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8661,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8662,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8663,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8664,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,,, +8665,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,, +8666,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,, +8667,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,, +8668,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8669,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8670,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8671,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +8672,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +8673,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +8674,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +8675,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +8676,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +8677,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +8678,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +8679,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +8680,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +8681,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +8682,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +8683,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +8684,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,,, +8685,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +8686,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +8687,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,,, +8688,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8689,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8690,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8691,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8692,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8693,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8694,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8695,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8696,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8697,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8698,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8699,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8700,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8701,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,, +8702,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,, +8703,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,, +8704,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,, +8705,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,, +8706,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,, +8707,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,, +8708,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,,, +8709,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +8710,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +8711,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +8712,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +8713,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +8714,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +8715,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +8716,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +8717,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +8718,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +8719,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +8720,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +8721,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +8722,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +8723,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,,, +8724,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +8725,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +8726,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +8727,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +8728,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +8729,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +8730,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +8731,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,, +8732,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,,, +8733,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8734,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8735,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8736,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8737,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +8738,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,,, +8739,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,,, +8740,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +8741,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,,, +8742,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8743,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8744,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8745,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8746,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8747,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8748,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,,, +8749,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,, +8750,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,,, +8751,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +8752,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +8753,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,, +8754,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8755,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8756,0.2,0.2,0.2,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,,, +8757,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.1,,, +8758,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,, +8759,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,, +8760,0.5,0.4,0.4,0.4,0.4,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.2,0.2,0.2,0.2,,, diff --git a/emlab-generation/src/main/resources/dataOld/SimpleMSR-PowerPlants.csv b/emlab-generation/src/main/resources/dataOld/SimpleMSR-PowerPlants.csv new file mode 100644 index 00000000..8ab4450f --- /dev/null +++ b/emlab-generation/src/main/resources/dataOld/SimpleMSR-PowerPlants.csv @@ -0,0 +1,54 @@ +Name,Technology,Location,Age,Owner,Capacity,Efficiency +ppCoalA1,CoalPulverizedSuperCritical,BeneluxNode,1,Energy Producer A,, +ppCoalA2,CoalPulverizedSuperCritical,BeneluxNode,3,Energy Producer A,, +ppCoalB1,CoalPulverizedSuperCritical,BeneluxNode,5,Energy Producer B,, +ppCoalB2,CoalPulverizedSuperCritical,BeneluxNode,7,Energy Producer B,, +ppCoalA3,CoalPulverizedSuperCritical,BeneluxNode,9,Energy Producer A,, +ppCoalA4,CoalPulverizedSuperCritical,BeneluxNode,11,Energy Producer A,, +ppCoalB3,CoalPulverizedSuperCritical,BeneluxNode,13,Energy Producer B,, +ppCoalB4,CoalPulverizedSuperCritical,BeneluxNode,15,Energy Producer B,, +ppCoalA5,CoalPulverizedSuperCritical,BeneluxNode,17,Energy Producer A,, +ppCoalA6,CoalPulverizedSuperCritical,BeneluxNode,19,Energy Producer A,, +ppCoalB5,CoalPulverizedSuperCritical,BeneluxNode,21,Energy Producer B,, +ppCoalB6,CoalPulverizedSuperCritical,BeneluxNode,23,Energy Producer B,, +ppCoalA7,CoalPulverizedSuperCritical,BeneluxNode,25,Energy Producer A,, +ppCoalA8,CoalPulverizedSuperCritical,BeneluxNode,26,Energy Producer A,, +ppCoalB7,CoalPulverizedSuperCritical,BeneluxNode,27,Energy Producer B,, +ppCoalB8,CoalPulverizedSuperCritical,BeneluxNode,28,Energy Producer B,, +ppCCGTA1,CCGT,BeneluxNode,1,Energy Producer A,, +ppCCGTB1,CCGT,BeneluxNode,3,Energy Producer B,, +ppCCGTA2,CCGT,BeneluxNode,5,Energy Producer A,, +ppCCGTB2,CCGT,BeneluxNode,7,Energy Producer B,, +ppCCGTA3,CCGT,BeneluxNode,9,Energy Producer A,, +ppCCGTB3,CCGT,BeneluxNode,11,Energy Producer B,, +ppCCGTA4,CCGT,BeneluxNode,13,Energy Producer A,, +ppCCGTB4,CCGT,BeneluxNode,15,Energy Producer B,, +ppCCGTA3,CCGT,BeneluxNode,17,Energy Producer A,, +ppCCGTB3,CCGT,BeneluxNode,19,Energy Producer B,, +ppCCGTA4,CCGT,BeneluxNode,21,Energy Producer A,, +ppCCGTB4,CCGT,BeneluxNode,23,Energy Producer B,, +ppCCGTB3,CCGT,BeneluxNode,25,Energy Producer B,, +ppCCGTA4,CCGT,BeneluxNode,27,Energy Producer A,, +ppCCGTB4,CCGT,BeneluxNode,29,Energy Producer B,, +ppCCGTA4,CCGT,BeneluxNode,31,Energy Producer A,, +ppCCGTB4,CCGT,BeneluxNode,33,Energy Producer B,, +ppCCGTB3,CCGT,BeneluxNode,35,Energy Producer B,, +ppCCGTA4,CCGT,BeneluxNode,37,Energy Producer A,, +ppCCGTB4,CCGT,BeneluxNode,39,Energy Producer B,, +ppOCGTA1,OCGT,BeneluxNode,1,Energy Producer A,, +ppOCGTA2,OCGT,BeneluxNode,2,Energy Producer A,, +ppOCGTB1,OCGT,BeneluxNode,3,Energy Producer B,, +ppOCGTB2,OCGT,BeneluxNode,4,Energy Producer B,, +ppOCGTA3,OCGT,BeneluxNode,5,Energy Producer A,, +ppOCGTA4,OCGT,BeneluxNode,6,Energy Producer A,, +ppOCGTB3,OCGT,BeneluxNode,7,Energy Producer B,, +ppOCGTB4,OCGT,BeneluxNode,8,Energy Producer B,, +ppOCGTA5,OCGT,BeneluxNode,9,Energy Producer A,, +ppOCGTA6,OCGT,BeneluxNode,10,Energy Producer A,, +ppOCGTB5,OCGT,BeneluxNode,11,Energy Producer B,, +ppOCGTB6,OCGT,BeneluxNode,12,Energy Producer B,, +ppOCGTA7,OCGT,BeneluxNode,13,Energy Producer A,, +ppOCGTA8,OCGT,BeneluxNode,14,Energy Producer A,, +ppOCGTB7,OCGT,BeneluxNode,15,Energy Producer B,, +ppOCGTB8,OCGT,BeneluxNode,16,Energy Producer B,, + diff --git a/emlab-generation/src/main/resources/dataOld/SimpleMSR-emissionCap.csv b/emlab-generation/src/main/resources/dataOld/SimpleMSR-emissionCap.csv new file mode 100644 index 00000000..83deefad --- /dev/null +++ b/emlab-generation/src/main/resources/dataOld/SimpleMSR-emissionCap.csv @@ -0,0 +1,52 @@ +72619269.73817393 +72619269.73817393 +72619269.73817393 +72619269.73817393 +72619269.73817393 +62000000 +62000000 +62000000 +62000000 +62000000 +62000000 +62000000 +62000000 +62000000 +62000000 +62000000 +62000000 +62000000 +62000000 +62000000 +62000000 +62000000 +62000000 +62000000 +62000000 +62000000 +62000000 +62000000 +62000000 +62000000 +62000000 +62000000 +62000000 +62000000 +62000000 +62000000 +62000000 +62000000 +62000000 +62000000 +62000000 +62000000 +62000000 +62000000 +62000000 +62000000 +62000000 +62000000 +62000000 +62000000 +62000000 +62000000 diff --git a/emlab-generation/src/main/resources/dataOld/SimpleMSR-lowerTrigger.csv b/emlab-generation/src/main/resources/dataOld/SimpleMSR-lowerTrigger.csv new file mode 100644 index 00000000..690d8d5e --- /dev/null +++ b/emlab-generation/src/main/resources/dataOld/SimpleMSR-lowerTrigger.csv @@ -0,0 +1,52 @@ +87143123.685808716 +87143123.685808716 +87143123.685808716 +87143123.685808716 +87143123.685808716 +74399999.685808716 +74399999.685808716 +74399999.685808716 +74399999.685808716 +74399999.685808716 +74399999.685808716 +74399999.685808716 +74399999.685808716 +74399999.685808716 +74399999.685808716 +74399999.685808716 +74399999.685808716 +74399999.685808716 +74399999.685808716 +74399999.685808716 +74399999.685808716 +74399999.685808716 +74399999.685808716 +74399999.685808716 +74399999.685808716 +74399999.685808716 +74399999.685808716 +74399999.685808716 +74399999.685808716 +74399999.685808716 +74399999.685808716 +74399999.685808716 +74399999.685808716 +74399999.685808716 +74399999.685808716 +74399999.685808716 +74399999.685808716 +74399999.685808716 +74399999.685808716 +74399999.685808716 +74399999.685808716 +74399999.685808716 +74399999.685808716 +74399999.685808716 +74399999.685808716 +74399999.685808716 +74399999.685808716 +74399999.685808716 +74399999.685808716 +74399999.685808716 +74399999.685808716 +74399999.685808716 diff --git a/emlab-generation/src/main/resources/dataOld/SimpleMSR-upperTrigger.csv b/emlab-generation/src/main/resources/dataOld/SimpleMSR-upperTrigger.csv new file mode 100644 index 00000000..89b60dbf --- /dev/null +++ b/emlab-generation/src/main/resources/dataOld/SimpleMSR-upperTrigger.csv @@ -0,0 +1,52 @@ +130714685.528713074 +130714685.528713074 +130714685.528713074 +130714685.528713074 +130714685.528713074 +112599999.528713074 +112599999.528713074 +112599999.528713074 +112599999.528713074 +112599999.528713074 +112599999.528713074 +112599999.528713074 +112599999.528713074 +112599999.528713074 +112599999.528713074 +112599999.528713074 +112599999.528713074 +112599999.528713074 +112599999.528713074 +112599999.528713074 +112599999.528713074 +112599999.528713074 +112599999.528713074 +112599999.528713074 +112599999.528713074 +112599999.528713074 +112599999.528713074 +112599999.528713074 +112599999.528713074 +112599999.528713074 +112599999.528713074 +112599999.528713074 +112599999.528713074 +112599999.528713074 +112599999.528713074 +112599999.528713074 +112599999.528713074 +112599999.528713074 +112599999.528713074 +112599999.528713074 +112599999.528713074 +112599999.528713074 +112599999.528713074 +112599999.528713074 +112599999.528713074 +112599999.528713074 +112599999.528713074 +112599999.528713074 +112599999.528713074 +112599999.528713074 +112599999.528713074 +112599999.528713074 diff --git a/emlab-generation/src/main/resources/dataOld/emissionCapCweUk.csv b/emlab-generation/src/main/resources/dataOld/emissionCapCweUk.csv new file mode 100644 index 00000000..8bc58a79 --- /dev/null +++ b/emlab-generation/src/main/resources/dataOld/emissionCapCweUk.csv @@ -0,0 +1,50 @@ +590387193.5312 +581830857.393067 +573274521.254933 +564718185.1168 +556161848.978667 +547605512.840533 +539049176.7024 +530492840.564267 +521936504.426133 +513380168.288 +500657830.087267 +487935491.886533 +475213153.6858 +462490815.485067 +449768477.284333 +437046139.0836 +424323800.882867 +411601462.682133 +398879124.4814 +386156786.280667 +373434448.079933 +360712109.8792 +347989771.678467 +335267433.477733 +322545095.277 +309822757.076267 +297100418.875533 +284378080.6748 +271655742.474067 +258933404.273333 +246211066.0726 +233488727.871867 +220766389.671133 +208044051.4704 +195321713.269667 +182599375.068933 +169877036.8682 +157154698.667467 +144432360.466733 +131710022.266 +131710022.266 +131710022.266 +131710022.266 +131710022.266 +131710022.266 +131710022.266 +131710022.266 +131710022.266 +131710022.266 +131710022.266 diff --git a/emlab-generation/src/main/resources/dataOld/exampleCoalSingleColumn.csv b/emlab-generation/src/main/resources/dataOld/exampleCoalSingleColumn.csv new file mode 100644 index 00000000..7bcf4055 --- /dev/null +++ b/emlab-generation/src/main/resources/dataOld/exampleCoalSingleColumn.csv @@ -0,0 +1,61 @@ +100.8629923136 +101.9468483376 +103.0423512884 +104.1496263217 +105.2687999383 +106.3999999983 +107.5433557357 +108.6989977734 +109.8670581376 +111.0476702737 +112.2409690607 +113.4470908272 +114.6661733666 +115.8983559531 +117.1437793576 +118.4025858636 +119.6749192834 +120.9609249751 +122.2607498583 +123.5745424318 +124.9024527898 +126.2446326396 +127.6012353186 +128.9724158121 +130.3583307706 +131.7591385282 +133.1749991203 +134.606074302 +136.0525275665 +137.5145241641 +138.9922311207 +140.4858172571 +141.9954532082 +143.5213114423 +145.0635662814 +146.6223939206 +148.1979724481 +149.7904818661 +151.4001041109 +153.0270230741 +154.6714246232 +156.3334966228 +158.0134289566 +159.7114135486 +161.4276443852 +163.1623175374 +164.915631183 +166.6877856295 +168.4789833368 +170.2894289405 +172.1193292751 +173.9688933978 +175.8383326121 +177.7278604923 +179.6376929077 +181.5680480472 +183.5191464445 +185.491211003 +187.4844670212 +189.4991422191 +191.5354667632 diff --git a/emlab-generation/src/main/resources/dataOld/exampleMultipleTimeSeries.csv b/emlab-generation/src/main/resources/dataOld/exampleMultipleTimeSeries.csv new file mode 100644 index 00000000..0a391230 --- /dev/null +++ b/emlab-generation/src/main/resources/dataOld/exampleMultipleTimeSeries.csv @@ -0,0 +1,5 @@ +tick,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60 +gasPrice,0.3246874961,0.3294483207,0.3342789523,0.3391804145,0.3441537457,0.3491999999,0.3543202463,0.3595155697,0.3647870711,0.3701358674,0.3755630919,0.3810698947,0.3866574427,0.3923269196,0.3980795269,0.4039164835,0.4098390262,0.4158484098,0.4219459078,0.4281328121,0.4344104337,0.4407801028,0.447243169,0.4538010017,0.4604549906,0.4672065455,0.4740570971,0.4810080968,0.4880610177,0.495217354,0.5024786221,0.5098463607,0.517322131,0.5249075168,0.5326041256,0.5404135882,0.5483375592,0.5563777178,0.5645357676,0.5728134371,0.5812124804,0.589734677,0.5983818329,0.6071557801,0.616058378,0.6250915127,0.6342570984,0.6435570772,0.6529934196,0.6625681251,0.6722832225,0.6821407704,0.6921428574,0.7022916029,0.7125891573,0.7230377026,0.7336394527,0.7443966541,0.7553115861,0.7663865614,0.7776239268 +coalPrice,100.8629923136,101.9468483376,103.0423512884,104.1496263217,105.2687999383,106.3999999983,107.5433557357,108.6989977734,109.8670581376,111.0476702737,112.2409690607,113.4470908272,114.6661733666,115.8983559531,117.1437793576,118.4025858636,119.6749192834,120.9609249751,122.2607498583,123.5745424318,124.9024527898,126.2446326396,127.6012353186,128.9724158121,130.3583307706,131.7591385282,133.1749991203,134.606074302,136.0525275665,137.5145241641,138.9922311207,140.4858172571,141.9954532082,143.5213114423,145.0635662814,146.6223939206,148.1979724481,149.7904818661,151.4001041109,153.0270230741,154.6714246232,156.3334966228,158.0134289566,159.7114135486,161.4276443852,163.1623175374,164.915631183,166.6877856295,168.4789833368,170.2894289405,172.1193292751,173.9688933978,175.8383326121,177.7278604923,179.6376929077,181.5680480472,183.5191464445,185.491211003,187.4844670212,189.4991422191,191.5354667632 +uraniumPrice,5000000,5050000,5100500,5151505,5203020.05,5255050.2505,5307600.753005,5360676.76053505,5414283.5281404,5468426.3634218,5523110.62705602,5578341.73332658,5634125.15065985,5690466.40216645,5747371.06618811,5804844.77684999,5862893.22461849,5921522.15686468,5980737.37843332,6040544.75221766,6100950.19973983,6161959.70173723,6223579.2987546,6285815.09174215,6348673.24265957,6412159.97508617,6476281.57483703,6541044.3905854,6606454.83449125,6672519.38283617,6739244.57666453,6806637.02243117,6874703.39265549,6943450.42658204,7012884.93084786,7083013.78015634,7153843.9179579,7225382.35713748,7297636.18070886,7370612.54251594,7444318.6679411,7518761.85462052,7593949.47316672,7669888.96789839,7746587.85757737,7824053.73615315,7902294.27351468,7981317.21624983,8061130.38841232,8141741.69229645,8223159.10921941,8305390.70031161,8388444.60731472,8472329.05338787,8557052.34392175,8642622.86736096,8729049.09603457,8816339.58699492,8904502.98286487,8993548.01269352,9083483.49282045 +biomassPrice,112.5,113.625,114.76125,115.9088625,117.067951125,118.2386306363,119.4210169426,120.615227112,121.8213793832,123.039593177,124.2699891088,125.5126889998,126.7678158898,128.0354940487,129.3158489892,130.6090074791,131.9150975539,133.2342485295,134.5665910148,135.9122569249,137.2713794941,138.6440932891,140.030534222,141.4308395642,142.8451479598,144.2735994394,145.7163354338,147.1734987882,148.6452337761,150.1316861138,151.633002975,153.1493330047,154.6808263347,156.2276345981,157.7899109441,159.3678100535,160.9614881541,162.5711030356,164.196814066,165.8387822066,167.4971700287,169.172141729,170.8638631463,172.5725017777,174.2982267955,176.0412090634,177.8016211541,179.5796373656,181.3754337393,183.1891880767,185.0210799574,186.871290757,188.7400036646,190.6274037012,192.5336777382,194.4590145156,196.4036046608,198.3676407074,200.3513171145,202.3548302856,204.3783785885 diff --git a/emlab-generation/src/main/resources/dataOld/learningCurves.csv b/emlab-generation/src/main/resources/dataOld/learningCurves.csv new file mode 100644 index 00000000..b0f5498b --- /dev/null +++ b/emlab-generation/src/main/resources/dataOld/learningCurves.csv @@ -0,0 +1 @@ +realtime,1961,1962,1963,1964,1965,1966,1967,1968,1969,1970,1971,1972,1973,1974,1975,1976,1977,1978,1979,1980,1981,1982,1983,1984,1985,1986,1987,1988,1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020,2021,2022,2023,2024,2025,2026,2027,2028,2029,2030,2031,2032,2033,2034,2035,2036,2037,2038,2039,2040,2041,2042,2043,2044,2045,2046,2047,2048,2049,2050,2051,2052,2053,2054,2055,2056,2057,2058,2059,2060,2061,2062,2063,2064,2065,2066,2067,2068,2069,2070,2071,2072,2073,2074,2075,2076,2077,2078,2079,2080,2081,2082,2083,2084,2085,2086,2087,2088,2089,2090,2091,2092,2093,2094,2095,2096,2097,2098,2099,2100,2101,2102,2103,2104,2105,2106,2107,2108,2109,2110,2111,2112,2113,2114,2115,2116,2117,2118,2119,2120,2121 timestep,-50,-49,-48,-47,-46,-45,-44,-43,-42,-41,-40,-39,-38,-37,-36,-35,-34,-33,-32,-31,-30,-29,-28,-27,-26,-25,-24,-23,-22,-21,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-4,-3,-2,-1,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110 PV_Inv,13864745.33,13344475.51,12843728.64,12361772.12,11897900.85,11451436.2,11021724.97,10608138.52,10210071.75,9826942.306,9458189.661,9103274.332,8761677.08,8432898.148,8116456.532,7811889.28,7518750.809,7236612.26,6965060.862,6703699.338,6452145.316,6210030.772,5977001.494,5752716.56,5536847.84,5329079.521,5129107.637,4936639.629,4751393.917,4573099.487,4401495.495,4236330.883,4077364.018,3924362.329,3777101.976,3635367.518,3498951.597,3367654.636,3241284.549,3119656.456,3002592.416,2889921.163,2781477.861,2677103.857,2576646.451,2479958.675,2386899.075,2297331.505,2211124.927,2128153.221,2048295,1971433.431,1897456.067,1826254.678,1757725.096,1691767.064,1628284.084,1567183.281,1508375.265,1451774,1426977.842,1402605.201,1378648.841,1355101.654,1331956.65,1309206.961,1286845.835,1264866.634,1243262.836,1222028.028,1201155.909,1180640.284,1160475.063,1140654.263,1121172,1102022.492,1083200.056,1064699.105,1046514.149,1028639.789,1011070.723,993801.734,976827.697,960143.576,943744.418,927625.356,911781.605,896208.465,880901.312,865855.604,851066.875,836530.736,822242.873,808199.045,794395.085,780826.895,767490.448,754381.786,741497.019,728832.323,716383.938,704148.17,692121.389,680300.023,668680.565,657259.567,646033.638,634999.447,624153.718,613493.234,603014.83,592715.395,582591.874,572641.262,562860.606,553247.002,543797.597,534509.587,525380.216,516406.773,507586.596,498917.067,490395.612,482019.703,473786.854,465694.621,457740.602,449922.438,442237.807,434684.428,427260.061,419962.501,412789.582,405739.177,398809.191,391997.569,385302.289,378721.364,372252.84,365894.798,359645.351,353502.643,347464.853,341530.187,335696.885,329963.215,324327.476,318787.994,313343.127,307991.257,302730.796,297560.184,292477.885,287482.391,282572.22,277745.914,273002.041,268339.193,263755.986,259251.06,254823.077 PV_OM,31173.146,30912.411,30653.856,30397.464,30143.216,29891.095,29641.083,29393.161,29147.314,28903.523,28661.77,28422.04,28184.315,27948.578,27714.814,27483.004,27253.133,27025.185,26799.143,26574.992,26352.716,26132.299,25913.726,25696.981,25482.048,25268.914,25057.562,24847.978,24640.146,24434.054,24229.684,24027.025,23826.06,23626.776,23429.159,23233.195,23038.87,22846.171,22655.083,22465.593,22277.689,22091.356,21906.581,21723.352,21541.656,21361.479,21182.809,21005.634,20829.941,20655.717,20482.95,20311.628,20141.74,19973.272,19806.213,19640.552,19476.276,19313.375,19151.836,18991.648,18935.396,18879.311,18823.391,18767.638,18712.05,18656.626,18601.367,18546.271,18491.338,18436.568,18381.961,18327.515,18273.23,18219.106,18165.143,18111.339,18057.694,18004.209,17950.882,17897.713,17844.701,17791.846,17739.148,17686.606,17634.22,17581.989,17529.912,17477.99,17426.222,17374.606,17323.144,17271.834,17220.677,17169.67,17118.815,17068.11,17017.556,16967.151,16916.896,16866.789,16816.831,16767.021,16717.359,16667.843,16618.474,16569.252,16520.175,16471.243,16422.457,16373.815,16325.317,16276.962,16228.751,16180.683,16132.757,16084.973,16037.331,15989.829,15942.469,15895.248,15848.168,15801.227,15754.425,15707.761,15661.236,15614.849,15568.599,15522.486,15476.509,15430.669,15384.965,15339.396,15293.962,15248.662,15203.497,15158.465,15113.567,15068.802,15024.169,14979.669,14935.3,14891.063,14846.957,14802.981,14759.136,14715.42,14671.834,14628.378,14585.049,14541.85,14498.778,14455.834,14413.017,14370.326,14327.762,14285.325,14243.013,14200.826,14158.764,14116.827,14075.014 PV_Eff,0.316,0.323,0.33,0.338,0.346,0.354,0.362,0.371,0.379,0.388,0.397,0.407,0.416,0.426,0.436,0.446,0.456,0.467,0.478,0.489,0.501,0.512,0.524,0.536,0.549,0.562,0.575,0.588,0.602,0.616,0.63,0.645,0.66,0.676,0.691,0.707,0.724,0.741,0.758,0.776,0.794,0.813,0.831,0.851,0.871,0.891,0.912,0.933,0.955,0.977,1,1.023,1.047,1.072,1.097,1.122,1.148,1.175,1.203,1.231,1.236,1.241,1.246,1.251,1.256,1.261,1.266,1.271,1.276,1.282,1.287,1.292,1.297,1.302,1.308,1.313,1.318,1.324,1.329,1.334,1.34,1.345,1.351,1.356,1.362,1.367,1.373,1.378,1.384,1.389,1.395,1.401,1.406,1.412,1.418,1.424,1.429,1.435,1.441,1.447,1.453,1.458,1.464,1.47,1.476,1.482,1.488,1.494,1.5,1.506,1.512,1.519,1.525,1.531,1.537,1.543,1.55,1.556,1.562,1.569,1.575,1.581,1.588,1.594,1.601,1.607,1.614,1.62,1.627,1.633,1.64,1.646,1.653,1.66,1.667,1.673,1.68,1.687,1.694,1.701,1.707,1.714,1.721,1.728,1.735,1.742,1.749,1.756,1.764,1.771,1.778,1.785,1.792,1.8,1.807,1.814,1.822,1.829,1.836,1.844,1.851 Wind_Inv,1484743.979,1478792.463,1472864.803,1466960.903,1461080.67,1455224.006,1449390.819,1443581.014,1437794.497,1432031.175,1426290.955,1420573.745,1414879.451,1409207.983,1403559.249,1397933.157,1392329.617,1386748.539,1381189.832,1375653.407,1370139.174,1364647.045,1359176.93,1353728.743,1348302.394,1342897.796,1337514.863,1332153.506,1326813.641,1321495.18,1316198.037,1310922.128,1305667.367,1300433.67,1295220.952,1290029.128,1284858.116,1279707.831,1274578.191,1269469.113,1264380.514,1259312.313,1254264.427,1249236.776,1244229.277,1239241.851,1234274.417,1229326.894,1224399.203,1219491.265,1214603,1209734.329,1204885.174,1200055.457,1195245.099,1190454.023,1185682.152,1180929.409,1176195.717,1171481,1171000.489,1170520.176,1170040.06,1169560.14,1169080.417,1168600.892,1168121.562,1167642.43,1167163.494,1166684.754,1166206.211,1165727.864,1165249.713,1164771.759,1164294,1163816.437,1163339.071,1162861.9,1162384.925,1161908.145,1161431.561,1160955.172,1160478.979,1160002.982,1159527.179,1159051.572,1158576.159,1158100.942,1157625.92,1157151.092,1156676.459,1156202.021,1155727.778,1155253.729,1154779.874,1154306.214,1153832.748,1153359.476,1152886.399,1152413.515,1151940.826,1151468.33,1150996.028,1150523.92,1150052.006,1149580.285,1149108.757,1148637.423,1148166.282,1147695.335,1147224.581,1146754.02,1146283.651,1145813.476,1145343.494,1144873.704,1144404.107,1143934.703,1143465.491,1142996.472,1142527.645,1142059.01,1141590.568,1141122.318,1140654.259,1140186.393,1139718.719,1139251.236,1138783.946,1138316.847,1137849.939,1137383.223,1136916.699,1136450.365,1135984.224,1135518.273,1135052.513,1134586.945,1134121.567,1133656.38,1133191.385,1132726.579,1132261.965,1131797.541,1131333.308,1130869.265,1130405.412,1129941.749,1129478.277,1129014.995,1128551.903,1128089.001,1127626.289,1127163.766,1126701.433,1126239.29,1125777.337,1125315.573,1124853.998,1124392.612,1123931.416 Wind_OM,21166.116,21102.741,21039.555,20976.559,20913.751,20851.131,20788.699,20726.454,20664.395,20602.521,20540.834,20479.33,20418.011,20356.876,20295.924,20235.154,20174.566,20114.159,20053.934,19993.888,19934.023,19874.336,19814.829,19755.5,19696.348,19637.373,19578.575,19519.953,19461.507,19403.235,19345.138,19287.215,19229.466,19171.889,19114.485,19057.252,19000.191,18943.301,18886.581,18830.031,18773.65,18717.438,18661.395,18605.519,18549.81,18494.269,18438.893,18383.684,18328.64,18273.76,18219.045,18164.494,18140.625,18116.787,18092.981,18069.206,18045.462,18021.749,17998.068,17733.923,17999.224,17975.572,17951.951,17928.362,17904.803,17881.275,17857.778,17834.312,17810.877,17787.473,17764.1,17740.757,17717.444,17694.163,17653.069,17647.692,17624.502,17601.342,17578.213,17555.115,17532.047,17509.009,17486.001,17463.024,17440.076,17417.159,17394.272,17371.416,17348.589,17325.792,17303.025,17280.288,17257.581,17234.904,17212.256,17189.638,17167.051,17144.492,17121.964,17099.465,17076.995,17054.555,17032.145,17009.764,16987.412,16965.09,16942.797,16920.533,16898.299,16876.094,16853.918,16831.771,16809.653,16787.565,16765.505,16743.474,16721.473,16699.5,16677.556,16655.641,16633.755,16611.897,16590.068,16568.268,16546.497,16524.754,16503.04,16481.354,16459.697,16438.068,16416.467,16394.895,16373.352,16351.836,16330.349,16308.89,16287.46,16266.057,16244.683,16223.337,16202.019,16180.728,16159.466,16138.232,16117.025,16095.847,16074.696,16053.573,16032.478,16011.411,15990.371,15969.359,15948.375,15927.418,15906.488,15885.586,15864.712,15843.865,15823.046,15802.253,15781.488 Wind_Eff,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 WindOffshore_Inv,12316633.42,11925269.87,11546341.98,11179454.59,10824225.13,10480283.16,10147270.01,9824838.427,9512652.171,9210385.698,8917723.804,8634361.302,8360002.701,8094361.901,7837161.892,7588134.466,7347019.938,7113566.873,6887531.827,6668679.091,6456780.446,6251614.923,6052968.577,5860634.26,5674411.404,5494105.819,5319529.48,5150500.34,4986842.136,4828384.204,4674961.306,4526413.452,4382585.737,4243328.176,4108495.554,3977947.265,3851547.175,3729163.474,3610668.54,3495938.807,3384854.634,3277300.184,3173163.299,3072335.385,2974711.298,2880189.236,2788670.633,2700060.052,2614265.09,2531196.281,2450767,2372893.376,2297494.203,2224490.853,2153807.2,2085369.535,2019106.49,1954948.968,1892830.063,1832685,1807381.515,1782427.39,1757817.802,1733547.992,1709613.271,1686009.011,1662730.649,1639773.688,1617133.688,1594806.273,1572787.129,1551071.997,1529656.682,1508537.044,1487709,1467168.524,1446911.646,1426934.451,1407233.076,1387803.714,1368642.609,1349746.057,1331110.405,1312732.052,1294607.445,1276733.081,1259105.504,1241721.307,1224577.13,1207669.659,1190995.626,1174551.807,1158335.025,1142342.144,1126570.074,1111015.765,1095676.211,1080548.447,1065629.548,1050916.632,1036406.854,1022097.409,1007985.532,994068.494,980343.605,966808.214,953459.702,940295.491,927313.035,914509.824,901883.385,889431.277,877151.092,865040.457,853097.031,841318.505,829702.603,818247.079,806949.718,795808.338,784820.785,773984.935,763298.692,752759.993,742366.799,732117.101,722008.919,712040.298,702209.312,692514.06,682952.669,673523.289,664224.099,655053.301,646009.122,637089.814,628293.653,619618.939,611063.994,602627.166,594306.823,586101.358,578009.183,570028.736,562158.472,554396.872,546742.435,539193.68,531749.15,524407.405,517167.025,510026.612,502984.785,496040.183,489191.464,482437.304,475776.396,469207.455,462729.209,456340.407,450039.814 WindOffshore_OM,235671.987,230245.033,224943.048,219763.156,214702.543,209758.465,204928.236,200209.236,195598.903,191094.735,186694.286,182395.17,178195.051,174091.652,170082.743,166166.15,162339.747,158601.456,154949.25,151381.144,147895.204,144489.536,141162.292,137911.667,134735.896,131633.255,128602.061,125640.667,122747.467,119920.891,117159.404,114461.507,111825.736,109250.661,106734.883,104277.037,101875.79,99529.838,97237.907,94998.754,92811.163,90673.947,88585.946,86546.027,84553.082,82606.029,80703.813,78845.4,77029.782,75255.972,73523.01,71829.953,70175.884,68559.903,66981.135,65438.722,63931.827,62459.632,61021.338,59616.165,59064.341,58517.625,57975.97,57439.328,56907.654,56380.901,55859.024,55341.977,54829.717,54322.198,53819.376,53321.209,52827.654,52338.666,51854.205,51374.228,50898.694,50427.562,49960.79,49498.339,49040.169,48586.24,48136.512,47690.947,47249.507,46812.152,46378.846,45949.55,45524.229,45102.844,44685.359,44271.739,43861.948,43455.95,43053.709,42655.192,42260.364,41869.19,41481.638,41097.672,40717.261,40340.37,39966.969,39597.023,39230.502,38867.374,38507.607,38151.17,37798.032,37448.163,37101.532,36758.11,36417.867,36080.773,35746.8,35415.917,35088.098,34763.313,34441.534,34122.734,33806.884,33493.958,33183.929,32876.769,32572.453,32270.953,31972.244,31676.3,31383.096,31092.605,30804.803,30519.666,30237.167,29957.284,29679.991,29405.265,29133.081,28863.417,28596.25,28331.555,28069.31,27809.493,27552.08,27297.051,27044.382,26794.051,26546.038,26300.321,26056.878,25815.688,25576.731,25339.986,25105.432,24873.049,24642.817,24414.716,24188.727,23964.829,23743.004,23523.233,23305.495 WindOffshore_Eff,0.734,0.739,0.744,0.748,0.753,0.757,0.762,0.767,0.772,0.776,0.781,0.786,0.791,0.796,0.801,0.806,0.811,0.816,0.821,0.826,0.831,0.836,0.841,0.846,0.852,0.857,0.862,0.868,0.873,0.878,0.884,0.889,0.895,0.9,0.906,0.912,0.917,0.923,0.929,0.934,0.94,0.946,0.952,0.958,0.964,0.97,0.976,0.982,0.988,0.994,1,1.006,1.012,1.019,1.025,1.031,1.038,1.044,1.051,1.057,1.063,1.068,1.074,1.079,1.085,1.091,1.096,1.102,1.108,1.114,1.119,1.125,1.131,1.137,1.143,1.149,1.155,1.161,1.167,1.173,1.179,1.185,1.191,1.198,1.204,1.21,1.216,1.223,1.229,1.236,1.242,1.248,1.255,1.261,1.268,1.275,1.281,1.288,1.295,1.301,1.308,1.315,1.322,1.329,1.336,1.343,1.35,1.357,1.364,1.371,1.378,1.385,1.392,1.4,1.407,1.414,1.422,1.429,1.437,1.444,1.452,1.459,1.467,1.474,1.482,1.49,1.498,1.505,1.513,1.521,1.529,1.537,1.545,1.553,1.561,1.569,1.577,1.586,1.594,1.602,1.611,1.619,1.627,1.636,1.644,1.653,1.662,1.67,1.679,1.688,1.696,1.705,1.714,1.723,1.732,1.741,1.75,1.759,1.768,1.778,1.787 Biomass_Inv,2164261.917,2153919.862,2143627.227,2133383.776,2123189.274,2113043.487,2102946.182,2092897.127,2082896.093,2072942.849,2063037.168,2053178.821,2043367.583,2033603.228,2023885.534,2014214.275,2004589.232,1995010.182,1985476.906,1975989.186,1966546.803,1957149.541,1947797.185,1938489.519,1929226.331,1920007.408,1910832.537,1901701.509,1892614.115,1883570.145,1874569.392,1865611.65,1856696.713,1847824.376,1838994.437,1830206.692,1821460.939,1812756.979,1804094.611,1795473.637,1786893.859,1778355.079,1769857.103,1761399.735,1752982.781,1744606.047,1736269.343,1727972.476,1719715.256,1711497.493,1703319,1695179.588,1687079.071,1679017.262,1670993.978,1663009.033,1655062.245,1647153.431,1639282.409,1631449,1624540.035,1617660.328,1610809.756,1603988.195,1597195.523,1590431.616,1583696.354,1576989.615,1570311.278,1563661.223,1557039.33,1550445.479,1543879.553,1537341.432,1530831,1524348.138,1517892.731,1511464.661,1505063.813,1498690.072,1492343.323,1486023.451,1479730.344,1473463.886,1467223.967,1461010.472,1454823.291,1448662.312,1442527.423,1436418.515,1430335.478,1424278.201,1418246.576,1412240.494,1406259.847,1400304.528,1394374.428,1388469.441,1382589.462,1376734.383,1370904.099,1365098.507,1359317.5,1353560.974,1347828.827,1342120.955,1336437.255,1330777.624,1325141.962,1319530.165,1313942.134,1308377.767,1302836.965,1297319.627,1291825.654,1286354.948,1280907.409,1275482.94,1270081.443,1264702.82,1259346.975,1254013.812,1248703.233,1243415.145,1238149.45,1232906.055,1227684.865,1222485.786,1217308.725,1212153.588,1207020.282,1201908.714,1196818.794,1191750.429,1186703.527,1181677.999,1176673.753,1171690.699,1166728.748,1161787.81,1156867.796,1151968.618,1147090.187,1142232.416,1137395.217,1132578.502,1127782.186,1123006.181,1118250.402,1113514.764,1108799.18,1104103.565,1099427.837,1094771.909,1090135.698,1085519.122,1080922.095,1076344.537,1071786.364,1067247.494,1062727.846 Biomass_OM,75749.167,75387.195,75026.953,74668.432,74311.625,73956.522,73603.116,73251.399,72901.363,72553,72206.301,71861.259,71517.865,71176.113,70835.994,70497.5,70160.623,69825.356,69491.692,69159.622,68829.138,68500.234,68172.901,67847.133,67522.922,67200.259,66879.139,66559.553,66241.494,65924.955,65609.929,65296.408,64984.385,64673.853,64364.805,64057.234,63751.133,63446.494,63143.311,62841.577,62541.285,62242.428,61944.999,61648.991,61354.397,61061.212,60769.427,60479.037,60190.034,59902.412,59616.165,59331.286,59047.767,58765.604,58484.789,58205.316,57927.179,57650.37,57374.884,57100.715,56827.856,56556.3,56286.043,56017.077,55749.396,55482.994,55217.865,54954.003,54691.402,54430.056,54169.959,53911.104,53653.487,53397.1,53141.939,52887.997,52635.269,52383.748,52133.429,51884.306,51636.374,51389.627,51144.058,50899.663,50656.436,50414.371,50173.463,49933.706,49695.095,49457.624,49221.288,48986.081,48751.998,48519.034,48287.183,48056.44,47826.799,47598.256,47370.805,47144.44,46919.158,46694.952,46471.817,46249.749,46028.742,45808.791,45589.891,45372.036,45155.223,44939.447,44724.701,44510.981,44298.283,44086.601,43875.93,43666.266,43457.605,43249.94,43043.267,42837.583,42632.881,42429.157,42226.407,42024.625,41823.808,41623.95,41425.048,41227.096,41030.09,40834.025,40638.897,40444.702,40251.434,40059.09,39867.666,39677.156,39487.556,39298.862,39111.07,38924.176,38738.174,38553.061,38368.833,38185.486,38003.014,37821.414,37640.682,37460.814,37281.805,37103.652,36926.35,36749.895,36574.284,36399.511,36225.574,36052.468,35880.189,35708.733,35538.097,35368.276,35199.267 Biomass_Eff,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35 Biogas_Inv,2521166.319,2510004.766,2498892.626,2487829.681,2476815.713,2465850.505,2454933.842,2444065.509,2433245.291,2422472.976,2411748.351,2401071.206,2390441.33,2379858.514,2369322.549,2358833.229,2348390.347,2337993.696,2327643.073,2317338.273,2307079.095,2296865.335,2286696.793,2276573.268,2266494.562,2256460.475,2246470.811,2236525.373,2226623.964,2216766.39,2206952.457,2197181.972,2187454.742,2177770.575,2168129.282,2158530.673,2148974.557,2139460.748,2129989.058,2120559.3,2111171.29,2101824.841,2092519.77,2083255.894,2074033.031,2064850.998,2055709.616,2046608.703,2037548.082,2028527.574,2019547,2010606.185,2001704.952,1992843.126,1984020.532,1975236.997,1966492.348,1957786.413,1949119.021,1940490,1935613.822,1930749.896,1925898.193,1921058.682,1916231.332,1911416.112,1906612.992,1901821.942,1897042.931,1892275.929,1887520.906,1882777.831,1878046.675,1873327.408,1868620,1863924.421,1859240.641,1854568.631,1849908.361,1845259.801,1840622.923,1835997.696,1831384.092,1826782.082,1822191.635,1817612.724,1813045.319,1808489.391,1803944.912,1799411.852,1794890.183,1790379.876,1785880.904,1781393.236,1776916.846,1772451.703,1767997.782,1763555.052,1759123.486,1754703.056,1750293.734,1745895.492,1741508.303,1737132.137,1732766.968,1728412.769,1724069.511,1719737.166,1715415.709,1711105.11,1706805.344,1702516.382,1698238.198,1693970.764,1689714.054,1685468.04,1681232.696,1677007.995,1672793.91,1668590.414,1664397.481,1660215.084,1656043.197,1651881.794,1647730.847,1643590.331,1639460.22,1635340.487,1631231.106,1627132.052,1623043.298,1618964.819,1614896.588,1610838.58,1606790.769,1602753.13,1598725.637,1594708.264,1590700.987,1586703.779,1582716.615,1578739.471,1574772.321,1570815.14,1566867.902,1562930.583,1559003.159,1555085.603,1551177.892,1547280,1543391.903,1539513.576,1535644.995,1531786.135,1527936.972,1524097.481,1520267.639,1516447.42,1512636.801,1508835.758,1505044.266 Biogas_OM,95804.32,95380.181,94957.92,94537.528,94118.997,93702.319,93287.486,92874.489,92463.321,92053.973,91646.437,91240.706,90836.771,90434.624,90034.257,89635.663,89238.833,88843.76,88450.437,88058.854,87669.006,87280.883,86894.478,86509.784,86126.793,85745.498,85365.891,84987.964,84611.711,84237.123,83864.193,83492.915,83123.28,82755.282,82388.913,82024.166,81661.033,81299.508,80939.584,80581.253,80224.509,79869.344,79515.751,79163.724,78813.255,78464.338,78116.965,77771.131,77426.827,77084.048,76742.786,76403.035,76064.788,75728.039,75392.78,75059.006,74726.709,74395.884,74066.523,73738.62,73412.169,73087.163,72763.596,72441.461,72120.753,71801.464,71483.589,71167.122,70852.055,70538.383,70226.1,69915.199,69605.675,69297.521,68990.731,68685.299,68381.22,68078.487,67777.094,67477.035,67178.305,66880.897,66584.806,66290.026,65996.551,65704.375,65413.493,65123.898,64835.586,64548.549,64262.784,63978.284,63695.043,63413.056,63132.318,62852.822,62574.564,62297.538,62021.738,61747.159,61473.796,61201.643,60930.694,60660.946,60392.391,60125.026,59858.844,59593.841,59330.01,59067.348,58805.849,58545.507,58286.318,58028.276,57771.377,57515.615,57260.986,57007.483,56755.103,56503.841,56253.69,56004.647,55756.707,55509.864,55264.114,55019.452,54775.874,54533.373,54291.946,54051.588,53812.294,53574.06,53336.88,53100.75,52865.666,52631.622,52398.615,52166.639,51935.69,51705.763,51476.855,51248.96,51022.073,50796.192,50571.31,50347.424,50124.528,49902.62,49681.694,49461.747,49242.773,49024.768,48807.729,48591.65,48376.528,48162.358,47949.137,47736.859,47525.522,47315.12,47105.649 Biogas_Eff,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3 Igcc_Inv,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1724880,1714903.352,1704984.408,1695122.835,1685318.302,1675570.477,1665879.033,1656243.645,1646663.987,1637139.737,1627670.576,1618256.184,1608896.244,1599590.442,1590338.464,1581140,1575417.997,1569716.701,1564036.037,1558375.932,1552736.31,1547117.097,1541518.219,1535939.604,1530381.177,1524842.865,1519324.596,1513826.297,1508347.896,1502889.321,1497450.5,1492031.361,1486631.834,1481251.847,1475891.33,1470550.213,1465228.424,1459925.894,1454642.554,1449378.333,1444133.164,1438906.976,1433699.701,1428511.271,1423341.617,1418190.672,1413058.368,1407944.637,1402849.412,1397772.626,1392714.213,1387674.106,1382652.238,1377648.544,1372662.958,1367695.415,1362745.848,1357814.193,1352900.386,1348004.362,1343126.055,1338265.403,1333422.341,1328596.806,1323788.733,1318998.061,1314224.726,1309468.665,1304729.816,1300008.116,1295303.504,1290615.917,1285945.294,1281291.574,1276654.695,1272034.597,1267431.218,1262844.499,1258274.378,1253720.797,1249183.694,1244663.011,1240158.687,1235670.665,1231198.884,1226743.286,1222303.813,1217880.405,1213473.006,1209081.556,1204705.999,1200346.276,1196002.331,1191674.106,1187361.545,1183064.591,1178783.186,1174517.276,1170266.804,1166031.714,1161811.95,1157607.457 Igcc_OM,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60370.8,60021.617,59674.454,59329.299,58986.141,58644.967,58305.766,57968.528,57633.24,57299.891,56968.47,56638.966,56311.369,55985.665,55661.846,55339.9,55139.63,54940.085,54741.261,54543.158,54345.771,54149.098,53953.138,53757.886,53563.341,53369.5,53176.361,52983.92,52792.176,52601.126,52410.767,52221.098,52032.114,51843.815,51656.197,51469.257,51282.995,51097.406,50912.489,50728.242,50544.661,50361.744,50179.49,49997.894,49816.957,49636.674,49457.043,49278.062,49099.729,48922.042,48744.997,48568.594,48392.828,48217.699,48043.204,47869.34,47696.105,47523.497,47351.514,47180.153,47009.412,46839.289,46669.782,46500.888,46332.606,46164.932,45997.865,45831.403,45665.544,45500.284,45335.623,45171.557,45008.085,44845.205,44682.914,44521.211,44360.093,44199.557,44039.603,43880.228,43721.429,43563.205,43405.554,43248.473,43091.961,42936.015,42780.633,42625.814,42471.555,42317.854,42164.71,42012.12,41860.082,41708.594,41557.654,41407.261,41257.412,41108.105,40959.338,40811.11,40663.418,40516.261 Igcc_Eff,0.383,0.384,0.386,0.388,0.39,0.391,0.393,0.395,0.397,0.399,0.4,0.402,0.404,0.406,0.408,0.41,0.411,0.413,0.415,0.417,0.419,0.421,0.423,0.425,0.427,0.429,0.43,0.432,0.434,0.436,0.438,0.44,0.442,0.444,0.446,0.448,0.45,0.453,0.455,0.457,0.459,0.461,0.463,0.465,0.467,0.469,0.471,0.474,0.476,0.478,0.48,0.482,0.484,0.487,0.489,0.491,0.493,0.495,0.498,0.5,0.501,0.503,0.504,0.505,0.507,0.508,0.509,0.511,0.512,0.513,0.515,0.516,0.517,0.519,0.52,0.522,0.523,0.525,0.527,0.529,0.531,0.532,0.534,0.536,0.538,0.539,0.541,0.543,0.545,0.547,0.549,0.55,0.552,0.554,0.556,0.558,0.56,0.561,0.563,0.565,0.567,0.569,0.571,0.573,0.575,0.577,0.579,0.58,0.582,0.584,0.586,0.588,0.59,0.592,0.594,0.596,0.598,0.6,0.602,0.604,0.606,0.608,0.61,0.612,0.614,0.616,0.618,0.621,0.623,0.625,0.627,0.629,0.631,0.633,0.635,0.637,0.639,0.642,0.644,0.646,0.648,0.65,0.652,0.655,0.657,0.659,0.661,0.663,0.666,0.668,0.67,0.672,0.674,0.677,0.679,0.681,0.684,0.686,0.688,0.69,0.693 IgccCCS_Inv,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2501076,2470860.002,2441009.049,2411518.731,2382384.692,2353602.627,2325168.284,2297077.462,2269326.01,2241909.83,2214824.87,2188067.128,2161632.653,2135517.537,2109717.923,2084230,2068456.653,2052802.678,2037267.171,2021849.237,2006547.984,1991362.531,1976292,1961335.522,1946492.235,1931761.28,1917141.809,1902632.977,1888233.947,1873943.888,1859761.976,1845687.391,1831719.323,1817856.964,1804099.514,1790446.181,1776896.175,1763448.715,1750103.024,1736858.333,1723713.878,1710668.898,1697722.643,1684874.364,1672123.32,1659468.776,1646910,1634446.269,1622076.862,1609801.067,1597618.174,1585527.481,1573528.289,1561619.907,1549801.646,1538072.826,1526432.769,1514880.803,1503416.262,1492038.484,1480746.812,1469540.596,1458419.187,1447381.944,1436428.231,1425557.415,1414768.869,1404061.97,1393436.1,1382890.646,1372425,1362038.557,1351730.719,1341500.889,1331348.478,1321272.9,1311273.574,1301349.922,1291501.372,1281727.355,1272027.307,1262400.669,1252846.885,1243365.403,1233955.677,1224617.163,1215349.322,1206151.62,1197023.526,1187964.513,1178974.058,1170051.642,1161196.75,1152408.872,1143687.5,1135032.131,1126442.265,1117917.407,1109457.065,1101060.75,1092727.978,1084458.269 IgccCCS_OM,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,87681.4,86641.008,85612.962,84597.113,83593.319,82601.434,81621.32,80652.834,79695.841,78750.203,77815.785,76892.455,75980.08,75078.532,74187.681,73307.4,72762.537,72221.723,71684.929,71152.125,70623.281,70098.367,69577.355,69060.216,68546.92,68037.439,67531.745,67029.81,66531.605,66037.103,65546.277,65059.099,64575.542,64095.579,63619.183,63146.328,62676.988,62211.136,61748.746,61289.793,60834.252,60382.096,59933.301,59487.842,59045.694,58606.832,58171.231,57738.869,57309.72,56883.761,56460.967,56041.316,55624.785,55211.349,54800.986,54393.673,53989.387,53588.107,53189.809,52794.471,52402.072,52012.589,51626.001,51242.286,50861.424,50483.392,50108.17,49735.737,49366.072,48999.154,48634.964,48273.481,47914.684,47558.554,47205.071,46854.215,46505.967,46160.308,45817.218,45476.677,45138.668,44803.171,44470.168,44139.64,43811.568,43485.935,43162.722,42841.912,42523.485,42207.426,41893.716,41582.337,41273.273,40966.506,40662.019,40359.795,40059.818,39762.07,39466.535,39173.196,38882.038,38593.044 IgccCCS_Eff,0.295,0.297,0.299,0.3,0.302,0.304,0.305,0.307,0.309,0.311,0.312,0.314,0.316,0.318,0.319,0.321,0.323,0.325,0.326,0.328,0.33,0.332,0.334,0.336,0.338,0.339,0.341,0.343,0.345,0.347,0.349,0.351,0.353,0.355,0.357,0.359,0.361,0.363,0.365,0.367,0.369,0.371,0.373,0.375,0.377,0.379,0.381,0.384,0.386,0.388,0.39,0.392,0.394,0.397,0.399,0.401,0.403,0.405,0.408,0.41,0.413,0.415,0.418,0.42,0.423,0.426,0.428,0.431,0.434,0.436,0.439,0.442,0.444,0.447,0.45,0.453,0.455,0.458,0.461,0.464,0.466,0.469,0.472,0.475,0.478,0.481,0.483,0.486,0.489,0.492,0.495,0.498,0.501,0.504,0.507,0.51,0.513,0.516,0.519,0.522,0.525,0.529,0.532,0.535,0.538,0.541,0.545,0.548,0.551,0.554,0.558,0.561,0.564,0.568,0.571,0.575,0.578,0.582,0.585,0.588,0.592,0.596,0.599,0.603,0.606,0.61,0.614,0.617,0.621,0.625,0.628,0.632,0.636,0.64,0.644,0.647,0.651,0.655,0.659,0.663,0.667,0.671,0.675,0.679,0.683,0.687,0.691,0.695,0.7,0.704,0.708,0.712,0.716,0.721,0.725,0.729,0.734,0.738,0.743,0.747,0.751 CcgtCCS_Inv,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1164294,1150227.932,1136331.799,1122603.547,1109041.15,1095642.602,1082405.925,1069329.163,1056410.384,1043647.679,1031039.163,1018582.974,1006277.269,994120.233,982110.068,970245,962902.235,955615.04,948382.994,941205.679,934082.682,927013.592,919998,913035.502,906125.695,899268.182,892462.566,885708.455,879005.458,872353.189,865751.265,859199.303,852696.926,846243.759,839839.429,833483.567,827175.806,820915.781,814703.132,808537.5,802418.529,796345.866,790319.161,784338.066,778402.235,772511.327,766665,760862.918,755104.746,749390.152,743718.805,738090.379,732504.548,726960.991,721459.387,715999.419,710580.772,705203.133,699866.191,694569.639,689313.171,684096.484,678919.277,673781.25,668682.108,663621.555,658599.301,653615.055,648668.529,643759.439,638887.5,634052.432,629253.955,624491.793,619765.671,615075.316,610420.457,605800.826,601216.156,596666.183,592150.643,587669.277,583221.826,578808.033,574427.643,570080.403,565766.064,561484.375,557235.09,553017.963,548832.751,544679.212,540557.108,536466.199,532406.25,528377.027,524378.296,520409.828,516471.392,512562.763,508683.714,504834.022 CcgtCCS_OM,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29466.7,29101.218,28740.27,28383.798,28031.748,27684.065,27340.693,27001.581,26666.675,26335.923,26009.273,25686.674,25368.077,25053.432,24742.689,24435.8,24245.931,24057.536,23870.606,23685.128,23501.091,23318.485,23137.297,22957.517,22779.134,22602.137,22426.515,22252.258,22079.355,21907.796,21737.569,21568.665,21401.074,21234.784,21069.787,20906.072,20743.629,20582.448,20422.52,20263.834,20106.381,19950.152,19795.137,19641.326,19488.71,19337.28,19187.027,19037.941,18890.014,18743.236,18597.598,18453.092,18309.709,18167.44,18026.277,17886.21,17747.232,17609.333,17472.507,17336.743,17202.034,17068.372,16935.748,16804.155,16673.585,16544.029,16415.479,16287.929,16161.369,16035.793,15911.193,15787.561,15664.889,15543.171,15422.398,15302.564,15183.661,15065.682,14948.62,14832.467,14717.217,14602.862,14489.396,14376.811,14265.101,14154.26,14044.279,13935.153,13826.875,13719.438,13612.836,13507.063,13402.111,13297.975,13194.648,13092.124,12990.396,12889.459,12789.306,12689.931,12591.329,12493.493 CcgtCCS_Eff,0.412,0.414,0.415,0.417,0.419,0.421,0.423,0.424,0.426,0.428,0.43,0.432,0.434,0.435,0.437,0.439,0.441,0.443,0.445,0.447,0.449,0.451,0.452,0.454,0.456,0.458,0.46,0.462,0.464,0.466,0.468,0.47,0.472,0.474,0.476,0.478,0.48,0.482,0.485,0.487,0.489,0.491,0.493,0.495,0.497,0.499,0.501,0.504,0.506,0.508,0.51,0.512,0.514,0.517,0.519,0.521,0.523,0.525,0.528,0.53,0.531,0.533,0.534,0.535,0.537,0.538,0.539,0.541,0.542,0.543,0.545,0.546,0.547,0.549,0.55,0.552,0.553,0.555,0.557,0.559,0.56,0.562,0.564,0.566,0.568,0.569,0.571,0.573,0.575,0.577,0.578,0.58,0.582,0.584,0.586,0.588,0.589,0.591,0.593,0.595,0.597,0.599,0.601,0.603,0.604,0.606,0.608,0.61,0.612,0.614,0.616,0.618,0.62,0.622,0.624,0.626,0.628,0.63,0.632,0.634,0.636,0.638,0.64,0.642,0.644,0.646,0.648,0.65,0.652,0.654,0.656,0.658,0.66,0.662,0.664,0.666,0.668,0.671,0.673,0.675,0.677,0.679,0.681,0.683,0.686,0.688,0.69,0.692,0.694,0.696,0.699,0.701,0.703,0.705,0.707,0.71,0.712,0.714,0.716,0.719,0.721 \ No newline at end of file diff --git a/emlab-generation/src/main/resources/dataOld/policyGoalNREAP_CF_CWE-half.csv b/emlab-generation/src/main/resources/dataOld/policyGoalNREAP_CF_CWE-half.csv new file mode 100644 index 00000000..2b67e21a --- /dev/null +++ b/emlab-generation/src/main/resources/dataOld/policyGoalNREAP_CF_CWE-half.csv @@ -0,0 +1,6 @@ +Year,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020,2021,2022,2023,2024,2025,2026,2027,2028,2029,2030,2031,2032,2033,2034,2035,2036,2037,2038,2039,2040,2041,2042,2043,2044,2045,2046,2047,2048,2049,2050,2051,2052,2053,2054,2055,2056,2057,2058,2059,2060 +Biogas,1548.5,1660.75,1791.1875,1928.9,2058.25,2200.25,2337.75,2478.35,2615.9,2758,2753.68468510536,2749.36937021072,2745.05405531608,2740.73874042144,2736.4234255268,2732.10811063216,2727.79279573752,2723.47748084288,2719.16216594824,2714.8468510536,2710.53153615896,2706.21622126432,2701.90090636967,2697.58559147503,2693.27027658039,2688.95496168575,2684.63964679111,2680.32433189647,2676.00901700183,2671.69370210719,2667.37838721255,2663.06307231791,2658.74775742327,2654.43244252863,2650.11712763399,2645.80181273935,2641.48649784471,2637.17118295007,2632.85586805543,2628.54055316079,2628.54055316079,2628.54055316079,2628.54055316079,2628.54055316079,2628.54055316079,2628.54055316079,2628.54055316079,2628.54055316079,2628.54055316079,2628.54055316079 +WindOffshore,432.5,1095,1980,3051,4065,5497,6964.5,8441,9985.5,11589,12069.7378619154,12550.4757238307,13031.2135857461,13511.9514476615,13992.6893095768,14473.4271714922,14954.1650334076,15434.9028953229,15915.6407572383,16396.3786191537,16877.116481069,17357.8543429844,17838.5922048998,18319.3300668151,18800.0679287305,19280.8057906459,19761.5436525612,20242.2815144766,20723.019376392,21203.7572383073,21684.4951002227,22165.2329621381,22645.9708240535,23126.7086859688,23607.4465478842,24088.1844097996,24568.9222717149,25049.6601336303,25530.3979955457,26011.135857461,26011.135857461,26011.135857461,26011.135857461,26011.135857461,26011.135857461,26011.135857461,26011.135857461,26011.135857461,26011.135857461,26011.135857461 +WindOnshore,19425.6,20832.35,21983.35,23491.95,24846.8,26108.3,27335.3,28695.2,30101.1,31600.5,31380.1121380846,31159.7242761693,30939.3364142539,30718.9485523385,30498.5606904232,30278.1728285078,30057.7849665924,29837.3971046771,29617.0092427617,29396.6213808463,29176.233518931,28955.8456570156,28735.4577951002,28515.0699331849,28294.6820712695,28074.2942093541,27853.9063474388,27633.5184855234,27413.130623608,27192.7427616927,26972.3548997773,26751.9670378619,26531.5791759466,26311.1913140312,26090.8034521158,25870.4155902004,25650.0277282851,25429.6398663697,25209.2520044543,24988.864142539,24988.864142539,24988.864142539,24988.864142539,24988.864142539,24988.864142539,24988.864142539,24988.864142539,24988.864142539,24988.864142539,24988.864142539 +Photovoltaic,10833.05,12786.05,14750.05,16749.8,18774.05,20849.55,22945.5,25072,27222,29394,31214.2,33034.4,34854.6,36674.8,38495,40315.2,42135.4,43955.6,45775.8,47596,49416.2,51236.4,53056.6,54876.8,56697,58517.2,60337.4,62157.6,63977.8,65798,67618.2,69438.4,71258.6,73078.8,74899,76719.2,78539.4,80359.6,82179.8,84000,84000,84000,84000,84000,84000,84000,84000,84000,84000,84000 +BiomassSolid,3365.7,3673.65,4005.05,4260.7,4507.85,4757.2,5001.05,5257.85,5503.7,5732,5784.91579385938,5837.83158771877,5890.74738157815,5943.66317543753,5996.57896929691,6049.49476315629,6102.41055701568,6155.32635087506,6208.24214473444,6261.15793859382,6314.07373245321,6366.98952631259,6419.90532017197,6472.82111403135,6525.73690789074,6578.65270175012,6631.5684956095,6684.48428946888,6737.40008332827,6790.31587718765,6843.23167104703,6896.14746490641,6949.0632587658,7001.97905262518,7054.89484648456,7107.81064034394,7160.72643420333,7213.64222806271,7266.55802192209,7319.47381578147,7319.47381578147,7319.47381578147,7319.47381578147,7319.47381578147,7319.47381578147,7319.47381578147,7319.47381578147,7319.47381578147,7319.47381578147,7319.47381578147 diff --git a/emlab-generation/src/main/resources/dataOld/policyGoalNREAP_CF_CWE-null.csv b/emlab-generation/src/main/resources/dataOld/policyGoalNREAP_CF_CWE-null.csv new file mode 100644 index 00000000..91290662 --- /dev/null +++ b/emlab-generation/src/main/resources/dataOld/policyGoalNREAP_CF_CWE-null.csv @@ -0,0 +1,6 @@ +Year,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020,2021,2022,2023,2024,2025,2026,2027,2028,2029,2030,2031,2032,2033,2034,2035,2036,2037,2038,2039,2040,2041,2042,2043,2044,2045,2046,2047,2048,2049,2050,2051,2052,2053,2054,2055,2056,2057,2058,2059,2060 +Biogas,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +WindOffshore,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +WindOnshore,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Photovoltaic,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +BiomassSolid,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 diff --git a/emlab-generation/src/main/resources/dataOld/policyGoalNREAP_CF_CWE.csv b/emlab-generation/src/main/resources/dataOld/policyGoalNREAP_CF_CWE.csv new file mode 100644 index 00000000..b1753a6c --- /dev/null +++ b/emlab-generation/src/main/resources/dataOld/policyGoalNREAP_CF_CWE.csv @@ -0,0 +1,6 @@ +Year,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020,2021,2022,2023,2024,2025,2026,2027,2028,2029,2030,2031,2032,2033,2034,2035,2036,2037,2038,2039,2040,2041,2042,2043,2044,2045,2046,2047,2048,2049,2050,2051,2052,2053,2054,2055,2056,2057,2058,2059,2060 +Biogas,3097,3321.5,3582.375,3857.8,4116.5,4400.5,4675.5,4956.7,5231.8,5516,5507.36937021072,5498.73874042144,5490.10811063216,5481.47748084288,5472.8468510536,5464.21622126432,5455.58559147503,5446.95496168575,5438.32433189647,5429.69370210719,5421.06307231791,5412.43244252863,5403.80181273935,5395.17118295007,5386.54055316079,5377.90992337151,5369.27929358223,5360.64866379295,5352.01803400366,5343.38740421438,5334.7567744251,5326.12614463582,5317.49551484654,5308.86488505726,5300.23425526798,5291.6036254787,5282.97299568942,5274.34236590014,5265.71173611086,5257.08110632158,5257.08110632158,5257.08110632158,5257.08110632158,5257.08110632158,5257.08110632158,5257.08110632158,5257.08110632158,5257.08110632158,5257.08110632158,5257.08110632158 +WindOffshore,865,2190,3960,6102,8130,10994,13929,16882,19971,23178,24139.4757238307,25100.9514476615,26062.4271714922,27023.9028953229,27985.3786191537,28946.8543429844,29908.3300668151,30869.8057906459,31831.2815144766,32792.7572383073,33754.2329621381,34715.7086859688,35677.1844097996,36638.6601336303,37600.135857461,38561.6115812918,39523.0873051225,40484.5630289532,41446.038752784,42407.5144766147,43368.9902004454,44330.4659242762,45291.9416481069,46253.4173719376,47214.8930957684,48176.3688195991,49137.8445434298,50099.3202672606,51060.7959910913,52022.2717149221,52022.2717149221,52022.2717149221,52022.2717149221,52022.2717149221,52022.2717149221,52022.2717149221,52022.2717149221,52022.2717149221,52022.2717149221,52022.2717149221 +WindOnshore,38851.2,41664.7,43966.7,46983.9,49693.6,52216.6,54670.6,57390.4,60202.2,63201,62760.2242761693,62319.4485523385,61878.6728285078,61437.8971046771,60997.1213808463,60556.3456570156,60115.5699331849,59674.7942093541,59234.0184855234,58793.2427616927,58352.4670378619,57911.6913140312,57470.9155902004,57030.1398663697,56589.364142539,56148.5884187082,55707.8126948775,55267.0369710468,54826.261247216,54385.4855233853,53944.7097995546,53503.9340757238,53063.1583518931,52622.3826280624,52181.6069042316,51740.8311804009,51300.0554565702,50859.2797327394,50418.5040089087,49977.728285078,49977.728285078,49977.728285078,49977.728285078,49977.728285078,49977.728285078,49977.728285078,49977.728285078,49977.728285078,49977.728285078,49977.728285078 +Photovoltaic,21666.1,25572.1,29500.1,33499.6,37548.1,41699.1,45891,50144,54444,58788,62428.4,66068.8,69709.2,73349.6,76990,80630.4,84270.8,87911.2,91551.6,95192,98832.4,102472.8,106113.2,109753.6,113394,117034.4,120674.8,124315.2,127955.6,131596,135236.4,138876.8,142517.2,146157.6,149798,153438.4,157078.8,160719.2,164359.6,168000,168000,168000,168000,168000,168000,168000,168000,168000,168000,168000 +BiomassSolid,6731.4,7347.3,8010.1,8521.4,9015.7,9514.4,10002.1,10515.7,11007.4,11464,11569.8315877188,11675.6631754375,11781.4947631563,11887.3263508751,11993.1579385938,12098.9895263126,12204.8211140314,12310.6527017501,12416.4842894689,12522.3158771876,12628.1474649064,12733.9790526252,12839.8106403439,12945.6422280627,13051.4738157815,13157.3054035002,13263.136991219,13368.9685789378,13474.8001666565,13580.6317543753,13686.4633420941,13792.2949298128,13898.1265175316,14003.9581052504,14109.7896929691,14215.6212806879,14321.4528684067,14427.2844561254,14533.1160438442,14638.9476315629,14638.9476315629,14638.9476315629,14638.9476315629,14638.9476315629,14638.9476315629,14638.9476315629,14638.9476315629,14638.9476315629,14638.9476315629,14638.9476315629 diff --git a/emlab-generation/src/main/resources/dataOld/policyGoalNREAP_CF_UK-half.csv b/emlab-generation/src/main/resources/dataOld/policyGoalNREAP_CF_UK-half.csv new file mode 100644 index 00000000..2511b513 --- /dev/null +++ b/emlab-generation/src/main/resources/dataOld/policyGoalNREAP_CF_UK-half.csv @@ -0,0 +1,6 @@ +Year,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020,2021,2022,2023,2024,2025,2026,2027,2028,2029,2030,2031,2032,2033,2034,2035,2036,2037,2038,2039,2040,2041,2042,2043,2044,2045,2046,2047,2048,2049,2050,2051,2052,2053,2054,2055,2056,2057,2058,2059,2060 +Biogas,660,650,640,630,620,605,590,575,565,550,568.126530162474,586.253060324948,604.379590487421,622.506120649895,640.632650812369,658.759180974843,676.885711137317,695.01224129979,713.138771462264,731.265301624738,749.391831787212,767.518361949685,785.644892112159,803.771422274633,821.897952437107,840.024482599581,858.151012762054,876.277542924528,894.404073087002,912.530603249476,930.65713341195,948.783663574423,966.910193736897,985.036723899371,1003.16325406184,1021.28978422432,1039.41631438679,1057.54284454927,1075.66937471174,1093.79590487421,1093.79590487421,1093.79590487421,1093.79590487421,1093.79590487421,1093.79590487421,1093.79590487421,1093.79590487421,1093.79590487421,1093.79590487421,1093.79590487421 +WindOffshore,990,1325,1735,2225,2750,3405,4155,4900,5650,6495,6803.62118725552,7112.24237451104,7420.86356176656,7729.48474902208,8038.1059362776,8346.72712353312,8655.34831078864,8963.96949804416,9272.59068529968,9581.2118725552,9889.83305981073,10198.4542470662,10507.0754343218,10815.6966215773,11124.3178088328,11432.9389960883,11741.5601833438,12050.1813705994,12358.8025578549,12667.4237451104,12976.0449323659,13284.6661196215,13593.287306877,13901.9084941325,14210.529681388,14519.1508686435,14827.7720558991,15136.3932431546,15445.0144304101,15753.6356176656,15753.6356176656,15753.6356176656,15753.6356176656,15753.6356176656,15753.6356176656,15753.6356176656,15753.6356176656,15753.6356176656,15753.6356176656,15753.6356176656 +WindOnshore,2635,2985,3360,3770,4355,4990,5675,6385,6920,7445,7766.86620107781,8088.73240215563,8410.59860323344,8732.46480431125,9054.33100538906,9376.19720646688,9698.06340754469,10019.9296086225,10341.7958097003,10663.6620107781,10985.5282118559,11307.3944129338,11629.2606140116,11951.1268150894,12272.9930161672,12594.859217245,12916.7254183228,13238.5916194006,13560.4578204784,13882.3240215563,14204.1902226341,14526.0564237119,14847.9226247897,15169.7888258675,15491.6550269453,15813.5212280231,16135.3874291009,16457.2536301788,16779.1198312566,17100.9860323344,17100.9860323344,17100.9860323344,17100.9860323344,17100.9860323344,17100.9860323344,17100.9860323344,17100.9860323344,17100.9860323344,17100.9860323344,17100.9860323344 +Photovoltaic,70,140,245,365,535,700,860,1020,1180,1340,1773.49918833333,2206.99837666667,2640.497565,3073.99675333333,3507.49594166667,3940.99513,4374.49431833333,4807.99350666667,5241.492695,5674.99188333333,6108.49107166667,6541.99026,6975.48944833333,7408.98863666667,7842.487825,8275.98701333333,8709.48620166667,9142.98539,9576.48457833333,10009.9837666667,10443.482955,10876.9821433333,11310.4813316667,11743.98052,12177.4797083333,12610.9788966667,13044.478085,13477.9772733333,13911.4764616667,14344.97565,14344.97565,14344.97565,14344.97565,14344.97565,14344.97565,14344.97565,14344.97565,14344.97565,14344.97565,14344.97565 +BiomassSolid,295,365,440,515,645,790,955,1130,1330,1570,1621.74300428197,1673.48600856394,1725.22901284591,1776.97201712788,1828.71502140985,1880.45802569182,1932.20102997379,1983.94403425577,2035.68703853774,2087.43004281971,2139.17304710168,2190.91605138365,2242.65905566562,2294.40205994759,2346.14506422956,2397.88806851153,2449.6310727935,2501.37407707547,2553.11708135744,2604.86008563941,2656.60308992138,2708.34609420335,2760.08909848532,2811.8321027673,2863.57510704927,2915.31811133124,2967.06111561321,3018.80411989518,3070.54712417715,3122.29012845912,3122.29012845912,3122.29012845912,3122.29012845912,3122.29012845912,3122.29012845912,3122.29012845912,3122.29012845912,3122.29012845912,3122.29012845912,3122.29012845912 diff --git a/emlab-generation/src/main/resources/dataOld/policyGoalNREAP_CF_UK-null.csv b/emlab-generation/src/main/resources/dataOld/policyGoalNREAP_CF_UK-null.csv new file mode 100644 index 00000000..91290662 --- /dev/null +++ b/emlab-generation/src/main/resources/dataOld/policyGoalNREAP_CF_UK-null.csv @@ -0,0 +1,6 @@ +Year,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020,2021,2022,2023,2024,2025,2026,2027,2028,2029,2030,2031,2032,2033,2034,2035,2036,2037,2038,2039,2040,2041,2042,2043,2044,2045,2046,2047,2048,2049,2050,2051,2052,2053,2054,2055,2056,2057,2058,2059,2060 +Biogas,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +WindOffshore,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +WindOnshore,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +Photovoltaic,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +BiomassSolid,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 diff --git a/emlab-generation/src/main/resources/dataOld/policyGoalNREAP_CF_UK.csv b/emlab-generation/src/main/resources/dataOld/policyGoalNREAP_CF_UK.csv new file mode 100644 index 00000000..2c30fe04 --- /dev/null +++ b/emlab-generation/src/main/resources/dataOld/policyGoalNREAP_CF_UK.csv @@ -0,0 +1,6 @@ +Year,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020,2021,2022,2023,2024,2025,2026,2027,2028,2029,2030,2031,2032,2033,2034,2035,2036,2037,2038,2039,2040,2041,2042,2043,2044,2045,2046,2047,2048,2049,2050,2051,2052,2053,2054,2055,2056,2057,2058,2059,2060 +Biogas,1320,1300,1280,1260,1240,1210,1180,1150,1130,1100,1136.25306032495,1172.5061206499,1208.75918097484,1245.01224129979,1281.26530162474,1317.51836194969,1353.77142227463,1390.02448259958,1426.27754292453,1462.53060324948,1498.78366357442,1535.03672389937,1571.28978422432,1607.54284454927,1643.79590487421,1680.04896519916,1716.30202552411,1752.55508584906,1788.808146174,1825.06120649895,1861.3142668239,1897.56732714885,1933.82038747379,1970.07344779874,2006.32650812369,2042.57956844864,2078.83262877358,2115.08568909853,2151.33874942348,2187.59180974843,2187.59180974843,2187.59180974843,2187.59180974843,2187.59180974843,2187.59180974843,2187.59180974843,2187.59180974843,2187.59180974843,2187.59180974843,2187.59180974843 +WindOffshore,1980,2650,3470,4450,5500,6810,8310,9800,11300,12990,13607.242374511,14224.4847490221,14841.7271235331,15458.9694980442,16076.2118725552,16693.4542470662,17310.6966215773,17927.9389960883,18545.1813705994,19162.4237451104,19779.6661196215,20396.9084941325,21014.1508686435,21631.3932431546,22248.6356176656,22865.8779921767,23483.1203666877,24100.3627411987,24717.6051157098,25334.8474902208,25952.0898647319,26569.3322392429,27186.5746137539,27803.816988265,28421.059362776,29038.3017372871,29655.5441117981,30272.7864863091,30890.0288608202,31507.2712353312,31507.2712353312,31507.2712353312,31507.2712353312,31507.2712353312,31507.2712353312,31507.2712353312,31507.2712353312,31507.2712353312,31507.2712353312,31507.2712353312 +WindOnshore,5270,5970,6720,7540,8710,9980,11350,12770,13840,14890,15533.7324021556,16177.4648043113,16821.1972064669,17464.9296086225,18108.6620107781,18752.3944129338,19396.1268150894,20039.859217245,20683.5916194006,21327.3240215563,21971.0564237119,22614.7888258675,23258.5212280231,23902.2536301788,24545.9860323344,25189.71843449,25833.4508366456,26477.1832388013,27120.9156409569,27764.6480431125,28408.3804452681,29052.1128474238,29695.8452495794,30339.577651735,30983.3100538906,31627.0424560463,32270.7748582019,32914.5072603575,33558.2396625131,34201.9720646688,34201.9720646688,34201.9720646688,34201.9720646688,34201.9720646688,34201.9720646688,34201.9720646688,34201.9720646688,34201.9720646688,34201.9720646688,34201.9720646688 +Photovoltaic,140,280,490,730,1070,1400,1720,2040,2360,2680,3546.99837666667,4413.99675333333,5280.99513,6147.99350666667,7014.99188333333,7881.99026,8748.98863666667,9615.98701333333,10482.98539,11349.9837666667,12216.9821433333,13083.98052,13950.9788966667,14817.9772733333,15684.97565,16551.9740266667,17418.9724033333,18285.97078,19152.9691566667,20019.9675333333,20886.96591,21753.9642866667,22620.9626633333,23487.96104,24354.9594166667,25221.9577933333,26088.95617,26955.9545466667,27822.9529233333,28689.9513,28689.9513,28689.9513,28689.9513,28689.9513,28689.9513,28689.9513,28689.9513,28689.9513,28689.9513,28689.9513 +BiomassSolid,590,730,880,1030,1290,1580,1910,2260,2660,3140,3243.48600856394,3346.97201712788,3450.45802569182,3553.94403425577,3657.43004281971,3760.91605138365,3864.40205994759,3967.88806851153,4071.37407707547,4174.86008563941,4278.34609420335,4381.8321027673,4485.31811133124,4588.80411989518,4692.29012845912,4795.77613702306,4899.262145587,5002.74815415094,5106.23416271488,5209.72017127883,5313.20617984277,5416.69218840671,5520.17819697065,5623.66420553459,5727.15021409853,5830.63622266247,5934.12223122641,6037.60823979036,6141.0942483543,6244.58025691824,6244.58025691824,6244.58025691824,6244.58025691824,6244.58025691824,6244.58025691824,6244.58025691824,6244.58025691824,6244.58025691824,6244.58025691824,6244.58025691824 diff --git a/emlab-generation/src/main/resources/dataOld/powerPlantsCWEandUK-multinodeadapted.csv b/emlab-generation/src/main/resources/dataOld/powerPlantsCWEandUK-multinodeadapted.csv new file mode 100644 index 00000000..4dc63ac5 --- /dev/null +++ b/emlab-generation/src/main/resources/dataOld/powerPlantsCWEandUK-multinodeadapted.csv @@ -0,0 +1,361 @@ +Name,Technology,Location,Age,Owner,Capacity,Efficiency +Biogas Renewable Target Investor CWE 1,Biogas,deNode,1,Renewable Target Investor CWE,930.3, +Biogas Renewable Target Investor CWE 4,Biogas,deNode,4,Renewable Target Investor CWE,930.3, +Biogas Renewable Target Investor CWE 6,Biogas,deNode,6,Renewable Target Investor CWE,1001, +Biomass Renewable Target Investor CWE 1,Biomass,deNode,1,Renewable Target Investor CWE,505.5, +Biomass Renewable Target Investor CWE 2,Biomass,deNode,2,Renewable Target Investor CWE,505.5, +Biomass Renewable Target Investor CWE 3,Biomass,deNode,3,Renewable Target Investor CWE,505.5, +Biomass Renewable Target Investor CWE 4,Biomass,deNode,4,Renewable Target Investor CWE,505.5, +Biomass Renewable Target Investor CWE 6,Biomass,deNode,6,Renewable Target Investor CWE,1339.5, +Biomass Renewable Target Investor CWE 7,Biomass,deNode,7,Renewable Target Investor CWE,1339.5, +Biomass Renewable Target Investor CWE 8,Biomass,deNode,8,Renewable Target Investor CWE,1339.5, +Biomass Renewable Target Investor CWE 9,Biomass,deNode,9,Renewable Target Investor CWE,1339.5, +CCGT Energy Producer E 1,CCGT,deNode,1,Energy Producer E,1273.33333, +CCGT Energy Producer F 2,CCGT,deNode,2,Energy Producer F,1273.33333, +CCGT Energy Producer G 3,CCGT,deNode,3,Energy Producer G,1329.33333, +CCGT Energy Producer H 4,CCGT,deNode,4,Energy Producer H,1329.33333, +CCGT Energy Producer E 8,CCGT,deNode,8,Energy Producer E,2588.67016, +CCGT Energy Producer F 9,CCGT,deNode,9,Energy Producer F,4640.68586, +CCGT Energy Producer G 10,CCGT,deNode,10,Energy Producer G,327.52551, +CCGT Energy Producer H 11,CCGT,deNode,11,Energy Producer H,1143.80858, +CCGT Energy Producer E 12,CCGT,deNode,12,Energy Producer E,1528.76362, +CCGT Energy Producer F 13,CCGT,deNode,13,Energy Producer F,1552.31281, +CCGT Energy Producer G 14,CCGT,deNode,14,Energy Producer G,1097.88964, +CCGT Energy Producer H 15,CCGT,deNode,15,Energy Producer H,2263.92088, +CCGT Energy Producer E 16,CCGT,deNode,16,Energy Producer E,2602.24437, +CCGT Energy Producer F 17,CCGT,deNode,17,Energy Producer F,2625.79356, +CCGT Energy Producer G 18,CCGT,deNode,18,Energy Producer G,1238.74215, +CCGT Energy Producer H 19,CCGT,deNode,19,Energy Producer H,1285.61921, +CCGT Energy Producer E 20,CCGT,deNode,20,Energy Producer E,1717.19329, +CCGT Energy Producer F 21,CCGT,deNode,21,Energy Producer F,1122.87603, +CCGT Energy Producer G 22,CCGT,deNode,22,Energy Producer G,516.90108, +CCGT Energy Producer H 23,CCGT,deNode,23,Energy Producer H,423.88404, +CCGT Energy Producer E 24,CCGT,deNode,24,Energy Producer E,424.12955, +CCGT Energy Producer F 25,CCGT,deNode,25,Energy Producer F,389.38951, +CCGT Energy Producer G 26,CCGT,deNode,26,Energy Producer G,203.09714, +CCGT Energy Producer H 27,CCGT,deNode,27,Energy Producer H,576.38199, +CCGT Energy Producer E 28,CCGT,deNode,28,Energy Producer E,296.8393, +CCGT Energy Producer F 29,CCGT,deNode,29,Energy Producer F,1253.04121, +CCGT Energy Producer G 30,CCGT,deNode,30,Energy Producer G,518.81761, +CCGT Energy Producer H 31,CCGT,deNode,31,Energy Producer H,845.49538, +CCGT Energy Producer E 32,CCGT,deNode,32,Energy Producer E,589.2928, +CCGT Energy Producer F 33,CCGT,deNode,33,Energy Producer F,822.67104, +CCGT Energy Producer G 34,CCGT,deNode,34,Energy Producer G,846.23247, +CCGT Energy Producer H 35,CCGT,deNode,35,Energy Producer H,753.21543, +CCGT Energy Producer E 36,CCGT,deNode,36,Energy Producer E,1452.9078, +CCGT Energy Producer F 37,CCGT,deNode,37,Energy Producer F,1732.94178, +CCGT Energy Producer G 38,CCGT,deNode,38,Energy Producer G,2141.20023, +CCGT Energy Producer H 39,CCGT,deNode,39,Energy Producer H,2502.83936, +CCGT Energy Producer E 40,CCGT,deNode,40,Energy Producer E,2398.1766, +CoalPSC Energy Producer H 11,CoalPSC,deNode,11,Energy Producer H,198.67406, +CoalPSC Energy Producer F 13,CoalPSC,deNode,13,Energy Producer F,199.13915, +CoalPSC Energy Producer G 14,CoalPSC,deNode,14,Energy Producer G,686.99173, +CoalPSC Energy Producer H 15,CoalPSC,deNode,15,Energy Producer H,269.29889, +CoalPSC Energy Producer E 16,CoalPSC,deNode,16,Energy Producer E,652.63965, +CoalPSC Energy Producer F 17,CoalPSC,deNode,17,Energy Producer F,130.44731, +CoalPSC Energy Producer G 18,CoalPSC,deNode,18,Energy Producer G,200.32553, +CoalPSC Energy Producer H 19,CoalPSC,deNode,19,Energy Producer H,723.00762, +CoalPSC Energy Producer E 20,CoalPSC,deNode,20,Energy Producer E,990.25125, +CoalPSC Energy Producer F 21,CoalPSC,deNode,21,Energy Producer F,491.30245, +CoalPSC Energy Producer G 22,CoalPSC,deNode,22,Energy Producer G,270.93803, +CoalPSC Energy Producer H 23,CoalPSC,deNode,23,Energy Producer H,375.67042, +CoalPSC Energy Producer E 24,CoalPSC,deNode,24,Energy Producer E,689.36482, +CoalPSC Energy Producer F 25,CoalPSC,deNode,25,Energy Producer F,306.48917, +CoalPSC Energy Producer G 26,CoalPSC,deNode,26,Energy Producer G,747.90297, +CoalPSC Energy Producer H 27,CoalPSC,deNode,27,Energy Producer H,829.37881, +CoalPSC Energy Producer E 28,CoalPSC,deNode,28,Energy Producer E,2222.80147, +CoalPSC Energy Producer F 29,CoalPSC,deNode,29,Energy Producer F,2188.20484, +CoalPSC Energy Producer G 30,CoalPSC,deNode,30,Energy Producer G,1004.24628, +CoalPSC Energy Producer H 31,CoalPSC,deNode,31,Energy Producer H,888.38171, +CoalPSC Energy Producer E 32,CoalPSC,deNode,32,Energy Producer E,865.41901, +CoalPSC Energy Producer F 33,CoalPSC,deNode,33,Energy Producer F,1260.36971, +CoalPSC Energy Producer G 34,CoalPSC,deNode,34,Energy Producer G,1771.44186, +CoalPSC Energy Producer H 35,CoalPSC,deNode,35,Energy Producer H,691.9708, +CoalPSC Energy Producer E 36,CoalPSC,deNode,36,Energy Producer E,831.51969, +CoalPSC Energy Producer F 37,CoalPSC,deNode,37,Energy Producer F,1296.14072, +CoalPSC Energy Producer G 38,CoalPSC,deNode,38,Energy Producer G,1215.10532, +CoalPSC Energy Producer H 39,CoalPSC,deNode,39,Energy Producer H,948.33877, +CoalPSC Energy Producer E 40,CoalPSC,deNode,40,Energy Producer E,1842.50679, +CoalPSC Energy Producer F 41,CoalPSC,deNode,41,Energy Producer F,2667.04112, +CoalPSC Energy Producer G 42,CoalPSC,deNode,42,Energy Producer G,2388.62832, +CoalPSC Energy Producer H 43,CoalPSC,deNode,43,Energy Producer H,4548.30403, +CoalPSC Energy Producer F 45,CoalPSC,deNode,45,Energy Producer F,1808.90098, +CoalPSC Energy Producer G 46,CoalPSC,deNode,46,Energy Producer G,2296.71691, +CoalPSC Energy Producer H 47,CoalPSC,deNode,47,Energy Producer H,1089.55146, +CoalPSC Energy Producer E 48,CoalPSC,deNode,48,Energy Producer E,1066.57678, +CoalPSC Energy Producer F 49,CoalPSC,deNode,49,Energy Producer F,509.51828, +CoalPSC Energy Producer G 50,CoalPSC,deNode,50,Energy Producer G,904.4933, +HydroPower Energy Producer E 31,HydroPower,deNode,31,Energy Producer E,2674.2, +HydroPower Energy Producer F 32,HydroPower,deNode,32,Energy Producer F,2674.2, +HydroPower Energy Producer G 33,HydroPower,deNode,33,Energy Producer G,2674.2, +HydroPower Energy Producer H 34,HydroPower,deNode,34,Energy Producer H,2674.2, +HydroPower Energy Producer E 35,HydroPower,deNode,35,Energy Producer E,2674.2, +HydroPower Energy Producer F 36,HydroPower,deNode,36,Energy Producer F,2674.2, +HydroPower Energy Producer G 37,HydroPower,deNode,37,Energy Producer G,2674.2, +HydroPower Energy Producer H 38,HydroPower,deNode,38,Energy Producer H,2674.2, +HydroPower Energy Producer E 39,HydroPower,deNode,39,Energy Producer E,2674.2, +HydroPower Energy Producer F 40,HydroPower,deNode,40,Energy Producer F,2674.2, +Lignite Energy Producer G 10,Lignite,deNode,10,Energy Producer G,328.52697, +Lignite Energy Producer E 12,Lignite,deNode,12,Energy Producer E,106.82259, +Lignite Energy Producer F 13,Lignite,deNode,13,Energy Producer F,621.59027, +Lignite Energy Producer G 14,Lignite,deNode,14,Energy Producer G,329.48813, +Lignite Energy Producer E 16,Lignite,deNode,16,Energy Producer E,669.09305, +Lignite Energy Producer F 17,Lignite,deNode,17,Energy Producer F,189.87549, +Lignite Energy Producer G 18,Lignite,deNode,18,Energy Producer G,201.81594, +Lignite Energy Producer H 19,Lignite,deNode,19,Energy Producer H,120.18021, +Lignite Energy Producer G 22,Lignite,deNode,22,Energy Producer G,261.23442, +Lignite Energy Producer H 23,Lignite,deNode,23,Energy Producer H,62.68406, +Lignite Energy Producer E 24,Lignite,deNode,24,Energy Producer E,320.18469, +Lignite Energy Producer F 25,Lignite,deNode,25,Energy Producer F,472.46466, +Lignite Energy Producer G 26,Lignite,deNode,26,Energy Producer G,928.75028, +Lignite Energy Producer H 27,Lignite,deNode,27,Energy Producer H,414.46335, +Lignite Energy Producer E 28,Lignite,deNode,28,Energy Producer E,1280.04882, +Lignite Energy Producer F 29,Lignite,deNode,29,Energy Producer F,765.76189, +Lignite Energy Producer G 30,Lignite,deNode,30,Energy Producer G,812.77171, +Lignite Energy Producer H 31,Lignite,deNode,31,Energy Producer H,660.98469, +Lignite Energy Producer E 32,Lignite,deNode,32,Energy Producer E,895.09773, +Lignite Energy Producer F 33,Lignite,deNode,33,Energy Producer F,883.66244, +Lignite Energy Producer G 34,Lignite,deNode,34,Energy Producer G,533.07858, +Lignite Energy Producer H 35,Lignite,deNode,35,Energy Producer H,498.23094, +Lignite Energy Producer E 36,Lignite,deNode,36,Energy Producer E,580.32233, +Lignite Energy Producer F 37,Lignite,deNode,37,Energy Producer F,592.26278, +Lignite Energy Producer G 38,Lignite,deNode,38,Energy Producer G,990.10328, +Lignite Energy Producer H 39,Lignite,deNode,39,Energy Producer H,1118.98311, +Lignite Energy Producer E 40,Lignite,deNode,40,Energy Producer E,417.58077, +Lignite Energy Producer F 41,Lignite,deNode,41,Energy Producer F,499.67251, +Lignite Energy Producer G 42,Lignite,deNode,42,Energy Producer G,932.58238, +Lignite Energy Producer H 43,Lignite,deNode,43,Energy Producer H,1494.1256, +Lignite Energy Producer E 44,Lignite,deNode,44,Energy Producer E,301.60256, +Lignite Energy Producer F 45,Lignite,deNode,45,Energy Producer F,594.1729, +Lignite Energy Producer G 46,Lignite,deNode,46,Energy Producer G,442.39808, +Lignite Energy Producer H 47,Lignite,deNode,47,Energy Producer H,197.05963, +Lignite Energy Producer E 48,Lignite,deNode,48,Energy Producer E,372.7028, +Lignite Energy Producer F 49,Lignite,deNode,49,Energy Producer F,267.70388, +Lignite Energy Producer G 50,Lignite,deNode,50,Energy Producer G,115.91651, +Nuclear Energy Producer G 10,Nuclear,deNode,10,Energy Producer G,708.02798, +Nuclear Energy Producer H 11,Nuclear,deNode,11,Energy Producer H,708.62286, +Nuclear Energy Producer G 14,Nuclear,deNode,14,Energy Producer G,400.00847, +Nuclear Energy Producer H 15,Nuclear,deNode,15,Energy Producer H,2234.56653, +Nuclear Energy Producer E 16,Nuclear,deNode,16,Energy Producer E,2009.43858, +Nuclear Energy Producer F 17,Nuclear,deNode,17,Energy Producer F,486.3791, +Nuclear Energy Producer G 18,Nuclear,deNode,18,Energy Producer G,881.95764, +Nuclear Energy Producer E 20,Nuclear,deNode,20,Energy Producer E,1560.28359, +Nuclear Energy Producer F 21,Nuclear,deNode,21,Energy Producer F,911.92683, +Nuclear Energy Producer G 22,Nuclear,deNode,22,Energy Producer G,1815.41034, +Nuclear Energy Producer H 23,Nuclear,deNode,23,Energy Producer H,1872.40598, +Nuclear Energy Producer E 24,Nuclear,deNode,24,Energy Producer E,1308.69512, +Nuclear Energy Producer F 25,Nuclear,deNode,25,Energy Producer F,5851.91908, +Nuclear Energy Producer G 26,Nuclear,deNode,26,Energy Producer G,5203.53272, +Nuclear Energy Producer H 27,Nuclear,deNode,27,Energy Producer H,6417.38361, +Nuclear Energy Producer E 28,Nuclear,deNode,28,Energy Producer E,10904.1772, +Nuclear Energy Producer F 29,Nuclear,deNode,29,Energy Producer F,8111.43, +Nuclear Energy Producer G 30,Nuclear,deNode,30,Energy Producer G,5544.40495, +Nuclear Energy Producer H 31,Nuclear,deNode,31,Energy Producer H,4077.86468, +Nuclear Energy Producer E 32,Nuclear,deNode,32,Energy Producer E,8085.02804, +Nuclear Energy Producer F 33,Nuclear,deNode,33,Energy Producer F,5884.80209, +Nuclear Energy Producer G 34,Nuclear,deNode,34,Energy Producer G,3684.60508, +Nuclear Energy Producer H 35,Nuclear,deNode,35,Energy Producer H,1343.30286, +Nuclear Energy Producer E 36,Nuclear,deNode,36,Energy Producer E,4221.82515, +Nuclear Energy Producer F 37,Nuclear,deNode,37,Energy Producer F,2501.28865, +Nuclear Energy Producer G 38,Nuclear,deNode,38,Energy Producer G,2699.39016, +Nuclear Energy Producer H 39,Nuclear,deNode,39,Energy Producer H,499.16354, +Nuclear Energy Producer E 40,Nuclear,deNode,40,Energy Producer E,556.15917, +OCGT Energy Producer E 1,OCGT,deNode,1,Energy Producer E,636.66667, +OCGT Energy Producer F 2,OCGT,deNode,2,Energy Producer F,636.66667, +OCGT Energy Producer G 3,OCGT,deNode,3,Energy Producer G,664.66667, +OCGT Energy Producer H 4,OCGT,deNode,4,Energy Producer H,664.66667, +OCGT Energy Producer E 8,OCGT,deNode,8,Energy Producer E,1294.33508, +OCGT Energy Producer F 9,OCGT,deNode,9,Energy Producer F,2320.34293, +OCGT Energy Producer G 10,OCGT,deNode,10,Energy Producer G,163.76276, +OCGT Energy Producer H 11,OCGT,deNode,11,Energy Producer H,571.90429, +OCGT Energy Producer E 12,OCGT,deNode,12,Energy Producer E,764.38181, +OCGT Energy Producer F 13,OCGT,deNode,13,Energy Producer F,776.15641, +OCGT Energy Producer G 14,OCGT,deNode,14,Energy Producer G,548.94482, +OCGT Energy Producer H 15,OCGT,deNode,15,Energy Producer H,1131.96044, +OCGT Energy Producer E 16,OCGT,deNode,16,Energy Producer E,1301.12219, +OCGT Energy Producer F 17,OCGT,deNode,17,Energy Producer F,1312.89678, +OCGT Energy Producer G 18,OCGT,deNode,18,Energy Producer G,619.37107, +OCGT Energy Producer H 19,OCGT,deNode,19,Energy Producer H,642.8096, +OCGT Energy Producer E 20,OCGT,deNode,20,Energy Producer E,858.59665, +OCGT Energy Producer F 21,OCGT,deNode,21,Energy Producer F,561.43801, +OCGT Energy Producer G 22,OCGT,deNode,22,Energy Producer G,258.45054, +OCGT Energy Producer H 23,OCGT,deNode,23,Energy Producer H,211.94202, +OCGT Energy Producer E 24,OCGT,deNode,24,Energy Producer E,212.06478, +OCGT Energy Producer F 25,OCGT,deNode,25,Energy Producer F,194.69476, +OCGT Energy Producer G 26,OCGT,deNode,26,Energy Producer G,101.54857, +OCGT Energy Producer H 27,OCGT,deNode,27,Energy Producer H,288.191, +OCGT Energy Producer E 28,OCGT,deNode,28,Energy Producer E,148.41965, +OCGT Energy Producer F 29,OCGT,deNode,29,Energy Producer F,626.52061, +OCGT Energy Producer G 30,OCGT,deNode,30,Energy Producer G,259.40881, +OCGT Energy Producer H 31,OCGT,deNode,31,Energy Producer H,422.74769, +OCGT Energy Producer E 32,OCGT,deNode,32,Energy Producer E,294.6464, +OCGT Energy Producer F 33,OCGT,deNode,33,Energy Producer F,411.33552, +OCGT Energy Producer G 34,OCGT,deNode,34,Energy Producer G,423.11623, +OCGT Energy Producer H 35,OCGT,deNode,35,Energy Producer H,376.60771, +OCGT Energy Producer E 36,OCGT,deNode,36,Energy Producer E,726.4539, +OCGT Energy Producer F 37,OCGT,deNode,37,Energy Producer F,866.47089, +OCGT Energy Producer G 38,OCGT,deNode,38,Energy Producer G,1070.60011, +OCGT Energy Producer H 39,OCGT,deNode,39,Energy Producer H,1251.41968, +OCGT Energy Producer E 40,OCGT,deNode,40,Energy Producer E,1199.0883, +Photovoltaic Renewable Target Investor CWE 1,Photovoltaic,deNode,1,Renewable Target Investor CWE,3668.75, +Photovoltaic Renewable Target Investor CWE 2,Photovoltaic,deNode,2,Renewable Target Investor CWE,3668.75, +Photovoltaic Renewable Target Investor CWE 3,Photovoltaic,deNode,3,Renewable Target Investor CWE,3668.75, +Photovoltaic Renewable Target Investor CWE 4,Photovoltaic,deNode,4,Renewable Target Investor CWE,3668.75, +Photovoltaic Renewable Target Investor CWE 6,Photovoltaic,deNode,6,Renewable Target Investor CWE,2082.05, +Wind Renewable Target Investor CWE 1,Wind,deNode,1,Renewable Target Investor CWE,3791, +Wind Renewable Target Investor CWE 2,Wind,deNode,2,Renewable Target Investor CWE,3791, +Wind Renewable Target Investor CWE 3,Wind,deNode,3,Renewable Target Investor CWE,3791, +Wind Renewable Target Investor CWE 4,Wind,deNode,4,Renewable Target Investor CWE,3791, +Wind Renewable Target Investor CWE 6,Wind,deNode,6,Renewable Target Investor CWE,5154.05, +Wind Renewable Target Investor CWE 7,Wind,deNode,7,Renewable Target Investor CWE,5154.05, +Wind Renewable Target Investor CWE 8,Wind,deNode,8,Renewable Target Investor CWE,5154.05, +Wind Renewable Target Investor CWE 9,Wind,deNode,9,Renewable Target Investor CWE,5154.05, +WindOffshore Renewable Target Investor CWE 1,WindOffshore,deNode,1,Renewable Target Investor CWE,427, +Biogas Renewable Target Investor GB 1,Biogas,gbNode,1,Renewable Target Investor GB,1340, +Biomass Renewable Target Investor GB 6,Biomass,gbNode,6,Renewable Target Investor GB,500.7, +CCGT Energy Producer A 1,CCGT,gbNode,1,Energy Producer A,1158.33333, +CCGT Energy Producer B 2,CCGT,gbNode,2,Energy Producer B,1158.33333, +CCGT Energy Producer C 3,CCGT,gbNode,3,Energy Producer C,690.66667, +CCGT Energy Producer D 4,CCGT,gbNode,4,Energy Producer D,690.66667, +CCGT Energy Producer A 8,CCGT,gbNode,8,Energy Producer A,1399.29849, +CCGT Energy Producer B 9,CCGT,gbNode,9,Energy Producer B,2508.5099, +CCGT Energy Producer C 10,CCGT,gbNode,10,Energy Producer C,177.04301, +CCGT Energy Producer D 11,CCGT,gbNode,11,Energy Producer D,618.28256, +CCGT Energy Producer A 12,CCGT,gbNode,12,Energy Producer A,826.36895, +CCGT Energy Producer B 13,CCGT,gbNode,13,Energy Producer B,839.0984, +CCGT Energy Producer C 14,CCGT,gbNode,14,Energy Producer C,593.46121, +CCGT Energy Producer D 15,CCGT,gbNode,15,Energy Producer D,1223.75617, +CCGT Energy Producer A 16,CCGT,gbNode,16,Energy Producer A,1406.636, +CCGT Energy Producer B 17,CCGT,gbNode,17,Energy Producer B,1419.36545, +CCGT Energy Producer C 18,CCGT,gbNode,18,Energy Producer C,669.59864, +CCGT Energy Producer D 19,CCGT,gbNode,19,Energy Producer D,694.93791, +CCGT Energy Producer A 20,CCGT,gbNode,20,Energy Producer A,928.22408, +CCGT Energy Producer B 21,CCGT,gbNode,21,Energy Producer B,606.96753, +CCGT Energy Producer C 22,CCGT,gbNode,22,Energy Producer C,279.40945, +CCGT Energy Producer D 23,CCGT,gbNode,23,Energy Producer D,229.12935, +CCGT Energy Producer A 24,CCGT,gbNode,24,Energy Producer A,229.26206, +CCGT Energy Producer B 25,CCGT,gbNode,25,Energy Producer B,210.48342, +CCGT Energy Producer C 26,CCGT,gbNode,26,Energy Producer C,109.7836, +CCGT Energy Producer D 27,CCGT,gbNode,27,Energy Producer D,311.56169, +CCGT Energy Producer A 28,CCGT,gbNode,28,Energy Producer A,160.45566, +CCGT Energy Producer B 29,CCGT,gbNode,29,Energy Producer B,677.32796, +CCGT Energy Producer C 30,CCGT,gbNode,30,Energy Producer C,280.44542, +CCGT Energy Producer D 31,CCGT,gbNode,31,Energy Producer D,457.03019, +CCGT Energy Producer A 32,CCGT,gbNode,32,Energy Producer A,318.54059, +CCGT Energy Producer B 33,CCGT,gbNode,33,Energy Producer B,444.69256, +CCGT Energy Producer C 34,CCGT,gbNode,34,Energy Producer C,457.42862, +CCGT Energy Producer D 35,CCGT,gbNode,35,Energy Producer D,407.14852, +CCGT Energy Producer A 36,CCGT,gbNode,36,Energy Producer A,785.36529, +CCGT Energy Producer B 37,CCGT,gbNode,37,Energy Producer B,936.73688, +CCGT Energy Producer C 38,CCGT,gbNode,38,Energy Producer C,1157.41986, +CCGT Energy Producer D 39,CCGT,gbNode,39,Energy Producer D,1352.90289, +CCGT Energy Producer A 40,CCGT,gbNode,40,Energy Producer A,1296.32772, +CoalPSC Energy Producer D 11,CoalPSC,gbNode,11,Energy Producer D,137.01936, +CoalPSC Energy Producer B 13,CoalPSC,gbNode,13,Energy Producer B,137.34012, +CoalPSC Energy Producer C 14,CoalPSC,gbNode,14,Energy Producer C,473.79697, +CoalPSC Energy Producer D 15,CoalPSC,gbNode,15,Energy Producer D,185.72713, +CoalPSC Energy Producer A 16,CoalPSC,gbNode,16,Energy Producer A,450.1054, +CoalPSC Energy Producer B 17,CoalPSC,gbNode,17,Energy Producer B,89.96548, +CoalPSC Energy Producer C 18,CoalPSC,gbNode,18,Energy Producer C,138.15833, +CoalPSC Energy Producer D 19,CoalPSC,gbNode,19,Energy Producer D,498.63602, +CoalPSC Energy Producer A 20,CoalPSC,gbNode,20,Energy Producer A,682.9457, +CoalPSC Energy Producer B 21,CoalPSC,gbNode,21,Energy Producer B,338.83612, +CoalPSC Energy Producer C 22,CoalPSC,gbNode,22,Energy Producer C,186.85759, +CoalPSC Energy Producer D 23,CoalPSC,gbNode,23,Energy Producer D,259.08829, +CoalPSC Energy Producer A 24,CoalPSC,gbNode,24,Energy Producer A,475.43362, +CoalPSC Energy Producer B 25,CoalPSC,gbNode,25,Energy Producer B,211.37611, +CoalPSC Energy Producer C 26,CoalPSC,gbNode,26,Energy Producer C,515.80557, +CoalPSC Energy Producer D 27,CoalPSC,gbNode,27,Energy Producer D,571.99694, +CoalPSC Energy Producer A 28,CoalPSC,gbNode,28,Energy Producer A,1532.9975, +CoalPSC Energy Producer B 29,CoalPSC,gbNode,29,Energy Producer B,1509.13728, +CoalPSC Energy Producer C 30,CoalPSC,gbNode,30,Energy Producer C,692.59763, +CoalPSC Energy Producer D 31,CoalPSC,gbNode,31,Energy Producer D,612.68942, +CoalPSC Energy Producer A 32,CoalPSC,gbNode,32,Energy Producer A,596.85276, +CoalPSC Energy Producer B 33,CoalPSC,gbNode,33,Energy Producer B,869.23806, +CoalPSC Energy Producer C 34,CoalPSC,gbNode,34,Energy Producer C,1221.70872, +CoalPSC Energy Producer D 35,CoalPSC,gbNode,35,Energy Producer D,477.23089, +CoalPSC Energy Producer A 36,CoalPSC,gbNode,36,Energy Producer A,573.47344, +CoalPSC Energy Producer B 37,CoalPSC,gbNode,37,Energy Producer B,893.90821, +CoalPSC Energy Producer C 38,CoalPSC,gbNode,38,Energy Producer C,838.0206, +CoalPSC Energy Producer D 39,CoalPSC,gbNode,39,Energy Producer D,654.03995, +CoalPSC Energy Producer A 40,CoalPSC,gbNode,40,Energy Producer A,1270.72001, +CoalPSC Energy Producer B 41,CoalPSC,gbNode,41,Energy Producer B,1839.37587, +CoalPSC Energy Producer C 42,CoalPSC,gbNode,42,Energy Producer C,1647.36316, +CoalPSC Energy Producer D 43,CoalPSC,gbNode,43,Energy Producer D,3136.82478, +CoalPSC Energy Producer B 45,CoalPSC,gbNode,45,Energy Producer B,1247.54312, +CoalPSC Energy Producer C 46,CoalPSC,gbNode,46,Energy Producer C,1583.9747, +CoalPSC Energy Producer D 47,CoalPSC,gbNode,47,Energy Producer D,751.42998, +CoalPSC Energy Producer A 48,CoalPSC,gbNode,48,Energy Producer A,735.58505, +CoalPSC Energy Producer B 49,CoalPSC,gbNode,49,Energy Producer B,351.39902, +CoalPSC Energy Producer C 50,CoalPSC,gbNode,50,Energy Producer C,623.80109, +HydroPower Energy Producer A 30,HydroPower,gbNode,30,Energy Producer A,805.5, +HydroPower Energy Producer B 40,HydroPower,gbNode,40,Energy Producer B,805.5, +Nuclear Energy Producer C 10,Nuclear,gbNode,10,Energy Producer C,88.85953, +Nuclear Energy Producer D 11,Nuclear,gbNode,11,Energy Producer D,88.93419, +Nuclear Energy Producer C 14,Nuclear,gbNode,14,Energy Producer C,50.2022, +Nuclear Energy Producer D 15,Nuclear,gbNode,15,Energy Producer D,280.44447, +Nuclear Energy Producer A 16,Nuclear,gbNode,16,Energy Producer A,252.19027, +Nuclear Energy Producer B 17,Nuclear,gbNode,17,Energy Producer B,61.04196, +Nuclear Energy Producer C 18,Nuclear,gbNode,18,Energy Producer C,110.6882, +Nuclear Energy Producer A 20,Nuclear,gbNode,20,Energy Producer A,195.82004, +Nuclear Energy Producer B 21,Nuclear,gbNode,21,Energy Producer B,114.44942, +Nuclear Energy Producer C 22,Nuclear,gbNode,22,Energy Producer C,227.83917, +Nuclear Energy Producer D 23,Nuclear,gbNode,23,Energy Producer D,234.99229, +Nuclear Energy Producer A 24,Nuclear,gbNode,24,Energy Producer A,164.24497, +Nuclear Energy Producer B 25,Nuclear,gbNode,25,Energy Producer B,734.43253, +Nuclear Energy Producer C 26,Nuclear,gbNode,26,Energy Producer C,653.05819, +Nuclear Energy Producer D 27,Nuclear,gbNode,27,Energy Producer D,805.39994, +Nuclear Energy Producer A 28,Nuclear,gbNode,28,Energy Producer A,1368.50533, +Nuclear Energy Producer B 29,Nuclear,gbNode,29,Energy Producer B,1018.00759, +Nuclear Energy Producer C 30,Nuclear,gbNode,30,Energy Producer C,695.83863, +Nuclear Energy Producer D 31,Nuclear,gbNode,31,Energy Producer D,511.78364, +Nuclear Energy Producer A 32,Nuclear,gbNode,32,Energy Producer A,1014.69407, +Nuclear Energy Producer B 33,Nuclear,gbNode,33,Energy Producer B,738.55944, +Nuclear Energy Producer C 34,Nuclear,gbNode,34,Energy Producer C,462.42844, +Nuclear Energy Producer D 35,Nuclear,gbNode,35,Energy Producer D,168.58834, +Nuclear Energy Producer A 36,Nuclear,gbNode,36,Energy Producer A,529.85109, +Nuclear Energy Producer B 37,Nuclear,gbNode,37,Energy Producer B,313.91886, +Nuclear Energy Producer C 38,Nuclear,gbNode,38,Energy Producer C,338.78116, +Nuclear Energy Producer D 39,Nuclear,gbNode,39,Energy Producer D,62.64645, +Nuclear Energy Producer A 40,Nuclear,gbNode,40,Energy Producer A,69.79956, +OCGT Energy Producer A 1,OCGT,gbNode,1,Energy Producer A,579.16667, +OCGT Energy Producer B 2,OCGT,gbNode,2,Energy Producer B,579.16667, +OCGT Energy Producer C 3,OCGT,gbNode,3,Energy Producer C,345.33333, +OCGT Energy Producer D 4,OCGT,gbNode,4,Energy Producer D,345.33333, +OCGT Energy Producer A 8,OCGT,gbNode,8,Energy Producer A,699.64925, +OCGT Energy Producer B 9,OCGT,gbNode,9,Energy Producer B,1254.25495, +OCGT Energy Producer C 10,OCGT,gbNode,10,Energy Producer C,88.52151, +OCGT Energy Producer D 11,OCGT,gbNode,11,Energy Producer D,309.14128, +OCGT Energy Producer A 12,OCGT,gbNode,12,Energy Producer A,413.18447, +OCGT Energy Producer B 13,OCGT,gbNode,13,Energy Producer B,419.5492, +OCGT Energy Producer C 14,OCGT,gbNode,14,Energy Producer C,296.7306, +OCGT Energy Producer D 15,OCGT,gbNode,15,Energy Producer D,611.87808, +OCGT Energy Producer A 16,OCGT,gbNode,16,Energy Producer A,703.318, +OCGT Energy Producer B 17,OCGT,gbNode,17,Energy Producer B,709.68272, +OCGT Energy Producer C 18,OCGT,gbNode,18,Energy Producer C,334.79932, +OCGT Energy Producer D 19,OCGT,gbNode,19,Energy Producer D,347.46895, +OCGT Energy Producer A 20,OCGT,gbNode,20,Energy Producer A,464.11204, +OCGT Energy Producer B 21,OCGT,gbNode,21,Energy Producer B,303.48376, +OCGT Energy Producer C 22,OCGT,gbNode,22,Energy Producer C,139.70472, +OCGT Energy Producer D 23,OCGT,gbNode,23,Energy Producer D,114.56467, +OCGT Energy Producer A 24,OCGT,gbNode,24,Energy Producer A,114.63103, +OCGT Energy Producer B 25,OCGT,gbNode,25,Energy Producer B,105.24171, +OCGT Energy Producer C 26,OCGT,gbNode,26,Energy Producer C,54.8918, +OCGT Energy Producer D 27,OCGT,gbNode,27,Energy Producer D,155.78085, +OCGT Energy Producer A 28,OCGT,gbNode,28,Energy Producer A,80.22783, +OCGT Energy Producer B 29,OCGT,gbNode,29,Energy Producer B,338.66398, +OCGT Energy Producer C 30,OCGT,gbNode,30,Energy Producer C,140.22271, +OCGT Energy Producer D 31,OCGT,gbNode,31,Energy Producer D,228.51509, +OCGT Energy Producer A 32,OCGT,gbNode,32,Energy Producer A,159.2703, +OCGT Energy Producer B 33,OCGT,gbNode,33,Energy Producer B,222.34628, +OCGT Energy Producer C 34,OCGT,gbNode,34,Energy Producer C,228.71431, +OCGT Energy Producer D 35,OCGT,gbNode,35,Energy Producer D,203.57426, +OCGT Energy Producer A 36,OCGT,gbNode,36,Energy Producer A,392.68264, +OCGT Energy Producer B 37,OCGT,gbNode,37,Energy Producer B,468.36844, +OCGT Energy Producer C 38,OCGT,gbNode,38,Energy Producer C,578.70993, +OCGT Energy Producer D 39,OCGT,gbNode,39,Energy Producer D,676.45144, +OCGT Energy Producer A 40,OCGT,gbNode,40,Energy Producer A,648.16386, +Wind Renewable Target Investor GB 1,Wind,gbNode,1,Renewable Target Investor GB,1344.5, +Wind Renewable Target Investor GB 3,Wind,gbNode,3,Renewable Target Investor GB,1344.5, +Wind Renewable Target Investor GB 6,Wind,gbNode,6,Renewable Target Investor GB,1351.2, +WindOffshore Renewable Target Investor GB 1,WindOffshore,gbNode,1,Renewable Target Investor GB,1390, diff --git a/emlab-generation/src/main/resources/dataOld/powerPlantsCWEandUK.csv b/emlab-generation/src/main/resources/dataOld/powerPlantsCWEandUK.csv new file mode 100644 index 00000000..2f9cc1d0 --- /dev/null +++ b/emlab-generation/src/main/resources/dataOld/powerPlantsCWEandUK.csv @@ -0,0 +1,361 @@ +Name,Technology,Location,Age,Owner,Capacity,Efficiency +Biogas Renewable Target Investor CWE 1,Biogas,cweNode,1,Renewable Target Investor CWE,930.3, +Biogas Renewable Target Investor CWE 4,Biogas,cweNode,4,Renewable Target Investor CWE,930.3, +Biogas Renewable Target Investor CWE 6,Biogas,cweNode,6,Renewable Target Investor CWE,1001, +Biomass Renewable Target Investor CWE 1,Biomass,cweNode,1,Renewable Target Investor CWE,505.5, +Biomass Renewable Target Investor CWE 2,Biomass,cweNode,2,Renewable Target Investor CWE,505.5, +Biomass Renewable Target Investor CWE 3,Biomass,cweNode,3,Renewable Target Investor CWE,505.5, +Biomass Renewable Target Investor CWE 4,Biomass,cweNode,4,Renewable Target Investor CWE,505.5, +Biomass Renewable Target Investor CWE 6,Biomass,cweNode,6,Renewable Target Investor CWE,1339.5, +Biomass Renewable Target Investor CWE 7,Biomass,cweNode,7,Renewable Target Investor CWE,1339.5, +Biomass Renewable Target Investor CWE 8,Biomass,cweNode,8,Renewable Target Investor CWE,1339.5, +Biomass Renewable Target Investor CWE 9,Biomass,cweNode,9,Renewable Target Investor CWE,1339.5, +CCGT Energy Producer E 1,CCGT,cweNode,1,Energy Producer E,1273.33333, +CCGT Energy Producer F 2,CCGT,cweNode,2,Energy Producer F,1273.33333, +CCGT Energy Producer G 3,CCGT,cweNode,3,Energy Producer G,1329.33333, +CCGT Energy Producer H 4,CCGT,cweNode,4,Energy Producer H,1329.33333, +CCGT Energy Producer E 8,CCGT,cweNode,8,Energy Producer E,2588.67016, +CCGT Energy Producer F 9,CCGT,cweNode,9,Energy Producer F,4640.68586, +CCGT Energy Producer G 10,CCGT,cweNode,10,Energy Producer G,327.52551, +CCGT Energy Producer H 11,CCGT,cweNode,11,Energy Producer H,1143.80858, +CCGT Energy Producer E 12,CCGT,cweNode,12,Energy Producer E,1528.76362, +CCGT Energy Producer F 13,CCGT,cweNode,13,Energy Producer F,1552.31281, +CCGT Energy Producer G 14,CCGT,cweNode,14,Energy Producer G,1097.88964, +CCGT Energy Producer H 15,CCGT,cweNode,15,Energy Producer H,2263.92088, +CCGT Energy Producer E 16,CCGT,cweNode,16,Energy Producer E,2602.24437, +CCGT Energy Producer F 17,CCGT,cweNode,17,Energy Producer F,2625.79356, +CCGT Energy Producer G 18,CCGT,cweNode,18,Energy Producer G,1238.74215, +CCGT Energy Producer H 19,CCGT,cweNode,19,Energy Producer H,1285.61921, +CCGT Energy Producer E 20,CCGT,cweNode,20,Energy Producer E,1717.19329, +CCGT Energy Producer F 21,CCGT,cweNode,21,Energy Producer F,1122.87603, +CCGT Energy Producer G 22,CCGT,cweNode,22,Energy Producer G,516.90108, +CCGT Energy Producer H 23,CCGT,cweNode,23,Energy Producer H,423.88404, +CCGT Energy Producer E 24,CCGT,cweNode,24,Energy Producer E,424.12955, +CCGT Energy Producer F 25,CCGT,cweNode,25,Energy Producer F,389.38951, +CCGT Energy Producer G 26,CCGT,cweNode,26,Energy Producer G,203.09714, +CCGT Energy Producer H 27,CCGT,cweNode,27,Energy Producer H,576.38199, +CCGT Energy Producer E 28,CCGT,cweNode,28,Energy Producer E,296.8393, +CCGT Energy Producer F 29,CCGT,cweNode,29,Energy Producer F,1253.04121, +CCGT Energy Producer G 30,CCGT,cweNode,30,Energy Producer G,518.81761, +CCGT Energy Producer H 31,CCGT,cweNode,31,Energy Producer H,845.49538, +CCGT Energy Producer E 32,CCGT,cweNode,32,Energy Producer E,589.2928, +CCGT Energy Producer F 33,CCGT,cweNode,33,Energy Producer F,822.67104, +CCGT Energy Producer G 34,CCGT,cweNode,34,Energy Producer G,846.23247, +CCGT Energy Producer H 35,CCGT,cweNode,35,Energy Producer H,753.21543, +CCGT Energy Producer E 36,CCGT,cweNode,36,Energy Producer E,1452.9078, +CCGT Energy Producer F 37,CCGT,cweNode,37,Energy Producer F,1732.94178, +CCGT Energy Producer G 38,CCGT,cweNode,38,Energy Producer G,2141.20023, +CCGT Energy Producer H 39,CCGT,cweNode,39,Energy Producer H,2502.83936, +CCGT Energy Producer E 40,CCGT,cweNode,40,Energy Producer E,2398.1766, +CoalPSC Energy Producer H 11,CoalPSC,cweNode,11,Energy Producer H,198.67406, +CoalPSC Energy Producer F 13,CoalPSC,cweNode,13,Energy Producer F,199.13915, +CoalPSC Energy Producer G 14,CoalPSC,cweNode,14,Energy Producer G,686.99173, +CoalPSC Energy Producer H 15,CoalPSC,cweNode,15,Energy Producer H,269.29889, +CoalPSC Energy Producer E 16,CoalPSC,cweNode,16,Energy Producer E,652.63965, +CoalPSC Energy Producer F 17,CoalPSC,cweNode,17,Energy Producer F,130.44731, +CoalPSC Energy Producer G 18,CoalPSC,cweNode,18,Energy Producer G,200.32553, +CoalPSC Energy Producer H 19,CoalPSC,cweNode,19,Energy Producer H,723.00762, +CoalPSC Energy Producer E 20,CoalPSC,cweNode,20,Energy Producer E,990.25125, +CoalPSC Energy Producer F 21,CoalPSC,cweNode,21,Energy Producer F,491.30245, +CoalPSC Energy Producer G 22,CoalPSC,cweNode,22,Energy Producer G,270.93803, +CoalPSC Energy Producer H 23,CoalPSC,cweNode,23,Energy Producer H,375.67042, +CoalPSC Energy Producer E 24,CoalPSC,cweNode,24,Energy Producer E,689.36482, +CoalPSC Energy Producer F 25,CoalPSC,cweNode,25,Energy Producer F,306.48917, +CoalPSC Energy Producer G 26,CoalPSC,cweNode,26,Energy Producer G,747.90297, +CoalPSC Energy Producer H 27,CoalPSC,cweNode,27,Energy Producer H,829.37881, +CoalPSC Energy Producer E 28,CoalPSC,cweNode,28,Energy Producer E,2222.80147, +CoalPSC Energy Producer F 29,CoalPSC,cweNode,29,Energy Producer F,2188.20484, +CoalPSC Energy Producer G 30,CoalPSC,cweNode,30,Energy Producer G,1004.24628, +CoalPSC Energy Producer H 31,CoalPSC,cweNode,31,Energy Producer H,888.38171, +CoalPSC Energy Producer E 32,CoalPSC,cweNode,32,Energy Producer E,865.41901, +CoalPSC Energy Producer F 33,CoalPSC,cweNode,33,Energy Producer F,1260.36971, +CoalPSC Energy Producer G 34,CoalPSC,cweNode,34,Energy Producer G,1771.44186, +CoalPSC Energy Producer H 35,CoalPSC,cweNode,35,Energy Producer H,691.9708, +CoalPSC Energy Producer E 36,CoalPSC,cweNode,36,Energy Producer E,831.51969, +CoalPSC Energy Producer F 37,CoalPSC,cweNode,37,Energy Producer F,1296.14072, +CoalPSC Energy Producer G 38,CoalPSC,cweNode,38,Energy Producer G,1215.10532, +CoalPSC Energy Producer H 39,CoalPSC,cweNode,39,Energy Producer H,948.33877, +CoalPSC Energy Producer E 40,CoalPSC,cweNode,40,Energy Producer E,1842.50679, +CoalPSC Energy Producer F 41,CoalPSC,cweNode,41,Energy Producer F,2667.04112, +CoalPSC Energy Producer G 42,CoalPSC,cweNode,42,Energy Producer G,2388.62832, +CoalPSC Energy Producer H 43,CoalPSC,cweNode,43,Energy Producer H,4548.30403, +CoalPSC Energy Producer F 45,CoalPSC,cweNode,45,Energy Producer F,1808.90098, +CoalPSC Energy Producer G 46,CoalPSC,cweNode,46,Energy Producer G,2296.71691, +CoalPSC Energy Producer H 47,CoalPSC,cweNode,47,Energy Producer H,1089.55146, +CoalPSC Energy Producer E 48,CoalPSC,cweNode,48,Energy Producer E,1066.57678, +CoalPSC Energy Producer F 49,CoalPSC,cweNode,49,Energy Producer F,509.51828, +CoalPSC Energy Producer G 50,CoalPSC,cweNode,50,Energy Producer G,904.4933, +HydroPower Energy Producer E 31,HydroPower,cweNode,31,Energy Producer E,2674.2, +HydroPower Energy Producer F 32,HydroPower,cweNode,32,Energy Producer F,2674.2, +HydroPower Energy Producer G 33,HydroPower,cweNode,33,Energy Producer G,2674.2, +HydroPower Energy Producer H 34,HydroPower,cweNode,34,Energy Producer H,2674.2, +HydroPower Energy Producer E 35,HydroPower,cweNode,35,Energy Producer E,2674.2, +HydroPower Energy Producer F 36,HydroPower,cweNode,36,Energy Producer F,2674.2, +HydroPower Energy Producer G 37,HydroPower,cweNode,37,Energy Producer G,2674.2, +HydroPower Energy Producer H 38,HydroPower,cweNode,38,Energy Producer H,2674.2, +HydroPower Energy Producer E 39,HydroPower,cweNode,39,Energy Producer E,2674.2, +HydroPower Energy Producer F 40,HydroPower,cweNode,40,Energy Producer F,2674.2, +Lignite Energy Producer G 10,Lignite,cweNode,10,Energy Producer G,328.52697, +Lignite Energy Producer E 12,Lignite,cweNode,12,Energy Producer E,106.82259, +Lignite Energy Producer F 13,Lignite,cweNode,13,Energy Producer F,621.59027, +Lignite Energy Producer G 14,Lignite,cweNode,14,Energy Producer G,329.48813, +Lignite Energy Producer E 16,Lignite,cweNode,16,Energy Producer E,669.09305, +Lignite Energy Producer F 17,Lignite,cweNode,17,Energy Producer F,189.87549, +Lignite Energy Producer G 18,Lignite,cweNode,18,Energy Producer G,201.81594, +Lignite Energy Producer H 19,Lignite,cweNode,19,Energy Producer H,120.18021, +Lignite Energy Producer G 22,Lignite,cweNode,22,Energy Producer G,261.23442, +Lignite Energy Producer H 23,Lignite,cweNode,23,Energy Producer H,62.68406, +Lignite Energy Producer E 24,Lignite,cweNode,24,Energy Producer E,320.18469, +Lignite Energy Producer F 25,Lignite,cweNode,25,Energy Producer F,472.46466, +Lignite Energy Producer G 26,Lignite,cweNode,26,Energy Producer G,928.75028, +Lignite Energy Producer H 27,Lignite,cweNode,27,Energy Producer H,414.46335, +Lignite Energy Producer E 28,Lignite,cweNode,28,Energy Producer E,1280.04882, +Lignite Energy Producer F 29,Lignite,cweNode,29,Energy Producer F,765.76189, +Lignite Energy Producer G 30,Lignite,cweNode,30,Energy Producer G,812.77171, +Lignite Energy Producer H 31,Lignite,cweNode,31,Energy Producer H,660.98469, +Lignite Energy Producer E 32,Lignite,cweNode,32,Energy Producer E,895.09773, +Lignite Energy Producer F 33,Lignite,cweNode,33,Energy Producer F,883.66244, +Lignite Energy Producer G 34,Lignite,cweNode,34,Energy Producer G,533.07858, +Lignite Energy Producer H 35,Lignite,cweNode,35,Energy Producer H,498.23094, +Lignite Energy Producer E 36,Lignite,cweNode,36,Energy Producer E,580.32233, +Lignite Energy Producer F 37,Lignite,cweNode,37,Energy Producer F,592.26278, +Lignite Energy Producer G 38,Lignite,cweNode,38,Energy Producer G,990.10328, +Lignite Energy Producer H 39,Lignite,cweNode,39,Energy Producer H,1118.98311, +Lignite Energy Producer E 40,Lignite,cweNode,40,Energy Producer E,417.58077, +Lignite Energy Producer F 41,Lignite,cweNode,41,Energy Producer F,499.67251, +Lignite Energy Producer G 42,Lignite,cweNode,42,Energy Producer G,932.58238, +Lignite Energy Producer H 43,Lignite,cweNode,43,Energy Producer H,1494.1256, +Lignite Energy Producer E 44,Lignite,cweNode,44,Energy Producer E,301.60256, +Lignite Energy Producer F 45,Lignite,cweNode,45,Energy Producer F,594.1729, +Lignite Energy Producer G 46,Lignite,cweNode,46,Energy Producer G,442.39808, +Lignite Energy Producer H 47,Lignite,cweNode,47,Energy Producer H,197.05963, +Lignite Energy Producer E 48,Lignite,cweNode,48,Energy Producer E,372.7028, +Lignite Energy Producer F 49,Lignite,cweNode,49,Energy Producer F,267.70388, +Lignite Energy Producer G 50,Lignite,cweNode,50,Energy Producer G,115.91651, +Nuclear Energy Producer G 10,Nuclear,cweNode,10,Energy Producer G,708.02798, +Nuclear Energy Producer H 11,Nuclear,cweNode,11,Energy Producer H,708.62286, +Nuclear Energy Producer G 14,Nuclear,cweNode,14,Energy Producer G,400.00847, +Nuclear Energy Producer H 15,Nuclear,cweNode,15,Energy Producer H,2234.56653, +Nuclear Energy Producer E 16,Nuclear,cweNode,16,Energy Producer E,2009.43858, +Nuclear Energy Producer F 17,Nuclear,cweNode,17,Energy Producer F,486.3791, +Nuclear Energy Producer G 18,Nuclear,cweNode,18,Energy Producer G,881.95764, +Nuclear Energy Producer E 20,Nuclear,cweNode,20,Energy Producer E,1560.28359, +Nuclear Energy Producer F 21,Nuclear,cweNode,21,Energy Producer F,911.92683, +Nuclear Energy Producer G 22,Nuclear,cweNode,22,Energy Producer G,1815.41034, +Nuclear Energy Producer H 23,Nuclear,cweNode,23,Energy Producer H,1872.40598, +Nuclear Energy Producer E 24,Nuclear,cweNode,24,Energy Producer E,1308.69512, +Nuclear Energy Producer F 25,Nuclear,cweNode,25,Energy Producer F,5851.91908, +Nuclear Energy Producer G 26,Nuclear,cweNode,26,Energy Producer G,5203.53272, +Nuclear Energy Producer H 27,Nuclear,cweNode,27,Energy Producer H,6417.38361, +Nuclear Energy Producer E 28,Nuclear,cweNode,28,Energy Producer E,10904.1772, +Nuclear Energy Producer F 29,Nuclear,cweNode,29,Energy Producer F,8111.43, +Nuclear Energy Producer G 30,Nuclear,cweNode,30,Energy Producer G,5544.40495, +Nuclear Energy Producer H 31,Nuclear,cweNode,31,Energy Producer H,4077.86468, +Nuclear Energy Producer E 32,Nuclear,cweNode,32,Energy Producer E,8085.02804, +Nuclear Energy Producer F 33,Nuclear,cweNode,33,Energy Producer F,5884.80209, +Nuclear Energy Producer G 34,Nuclear,cweNode,34,Energy Producer G,3684.60508, +Nuclear Energy Producer H 35,Nuclear,cweNode,35,Energy Producer H,1343.30286, +Nuclear Energy Producer E 36,Nuclear,cweNode,36,Energy Producer E,4221.82515, +Nuclear Energy Producer F 37,Nuclear,cweNode,37,Energy Producer F,2501.28865, +Nuclear Energy Producer G 38,Nuclear,cweNode,38,Energy Producer G,2699.39016, +Nuclear Energy Producer H 39,Nuclear,cweNode,39,Energy Producer H,499.16354, +Nuclear Energy Producer E 40,Nuclear,cweNode,40,Energy Producer E,556.15917, +OCGT Energy Producer E 1,OCGT,cweNode,1,Energy Producer E,636.66667, +OCGT Energy Producer F 2,OCGT,cweNode,2,Energy Producer F,636.66667, +OCGT Energy Producer G 3,OCGT,cweNode,3,Energy Producer G,664.66667, +OCGT Energy Producer H 4,OCGT,cweNode,4,Energy Producer H,664.66667, +OCGT Energy Producer E 8,OCGT,cweNode,8,Energy Producer E,1294.33508, +OCGT Energy Producer F 9,OCGT,cweNode,9,Energy Producer F,2320.34293, +OCGT Energy Producer G 10,OCGT,cweNode,10,Energy Producer G,163.76276, +OCGT Energy Producer H 11,OCGT,cweNode,11,Energy Producer H,571.90429, +OCGT Energy Producer E 12,OCGT,cweNode,12,Energy Producer E,764.38181, +OCGT Energy Producer F 13,OCGT,cweNode,13,Energy Producer F,776.15641, +OCGT Energy Producer G 14,OCGT,cweNode,14,Energy Producer G,548.94482, +OCGT Energy Producer H 15,OCGT,cweNode,15,Energy Producer H,1131.96044, +OCGT Energy Producer E 16,OCGT,cweNode,16,Energy Producer E,1301.12219, +OCGT Energy Producer F 17,OCGT,cweNode,17,Energy Producer F,1312.89678, +OCGT Energy Producer G 18,OCGT,cweNode,18,Energy Producer G,619.37107, +OCGT Energy Producer H 19,OCGT,cweNode,19,Energy Producer H,642.8096, +OCGT Energy Producer E 20,OCGT,cweNode,20,Energy Producer E,858.59665, +OCGT Energy Producer F 21,OCGT,cweNode,21,Energy Producer F,561.43801, +OCGT Energy Producer G 22,OCGT,cweNode,22,Energy Producer G,258.45054, +OCGT Energy Producer H 23,OCGT,cweNode,23,Energy Producer H,211.94202, +OCGT Energy Producer E 24,OCGT,cweNode,24,Energy Producer E,212.06478, +OCGT Energy Producer F 25,OCGT,cweNode,25,Energy Producer F,194.69476, +OCGT Energy Producer G 26,OCGT,cweNode,26,Energy Producer G,101.54857, +OCGT Energy Producer H 27,OCGT,cweNode,27,Energy Producer H,288.191, +OCGT Energy Producer E 28,OCGT,cweNode,28,Energy Producer E,148.41965, +OCGT Energy Producer F 29,OCGT,cweNode,29,Energy Producer F,626.52061, +OCGT Energy Producer G 30,OCGT,cweNode,30,Energy Producer G,259.40881, +OCGT Energy Producer H 31,OCGT,cweNode,31,Energy Producer H,422.74769, +OCGT Energy Producer E 32,OCGT,cweNode,32,Energy Producer E,294.6464, +OCGT Energy Producer F 33,OCGT,cweNode,33,Energy Producer F,411.33552, +OCGT Energy Producer G 34,OCGT,cweNode,34,Energy Producer G,423.11623, +OCGT Energy Producer H 35,OCGT,cweNode,35,Energy Producer H,376.60771, +OCGT Energy Producer E 36,OCGT,cweNode,36,Energy Producer E,726.4539, +OCGT Energy Producer F 37,OCGT,cweNode,37,Energy Producer F,866.47089, +OCGT Energy Producer G 38,OCGT,cweNode,38,Energy Producer G,1070.60011, +OCGT Energy Producer H 39,OCGT,cweNode,39,Energy Producer H,1251.41968, +OCGT Energy Producer E 40,OCGT,cweNode,40,Energy Producer E,1199.0883, +Photovoltaic Renewable Target Investor CWE 1,Photovoltaic,cweNode,1,Renewable Target Investor CWE,3668.75, +Photovoltaic Renewable Target Investor CWE 2,Photovoltaic,cweNode,2,Renewable Target Investor CWE,3668.75, +Photovoltaic Renewable Target Investor CWE 3,Photovoltaic,cweNode,3,Renewable Target Investor CWE,3668.75, +Photovoltaic Renewable Target Investor CWE 4,Photovoltaic,cweNode,4,Renewable Target Investor CWE,3668.75, +Photovoltaic Renewable Target Investor CWE 6,Photovoltaic,cweNode,6,Renewable Target Investor CWE,2082.05, +Wind Renewable Target Investor CWE 1,Wind,cweNode,1,Renewable Target Investor CWE,3791, +Wind Renewable Target Investor CWE 2,Wind,cweNode,2,Renewable Target Investor CWE,3791, +Wind Renewable Target Investor CWE 3,Wind,cweNode,3,Renewable Target Investor CWE,3791, +Wind Renewable Target Investor CWE 4,Wind,cweNode,4,Renewable Target Investor CWE,3791, +Wind Renewable Target Investor CWE 6,Wind,cweNode,6,Renewable Target Investor CWE,5154.05, +Wind Renewable Target Investor CWE 7,Wind,cweNode,7,Renewable Target Investor CWE,5154.05, +Wind Renewable Target Investor CWE 8,Wind,cweNode,8,Renewable Target Investor CWE,5154.05, +Wind Renewable Target Investor CWE 9,Wind,cweNode,9,Renewable Target Investor CWE,5154.05, +WindOffshore Renewable Target Investor CWE 1,WindOffshore,cweNode,1,Renewable Target Investor CWE,427, +Biogas Renewable Target Investor GB 1,Biogas,gbNode,1,Renewable Target Investor GB,1340, +Biomass Renewable Target Investor GB 6,Biomass,gbNode,6,Renewable Target Investor GB,500.7, +CCGT Energy Producer A 1,CCGT,gbNode,1,Energy Producer A,1158.33333, +CCGT Energy Producer B 2,CCGT,gbNode,2,Energy Producer B,1158.33333, +CCGT Energy Producer C 3,CCGT,gbNode,3,Energy Producer C,690.66667, +CCGT Energy Producer D 4,CCGT,gbNode,4,Energy Producer D,690.66667, +CCGT Energy Producer A 8,CCGT,gbNode,8,Energy Producer A,1399.29849, +CCGT Energy Producer B 9,CCGT,gbNode,9,Energy Producer B,2508.5099, +CCGT Energy Producer C 10,CCGT,gbNode,10,Energy Producer C,177.04301, +CCGT Energy Producer D 11,CCGT,gbNode,11,Energy Producer D,618.28256, +CCGT Energy Producer A 12,CCGT,gbNode,12,Energy Producer A,826.36895, +CCGT Energy Producer B 13,CCGT,gbNode,13,Energy Producer B,839.0984, +CCGT Energy Producer C 14,CCGT,gbNode,14,Energy Producer C,593.46121, +CCGT Energy Producer D 15,CCGT,gbNode,15,Energy Producer D,1223.75617, +CCGT Energy Producer A 16,CCGT,gbNode,16,Energy Producer A,1406.636, +CCGT Energy Producer B 17,CCGT,gbNode,17,Energy Producer B,1419.36545, +CCGT Energy Producer C 18,CCGT,gbNode,18,Energy Producer C,669.59864, +CCGT Energy Producer D 19,CCGT,gbNode,19,Energy Producer D,694.93791, +CCGT Energy Producer A 20,CCGT,gbNode,20,Energy Producer A,928.22408, +CCGT Energy Producer B 21,CCGT,gbNode,21,Energy Producer B,606.96753, +CCGT Energy Producer C 22,CCGT,gbNode,22,Energy Producer C,279.40945, +CCGT Energy Producer D 23,CCGT,gbNode,23,Energy Producer D,229.12935, +CCGT Energy Producer A 24,CCGT,gbNode,24,Energy Producer A,229.26206, +CCGT Energy Producer B 25,CCGT,gbNode,25,Energy Producer B,210.48342, +CCGT Energy Producer C 26,CCGT,gbNode,26,Energy Producer C,109.7836, +CCGT Energy Producer D 27,CCGT,gbNode,27,Energy Producer D,311.56169, +CCGT Energy Producer A 28,CCGT,gbNode,28,Energy Producer A,160.45566, +CCGT Energy Producer B 29,CCGT,gbNode,29,Energy Producer B,677.32796, +CCGT Energy Producer C 30,CCGT,gbNode,30,Energy Producer C,280.44542, +CCGT Energy Producer D 31,CCGT,gbNode,31,Energy Producer D,457.03019, +CCGT Energy Producer A 32,CCGT,gbNode,32,Energy Producer A,318.54059, +CCGT Energy Producer B 33,CCGT,gbNode,33,Energy Producer B,444.69256, +CCGT Energy Producer C 34,CCGT,gbNode,34,Energy Producer C,457.42862, +CCGT Energy Producer D 35,CCGT,gbNode,35,Energy Producer D,407.14852, +CCGT Energy Producer A 36,CCGT,gbNode,36,Energy Producer A,785.36529, +CCGT Energy Producer B 37,CCGT,gbNode,37,Energy Producer B,936.73688, +CCGT Energy Producer C 38,CCGT,gbNode,38,Energy Producer C,1157.41986, +CCGT Energy Producer D 39,CCGT,gbNode,39,Energy Producer D,1352.90289, +CCGT Energy Producer A 40,CCGT,gbNode,40,Energy Producer A,1296.32772, +CoalPSC Energy Producer D 11,CoalPSC,gbNode,11,Energy Producer D,137.01936, +CoalPSC Energy Producer B 13,CoalPSC,gbNode,13,Energy Producer B,137.34012, +CoalPSC Energy Producer C 14,CoalPSC,gbNode,14,Energy Producer C,473.79697, +CoalPSC Energy Producer D 15,CoalPSC,gbNode,15,Energy Producer D,185.72713, +CoalPSC Energy Producer A 16,CoalPSC,gbNode,16,Energy Producer A,450.1054, +CoalPSC Energy Producer B 17,CoalPSC,gbNode,17,Energy Producer B,89.96548, +CoalPSC Energy Producer C 18,CoalPSC,gbNode,18,Energy Producer C,138.15833, +CoalPSC Energy Producer D 19,CoalPSC,gbNode,19,Energy Producer D,498.63602, +CoalPSC Energy Producer A 20,CoalPSC,gbNode,20,Energy Producer A,682.9457, +CoalPSC Energy Producer B 21,CoalPSC,gbNode,21,Energy Producer B,338.83612, +CoalPSC Energy Producer C 22,CoalPSC,gbNode,22,Energy Producer C,186.85759, +CoalPSC Energy Producer D 23,CoalPSC,gbNode,23,Energy Producer D,259.08829, +CoalPSC Energy Producer A 24,CoalPSC,gbNode,24,Energy Producer A,475.43362, +CoalPSC Energy Producer B 25,CoalPSC,gbNode,25,Energy Producer B,211.37611, +CoalPSC Energy Producer C 26,CoalPSC,gbNode,26,Energy Producer C,515.80557, +CoalPSC Energy Producer D 27,CoalPSC,gbNode,27,Energy Producer D,571.99694, +CoalPSC Energy Producer A 28,CoalPSC,gbNode,28,Energy Producer A,1532.9975, +CoalPSC Energy Producer B 29,CoalPSC,gbNode,29,Energy Producer B,1509.13728, +CoalPSC Energy Producer C 30,CoalPSC,gbNode,30,Energy Producer C,692.59763, +CoalPSC Energy Producer D 31,CoalPSC,gbNode,31,Energy Producer D,612.68942, +CoalPSC Energy Producer A 32,CoalPSC,gbNode,32,Energy Producer A,596.85276, +CoalPSC Energy Producer B 33,CoalPSC,gbNode,33,Energy Producer B,869.23806, +CoalPSC Energy Producer C 34,CoalPSC,gbNode,34,Energy Producer C,1221.70872, +CoalPSC Energy Producer D 35,CoalPSC,gbNode,35,Energy Producer D,477.23089, +CoalPSC Energy Producer A 36,CoalPSC,gbNode,36,Energy Producer A,573.47344, +CoalPSC Energy Producer B 37,CoalPSC,gbNode,37,Energy Producer B,893.90821, +CoalPSC Energy Producer C 38,CoalPSC,gbNode,38,Energy Producer C,838.0206, +CoalPSC Energy Producer D 39,CoalPSC,gbNode,39,Energy Producer D,654.03995, +CoalPSC Energy Producer A 40,CoalPSC,gbNode,40,Energy Producer A,1270.72001, +CoalPSC Energy Producer B 41,CoalPSC,gbNode,41,Energy Producer B,1839.37587, +CoalPSC Energy Producer C 42,CoalPSC,gbNode,42,Energy Producer C,1647.36316, +CoalPSC Energy Producer D 43,CoalPSC,gbNode,43,Energy Producer D,3136.82478, +CoalPSC Energy Producer B 45,CoalPSC,gbNode,45,Energy Producer B,1247.54312, +CoalPSC Energy Producer C 46,CoalPSC,gbNode,46,Energy Producer C,1583.9747, +CoalPSC Energy Producer D 47,CoalPSC,gbNode,47,Energy Producer D,751.42998, +CoalPSC Energy Producer A 48,CoalPSC,gbNode,48,Energy Producer A,735.58505, +CoalPSC Energy Producer B 49,CoalPSC,gbNode,49,Energy Producer B,351.39902, +CoalPSC Energy Producer C 50,CoalPSC,gbNode,50,Energy Producer C,623.80109, +HydroPower Energy Producer A 30,HydroPower,gbNode,30,Energy Producer A,805.5, +HydroPower Energy Producer B 40,HydroPower,gbNode,40,Energy Producer B,805.5, +Nuclear Energy Producer C 10,Nuclear,gbNode,10,Energy Producer C,88.85953, +Nuclear Energy Producer D 11,Nuclear,gbNode,11,Energy Producer D,88.93419, +Nuclear Energy Producer C 14,Nuclear,gbNode,14,Energy Producer C,50.2022, +Nuclear Energy Producer D 15,Nuclear,gbNode,15,Energy Producer D,280.44447, +Nuclear Energy Producer A 16,Nuclear,gbNode,16,Energy Producer A,252.19027, +Nuclear Energy Producer B 17,Nuclear,gbNode,17,Energy Producer B,61.04196, +Nuclear Energy Producer C 18,Nuclear,gbNode,18,Energy Producer C,110.6882, +Nuclear Energy Producer A 20,Nuclear,gbNode,20,Energy Producer A,195.82004, +Nuclear Energy Producer B 21,Nuclear,gbNode,21,Energy Producer B,114.44942, +Nuclear Energy Producer C 22,Nuclear,gbNode,22,Energy Producer C,227.83917, +Nuclear Energy Producer D 23,Nuclear,gbNode,23,Energy Producer D,234.99229, +Nuclear Energy Producer A 24,Nuclear,gbNode,24,Energy Producer A,164.24497, +Nuclear Energy Producer B 25,Nuclear,gbNode,25,Energy Producer B,734.43253, +Nuclear Energy Producer C 26,Nuclear,gbNode,26,Energy Producer C,653.05819, +Nuclear Energy Producer D 27,Nuclear,gbNode,27,Energy Producer D,805.39994, +Nuclear Energy Producer A 28,Nuclear,gbNode,28,Energy Producer A,1368.50533, +Nuclear Energy Producer B 29,Nuclear,gbNode,29,Energy Producer B,1018.00759, +Nuclear Energy Producer C 30,Nuclear,gbNode,30,Energy Producer C,695.83863, +Nuclear Energy Producer D 31,Nuclear,gbNode,31,Energy Producer D,511.78364, +Nuclear Energy Producer A 32,Nuclear,gbNode,32,Energy Producer A,1014.69407, +Nuclear Energy Producer B 33,Nuclear,gbNode,33,Energy Producer B,738.55944, +Nuclear Energy Producer C 34,Nuclear,gbNode,34,Energy Producer C,462.42844, +Nuclear Energy Producer D 35,Nuclear,gbNode,35,Energy Producer D,168.58834, +Nuclear Energy Producer A 36,Nuclear,gbNode,36,Energy Producer A,529.85109, +Nuclear Energy Producer B 37,Nuclear,gbNode,37,Energy Producer B,313.91886, +Nuclear Energy Producer C 38,Nuclear,gbNode,38,Energy Producer C,338.78116, +Nuclear Energy Producer D 39,Nuclear,gbNode,39,Energy Producer D,62.64645, +Nuclear Energy Producer A 40,Nuclear,gbNode,40,Energy Producer A,69.79956, +OCGT Energy Producer A 1,OCGT,gbNode,1,Energy Producer A,579.16667, +OCGT Energy Producer B 2,OCGT,gbNode,2,Energy Producer B,579.16667, +OCGT Energy Producer C 3,OCGT,gbNode,3,Energy Producer C,345.33333, +OCGT Energy Producer D 4,OCGT,gbNode,4,Energy Producer D,345.33333, +OCGT Energy Producer A 8,OCGT,gbNode,8,Energy Producer A,699.64925, +OCGT Energy Producer B 9,OCGT,gbNode,9,Energy Producer B,1254.25495, +OCGT Energy Producer C 10,OCGT,gbNode,10,Energy Producer C,88.52151, +OCGT Energy Producer D 11,OCGT,gbNode,11,Energy Producer D,309.14128, +OCGT Energy Producer A 12,OCGT,gbNode,12,Energy Producer A,413.18447, +OCGT Energy Producer B 13,OCGT,gbNode,13,Energy Producer B,419.5492, +OCGT Energy Producer C 14,OCGT,gbNode,14,Energy Producer C,296.7306, +OCGT Energy Producer D 15,OCGT,gbNode,15,Energy Producer D,611.87808, +OCGT Energy Producer A 16,OCGT,gbNode,16,Energy Producer A,703.318, +OCGT Energy Producer B 17,OCGT,gbNode,17,Energy Producer B,709.68272, +OCGT Energy Producer C 18,OCGT,gbNode,18,Energy Producer C,334.79932, +OCGT Energy Producer D 19,OCGT,gbNode,19,Energy Producer D,347.46895, +OCGT Energy Producer A 20,OCGT,gbNode,20,Energy Producer A,464.11204, +OCGT Energy Producer B 21,OCGT,gbNode,21,Energy Producer B,303.48376, +OCGT Energy Producer C 22,OCGT,gbNode,22,Energy Producer C,139.70472, +OCGT Energy Producer D 23,OCGT,gbNode,23,Energy Producer D,114.56467, +OCGT Energy Producer A 24,OCGT,gbNode,24,Energy Producer A,114.63103, +OCGT Energy Producer B 25,OCGT,gbNode,25,Energy Producer B,105.24171, +OCGT Energy Producer C 26,OCGT,gbNode,26,Energy Producer C,54.8918, +OCGT Energy Producer D 27,OCGT,gbNode,27,Energy Producer D,155.78085, +OCGT Energy Producer A 28,OCGT,gbNode,28,Energy Producer A,80.22783, +OCGT Energy Producer B 29,OCGT,gbNode,29,Energy Producer B,338.66398, +OCGT Energy Producer C 30,OCGT,gbNode,30,Energy Producer C,140.22271, +OCGT Energy Producer D 31,OCGT,gbNode,31,Energy Producer D,228.51509, +OCGT Energy Producer A 32,OCGT,gbNode,32,Energy Producer A,159.2703, +OCGT Energy Producer B 33,OCGT,gbNode,33,Energy Producer B,222.34628, +OCGT Energy Producer C 34,OCGT,gbNode,34,Energy Producer C,228.71431, +OCGT Energy Producer D 35,OCGT,gbNode,35,Energy Producer D,203.57426, +OCGT Energy Producer A 36,OCGT,gbNode,36,Energy Producer A,392.68264, +OCGT Energy Producer B 37,OCGT,gbNode,37,Energy Producer B,468.36844, +OCGT Energy Producer C 38,OCGT,gbNode,38,Energy Producer C,578.70993, +OCGT Energy Producer D 39,OCGT,gbNode,39,Energy Producer D,676.45144, +OCGT Energy Producer A 40,OCGT,gbNode,40,Energy Producer A,648.16386, +Wind Renewable Target Investor GB 1,Wind,gbNode,1,Renewable Target Investor GB,1344.5, +Wind Renewable Target Investor GB 3,Wind,gbNode,3,Renewable Target Investor GB,1344.5, +Wind Renewable Target Investor GB 6,Wind,gbNode,6,Renewable Target Investor GB,1351.2, +WindOffshore Renewable Target Investor GB 1,WindOffshore,gbNode,1,Renewable Target Investor GB,1390, diff --git a/emlab-generation/src/main/resources/dataOld/powerPlantsCWEandUKnoWind.csv b/emlab-generation/src/main/resources/dataOld/powerPlantsCWEandUKnoWind.csv new file mode 100644 index 00000000..8210ffb9 --- /dev/null +++ b/emlab-generation/src/main/resources/dataOld/powerPlantsCWEandUKnoWind.csv @@ -0,0 +1,330 @@ +Name,Technology,Location,Age,Owner,Capacity,Efficiency +CCGT Energy Producer E 1,CCGT,cweNode,1,Energy Producer E,1273.33333, +CCGT Energy Producer F 2,CCGT,cweNode,2,Energy Producer F,1273.33333, +CCGT Energy Producer G 3,CCGT,cweNode,3,Energy Producer G,1329.33333, +CCGT Energy Producer H 4,CCGT,cweNode,4,Energy Producer H,1329.33333, +CCGT Energy Producer E 8,CCGT,cweNode,8,Energy Producer E,2588.67016, +CCGT Energy Producer F 9,CCGT,cweNode,9,Energy Producer F,4640.68586, +CCGT Energy Producer G 10,CCGT,cweNode,10,Energy Producer G,327.52551, +CCGT Energy Producer H 11,CCGT,cweNode,11,Energy Producer H,1143.80858, +CCGT Energy Producer E 12,CCGT,cweNode,12,Energy Producer E,1528.76362, +CCGT Energy Producer F 13,CCGT,cweNode,13,Energy Producer F,1552.31281, +CCGT Energy Producer G 14,CCGT,cweNode,14,Energy Producer G,1097.88964, +CCGT Energy Producer H 15,CCGT,cweNode,15,Energy Producer H,2263.92088, +CCGT Energy Producer E 16,CCGT,cweNode,16,Energy Producer E,2602.24437, +CCGT Energy Producer F 17,CCGT,cweNode,17,Energy Producer F,2625.79356, +CCGT Energy Producer G 18,CCGT,cweNode,18,Energy Producer G,1238.74215, +CCGT Energy Producer H 19,CCGT,cweNode,19,Energy Producer H,1285.61921, +CCGT Energy Producer E 20,CCGT,cweNode,20,Energy Producer E,1717.19329, +CCGT Energy Producer F 21,CCGT,cweNode,21,Energy Producer F,1122.87603, +CCGT Energy Producer G 22,CCGT,cweNode,22,Energy Producer G,516.90108, +CCGT Energy Producer H 23,CCGT,cweNode,23,Energy Producer H,423.88404, +CCGT Energy Producer E 24,CCGT,cweNode,24,Energy Producer E,424.12955, +CCGT Energy Producer F 25,CCGT,cweNode,25,Energy Producer F,389.38951, +CCGT Energy Producer G 26,CCGT,cweNode,26,Energy Producer G,203.09714, +CCGT Energy Producer H 27,CCGT,cweNode,27,Energy Producer H,576.38199, +CCGT Energy Producer E 28,CCGT,cweNode,28,Energy Producer E,296.8393, +CCGT Energy Producer F 29,CCGT,cweNode,29,Energy Producer F,1253.04121, +CCGT Energy Producer G 30,CCGT,cweNode,30,Energy Producer G,518.81761, +CCGT Energy Producer H 31,CCGT,cweNode,31,Energy Producer H,845.49538, +CCGT Energy Producer E 32,CCGT,cweNode,32,Energy Producer E,589.2928, +CCGT Energy Producer F 33,CCGT,cweNode,33,Energy Producer F,822.67104, +CCGT Energy Producer G 34,CCGT,cweNode,34,Energy Producer G,846.23247, +CCGT Energy Producer H 35,CCGT,cweNode,35,Energy Producer H,753.21543, +CCGT Energy Producer E 36,CCGT,cweNode,36,Energy Producer E,1452.9078, +CCGT Energy Producer F 37,CCGT,cweNode,37,Energy Producer F,1732.94178, +CCGT Energy Producer G 38,CCGT,cweNode,38,Energy Producer G,2141.20023, +CCGT Energy Producer H 39,CCGT,cweNode,39,Energy Producer H,2502.83936, +CCGT Energy Producer E 40,CCGT,cweNode,40,Energy Producer E,2398.1766, +CoalPSC Energy Producer H 11,CoalPSC,cweNode,11,Energy Producer H,198.67406, +CoalPSC Energy Producer F 13,CoalPSC,cweNode,13,Energy Producer F,199.13915, +CoalPSC Energy Producer G 14,CoalPSC,cweNode,14,Energy Producer G,686.99173, +CoalPSC Energy Producer H 15,CoalPSC,cweNode,15,Energy Producer H,269.29889, +CoalPSC Energy Producer E 16,CoalPSC,cweNode,16,Energy Producer E,652.63965, +CoalPSC Energy Producer F 17,CoalPSC,cweNode,17,Energy Producer F,130.44731, +CoalPSC Energy Producer G 18,CoalPSC,cweNode,18,Energy Producer G,200.32553, +CoalPSC Energy Producer H 19,CoalPSC,cweNode,19,Energy Producer H,723.00762, +CoalPSC Energy Producer E 20,CoalPSC,cweNode,20,Energy Producer E,990.25125, +CoalPSC Energy Producer F 21,CoalPSC,cweNode,21,Energy Producer F,491.30245, +CoalPSC Energy Producer G 22,CoalPSC,cweNode,22,Energy Producer G,270.93803, +CoalPSC Energy Producer H 23,CoalPSC,cweNode,23,Energy Producer H,375.67042, +CoalPSC Energy Producer E 24,CoalPSC,cweNode,24,Energy Producer E,689.36482, +CoalPSC Energy Producer F 25,CoalPSC,cweNode,25,Energy Producer F,306.48917, +CoalPSC Energy Producer G 26,CoalPSC,cweNode,26,Energy Producer G,747.90297, +CoalPSC Energy Producer H 27,CoalPSC,cweNode,27,Energy Producer H,829.37881, +CoalPSC Energy Producer E 28,CoalPSC,cweNode,28,Energy Producer E,2222.80147, +CoalPSC Energy Producer F 29,CoalPSC,cweNode,29,Energy Producer F,2188.20484, +CoalPSC Energy Producer G 30,CoalPSC,cweNode,30,Energy Producer G,1004.24628, +CoalPSC Energy Producer H 31,CoalPSC,cweNode,31,Energy Producer H,888.38171, +CoalPSC Energy Producer E 32,CoalPSC,cweNode,32,Energy Producer E,865.41901, +CoalPSC Energy Producer F 33,CoalPSC,cweNode,33,Energy Producer F,1260.36971, +CoalPSC Energy Producer G 34,CoalPSC,cweNode,34,Energy Producer G,1771.44186, +CoalPSC Energy Producer H 35,CoalPSC,cweNode,35,Energy Producer H,691.9708, +CoalPSC Energy Producer E 36,CoalPSC,cweNode,36,Energy Producer E,831.51969, +CoalPSC Energy Producer F 37,CoalPSC,cweNode,37,Energy Producer F,1296.14072, +CoalPSC Energy Producer G 38,CoalPSC,cweNode,38,Energy Producer G,1215.10532, +CoalPSC Energy Producer H 39,CoalPSC,cweNode,39,Energy Producer H,948.33877, +CoalPSC Energy Producer E 40,CoalPSC,cweNode,40,Energy Producer E,1842.50679, +CoalPSC Energy Producer F 41,CoalPSC,cweNode,41,Energy Producer F,2667.04112, +CoalPSC Energy Producer G 42,CoalPSC,cweNode,42,Energy Producer G,2388.62832, +CoalPSC Energy Producer H 43,CoalPSC,cweNode,43,Energy Producer H,4548.30403, +CoalPSC Energy Producer F 45,CoalPSC,cweNode,45,Energy Producer F,1808.90098, +CoalPSC Energy Producer G 46,CoalPSC,cweNode,46,Energy Producer G,2296.71691, +CoalPSC Energy Producer H 47,CoalPSC,cweNode,47,Energy Producer H,1089.55146, +CoalPSC Energy Producer E 48,CoalPSC,cweNode,48,Energy Producer E,1066.57678, +CoalPSC Energy Producer F 49,CoalPSC,cweNode,49,Energy Producer F,509.51828, +CoalPSC Energy Producer G 50,CoalPSC,cweNode,50,Energy Producer G,904.4933, +HydroPower Energy Producer E 31,HydroPower,cweNode,31,Energy Producer E,2674.2, +HydroPower Energy Producer F 32,HydroPower,cweNode,32,Energy Producer F,2674.2, +HydroPower Energy Producer G 33,HydroPower,cweNode,33,Energy Producer G,2674.2, +HydroPower Energy Producer H 34,HydroPower,cweNode,34,Energy Producer H,2674.2, +HydroPower Energy Producer E 35,HydroPower,cweNode,35,Energy Producer E,2674.2, +HydroPower Energy Producer F 36,HydroPower,cweNode,36,Energy Producer F,2674.2, +HydroPower Energy Producer G 37,HydroPower,cweNode,37,Energy Producer G,2674.2, +HydroPower Energy Producer H 38,HydroPower,cweNode,38,Energy Producer H,2674.2, +HydroPower Energy Producer E 39,HydroPower,cweNode,39,Energy Producer E,2674.2, +HydroPower Energy Producer F 40,HydroPower,cweNode,40,Energy Producer F,2674.2, +Lignite Energy Producer G 10,Lignite,cweNode,10,Energy Producer G,328.52697, +Lignite Energy Producer E 12,Lignite,cweNode,12,Energy Producer E,106.82259, +Lignite Energy Producer F 13,Lignite,cweNode,13,Energy Producer F,621.59027, +Lignite Energy Producer G 14,Lignite,cweNode,14,Energy Producer G,329.48813, +Lignite Energy Producer E 16,Lignite,cweNode,16,Energy Producer E,669.09305, +Lignite Energy Producer F 17,Lignite,cweNode,17,Energy Producer F,189.87549, +Lignite Energy Producer G 18,Lignite,cweNode,18,Energy Producer G,201.81594, +Lignite Energy Producer H 19,Lignite,cweNode,19,Energy Producer H,120.18021, +Lignite Energy Producer G 22,Lignite,cweNode,22,Energy Producer G,261.23442, +Lignite Energy Producer H 23,Lignite,cweNode,23,Energy Producer H,62.68406, +Lignite Energy Producer E 24,Lignite,cweNode,24,Energy Producer E,320.18469, +Lignite Energy Producer F 25,Lignite,cweNode,25,Energy Producer F,472.46466, +Lignite Energy Producer G 26,Lignite,cweNode,26,Energy Producer G,928.75028, +Lignite Energy Producer H 27,Lignite,cweNode,27,Energy Producer H,414.46335, +Lignite Energy Producer E 28,Lignite,cweNode,28,Energy Producer E,1280.04882, +Lignite Energy Producer F 29,Lignite,cweNode,29,Energy Producer F,765.76189, +Lignite Energy Producer G 30,Lignite,cweNode,30,Energy Producer G,812.77171, +Lignite Energy Producer H 31,Lignite,cweNode,31,Energy Producer H,660.98469, +Lignite Energy Producer E 32,Lignite,cweNode,32,Energy Producer E,895.09773, +Lignite Energy Producer F 33,Lignite,cweNode,33,Energy Producer F,883.66244, +Lignite Energy Producer G 34,Lignite,cweNode,34,Energy Producer G,533.07858, +Lignite Energy Producer H 35,Lignite,cweNode,35,Energy Producer H,498.23094, +Lignite Energy Producer E 36,Lignite,cweNode,36,Energy Producer E,580.32233, +Lignite Energy Producer F 37,Lignite,cweNode,37,Energy Producer F,592.26278, +Lignite Energy Producer G 38,Lignite,cweNode,38,Energy Producer G,990.10328, +Lignite Energy Producer H 39,Lignite,cweNode,39,Energy Producer H,1118.98311, +Lignite Energy Producer E 40,Lignite,cweNode,40,Energy Producer E,417.58077, +Lignite Energy Producer F 41,Lignite,cweNode,41,Energy Producer F,499.67251, +Lignite Energy Producer G 42,Lignite,cweNode,42,Energy Producer G,932.58238, +Lignite Energy Producer H 43,Lignite,cweNode,43,Energy Producer H,1494.1256, +Lignite Energy Producer E 44,Lignite,cweNode,44,Energy Producer E,301.60256, +Lignite Energy Producer F 45,Lignite,cweNode,45,Energy Producer F,594.1729, +Lignite Energy Producer G 46,Lignite,cweNode,46,Energy Producer G,442.39808, +Lignite Energy Producer H 47,Lignite,cweNode,47,Energy Producer H,197.05963, +Lignite Energy Producer E 48,Lignite,cweNode,48,Energy Producer E,372.7028, +Lignite Energy Producer F 49,Lignite,cweNode,49,Energy Producer F,267.70388, +Lignite Energy Producer G 50,Lignite,cweNode,50,Energy Producer G,115.91651, +Nuclear Energy Producer G 10,Nuclear,cweNode,10,Energy Producer G,708.02798, +Nuclear Energy Producer H 11,Nuclear,cweNode,11,Energy Producer H,708.62286, +Nuclear Energy Producer G 14,Nuclear,cweNode,14,Energy Producer G,400.00847, +Nuclear Energy Producer H 15,Nuclear,cweNode,15,Energy Producer H,2234.56653, +Nuclear Energy Producer E 16,Nuclear,cweNode,16,Energy Producer E,2009.43858, +Nuclear Energy Producer F 17,Nuclear,cweNode,17,Energy Producer F,486.3791, +Nuclear Energy Producer G 18,Nuclear,cweNode,18,Energy Producer G,881.95764, +Nuclear Energy Producer E 20,Nuclear,cweNode,20,Energy Producer E,1560.28359, +Nuclear Energy Producer F 21,Nuclear,cweNode,21,Energy Producer F,911.92683, +Nuclear Energy Producer G 22,Nuclear,cweNode,22,Energy Producer G,1815.41034, +Nuclear Energy Producer H 23,Nuclear,cweNode,23,Energy Producer H,1872.40598, +Nuclear Energy Producer E 24,Nuclear,cweNode,24,Energy Producer E,1308.69512, +Nuclear Energy Producer F 25,Nuclear,cweNode,25,Energy Producer F,5851.91908, +Nuclear Energy Producer G 26,Nuclear,cweNode,26,Energy Producer G,5203.53272, +Nuclear Energy Producer H 27,Nuclear,cweNode,27,Energy Producer H,6417.38361, +Nuclear Energy Producer E 28,Nuclear,cweNode,28,Energy Producer E,10904.1772, +Nuclear Energy Producer F 29,Nuclear,cweNode,29,Energy Producer F,8111.43, +Nuclear Energy Producer G 30,Nuclear,cweNode,30,Energy Producer G,5544.40495, +Nuclear Energy Producer H 31,Nuclear,cweNode,31,Energy Producer H,4077.86468, +Nuclear Energy Producer E 32,Nuclear,cweNode,32,Energy Producer E,8085.02804, +Nuclear Energy Producer F 33,Nuclear,cweNode,33,Energy Producer F,5884.80209, +Nuclear Energy Producer G 34,Nuclear,cweNode,34,Energy Producer G,3684.60508, +Nuclear Energy Producer H 35,Nuclear,cweNode,35,Energy Producer H,1343.30286, +Nuclear Energy Producer E 36,Nuclear,cweNode,36,Energy Producer E,4221.82515, +Nuclear Energy Producer F 37,Nuclear,cweNode,37,Energy Producer F,2501.28865, +Nuclear Energy Producer G 38,Nuclear,cweNode,38,Energy Producer G,2699.39016, +Nuclear Energy Producer H 39,Nuclear,cweNode,39,Energy Producer H,499.16354, +Nuclear Energy Producer E 40,Nuclear,cweNode,40,Energy Producer E,556.15917, +OCGT Energy Producer E 1,OCGT,cweNode,1,Energy Producer E,636.66667, +OCGT Energy Producer F 2,OCGT,cweNode,2,Energy Producer F,636.66667, +OCGT Energy Producer G 3,OCGT,cweNode,3,Energy Producer G,664.66667, +OCGT Energy Producer H 4,OCGT,cweNode,4,Energy Producer H,664.66667, +OCGT Energy Producer E 8,OCGT,cweNode,8,Energy Producer E,1294.33508, +OCGT Energy Producer F 9,OCGT,cweNode,9,Energy Producer F,2320.34293, +OCGT Energy Producer G 10,OCGT,cweNode,10,Energy Producer G,163.76276, +OCGT Energy Producer H 11,OCGT,cweNode,11,Energy Producer H,571.90429, +OCGT Energy Producer E 12,OCGT,cweNode,12,Energy Producer E,764.38181, +OCGT Energy Producer F 13,OCGT,cweNode,13,Energy Producer F,776.15641, +OCGT Energy Producer G 14,OCGT,cweNode,14,Energy Producer G,548.94482, +OCGT Energy Producer H 15,OCGT,cweNode,15,Energy Producer H,1131.96044, +OCGT Energy Producer E 16,OCGT,cweNode,16,Energy Producer E,1301.12219, +OCGT Energy Producer F 17,OCGT,cweNode,17,Energy Producer F,1312.89678, +OCGT Energy Producer G 18,OCGT,cweNode,18,Energy Producer G,619.37107, +OCGT Energy Producer H 19,OCGT,cweNode,19,Energy Producer H,642.8096, +OCGT Energy Producer E 20,OCGT,cweNode,20,Energy Producer E,858.59665, +OCGT Energy Producer F 21,OCGT,cweNode,21,Energy Producer F,561.43801, +OCGT Energy Producer G 22,OCGT,cweNode,22,Energy Producer G,258.45054, +OCGT Energy Producer H 23,OCGT,cweNode,23,Energy Producer H,211.94202, +OCGT Energy Producer E 24,OCGT,cweNode,24,Energy Producer E,212.06478, +OCGT Energy Producer F 25,OCGT,cweNode,25,Energy Producer F,194.69476, +OCGT Energy Producer G 26,OCGT,cweNode,26,Energy Producer G,101.54857, +OCGT Energy Producer H 27,OCGT,cweNode,27,Energy Producer H,288.191, +OCGT Energy Producer E 28,OCGT,cweNode,28,Energy Producer E,148.41965, +OCGT Energy Producer F 29,OCGT,cweNode,29,Energy Producer F,626.52061, +OCGT Energy Producer G 30,OCGT,cweNode,30,Energy Producer G,259.40881, +OCGT Energy Producer H 31,OCGT,cweNode,31,Energy Producer H,422.74769, +OCGT Energy Producer E 32,OCGT,cweNode,32,Energy Producer E,294.6464, +OCGT Energy Producer F 33,OCGT,cweNode,33,Energy Producer F,411.33552, +OCGT Energy Producer G 34,OCGT,cweNode,34,Energy Producer G,423.11623, +OCGT Energy Producer H 35,OCGT,cweNode,35,Energy Producer H,376.60771, +OCGT Energy Producer E 36,OCGT,cweNode,36,Energy Producer E,726.4539, +OCGT Energy Producer F 37,OCGT,cweNode,37,Energy Producer F,866.47089, +OCGT Energy Producer G 38,OCGT,cweNode,38,Energy Producer G,1070.60011, +OCGT Energy Producer H 39,OCGT,cweNode,39,Energy Producer H,1251.41968, +OCGT Energy Producer E 40,OCGT,cweNode,40,Energy Producer E,1199.0883, +CCGT Energy Producer A 1,CCGT,gbNode,1,Energy Producer A,1158.33333, +CCGT Energy Producer B 2,CCGT,gbNode,2,Energy Producer B,1158.33333, +CCGT Energy Producer C 3,CCGT,gbNode,3,Energy Producer C,690.66667, +CCGT Energy Producer D 4,CCGT,gbNode,4,Energy Producer D,690.66667, +CCGT Energy Producer A 8,CCGT,gbNode,8,Energy Producer A,1399.29849, +CCGT Energy Producer B 9,CCGT,gbNode,9,Energy Producer B,2508.5099, +CCGT Energy Producer C 10,CCGT,gbNode,10,Energy Producer C,177.04301, +CCGT Energy Producer D 11,CCGT,gbNode,11,Energy Producer D,618.28256, +CCGT Energy Producer A 12,CCGT,gbNode,12,Energy Producer A,826.36895, +CCGT Energy Producer B 13,CCGT,gbNode,13,Energy Producer B,839.0984, +CCGT Energy Producer C 14,CCGT,gbNode,14,Energy Producer C,593.46121, +CCGT Energy Producer D 15,CCGT,gbNode,15,Energy Producer D,1223.75617, +CCGT Energy Producer A 16,CCGT,gbNode,16,Energy Producer A,1406.636, +CCGT Energy Producer B 17,CCGT,gbNode,17,Energy Producer B,1419.36545, +CCGT Energy Producer C 18,CCGT,gbNode,18,Energy Producer C,669.59864, +CCGT Energy Producer D 19,CCGT,gbNode,19,Energy Producer D,694.93791, +CCGT Energy Producer A 20,CCGT,gbNode,20,Energy Producer A,928.22408, +CCGT Energy Producer B 21,CCGT,gbNode,21,Energy Producer B,606.96753, +CCGT Energy Producer C 22,CCGT,gbNode,22,Energy Producer C,279.40945, +CCGT Energy Producer D 23,CCGT,gbNode,23,Energy Producer D,229.12935, +CCGT Energy Producer A 24,CCGT,gbNode,24,Energy Producer A,229.26206, +CCGT Energy Producer B 25,CCGT,gbNode,25,Energy Producer B,210.48342, +CCGT Energy Producer C 26,CCGT,gbNode,26,Energy Producer C,109.7836, +CCGT Energy Producer D 27,CCGT,gbNode,27,Energy Producer D,311.56169, +CCGT Energy Producer A 28,CCGT,gbNode,28,Energy Producer A,160.45566, +CCGT Energy Producer B 29,CCGT,gbNode,29,Energy Producer B,677.32796, +CCGT Energy Producer C 30,CCGT,gbNode,30,Energy Producer C,280.44542, +CCGT Energy Producer D 31,CCGT,gbNode,31,Energy Producer D,457.03019, +CCGT Energy Producer A 32,CCGT,gbNode,32,Energy Producer A,318.54059, +CCGT Energy Producer B 33,CCGT,gbNode,33,Energy Producer B,444.69256, +CCGT Energy Producer C 34,CCGT,gbNode,34,Energy Producer C,457.42862, +CCGT Energy Producer D 35,CCGT,gbNode,35,Energy Producer D,407.14852, +CCGT Energy Producer A 36,CCGT,gbNode,36,Energy Producer A,785.36529, +CCGT Energy Producer B 37,CCGT,gbNode,37,Energy Producer B,936.73688, +CCGT Energy Producer C 38,CCGT,gbNode,38,Energy Producer C,1157.41986, +CCGT Energy Producer D 39,CCGT,gbNode,39,Energy Producer D,1352.90289, +CCGT Energy Producer A 40,CCGT,gbNode,40,Energy Producer A,1296.32772, +CoalPSC Energy Producer D 11,CoalPSC,gbNode,11,Energy Producer D,137.01936, +CoalPSC Energy Producer B 13,CoalPSC,gbNode,13,Energy Producer B,137.34012, +CoalPSC Energy Producer C 14,CoalPSC,gbNode,14,Energy Producer C,473.79697, +CoalPSC Energy Producer D 15,CoalPSC,gbNode,15,Energy Producer D,185.72713, +CoalPSC Energy Producer A 16,CoalPSC,gbNode,16,Energy Producer A,450.1054, +CoalPSC Energy Producer B 17,CoalPSC,gbNode,17,Energy Producer B,89.96548, +CoalPSC Energy Producer C 18,CoalPSC,gbNode,18,Energy Producer C,138.15833, +CoalPSC Energy Producer D 19,CoalPSC,gbNode,19,Energy Producer D,498.63602, +CoalPSC Energy Producer A 20,CoalPSC,gbNode,20,Energy Producer A,682.9457, +CoalPSC Energy Producer B 21,CoalPSC,gbNode,21,Energy Producer B,338.83612, +CoalPSC Energy Producer C 22,CoalPSC,gbNode,22,Energy Producer C,186.85759, +CoalPSC Energy Producer D 23,CoalPSC,gbNode,23,Energy Producer D,259.08829, +CoalPSC Energy Producer A 24,CoalPSC,gbNode,24,Energy Producer A,475.43362, +CoalPSC Energy Producer B 25,CoalPSC,gbNode,25,Energy Producer B,211.37611, +CoalPSC Energy Producer C 26,CoalPSC,gbNode,26,Energy Producer C,515.80557, +CoalPSC Energy Producer D 27,CoalPSC,gbNode,27,Energy Producer D,571.99694, +CoalPSC Energy Producer A 28,CoalPSC,gbNode,28,Energy Producer A,1532.9975, +CoalPSC Energy Producer B 29,CoalPSC,gbNode,29,Energy Producer B,1509.13728, +CoalPSC Energy Producer C 30,CoalPSC,gbNode,30,Energy Producer C,692.59763, +CoalPSC Energy Producer D 31,CoalPSC,gbNode,31,Energy Producer D,612.68942, +CoalPSC Energy Producer A 32,CoalPSC,gbNode,32,Energy Producer A,596.85276, +CoalPSC Energy Producer B 33,CoalPSC,gbNode,33,Energy Producer B,869.23806, +CoalPSC Energy Producer C 34,CoalPSC,gbNode,34,Energy Producer C,1221.70872, +CoalPSC Energy Producer D 35,CoalPSC,gbNode,35,Energy Producer D,477.23089, +CoalPSC Energy Producer A 36,CoalPSC,gbNode,36,Energy Producer A,573.47344, +CoalPSC Energy Producer B 37,CoalPSC,gbNode,37,Energy Producer B,893.90821, +CoalPSC Energy Producer C 38,CoalPSC,gbNode,38,Energy Producer C,838.0206, +CoalPSC Energy Producer D 39,CoalPSC,gbNode,39,Energy Producer D,654.03995, +CoalPSC Energy Producer A 40,CoalPSC,gbNode,40,Energy Producer A,1270.72001, +CoalPSC Energy Producer B 41,CoalPSC,gbNode,41,Energy Producer B,1839.37587, +CoalPSC Energy Producer C 42,CoalPSC,gbNode,42,Energy Producer C,1647.36316, +CoalPSC Energy Producer D 43,CoalPSC,gbNode,43,Energy Producer D,3136.82478, +CoalPSC Energy Producer B 45,CoalPSC,gbNode,45,Energy Producer B,1247.54312, +CoalPSC Energy Producer C 46,CoalPSC,gbNode,46,Energy Producer C,1583.9747, +CoalPSC Energy Producer D 47,CoalPSC,gbNode,47,Energy Producer D,751.42998, +CoalPSC Energy Producer A 48,CoalPSC,gbNode,48,Energy Producer A,735.58505, +CoalPSC Energy Producer B 49,CoalPSC,gbNode,49,Energy Producer B,351.39902, +CoalPSC Energy Producer C 50,CoalPSC,gbNode,50,Energy Producer C,623.80109, +HydroPower Energy Producer A 30,HydroPower,gbNode,30,Energy Producer A,805.5, +HydroPower Energy Producer B 40,HydroPower,gbNode,40,Energy Producer B,805.5, +Nuclear Energy Producer C 10,Nuclear,gbNode,10,Energy Producer C,88.85953, +Nuclear Energy Producer D 11,Nuclear,gbNode,11,Energy Producer D,88.93419, +Nuclear Energy Producer C 14,Nuclear,gbNode,14,Energy Producer C,50.2022, +Nuclear Energy Producer D 15,Nuclear,gbNode,15,Energy Producer D,280.44447, +Nuclear Energy Producer A 16,Nuclear,gbNode,16,Energy Producer A,252.19027, +Nuclear Energy Producer B 17,Nuclear,gbNode,17,Energy Producer B,61.04196, +Nuclear Energy Producer C 18,Nuclear,gbNode,18,Energy Producer C,110.6882, +Nuclear Energy Producer A 20,Nuclear,gbNode,20,Energy Producer A,195.82004, +Nuclear Energy Producer B 21,Nuclear,gbNode,21,Energy Producer B,114.44942, +Nuclear Energy Producer C 22,Nuclear,gbNode,22,Energy Producer C,227.83917, +Nuclear Energy Producer D 23,Nuclear,gbNode,23,Energy Producer D,234.99229, +Nuclear Energy Producer A 24,Nuclear,gbNode,24,Energy Producer A,164.24497, +Nuclear Energy Producer B 25,Nuclear,gbNode,25,Energy Producer B,734.43253, +Nuclear Energy Producer C 26,Nuclear,gbNode,26,Energy Producer C,653.05819, +Nuclear Energy Producer D 27,Nuclear,gbNode,27,Energy Producer D,805.39994, +Nuclear Energy Producer A 28,Nuclear,gbNode,28,Energy Producer A,1368.50533, +Nuclear Energy Producer B 29,Nuclear,gbNode,29,Energy Producer B,1018.00759, +Nuclear Energy Producer C 30,Nuclear,gbNode,30,Energy Producer C,695.83863, +Nuclear Energy Producer D 31,Nuclear,gbNode,31,Energy Producer D,511.78364, +Nuclear Energy Producer A 32,Nuclear,gbNode,32,Energy Producer A,1014.69407, +Nuclear Energy Producer B 33,Nuclear,gbNode,33,Energy Producer B,738.55944, +Nuclear Energy Producer C 34,Nuclear,gbNode,34,Energy Producer C,462.42844, +Nuclear Energy Producer D 35,Nuclear,gbNode,35,Energy Producer D,168.58834, +Nuclear Energy Producer A 36,Nuclear,gbNode,36,Energy Producer A,529.85109, +Nuclear Energy Producer B 37,Nuclear,gbNode,37,Energy Producer B,313.91886, +Nuclear Energy Producer C 38,Nuclear,gbNode,38,Energy Producer C,338.78116, +Nuclear Energy Producer D 39,Nuclear,gbNode,39,Energy Producer D,62.64645, +Nuclear Energy Producer A 40,Nuclear,gbNode,40,Energy Producer A,69.79956, +OCGT Energy Producer A 1,OCGT,gbNode,1,Energy Producer A,579.16667, +OCGT Energy Producer B 2,OCGT,gbNode,2,Energy Producer B,579.16667, +OCGT Energy Producer C 3,OCGT,gbNode,3,Energy Producer C,345.33333, +OCGT Energy Producer D 4,OCGT,gbNode,4,Energy Producer D,345.33333, +OCGT Energy Producer A 8,OCGT,gbNode,8,Energy Producer A,699.64925, +OCGT Energy Producer B 9,OCGT,gbNode,9,Energy Producer B,1254.25495, +OCGT Energy Producer C 10,OCGT,gbNode,10,Energy Producer C,88.52151, +OCGT Energy Producer D 11,OCGT,gbNode,11,Energy Producer D,309.14128, +OCGT Energy Producer A 12,OCGT,gbNode,12,Energy Producer A,413.18447, +OCGT Energy Producer B 13,OCGT,gbNode,13,Energy Producer B,419.5492, +OCGT Energy Producer C 14,OCGT,gbNode,14,Energy Producer C,296.7306, +OCGT Energy Producer D 15,OCGT,gbNode,15,Energy Producer D,611.87808, +OCGT Energy Producer A 16,OCGT,gbNode,16,Energy Producer A,703.318, +OCGT Energy Producer B 17,OCGT,gbNode,17,Energy Producer B,709.68272, +OCGT Energy Producer C 18,OCGT,gbNode,18,Energy Producer C,334.79932, +OCGT Energy Producer D 19,OCGT,gbNode,19,Energy Producer D,347.46895, +OCGT Energy Producer A 20,OCGT,gbNode,20,Energy Producer A,464.11204, +OCGT Energy Producer B 21,OCGT,gbNode,21,Energy Producer B,303.48376, +OCGT Energy Producer C 22,OCGT,gbNode,22,Energy Producer C,139.70472, +OCGT Energy Producer D 23,OCGT,gbNode,23,Energy Producer D,114.56467, +OCGT Energy Producer A 24,OCGT,gbNode,24,Energy Producer A,114.63103, +OCGT Energy Producer B 25,OCGT,gbNode,25,Energy Producer B,105.24171, +OCGT Energy Producer C 26,OCGT,gbNode,26,Energy Producer C,54.8918, +OCGT Energy Producer D 27,OCGT,gbNode,27,Energy Producer D,155.78085, +OCGT Energy Producer A 28,OCGT,gbNode,28,Energy Producer A,80.22783, +OCGT Energy Producer B 29,OCGT,gbNode,29,Energy Producer B,338.66398, +OCGT Energy Producer C 30,OCGT,gbNode,30,Energy Producer C,140.22271, +OCGT Energy Producer D 31,OCGT,gbNode,31,Energy Producer D,228.51509, +OCGT Energy Producer A 32,OCGT,gbNode,32,Energy Producer A,159.2703, +OCGT Energy Producer B 33,OCGT,gbNode,33,Energy Producer B,222.34628, +OCGT Energy Producer C 34,OCGT,gbNode,34,Energy Producer C,228.71431, +OCGT Energy Producer D 35,OCGT,gbNode,35,Energy Producer D,203.57426, +OCGT Energy Producer A 36,OCGT,gbNode,36,Energy Producer A,392.68264, +OCGT Energy Producer B 37,OCGT,gbNode,37,Energy Producer B,468.36844, +OCGT Energy Producer C 38,OCGT,gbNode,38,Energy Producer C,578.70993, +OCGT Energy Producer D 39,OCGT,gbNode,39,Energy Producer D,676.45144, +OCGT Energy Producer A 40,OCGT,gbNode,40,Energy Producer A,648.16386, diff --git a/emlab-generation/src/main/resources/dataOld/toyModelPowerPlants.csv b/emlab-generation/src/main/resources/dataOld/toyModelPowerPlants.csv new file mode 100644 index 00000000..a030f9e6 --- /dev/null +++ b/emlab-generation/src/main/resources/dataOld/toyModelPowerPlants.csv @@ -0,0 +1,11 @@ +Name,Technology,Location,Age,Owner,Capacity,Efficiency +ppCoalA1,CoalPulverizedSuperCritical,BeneluxNode,11,Energy Producer A,, +ppCoalA2,CoalPulverizedSuperCritical,BeneluxNode,6,Energy Producer A,, +ppCoalB1,CoalPulverizedSuperCritical,BeneluxNode,16,Energy Producer B,, +ppCoalB2,CoalPulverizedSuperCritical,BeneluxNode,3,Energy Producer B,, +ppCCGTA1,CCGT,BeneluxNode,10,Energy Producer A,, +ppCCGTB1,CCGT,BeneluxNode,3,Energy Producer B,, +ppOCGTA1,OCGT,BeneluxNode,3,Energy Producer A,, +ppOCGTA2,OCGT,BeneluxNode,5,Energy Producer A,, +ppOCGTB1,OCGT,BeneluxNode,20,Energy Producer B,, +ppOCGTB2,OCGT,BeneluxNode,1,Energy Producer B,, diff --git a/emlab-generation/src/main/resources/scenarios/BL.xml b/emlab-generation/src/main/resources/scenarios/BL.xml new file mode 100644 index 00000000..d658912b --- /dev/null +++ b/emlab-generation/src/main/resources/scenarios/BL.xml @@ -0,0 +1,1146 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0.422 + + + + + + 0.1371 + + + + + + 0.10514 + + + + + + 0.04846 + + + + + + 0.0731 + + + + + + 0.1551 + + + + + + 0.0591 + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0.422 + + + + + + 0.1271 + + + + + + 0.10514 + + + + + + 0.04846 + + + + + + 0.0731 + + + + + + 0.1551 + + + + + + 0.0591 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/emlab-generation/src/main/resources/scenarios/CmTwoCountry-1.xml b/emlab-generation/src/main/resources/scenarios/CmTwoCountry-1.xml new file mode 100644 index 00000000..65a3d3c7 --- /dev/null +++ b/emlab-generation/src/main/resources/scenarios/CmTwoCountry-1.xml @@ -0,0 +1,1253 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0.422 + + + + + + 0.1371 + + + + + + 0.10514 + + + + + + 0.04846 + + + + + + 0.0731 + + + + + + 0.1551 + + + + + + 0.0591 + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0.422 + + + + + + 0.1271 + + + + + + 0.10514 + + + + + + 0.04846 + + + + + + 0.0731 + + + + + + 0.1551 + + + + + + 0.0591 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/emlab-generation/src/main/resources/scenarios/CmTwoCountry-2.xml b/emlab-generation/src/main/resources/scenarios/CmTwoCountry-2.xml new file mode 100644 index 00000000..803b3436 --- /dev/null +++ b/emlab-generation/src/main/resources/scenarios/CmTwoCountry-2.xml @@ -0,0 +1,1252 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0.422 + + + + + + 0.1371 + + + + + + 0.10514 + + + + + + 0.04846 + + + + + + 0.0731 + + + + + + 0.1551 + + + + + + 0.0591 + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0.422 + + + + + + 0.1271 + + + + + + 0.10514 + + + + + + 0.04846 + + + + + + 0.0731 + + + + + + 0.1551 + + + + + + 0.0591 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/emlab-generation/src/main/resources/scenarios/CmTwoCountry-3.xml b/emlab-generation/src/main/resources/scenarios/CmTwoCountry-3.xml new file mode 100644 index 00000000..6a4a6688 --- /dev/null +++ b/emlab-generation/src/main/resources/scenarios/CmTwoCountry-3.xml @@ -0,0 +1,1253 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0.422 + + + + + + 0.1371 + + + + + + 0.10514 + + + + + + 0.04846 + + + + + + 0.0731 + + + + + + 0.1551 + + + + + + 0.0591 + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0.422 + + + + + + 0.1271 + + + + + + 0.10514 + + + + + + 0.04846 + + + + + + 0.0731 + + + + + + 0.1551 + + + + + + 0.0591 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/emlab-generation/src/main/resources/scenarios/CmTwoCountryDE.properties b/emlab-generation/src/main/resources/scenarios/CmTwoCountryDE.properties new file mode 100644 index 00000000..79040ede --- /dev/null +++ b/emlab-generation/src/main/resources/scenarios/CmTwoCountryDE.properties @@ -0,0 +1,158 @@ +#------------------------------------------------------------------------------- +# Copyright 2012 the original author or authors. +# +# Licensed 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. +#------------------------------------------------------------------------------- +coalPriceStart=3.6917419368 +coalPriceMin=0.9707458246 +coalPriceTop=1.0107458246 +coalPriceMax=1.0507458246 + +gasPriceStart=7.5 +gasPriceMin=0.9446627902 +gasPriceTop=1.0146627902 +gasPriceMax=1.0846627902 + +biomassPriceStart=4.5 +biomassPriceMin=0.97 +biomassPriceTop=1.01 +biomassPriceMax=1.05 + +uraniumPriceStart=1.286 +uraniumPriceMin=1 +uraniumPriceMax=1.02 +uraniumPriceTop=1.01 + +#coalPriceStart=3.6917419368 +#coalPriceMin=1 +#coalPriceTop=1 +#coalPriceMax=1 + +#gasPriceStart=7.5 +#gasPriceMin=1 +#gasPriceTop=1 +#gasPriceMax=1 + +#biomassPriceStart=4.5 +#biomassPriceMin=1 +#biomassPriceTop=1 +#biomassPriceMax=1 + +#uraniumPriceStart=1.286 +#uraniumPriceMin=1 +#uraniumPriceMax=1 +#uraniumPriceTop=1 + +co2TaxStart=0 +co2TaxIncrement=0 +co2TaxDuration=5 + +minCo2EUPriceStart=0 +minCo2EUPriceIncrement=0 +minCo2PriceDuration=1 + +#co2CapStart=351.75e6 +co2CapStart=72e10 +co2CapIncrement=0 +#co2CapIncrement=0 +co2CapDuration=1 + +minCo2DEPriceStart=0 +minCo2DEPriceIncrement=0 +minCo2DEPriceDuration=1 + +minCo2NLPriceStart=0 +minCo2NLPriceIncrement=0 +minCo2NLPriceDuration=1 + +segment1nl=8160.778 +segment2nl=8390.36 +segment3nl=8961.656 +segment4nl=9448.219 +segment5nl=9828.25 +segment6nl=10333.58 +segment7nl=10887.66 +segment8nl=11438.97 +segment9nl=11957.73 +segment10nl=12498.55 +segment11nl=13155.53 +segment12nl=13819.34 +segment13nl=14395.3 +segment14nl=14826.11 +segment15nl=15221.23 +segment16nl=15797.4 +segment17nl=16622.16 +segment18nl=17535.46 +segment19nl=18179.78 +segment20nl=18390.00 + +segment1de=35311.89 +segment2de=36657.44 +segment3de=40401.68 +segment4de=43606.1 +segment5de=45600.58 +segment6de=47414.54 +segment7de=49337.31 +segment8de=51439.43 +segment9de=53771.93 +segment10de=56143.54 +segment11de=58402.19 +segment12de=60234.9 +segment13de=61923.03 +segment14de=63697.04 +segment15de=65580.2 +segment16de=67797.75 +segment17de=71192.97 +segment18de=75390.2 +segment19de=77408.11 +segment20de=79884 + + +demandGrowthDEStart=1 +demandGrowthDEMin=1 +demandGrowthDETop=1 +demandGrowthDEMax=1 + +demandGrowthNLStart=1 +demandGrowthNLMin=1 +demandGrowthNLTop=1 +demandGrowthNLMax=1 + +#demandGrowthDEStart=1 +#demandGrowthDEMin=0.99 +#demandGrowthDETop=1.02 +#demandGrowthDEMax=1.05 + +#demandGrowthNLStart=1 +#demandGrowthNLMin=0.99 +#demandGrowthNLTop=1.02 +#demandGrowthNLMax=1.05 + + +startCash=3e9 +priceMarkUp=1 + +co2TradingImplemented=false +simulationLength=50 + +interconnectorCapacity=5000 + +investmentFutureTimeHorizon=7 + +numberOfYearsBacklookingForForecasting=5 +simpleCapacityMarketEnabled=true + +capacityMarketPriceCap=58940 +reserveMargin=0.15 +reserveDemandLowerMargin=0.025 +reserveDemandUpperMargin=0.025 diff --git a/emlab-generation/src/main/resources/scenarios/CmTwoCountryNl.properties b/emlab-generation/src/main/resources/scenarios/CmTwoCountryNl.properties new file mode 100644 index 00000000..79040ede --- /dev/null +++ b/emlab-generation/src/main/resources/scenarios/CmTwoCountryNl.properties @@ -0,0 +1,158 @@ +#------------------------------------------------------------------------------- +# Copyright 2012 the original author or authors. +# +# Licensed 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. +#------------------------------------------------------------------------------- +coalPriceStart=3.6917419368 +coalPriceMin=0.9707458246 +coalPriceTop=1.0107458246 +coalPriceMax=1.0507458246 + +gasPriceStart=7.5 +gasPriceMin=0.9446627902 +gasPriceTop=1.0146627902 +gasPriceMax=1.0846627902 + +biomassPriceStart=4.5 +biomassPriceMin=0.97 +biomassPriceTop=1.01 +biomassPriceMax=1.05 + +uraniumPriceStart=1.286 +uraniumPriceMin=1 +uraniumPriceMax=1.02 +uraniumPriceTop=1.01 + +#coalPriceStart=3.6917419368 +#coalPriceMin=1 +#coalPriceTop=1 +#coalPriceMax=1 + +#gasPriceStart=7.5 +#gasPriceMin=1 +#gasPriceTop=1 +#gasPriceMax=1 + +#biomassPriceStart=4.5 +#biomassPriceMin=1 +#biomassPriceTop=1 +#biomassPriceMax=1 + +#uraniumPriceStart=1.286 +#uraniumPriceMin=1 +#uraniumPriceMax=1 +#uraniumPriceTop=1 + +co2TaxStart=0 +co2TaxIncrement=0 +co2TaxDuration=5 + +minCo2EUPriceStart=0 +minCo2EUPriceIncrement=0 +minCo2PriceDuration=1 + +#co2CapStart=351.75e6 +co2CapStart=72e10 +co2CapIncrement=0 +#co2CapIncrement=0 +co2CapDuration=1 + +minCo2DEPriceStart=0 +minCo2DEPriceIncrement=0 +minCo2DEPriceDuration=1 + +minCo2NLPriceStart=0 +minCo2NLPriceIncrement=0 +minCo2NLPriceDuration=1 + +segment1nl=8160.778 +segment2nl=8390.36 +segment3nl=8961.656 +segment4nl=9448.219 +segment5nl=9828.25 +segment6nl=10333.58 +segment7nl=10887.66 +segment8nl=11438.97 +segment9nl=11957.73 +segment10nl=12498.55 +segment11nl=13155.53 +segment12nl=13819.34 +segment13nl=14395.3 +segment14nl=14826.11 +segment15nl=15221.23 +segment16nl=15797.4 +segment17nl=16622.16 +segment18nl=17535.46 +segment19nl=18179.78 +segment20nl=18390.00 + +segment1de=35311.89 +segment2de=36657.44 +segment3de=40401.68 +segment4de=43606.1 +segment5de=45600.58 +segment6de=47414.54 +segment7de=49337.31 +segment8de=51439.43 +segment9de=53771.93 +segment10de=56143.54 +segment11de=58402.19 +segment12de=60234.9 +segment13de=61923.03 +segment14de=63697.04 +segment15de=65580.2 +segment16de=67797.75 +segment17de=71192.97 +segment18de=75390.2 +segment19de=77408.11 +segment20de=79884 + + +demandGrowthDEStart=1 +demandGrowthDEMin=1 +demandGrowthDETop=1 +demandGrowthDEMax=1 + +demandGrowthNLStart=1 +demandGrowthNLMin=1 +demandGrowthNLTop=1 +demandGrowthNLMax=1 + +#demandGrowthDEStart=1 +#demandGrowthDEMin=0.99 +#demandGrowthDETop=1.02 +#demandGrowthDEMax=1.05 + +#demandGrowthNLStart=1 +#demandGrowthNLMin=0.99 +#demandGrowthNLTop=1.02 +#demandGrowthNLMax=1.05 + + +startCash=3e9 +priceMarkUp=1 + +co2TradingImplemented=false +simulationLength=50 + +interconnectorCapacity=5000 + +investmentFutureTimeHorizon=7 + +numberOfYearsBacklookingForForecasting=5 +simpleCapacityMarketEnabled=true + +capacityMarketPriceCap=58940 +reserveMargin=0.15 +reserveDemandLowerMargin=0.025 +reserveDemandUpperMargin=0.025 diff --git a/emlab-generation/src/main/resources/scenarios/CmTwoCountryNone.properties b/emlab-generation/src/main/resources/scenarios/CmTwoCountryNone.properties new file mode 100644 index 00000000..407b7d28 --- /dev/null +++ b/emlab-generation/src/main/resources/scenarios/CmTwoCountryNone.properties @@ -0,0 +1,158 @@ +#------------------------------------------------------------------------------- +# Copyright 2012 the original author or authors. +# +# Licensed 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. +#------------------------------------------------------------------------------- +coalPriceStart=3.6917419368 +coalPriceMin=0.9707458246 +coalPriceTop=1.0107458246 +coalPriceMax=1.0507458246 + +gasPriceStart=7.5 +gasPriceMin=0.9446627902 +gasPriceTop=1.0146627902 +gasPriceMax=1.0846627902 + +biomassPriceStart=4.5 +biomassPriceMin=0.97 +biomassPriceTop=1.01 +biomassPriceMax=1.05 + +uraniumPriceStart=1.286 +uraniumPriceMin=1 +uraniumPriceMax=1.02 +uraniumPriceTop=1.01 + +#coalPriceStart=3.6917419368 +#coalPriceMin=1 +#coalPriceTop=1 +#coalPriceMax=1 + +#gasPriceStart=7.5 +#gasPriceMin=1 +#gasPriceTop=1 +#gasPriceMax=1 + +#biomassPriceStart=4.5 +#biomassPriceMin=1 +#biomassPriceTop=1 +#biomassPriceMax=1 + +#uraniumPriceStart=1.286 +#uraniumPriceMin=1 +#uraniumPriceMax=1 +#uraniumPriceTop=1 + +co2TaxStart=0 +co2TaxIncrement=0 +co2TaxDuration=5 + +minCo2EUPriceStart=0 +minCo2EUPriceIncrement=0 +minCo2PriceDuration=1 + +#co2CapStart=351.75e6 +co2CapStart=72e10 +co2CapIncrement=0 +#co2CapIncrement=0 +co2CapDuration=1 + +minCo2DEPriceStart=0 +minCo2DEPriceIncrement=0 +minCo2DEPriceDuration=1 + +minCo2NLPriceStart=0 +minCo2NLPriceIncrement=0 +minCo2NLPriceDuration=1 + +segment1nl=8160.778 +segment2nl=8390.36 +segment3nl=8961.656 +segment4nl=9448.219 +segment5nl=9828.25 +segment6nl=10333.58 +segment7nl=10887.66 +segment8nl=11438.97 +segment9nl=11957.73 +segment10nl=12498.55 +segment11nl=13155.53 +segment12nl=13819.34 +segment13nl=14395.3 +segment14nl=14826.11 +segment15nl=15221.23 +segment16nl=15797.4 +segment17nl=16622.16 +segment18nl=17535.46 +segment19nl=18179.78 +segment20nl=18390.00 + +segment1de=35311.89 +segment2de=36657.44 +segment3de=40401.68 +segment4de=43606.1 +segment5de=45600.58 +segment6de=47414.54 +segment7de=49337.31 +segment8de=51439.43 +segment9de=53771.93 +segment10de=56143.54 +segment11de=58402.19 +segment12de=60234.9 +segment13de=61923.03 +segment14de=63697.04 +segment15de=65580.2 +segment16de=67797.75 +segment17de=71192.97 +segment18de=75390.2 +segment19de=77408.11 +segment20de=79884 + + +demandGrowthDEStart=1 +demandGrowthDEMin=1 +demandGrowthDETop=1 +demandGrowthDEMax=1 + +demandGrowthNLStart=1 +demandGrowthNLMin=1 +demandGrowthNLTop=1 +demandGrowthNLMax=1 + +#demandGrowthDEStart=1 +#demandGrowthDEMin=0.99 +#demandGrowthDETop=1.02 +#demandGrowthDEMax=1.05 + +#demandGrowthNLStart=1 +#demandGrowthNLMin=0.99 +#demandGrowthNLTop=1.02 +#demandGrowthNLMax=1.05 + + +startCash=3e9 +priceMarkUp=1 + +co2TradingImplemented=false +simulationLength=50 + +interconnectorCapacity=5000 + +investmentFutureTimeHorizon=7 + +numberOfYearsBacklookingForForecasting=5 +simpleCapacityMarketEnabled=false + +capacityMarketPriceCap=58940 +reserveMargin=0.15 +reserveDemandLowerMargin=0.025 +reserveDemandUpperMargin=0.025 diff --git a/emlab-generation/src/main/resources/scenarios/DET-BL-110.xml b/emlab-generation/src/main/resources/scenarios/DET-BL-110.xml new file mode 100644 index 00000000..6c2f866a --- /dev/null +++ b/emlab-generation/src/main/resources/scenarios/DET-BL-110.xml @@ -0,0 +1,838 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0.50 + + + + + + 0.19 + + + + + + 0.13 + + + + + + 0.18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/emlab-generation/src/main/resources/scenarios/DET-BL-TT-81.xml b/emlab-generation/src/main/resources/scenarios/DET-BL-TT-81.xml new file mode 100644 index 00000000..11110ae7 --- /dev/null +++ b/emlab-generation/src/main/resources/scenarios/DET-BL-TT-81.xml @@ -0,0 +1,838 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0.50 + + + + + + 0.19 + + + + + + 0.13 + + + + + + 0.18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/emlab-generation/src/main/resources/scenarios/FipTwoCNodeLimits.xml b/emlab-generation/src/main/resources/scenarios/FipTwoCNodeLimits.xml new file mode 100644 index 00000000..05cc0ec7 --- /dev/null +++ b/emlab-generation/src/main/resources/scenarios/FipTwoCNodeLimits.xml @@ -0,0 +1,1686 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/emlab-generation/src/main/resources/scenarios/JornIntResEx.xml b/emlab-generation/src/main/resources/scenarios/JornIntResEx.xml new file mode 100644 index 00000000..726d169b --- /dev/null +++ b/emlab-generation/src/main/resources/scenarios/JornIntResEx.xml @@ -0,0 +1,1627 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/emlab-generation/src/main/resources/scenarios/K_D_Fip.xml b/emlab-generation/src/main/resources/scenarios/K_D_Fip.xml new file mode 100644 index 00000000..bd63d43e --- /dev/null +++ b/emlab-generation/src/main/resources/scenarios/K_D_Fip.xml @@ -0,0 +1,1140 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0.33 + + + + + + 0.40 + + + + + + 0.16 + + + + + + 0.01 + + + + + + 0.03 + + + + + + 0.07 + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0.1436 + + + + + + 0.1931 + + + + + + 0.1071 + + + + + + 0.0851 + + + + + + 0.0302 + + + + + + 0.072376 + + + + + + 0.1725 + + + + + + 0.1453 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/emlab-generation/src/main/resources/scenarios/K_D_FipInDE.xml b/emlab-generation/src/main/resources/scenarios/K_D_FipInDE.xml new file mode 100644 index 00000000..42b17717 --- /dev/null +++ b/emlab-generation/src/main/resources/scenarios/K_D_FipInDE.xml @@ -0,0 +1,1193 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0.33 + + + + + + 0.40 + + + + + + 0.16 + + + + + + 0.01 + + + + + + 0.03 + + + + + + 0.07 + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0.1436 + + + + + + 0.1931 + + + + + + 0.1071 + + + + + + 0.0851 + + + + + + 0.0302 + + + + + + 0.072376 + + + + + + 0.1725 + + + + + + 0.1453 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/emlab-generation/src/main/resources/scenarios/K_FiP_S_MultiNodes.properties b/emlab-generation/src/main/resources/scenarios/K_FiP_S_MultiNodes.properties new file mode 100644 index 00000000..7631a696 --- /dev/null +++ b/emlab-generation/src/main/resources/scenarios/K_FiP_S_MultiNodes.properties @@ -0,0 +1,271 @@ +#------------------------------------------------------------------------------- +# Copyright 2012 the original author or authors. +# +# Licensed 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. +#------------------------------------------------------------------------------- +####THE NETHERLANDS#### +#coalPriceStart=86.300754753 +#coalPriceStart=50.0 +#coalPriceMin=0.96 +#coalPriceMin=0.97 +#coalPriceTop=1.00 +#coalPriceTop=1.01 +#coalPriceMax=1.04 +#coalPriceMax=1.05 + +coalPriceStart=100.8629923136 +coalPriceMin=1 +coalPriceTop=1 +coalPriceMax=1 + +gasPriceStart=0.3246874961 +#gasPriceStart=0.2286412084 +gasPriceMin=1 +#gasPriceMin=0.9446627902 +gasPriceTop=1 +#gasPriceTop=1.0146627902 +gasPriceMax=1 +#gasPriceMax=1.0846627902 + +#gasPriceStart=0.2286412084 +#gasPriceMin=0.95 +#gasPriceMin=0.96 +#gasPriceTop=1.01 +#gasPriceTop=1.03 +#gasPriceMax=1.07 +#gasPriceMax=1.10 + +biomassPriceStart=112.5 +biomassPriceMin=1 +#biomassPriceMin=0.97 +biomassPriceTop=1 +#biomassPriceTop=1.01 +biomassPriceMax=1 +#biomassPriceMax=1.05 + +#biomassPriceStart=112.5 +#biomassPriceMin=0.95 +#biomassPriceMin=0.97 +#biomassPriceTop=1.01 +#biomassPriceTop=1.01 +#biomassPriceMax=1.05 +#biomassPriceMax=1.05 + +uraniumPriceStart=5000000 +uraniumPriceMin=1 +uraniumPriceMax=1 +#uraniumPriceMax=1.02 +uraniumPriceTop=1 +#uraniumPriceTop=1.01 + +#uraniumPriceStart=5000000 +#uraniumPriceMin=1.00 +#uraniumPriceMax=1.02 +#uraniumPriceMax=1.02 +#uraniumPriceTop=1.01 +#uraniumPriceTop=1.01 + +co2TaxStart=0 +co2TaxIncrement=0 +co2TaxDuration=5 + +minCo2EUPriceStart=0 +minCo2EUPriceIncrement=0 +minCo2PriceDuration=1 + +co2CapStart=72e10 +#co2CapIncrement=-1.104e6 +co2CapIncrement=0 +co2CapDuration=1 + +minCo2NLPriceStart=0 +minCo2NLPriceIncrement=0 +minCo2NLPriceDuration=1 + +minCo2PriceStart=0 +minCo2PriceIncrement=0 +minCo2PriceDuration=1 + +segment1nl=8160.778 +segment2nl=8390.36 +segment3nl=8961.656 +segment4nl=9448.219 +segment5nl=9828.25 +segment6nl=10333.58 +segment7nl=10887.66 +segment8nl=11438.97 +segment9nl=11957.73 +segment10nl=12498.55 +segment11nl=13155.53 +segment12nl=13819.34 +segment13nl=14395.3 +segment14nl=14826.11 +segment15nl=15221.23 +segment16nl=15797.4 +segment17nl=16622.16 +segment18nl=17535.46 +segment19nl=18179.78 +segment20nl=18390.00 + +demandGrowthNLStart=1 +demandGrowthNLMin=0.95 +demandGrowthNLTop=1.022 +demandGrowthNLMax=1.07 + +#demandGrowthNLStart=1 +#demandGrowthNLMin=1 +#demandGrowthNLTop=1 +#demandGrowthNLMax=1 + +startCash=3e9 +priceMarkUp=1 + +co2TradingImplemented=false +simulationLength=50 + +interconnectorCapacity=0 + +investmentFutureTimeHorizon=7 + +numberOfYearsBacklookingForForecasting=5 + + +####GERMANY#### + +#coalPriceStart=86.300754753 +#coalPriceStart=50.0 +#coalPriceMin=0.96 +coalPriceMin=0.97 +#coalPriceTop=1.00 +coalPriceTop=1.01 +coalPriceMax=1.03 +#coalPriceMax=1.05 + +coalPriceStart=100.8629923136 +#coalPriceMin=1 +#coalPriceTop=1 +#coalPriceMax=1 + +gasPriceStart=0.3246874961 +#gasPriceStart=0.2286412084 +#gasPriceMin=1 +gasPriceMin=0.9446627902 +#gasPriceTop=1 +gasPriceTop=1.0146627902 +#gasPriceMax=1 +gasPriceMax=1.0846627902 + +#gasPriceStart=0.2286412084 +#gasPriceMin=0.95 +#gasPriceMin=0.96 +#gasPriceTop=1.01 +#gasPriceTop=1.03 +#gasPriceMax=1.07 +#gasPriceMax=1.10 + +biomassPriceStart=112.5 +#biomassPriceMin=1 +biomassPriceMin=0.97 +#biomassPriceTop=1 +biomassPriceTop=1.01 +#biomassPriceMax=1 +biomassPriceMax=1.05 + +#biomassPriceStart=112.5 +#biomassPriceMin=0.95 +#biomassPriceMin=0.97 +#biomassPriceTop=1.01 +#biomassPriceTop=1.01 +#biomassPriceMax=1.05 +#biomassPriceMax=1.05 + +uraniumPriceStart=5000000 +uraniumPriceMin=1 +#uraniumPriceMax=1 +uraniumPriceMax=1.02 +#uraniumPriceTop=1 +uraniumPriceTop=1.01 + +#uraniumPriceStart=5000000 +#uraniumPriceMin=1.00 +#uraniumPriceMax=1.02 +#uraniumPriceMax=1.02 +#uraniumPriceTop=1.01 +#uraniumPriceTop=1.01 + +co2TaxStart=0 +co2TaxIncrement=0 +co2TaxDuration=5 + +minCo2EUPriceStart=0 +minCo2EUPriceIncrement=0 +minCo2PriceDuration=1 + +co2CapStart=72e10 +#co2CapIncrement=-1.104e6 +co2CapIncrement=0 +co2CapDuration=1 + +minCo2DEPriceStart=0 +minCo2DEPriceIncrement=0 +minCo2DEPriceDuration=1 + +minCo2PriceStart=0 +minCo2PriceIncrement=0 +minCo2PriceDuration=1 + +segment1de=35311.89 +segment2de=36657.44 +segment3de=40401.68 +segment4de=43606.1 +segment5de=45600.58 +segment6de=47414.54 +segment7de=49337.31 +segment8de=51439.43 +segment9de=53771.93 +segment10de=56143.54 +segment11de=58402.19 +segment12de=60234.9 +segment13de=61923.03 +segment14de=63697.04 +segment15de=65580.2 +segment16de=67797.75 +segment17de=71192.97 +segment18de=75390.2 +segment19de=77408.11 +segment20de=79884 + + +demandGrowthDEStart=1 +demandGrowthDEMin=0.99 +demandGrowthDETop=1.02 +demandGrowthDEMax=1.05 + +#demandGrowthDEStart=1 +#demandGrowthDEMin=1 +#demandGrowthDETop=1 +#demandGrowthDEMax=1 + +startCash=8e10 +priceMarkUp=1 + +co2TradingImplemented=true +simulationLength=50 + +interconnectorCapacity=0 + +investmentFutureTimeHorizon=7 + +numberOfYearsBacklookingForForecasting=5 + + diff --git a/emlab-generation/src/main/resources/scenarios/K_FiP_S_MultiNodes.xml b/emlab-generation/src/main/resources/scenarios/K_FiP_S_MultiNodes.xml new file mode 100644 index 00000000..5621f90e --- /dev/null +++ b/emlab-generation/src/main/resources/scenarios/K_FiP_S_MultiNodes.xml @@ -0,0 +1,1445 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0.33 + + + + + + 0.40 + + + + + + 0.16 + + + + + + 0.37 + + + + + + 0.03 + + + + + + 1.00 + + + + + + 1.00 + + + + + + 1.00 + + + + + + 0.00 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/emlab-generation/src/main/resources/scenarios/K_S_Fip.xml b/emlab-generation/src/main/resources/scenarios/K_S_Fip.xml new file mode 100644 index 00000000..baa3c0df --- /dev/null +++ b/emlab-generation/src/main/resources/scenarios/K_S_Fip.xml @@ -0,0 +1,535 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0.33 + + + + + + 0.40 + + + + + + 0.16 + + + + + + 0.01 + + + + + + 0.03 + + + + + + 0.07 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/emlab-generation/src/main/resources/scenarios/K_S_FipOne.xml b/emlab-generation/src/main/resources/scenarios/K_S_FipOne.xml new file mode 100644 index 00000000..36b05b23 --- /dev/null +++ b/emlab-generation/src/main/resources/scenarios/K_S_FipOne.xml @@ -0,0 +1,838 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0.33 + + + + + + 0.40 + + + + + + 0.16 + + + + + + 0.01 + + + + + + 0.03 + + + + + + 0.07 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/emlab-generation/src/main/resources/scenarios/K_S_FipOnePointFive.xml b/emlab-generation/src/main/resources/scenarios/K_S_FipOnePointFive.xml new file mode 100644 index 00000000..6161d2f2 --- /dev/null +++ b/emlab-generation/src/main/resources/scenarios/K_S_FipOnePointFive.xml @@ -0,0 +1,838 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0.33 + + + + + + 0.40 + + + + + + 0.16 + + + + + + 0.01 + + + + + + 0.03 + + + + + + 0.07 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/emlab-generation/src/main/resources/scenarios/K_S_FipTemplate.properties b/emlab-generation/src/main/resources/scenarios/K_S_FipTemplate.properties new file mode 100644 index 00000000..10abfc90 --- /dev/null +++ b/emlab-generation/src/main/resources/scenarios/K_S_FipTemplate.properties @@ -0,0 +1,139 @@ +#------------------------------------------------------------------------------- +# Copyright 2012 the original author or authors. +# +# Licensed 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. +#------------------------------------------------------------------------------- +#coalPriceStart=86.300754753 +#coalPriceStart=50.0 +#coalPriceMin=0.96 +#coalPriceMin=0.97 +#coalPriceTop=1.00 +#coalPriceTop=1.01 +#coalPriceMax=1.04 +#coalPriceMax=1.05 + +coalPriceStart=100.8629923136 +coalPriceMin=1 +coalPriceTop=1 +coalPriceMax=1 + +gasPriceStart=0.3246874961 +#gasPriceStart=0.2286412084 +gasPriceMin=1 +#gasPriceMin=0.9446627902 +gasPriceTop=1 +#gasPriceTop=1.0146627902 +gasPriceMax=1 +#gasPriceMax=1.0846627902 + +#gasPriceStart=0.2286412084 +#gasPriceMin=0.95 +#gasPriceMin=0.96 +#gasPriceTop=1.01 +#gasPriceTop=1.03 +#gasPriceMax=1.07 +#gasPriceMax=1.10 + +biomassPriceStart=112.5 +biomassPriceMin=1 +#biomassPriceMin=0.97 +biomassPriceTop=1 +#biomassPriceTop=1.01 +biomassPriceMax=1 +#biomassPriceMax=1.05 + +#biomassPriceStart=112.5 +#biomassPriceMin=0.95 +#biomassPriceMin=0.97 +#biomassPriceTop=1.01 +#biomassPriceTop=1.01 +#biomassPriceMax=1.05 +#biomassPriceMax=1.05 + +uraniumPriceStart=5000000 +uraniumPriceMin=1 +uraniumPriceMax=1 +#uraniumPriceMax=1.02 +uraniumPriceTop=1 +#uraniumPriceTop=1.01 + +#uraniumPriceStart=5000000 +#uraniumPriceMin=1.00 +#uraniumPriceMax=1.02 +#uraniumPriceMax=1.02 +#uraniumPriceTop=1.01 +#uraniumPriceTop=1.01 + +co2TaxStart=0 +co2TaxIncrement=0 +co2TaxDuration=5 + +minCo2EUPriceStart=0 +minCo2EUPriceIncrement=0 +minCo2PriceDuration=1 + +co2CapStart=72e10 +#co2CapIncrement=-1.104e6 +co2CapIncrement=0 +co2CapDuration=1 + +minCo2NLPriceStart=0 +minCo2NLPriceIncrement=0 +minCo2NLPriceDuration=1 + +minCo2PriceStart=0 +minCo2PriceIncrement=0 +minCo2PriceDuration=1 + +segment1nl=8160.778 +segment2nl=8390.36 +segment3nl=8961.656 +segment4nl=9448.219 +segment5nl=9828.25 +segment6nl=10333.58 +segment7nl=10887.66 +segment8nl=11438.97 +segment9nl=11957.73 +segment10nl=12498.55 +segment11nl=13155.53 +segment12nl=13819.34 +segment13nl=14395.3 +segment14nl=14826.11 +segment15nl=15221.23 +segment16nl=15797.4 +segment17nl=16622.16 +segment18nl=17535.46 +segment19nl=18179.78 +segment20nl=18390.00 + +demandGrowthNLStart=1 +demandGrowthNLMin=0.95 +demandGrowthNLTop=1.022 +demandGrowthNLMax=1.07 + +#demandGrowthNLStart=1 +#demandGrowthNLMin=1 +#demandGrowthNLTop=1 +#demandGrowthNLMax=1 + +startCash=3e9 +priceMarkUp=1 + +co2TradingImplemented=false +simulationLength=50 + +interconnectorCapacity=0 + +investmentFutureTimeHorizon=7 + +numberOfYearsBacklookingForForecasting=5 diff --git a/emlab-generation/src/main/resources/scenarios/K_S_FipTen.xml b/emlab-generation/src/main/resources/scenarios/K_S_FipTen.xml new file mode 100644 index 00000000..9ca9a415 --- /dev/null +++ b/emlab-generation/src/main/resources/scenarios/K_S_FipTen.xml @@ -0,0 +1,838 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0.33 + + + + + + 0.40 + + + + + + 0.16 + + + + + + 0.01 + + + + + + 0.03 + + + + + + 0.07 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/emlab-generation/src/main/resources/scenarios/K_S_FipTwo.xml b/emlab-generation/src/main/resources/scenarios/K_S_FipTwo.xml new file mode 100644 index 00000000..19876dd9 --- /dev/null +++ b/emlab-generation/src/main/resources/scenarios/K_S_FipTwo.xml @@ -0,0 +1,838 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0.33 + + + + + + 0.40 + + + + + + 0.16 + + + + + + 0.01 + + + + + + 0.03 + + + + + + 0.07 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/emlab-generation/src/main/resources/scenarios/K_S_Fip_withoutbiomass.xml b/emlab-generation/src/main/resources/scenarios/K_S_Fip_withoutbiomass.xml new file mode 100644 index 00000000..9ccc41a7 --- /dev/null +++ b/emlab-generation/src/main/resources/scenarios/K_S_Fip_withoutbiomass.xml @@ -0,0 +1,838 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0.33 + + + + + + 0.40 + + + + + + 0.16 + + + + + + 0.01 + + + + + + 0.03 + + + + + + 0.07 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/emlab-generation/src/main/resources/scenarios/scenarioB-OneCountry.xml b/emlab-generation/src/main/resources/scenarios/K_S_Np.xml similarity index 98% rename from emlab-generation/src/main/resources/scenarios/scenarioB-OneCountry.xml rename to emlab-generation/src/main/resources/scenarios/K_S_Np.xml index aabb1e89..f4dc15df 100644 --- a/emlab-generation/src/main/resources/scenarios/scenarioB-OneCountry.xml +++ b/emlab-generation/src/main/resources/scenarios/K_S_Np.xml @@ -24,16 +24,16 @@ + p:capDeviationCriterion="0.03" p:deletionOldPPDPBidsAndCashFlowsEnabled="true" p:deletionAge="4"> + + + + + @@ -117,7 +124,7 @@ + p:referencePrice="40" p:valueOfLostLoad="2000" p:lookback="5" p:backlookingForDemandForecastinginDismantling="5"> @@ -804,6 +811,8 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0.50 + + + + + + 0.19 + + + + + + 0.13 + + + + + + 0.18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/emlab-generation/src/main/resources/scenarios/RES-SR-66.xml b/emlab-generation/src/main/resources/scenarios/RES-SR-66.xml new file mode 100644 index 00000000..ed60f2e8 --- /dev/null +++ b/emlab-generation/src/main/resources/scenarios/RES-SR-66.xml @@ -0,0 +1,873 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0.50 + + + + + + 0.19 + + + + + + 0.13 + + + + + + 0.18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/emlab-generation/src/main/resources/scenarios/RES_S_NP.xml b/emlab-generation/src/main/resources/scenarios/RES_S_NP.xml new file mode 100644 index 00000000..b8ed9e8a --- /dev/null +++ b/emlab-generation/src/main/resources/scenarios/RES_S_NP.xml @@ -0,0 +1,841 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0.422 + + + + + + 0.1271 + + + + + + 0.10514 + + + + + + 0.04846 + + + + + + 0.0731 + + + + + + 0.1551 + + + + + + 0.0591 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/emlab-generation/src/main/resources/scenarios/SENS-RES-SR-1-8.xml b/emlab-generation/src/main/resources/scenarios/SENS-RES-SR-1-8.xml new file mode 100644 index 00000000..ecb2302b --- /dev/null +++ b/emlab-generation/src/main/resources/scenarios/SENS-RES-SR-1-8.xml @@ -0,0 +1,873 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0.50 + + + + + + 0.19 + + + + + + 0.13 + + + + + + 0.18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/emlab-generation/src/main/resources/scenarios/SENS-RES-SR-2-11.xml b/emlab-generation/src/main/resources/scenarios/SENS-RES-SR-2-11.xml new file mode 100644 index 00000000..c1315c7a --- /dev/null +++ b/emlab-generation/src/main/resources/scenarios/SENS-RES-SR-2-11.xml @@ -0,0 +1,873 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0.50 + + + + + + 0.19 + + + + + + 0.13 + + + + + + 0.18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/emlab-generation/src/main/resources/scenarios/SENS-RES-SR-3-26.xml b/emlab-generation/src/main/resources/scenarios/SENS-RES-SR-3-26.xml new file mode 100644 index 00000000..caf514a6 --- /dev/null +++ b/emlab-generation/src/main/resources/scenarios/SENS-RES-SR-3-26.xml @@ -0,0 +1,873 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0.50 + + + + + + 0.19 + + + + + + 0.13 + + + + + + 0.18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/emlab-generation/src/main/resources/scenarios/SENS-RES-SR-4-19.xml b/emlab-generation/src/main/resources/scenarios/SENS-RES-SR-4-19.xml new file mode 100644 index 00000000..9f2f6f02 --- /dev/null +++ b/emlab-generation/src/main/resources/scenarios/SENS-RES-SR-4-19.xml @@ -0,0 +1,873 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0.50 + + + + + + 0.19 + + + + + + 0.13 + + + + + + 0.18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/emlab-generation/src/main/resources/scenarios/SENS-RES-SR-5-44.xml b/emlab-generation/src/main/resources/scenarios/SENS-RES-SR-5-44.xml new file mode 100644 index 00000000..c7d10da9 --- /dev/null +++ b/emlab-generation/src/main/resources/scenarios/SENS-RES-SR-5-44.xml @@ -0,0 +1,873 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0.50 + + + + + + 0.19 + + + + + + 0.13 + + + + + + 0.18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/emlab-generation/src/main/resources/scenarios/SENS-RES-SR-6-12.xml b/emlab-generation/src/main/resources/scenarios/SENS-RES-SR-6-12.xml new file mode 100644 index 00000000..6a495945 --- /dev/null +++ b/emlab-generation/src/main/resources/scenarios/SENS-RES-SR-6-12.xml @@ -0,0 +1,873 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0.50 + + + + + + 0.19 + + + + + + 0.13 + + + + + + 0.18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/emlab-generation/src/main/resources/scenarios/SENS-RES-SR-7-45.xml b/emlab-generation/src/main/resources/scenarios/SENS-RES-SR-7-45.xml new file mode 100644 index 00000000..b526c797 --- /dev/null +++ b/emlab-generation/src/main/resources/scenarios/SENS-RES-SR-7-45.xml @@ -0,0 +1,873 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0.50 + + + + + + 0.19 + + + + + + 0.13 + + + + + + 0.18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/emlab-generation/src/main/resources/scenarios/SENS-RES-SR-8-100.xml b/emlab-generation/src/main/resources/scenarios/SENS-RES-SR-8-100.xml new file mode 100644 index 00000000..a05b6fd1 --- /dev/null +++ b/emlab-generation/src/main/resources/scenarios/SENS-RES-SR-8-100.xml @@ -0,0 +1,873 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0.50 + + + + + + 0.19 + + + + + + 0.13 + + + + + + 0.18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/emlab-generation/src/main/resources/scenarios/StaticDemand-1.xml b/emlab-generation/src/main/resources/scenarios/StaticDemand-1.xml new file mode 100644 index 00000000..6569a1bc --- /dev/null +++ b/emlab-generation/src/main/resources/scenarios/StaticDemand-1.xml @@ -0,0 +1,840 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0.50 + + + + + + 0.19 + + + + + + 0.13 + + + + + + 0.18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/emlab-generation/src/main/resources/scenarios/TM-BL-108.xml b/emlab-generation/src/main/resources/scenarios/TM-BL-108.xml new file mode 100644 index 00000000..56434f7b --- /dev/null +++ b/emlab-generation/src/main/resources/scenarios/TM-BL-108.xml @@ -0,0 +1,831 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0.50 + + + + + + 0.19 + + + + + + 0.13 + + + + + + 0.18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/emlab-generation/src/main/resources/scenarios/TM-BL-111.xml b/emlab-generation/src/main/resources/scenarios/TM-BL-111.xml new file mode 100644 index 00000000..77cabfa0 --- /dev/null +++ b/emlab-generation/src/main/resources/scenarios/TM-BL-111.xml @@ -0,0 +1,831 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0.50 + + + + + + 0.19 + + + + + + 0.13 + + + + + + 0.18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/emlab-generation/src/main/resources/scenarios/TM-BL-119.xml b/emlab-generation/src/main/resources/scenarios/TM-BL-119.xml new file mode 100644 index 00000000..8a095cb1 --- /dev/null +++ b/emlab-generation/src/main/resources/scenarios/TM-BL-119.xml @@ -0,0 +1,859 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0.50 + + + + + + 0.19 + + + + + + 0.13 + + + + + + 0.18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/emlab-generation/src/main/resources/scenarios/TM-SR-82.xml b/emlab-generation/src/main/resources/scenarios/TM-SR-82.xml new file mode 100644 index 00000000..593296d8 --- /dev/null +++ b/emlab-generation/src/main/resources/scenarios/TM-SR-82.xml @@ -0,0 +1,831 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0.50 + + + + + + 0.19 + + + + + + 0.13 + + + + + + 0.18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/emlab-generation/src/main/resources/scenarios/TwoCountryBC-1.properties b/emlab-generation/src/main/resources/scenarios/TwoCountryBC-1.properties new file mode 100644 index 00000000..ff9b3847 --- /dev/null +++ b/emlab-generation/src/main/resources/scenarios/TwoCountryBC-1.properties @@ -0,0 +1,138 @@ +#------------------------------------------------------------------------------- +# Copyright 2012 the original author or authors. +# +# Licensed 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. +#------------------------------------------------------------------------------- +coalPriceStart=100.8629923136 +#coalPriceStart=86.300754753 +#coalPriceStart=50.0 +#coalPriceMin=0.96 +coalPriceMin=0.9707458246 +#coalPriceTop=1.00 +coalPriceTop=1.0107458246 +#coalPriceMax=1.04 +coalPriceMax=1.0507458246 + +gasPriceStart=0.3246874961 +#gasPriceStart=0.2286412084 +#gasPriceMin=0.95 +gasPriceMin=0.9446627902 +#gasPriceTop=1.01 +gasPriceTop=1.0146627902 +#gasPriceMax=1.07 +gasPriceMax=1.0846627902 + +biomassPriceStart=112.5 +#biomassPriceMin=0.95 +biomassPriceMin=0.97 +#biomassPriceTop=1.01 +biomassPriceTop=1.01 +#biomassPriceMax=1.05 +biomassPriceMax=1.05 + +uraniumPriceStart=5000000 +uraniumPriceMin=1.00 +#uraniumPriceMax=1.02 +uraniumPriceMax=1.02 +#uraniumPriceTop=1.01 +uraniumPriceTop=1.01 + +co2TaxStart=0 +co2TaxIncrement=0 +co2TaxDuration=5 + +co2CapStart=0 +co2CapIncrement=0 +#co2CapIncrement=0 +co2CapDuration=1 + +minCo2PriceStart=0 +minCo2PriceIncrement=0 +minCo2PriceDuration=1 + +minCo2DEPriceStart=0 +minCo2DEPriceIncrement=0 +minCo2DEPriceDuration=1 + +minCo2NLPriceStart=0 +minCo2NLPriceIncrement=0 +minCo2NLPriceDuration=1 + +segment1nl=8160.778 +segment2nl=8390.36 +segment3nl=8961.656 +segment4nl=9448.219 +segment5nl=9828.25 +segment6nl=10333.58 +segment7nl=10887.66 +segment8nl=11438.97 +segment9nl=11957.73 +segment10nl=12498.55 +segment11nl=13155.53 +segment12nl=13819.34 +segment13nl=14395.3 +segment14nl=14826.11 +segment15nl=15221.23 +segment16nl=15797.4 +segment17nl=16622.16 +segment18nl=17535.46 +segment19nl=18179.78 +segment20nl=18390.00 + +segment1de=35311.89 +segment2de=36657.44 +segment3de=40401.68 +segment4de=43606.1 +segment5de=45600.58 +segment6de=47414.54 +segment7de=49337.31 +segment8de=51439.43 +segment9de=53771.93 +segment10de=56143.54 +segment11de=58402.19 +segment12de=60234.9 +segment13de=61923.03 +segment14de=63697.04 +segment15de=65580.2 +segment16de=67797.75 +segment17de=71192.97 +segment18de=75390.2 +segment19de=77408.11 +segment20de=79884 + +demandGrowthDEStart=1 +demandGrowthDEMin=0.942294159 +demandGrowthDETop=1.0082073112 +demandGrowthDEMax=1.0548917102 +#demandGrowthDEMax=1.0548917102 + +demandGrowthNLStart=1 +demandGrowthNLMin=0.9516263553 +demandGrowthNLTop=1.0194189818 +demandGrowthNLMax=1.0435267857 + + +startCash=3e9 +priceMarkUp=1.1 + +co2TradingImplemented=false +simulationLength=50 + +interconnectorCapacity=4441 + +investmentFutureTimeHorizon=7 + +numberOfYearsBacklookingForForecasting=5 + + + diff --git a/emlab-generation/src/main/resources/scenarios/TwoCountryBC-1.xml b/emlab-generation/src/main/resources/scenarios/TwoCountryBC-1.xml new file mode 100644 index 00000000..fd852151 --- /dev/null +++ b/emlab-generation/src/main/resources/scenarios/TwoCountryBC-1.xml @@ -0,0 +1,1487 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0.33 + + + + + + 0.40 + + + + + + 0.16 + + + + + + 0.01 + + + + + + 0.03 + + + + + + 0.07 + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0.1436 + + + + + + 0.1931 + + + + + + 0.1071 + + + + + + 0.0851 + + + + + + 0.0302 + + + + + + 0.072376 + + + + + + 0.1725 + + + + + + 0.1453 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/emlab-generation/src/main/resources/scenarios/TwoCountryBCres-1.properties b/emlab-generation/src/main/resources/scenarios/TwoCountryBCres-1.properties new file mode 100644 index 00000000..82a60fbf --- /dev/null +++ b/emlab-generation/src/main/resources/scenarios/TwoCountryBCres-1.properties @@ -0,0 +1,142 @@ +#------------------------------------------------------------------------------- +# Copyright 2012 the original author or authors. +# +# Licensed 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. +#------------------------------------------------------------------------------- +coalPriceStart=100.8629923136 +#coalPriceStart=86.300754753 +#coalPriceStart=50.0 +#coalPriceMin=0.96 +coalPriceMin=0.9707458246 +#coalPriceTop=1.00 +coalPriceTop=1.0107458246 +#coalPriceMax=1.04 +coalPriceMax=1.0507458246 + +gasPriceStart=0.3246874961 +#gasPriceStart=0.2286412084 +#gasPriceMin=0.95 +gasPriceMin=0.9446627902 +#gasPriceTop=1.01 +gasPriceTop=1.0146627902 +#gasPriceMax=1.07 +gasPriceMax=1.0846627902 + +biomassPriceStart=112.5 +#biomassPriceMin=0.95 +biomassPriceMin=0.97 +#biomassPriceTop=1.01 +biomassPriceTop=1.01 +#biomassPriceMax=1.05 +biomassPriceMax=1.05 + +uraniumPriceStart=5000000 +uraniumPriceMin=1.00 +#uraniumPriceMax=1.02 +uraniumPriceMax=1.02 +#uraniumPriceTop=1.01 +uraniumPriceTop=1.01 + +co2TaxStart=0 +co2TaxIncrement=0 +co2TaxDuration=5 + +co2CapStart=0 +co2CapIncrement=0 +#co2CapIncrement=0 +co2CapDuration=1 + +minCo2EUPriceStart=0 +minCo2EUPriceIncrement=0 +minCo2PriceDuration=1 + +minCo2DEPriceStart=0 +minCo2DEPriceIncrement=0 +minCo2DEPriceDuration=1 + +minCo2NLPriceStart=0 +minCo2NLPriceIncrement=0 +minCo2NLPriceDuration=1 + +segment1nl=8160.778 +segment2nl=8390.36 +segment3nl=8961.656 +segment4nl=9448.219 +segment5nl=9828.25 +segment6nl=10333.58 +segment7nl=10887.66 +segment8nl=11438.97 +segment9nl=11957.73 +segment10nl=12498.55 +segment11nl=13155.53 +segment12nl=13819.34 +segment13nl=14395.3 +segment14nl=14826.11 +segment15nl=15221.23 +segment16nl=15797.4 +segment17nl=16622.16 +segment18nl=17535.46 +segment19nl=18179.78 +segment20nl=18390.00 + +segment1de=35311.89 +segment2de=36657.44 +segment3de=40401.68 +segment4de=43606.1 +segment5de=45600.58 +segment6de=47414.54 +segment7de=49337.31 +segment8de=51439.43 +segment9de=53771.93 +segment10de=56143.54 +segment11de=58402.19 +segment12de=60234.9 +segment13de=61923.03 +segment14de=63697.04 +segment15de=65580.2 +segment16de=67797.75 +segment17de=71192.97 +segment18de=75390.2 +segment19de=77408.11 +segment20de=79884 + +demandGrowthDEStart=1 +demandGrowthDEMin=0.942294159 +demandGrowthDETop=1.0082073112 +demandGrowthDEMax=1.0548917102 +#demandGrowthDEMax=1.0548917102 + +demandGrowthNLStart=1 +demandGrowthNLMin=0.9516263553 +demandGrowthNLTop=1.0194189818 +demandGrowthNLMax=1.0435267857 + + +startCash=3e9 +priceMarkUp=1.1 + +co2TradingImplemented=false +simulationLength=50 + +interconnectorCapacity=4441 + +investmentFutureTimeHorizon=7 + +numberOfYearsBacklookingForForecasting=5 + +simpleCapacityMarketEnabled=false +capacityMarketPriceCap=58940 +reserveMargin=0.156 +reserveDemandLowerMargin=0.025 +reserveDemandUpperMargin=0.025 + diff --git a/emlab-generation/src/main/resources/scenarios/TwoCountryBCres-1.xml b/emlab-generation/src/main/resources/scenarios/TwoCountryBCres-1.xml new file mode 100644 index 00000000..0f0788bf --- /dev/null +++ b/emlab-generation/src/main/resources/scenarios/TwoCountryBCres-1.xml @@ -0,0 +1,1576 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0.33 + + + + + + 0.40 + + + + + + 0.16 + + + + + + 0.01 + + + + + + 0.03 + + + + + + 0.07 + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0.1436 + + + + + + 0.1931 + + + + + + 0.1071 + + + + + + 0.0851 + + + + + + 0.0302 + + + + + + 0.072376 + + + + + + 0.1725 + + + + + + 0.1453 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/emlab-generation/src/main/resources/scenarios/TwoCountryBCres-2.properties b/emlab-generation/src/main/resources/scenarios/TwoCountryBCres-2.properties new file mode 100644 index 00000000..23f12db0 --- /dev/null +++ b/emlab-generation/src/main/resources/scenarios/TwoCountryBCres-2.properties @@ -0,0 +1,142 @@ +#------------------------------------------------------------------------------- +# Copyright 2012 the original author or authors. +# +# Licensed 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. +#------------------------------------------------------------------------------- +coalPriceStart=100.8629923136 +#coalPriceStart=86.300754753 +#coalPriceStart=50.0 +#coalPriceMin=0.96 +coalPriceMin=0.9707458246 +#coalPriceTop=1.00 +coalPriceTop=1.0107458246 +#coalPriceMax=1.04 +coalPriceMax=1.0507458246 + +gasPriceStart=0.3246874961 +#gasPriceStart=0.2286412084 +#gasPriceMin=0.95 +gasPriceMin=0.9446627902 +#gasPriceTop=1.01 +gasPriceTop=1.0146627902 +#gasPriceMax=1.07 +gasPriceMax=1.0846627902 + +biomassPriceStart=112.5 +#biomassPriceMin=0.95 +biomassPriceMin=0.97 +#biomassPriceTop=1.01 +biomassPriceTop=1.01 +#biomassPriceMax=1.05 +biomassPriceMax=1.05 + +uraniumPriceStart=5000000 +uraniumPriceMin=1.00 +#uraniumPriceMax=1.02 +uraniumPriceMax=1.02 +#uraniumPriceTop=1.01 +uraniumPriceTop=1.01 + +co2TaxStart=0 +co2TaxIncrement=0 +co2TaxDuration=5 + +co2CapStart=470.635e6 +co2CapIncrement=-8.189049e6 +#co2CapIncrement=0 +co2CapDuration=1 + +minCo2EUPriceStart=0 +minCo2EUPriceIncrement=0 +minCo2PriceDuration=1 + +minCo2DEPriceStart=0 +minCo2DEPriceIncrement=0 +minCo2DEPriceDuration=1 + +minCo2NLPriceStart=0 +minCo2NLPriceIncrement=0 +minCo2NLPriceDuration=1 + +segment1nl=8160.778 +segment2nl=8390.36 +segment3nl=8961.656 +segment4nl=9448.219 +segment5nl=9828.25 +segment6nl=10333.58 +segment7nl=10887.66 +segment8nl=11438.97 +segment9nl=11957.73 +segment10nl=12498.55 +segment11nl=13155.53 +segment12nl=13819.34 +segment13nl=14395.3 +segment14nl=14826.11 +segment15nl=15221.23 +segment16nl=15797.4 +segment17nl=16622.16 +segment18nl=17535.46 +segment19nl=18179.78 +segment20nl=18390.00 + +segment1de=35311.89 +segment2de=36657.44 +segment3de=40401.68 +segment4de=43606.1 +segment5de=45600.58 +segment6de=47414.54 +segment7de=49337.31 +segment8de=51439.43 +segment9de=53771.93 +segment10de=56143.54 +segment11de=58402.19 +segment12de=60234.9 +segment13de=61923.03 +segment14de=63697.04 +segment15de=65580.2 +segment16de=67797.75 +segment17de=71192.97 +segment18de=75390.2 +segment19de=77408.11 +segment20de=79884 + +demandGrowthDEStart=1 +demandGrowthDEMin=0.942294159 +demandGrowthDETop=1.0082073112 +demandGrowthDEMax=1.0548917102 +#demandGrowthDEMax=1.0548917102 + +demandGrowthNLStart=1 +demandGrowthNLMin=0.9516263553 +demandGrowthNLTop=1.0194189818 +demandGrowthNLMax=1.0435267857 + + +startCash=3e9 +priceMarkUp=1.1 + +co2TradingImplemented=true +simulationLength=50 + +interconnectorCapacity=4441 + +investmentFutureTimeHorizon=7 + +numberOfYearsBacklookingForForecasting=5 + +simpleCapacityMarketEnabled=false +capacityMarketPriceCap=58940 +reserveMargin=0.156 +reserveDemandLowerMargin=0.025 +reserveDemandUpperMargin=0.025 + diff --git a/emlab-generation/src/main/resources/scenarios/TwoCountryBCres-2.xml b/emlab-generation/src/main/resources/scenarios/TwoCountryBCres-2.xml new file mode 100644 index 00000000..6847ba16 --- /dev/null +++ b/emlab-generation/src/main/resources/scenarios/TwoCountryBCres-2.xml @@ -0,0 +1,1576 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0.33 + + + + + + 0.40 + + + + + + 0.16 + + + + + + 0.01 + + + + + + 0.03 + + + + + + 0.07 + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0.1436 + + + + + + 0.1931 + + + + + + 0.1071 + + + + + + 0.0851 + + + + + + 0.0302 + + + + + + 0.072376 + + + + + + 0.1725 + + + + + + 0.1453 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/emlab-generation/src/main/resources/scenarios/TwoCountryCM-1.properties b/emlab-generation/src/main/resources/scenarios/TwoCountryCM-1.properties new file mode 100644 index 00000000..43a8d103 --- /dev/null +++ b/emlab-generation/src/main/resources/scenarios/TwoCountryCM-1.properties @@ -0,0 +1,142 @@ +#------------------------------------------------------------------------------- +# Copyright 2012 the original author or authors. +# +# Licensed 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. +#------------------------------------------------------------------------------- +coalPriceStart=100.8629923136 +#coalPriceStart=86.300754753 +#coalPriceStart=50.0 +#coalPriceMin=0.96 +coalPriceMin=0.9707458246 +#coalPriceTop=1.00 +coalPriceTop=1.0107458246 +#coalPriceMax=1.04 +coalPriceMax=1.0507458246 + +gasPriceStart=0.3246874961 +#gasPriceStart=0.2286412084 +#gasPriceMin=0.95 +gasPriceMin=0.9446627902 +#gasPriceTop=1.01 +gasPriceTop=1.0146627902 +#gasPriceMax=1.07 +gasPriceMax=1.0846627902 + +biomassPriceStart=112.5 +#biomassPriceMin=0.95 +biomassPriceMin=0.97 +#biomassPriceTop=1.01 +biomassPriceTop=1.01 +#biomassPriceMax=1.05 +biomassPriceMax=1.05 + +uraniumPriceStart=5000000 +uraniumPriceMin=1.00 +#uraniumPriceMax=1.02 +uraniumPriceMax=1.02 +#uraniumPriceTop=1.01 +uraniumPriceTop=1.01 + +co2TaxStart=0 +co2TaxIncrement=0 +co2TaxDuration=5 + +co2CapStart=0 +co2CapIncrement=0 +#co2CapIncrement=0 +co2CapDuration=1 + +minCo2EUPriceStart=0 +minCo2EUPriceIncrement=0 +minCo2PriceDuration=1 + +minCo2DEPriceStart=0 +minCo2DEPriceIncrement=0 +minCo2DEPriceDuration=1 + +minCo2NLPriceStart=0 +minCo2NLPriceIncrement=0 +minCo2NLPriceDuration=1 + +segment1nl=8160.778 +segment2nl=8390.36 +segment3nl=8961.656 +segment4nl=9448.219 +segment5nl=9828.25 +segment6nl=10333.58 +segment7nl=10887.66 +segment8nl=11438.97 +segment9nl=11957.73 +segment10nl=12498.55 +segment11nl=13155.53 +segment12nl=13819.34 +segment13nl=14395.3 +segment14nl=14826.11 +segment15nl=15221.23 +segment16nl=15797.4 +segment17nl=16622.16 +segment18nl=17535.46 +segment19nl=18179.78 +segment20nl=18390.00 + +segment1de=35311.89 +segment2de=36657.44 +segment3de=40401.68 +segment4de=43606.1 +segment5de=45600.58 +segment6de=47414.54 +segment7de=49337.31 +segment8de=51439.43 +segment9de=53771.93 +segment10de=56143.54 +segment11de=58402.19 +segment12de=60234.9 +segment13de=61923.03 +segment14de=63697.04 +segment15de=65580.2 +segment16de=67797.75 +segment17de=71192.97 +segment18de=75390.2 +segment19de=77408.11 +segment20de=79884 + +demandGrowthDEStart=1 +demandGrowthDEMin=0.942294159 +demandGrowthDETop=1.0082073112 +demandGrowthDEMax=1.0548917102 +#demandGrowthDEMax=1.0548917102 + +demandGrowthNLStart=1 +demandGrowthNLMin=0.9516263553 +demandGrowthNLTop=1.0194189818 +demandGrowthNLMax=1.0435267857 + + +startCash=3e9 +priceMarkUp=1.1 + +co2TradingImplemented=false +simulationLength=50 + +interconnectorCapacity=4441 + +investmentFutureTimeHorizon=7 + +numberOfYearsBacklookingForForecasting=5 + +simpleCapacityMarketEnabled=true +capacityMarketPriceCap=58940 +reserveMargin=0.156 +reserveDemandLowerMargin=0.025 +reserveDemandUpperMargin=0.025 + diff --git a/emlab-generation/src/main/resources/scenarios/TwoCountryCM-1.xml b/emlab-generation/src/main/resources/scenarios/TwoCountryCM-1.xml new file mode 100644 index 00000000..6249d10b --- /dev/null +++ b/emlab-generation/src/main/resources/scenarios/TwoCountryCM-1.xml @@ -0,0 +1,1487 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0.33 + + + + + + 0.40 + + + + + + 0.16 + + + + + + 0.01 + + + + + + 0.03 + + + + + + 0.07 + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0.1436 + + + + + + 0.1931 + + + + + + 0.1071 + + + + + + 0.0851 + + + + + + 0.0302 + + + + + + 0.072376 + + + + + + 0.1725 + + + + + + 0.1453 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/emlab-generation/src/main/resources/scenarios/TwoCountryCMres-1.properties b/emlab-generation/src/main/resources/scenarios/TwoCountryCMres-1.properties new file mode 100644 index 00000000..43a8d103 --- /dev/null +++ b/emlab-generation/src/main/resources/scenarios/TwoCountryCMres-1.properties @@ -0,0 +1,142 @@ +#------------------------------------------------------------------------------- +# Copyright 2012 the original author or authors. +# +# Licensed 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. +#------------------------------------------------------------------------------- +coalPriceStart=100.8629923136 +#coalPriceStart=86.300754753 +#coalPriceStart=50.0 +#coalPriceMin=0.96 +coalPriceMin=0.9707458246 +#coalPriceTop=1.00 +coalPriceTop=1.0107458246 +#coalPriceMax=1.04 +coalPriceMax=1.0507458246 + +gasPriceStart=0.3246874961 +#gasPriceStart=0.2286412084 +#gasPriceMin=0.95 +gasPriceMin=0.9446627902 +#gasPriceTop=1.01 +gasPriceTop=1.0146627902 +#gasPriceMax=1.07 +gasPriceMax=1.0846627902 + +biomassPriceStart=112.5 +#biomassPriceMin=0.95 +biomassPriceMin=0.97 +#biomassPriceTop=1.01 +biomassPriceTop=1.01 +#biomassPriceMax=1.05 +biomassPriceMax=1.05 + +uraniumPriceStart=5000000 +uraniumPriceMin=1.00 +#uraniumPriceMax=1.02 +uraniumPriceMax=1.02 +#uraniumPriceTop=1.01 +uraniumPriceTop=1.01 + +co2TaxStart=0 +co2TaxIncrement=0 +co2TaxDuration=5 + +co2CapStart=0 +co2CapIncrement=0 +#co2CapIncrement=0 +co2CapDuration=1 + +minCo2EUPriceStart=0 +minCo2EUPriceIncrement=0 +minCo2PriceDuration=1 + +minCo2DEPriceStart=0 +minCo2DEPriceIncrement=0 +minCo2DEPriceDuration=1 + +minCo2NLPriceStart=0 +minCo2NLPriceIncrement=0 +minCo2NLPriceDuration=1 + +segment1nl=8160.778 +segment2nl=8390.36 +segment3nl=8961.656 +segment4nl=9448.219 +segment5nl=9828.25 +segment6nl=10333.58 +segment7nl=10887.66 +segment8nl=11438.97 +segment9nl=11957.73 +segment10nl=12498.55 +segment11nl=13155.53 +segment12nl=13819.34 +segment13nl=14395.3 +segment14nl=14826.11 +segment15nl=15221.23 +segment16nl=15797.4 +segment17nl=16622.16 +segment18nl=17535.46 +segment19nl=18179.78 +segment20nl=18390.00 + +segment1de=35311.89 +segment2de=36657.44 +segment3de=40401.68 +segment4de=43606.1 +segment5de=45600.58 +segment6de=47414.54 +segment7de=49337.31 +segment8de=51439.43 +segment9de=53771.93 +segment10de=56143.54 +segment11de=58402.19 +segment12de=60234.9 +segment13de=61923.03 +segment14de=63697.04 +segment15de=65580.2 +segment16de=67797.75 +segment17de=71192.97 +segment18de=75390.2 +segment19de=77408.11 +segment20de=79884 + +demandGrowthDEStart=1 +demandGrowthDEMin=0.942294159 +demandGrowthDETop=1.0082073112 +demandGrowthDEMax=1.0548917102 +#demandGrowthDEMax=1.0548917102 + +demandGrowthNLStart=1 +demandGrowthNLMin=0.9516263553 +demandGrowthNLTop=1.0194189818 +demandGrowthNLMax=1.0435267857 + + +startCash=3e9 +priceMarkUp=1.1 + +co2TradingImplemented=false +simulationLength=50 + +interconnectorCapacity=4441 + +investmentFutureTimeHorizon=7 + +numberOfYearsBacklookingForForecasting=5 + +simpleCapacityMarketEnabled=true +capacityMarketPriceCap=58940 +reserveMargin=0.156 +reserveDemandLowerMargin=0.025 +reserveDemandUpperMargin=0.025 + diff --git a/emlab-generation/src/main/resources/scenarios/TwoCountryCMres-1.xml b/emlab-generation/src/main/resources/scenarios/TwoCountryCMres-1.xml new file mode 100644 index 00000000..c6db6042 --- /dev/null +++ b/emlab-generation/src/main/resources/scenarios/TwoCountryCMres-1.xml @@ -0,0 +1,1576 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0.33 + + + + + + 0.40 + + + + + + 0.16 + + + + + + 0.01 + + + + + + 0.03 + + + + + + 0.07 + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0.1436 + + + + + + 0.1931 + + + + + + 0.1071 + + + + + + 0.0851 + + + + + + 0.0302 + + + + + + 0.072376 + + + + + + 0.1725 + + + + + + 0.1453 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/emlab-generation/src/main/resources/scenarios/TwoCountryCMres-2.properties b/emlab-generation/src/main/resources/scenarios/TwoCountryCMres-2.properties new file mode 100644 index 00000000..3cea680e --- /dev/null +++ b/emlab-generation/src/main/resources/scenarios/TwoCountryCMres-2.properties @@ -0,0 +1,141 @@ +#------------------------------------------------------------------------------- +# Copyright 2012 the original author or authors. +# +# Licensed 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. +#------------------------------------------------------------------------------- +coalPriceStart=100.8629923136 +#coalPriceStart=86.300754753 +#coalPriceStart=50.0 +#coalPriceMin=0.96 +coalPriceMin=0.9707458246 +#coalPriceTop=1.00 +coalPriceTop=1.0107458246 +#coalPriceMax=1.04 +coalPriceMax=1.0507458246 + +gasPriceStart=0.3246874961 +#gasPriceStart=0.2286412084 +#gasPriceMin=0.95 +gasPriceMin=0.9446627902 +#gasPriceTop=1.01 +gasPriceTop=1.0146627902 +#gasPriceMax=1.07 +gasPriceMax=1.0846627902 + +biomassPriceStart=112.5 +#biomassPriceMin=0.95 +biomassPriceMin=0.97 +#biomassPriceTop=1.01 +biomassPriceTop=1.01 +#biomassPriceMax=1.05 +biomassPriceMax=1.05 + +uraniumPriceStart=5000000 +uraniumPriceMin=1.00 +#uraniumPriceMax=1.02 +uraniumPriceMax=1.02 +#uraniumPriceTop=1.01 +uraniumPriceTop=1.01 + +co2TaxStart=0 +co2TaxIncrement=0 +co2TaxDuration=5 + +co2CapStart=470.635e6 +co2CapIncrement=-8.189049e6 +#co2CapIncrement=0 +co2CapDuration=1 + +minCo2EUPriceStart=0 +minCo2EUPriceIncrement=0 +minCo2PriceDuration=1 + +minCo2DEPriceStart=0 +minCo2DEPriceIncrement=0 +minCo2DEPriceDuration=1 + +minCo2NLPriceStart=0 +minCo2NLPriceIncrement=0 +minCo2NLPriceDuration=1 + +segment1nl=8160.778 +segment2nl=8390.36 +segment3nl=8961.656 +segment4nl=9448.219 +segment5nl=9828.25 +segment6nl=10333.58 +segment7nl=10887.66 +segment8nl=11438.97 +segment9nl=11957.73 +segment10nl=12498.55 +segment11nl=13155.53 +segment12nl=13819.34 +segment13nl=14395.3 +segment14nl=14826.11 +segment15nl=15221.23 +segment16nl=15797.4 +segment17nl=16622.16 +segment18nl=17535.46 +segment19nl=18179.78 +segment20nl=18390.00 + +segment1de=35311.89 +segment2de=36657.44 +segment3de=40401.68 +segment4de=43606.1 +segment5de=45600.58 +segment6de=47414.54 +segment7de=49337.31 +segment8de=51439.43 +segment9de=53771.93 +segment10de=56143.54 +segment11de=58402.19 +segment12de=60234.9 +segment13de=61923.03 +segment14de=63697.04 +segment15de=65580.2 +segment16de=67797.75 +segment17de=71192.97 +segment18de=75390.2 +segment19de=77408.11 +segment20de=79884 + +demandGrowthDEStart=1 +demandGrowthDEMin=0.942294159 +demandGrowthDETop=1.0082073112 +demandGrowthDEMax=1.0548917102 +#demandGrowthDEMax=1.0548917102 + +demandGrowthNLStart=1 +demandGrowthNLMin=0.9516263553 +demandGrowthNLTop=1.0194189818 +demandGrowthNLMax=1.0435267857 + +startCash=3e9 +priceMarkUp=1.1 + +co2TradingImplemented=true +simulationLength=50 + +interconnectorCapacity=4441 + +investmentFutureTimeHorizon=7 + +numberOfYearsBacklookingForForecasting=5 + +simpleCapacityMarketEnabled=true +capacityMarketPriceCap=58940 +reserveMargin=0.156 +reserveDemandLowerMargin=0.025 +reserveDemandUpperMargin=0.025 + diff --git a/emlab-generation/src/main/resources/scenarios/TwoCountryCMres-2.xml b/emlab-generation/src/main/resources/scenarios/TwoCountryCMres-2.xml new file mode 100644 index 00000000..37d4525d --- /dev/null +++ b/emlab-generation/src/main/resources/scenarios/TwoCountryCMres-2.xml @@ -0,0 +1,1576 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0.33 + + + + + + 0.40 + + + + + + 0.16 + + + + + + 0.01 + + + + + + 0.03 + + + + + + 0.07 + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0.1436 + + + + + + 0.1931 + + + + + + 0.1071 + + + + + + 0.0851 + + + + + + 0.0302 + + + + + + 0.072376 + + + + + + 0.1725 + + + + + + 0.1453 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/emlab-generation/src/main/resources/scenarios/ZERO_START_RES-BL-108.xml b/emlab-generation/src/main/resources/scenarios/ZERO_START_RES-BL-108.xml new file mode 100644 index 00000000..06fe66ea --- /dev/null +++ b/emlab-generation/src/main/resources/scenarios/ZERO_START_RES-BL-108.xml @@ -0,0 +1,873 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0.50 + + + + + + 0.19 + + + + + + 0.13 + + + + + + 0.18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/emlab-generation/src/main/resources/scenarios/ZERO_START_RES-BL-119.xml b/emlab-generation/src/main/resources/scenarios/ZERO_START_RES-BL-119.xml new file mode 100644 index 00000000..00679a57 --- /dev/null +++ b/emlab-generation/src/main/resources/scenarios/ZERO_START_RES-BL-119.xml @@ -0,0 +1,873 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0.50 + + + + + + 0.19 + + + + + + 0.13 + + + + + + 0.18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/emlab-generation/src/main/resources/scenarios/parametersA-Old-CM.properties b/emlab-generation/src/main/resources/scenarios/parametersA-Old-CM.properties new file mode 100644 index 00000000..9de8a871 --- /dev/null +++ b/emlab-generation/src/main/resources/scenarios/parametersA-Old-CM.properties @@ -0,0 +1,99 @@ +#------------------------------------------------------------------------------- +# Copyright 2012 the original author or authors. +# +# Licensed 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. +#------------------------------------------------------------------------------- +coalPriceStart=50.0 +#coalPriceMin=0.96 +coalPriceMin=1 +#coalPriceTop=1.00 +coalPriceTop=1 +#coalPriceMax=1.04 +coalPriceMax=1 + +gasPriceStart=0.25 +#gasPriceMin=0.95 +gasPriceMin=1 +#gasPriceTop=1.01 +gasPriceTop=1 +#gasPriceMax=1.07 +gasPriceMax=1 + +biomassPriceStart=100 +#biomassPriceMin=0.95 +biomassPriceMin=1 +#biomassPriceTop=1.01 +biomassPriceTop=1 +#biomassPriceMax=1.05 +biomassPriceMax=1 + +uraniumPriceStart=5000000 +uraniumPriceMin=1 +#uraniumPriceMax=1.02 +uraniumPriceMax=1 +#uraniumPriceTop=1.01 +uraniumPriceTop=1 +uraniumSeries=5000000,5050000,5100500,5151505,5203020.05,5255050.2505,5307600.753005,5360676.76053505,5414283.5281404,5468426.3634218,5523110.62705602,5578341.73332658,5634125.15065985,5690466.40216645,5747371.06618811,5804844.77684999,5862893.22461849,5921522.15686468,5980737.37843332,6040544.75221766,6100950.19973983,6161959.70173723,6223579.2987546,6285815.09174215,6348673.24265957,6412159.97508617,6476281.57483703,6541044.3905854,6606454.83449125,6672519.38283617,6739244.57666453,6806637.02243117,6874703.39265549,6943450.42658204,7012884.93084786,7083013.78015634,7153843.9179579,7225382.35713748,7297636.18070886,7370612.54251594,7444318.6679411,7518761.85462052,7593949.47316672,7669888.96789839,7746587.85757737,7824053.73615315,7902294.27351468,7981317.21624983,8061130.38841232,8141741.69229645,8223159.10921941,8305390.70031161,8388444.60731472,8472329.05338787,8557052.34392175,8642622.86736096,8729049.09603457,8816339.58699492,8904502.98286487,8993548.01269352,9083483.49282045 + +co2TaxStart=0 +co2TaxIncrement=0 +co2TaxDuration=5 + +co2CapStart=10e7 +#co2CapIncrement=-.5e6 +co2CapIncrement=0 +co2CapDuration=1 + +minCo2PriceStart=0 +minCo2PriceIncrement=0 +minCo2PriceDuration=20 + +segment1nl=9074 +segment2nl=10455 +segment3nl=11980 +segment4nl=13642 +segment5nl=15342 + +segment1de=13500 +segment2de=15200 +segment3de=18000 +segment4de=20000 +segment5de=22500 + +demandGrowthDEStart=1 +demandGrowthDEMin=1 +demandGrowthDETop=1 +demandGrowthDEMax=1 + +demandGrowthNLStart=1 +demandGrowthNLMin=1 +demandGrowthNLTop=1 +demandGrowthNLMax=1 + +startCash=1e9 +priceMarkUp=1.1 + +co2TradingImplemented=false +simpleCapacityMarketEnabled=true +simulationLength=50 + +interconnectorCapacity=0 + +numberOfYearsBacklookingForForecasting=5 + +capacityMarketPriceCap=109500 +reserveMargin=0.15 +reserveDemandLowerMargin=0.05 +reserveDemandUpperMargin=0.05 + + diff --git a/emlab-generation/src/main/resources/scenarios/parametersB-DYN.properties b/emlab-generation/src/main/resources/scenarios/parametersB-DYN.properties new file mode 100644 index 00000000..e3d5f7d1 --- /dev/null +++ b/emlab-generation/src/main/resources/scenarios/parametersB-DYN.properties @@ -0,0 +1,64 @@ +#------------------------------------------------------------------------------- +# Copyright 2012 the original author or authors. +# +# Licensed 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. +#------------------------------------------------------------------------------- +co2TaxStart=0 +co2TaxIncrement=0 +co2TaxDuration=5 + +minCo2EUPriceStart=0 +minCo2EUPriceIncrement=0 +minCo2PriceDuration=1 + +co2CapStart=72e10 +co2CapIncrement=0 +co2CapDuration=1 + +minCo2DEPriceStart=0 +minCo2DEPriceIncrement=0 +minCo2DEPriceDuration=1 + +minCo2PriceStart=0 +minCo2PriceIncrement=0 +minCo2PriceDuration=1 + +segment1de=35311.89 +segment2de=36657.44 +segment3de=40401.68 +segment4de=43606.1 +segment5de=45600.58 +segment6de=47414.54 +segment7de=49337.31 +segment8de=51439.43 +segment9de=53771.93 +segment10de=56143.54 +segment11de=58402.19 +segment12de=60234.9 +segment13de=61923.03 +segment14de=63697.04 +segment15de=65580.2 +segment16de=67797.75 +segment17de=71192.97 +segment18de=75390.2 +segment19de=77408.11 +segment20de=79884 + +startCash=5e10 +priceMarkUp=1 + +co2TradingImplemented=false +simulationLength=40 + +interconnectorCapacity=0 + diff --git a/emlab-generation/src/main/resources/scenarios/parametersB-OneCountry-CapacityMarket.properties b/emlab-generation/src/main/resources/scenarios/parametersB-OneCountry-CapacityMarket.properties new file mode 100644 index 00000000..d44f3081 --- /dev/null +++ b/emlab-generation/src/main/resources/scenarios/parametersB-OneCountry-CapacityMarket.properties @@ -0,0 +1,146 @@ +#------------------------------------------------------------------------------- +# Copyright 2012 the original author or authors. +# +# Licensed 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. +#------------------------------------------------------------------------------- +#coalPriceStart=86.300754753 +#coalPriceStart=50.0 +#coalPriceMin=0.96 +#coalPriceMin=0.97 +#coalPriceTop=1.00 +#coalPriceTop=1.01 +#coalPriceMax=1.04 +#coalPriceMax=1.05 + +coalPriceStart=100.8629923136 +coalPriceMin=1 +coalPriceTop=1 +coalPriceMax=1 + +gasPriceStart=0.3246874961 +#gasPriceStart=0.2286412084 +gasPriceMin=1 +#gasPriceMin=0.9446627902 +gasPriceTop=1 +#gasPriceTop=1.0146627902 +gasPriceMax=1 +#gasPriceMax=1.0846627902 + +#gasPriceStart=0.2286412084 +#gasPriceMin=0.95 +#gasPriceMin=0.96 +#gasPriceTop=1.01 +#gasPriceTop=1.03 +#gasPriceMax=1.07 +#gasPriceMax=1.10 + +biomassPriceStart=112.5 +biomassPriceMin=1 +#biomassPriceMin=0.97 +biomassPriceTop=1 +#biomassPriceTop=1.01 +biomassPriceMax=1 +#biomassPriceMax=1.05 + +#biomassPriceStart=112.5 +#biomassPriceMin=0.95 +#biomassPriceMin=0.97 +#biomassPriceTop=1.01 +#biomassPriceTop=1.01 +#biomassPriceMax=1.05 +#biomassPriceMax=1.05 + +uraniumPriceStart=5000000 +uraniumPriceMin=1 +uraniumPriceMax=1 +#uraniumPriceMax=1.02 +uraniumPriceTop=1 +#uraniumPriceTop=1.01 + +#uraniumPriceStart=5000000 +#uraniumPriceMin=1.00 +#uraniumPriceMax=1.02 +#uraniumPriceMax=1.02 +#uraniumPriceTop=1.01 +#uraniumPriceTop=1.01 + +co2TaxStart=0 +co2TaxIncrement=0 +co2TaxDuration=5 + +minCo2EUPriceStart=0 +minCo2EUPriceIncrement=0 +minCo2PriceDuration=1 + +co2CapStart=72e10 +#co2CapIncrement=-1.104e6 +co2CapIncrement=0 +co2CapDuration=1 + +minCo2NLPriceStart=0 +minCo2NLPriceIncrement=0 +minCo2NLPriceDuration=1 + +minCo2PriceStart=0 +minCo2PriceIncrement=0 +minCo2PriceDuration=1 + +segment1nl=8160.778 +segment2nl=8390.36 +segment3nl=8961.656 +segment4nl=9448.219 +segment5nl=9828.25 +segment6nl=10333.58 +segment7nl=10887.66 +segment8nl=11438.97 +segment9nl=11957.73 +segment10nl=12498.55 +segment11nl=13155.53 +segment12nl=13819.34 +segment13nl=14395.3 +segment14nl=14826.11 +segment15nl=15221.23 +segment16nl=15797.4 +segment17nl=16622.16 +segment18nl=17535.46 +segment19nl=18179.78 +segment20nl=18390.00 + + +demandGrowthNLStart=1 +demandGrowthNLMin=0.95 +demandGrowthNLTop=1.022 +demandGrowthNLMax=1.07 + +#demandGrowthNLStart=1 +#demandGrowthNLMin=1 +#demandGrowthNLTop=1 +#demandGrowthNLMax=1 + +startCash=3e9 +priceMarkUp=1 + +co2TradingImplemented=false +simpleCapacityMarketEnabled=true +simulationLength=50 + +interconnectorCapacity=0 + +investmentFutureTimeHorizon=7 + +numberOfYearsBacklookingForForecasting=5 + +capacityMarketPriceCap=58940 +reserveMargin=0.156 +reserveDemandLowerMargin=0.025 +reserveDemandUpperMargin=0.025 diff --git a/emlab-generation/src/main/resources/scenarios/parametersB-OneCountry.properties b/emlab-generation/src/main/resources/scenarios/parametersB-OneCountry.properties index 7bcfe8f8..10abfc90 100644 --- a/emlab-generation/src/main/resources/scenarios/parametersB-OneCountry.properties +++ b/emlab-generation/src/main/resources/scenarios/parametersB-OneCountry.properties @@ -116,21 +116,20 @@ segment18nl=17535.46 segment19nl=18179.78 segment20nl=18390.00 +demandGrowthNLStart=1 +demandGrowthNLMin=0.95 +demandGrowthNLTop=1.022 +demandGrowthNLMax=1.07 #demandGrowthNLStart=1 -#demandGrowthNLMin=0.99 -#demandGrowthNLTop=1.02 -#demandGrowthNLMax=1.05 - -demandGrowthNLStart=1 -demandGrowthNLMin=1 -demandGrowthNLTop=1 -demandGrowthNLMax=1 +#demandGrowthNLMin=1 +#demandGrowthNLTop=1 +#demandGrowthNLMax=1 startCash=3e9 priceMarkUp=1 -co2TradingImplemented=true +co2TradingImplemented=false simulationLength=50 interconnectorCapacity=0 diff --git a/emlab-generation/src/main/resources/scenarios/parametersB-TM-DE.properties b/emlab-generation/src/main/resources/scenarios/parametersB-TM-DE.properties new file mode 100644 index 00000000..488100f3 --- /dev/null +++ b/emlab-generation/src/main/resources/scenarios/parametersB-TM-DE.properties @@ -0,0 +1,98 @@ +#------------------------------------------------------------------------------- +# Copyright 2012 the original author or authors. +# +# Licensed 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. +#------------------------------------------------------------------------------- + + +coalPriceStart=3.6917419368 +coalPriceMin=1 +coalPriceTop=1 +coalPriceMax=1 + +gasPriceStart=7.5 +gasPriceMin=1 +gasPriceTop=1 +gasPriceMax=1 + + +biomassPriceStart=4.5 +biomassPriceMin=1 +biomassPriceTop=1 +biomassPriceMax=1 + +uraniumPriceStart=1.286 +uraniumPriceMin=1 +uraniumPriceMax=1 +uraniumPriceTop=1 + +lignitePriceStart=1.428 +lignitePriceMin=1 +lignitePriceMax=1 +lignitePriceTop=1 + +co2TaxStart=0 +co2TaxIncrement=0 +co2TaxDuration=5 + +minCo2EUPriceStart=0 +minCo2EUPriceIncrement=0 +minCo2PriceDuration=1 + +co2CapStart=72e10 +co2CapIncrement=0 +co2CapDuration=1 + +minCo2DEPriceStart=0 +minCo2DEPriceIncrement=0 +minCo2DEPriceDuration=1 + +minCo2PriceStart=0 +minCo2PriceIncrement=0 +minCo2PriceDuration=1 + +segment1de=35311.89 +segment2de=36657.44 +segment3de=40401.68 +segment4de=43606.1 +segment5de=45600.58 +segment6de=47414.54 +segment7de=49337.31 +segment8de=51439.43 +segment9de=53771.93 +segment10de=56143.54 +segment11de=58402.19 +segment12de=60234.9 +segment13de=61923.03 +segment14de=63697.04 +segment15de=65580.2 +segment16de=67797.75 +segment17de=71192.97 +segment18de=75390.2 +segment19de=77408.11 +segment20de=79884 + +demandGrowthDEStart=1 +demandGrowthDEMin=1 +demandGrowthDETop=1 +demandGrowthDEMax=1 + +startCash=5e10 +priceMarkUp=1 + +co2TradingImplemented=false +simulationLength=40 + +interconnectorCapacity=0 + + diff --git a/emlab-generation/src/main/resources/scenarios/parametersB-ThermalMixDE.properties b/emlab-generation/src/main/resources/scenarios/parametersB-ThermalMixDE-CapacityMarket.properties similarity index 93% rename from emlab-generation/src/main/resources/scenarios/parametersB-ThermalMixDE.properties rename to emlab-generation/src/main/resources/scenarios/parametersB-ThermalMixDE-CapacityMarket.properties index 8f79ca96..2ad15151 100644 --- a/emlab-generation/src/main/resources/scenarios/parametersB-ThermalMixDE.properties +++ b/emlab-generation/src/main/resources/scenarios/parametersB-ThermalMixDE-CapacityMarket.properties @@ -122,11 +122,17 @@ demandGrowthDEMax=1 startCash=8e10 priceMarkUp=1 -co2TradingImplemented=true -simulationLength=110 +co2TradingImplemented=false +simpleCapacityMarketEnabled=true +simulationLength=100 interconnectorCapacity=0 investmentFutureTimeHorizon=7 numberOfYearsBacklookingForForecasting=5 + +capacityMarketPriceCap=10000 +reserveMargin=0.5 +reserveDemandLowerMargin=0.05 +reserveDemandUpperMargin=0.05 diff --git a/emlab-generation/src/main/resources/scenarios/parametersC-ETS-CM-de.properties b/emlab-generation/src/main/resources/scenarios/parametersC-ETS-CM-de.properties new file mode 100644 index 00000000..60863dc2 --- /dev/null +++ b/emlab-generation/src/main/resources/scenarios/parametersC-ETS-CM-de.properties @@ -0,0 +1,124 @@ +#------------------------------------------------------------------------------- +# Copyright 2012 the original author or authors. +# +# Licensed 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. +#------------------------------------------------------------------------------- +#In EUR/GJ Real terms +coalPriceSeries=3.4342903691,2.8364179566,3.0588821101,3.2285110271,3.2451958386,3.2646614521,3.2813462636,3.300811877,3.3174966885,3.3369623019,3.3369623019,3.3369623019,3.3369623019,3.3369623019,3.3369623019,3.3369623019,3.3369623019,3.3369623019,3.3369623019,3.3369623019,3.3318397721,3.3267172422,3.3215947124,3.3164721825,3.3113496527,3.3062271228,3.301104593,3.2959820631,3.2908595333,3.2857370034,3.2806144736,3.2754919437,3.2703694139,3.265246884,3.2601243542,3.2550018243,3.2498792945,3.2447567646,3.2396342348,3.2345117049,3.229389175,3.2242666452,3.2191441153,3.2140215855,3.2088990556,3.2037765258,3.1986539959,3.1935314661,3.1884089362,3.1832864064,3.1781638765,3.1730413467,3.1679188168,3.162796287,3.1576737571 +gasPriceSeries=6.1337281391,6.496939571,7.2868612059,8.0767828408,8.1488536615,8.2216174709,7.9256284194,7.6296393679,7.6296393679,7.6296393679,7.6296393679,7.6296393679,7.6296393679,7.6296393679,7.6296393679,7.6296393679,7.6296393679,7.6296393679,7.6296393679,7.6296393679,7.7083715378,7.7871037077,7.8658358777,7.9445680476,8.0233002175,8.1020323875,8.1807645574,8.2594967273,8.3382288973,8.4169610672,8.4956932371,8.5744254071,8.653157577,8.7318897469,8.8106219169,8.8893540868,8.9680862567,9.0468184267,9.1255505966,9.2042827665,9.2830149364,9.3617471064,9.4404792763,9.5192114462,9.5979436162,9.6766757861,9.7554079561,9.834140126,9.9128722959,9.9916044659,10.0703366358,10.1490688057,10.2278009757,10.3065331456,10.3852653156 + +biomassPriceStart=112.5 +#biomassPriceMin=0.95 +biomassPriceMin=1.00 +#biomassPriceTop=1.01 +biomassPriceTop=1.00 +#biomassPriceMax=1.05 +biomassPriceMax=1.00 + +uraniumPriceStart=5000000 +uraniumPriceMin=1.00 +#uraniumPriceMax=1.02 +uraniumPriceMax=1.00 +#uraniumPriceTop=1.01 +uraniumPriceTop=1.00 + +co2TaxStart=0 +co2TaxIncrement=0 +co2TaxDuration=5 + +co2CapStart=351.75e6 +co2CapIncrement=-6.120624e6 +#co2CapIncrement=0 +co2CapDuration=1 + +minCo2EUPriceStart=0 +minCo2EUPriceIncrement=0 +minCo2PriceDuration=1 + +minCo2DEPriceStart=0 +minCo2DEPriceIncrement=0 +minCo2DEPriceDuration=1 + +minCo2NLPriceStart=0 +minCo2NLPriceIncrement=0 +minCo2NLPriceDuration=1 + +segment1nl=8160.778 +segment2nl=8390.36 +segment3nl=8961.656 +segment4nl=9448.219 +segment5nl=9828.25 +segment6nl=10333.58 +segment7nl=10887.66 +segment8nl=11438.97 +segment9nl=11957.73 +segment10nl=12498.55 +segment11nl=13155.53 +segment12nl=13819.34 +segment13nl=14395.3 +segment14nl=14826.11 +segment15nl=15221.23 +segment16nl=15797.4 +segment17nl=16622.16 +segment18nl=17535.46 +segment19nl=18179.78 +segment20nl=18390.00 + +segment1de=35311.89 +segment2de=36657.44 +segment3de=40401.68 +segment4de=43606.1 +segment5de=45600.58 +segment6de=47414.54 +segment7de=49337.31 +segment8de=51439.43 +segment9de=53771.93 +segment10de=56143.54 +segment11de=58402.19 +segment12de=60234.9 +segment13de=61923.03 +segment14de=63697.04 +segment15de=65580.2 +segment16de=67797.75 +segment17de=71192.97 +segment18de=75390.2 +segment19de=77408.11 +segment20de=79884 + +demandGrowthDEStart=1 +demandGrowthDEMin=0.99 +demandGrowthDETop=1.02 +demandGrowthDEMax=1.05 + +demandGrowthNLStart=1 +demandGrowthNLMin=0.99 +demandGrowthNLTop=1.02 +demandGrowthNLMax=1.05 + +startCash=3e9 +priceMarkUp=1.1 + +co2TradingImplemented=true +simulationLength=50 + +interconnectorCapacity=4000 + +investmentFutureTimeHorizon=7 + +numberOfYearsBacklookingForForecasting=5 + +simpleCapacityMarketEnabled=true +capacityMarketPriceCap=58940 +reserveMargin=0.156 +reserveDemandLowerMargin=0.025 +reserveDemandUpperMargin=0.025 diff --git a/emlab-generation/src/main/resources/scenarios/parametersCM-SR.properties b/emlab-generation/src/main/resources/scenarios/parametersCM-SR.properties new file mode 100644 index 00000000..9b5004ac --- /dev/null +++ b/emlab-generation/src/main/resources/scenarios/parametersCM-SR.properties @@ -0,0 +1,158 @@ +#------------------------------------------------------------------------------- +# Copyright 2012 the original author or authors. +# +# Licensed 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. +#------------------------------------------------------------------------------- +coalPriceStart=3.6917419368 +coalPriceMin=0.9707458246 +coalPriceTop=1.0107458246 +coalPriceMax=1.0507458246 + +gasPriceStart=7.5 +gasPriceMin=0.9446627902 +gasPriceTop=1.0146627902 +gasPriceMax=1.0846627902 + +biomassPriceStart=4.5 +biomassPriceMin=0.97 +biomassPriceTop=1.01 +biomassPriceMax=1.05 + +uraniumPriceStart=1.286 +uraniumPriceMin=1 +uraniumPriceMax=1.02 +uraniumPriceTop=1.01 + +#coalPriceStart=3.6917419368 +#coalPriceMin=1 +#coalPriceTop=1 +#coalPriceMax=1 + +#gasPriceStart=7.5 +#gasPriceMin=1 +#gasPriceTop=1 +#gasPriceMax=1 + +#biomassPriceStart=4.5 +#biomassPriceMin=1 +#biomassPriceTop=1 +#biomassPriceMax=1 + +#uraniumPriceStart=1.286 +#uraniumPriceMin=1 +#uraniumPriceMax=1 +#uraniumPriceTop=1 + +co2TaxStart=0 +co2TaxIncrement=0 +co2TaxDuration=5 + +minCo2EUPriceStart=0 +minCo2EUPriceIncrement=0 +minCo2PriceDuration=1 + +#co2CapStart=351.75e6 +co2CapStart=72e10 +co2CapIncrement=0 +#co2CapIncrement=0 +co2CapDuration=1 + +minCo2DEPriceStart=0 +minCo2DEPriceIncrement=0 +minCo2DEPriceDuration=1 + +minCo2NLPriceStart=0 +minCo2NLPriceIncrement=0 +minCo2NLPriceDuration=1 + +segment1nl=35311.89 +segment2nl=36657.44 +segment3nl=40401.68 +segment4nl=43606.1 +segment5nl=45600.58 +segment6nl=47414.54 +segment7nl=49337.31 +segment8nl=51439.43 +segment9nl=53771.93 +segment10nl=56143.54 +segment11nl=58402.19 +segment12nl=60234.9 +segment13nl=61923.03 +segment14nl=63697.04 +segment15nl=65580.2 +segment16nl=67797.75 +segment17nl=71192.97 +segment18nl=75390.2 +segment19nl=77408.11 +segment20nl=79884 + +segment1de=35311.89 +segment2de=36657.44 +segment3de=40401.68 +segment4de=43606.1 +segment5de=45600.58 +segment6de=47414.54 +segment7de=49337.31 +segment8de=51439.43 +segment9de=53771.93 +segment10de=56143.54 +segment11de=58402.19 +segment12de=60234.9 +segment13de=61923.03 +segment14de=63697.04 +segment15de=65580.2 +segment16de=67797.75 +segment17de=71192.97 +segment18de=75390.2 +segment19de=77408.11 +segment20de=79884 + + +demandGrowthDEStart=1 +demandGrowthDEMin=1 +demandGrowthDETop=1 +demandGrowthDEMax=1 + +demandGrowthNLStart=1 +demandGrowthNLMin=1 +demandGrowthNLTop=1 +demandGrowthNLMax=1 + +#demandGrowthDEStart=1 +#demandGrowthDEMin=0.99 +#demandGrowthDETop=1.02 +#demandGrowthDEMax=1.05 + +#demandGrowthNLStart=1 +#demandGrowthNLMin=0.99 +#demandGrowthNLTop=1.02 +#demandGrowthNLMax=1.05 + + +startCash=3e9 +priceMarkUp=1 + +co2TradingImplemented=false +simulationLength=50 + +interconnectorCapacity=5000 + +investmentFutureTimeHorizon=7 + +numberOfYearsBacklookingForForecasting=5 +simpleCapacityMarketEnabled=1 + +capacityMarketPriceCap=58940 +reserveMargin=0.15 +reserveDemandLowerMargin=0.025 +reserveDemandUpperMargin=0.025 diff --git a/emlab-generation/src/main/resources/scenarios/parametersE-MinCO2-resTarget-CM.properties b/emlab-generation/src/main/resources/scenarios/parametersE-MinCO2-resTarget-CM.properties new file mode 100644 index 00000000..15d9b350 --- /dev/null +++ b/emlab-generation/src/main/resources/scenarios/parametersE-MinCO2-resTarget-CM.properties @@ -0,0 +1,139 @@ +#------------------------------------------------------------------------------- +# Copyright 2012 the original author or authors. +# +# Licensed 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. +#------------------------------------------------------------------------------- +coalPriceStart=100.8629923136 +#coalPriceStart=86.300754753 +#coalPriceStart=50.0 +#coalPriceMin=0.96 +coalPriceMin=0.9707458246 +#coalPriceTop=1.00 +coalPriceTop=1.0107458246 +#coalPriceMax=1.04 +coalPriceMax=1.0507458246 + +gasPriceStart=0.3246874961 +#gasPriceStart=0.2286412084 +#gasPriceMin=0.95 +gasPriceMin=0.9446627902 +#gasPriceTop=1.01 +gasPriceTop=1.0146627902 +#gasPriceMax=1.07 +gasPriceMax=1.0846627902 + +biomassPriceStart=112.5 +#biomassPriceMin=0.95 +biomassPriceMin=0.97 +#biomassPriceTop=1.01 +biomassPriceTop=1.01 +#biomassPriceMax=1.05 +biomassPriceMax=1.05 + +uraniumPriceStart=5000000 +uraniumPriceMin=1.00 +#uraniumPriceMax=1.02 +uraniumPriceMax=1.02 +#uraniumPriceTop=1.01 +uraniumPriceTop=1.01 + +co2TaxStart=0 +co2TaxIncrement=0 +co2TaxDuration=5 + +co2CapStart=351.75e6 +co2CapIncrement=-6.120624e6 +#co2CapIncrement=0 +co2CapDuration=1 + +minCo2EUPriceStart=0 +minCo2EUPriceIncrement=0 +minCo2PriceDuration=1 + +minCo2DEPriceStart=25 +minCo2DEPriceIncrement=1.5 +minCo2DEPriceDuration=1 + +minCo2NLPriceStart=25 +minCo2NLPriceIncrement=1.5 +minCo2NLPriceDuration=1 + +segment1nl=8160.778 +segment2nl=8390.36 +segment3nl=8961.656 +segment4nl=9448.219 +segment5nl=9828.25 +segment6nl=10333.58 +segment7nl=10887.66 +segment8nl=11438.97 +segment9nl=11957.73 +segment10nl=12498.55 +segment11nl=13155.53 +segment12nl=13819.34 +segment13nl=14395.3 +segment14nl=14826.11 +segment15nl=15221.23 +segment16nl=15797.4 +segment17nl=16622.16 +segment18nl=17535.46 +segment19nl=18179.78 +segment20nl=18390.00 + +segment1de=35311.89 +segment2de=36657.44 +segment3de=40401.68 +segment4de=43606.1 +segment5de=45600.58 +segment6de=47414.54 +segment7de=49337.31 +segment8de=51439.43 +segment9de=53771.93 +segment10de=56143.54 +segment11de=58402.19 +segment12de=60234.9 +segment13de=61923.03 +segment14de=63697.04 +segment15de=65580.2 +segment16de=67797.75 +segment17de=71192.97 +segment18de=75390.2 +segment19de=77408.11 +segment20de=79884 + +demandGrowthDEStart=1 +demandGrowthDEMin=0.98 +demandGrowthDETop=1.00 +demandGrowthDEMax=1.03 + +demandGrowthNLStart=1 +demandGrowthNLMin=0.99 +demandGrowthNLTop=1.02 +demandGrowthNLMax=1.05 + +startCash=5e9 +priceMarkUp=1.1 + +co2TradingImplemented=true +simulationLength=50 + +interconnectorCapacity=3000 + +investmentFutureTimeHorizon=7 + +numberOfYearsBacklookingForForecasting=5 + +simpleCapacityMarketEnabled=true +capacityMarketPriceCap=58940 +reserveMargin=0.156 +reserveDemandLowerMargin=0.025 +reserveDemandUpperMargin=0.025 diff --git a/emlab-generation/src/main/resources/scenarios/scenarioA-Old-CM.xml b/emlab-generation/src/main/resources/scenarios/scenarioA-Old-CM.xml new file mode 100644 index 00000000..97e7c04e --- /dev/null +++ b/emlab-generation/src/main/resources/scenarios/scenarioA-Old-CM.xml @@ -0,0 +1,727 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0.33 + + + + + + 0.56 + + + + + + 0.01 + + + + + + 0.03 + + + + + + 0.07 + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0.45 + + + + + + 0.20 + + + + + + 0.05 + + + + + + 0.20 + + + + + + 0.10 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/emlab-generation/src/main/resources/scenarios/scenarioA-ToyModel.xml b/emlab-generation/src/main/resources/scenarios/scenarioA-ToyModel.xml index 6762448e..b31d3cd5 100644 --- a/emlab-generation/src/main/resources/scenarios/scenarioA-ToyModel.xml +++ b/emlab-generation/src/main/resources/scenarios/scenarioA-ToyModel.xml @@ -24,7 +24,7 @@ - + + + + + + + + + + + + + + + + + + + + + diff --git a/emlab-generation/src/main/resources/scenarios/scenarioB-OneCountry-CapacityMarket.xml b/emlab-generation/src/main/resources/scenarios/scenarioB-OneCountry-CapacityMarket.xml new file mode 100644 index 00000000..1c2e3bab --- /dev/null +++ b/emlab-generation/src/main/resources/scenarios/scenarioB-OneCountry-CapacityMarket.xml @@ -0,0 +1,842 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0.33 + + + + + + 0.40 + + + + + + 0.16 + + + + + + 0.01 + + + + + + 0.03 + + + + + + 0.07 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/emlab-generation/src/main/resources/scenarios/scenarioB-OneCountry-RES-CM.xml b/emlab-generation/src/main/resources/scenarios/scenarioB-OneCountry-RES-CM.xml new file mode 100644 index 00000000..f43e759a --- /dev/null +++ b/emlab-generation/src/main/resources/scenarios/scenarioB-OneCountry-RES-CM.xml @@ -0,0 +1,887 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0.33 + + + + + + 0.40 + + + + + + 0.16 + + + + + + 0.01 + + + + + + 0.03 + + + + + + 0.07 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/emlab-generation/src/main/resources/scenarios/scenarioB-OneCountry-RES.xml b/emlab-generation/src/main/resources/scenarios/scenarioB-OneCountry-RES.xml new file mode 100644 index 00000000..bcac9f98 --- /dev/null +++ b/emlab-generation/src/main/resources/scenarios/scenarioB-OneCountry-RES.xml @@ -0,0 +1,861 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0.33 + + + + + + 0.40 + + + + + + 0.16 + + + + + + 0.01 + + + + + + 0.03 + + + + + + 0.07 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/emlab-generation/src/main/resources/scenarios/scenarioB-ThermalMixDE.xml b/emlab-generation/src/main/resources/scenarios/scenarioB-ThermalMixDE-CapacityMarket.xml similarity index 96% rename from emlab-generation/src/main/resources/scenarios/scenarioB-ThermalMixDE.xml rename to emlab-generation/src/main/resources/scenarios/scenarioB-ThermalMixDE-CapacityMarket.xml index c318d2be..99fcc101 100644 --- a/emlab-generation/src/main/resources/scenarios/scenarioB-ThermalMixDE.xml +++ b/emlab-generation/src/main/resources/scenarios/scenarioB-ThermalMixDE-CapacityMarket.xml @@ -27,9 +27,26 @@ p:co2TradingImplemented="false" p:realRenewableDataImplemented="false" p:iterationSpeedFactor="3" p:iterationSpeedCriterion="0.005" p:capDeviationCriterion="0.03" + p:simpleCapacityMarketEnabled="${simpleCapacityMarketEnabled}" p:deletionOldPPDPBidsAndCashFlowsEnabled="true" p:deletionAge="4"> + + + + + + + + + + + @@ -312,6 +329,7 @@ + value="classpath:scenarios/parametersB-OneCountry-CapacityMarket.properties" /> - + \ No newline at end of file diff --git a/emlab-generation/src/main/resources/scenarios/scenarioC-ETS-CM-de.xml b/emlab-generation/src/main/resources/scenarios/scenarioC-ETS-CM-de.xml new file mode 100644 index 00000000..330dde60 --- /dev/null +++ b/emlab-generation/src/main/resources/scenarios/scenarioC-ETS-CM-de.xml @@ -0,0 +1,1479 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0.33 + + + + + + 0.16 + + + + + + 0.01 + + + + + + 0.03 + + + + + + 0.07 + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0.1436 + + + + + + 0.1931 + + + + + + 0.1071 + + + + + + 0.0851 + + + + + + 0.0302 + + + + + + 0.072376 + + + + + + 0.1725 + + + + + + 0.1453 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/emlab-generation/src/main/resources/scenarios/scenarioC-MinCO2-CM.xml b/emlab-generation/src/main/resources/scenarios/scenarioC-MinCO2-CM.xml new file mode 100644 index 00000000..4ae52e90 --- /dev/null +++ b/emlab-generation/src/main/resources/scenarios/scenarioC-MinCO2-CM.xml @@ -0,0 +1,1471 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0.33 + + + + + + 0.40 + + + + + + 0.16 + + + + + + 0.01 + + + + + + 0.03 + + + + + + 0.07 + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0.1436 + + + + + + 0.1931 + + + + + + 0.1071 + + + + + + 0.0851 + + + + + + 0.0302 + + + + + + 0.072376 + + + + + + 0.1725 + + + + + + 0.1453 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/emlab-generation/src/main/resources/scenarios/scenarioU-MinCO2-resTargetwithCM.xml b/emlab-generation/src/main/resources/scenarios/scenarioU-MinCO2-resTargetwithCM.xml new file mode 100644 index 00000000..9180645e --- /dev/null +++ b/emlab-generation/src/main/resources/scenarios/scenarioU-MinCO2-resTargetwithCM.xml @@ -0,0 +1,1575 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0.33 + + + + + + 0.40 + + + + + + 0.16 + + + + + + 0.01 + + + + + + 0.03 + + + + + + 0.07 + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0.1436 + + + + + + 0.1931 + + + + + + 0.1071 + + + + + + 0.0851 + + + + + + 0.0302 + + + + + + 0.072376 + + + + + + 0.1725 + + + + + + 0.1453 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/emlab-generation/src/main/resources/scenarios/scenarioU-bothMin-resTarget-ecoDism.xml b/emlab-generation/src/main/resources/scenarios/scenarioU-bothMin-resTarget-ecoDism.xml new file mode 100644 index 00000000..5c7d5e58 --- /dev/null +++ b/emlab-generation/src/main/resources/scenarios/scenarioU-bothMin-resTarget-ecoDism.xml @@ -0,0 +1,1652 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0.123 + + + + + + 0.061 + + + + + + 0.134 + + + + + + 0.108 + + + + + + 0.008 + + + + + + 0.012 + + + + + + 0.080 + + + + + + 0.270 + + + + + + 0.107 + + + + + + 0.058 + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0.307 + + + + + + 0.262 + + + + + + 0.188 + + + + + + 0.0302 + + + + + + 0.119 + + + + + + 0.047 + + + + + + 0.0 + + + + + + 0.018 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/emlab-generation/src/main/resources/settings.xml b/emlab-generation/src/main/resources/settings.xml index ad7faa7d..4dceee5b 100644 --- a/emlab-generation/src/main/resources/settings.xml +++ b/emlab-generation/src/main/resources/settings.xml @@ -1,48 +1,48 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/emlab-generation/src/test/java/emlab/gen/role/IntermittentElectricityMarketWithInterconnectorTest.java b/emlab-generation/src/test/java/emlab/gen/role/IntermittentElectricityMarketWithInterconnectorTest.java index e6ddfea7..eefc732f 100644 --- a/emlab-generation/src/test/java/emlab/gen/role/IntermittentElectricityMarketWithInterconnectorTest.java +++ b/emlab-generation/src/test/java/emlab/gen/role/IntermittentElectricityMarketWithInterconnectorTest.java @@ -709,10 +709,13 @@ public void electricityMarketTestWithALotRenewablesForCurrentTick() { assertEquals("CoalInM1 right amount", 700, plan.getAmount(), 0.001); switch (s.getSegmentID()) { case 1: + logger.warn("CoalInM1, S1 , " + plan.getAcceptedAmount()); assertEquals("CoalInM1 right accepted amount in S1", 700, plan.getAcceptedAmount(), 0.001); break; case 2: + logger.warn("CoalInM1, S2 , " + plan.getAcceptedAmount()); assertEquals("CoalInM1 right accepted amount in S2", 572.055, plan.getAcceptedAmount(), 0.001); + break; } } else if (plan.getPowerPlant().getName().equals("CoalInM2")) { assertEquals("CoalInM2 right price", 27, plan.getBidWithoutCO2(), 0.001); diff --git a/emlab-generation/src/test/java/emlab/gen/role/capacitymarket/ClearCapacityMarketRoleTest.java b/emlab-generation/src/test/java/emlab/gen/role/capacitymarket/ClearCapacityMarketRoleTest.java new file mode 100644 index 00000000..a325eeff --- /dev/null +++ b/emlab-generation/src/test/java/emlab/gen/role/capacitymarket/ClearCapacityMarketRoleTest.java @@ -0,0 +1,118 @@ +/******************************************************************************* + * Copyright 2013 the original author or authors. + * + * Licensed 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. + ******************************************************************************/ +package emlab.gen.role.capacitymarket; + +import org.apache.log4j.Logger; +import org.junit.Test; +import org.junit.runner.RunWith; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.test.context.ContextConfiguration; +import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; +import org.springframework.transaction.annotation.Transactional; + +import emlab.gen.domain.agent.Regulator; +import emlab.gen.domain.gis.Zone; +import emlab.gen.domain.market.capacity.CapacityDispatchPlan; +import emlab.gen.domain.market.capacity.CapacityMarket; +import emlab.gen.repository.CapacityMarketRepository; +import emlab.gen.repository.Reps; + +/** + * @author Kaveri + * + */ +@RunWith(SpringJUnit4ClassRunner.class) +@ContextConfiguration({ "/emlab-gen-test-context.xml" }) +@Transactional +public class ClearCapacityMarketRoleTest { + + Logger logger = Logger.getLogger(ClearCapacityMarketRole.class); + + @Autowired + Reps reps; + + @Autowired + CapacityMarketRepository capacityMarketRepository; + + @Autowired + ClearCapacityMarketRole clearCapacityMarketRoleTest; + + @Test + public void ClearCapacityMarketBasicFunctionality() { + + CapacityMarket market = new CapacityMarket(); + market.persist(); + + Zone zone = new Zone(); + zone.persist(); + + Regulator regulator = new Regulator(); + + regulator.setDemandTarget(100); + regulator.setCapacityMarketPriceCap(10); + // regulator.setReserveMargin(0.156); + regulator.setReserveDemandLowerMargin(0.15); + regulator.setReserveDemandUpperMargin(0.05); + regulator.setZone(zone); + regulator.persist(); + + CapacityDispatchPlan cdp1 = new CapacityDispatchPlan(); + cdp1.setAmount(8); + cdp1.setPrice(0); + cdp1.setTime(0l); + cdp1.setStatus(1); + cdp1.persist(); + + CapacityDispatchPlan cdp2 = new CapacityDispatchPlan(); + cdp2.setAmount(20); + cdp2.setPrice(0); + cdp2.setTime(0l); + cdp2.setStatus(1); + cdp2.persist(); + + CapacityDispatchPlan cdp3 = new CapacityDispatchPlan(); + cdp3.setAmount(70); + cdp3.setPrice(1); + cdp3.setTime(0l); + cdp3.setStatus(1); + cdp3.persist(); + + CapacityDispatchPlan cdp4 = new CapacityDispatchPlan(); + cdp4.setAmount(10); + cdp4.setPrice(20); + cdp4.setTime(0l); + cdp4.setStatus(1); + cdp4.persist(); + + clearCapacityMarketRoleTest.act(regulator); + + logger.warn("Status of CDP 1 is " + cdp1.getStatus()); + logger.warn("Status of CDP 2 is " + cdp2.getStatus()); + logger.warn("Status of CDP 3 is " + cdp3.getStatus()); + logger.warn("Status of (overpriced) CDP 4 is " + cdp4.getStatus()); + + // CapacityClearingPoint capacityClearingPoint = + // reps.capacityMarketRepository + // .findOneCapacityClearingPointForTime(0); + + // logger.warn("Clearing point Price" + + // capacityClearingPoint.getPrice()); + // logger.warn("Clearing Point Volume" + + // capacityClearingPoint.getVolume()); + + } + +} diff --git a/emlab-generation/src/test/java/emlab/gen/role/capacitymarket/ForecastDemandRoleTest.java b/emlab-generation/src/test/java/emlab/gen/role/capacitymarket/ForecastDemandRoleTest.java new file mode 100644 index 00000000..3cd978d7 --- /dev/null +++ b/emlab-generation/src/test/java/emlab/gen/role/capacitymarket/ForecastDemandRoleTest.java @@ -0,0 +1,137 @@ +/******************************************************************************* +` * Copyright 2013 the original author or authors. + * + * Licensed 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. + ******************************************************************************/ +package emlab.gen.role.capacitymarket; + +import static org.junit.Assert.assertTrue; + +import java.util.HashSet; +import java.util.Set; + +import org.apache.log4j.Logger; +import org.junit.Test; +import org.junit.runner.RunWith; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.test.context.ContextConfiguration; +import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; +import org.springframework.transaction.annotation.Transactional; + +import emlab.gen.domain.agent.Regulator; +import emlab.gen.domain.gis.Zone; +import emlab.gen.domain.market.electricity.ElectricitySpotMarket; +import emlab.gen.domain.market.electricity.Segment; +import emlab.gen.domain.market.electricity.SegmentLoad; +import emlab.gen.repository.MarketRepository; +import emlab.gen.repository.Reps; +import emlab.gen.trend.TriangularTrend; + +/** + * @author Kaveri + * + */ + +@RunWith(SpringJUnit4ClassRunner.class) +@ContextConfiguration({ "/emlab-gen-test-context.xml" }) +@Transactional +public class ForecastDemandRoleTest { + Logger logger = Logger.getLogger(ForecastDemandRole.class); + + @Autowired + Reps reps; + + @Autowired + MarketRepository marketRepository; + + @Autowired + ForecastDemandRole fDemandRole; + + @Test + public void checkForecastDemandFunctionality() { + + Zone zone = new Zone(); + zone.persist(); + Regulator regulator = new Regulator(); + regulator.setTargetPeriod(0); + regulator.setReserveMargin(0.15); + regulator.setNumberOfYearsLookingBackToForecastDemand(3); + regulator.setZone(zone); + regulator.persist(); + + Segment S1 = new Segment(); + S1.setLengthInHours(20); + S1.persist(); + + Segment S2 = new Segment(); + S2.setLengthInHours(30); + S2.persist(); + + SegmentLoad SG1 = new SegmentLoad(); + SG1.setSegment(S2); + SG1.setBaseLoad(2500); + SG1.persist(); + // SegmentLoad SG2 = new SegmentLoad(); + // SG2.setSegment(S2); + // SG2.setBaseLoad(2000); + + SegmentLoad SG3 = new SegmentLoad(); + SG3.setSegment(S1); + SG3.setBaseLoad(3700); + + // SegmentLoad SG4 = new SegmentLoad(); + // SG4.setSegment(S1); + // SG4.setBaseLoad(4000); + + // SG2.persist(); + SG3.persist(); + // SG4.persist(); + + Set segmentLoads1 = new HashSet(); + segmentLoads1.add(SG1); + segmentLoads1.add(SG3); + // + // TimeSeriesImpl demandGrowthTrend = new TimeSeriesImpl(); + // int lengthOfSeries = 50; + // double[] timeSeries = new double[lengthOfSeries]; + // timeSeries[0] = 1; + // for (int i = 1; i <= lengthOfSeries; i++) { + // timeSeries[i] = timeSeries[i - 1] * 1.02; + // } + + TriangularTrend demandGrowthTrend = new TriangularTrend(); + demandGrowthTrend.setMax(2); + demandGrowthTrend.setMin(1); + demandGrowthTrend.setStart(1); + demandGrowthTrend.setTop(1); + + // demandGrowthTrend.setTimeSeries(timeSeries); + // demandGrowthTrend.setStartingYear(0); + demandGrowthTrend.persist(); + + ElectricitySpotMarket market1 = new ElectricitySpotMarket(); + market1.setName("Market1"); + market1.setLoadDurationCurve(segmentLoads1); + market1.setDemandGrowthTrend(demandGrowthTrend); + market1.setZone(zone); + market1.persist(); + + fDemandRole.act(regulator); + + logger.warn("Target Demand for this tick: " + regulator.getDemandTarget()); + assertTrue(regulator.getDemandTarget() == 4255); + // logger.warn("Target Demand for this tick: " + + // fDemandRole.expectedDemandFactor); + + } +} diff --git a/emlab-generation/src/test/java/emlab/gen/role/capacitymarket/ForecastDemandRoleTest2.java b/emlab-generation/src/test/java/emlab/gen/role/capacitymarket/ForecastDemandRoleTest2.java new file mode 100644 index 00000000..5d6678f7 --- /dev/null +++ b/emlab-generation/src/test/java/emlab/gen/role/capacitymarket/ForecastDemandRoleTest2.java @@ -0,0 +1,361 @@ +/******************************************************************************* + * Copyright 2013 the original author or authors. + * + * Licensed 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. + ******************************************************************************/ +package emlab.gen.role.capacitymarket; + +import java.util.HashSet; +import java.util.Set; + +import org.apache.log4j.Logger; +import org.junit.Test; +import org.junit.runner.RunWith; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.test.context.ContextConfiguration; +import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; +import org.springframework.transaction.annotation.Transactional; + +import emlab.gen.domain.agent.EnergyProducer; +import emlab.gen.domain.agent.Regulator; +import emlab.gen.domain.contract.Loan; +import emlab.gen.domain.gis.Zone; +import emlab.gen.domain.market.electricity.ElectricitySpotMarket; +import emlab.gen.domain.market.electricity.PowerPlantDispatchPlan; +import emlab.gen.domain.market.electricity.Segment; +import emlab.gen.domain.market.electricity.SegmentClearingPoint; +import emlab.gen.domain.market.electricity.SegmentLoad; +import emlab.gen.domain.technology.PowerGeneratingTechnology; +import emlab.gen.domain.technology.PowerPlant; +import emlab.gen.repository.BidRepository; +import emlab.gen.repository.MarketRepository; +import emlab.gen.repository.PowerPlantDispatchPlanRepository; +import emlab.gen.repository.Reps; +import emlab.gen.repository.SegmentLoadRepository; +import emlab.gen.repository.ZoneRepository; +import emlab.gen.trend.TriangularTrend; + +@RunWith(SpringJUnit4ClassRunner.class) +@ContextConfiguration({ "/emlab-gen-test-context.xml" }) +@Transactional +public class ForecastDemandRoleTest2 { + Logger logger = Logger.getLogger(ForecastDemandRole.class); + + @Autowired + Reps reps; + + @Autowired + SegmentLoadRepository segmentLoadRepository; + + @Autowired + MarketRepository marketRepository; + + @Autowired + BidRepository bidRepository; + + @Autowired + PowerPlantDispatchPlanRepository plantDispatchPlanRepository; + + @Autowired + ZoneRepository zoneRepository; + + @Autowired + ForecastDemandRole fDemandRole; + + @Test + public void ZonalTest() { + + Zone zone1 = new Zone(); + // Zone zone2 = new Zone(); + zone1.setName("Zone 1"); + + // zone2.setName("Zone2"); + + zone1.persist(); + + // zone2.persist(); + + Segment S1 = new Segment(); + S1.setLengthInHours(20); + S1.persist(); + + Segment S2 = new Segment(); + S2.setLengthInHours(30); + S2.persist(); + + SegmentLoad SG1 = new SegmentLoad(); + SG1.setSegment(S2); + SG1.setBaseLoad(2500); + + // SegmentLoad SG2 = new SegmentLoad(); + // SG2.setSegment(S2); + // SG2.setBaseLoad(2000); + + SegmentLoad SG3 = new SegmentLoad(); + SG3.setSegment(S1); + SG3.setBaseLoad(3700); + + // SegmentLoad SG4 = new SegmentLoad(); + // SG4.setSegment(S1); + // SG4.setBaseLoad(4000); + + SG1.persist(); + // SG2.persist(); + SG3.persist(); + // SG4.persist(); + + Set segmentLoads1 = new HashSet(); + segmentLoads1.add(SG1); + segmentLoads1.add(SG3); + + // Set segmentLoads2 = new HashSet(); + // segmentLoads2.add(SG2); + // segmentLoads2.add(SG4); + + TriangularTrend demandGrowthTrend = new TriangularTrend(); + demandGrowthTrend.setMax(2); + demandGrowthTrend.setMin(0); + demandGrowthTrend.setStart(1); + demandGrowthTrend.setTop(1); + + demandGrowthTrend.persist(); + + ElectricitySpotMarket market1 = new ElectricitySpotMarket(); + market1.setName("Market1"); + market1.setZone(zone1); + market1.setLoadDurationCurve(segmentLoads1); + market1.setDemandGrowthTrend(demandGrowthTrend); + market1.persist(); + + // ElectricitySpotMarket market2 = new ElectricitySpotMarket(); + // market2.setZone(zone2); + // market2.setName("Market2"); + // market2.setLoadDurationCurve(segmentLoads2); + // market2.setDemandGrowthTrend(demandGrowthTrend); + // market2.persist(); + + PowerGeneratingTechnology coal1 = new PowerGeneratingTechnology(); + + PowerGeneratingTechnology coal2 = new PowerGeneratingTechnology(); + + PowerGeneratingTechnology gas1 = new PowerGeneratingTechnology(); + + PowerGeneratingTechnology gas2 = new PowerGeneratingTechnology(); + + coal1.persist(); + coal2.persist(); + gas1.persist(); + gas2.persist(); + + EnergyProducer e1 = new EnergyProducer(); + e1.setName("E1"); + e1.setCash(0); + e1.setPriceMarkUp(1); + + EnergyProducer e2 = new EnergyProducer(); + e2.setCash(0); + e2.setPriceMarkUp(1); + e2.setName("E2"); + + EnergyProducer e3 = new EnergyProducer(); + e3.setCash(0); + e3.setPriceMarkUp(1); + e3.setName("E3"); + + e1.persist(); + e2.persist(); + e3.persist(); + + Loan l1 = new Loan(); + l1.setAmountPerPayment(6000); + l1.setNumberOfPaymentsDone(10); + l1.setTotalNumberOfPayments(15); + + Loan l2 = new Loan(); + l2.setAmountPerPayment(5000); + l2.setNumberOfPaymentsDone(29); + l2.setTotalNumberOfPayments(19); + + Loan l3 = new Loan(); + l3.setAmountPerPayment(4000); + l3.setNumberOfPaymentsDone(8); + l3.setTotalNumberOfPayments(13); + + Loan l4 = new Loan(); + l4.setAmountPerPayment(3000); + l4.setNumberOfPaymentsDone(7); + l4.setTotalNumberOfPayments(12); + + Loan l5 = new Loan(); + l5.setAmountPerPayment(2000); + l5.setNumberOfPaymentsDone(6); + l5.setTotalNumberOfPayments(11); + + Loan l6 = new Loan(); + l6.setAmountPerPayment(1000); + l6.setNumberOfPaymentsDone(5); + l6.setTotalNumberOfPayments(10); + + l1.persist(); + l2.persist(); + l3.persist(); + l4.persist(); + l5.persist(); + l6.persist(); + + PowerPlant pp1 = new PowerPlant(); + pp1.setTechnology(coal1); + pp1.setOwner(e1); + pp1.setActualFixedOperatingCost(99000); + pp1.setLoan(l1); + // pp1.setName("PP1"); + + PowerPlant pp2 = new PowerPlant(); + pp2.setTechnology(coal2); + pp2.setOwner(e2); + pp2.setActualFixedOperatingCost(111000); + pp2.setLoan(l2); + // pp2.setName("PP2"); + + PowerPlant pp3 = new PowerPlant(); + pp3.setTechnology(gas1); + pp3.setOwner(e3); + pp3.setActualFixedOperatingCost(56000); + pp3.setLoan(l3); + + PowerPlant pp4 = new PowerPlant(); + pp4.setTechnology(gas2); + pp4.setOwner(e3); + pp4.setActualFixedOperatingCost(65000); + pp4.setLoan(l4); + + PowerPlant pp5 = new PowerPlant(); + pp5.setTechnology(gas1); + pp5.setOwner(e2); + pp5.setActualFixedOperatingCost(56000); + pp5.setLoan(l5); + + PowerPlant pp6 = new PowerPlant(); + pp6.setTechnology(gas2); + pp6.setOwner(e1); + pp6.setActualFixedOperatingCost(65000); + pp6.setLoan(l6); + + pp1.persist(); + pp2.persist(); + pp3.persist(); + pp4.persist(); + pp5.persist(); + pp6.persist(); + + // for Zone 1 Segment 1 + PowerPlantDispatchPlan p1 = new PowerPlantDispatchPlan(); + p1.setAmount(1500.0d); + p1.setSegment(S1); + p1.setPrice(5.0d); + p1.setTime(0l); + p1.setBiddingMarket(market1); + p1.setPowerPlant(pp1); + p1.setBidder(e1); + p1.setStatus(3); + p1.setAcceptedAmount(1500); + p1.persist(); + + PowerPlantDispatchPlan p11 = new PowerPlantDispatchPlan(); + p11.setAmount(1000.0d); + p11.setSegment(S1); + p11.setPrice(15.0d); + p11.setTime(0l); + p11.setBiddingMarket(market1); + p11.setPowerPlant(pp2); + p11.setBidder(e2); + p11.setStatus(3); + p11.setAcceptedAmount(1000); + p11.persist(); + + PowerPlantDispatchPlan p111 = new PowerPlantDispatchPlan(); + p111.setAmount(1200.0d); + p111.setSegment(S1); + p111.setPrice(7.0d); + p111.setTime(0l); + p111.setBiddingMarket(market1); + p111.setPowerPlant(pp3); + p111.setBidder(e3); + p111.setStatus(3); + p111.setAcceptedAmount(1200); + p111.persist(); + + // For Zone 1 segment 2 + PowerPlantDispatchPlan p1111 = new PowerPlantDispatchPlan(); + p1111.setAmount(1500.0d); + p1111.setSegment(S2); + p1111.setPrice(5.0d); + p1111.setTime(0l); + p1111.setBiddingMarket(market1); + p1111.setPowerPlant(pp1); + p1111.setBidder(e1); + p1111.setStatus(3); + p1111.setAcceptedAmount(1500); + p1111.persist(); + + PowerPlantDispatchPlan p11111 = new PowerPlantDispatchPlan(); + p11111.setAmount(1000.0d); + p11111.setSegment(S2); + p11111.setPrice(15.0d); + p11111.setTime(0l); + p11111.setBiddingMarket(market1); + p11111.setPowerPlant(pp2); + p11111.setBidder(e2); + p11111.setStatus(-1); + p11111.setAcceptedAmount(0); + p11111.persist(); + + PowerPlantDispatchPlan p111111 = new PowerPlantDispatchPlan(); + p111111.setAmount(1200.0d); + p111111.setSegment(S2); + p111111.setPrice(7.0d); + p111111.setTime(0l); + p111111.setBiddingMarket(market1); + p111111.setPowerPlant(pp3); + p111111.setBidder(e3); + p111111.setStatus(2); + p111111.setAcceptedAmount(1000); + p111111.persist(); + + SegmentClearingPoint clearingPoint1 = new SegmentClearingPoint(); + clearingPoint1.setSegment(S1); + clearingPoint1.setAbstractMarket(market1); + clearingPoint1.setPrice(25); + clearingPoint1.setTime(0l); + + SegmentClearingPoint clearingPoint111 = new SegmentClearingPoint(); + clearingPoint111.setSegment(S2); + clearingPoint111.setAbstractMarket(market1); + clearingPoint111.setPrice(7); + clearingPoint111.setTime(0l); + + clearingPoint1.persist(); + clearingPoint111.persist(); + + Regulator regulator = new Regulator(); + regulator.setTargetPeriod(0); + regulator.setReserveMargin(0.15); + regulator.setNumberOfYearsLookingBackToForecastDemand(3); + regulator.setZone(zone1); + regulator.persist(); + + fDemandRole.act(regulator); + + logger.warn("Target Demand for this tick: " + regulator.getDemandTarget()); + } +} \ No newline at end of file diff --git a/emlab-generation/src/test/java/emlab/gen/role/capacitymarket/PaymentFromConsumerToProducerforCapacityRoleTest.java b/emlab-generation/src/test/java/emlab/gen/role/capacitymarket/PaymentFromConsumerToProducerforCapacityRoleTest.java new file mode 100644 index 00000000..b747fe25 --- /dev/null +++ b/emlab-generation/src/test/java/emlab/gen/role/capacitymarket/PaymentFromConsumerToProducerforCapacityRoleTest.java @@ -0,0 +1,144 @@ +/******************************************************************************* + * Copyright 2013 the original author or authors. + * + * Licensed 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. + ******************************************************************************/ +package emlab.gen.role.capacitymarket; + +import org.apache.log4j.Logger; +import org.junit.Test; +import org.junit.runner.RunWith; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.test.context.ContextConfiguration; +import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; +import org.springframework.transaction.annotation.Transactional; + +import emlab.gen.domain.agent.EnergyConsumer; +import emlab.gen.domain.agent.EnergyProducer; +import emlab.gen.domain.gis.Zone; +import emlab.gen.domain.market.capacity.CapacityClearingPoint; +import emlab.gen.domain.market.capacity.CapacityDispatchPlan; +import emlab.gen.domain.market.capacity.CapacityMarket; +import emlab.gen.domain.market.electricity.ElectricitySpotMarket; +import emlab.gen.domain.technology.PowerPlant; +import emlab.gen.repository.Reps; + +/** + * @author Kaveri + * + */ +@RunWith(SpringJUnit4ClassRunner.class) +@ContextConfiguration({ "/emlab-gen-test-context.xml" }) +@Transactional +public class PaymentFromConsumerToProducerforCapacityRoleTest { + + @Autowired + Reps reps; + + /** + * + */ + + @Autowired + PaymentFromConsumerToProducerForCapacityRole paymentFromConsumerToProducerForCapacityRole; + + Logger logger = Logger.getLogger(PaymentFromConsumerToProducerForCapacityRole.class); + + @Test + public void capacityMarketPaymentFunctionality() { + + Zone zone = new Zone(); + zone.persist(); + + EnergyProducer ep1 = new EnergyProducer(); + EnergyProducer ep2 = new EnergyProducer(); + ep1.persist(); + ep2.persist(); + + EnergyConsumer consumer = new EnergyConsumer(); + consumer.persist(); + + CapacityMarket market = new CapacityMarket(); + market.setConsumer(consumer); + market.setZone(zone); + market.persist(); + + ElectricitySpotMarket esm = new ElectricitySpotMarket(); + esm.setZone(zone); + esm.persist(); + + CapacityClearingPoint clearingPoint = new CapacityClearingPoint(); + clearingPoint.setCapacityMarket(market); + clearingPoint.setPrice(1); + clearingPoint.setTime(0l); + clearingPoint.persist(); + + PowerPlant pp1 = new PowerPlant(); + PowerPlant pp2 = new PowerPlant(); + PowerPlant pp3 = new PowerPlant(); + PowerPlant pp4 = new PowerPlant(); + + pp1.persist(); + pp2.persist(); + pp3.persist(); + pp4.persist(); + + CapacityDispatchPlan cdp1 = new CapacityDispatchPlan(); + cdp1.setBidder(ep1); + cdp1.setBiddingMarket(market); + cdp1.setTime(0l); + cdp1.setAcceptedAmount(100); + cdp1.setPlant(pp1); + cdp1.setStatus(3); + cdp1.persist(); + + CapacityDispatchPlan cdp2 = new CapacityDispatchPlan(); + cdp2.setBidder(ep1); + cdp2.setBiddingMarket(market); + cdp2.setTime(0l); + cdp2.setAcceptedAmount(80); + cdp2.setPlant(pp2); + cdp2.setStatus(2); + cdp2.persist(); + + CapacityDispatchPlan cdp3 = new CapacityDispatchPlan(); + cdp3.setBidder(ep2); + cdp3.setBiddingMarket(market); + cdp3.setTime(0l); + cdp3.setAcceptedAmount(150); + cdp3.setPlant(pp3); + cdp3.setStatus(3); + cdp3.persist(); + + CapacityDispatchPlan cdp4 = new CapacityDispatchPlan(); + cdp4.setBidder(ep2); + cdp4.setBiddingMarket(market); + cdp4.setTime(0l); + cdp4.setAcceptedAmount(100); + cdp4.setPlant(pp4); + cdp4.setStatus(3); + cdp4.persist(); + + logger.warn("Consumer's Cash before Payment Process " + consumer.getCash()); + logger.warn("Energy Producer1's Cash before Payment Process" + ep1.getCash()); + logger.warn("Energy Producer2's Cash before Payment Process" + ep2.getCash()); + + paymentFromConsumerToProducerForCapacityRole.act(market); + + logger.warn("Consumer's Cash After Payment Process " + consumer.getCash()); + logger.warn("Energy Producer1's Cash After Payment Process" + ep1.getCash()); + logger.warn("Energy Producer2's Cash After Payment Process" + ep2.getCash()); + + } + +} diff --git a/emlab-generation/src/test/java/emlab/gen/role/capacitymarket/SubmitCapacityBidToMarketRoleTest.java b/emlab-generation/src/test/java/emlab/gen/role/capacitymarket/SubmitCapacityBidToMarketRoleTest.java new file mode 100644 index 00000000..200f64f4 --- /dev/null +++ b/emlab-generation/src/test/java/emlab/gen/role/capacitymarket/SubmitCapacityBidToMarketRoleTest.java @@ -0,0 +1,303 @@ +/******************************************************************************* + * Copyright 2013 the original author or authors. + * + * Licensed 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. + ******************************************************************************/ +package emlab.gen.role.capacitymarket; + +import java.util.HashSet; +import java.util.Set; + +import org.apache.log4j.Logger; +import org.junit.Test; +import org.junit.runner.RunWith; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.test.context.ContextConfiguration; +import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; +import org.springframework.transaction.annotation.Transactional; + +import emlab.gen.domain.agent.EnergyProducer; +import emlab.gen.domain.gis.Zone; +import emlab.gen.domain.market.capacity.CapacityMarket; +import emlab.gen.domain.market.electricity.ElectricitySpotMarket; +import emlab.gen.domain.market.electricity.PowerPlantDispatchPlan; +import emlab.gen.domain.market.electricity.Segment; +import emlab.gen.domain.market.electricity.SegmentClearingPoint; +import emlab.gen.domain.market.electricity.SegmentLoad; +import emlab.gen.domain.technology.PowerGeneratingTechnology; +import emlab.gen.domain.technology.PowerGridNode; +import emlab.gen.domain.technology.PowerPlant; +import emlab.gen.repository.Reps; +import emlab.gen.trend.TriangularTrend; + +/** + * @author Kaveri + * + */ +@RunWith(SpringJUnit4ClassRunner.class) +@ContextConfiguration({ "/emlab-gen-test-context.xml" }) +@Transactional +public class SubmitCapacityBidToMarketRoleTest { + + Logger logger = Logger.getLogger(SubmitCapacityBidToMarketRole.class); + + @Autowired + Reps reps; + + @Autowired + SubmitCapacityBidToMarketRole submitCapacityBidRole; + + @Test + public void testSubmitBidFunctionality1() { + // for bidding a positive value + Segment S1 = new Segment(); + S1.setLengthInHours(20); + S1.persist(); + + Segment S2 = new Segment(); + S2.setLengthInHours(30); + S2.persist(); + + SegmentLoad SG1 = new SegmentLoad(); + SG1.setSegment(S2); + SG1.setBaseLoad(2500); + + // SegmentLoad SG2 = new SegmentLoad(); + // SG2.setSegment(S2); + // SG2.setBaseLoad(2000); + + SegmentLoad SG3 = new SegmentLoad(); + SG3.setSegment(S1); + SG3.setBaseLoad(3700); + + // SegmentLoad SG4 = new SegmentLoad(); + // SG4.setSegment(S1); + // SG4.setBaseLoad(4000); + + SG1.persist(); + // SG2.persist(); + SG3.persist(); + // SG4.persist(); + + Set segmentLoads = new HashSet(); + segmentLoads.add(SG1); + segmentLoads.add(SG3); + + // Set segmentLoads2 = new HashSet(); + // segmentLoads2.add(SG2); + // segmentLoads2.add(SG4); + + /* + * TriangularTrend demandGrowthTrend = new TriangularTrend(); + * demandGrowthTrend.setMax(2); demandGrowthTrend.setMin(0); + * demandGrowthTrend.setStart(1); demandGrowthTrend.setTop(1); + * + * demandGrowthTrend.persist(); + */ + + Zone zone = new Zone(); + zone.persist(); + + PowerGridNode location = new PowerGridNode(); + location.setZone(zone); + location.persist(); + + ElectricitySpotMarket market = new ElectricitySpotMarket(); + market.setName("Market1"); + market.setZone(zone); + market.setLoadDurationCurve(segmentLoads); + // market.setDemandGrowthTrend(demandGrowthTrend); + market.persist(); + + TriangularTrend gasFixedOperatingCostTimeSeries = new TriangularTrend(); + // gasFixedOperatingCostTimeSeries[0] + gasFixedOperatingCostTimeSeries.setMax(1.10); + gasFixedOperatingCostTimeSeries.setMin(0.96); + gasFixedOperatingCostTimeSeries.setStart(0.25); + gasFixedOperatingCostTimeSeries.setTop(1.03); + gasFixedOperatingCostTimeSeries.persist(); + + TriangularTrend coalFixedOperatingCostTimeSeries = new TriangularTrend(); + coalFixedOperatingCostTimeSeries.setMax(1.05); + coalFixedOperatingCostTimeSeries.setMin(0.97); + coalFixedOperatingCostTimeSeries.setStart(100); + coalFixedOperatingCostTimeSeries.setTop(1.01); + coalFixedOperatingCostTimeSeries.persist(); + + PowerGeneratingTechnology coal1 = new PowerGeneratingTechnology(); + coal1.setFixedOperatingCostTimeSeries(coalFixedOperatingCostTimeSeries); + PowerGeneratingTechnology coal2 = new PowerGeneratingTechnology(); + coal2.setFixedOperatingCostTimeSeries(coalFixedOperatingCostTimeSeries); + PowerGeneratingTechnology gas1 = new PowerGeneratingTechnology(); + gas1.setFixedOperatingCostTimeSeries(gasFixedOperatingCostTimeSeries); + PowerGeneratingTechnology gas2 = new PowerGeneratingTechnology(); + gas2.setFixedOperatingCostTimeSeries(gasFixedOperatingCostTimeSeries); + + coal1.persist(); + coal2.persist(); + gas1.persist(); + gas2.persist(); + + EnergyProducer e1 = new EnergyProducer(); + e1.setName("E1"); + e1.setCash(0); + e1.setPriceMarkUp(1); + + EnergyProducer e2 = new EnergyProducer(); + e2.setCash(0); + e2.setPriceMarkUp(1); + e2.setName("E2"); + + e1.persist(); + e2.persist(); + + PowerPlant pp1 = new PowerPlant(); + pp1.setName("plant 1"); + pp1.setTechnology(coal1); + pp1.setOwner(e1); + pp1.setActualFixedOperatingCost(99000); + pp1.setActualNominalCapacity(700); + pp1.setActualPermittime(0); + pp1.setActualLeadtime(0); + pp1.setConstructionStartTime(-1); + pp1.setDismantleTime(99); + pp1.setLocation(location); + // pp1.setName("PP1"); + + PowerPlant pp2 = new PowerPlant(); + pp2.setName("Plant 2"); + pp2.setActualPermittime(0); + pp2.setActualLeadtime(0); + pp2.setDismantleTime(99); + pp2.setConstructionStartTime(-1); + pp2.setTechnology(coal2); + pp2.setActualNominalCapacity(700); + pp2.setOwner(e2); + pp2.setActualFixedOperatingCost(111000); + pp2.setLocation(location); + // pp2.setName("PP2"); + + PowerPlant pp3 = new PowerPlant(); + pp3.setName("Plant 3"); + pp3.setActualPermittime(0); + pp3.setDismantleTime(99); + pp3.setActualLeadtime(0); + pp3.setConstructionStartTime(-1); + pp3.setTechnology(gas1); + pp3.setActualNominalCapacity(600); + pp3.setOwner(e2); + pp3.setActualFixedOperatingCost(56000); + + pp3.setLocation(location); + + PowerPlant pp4 = new PowerPlant(); + pp4.setName("Plant 4"); + pp4.setActualPermittime(0); + pp4.setActualLeadtime(0); + pp4.setConstructionStartTime(-1); + pp4.setDismantleTime(99); + pp4.setTechnology(gas2); + pp4.setActualNominalCapacity(600); + pp4.setOwner(e1); + pp4.setActualFixedOperatingCost(65000); + pp4.setLocation(location); + + PowerPlant pp5 = new PowerPlant(); + pp5.setName("Plant 5"); + pp5.setActualPermittime(0); + pp5.setActualLeadtime(0); + pp5.setConstructionStartTime(-1); + pp5.setDismantleTime(99); + pp5.setTechnology(gas1); + pp5.setActualNominalCapacity(600); + pp5.setOwner(e2); + pp5.setActualFixedOperatingCost(56000); + pp5.setLocation(location); + + PowerPlant pp6 = new PowerPlant(); + pp6.setName("Plant 6"); + pp6.setActualPermittime(0); + pp6.setActualLeadtime(0); + pp6.setConstructionStartTime(-1); + pp6.setDismantleTime(99); + pp6.setTechnology(gas2); + pp6.setActualNominalCapacity(600); + pp6.setOwner(e1); + pp6.setActualFixedOperatingCost(65000); + pp6.setLocation(location); + + pp1.persist(); + pp2.persist(); + pp3.persist(); + pp4.persist(); + pp5.persist(); + pp6.persist(); + + PowerPlantDispatchPlan ppdp1 = new PowerPlantDispatchPlan(); + ppdp1.setPowerPlant(pp1); + ppdp1.setStatus(-1); + ppdp1.persist(); + + PowerPlantDispatchPlan ppdp2 = new PowerPlantDispatchPlan(); + ppdp2.setPowerPlant(pp2); + ppdp2.setStatus(2); + ppdp2.persist(); + + PowerPlantDispatchPlan ppdp3 = new PowerPlantDispatchPlan(); + ppdp3.setPowerPlant(pp3); + ppdp3.setStatus(3); + ppdp3.persist(); + + PowerPlantDispatchPlan ppdp4 = new PowerPlantDispatchPlan(); + ppdp4.setPowerPlant(pp4); + ppdp4.setStatus(-1); + ppdp4.persist(); + + PowerPlantDispatchPlan ppdp5 = new PowerPlantDispatchPlan(); + ppdp5.setPowerPlant(pp5); + ppdp5.setStatus(2); + ppdp5.persist(); + + PowerPlantDispatchPlan ppdp6 = new PowerPlantDispatchPlan(); + ppdp6.setPowerPlant(pp6); + ppdp6.setStatus(3); + ppdp6.persist(); + + CapacityMarket cMarket = new CapacityMarket(); + cMarket.setName("Capaciteit Markt"); + cMarket.setZone(zone); + cMarket.persist(); + + SegmentClearingPoint clearingPoint1 = new SegmentClearingPoint(); + clearingPoint1.setSegment(S1); + clearingPoint1.setAbstractMarket(market); + clearingPoint1.setPrice(25); + clearingPoint1.setTime(0); + clearingPoint1.persist(); + + SegmentClearingPoint clearingPoint2 = new SegmentClearingPoint(); + clearingPoint2.setSegment(S2); + clearingPoint2.setAbstractMarket(market); + clearingPoint2.setPrice(7); + clearingPoint2.setTime(0); + clearingPoint2.persist(); + + for (EnergyProducer ep : reps.energyProducerRepository + .findAllEnergyProducersExceptForRenewableTargetInvestorsAtRandom()) { + submitCapacityBidRole.act(ep); + logger.warn("Submitted"); + + } + + } +} diff --git a/rscripts/asHeadlessQueryReader.py b/rscripts/asHeadlessQueryReader.py new file mode 100644 index 00000000..02334d5e --- /dev/null +++ b/rscripts/asHeadlessQueryReader.py @@ -0,0 +1,260 @@ +# -*- coding: utf-8 *-* +import json +import glob +import re +import csv +import sys + + +def check_that_dict_has_equal_length(resultDict): + i = 0 + for key, value in resultDict.iteritems(): + if i == 0: + length = len(value) + if not length == len(value): + return False + i = i + 1 + return True + + +def read_query_of_runid(path, runName, runId, queryName, resultDict): + filename = runId + "-" + queryName + filepath = path + runName + "/" + filename + json_data = open(filepath, 'r') + resultList = [] + line = json_data.readline() + jsonLine = json.loads(line[:-2], encoding="ascii") + #In case its a pure list of numbers or strings + if len(jsonLine) == 1 and \ + isinstance(jsonLine[0], (int, float, long, complex, basestring)): + while line: + resultList.append(json.loads(line[:-2], encoding="ascii")[0]) + line = json_data.readline() + resultDict[queryName] = resultList + return resultDict + wrapperCounter = 0 + tempJsonLine = jsonLine + #Unwrapping the json lists, in case it is wrapped + while (tempJsonLine is not None) and len(tempJsonLine) == 1 and \ + isinstance(tempJsonLine, (list)) and \ + (not isinstance(tempJsonLine[0][0], (basestring))): + tempJsonLine = tempJsonLine[0] + wrapperCounter = wrapperCounter + 1 + #Checking if it conforms to the standard and starting the dictionary. + if tempJsonLine is None: + return None + elif len(tempJsonLine[0]) == 2: + return read_standard_conform_key_value_pairs(tempJsonLine, + wrapperCounter, runId, queryName, json_data, resultDict) + else: + #print("Non-Standard: " + queryName) + raise NameError("Query returns in " + runId + " ," + queryName + + " are not standard [Name, Value] for each tick!") + #return read_nonstandard_conform_key_value_pairs(tempJsonLine,\ + # wrapperCounter,runId,queryName,json_data,resultDict) + + +def read_nonstandard_conform_key_value_pairs(tempJsonLine, wrapperCounter, +runId, queryName, json_data, resultDict): + subElementNumber = 0 + for subelement in tempJsonLine: + for subsubelement in subelement: + if not len(subsubelement) == 2: + print(wrapperCounter) + print(subsubelement) + raise NameError("Query returns in " + runId + " ," + + queryName + " are not [Name, Value] for each tick!") + for content in subsubelement: + if isinstance(content, list): + raise NameError("Query returns in " + runId + " ," + + queryName + " are not [Name, Value] for each tick!") + resultDict[(queryName + "_" + + subsubelement[0]).encode("ascii")] = [subsubelement[1]] + subElementNumber = subElementNumber + 1 + #Reading the rest of the file + line = json_data.readline() + while line: + counter = 0 + tempJsonLine = json.loads(line[:-2], encoding="ascii") + while counter < wrapperCounter: + tempJsonLine = tempJsonLine[0] + counter = counter + 1 + subElementCounter = 0 + for subelement in tempJsonLine: + for subsubelement in subelement: + if not len(subsubelement) == 2: + raise NameError("Query returns should be \ + [Name, Value] for each tick!") + for content in subsubelement: + if isinstance(content, list): + raise NameError("Query returns should be \ + [Name, Value] for each tick!") + resultDict[(queryName + "_" + + subsubelement[0]).encode("ascii")].append(subsubelement[1]) + subElementCounter = subElementCounter + 1 + if not subElementCounter == subElementNumber: + raise NameError("Number of subresults is not consistent!") + line = json_data.readline() + #print(resultDict) + return resultDict + + +def read_standard_conform_key_value_pairs(tempJsonLine, wrapperCounter, runId, +queryName, json_data, resultDict): + subElementNumber = 0 + for subelement in tempJsonLine: + if not len(subelement) == 2: + print(wrapperCounter) + print(subelement) + raise NameError("Query returns in " + runId + " ," + queryName + + " are not [Name, Value] for each tick!") + for content in subelement: + if isinstance(content, list): + raise NameError("Query returns in " + runId + " ," + queryName + + " are not [Name, Value] for each tick!") + resultDict[(queryName + "_" + + subelement[0]).encode("ascii")] = [subelement[1]] + subElementNumber = subElementNumber + 1 + #Reading the rest of the file + line = json_data.readline() + while line: + counter = 0 + tempJsonLine = json.loads(line[:-2], encoding="ascii") + while counter < wrapperCounter: + tempJsonLine = tempJsonLine[0] + counter = counter + 1 + subElementCounter = 0 + for subelement in tempJsonLine: + if not len(subelement) == 2: + raise NameError("Query returns should be [Name, Value] for \ + each tick!") + for content in subelement: + if isinstance(content, list): + raise NameError("Query returns should be [Name, Value]\ + for each tick!") + resultDict[(queryName + "_" + + subelement[0]).encode("ascii")].append(subelement[1]) + subElementCounter = subElementCounter + 1 + if not subElementCounter == subElementNumber: + raise NameError("Number of subresults is not consistent!") + line = json_data.readline() + #print(resultDict) + return resultDict + + +def find_query_names_in_directory_for_runId(path, runName, runId): + listOfQueryPaths = glob.glob(path + runName + "/" + runId + "-*") + listOfQueries = [] + listOfTableQueries = [] + for query in listOfQueryPaths: + m = re.search('(?<={0}{1}/{2}-).*'.format(path, runName, runId), query) + if not m.group(0).startswith("TABLE_"): + listOfQueries.append(m.group(0)) + else: + listOfTableQueries.append(m.group(0)) + listOfQueries.sort() + listOfQueryPaths.sort() + #return listOfQueries,listOfQueryPaths + return listOfQueries, listOfTableQueries + + +def find_runIds_based_on_logfiles_and_runname(path, runName): + listOfQueryPaths = glob.glob(path + runName + "/*.log") + listOfRunIds = [] + for query in listOfQueryPaths: + m = re.search('(?<={0}{1}/).*'.format(path, runName), query) + n = re.sub("^(.*).log$", "\\1", m.group(0)) + listOfRunIds.append(n) + return listOfRunIds + + +def read_runId_to_dictionary(path, runName, runId, ignoredQueries): + print("Reading " + runId) + queryNames, tableQueryNames = find_query_names_in_directory_for_runId(path, + runName, runId) + for ignoredQuery in ignoredQueries: + queryNames.remove(ignoredQuery) + resultDict = {} + for queryName in queryNames: + singleQueryResult = read_query_of_runid(path, runName, runId, + queryName, resultDict) + if singleQueryResult is not None: + resultDict.update(singleQueryResult) + if not check_that_dict_has_equal_length(resultDict): + raise NameError("Results of uneven time step length in ." + runName) + return resultDict + + +def write_first_runid_dictionary_to_csv(path, runName, runId, +resultDict, noOfTicks): + queryNames = ["tick", "runId"] + queryNames = set(queryNames) + queryNames.update(resultDict.keys()) + with open(path + runName + ".csv", 'w') as csvfile: + csvwriter = csv.DictWriter(csvfile, fieldnames=queryNames) + headers = {} + for n in csvwriter.fieldnames: + headers[n] = n + csvwriter.writerow(headers) + i = 0 + while i < noOfTicks: + singleTickDict = {} + for key, value in resultDict.iteritems(): + singleTickDict.update({key: value[i]}) + singleTickDict.update({"tick": i}) + singleTickDict.update({"runId": runId}) + csvwriter.writerow(singleTickDict) + i = i + 1 + + +def write_following_runids_to_csv(path, runName, runId, resultDict, noOfTicks): + queryNames = {} + with open(path + runName + ".csv", 'rb') as csvtoupdate: + dictReader = csv.DictReader(csvtoupdate) + queryNames = dictReader.fieldnames + with open(path + runName + ".csv", 'a') as csvfile: + csvwriter = csv.DictWriter(csvfile, fieldnames=queryNames) + i = 0 + while i < noOfTicks: + singleTickDict = {} + for key, value in resultDict.iteritems(): + singleTickDict.update({key: value[i]}) + singleTickDict.update({"tick": i}) + singleTickDict.update({"runId": runId}) + csvwriter.writerow(singleTickDict) + i = i + 1 + + +def write_csv_for_run_name(path, runName, ignoredQueries): + runIds = find_runIds_based_on_logfiles_and_runname(path, runName) + totalRunIdNo = len(runIds) + j = 0 + for runId in runIds: + resultDict = read_runId_to_dictionary(path, runName, + runId, ignoredQueries) + noOfTicks = len(resultDict.items()[1][1]) + if j == 0: + write_first_runid_dictionary_to_csv(path, runName, runId, + resultDict, noOfTicks) + else: + write_following_runids_to_csv(path, runName, runId, + resultDict, noOfTicks) + j = j + 1 + percentage = 1.0 * j / totalRunIdNo * 100 + print((str(percentage) + "% done.")) + + +def main(outputPath, runName, ignoredQueries): + if(not outputPath.endswith("/")): + outputPath = outputPath + "/" + print((find_runIds_based_on_logfiles_and_runname(outputPath, runName))) + write_csv_for_run_name(outputPath, runName, ignoredQueries) + +if __name__ == "__main__": + if len(sys.argv[1:]) > 2: + main(sys.argv[1], sys.argv[2], sys.argv[3:]) + elif len(sys.argv[1:]) == 2: + main(sys.argv[1], sys.argv[2], []) + else: + print("This script needs to be called with: outputPath, \ + runName (, ignoredQueries)") diff --git a/rscripts/asHeadlessTableReader.py b/rscripts/asHeadlessTableReader.py new file mode 100644 index 00000000..d75e2566 --- /dev/null +++ b/rscripts/asHeadlessTableReader.py @@ -0,0 +1,93 @@ +import csv +import sys +import json + + +def read_tableQuery_of_runid(path, runName, runId, tableName): + resultDict = {} + filename = runId + "-" + "TABLE_" + tableName + filepath = path + runName + "/" + filename + json_data = open(filepath, 'r') + line = json_data.readline() + jsonLine = json.loads(line[:-2], encoding="ascii") + wrapperCounter = 0 + tempJsonLine = jsonLine + #Unwrapping the json lists, in case it is wrapped + while (tempJsonLine is not None) and len(tempJsonLine) == 1 and \ + isinstance(tempJsonLine, (list)) and \ + (not isinstance(tempJsonLine[0][0], (basestring))): + tempJsonLine = tempJsonLine[0] + wrapperCounter = wrapperCounter + 1 + headers = tempJsonLine[0] + tempJsonLine = tempJsonLine[1:] + headerNumber = 0 + for header in headers: + resultDict[(headers[headerNumber]).encode("ascii")] = [] + headerNumber = headerNumber + 1 + for subelement in tempJsonLine: + headerNumber = 0 + if not len(subelement) == len(headers): + raise NameError("Table length differs from header length!") + for content in subelement: + resultDict[(headers[headerNumber]).encode("ascii")].append(content) + headerNumber = headerNumber + 1 + line = json_data.readline() + while line and (line is not None) and isinstance(line, (list)): + counter = 0 + tempJsonLine = json.loads(line[:-2], encoding="ascii") + while counter < wrapperCounter: + tempJsonLine = tempJsonLine[0] + counter = counter + 1 + tempJsonLine = tempJsonLine[1:] + for subelement in tempJsonLine: + headerNumber = 0 + if not len(subelement) == len(headers): + raise NameError("Table length differs from header length!") + for content in subelement: + resultDict[(headers[headerNumber]). + encode("ascii")].append(content) + headerNumber = headerNumber + 1 + line = json_data.readline() + return resultDict + + +def write_tableResultDict_to_csv(path, runName, runId, tableName, +resultDict): + queryNames = resultDict.keys() + #queryNames.update(resultDict.keys()) + noOfTicks = len(resultDict.items()[1][1]) + with open(path + runId + "-" + tableName + ".csv", 'w') as csvfile: + csvwriter = csv.DictWriter(csvfile, fieldnames=queryNames) + csvwriter.writeheader() + i = 0 + while i < noOfTicks: + singleTickDict = {} + for key, value in resultDict.iteritems(): + singleTickDict.update({key: value[i]}) + csvwriter.writerow(singleTickDict) + i = i + 1 + + +def write_tableQuery_to_csv(path, runName, runId, tableName): + resultDict = read_tableQuery_of_runid(path, runName, runId, tableName) + write_tableResultDict_to_csv(path, runName, runId, tableName, resultDict) + + +def main(path, runName, runId, tableName): + if(not path.endswith("/")): + path = path + "/" + write_tableQuery_to_csv(path, runName, runId, tableName) + +if __name__ == "__main__": + if len(sys.argv[1:]) == 4: + main(sys.argv[1], sys.argv[2], sys.argv[3], sys.argv[4]) + else: + print("This script needs to be called with: outputPath, \ + runName, runId, tableName") + +#path='/home/jrichstein/Desktop/emlabGen/output/' +#runName="scriptTest" +#tableName='PowerPlantDispatchPlans' +#runId="scriptTest-1" + +#main(path, runName, runId, tableName) diff --git a/rscripts/batchRunAnalysis.R b/rscripts/batchRunAnalysis.R index d8c21046..db32a0e1 100644 --- a/rscripts/batchRunAnalysis.R +++ b/rscripts/batchRunAnalysis.R @@ -146,11 +146,14 @@ plotTimeSeriesWithConfidenceIntervalByFacettedGroup <- function(df, variable, yl #stat_summary(aes_string(fill="modelRun"), fun.data=fun.data, conf.int=conf.int, geom="smooth") + stat_summary(fun.data=fun.data, conf.int=conf.int, geom="smooth", colour="black") + stat_summary(fun.data=fun.data, conf.int=conf.int2, geom="smooth", colour="black")+ + stat_summary(fun.y="mean", conf.int=.95, geom="smooth", lty="dashed", colour="black") + + #facet_grid(. ~ modelRun)+ facet_wrap(~ modelRun, nrow=nrow)+ theme(legend.position="none")+ xlab("Time [a]")+ - ylab(ylabel) + ylab(ylabel)+ + scale_linetype_manual(breaks=c("a","b")) } diff --git a/shellscripts/headlessScripts/KaveriRuns.sh b/shellscripts/headlessScripts/KaveriRuns.sh new file mode 100755 index 00000000..807b0971 --- /dev/null +++ b/shellscripts/headlessScripts/KaveriRuns.sh @@ -0,0 +1,4 @@ +./localHeadlessSingle.sh FipRun1 K_S_FipOne +./localHeadlessSingle.sh FipRun1point5 K_S_FipOnePointFive +./localHeadlessSingle.sh FipRun2 K_S_FipTwo +./localHeadlessSingle.sh FipRun10 K_S_FipTen diff --git a/shellscripts/headlessScripts/localHeadlessSingle.sh b/shellscripts/headlessScripts/localHeadlessSingle.sh index 5139b5dc..54b962db 100755 --- a/shellscripts/headlessScripts/localHeadlessSingle.sh +++ b/shellscripts/headlessScripts/localHeadlessSingle.sh @@ -30,7 +30,7 @@ else QUERYCOMMAND="" fi -java -d64 -server -Xmx3072m -Drun.id=$JOBNAME -DSCENARIO_FOLDER=$SCENARIOPATH -Dresults.path=$LOCALRESULTFOLDER/$JOBNAME -Dscenario.file=$SCENARIO".xml" $QUERYCOMMAND -jar $LOCALJARFILE +java -Xmx2072m -Drun.id=$JOBNAME -DSCENARIO_FOLDER=$SCENARIOPATH -Dresults.path=$LOCALRESULTFOLDER/$JOBNAME -Dscenario.file=$SCENARIO".xml" $QUERYCOMMAND -jar $LOCALJARFILE rm -rf /tmp/ramdisk/emlab.gen-db/$JOBNAME mv simulation.log $JOBNAME.log